Merge branch 'master' into dependabot/npm_and_yarn/app/electron-rebuild-2.3.5

This commit is contained in:
Cutls 2021-04-01 19:22:41 +09:00 committed by GitHub
commit 6adfca8f52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
56 changed files with 1019 additions and 848 deletions

View File

@ -286,7 +286,7 @@ function getdataAdv(domain, at) {
} }
var multi = localStorage.getItem('multi') var multi = localStorage.getItem('multi')
var obj = JSON.parse(multi) var obj = JSON.parse(multi)
var target = obj.lengtth var target = obj.length
obj.push(add) obj.push(add)
localStorage.setItem('name_' + target, json['display_name']) localStorage.setItem('name_' + target, json['display_name'])
localStorage.setItem('user_' + target, json['acct']) localStorage.setItem('user_' + target, json['acct'])
@ -307,8 +307,13 @@ async function refresh(target, loadskip) {
let at = obj[target].at let at = obj[target].at
if (obj[target].rt) { if (obj[target].rt) {
console.log('refresh access token') console.log('refresh access token')
at = await refreshPleromaAt(obj[target]) const atk = await refreshPleromaAt(obj[target])
localStorage.setItem(`acct_${target}_at`, at) if (atk) {
at = atk
localStorage.setItem(`acct_${target}_at`, at)
obj[target].at = at
localStorage.setItem(`multi`, JSON.stringify(obj))
}
} }
var start = 'https://' + obj[target].domain + '/api/v1/accounts/verify_credentials' var start = 'https://' + obj[target].domain + '/api/v1/accounts/verify_credentials'
fetch(start, { fetch(start, {
@ -384,7 +389,7 @@ async function refreshPleromaAt(obj) {
'content-type': 'application/json' 'content-type': 'application/json'
}, },
body: JSON.stringify({ body: JSON.stringify({
grant_type : 'refresh_token', grant_type: 'refresh_token',
refresh_token: rt[0], refresh_token: rt[0],
client_id: rt[1], client_id: rt[1],
client_secret: rt[2] client_secret: rt[2]

View File

@ -1107,14 +1107,12 @@ input.addEventListener(
var new_val = input.value var new_val = input.value
if (prev_val != new_val) { if (prev_val != new_val) {
if (new_val.length > 3) { if (new_val.length > 3) {
var start = 'https://instances.social/api/1.0/instances/search?q=' + new_val var start = 'https://www.fediversesearch.com/search/?keyword=' + new_val
fetch(start, { fetch(start, {
method: 'GET', method: 'GET',
headers: { headers: {
'content-type': 'application/json', 'content-type': 'application/json',
Authorization: }
'Bearer tC8F6xWGWBUwGScyNevYlx62iO6fdQ4oIK0ad68Oo7ZKB8GQdGpjW9TKxBnIh8grAhvd5rw3iyP9JPamoDpeLQdz62EToPJUW99hDx8rfuJfGdjQuimZPTbIOx0woA5M'
}
}) })
.then(function (response) { .then(function (response) {
if (!response.ok) { if (!response.ok) {
@ -1132,11 +1130,11 @@ input.addEventListener(
.then(function (json) { .then(function (json) {
if (!json.error) { if (!json.error) {
var urls = 'Suggest:' var urls = 'Suggest:'
Object.keys(json.instances).forEach(function (key) { Object.keys(json.data).forEach(function (key) {
var url = json.instances[key] var url = json.data[key]
urls = urls =
urls + urls +
` <a onclick="login('${url.name}')" class="pointer">${escapeHTML(url.name)}</a>` `<a onclick="login('${url.uri}')" class="pointer" title="${url.uri}">${escapeHTML(url.title ? url.title : url.uri)}</a>, `
}) })
$('#ins-suggest').html(urls) $('#ins-suggest').html(urls)
} else { } else {

View File

@ -5,6 +5,12 @@ function details(id, acct_id, tlid, mode) {
} else { } else {
$('.dm-hide').show() $('.dm-hide').show()
} }
const context = localStorage.getItem('moreContext')
if(context != 'yes') {
$('.contextTool').hide()
} else {
$('.contextTool').show()
}
$('.toot-reset').html('<span class="no-data">' + lang.lang_details_nodata + '</span>') $('.toot-reset').html('<span class="no-data">' + lang.lang_details_nodata + '</span>')
var html = $('#timeline_' + tlid + ' [toot-id=' + id + ']').html() var html = $('#timeline_' + tlid + ' [toot-id=' + id + ']').html()
$('#toot-this').html(html) $('#toot-this').html(html)
@ -222,6 +228,10 @@ function getContext(id, acct_id) {
var templete = parse(json.descendants, '', acct_id, '', '', mute) var templete = parse(json.descendants, '', acct_id, '', '', mute)
if (templete != '') { if (templete != '') {
$('#toot-after .no-data').hide() $('#toot-after .no-data').hide()
$('#toot-after-new').removeClass('hide')
} else {
$('#toot-after-new').addClass('hide')
$('#toot-after').html('<span class="no-data">' + lang.lang_details_nodata + '</span>')
} }
$('#toot-after').html(templete) $('#toot-after').html(templete)
$('#toot-after .hide').html(lang.lang_details_filtered) $('#toot-after .hide').html(lang.lang_details_filtered)
@ -230,6 +240,9 @@ function getContext(id, acct_id) {
var templete = parse(json.ancestors, '', acct_id, '', '', mute) var templete = parse(json.ancestors, '', acct_id, '', '', mute)
if (templete != '') { if (templete != '') {
$('#toot-reply .no-data').hide() $('#toot-reply .no-data').hide()
$('#toot-reply-new').removeClass('hide')
} else {
$('#toot-reply-new').addClass('hide')
} }
$('#toot-reply').prepend(templete) $('#toot-reply').prepend(templete)
$('#toot-reply .hide').html(lang.lang_details_filtered) $('#toot-reply .hide').html(lang.lang_details_filtered)

View File

@ -1563,7 +1563,7 @@ function mastodonBaseStreaming(acct_id) {
const at = localStorage.getItem(`acct_${acct_id}_at`) const at = localStorage.getItem(`acct_${acct_id}_at`)
let wss = 'wss://' + domain let wss = 'wss://' + domain
if (localStorage.getItem('streaming_' + acct_id)) { if (localStorage.getItem('streaming_' + acct_id)) {
wss = localStorage.getItem('streaming_' + acct_id) wss = localStorage.getItem('streaming_' + acct_id).replace('https://', 'wss://')
} }
const start = `${wss}/api/v1/streaming/?access_token=${at}` const start = `${wss}/api/v1/streaming/?access_token=${at}`
mastodonBaseWs[domain] = new WebSocket(start) mastodonBaseWs[domain] = new WebSocket(start)

View File

@ -299,7 +299,7 @@ function oldStreaming(type, cc, acct_id, tlid, data, mute, delc, voice, mode) {
const domain = localStorage.getItem(`domain_${acct_id}`) const domain = localStorage.getItem(`domain_${acct_id}`)
var at = localStorage.getItem('acct_' + acct_id + '_at') var at = localStorage.getItem('acct_' + acct_id + '_at')
if (localStorage.getItem('streaming_' + acct_id)) { if (localStorage.getItem('streaming_' + acct_id)) {
var wss = localStorage.getItem('streaming_' + acct_id) var wss = localStorage.getItem('streaming_' + acct_id).replace('https://', 'wss://')
} else { } else {
var wss = 'wss://' + domain var wss = 'wss://' + domain
} }

View File

@ -4,13 +4,18 @@ var envView = new Vue({
data: { config: envConstruction }, data: { config: envConstruction },
methods: { methods: {
complete: function (i, val) { complete: function (i, val) {
var ls = envView.config[i].storage var ls = envView.config[i]
M.toast({ html: 'Complete', displayLength: 3000 }) if (!ls.data) {
if (!val) { ls = [ls]
var id = envView.config[i].id } else {
var val = $('#' + id).val() ls = ls.data
}
for (var j = 0; j < ls.length; j++) {
M.toast({ html: 'Complete', displayLength: 3000 })
var id = ls[j].id
var val = $('#' + id).val()
localStorage.setItem(ls[j].storage, val)
} }
localStorage.setItem(ls, val)
if (ls == 'ha') { if (ls == 'ha') {
hardwareAcceleration(val) hardwareAcceleration(val)
} }
@ -105,8 +110,15 @@ function load() {
var max = envView.config.length var max = envView.config.length
for (var i = 0; i < max; i++) { for (var i = 0; i < max; i++) {
var ls = envView.config[i].storage var ls = envView.config[i].storage
if (localStorage.getItem(ls)) { if (ls) {
envView.config[i].setValue = localStorage.getItem(ls) if (localStorage.getItem(ls)) {
envView.config[i].setValue = localStorage.getItem(ls)
}
} else {
ls = envView.config[i].data
for (var j = 0; j < ls.length; j++) {
envView.config[i].data[j].setValue = localStorage.getItem(ls[j].storage)
}
} }
} }
var max = tlView.config.length var max = tlView.config.length

View File

@ -1,6 +1,6 @@
{ {
"name": "thedesk", "name": "thedesk",
"version": "22.0.1", "version": "22.1.0",
"codename": "Koume", "codename": "Koume",
"description": "TheDesk is a Mastodon client for PC.", "description": "TheDesk is a Mastodon client for PC.",
"repository": "https://github.com/cutls/TheDesk", "repository": "https://github.com/cutls/TheDesk",
@ -61,16 +61,16 @@
"dependencies": { "dependencies": {
"@fortawesome/fontawesome-free": "^5.15.2", "@fortawesome/fontawesome-free": "^5.15.2",
"@syuilo/aiscript": "^0.11.1", "@syuilo/aiscript": "^0.11.1",
"electron-dl": "^3.0.2", "electron-dl": "^3.2.1",
"jimp": "^0.16.1", "jimp": "^0.16.1",
"jquery": "^3.5.1", "jquery": "^3.6.0",
"jquery-ui-dist": "^1.12.1", "jquery-ui-dist": "^1.12.1",
"json5": "^2.2.0", "json5": "^2.2.0",
"lodash": "^4.17.20", "lodash": "^4.17.21",
"materialize-css": "git://github.com/cutls/materialize#v1-dev", "materialize-css": "git://github.com/cutls/materialize#v1-dev",
"sanitize-html": "^2.3.2", "sanitize-html": "^2.3.2",
"sumchecker": "^3.0.1", "sumchecker": "^3.0.1",
"sweetalert2": "^10.14.0", "sweetalert2": "^10.15.7",
"system-font-families": "^0.4.1", "system-font-families": "^0.4.1",
"vue": "^2.6.12" "vue": "^2.6.12"
}, },
@ -80,10 +80,10 @@
"devDependencies": { "devDependencies": {
"browserify": "^17.0.0", "browserify": "^17.0.0",
"chokidar": "^3.5.1", "chokidar": "^3.5.1",
"electron": "^10.1.5", "electron": "^10.2.0",
"electron-builder": "^22.9.1", "electron-builder": "^22.9.1",
"electron-rebuild": "^2.3.5", "electron-rebuild": "^2.3.5",
"eslint": "^7.13.0", "eslint": "^7.23.0",
"readline-sync": "1.4.10" "readline-sync": "1.4.10"
}, },
"build": { "build": {

View File

@ -390,25 +390,26 @@
<div id="tootmodal" class="modal modal-fixed-footer"> <div id="tootmodal" class="modal modal-fixed-footer">
<div class="modal-content"> <div class="modal-content">
<ul class="collapsible" id="det-col"> <ul class="collapsible" id="det-col">
<li class="dm-hide"> <li class="dm-hide contextTool">
<div class="collapsible-header"> <div class="collapsible-header">
<i class="material-icons">people_outline</i>@@afterLTL@@ <i class="material-icons">people_outline</i>@@afterLTL@@
</div> </div>
<div class="collapsible-body toot-reset" id="ltl-after"></div> <div class="collapsible-body toot-reset" id="ltl-after"></div>
</li> </li>
<li class="dm-hide"> <li class="dm-hide contextTool">
<div class="collapsible-header"> <div class="collapsible-header">
<i class="material-icons">person_outline</i>@@afterUTL@@ <i class="material-icons">person_outline</i>@@afterUTL@@
</div> </div>
<div class="collapsible-body toot-reset" id="user-after"></div> <div class="collapsible-body toot-reset" id="user-after"></div>
</li> </li>
<li class="dm-hide"> <li class="dm-hide contextTool">
<div class="collapsible-header"><i class="material-icons">language</i>@@afterFTL@@</div> <div class="collapsible-header"><i class="material-icons">language</i>@@afterFTL@@</div>
<div class="collapsible-body toot-reset" id="ftl-after"></div> <div class="collapsible-body toot-reset" id="ftl-after"></div>
</li> </li>
<li> <li>
<div class="collapsible-header"> <div class="collapsible-header">
<i class="material-icons">arrow_upward</i>@@contextBefore@@ <i class="material-icons">arrow_upward</i>@@contextBefore@@
<i class="material-icons red-text hide" id="toot-reply-new">new_releases</i>
</div> </div>
<div class="collapsible-body toot-reset" id="toot-reply"></div> <div class="collapsible-body toot-reset" id="toot-reply"></div>
</li> </li>
@ -423,16 +424,17 @@
<li> <li>
<div class="collapsible-header"> <div class="collapsible-header">
<i class="material-icons">arrow_downward</i>@@contextAfter@@ <i class="material-icons">arrow_downward</i>@@contextAfter@@
<i class="material-icons red-text hide" id="toot-after-new">new_releases</i>
</div> </div>
<div class="collapsible-body toot-reset" id="toot-after"></div> <div class="collapsible-body toot-reset" id="toot-after"></div>
</li> </li>
<li class="dm-hide"> <li class="dm-hide contextTool">
<div class="collapsible-header"> <div class="collapsible-header">
<i class="material-icons">people_outline</i>@@beforeLTL@@ <i class="material-icons">people_outline</i>@@beforeLTL@@
</div> </div>
<div class="collapsible-body toot-reset" id="toot-before"></div> <div class="collapsible-body toot-reset" id="toot-before"></div>
</li> </li>
<li class="dm-hide"> <li class="dm-hide contextTool">
<div class="collapsible-header"> <div class="collapsible-header">
<i class="material-icons">person_outline</i>@@beforeUTL@@ <i class="material-icons">person_outline</i>@@beforeUTL@@
</div> </div>
@ -781,21 +783,21 @@
<a href="https://thedesk.top" target="_blank">HP</a><br /> <a href="https://thedesk.top" target="_blank">HP</a><br />
<a href="https://github.com/cutls/TheDesk" target="_blank">GitHub</a><br /> <a href="https://github.com/cutls/TheDesk" target="_blank">GitHub</a><br />
<br /> <br />
<div id="release-22-0-1_Koume" class="release-do" style="display:none; "> <div id="release-22-1-0_Koume" class="release-do" style="display:none; ">
<br /> <br />
<a href="https://ja.mstdn. <a href="https://ja.mstdn.
wiki/TheDesk" target="_blank">機能一覧</a><br /> wiki/TheDesk" target="_blank">機能一覧</a><br />
Pixiv Pixiv
FanboxやPatreonでは支援者様限定で様々なTheDeskに関する記事をご覧いただけます。最低月一更新。<br /> FanboxやPatreonでは支援者様限定で様々なTheDeskに関する記事をご覧いただけます。最低月一更新。<br />
困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。 困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。
<h5>Release Note 22.0.1 (Koume)</h5> <h5>Release Note 22.1.0 (Koume)</h5>
<!--上のdivのidも変えてね--> <!--上のdivのidも変えてね-->
手動調節したカラム横幅を自動に戻すボタン <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a><br> Crowdin連携の強化 <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a><br>
・水平方向のスクロールバーについて太さを変更できるように <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a><br> ・macOSにおけるNowPlayingで、コントロールセンター経由を追加 <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a><br>
・絵文字入力時にカーソル位置がリセットされてしまう問題を修正 <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a><br> ・Pleroma特有のリフレッシュトークンの実装 <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a> <a onclick="udgEx('kPherox@pl.kplerox.dev','main')" class="contributor"><img src="https://user-images.githubusercontent.com/17561618/66582379-a3714800-ebbc-11e9-8402-d81a35a3be9f.png">kPherox</a><br>
・AiScriptプラグインのアップデート <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a><br> ・画像の回転ボタン <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a><br>
・未読アナウンス数が消えない不具合を修正 <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a><br> ・タグやメンションのリンクの対象アカウントがうまく認識されない不具合を修正 <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a> <a onclick="udgEx('popn_ja@popon.pptdn.jp','main')" class="contributor"><img src="https://avatars3.githubusercontent.com/u/24523508?s=88&v=4">kaias1jp</a><br>
・最初のチュートリアルを一時的に削除 <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a><br> ・TweetDeck連携を削除 <a onclick="udgEx('Cutls@cutls.com','main')" class="contributor"><img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">cutls</a><br>
</div> </div>
<div id="release-en" style="display:none"> <div id="release-en" style="display:none">

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Звук (Отговор)", "replySound": "Звук (Отговор)",
"favSound": "Звук(Фаворит)", "favSound": "Звук(Фаворит)",
"btSound": "Звук(Подсилване)", "btSound": "Звук(Подсилване)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Auf WebUI und Drittanbieter-unterstützten Clients geteilt.", "markerswarn": "Mastodon 3.0~. Auf WebUI und Drittanbieter-unterstützten Clients geteilt.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Ton bei Antwort", "replySound": "Ton bei Antwort",
"favSound": "Ton bei Favorit", "favSound": "Ton bei Favorit",
"btSound": "Ton bei Verstärkung", "btSound": "Ton bei Verstärkung",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "crwdns4086:0crwdne4086:0", "markerswarn": "crwdns4086:0crwdne4086:0",
"remote_img": "crwdns4382:0crwdne4382:0", "remote_img": "crwdns4382:0crwdne4382:0",
"remote_imgWarn": "crwdns4384:0crwdne4384:0", "remote_imgWarn": "crwdns4384:0crwdne4384:0",
"moreContextMode": "crwdns4572:0crwdne4572:0",
"moreContextModeWarn": "crwdns4574:0crwdne4574:0",
"replySound": "crwdns4088:0crwdne4088:0", "replySound": "crwdns4088:0crwdne4088:0",
"favSound": "crwdns4090:0crwdne4090:0", "favSound": "crwdns4090:0crwdne4090:0",
"btSound": "crwdns4092:0crwdne4092:0", "btSound": "crwdns4092:0crwdne4092:0",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -1,7 +1,7 @@
{ {
"draghere": "Arrastrá y soltá acá para subir", "draghere": "Arrastrar y soltar aquí para subir",
"nowOffline": "OFFLINE: all of your post is in the draft box and you should reload after re-connect to the Internet", "nowOffline": "SIN CONEXIÓN: toda su publicación está en el cuadro de borrador y debe volver a cargarla después de volver a conectarse a Internet",
"reOnline": "Now we are in the Internet, you should reload...", "reOnline": "Ahora estamos en Internet, usted debería recargar...",
"close": "Cerrar", "close": "Cerrar",
"webSrc": "Buscar en la Web", "webSrc": "Buscar en la Web",
"tsSrc": "Buscar en tootsearch", "tsSrc": "Buscar en tootsearch",
@ -47,7 +47,7 @@
"thingsEmoji": "Herramientas", "thingsEmoji": "Herramientas",
"symbolEmoji": "Símbolos", "symbolEmoji": "Símbolos",
"flagsEmoji": "Banderas", "flagsEmoji": "Banderas",
"draft": "Draft", "draft": "Borrador",
"poll": "Encuesta", "poll": "Encuesta",
"pollDdisabled": "Encuestas: deshabilitadas", "pollDdisabled": "Encuestas: deshabilitadas",
"pollProvider": "Proveedor de encuesta", "pollProvider": "Proveedor de encuesta",

View File

@ -49,7 +49,7 @@
"lang_manager_godev": "Abrí DevCenter de Misskey. También mostramos documentos oficiales como referencia.", "lang_manager_godev": "Abrí DevCenter de Misskey. También mostramos documentos oficiales como referencia.",
"lang_manager_logout": "Cerrar sesión", "lang_manager_logout": "Cerrar sesión",
"lang_manager_maxChars": "Máx. de caracteres para toots", "lang_manager_maxChars": "Máx. de caracteres para toots",
"lang_manager_refreshAt": "Login with this domain", "lang_manager_refreshAt": "Iniciar sesión con este dominio",
"lang_bbmd_misskey": "TheDesk considera \"@\" como respuesta, pero podés poner otro parámetro. \"No listado\" en Mastodon significa \"Principal\" en Misskey.", "lang_bbmd_misskey": "TheDesk considera \"@\" como respuesta, pero podés poner otro parámetro. \"No listado\" en Mastodon significa \"Principal\" en Misskey.",
"lang_emoji_get": "Obtené emojis", "lang_emoji_get": "Obtené emojis",
"lang_emoji_custom": "Emojis personalizados", "lang_emoji_custom": "Emojis personalizados",
@ -72,7 +72,7 @@
"lang_post_btn3": "Continuar con el envío", "lang_post_btn3": "Continuar con el envío",
"lang_post_unfinishedMedia": "El servidor no ha terminado de procesar tu archivo. Volvé a intentarlo.", "lang_post_unfinishedMedia": "El servidor no ha terminado de procesar tu archivo. Volvé a intentarlo.",
"lang_post_retry": "Reintentar", "lang_post_retry": "Reintentar",
"lang_post_offline": "Add to the drafts because of offline", "lang_post_offline": "Agregar a los borradores debido a estar fuera de línea",
"lang_status_favWarn": "Llevará un minuto marcar un toot remoto como favorito.", "lang_status_favWarn": "Llevará un minuto marcar un toot remoto como favorito.",
"lang_status_btWarn": "Llevará un minuto retootear un toot remoto.", "lang_status_btWarn": "Llevará un minuto retootear un toot remoto.",
"lang_status_follow": "Seguir", "lang_status_follow": "Seguir",
@ -89,8 +89,8 @@
"lang_status_endorse": "Destacado en el perfil", "lang_status_endorse": "Destacado en el perfil",
"lang_status_followers": "Seguidores", "lang_status_followers": "Seguidores",
"lang_status_active": "Último estado", "lang_status_active": "Último estado",
"lang_secure_draft": "Add to draft", "lang_secure_draft": "Agregar al borrador",
"lang_secure_useThis": "Use this", "lang_secure_useThis": "Usar este",
"lang_secure_deleteThis": "Eliminar este toot", "lang_secure_deleteThis": "Eliminar este toot",
"lang_suggest_nodata": "Por favor, obtené la lista de emojis para mostrar sugerencias.", "lang_suggest_nodata": "Por favor, obtené la lista de emojis para mostrar sugerencias.",
"lang_usetxtbox_reply": "Modo de respuesta. \"Ctrl\" + \"Mayús\" + \"C\" para limpiar.", "lang_usetxtbox_reply": "Modo de respuesta. \"Ctrl\" + \"Mayús\" + \"C\" para limpiar.",
@ -141,11 +141,11 @@
"lang_layout_nodata": "[Sin datos]<br>F5/⌘+R para refrescar", "lang_layout_nodata": "[Sin datos]<br>F5/⌘+R para refrescar",
"lang_layout_dm": "Mensaje directo", "lang_layout_dm": "Mensaje directo",
"lang_layout_webviewmode": "Preferir WebView", "lang_layout_webviewmode": "Preferir WebView",
"lang_layout_excluded": "Excluded type of notification", "lang_layout_excluded": "Tipo de notificación excluido",
"lang_layout_mention": "Mentions", "lang_layout_mention": "Menciones",
"lang_layout_fav": "Favourites", "lang_layout_fav": "Favoritos",
"lang_layout_bt": "Boosts", "lang_layout_bt": "Retootear",
"lang_layout_poll": "Polls", "lang_layout_poll": "Encuestas",
"lang_layout_excludingbt": "Mostrar modo de retoot (DESACTIVADO / Excluir retoots / Sólo retoots)", "lang_layout_excludingbt": "Mostrar modo de retoot (DESACTIVADO / Excluir retoots / Sólo retoots)",
"lang_layout_leftFold": "Pegar a la izquierda", "lang_layout_leftFold": "Pegar a la izquierda",
"lang_layout_leftUnfold": "Colocar en la derecha", "lang_layout_leftUnfold": "Colocar en la derecha",
@ -154,7 +154,7 @@
"lang_layout_unread": "Sin leer", "lang_layout_unread": "Sin leer",
"lang_layout_tagManager": "Administrador de etiqueta de línea temporal", "lang_layout_tagManager": "Administrador de etiqueta de línea temporal",
"lang_layout_announ": "Anuncio: el contador es el número de tus anuncios no leídos. Si no se muestra, significa que todos los anuncios están marcados como leídos.", "lang_layout_announ": "Anuncio: el contador es el número de tus anuncios no leídos. Si no se muestra, significa que todos los anuncios están marcados como leídos.",
"lang_layout_resetWidth": "Stretch this column", "lang_layout_resetWidth": "Estirar esta columna",
"lang_sort_gothis": "Ir a esta columna", "lang_sort_gothis": "Ir a esta columna",
"lang_sort_remthis": "Eliminar esta columna", "lang_sort_remthis": "Eliminar esta columna",
"lang_spotify_img": "Adjuntar la tapa del álbum", "lang_spotify_img": "Adjuntar la tapa del álbum",
@ -232,7 +232,7 @@
"lang_parse_html": "Mostrar HTML insertado", "lang_parse_html": "Mostrar HTML insertado",
"lang_parse_notffilter": "Mostrar notificaciones de este usuario", "lang_parse_notffilter": "Mostrar notificaciones de este usuario",
"lang_parse_hidden": "Toot citado no visible", "lang_parse_hidden": "Toot citado no visible",
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)", "lang_parse_disconnected": "La transmisión ha sido desconectada (reintentar después de 3s)",
"lang_misskeyparse_renote": "Republicar", "lang_misskeyparse_renote": "Republicar",
"lang_misskeyparse_renoteqt": "Renovar", "lang_misskeyparse_renoteqt": "Renovar",
"lang_misskeyparse_reaction": "Reacción", "lang_misskeyparse_reaction": "Reacción",

View File

@ -12,7 +12,7 @@
"env": "Configuración del sistema", "env": "Configuración del sistema",
"setlang": "Idiomas", "setlang": "Idiomas",
"backup": "Importación y exportación de la configuración", "backup": "Importación y exportación de la configuración",
"backupWarn": "If you got a error when you choose the file, please paste the strings printed when you open the file and click import", "backupWarn": "Si tiene un error al elegir el archivo, por favor, pegue las cadenas impresas cuando abra el archivo y haga clic en importar",
"import": "Importar", "import": "Importar",
"export": "Exportar", "export": "Exportar",
"hardwareAcceleration": "Deshabilitar la aceleración por hardware", "hardwareAcceleration": "Deshabilitar la aceleración por hardware",
@ -24,11 +24,11 @@
"nativenotf": "Notificación nativa", "nativenotf": "Notificación nativa",
"nnwarn": "Esto no funciona en la compilación portátil para Windows.", "nnwarn": "Esto no funciona en la compilación portátil para Windows.",
"nntest": "Prueba de notificación", "nntest": "Prueba de notificación",
"width": "Width of columns", "width": "Ancho de columnas",
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.", "widthwarn": "La barra de desplazamiento se mostrará cuando el tamaño de la ventana sea mayor que el de las columnas.",
"fixwidth": "Ancho mínimo del explorador de TweetDeck", "fixwidth": "Ancho mínimo del explorador de TweetDeck",
"fixwidthwarn": "", "fixwidthwarn": "",
"margin": "Margin between timelines", "margin": "Margen entre líneas de tiempo",
"above": "por encima", "above": "por encima",
"font": "Tipografía", "font": "Tipografía",
"fontwarn": "Seleccioná tu tipografía favorita (sólo para Windows y macOS)", "fontwarn": "Seleccioná tu tipografía favorita (sólo para Windows y macOS)",
@ -48,22 +48,22 @@
"customthemeDirection": "Esquema de colores", "customthemeDirection": "Esquema de colores",
"advanced": "Configuración avanzada (6 colores adicionales)", "advanced": "Configuración avanzada (6 colores adicionales)",
"advancedWarn": "La configuración avanzada será <i>nula</i> si no establecés nada, mientras que la configuración básica será blanca (<i>fff</i>). La configuración avanzada será restablecida si se guarda con el panel cerrado.", "advancedWarn": "La configuración avanzada será <i>nula</i> si no establecés nada, mientras que la configuración básica será blanca (<i>fff</i>). La configuración avanzada será restablecida si se guarda con el panel cerrado.",
"use": "Use this", "use": "Usar este",
"copyFrom": "Copy from", "copyFrom": "Copiar desde",
"bg": "Background color", "bg": "Color de fondo",
"subcolor": "Subcolor, en armonía con el color secundario", "subcolor": "Subcolor, en armonía con el color secundario",
"text": "Color del texto", "text": "Color del texto",
"accent": "Fondo de retoots", "accent": "Fondo de retoots",
"modal": "Fondo de modos", "modal": "Fondo de modos",
"modalFooter": "Background of modal window's footer", "modalFooter": "Fondo del pie de la ventana modal",
"thirdColor": "Backgroud of tag buttons, etc(near to Background)", "thirdColor": "Fondo de botones de etiquetas, etc. (cerca de fondo)",
"forthColor": "Title bar(same scheme to Background)", "forthColor": "Barra de título (mismo esquema del color de Fondo)",
"bottom": "Fondo de barra inferior", "bottom": "Fondo de barra inferior",
"emphasized": "Emphasized toot's background", "emphasized": "Fondo del toot enfatizado",
"postbox": "Fondo de caja de publicación y menú", "postbox": "Fondo de caja de publicación y menú",
"active": "Fondo, botones de advertencia de contenido…", "active": "Fondo, botones de advertencia de contenido…",
"selected": "Background of selected with arrow keys", "selected": "Fondo de las teclas de flecha seleccionadas",
"selectedWithShare": "Background of selected with arrow keys(boosted toots)", "selectedWithShare": "Fondo seleccionado con teclas de flecha (toots reforzados)",
"add_new": "Agregar nuevo", "add_new": "Agregar nuevo",
"name": "Nombre", "name": "Nombre",
"desc": "Acerca de este tema", "desc": "Acerca de este tema",
@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Compartido en interface web y clientes de terceros soportados.", "markerswarn": "Mastodon 3.0~. Compartido en interface web y clientes de terceros soportados.",
"remote_img": "Obtener imágenes del servidor remoto", "remote_img": "Obtener imágenes del servidor remoto",
"remote_imgWarn": "Todas las previsualizaciones se obtienen de tu servidor de caché conectado.", "remote_imgWarn": "Todas las previsualizaciones se obtienen de tu servidor de caché conectado.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sonido (respuesta)", "replySound": "Sonido (respuesta)",
"favSound": "Sonido (marcado como favorito)", "favSound": "Sonido (marcado como favorito)",
"btSound": "Sonido (retoot)", "btSound": "Sonido (retoot)",
@ -142,10 +144,10 @@
"notqt": "Deshabilitado (ocultar botones en las líneas temporales)", "notqt": "Deshabilitado (ocultar botones en las líneas temporales)",
"apiQuote": "API (sólo algunas instancias)", "apiQuote": "API (sólo algunas instancias)",
"showBookmarkAction": "Mostrar un botón de marcador", "showBookmarkAction": "Mostrar un botón de marcador",
"scrollBar": "Height of the scroll bar", "scrollBar": "Altura de la barra de desplazamiento",
"thin": "Thin", "thin": "Ligero",
"normal": "Normal", "normal": "Normal",
"thick": "Thick", "thick": "Grosor",
"main": "Acciones de cuenta predeterminada", "main": "Acciones de cuenta predeterminada",
"mainwarn": "Se puede establecer la cuenta predeterminada en el Administrador de cuentas.", "mainwarn": "Se puede establecer la cuenta predeterminada en el Administrador de cuentas.",
"lastacct": "Cuenta usada recientemente", "lastacct": "Cuenta usada recientemente",
@ -161,8 +163,8 @@
"iks": "Inserción fácil", "iks": "Inserción fácil",
"okswarn": "Podés insertar cualquier letra y emoji con sólo 3 teclas", "okswarn": "Podés insertar cualquier letra y emoji con sólo 3 teclas",
"plugin": "Plugins", "plugin": "Plugins",
"howToWritePlugin": "Japanese docs of AiScript TheDesk plugins", "howToWritePlugin": "Documentos en japones de los plugins de AiScript TheDesk",
"pluginList": "Plugin list", "pluginList": "Lista de plugins",
"muteemp": "Configuración de silenciado y resaltado", "muteemp": "Configuración de silenciado y resaltado",
"climute": "Silenciado de usuario", "climute": "Silenciado de usuario",
"cliemp": "Resaltado de usuario", "cliemp": "Resaltado de usuario",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -2,24 +2,24 @@
"list": "Liste des comptes", "list": "Liste des comptes",
"back": "Retour", "back": "Retour",
"add": "Ajouter un compte", "add": "Ajouter un compte",
"addAcct": "Fill the instance domain (like mastodon.social)", "addAcct": "Écrire le domaine de l'instance (mastodon.social par exemple)",
"codesetupwarn": "Uncheck it to skip pasiting code.(login to Mastodon on Windows or macOS) (Recommended: pcheck)", "codesetupwarn": "Décochez cette case pour ignorer le code de collage.(Connectez-vous à Mastodon sous Windows ou macOS) (Recommandé: coché)",
"codesetup": "Code setup", "codesetup": "Configuration du code",
"mainacct": "Main an account", "mainacct": "Compte principal",
"selacct": "Choisir un compte", "selacct": "Choisir un compte",
"codepastewarn": "Insérer le code et fermez le navigateur.", "codepastewarn": "Insérez le code et fermez le navigateur.",
"codepaste": "Code", "codepaste": "Code",
"domain": "Domaine", "domain": "Domaine",
"connect": "Serveur fédérées", "connect": "Serveur fédérées",
"toots": "Pouets", "toots": "Pouets",
"users": "Utilisateur·rice·s", "users": "Utilisateur·rice·s",
"users2": "utilisateur·rice·s", "users2": "utilisateur·rice·s",
"safety": "Connection", "safety": "Connexion",
"ver": "Version de Mastodon", "ver": "Version de Mastodon",
"ko": "", "ko": "",
"thisismisskey": "Connexion en tant que Misskey", "thisismisskey": "Connexion en tant que Misskey",
"misskeylogin": "Read <a href=\"https://thedesk.top/how-to-misskey-login.html\">Docs(ja)</a> to login Misskey.", "misskeylogin": "Lisez <a href=\"https://thedesk.top/how-to-misskey-login.html\">Docs(ja)</a> pour vous connecter à Misskey.",
"nodata": "Aucune donnée", "nodata": "Aucune donnée",
"accessTokenSetup": "Use access token to login(click after fill not code but access-token in box: Advanced)", "accessTokenSetup": "Utilisez un jeton d'accès pour vous connecter (cliquez après le remplissage, utilise le le jeton d'accès plutôt qu'un code dans la bote \"Avancé\")",
"haveExported": "Having the exported file of TheDesk, click here to jump setting page" "haveExported": "Après avoir exporté le fichier de TheDesk, cliquez ici pour aller à la page de configuration"
} }

View File

@ -1,127 +1,127 @@
{ {
"draghere": "Faites glisser ici pour transférer", "draghere": "Faites glisser ici pour transférer",
"nowOffline": "OFFLINE: all of your post is in the draft box and you should reload after re-connect to the Internet", "nowOffline": "Hors LIGNE : tout votre message est dans la zone brouillon et vous devriez recharger après vous être reconnecté à Internet",
"reOnline": "Now we are in the Internet, you should reload...", "reOnline": "Maintenant que nous sommes connectés à Internet, vous devriez recharger...",
"close": "Fermer", "close": "Fermer",
"webSrc": "Search on Web", "webSrc": "Rechercher sur le Web",
"tsSrc": "Search on tootsearch", "tsSrc": "Rechercher dans la recherche de pouet",
"showSelectProf": "Show profile of the selecting account", "showSelectProf": "Afficher le profil du compte sélectionné",
"closethisbox": "Close this box", "closethisbox": "Fermer cette fenêtre",
"toot": "Pouet", "toot": "Pouet",
"post-new": "Post new", "post-new": "Publier un nouveau message",
"nsfwDes": "Mark media as sensitive", "nsfwDes": "Marquer le média comme sensible",
"cwDes": "Hide text behind warning", "cwDes": "Masquer le texte derrière un avertissement",
"selfile": "Attach..", "selfile": "Joindre..",
"insertEmoji": "Émojis", "insertEmoji": "Émojis",
"schedule": "Scheduled toot", "schedule": "Pouet programmé",
"postat": "Post at", "postat": "Publier à",
"scheduleWarn": "2.7.0~ Minimum time gap:5min(clock on the server may not be accurate.)", "scheduleWarn": "2.7.0~ Intervalle de temps minimum : 5min (l'horloge sur le serveur peut ne pas être précise.)",
"clearToot": "Clear toot box", "clearToot": "Vider le champs de saisie du pouet",
"replyMode": "Répondre", "replyMode": "Répondre",
"no": "Non", "no": "Non",
"yes": "Oui", "yes": "Oui",
"temp": "Attaching files", "temp": "Joindre des fichiers",
"nothing": "Aucun", "nothing": "Aucun",
"stamp": "Stamp", "stamp": "Tamponer",
"stampWarn": "Your acct(aa@bb.cc) is printed on the right-bottom of the uploaded image", "stampWarn": "Votre compte (aa@bb.cc) est affiché en bas à droite de l'image envoyée",
"vis": "Adjust status privacy", "vis": "Ajuster la confidentialité du statut",
"cwtext": "Warning text", "cwtext": "Texte d'avertissement",
"selectVis": "Adjust status privacy", "selectVis": "Ajuster la confidentialité du statut",
"publicJP": "", "publicJP": "",
"unlistedJP": "", "unlistedJP": "",
"privateJP": "", "privateJP": "",
"localJP": "Local only", "localJP": "Local uniquement",
"sectoot": "Secondary Toot", "sectoot": "Pouet secondaire",
"directJP": "", "directJP": "",
"emojiWarn": "", "emojiWarn": "",
"emojiInsertWarn": "Some emojis are not able to be inserted.", "emojiInsertWarn": "Certains emojis ne peuvent pas être insérés.",
"refreshEmoji": "Refresh emojis list", "refreshEmoji": "Actualiser la liste des émojis",
"closeThisBox": "Close this box", "closeThisBox": "Fermer cette fenêtre",
"showThisEmoji": " are shown.", "showThisEmoji": " sont affichés.",
"customEmoji": "Custom emojis", "customEmoji": "Émojis personnalisés",
"peopleEmoji": "Emojis of people", "peopleEmoji": "Emojis de personnes",
"natureEmoji": "Emojis of nature", "natureEmoji": "Emojis de nature",
"foodEmoji": "Emojis of foods", "foodEmoji": "Emojis de nouriture",
"activityEmoji": "Emojis of activities", "activityEmoji": "Emojis d'activités",
"placeEmoji": "Emojis of places", "placeEmoji": "Emojis de lieux",
"thingsEmoji": "Emojis of tools", "thingsEmoji": "Emojis d'outils",
"symbolEmoji": "Emojis of symbols", "symbolEmoji": "Emojis de symboles",
"flagsEmoji": "Emojis of flags", "flagsEmoji": "Emojis de drapeaux",
"draft": "Draft", "draft": "Brouillon",
"poll": "Poll", "poll": "Sondage",
"pollDdisabled": "Polls: Disabled", "pollDdisabled": "Sondages : désactivés",
"pollProvider": "Provider of Poll", "pollProvider": "Fournisseur du sondage",
"polluntil": "Hide 'votes' count until people vote it.", "polluntil": "Masquer le nombre de 'votes' jusqu'à ce que les gens votent.",
"choice": "Choice", "choice": "Choix",
"pollmulti": "Multiple select", "pollmulti": "Sélection multiple",
"expires_in": "Expires in...(sec)", "expires_in": "Expire dans...(sec)",
"contextBefore": "Context before this toot", "contextBefore": "Contexte avant ce pouet",
"thisToot": "This toot", "thisToot": "Ce pouet",
"contextAfter": "Context after this toot", "contextAfter": "Contexte après ce pouet",
"beforeLTL": "Local TL before this toot", "beforeLTL": "TL locale avant ce pouet",
"beforeUTL": "User TL before this toot", "beforeUTL": "TL de l'utilisateur avant ce pouet",
"afterLTL": "Local TL after this toot)", "afterLTL": "TL locale après ce pouet)",
"afterUTL": "User TL before this toot", "afterUTL": "TL de l'utilisateur avant ce pouet",
"afterFTL": "Federated TL after this toot", "afterFTL": "TL fédérée après ce pouet",
"favedPeople": "People who favourited it", "favedPeople": "Personnes qui l'ont mis en favori",
"btedPeople": "People who boosted it", "btedPeople": "Personnes qui l'ont boosté",
"useOtherAcct1": "Use other account", "useOtherAcct1": "Utiliser un autre compte",
"useOtherAcct2": ":unfav and unBT are disabled.", "useOtherAcct2": ":unfav et unBT sont désactivés.",
"btWithVis": "Boost with visibility", "btWithVis": "Boost avec visibilité",
"reply": "Répondre", "reply": "Répondre",
"bt": "Boost", "bt": "Booster",
"favRegist": "Favourite", "favRegist": "Favoris",
"openBrowser": "Open in browser", "openBrowser": "Ouvrir dans un navigateur",
"screenshot": "Take a screenshot", "screenshot": "Prendre une capture d'écran",
"copyURL": "Copy the URL", "copyURL": "Copier l'URL",
"embed": "Embed", "embed": "Embarquer",
"toots": "Pouets", "toots": "Pouets",
"follow": "Follow", "follow": "Suivre",
"follower": "Follower", "follower": "Abonné",
"utlColumn": "Show as a column", "utlColumn": "Afficher en tant que colonne",
"timeline": "Fil", "timeline": "Fil",
"operateOtherAcct": "Cross-account", "operateOtherAcct": "Compte croisé",
"list": "Liste", "list": "Liste",
"makeNew": "Sauvegarder", "makeNew": "Sauvegarder",
"blocks": "Blocks", "blocks": "Blocs",
"mutes": "Mutes", "mutes": "Muets",
"block": "Bloquer", "block": "Bloquer",
"mute": "Mute", "mute": "Muet",
"domainBlock": "Domain block", "domainBlock": "Blocage de domaine",
"editProf": "Modifier le profil", "editProf": "Modifier le profil",
"change": "Sauvegarder", "change": "Sauvegarder",
"followReq": "Demandes de suivi", "followReq": "Demandes de suivi",
"likeHimOrHer": "Resembling", "likeHimOrHer": "Similaires",
"endorse": "Recommander sur sa page", "endorse": "Recommander sur sa page",
"openinbrowser": "Ouvrir dans un navigateur", "openinbrowser": "Ouvrir dans un navigateur",
"mainacct": "Set it an main account", "mainacct": "Définir un compte principal",
"frc": "Suggérer", "frc": "Suggérer",
"more": "Plus", "more": "Plus",
"revoverJP": " to ", "revoverJP": " à ",
"warnUseOtherAcct": "(Unable to unfollow)", "warnUseOtherAcct": "(Impossible de ne plus suivre)",
"revoverJPde": "", "revoverJPde": "",
"or": "ou", "or": "ou",
"openProf": "Afficher le profile", "openProf": "Afficher le profile",
"warnListRegist": "Follow to add this user to lists.", "warnListRegist": "Suivre pour ajouter cet utilisateur aux listes.",
"blockDomain": "Add blocking domain", "blockDomain": "Bloquer un nouveau domaine",
"name": "Display name", "name": "Nom affiché",
"note": "Note", "note": "Note",
"editProfImg": "Change avataor", "editProfImg": "Changer d'avatar",
"editHeader": "Change header image", "editHeader": "Changer l'image d'en-tête",
"blocked": "You are blocked. Why?", "blocked": "Vous êtes bloqué. Pourquoi?",
"likeUserDes": "Get people resembling this user.", "likeUserDes": "Rechercher des personnes ressemblant à cet utilisateur.",
"get": "Get", "get": "Obtenir",
"historyBack": "Retour", "historyBack": "Retour",
"empUser": "Emphasize this user", "empUser": "Mettre en valeur cet utilisateur",
"supportme": "Support TheDesk!", "supportme": "Supportez TheDesk!",
"TheDeskDes": "TheDesk has no ad, you need no charge to unlock premium features. We need your friendly support!", "TheDeskDes": "TheDesk n'a pas de publicité, vous n'avez pas besoin de payer pour débloquer les fonctionnalités premium. Nous avons besoin de votre soutien amical!",
"PatreonSupport": "Support on Patreon", "PatreonSupport": "Supporter sur Patreon",
"PixivSupport": "Support on Pixiv FANBOX", "PixivSupport": "Supporter sur Pixiv FANBOX",
"AWLSupport": "Amazon Wish List", "AWLSupport": "Liste de souhaits sur Amazon",
"SendAmazonGift1": "Give me Amazon Gift Card:", "SendAmazonGift1": "Offrez-moi une carte-cadeau Amazon:",
"SendAmazonGift2": "", "SendAmazonGift2": "",
"monthly": "Monthly", "monthly": "Mensuel",
"once": "Once", "once": "Une fois",
"local": "Local", "local": "Local",
"localMedia": "Local (médias)", "localMedia": "Local (médias)",
"home": "Principal", "home": "Principal",
@ -131,61 +131,61 @@
"integratedTLDes": "Intégré (local et principal)", "integratedTLDes": "Intégré (local et principal)",
"localPlusDes": "Integrated(Local and replies and BT on Home)", "localPlusDes": "Integrated(Local and replies and BT on Home)",
"notf": "Notifications", "notf": "Notifications",
"bookmark": "Bookmarks", "bookmark": "Marque-pages",
"showThisTL": "Show this TL:", "showThisTL": "Montrer cette TL:",
"webviewWarn": "TweetDeck with customed TJDeck(<a href='https://gist.github.com/cutls/8787a55d2c1c53274e68a427966046a6' target='_blank'>Code</a>/<a href='https://gist.github.com/totoraj930/d1394dadb51d75666a76829f61e7280c' target='_blank'>TJDeck</a>).", "webviewWarn": "TweetDeck avec une adaptation de TJDeck (<a href='https://gist.github.com/cutls/8787a55d2c1c53274e68a427966046a6' target='_blank'>Code</a>/<a href='https://gist.github.com/totoraj930/d1394dadb51d75666a76829f61e7280c' target='_blank'>TJDeck</a>).",
"add": "Add", "add": "Ajouter",
"search": "Search", "search": "Rechercher",
"sortSet": "Sort", "sortSet": "Trier",
"selectAcct": "Select an account", "selectAcct": "Select an account",
"listLocale": "Liste", "listLocale": "Liste",
"filterWord": "Filtering words", "filterWord": "Mots filtrés",
"degree": "Filter contexts", "degree": "Contextes filtrés",
"conver": "Conversations", "conver": "Conversations",
"prof": "Profiles", "prof": "Profils",
"option": "Options", "option": "Options",
"matchWord": "Whole word", "matchWord": "Mot entier",
"warnMatchWord": "Nice for Latin language", "warnMatchWord": "Utile pour les langues latines",
"except": "Drop instead of hide", "except": "Ignorer au lieu de cacher",
"exceptWorn": "Filtered toots will disappear irreversibly, even if filter is later removed", "exceptWorn": "Les pouets filtrés disparaîtront irréversiblement, même si le filtre est supprimé plus tard",
"avalableBefore": "Expire after", "avalableBefore": "Expire après",
"warnAvBefore": "Unset or \"0\" means \"Never\"", "warnAvBefore": "Non défini ou \"0\" signifie \"Jamais\"",
"warnAvBefore2": "This value may contain some error", "warnAvBefore2": "Cette valeur peut contenir une erreur",
"unlimited": "Never", "unlimited": "Jamais",
"days": "days", "days": "days",
"hours": "hours", "hours": "hours",
"mins": "minutes", "mins": "minutes",
"secs": "second(s)", "secs": "seconde(s)",
"warnOnIntegratedTL": "Integrated TL/Plus TL will hide both Home-filtering words and Local-filtering words.", "warnOnIntegratedTL": "La TL/Plus TL intégré masquera à la fois les mots filtrants sur le canal personnel et local.",
"helloTheDesk": "<h3>Welcome to TheDesk</h3><br><a href=\"acct.html\">Add an account</a> or click <i class=\"material-icons\">add</i> to add a column.", "helloTheDesk": "<h3>Welcome to TheDesk</h3><br><a href=\"acct.html\">Add an account</a> or click <i class=\"material-icons\">add</i> to add a column.",
"addColumn": "Ajouter une colonne", "addColumn": "Ajouter une colonne",
"sortColumns": "Tri", "sortColumns": "Tri",
"acctMan": "Account Manager", "acctMan": "Gestionnaire de compte",
"filter": "Filter", "filter": "Filtre",
"setting": "Paramètres", "setting": "Paramètres",
"reverse": "Toot box reverse", "reverse": "Toot box reverse",
"f5": "Super Reload", "f5": "Super Reload",
"nanoDes": "The smallest Mastodon,", "nanoDes": "Le plus petit Mastodon,",
"verTips": "Version", "verTips": "Version",
"clockTips": "Clock", "clockTips": "Horloge",
"ramTips": "RAM status", "ramTips": "Etat de la mémoire",
"changeTips": "Change Tips", "changeTips": "Changer les astuces",
"helpAndLogs": "Help & Log", "helpAndLogs": "Aide & Journal",
"help": "Help", "help": "Aide",
"contactwithlog": "If you tell me bugs(not working or something) with this log, I can detect what is wrong more easily.", "contactwithlog": "Si vous me parles de bugs (dysfonctionnement ou autre) avec ce journal, je peux détecter ce qui ne va pas plus facilement.",
"about": "About TheDesk", "about": "À propos de TheDesk",
"hereAddColumns": "<- Add TL", "hereAddColumns": "<- Ajout TL",
"foundBug": "I found a bug", "foundBug": "J'ai trouvé un bug",
"show": "Show", "show": "Afficher",
"directory": "Directory", "directory": "Répertoire",
"active": "Recently active", "active": "Actif récemment",
"newcomer": "New arrivals", "newcomer": "Nouveautés",
"local_only": "Local only", "local_only": "Local uniquement",
"menu": "Menu", "menu": "Menu",
"demoBottomBtns": "Welcome guide", "demoBottomBtns": "Guide de bienvenue",
"lookAtBottom": "Look at the bottom of this window. Here is some tips about it.", "lookAtBottom": "Regardez le bas de cette fenêtre. Voici quelques conseils à ce sujet.",
"acctManDesc": "Add more accounts and logout them.", "acctManDesc": "Ajoutez plus de comptes et déconnectez-les.",
"settingDesc": "Many and many preferences here. You will couldn't check it all!", "settingDesc": "Beaucoup beaucoup de préférences ici. Vous ne pourrez pas tout vérifier!",
"nanoDescPlus": "Mini window client(experimental)", "nanoDescPlus": "Mini fenêtre client (expérimental)",
"menuDesc": "All daily TheDesk and Mastodon tuning like <b>add and sort columns</b>, <b>list and filter check</b>." "menuDesc": "Tous les réglages quotidiens TheDesk et Mastodon comme <b>ajouter et trier les colonnes</b>, <b>vérifier une liste et filtrer</b>."
} }

View File

@ -22,171 +22,171 @@
"lang_time_suffixFromNow": null, "lang_time_suffixFromNow": null,
"lang_time_inPast": null, "lang_time_inPast": null,
"lang_time_seconds": "%d s", "lang_time_seconds": "%d s",
"lang_time_minute": "1 m", "lang_time_minute": "1 min",
"lang_time_minutes": "%d m", "lang_time_minutes": "%d min",
"lang_time_hour": "1 h", "lang_time_hour": "1 h",
"lang_time_hours": "%d h", "lang_time_hours": "%d h",
"lang_time_day": "1 d", "lang_time_day": "1 j",
"lang_time_days": "%d d", "lang_time_days": "%d j",
"lang_time_month": "1 mois", "lang_time_month": "1 mois",
"lang_time_months": "%d mois", "lang_time_months": "%d mois",
"lang_time_year": "y", "lang_time_year": "y",
"lang_time_years": "%d y", "lang_time_years": "%d y",
"lang_version_usever": "Aucune mise à jour n'a été trouvée ({{ver}})", "lang_version_usever": "Aucune mise à jour n'a été trouvée ({{ver}})",
"lang_version_skipver": "La mise à jour a été ignorée.", "lang_version_skipver": "La mise à jour a été ignorée.",
"lang_version_platform": "Do you want auto-updates?(users installed on Microsoft Store select 'No')", "lang_version_platform": "Voulez-vous des mises à jour automatiques? (si ce programme est installé depuis le Microsoft Store, sélectionnez 'Non')",
"lang_version_platform_linux": "Do you want auto-updates?(users installed on Snapcraft select 'No')", "lang_version_platform_linux": "Voulez-vous des mises à jour automatiques? (si ce programme est installé depuis Snapcraft, sélectionnez 'Non')",
"lang_version_platform_mac": "Do you want auto-updates?(Homebrew Cask users select 'No')", "lang_version_platform_mac": "Voulez-vous des mises à jour automatiques? (si ce programme est installé depuis un Cask Homebrew, sélectionnez 'Non')",
"lang_login_noauth": "Show TL of unlogined accounts", "lang_login_noauth": "Afficher la TL d'une instance distante",
"lang_manager_info": "À propos de cette instance", "lang_manager_info": "À propos de cette instance",
"lang_manager_refresh": "Actualiser", "lang_manager_refresh": "Actualiser",
"lang_manager_delete": "Se déconnecter", "lang_manager_delete": "Se déconnecter",
"lang_manager_color": "Couleur du compte", "lang_manager_color": "Couleur du compte",
"lang_manager_confirm": "is about to logout. Continue?", "lang_manager_confirm": "est sur le point de se déconnecter. Continuer ?",
"lang_manager_mainAcct": "Fait : choisissez un compte principal", "lang_manager_mainAcct": "Fait : choisissez un compte principal",
"lang_manager_def": "Par défaut", "lang_manager_def": "Par défaut",
"lang_manager_none": "Aucun", "lang_manager_none": "Aucun",
"lang_manager_godev": "Open DevCenter of Misskey. We show also an official documents to refer.", "lang_manager_godev": "Open DevCenter de Misskey. Nous montrons également un document officiel de référence.",
"lang_manager_logout": "Se déconnecter", "lang_manager_logout": "Se déconnecter",
"lang_manager_maxChars": "Nombre maximum de caractères de pouets", "lang_manager_maxChars": "Nombre maximum de caractères de pouets",
"lang_manager_refreshAt": "Se connecter avec ce domaine", "lang_manager_refreshAt": "Se connecter avec ce domaine",
"lang_bbmd_misskey": "TheDesk regards \"@\" as reply, but put other parameter. Unlisted on Mastodon means Home on Misskey.", "lang_bbmd_misskey": "TheDesk considère \"@\" comme une réponse, mais met un autre paramètre. Non listé sur Mastodon signifie Accueil sur Misskey.",
"lang_emoji_get": "Téléchargez les émojis", "lang_emoji_get": "Téléchargez les émojis",
"lang_emoji_custom": "Émojis personnalisés", "lang_emoji_custom": "Émojis personnalisés",
"lang_defaultemojis_text": "Emojis about {{cat}}", "lang_defaultemojis_text": "Émojis de {{cat}}",
"lang_emoji_uncat": "Non catégorisé", "lang_emoji_uncat": "Non catégorisé",
"lang_postimg_previewdis": "impossible de prévisualiser", "lang_postimg_previewdis": "impossible de prévisualiser",
"lang_postimg_aftupload": "You cannot change accounts after uploading.", "lang_postimg_aftupload": "Vous ne pouvez pas changer de compte après le téléversement.",
"lang_postimg_failupload": "Échec", "lang_postimg_failupload": "Échec",
"lang_postimg_delete": "Click to add description, right-click to delete this", "lang_postimg_delete": "Cliquez pour ajouter une description, faites un clic droit pour supprimer ceci",
"lang_postimg_desc": "Déscription", "lang_postimg_desc": "Déscription",
"lang_postimg_leadContext": "right-click the thumbnail to delete this", "lang_postimg_leadContext": "click droit sur la vignette pour supprimer ceci",
"lang_post_syncDetail": "Upload media synchronously", "lang_post_syncDetail": "Téléverser les médias de manière synchronisée",
"lang_post_syncDetailText": "Click each picture icon to get the thumbnail. If you can get, the media you uploaded are completely processed.", "lang_post_syncDetailText": "Cliquez sur chaque icône d'image pour obtenir la miniature. Si vous pouvez l'obtenir, le média que vous avez téléchargé est entièrement traité.",
"lang_post_tagTL": "This toot does not contain a default tag. This toot will not be shown on Local TL. Continue?", "lang_post_tagTL": "Ce pouet ne contient pas de tag par défaut. Ce pouet ne sera pas affiché sur la TL locale. Continuer ?",
"lang_post_tagVis": "This toot(not 'public' toot) is not shown on this tag's TL.", "lang_post_tagVis": "Ce pouet (pas un pouet 'public') n'est pas affiché sur la TL de ce tag.",
"lang_post_cwtitle": "Auto CW Alert", "lang_post_cwtitle": "Alerte CW automatique",
"lang_post_cwtxt": "You are about to post longer toot than you set.\nWarning text:", "lang_post_cwtxt": "Vous êtes sur le point de poster un pouet plus long que ce que vous avez défini.\nMessage d'avertissement :",
"lang_post_btn1": "Cancel (will not post)", "lang_post_btn1": "Annuler (ne sera pas publié)",
"lang_post_btn2": "Make text hidden automatically", "lang_post_btn2": "Caché automatiquement le texte",
"lang_post_btn3": "Continue to post", "lang_post_btn3": "Continuer à poster",
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.", "lang_post_unfinishedMedia": "Le serveur n'a pas terminé le traitement de vos médias. Réessayez.",
"lang_post_retry": "Retry", "lang_post_retry": "Réessayer",
"lang_post_offline": "Add to the drafts because of offline", "lang_post_offline": "Ajouter aux brouillons, car la connexion est hors ligne",
"lang_status_favWarn": "It will take a miunte to favourite a remote toot.", "lang_status_favWarn": "Cela prendra une minute d'ajouter un pouet distant à vos favoris.",
"lang_status_btWarn": "It will take a miunte to boost a remote toot.", "lang_status_btWarn": "Cela prendra une minute de booster un pouet distant à vos favoris.",
"lang_status_follow": "Suivre", "lang_status_follow": "Suivre",
"lang_status_unfollow": "Se désabonner", "lang_status_unfollow": "Se désabonner",
"lang_status_block": "Bloquer", "lang_status_block": "Bloquer",
"lang_status_unblock": "Débloquer", "lang_status_unblock": "Débloquer",
"lang_status_mute": "Silencier", "lang_status_mute": "Silencier",
"lang_status_unmute": "Unmute", "lang_status_unmute": "Non-muet",
"lang_status_redraftTitle": "Delete & redraft", "lang_status_redraftTitle": "Supprimer & reformuler",
"lang_status_redraft": "Continue to delete & redraft? You lose statuses of this toot. This fanction may contain some bugs. Images of this toot will be deleted on older than Mastodon 2.4.1.", "lang_status_redraft": "Continuer à supprimer et reformuler ? Vous perdez les statuts de ce pouet. Cette fonction peut contenir quelques bugs. Les images de ce pouet seront supprimées sur une version antérieure à Mastodon 2.4.1.",
"lang_status_emphas": "'s toots are emphasized. Please reload after this action.", "lang_status_emphas": "a ses pouets mis en évidence. Veuillez recharger après cette action.",
"lang_status_unemphas": "'s toots are not emphasized. Please reload after this action.", "lang_status_unemphas": "a ses pouets sans mise en avant. Veuillez recharger après cette action.",
"lang_status_unendorse": "Not feature on profile", "lang_status_unendorse": "Ne s'affiche pas sur le profile",
"lang_status_endorse": "Recommander sur son profile", "lang_status_endorse": "Recommander sur son profile",
"lang_status_followers": "Followers", "lang_status_followers": "Abonnés",
"lang_status_active": "Last status", "lang_status_active": "Dernier statut",
"lang_secure_draft": "Add to draft", "lang_secure_draft": "Ajouter au brouillon",
"lang_secure_useThis": "Utiliser ceci", "lang_secure_useThis": "Utiliser ceci",
"lang_secure_deleteThis": "Supprimer ce pouet", "lang_secure_deleteThis": "Supprimer ce pouet",
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.", "lang_suggest_nodata": "S'il vous plait obtenez la liste d'emojis pour afficher des suggestions.",
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.", "lang_usetxtbox_reply": "Mode réponse. Ctrl+Shift+C pour effacer.",
"lang_cards_check": " check", "lang_cards_check": " vérifier",
"lang_cards_pip": "PiP mode", "lang_cards_pip": "Mode Image dans l'Image",
"lang_cards_trusted": "Trusted embed HTML by TheDesk(Twitter, nicovideo, YouTube, Spotify, twitcasing)", "lang_cards_trusted": "HTML embarqué de confiance pour TheDesk (Twitter, nicovideo, YouTube, Spotify, twitcasing)",
"lang_cards_untrusted": "Untrusted embed HTML by TheDesk", "lang_cards_untrusted": "HTML embarqué sans confiance pour TheDesk",
"lang_details_nodata": "Aucune donnée", "lang_details_nodata": "Aucune donnée",
"lang_details_filtered": "Pouet filtré", "lang_details_filtered": "Pouet filtré",
"lang_details_embed": "Embed HTML is cliped.", "lang_details_embed": "Le code HTML intégré est tronqué.",
"lang_details_url": "URL of this toot is cliped.", "lang_details_url": "L'URL de ce pouet est tronqué.",
"lang_details_txt": "Content of this toot is cliped.", "lang_details_txt": "Le contenu de ce pouet est tronqué.",
"lang_filter_nodata": "Aucune donnée", "lang_filter_nodata": "Aucune donnée",
"lang_filter_errordegree": "Please check a context", "lang_filter_errordegree": "Veuillez vérifier le contexte",
"lang_list_nodata": "Aucune donnée", "lang_list_nodata": "Aucune donnée",
"lang_list_show": "Afficher", "lang_list_show": "Afficher",
"lang_list_users": "Liste des utilisateur·rice·s", "lang_list_users": "Liste des utilisateur·rice·s",
"lang_list_nouser": "Aucun·e utilisateur·rice dans cette liste.", "lang_list_nouser": "Aucun·e utilisateur·rice dans cette liste.",
"lang_list_add": "Ajouter à la liste", "lang_list_add": "Ajouter à la liste",
"lang_list_add_misskey": "(perhaps this user has been listed)", "lang_list_add_misskey": "(cet utilisateur a peut-être été listé)",
"lang_list_remove": "Retirer de la liste", "lang_list_remove": "Retirer de la liste",
"lang_notf_new": " nouvelles notifications", "lang_notf_new": " nouvelles notifications",
"lang_speech_refresh": "Save value about TTS config", "lang_speech_refresh": "Sauvegarder la configuration TTS",
"lang_src_ts": "chronological order", "lang_src_ts": "ordre chronologique",
"lang_src_people": " people toot", "lang_src_people": " pouet de",
"lang_tags_always": "Always toots with ", "lang_tags_always": "Toujours tagger les toots avec ",
"lang_tags_realtime": "Tag-stream toot", "lang_tags_realtime": "Flux de toots taggés",
"lang_tags_tagunpin": "Unpin {{tag}}", "lang_tags_tagunpin": "Désépingler {{tag}}",
"lang_tags_unrealtime": "Disable TsT", "lang_tags_unrealtime": "Désactiver TsT",
"lang_tags_tagwarn": "When you toot without {{tag}}, tag-streaming mode will be off.", "lang_tags_tagwarn": "When you toot without {{tag}}, tag-streaming mode will be off.",
"lang_tl_media": "Media", "lang_tl_media": "Média",
"lang_tl_reconnect": "Reconnect to streaming API", "lang_tl_reconnect": "Se reconnecter à l'API de streaming",
"lang_tl_postmarkers_title": "Process...", "lang_tl_postmarkers_title": "En cours...",
"lang_tl_postmarkers": "POST markers data. Please wait", "lang_tl_postmarkers": "POST des marqueurs. Veuillez patienter",
"lang_img_DLDone": "Downloaded:", "lang_img_DLDone": "Téléchargé:",
"lang_img_copyDone": "Copied: URL of this image", "lang_img_copyDone": "Copié: URL de cette image",
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.", "lang_layout_gotop": "Allez en haut de cette colonne. Lorsque l'icône est rouge, cette colonne ne peut pas connecter l'API de streaming. Veuillez recharger.",
"lang_layout_thisacct": "{{notf}} of this account", "lang_layout_thisacct": "{{notf}} de ce compte",
"lang_layout_delthis": "Remove this column", "lang_layout_delthis": "Supprimer cette colonne",
"lang_layout_setthis": "Paramètres de cette colonne", "lang_layout_setthis": "Paramètres de cette colonne",
"lang_layout_mediafil": "Media filtering", "lang_layout_mediafil": "Filtrage des médias",
"lang_layout_remoteOnly": "Remote only", "lang_layout_remoteOnly": "Distant seulement",
"lang_layout_linkana": "Auto Link Analyzer", "lang_layout_linkana": "Analyse automatique du lien",
"lang_layout_linkanades": "Auto link analyzer", "lang_layout_linkanades": "Analyse automatique des liens",
"lang_layout_tts": "Text to speech ", "lang_layout_tts": "Audio description ",
"lang_layout_reconnect": "Reconnect to streaming API", "lang_layout_reconnect": "Reconnect to streaming API",
"lang_layout_headercolor": "Header color of this column", "lang_layout_headercolor": "Couleur de l'en-tête de cette colonne",
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload", "lang_layout_nodata": "[Pas de données]<br>F5/⌘+R pour recharger",
"lang_layout_dm": "Message direct", "lang_layout_dm": "Message direct",
"lang_layout_webviewmode": "Prefer WebView", "lang_layout_webviewmode": "Préférer WebView",
"lang_layout_excluded": "Excluded type of notification", "lang_layout_excluded": "Type de notification exclu",
"lang_layout_mention": "Mentions", "lang_layout_mention": "Mentions",
"lang_layout_fav": "Favourites", "lang_layout_fav": "Favoris",
"lang_layout_bt": "Boosts", "lang_layout_bt": "Boosts",
"lang_layout_poll": "Polls", "lang_layout_poll": "Sondages",
"lang_layout_excludingbt": "Show BT mode", "lang_layout_excludingbt": "Afficher le mode BT",
"lang_layout_leftFold": "Stack to the left", "lang_layout_leftFold": "Empiler à gauche",
"lang_layout_leftUnfold": "Dock on the right", "lang_layout_leftUnfold": "Ancrer à droite",
"lang_layout_deleteColumn": "Delete this column", "lang_layout_deleteColumn": "Supprimer cette colonne",
"lang_layout_deleteColumnDesc": "Delete this column", "lang_layout_deleteColumnDesc": "Supprimer cette colonne",
"lang_layout_unread": "Unread", "lang_layout_unread": "Non lu",
"lang_layout_tagManager": "Tag timeline manager", "lang_layout_tagManager": "Gérer la timeline des Tags",
"lang_layout_announ": "Announcement: the counter is the number of your unread announcements. If not shown, it means announcements are all marked as read.", "lang_layout_announ": "Annonce : le compteur est le nombre de vos annonces non lues. Si elle n'est pas affichée, cela signifie que toutes les annonces sont marquées comme lues.",
"lang_layout_resetWidth": "Stretch this column", "lang_layout_resetWidth": "Étirer cette colonne",
"lang_sort_gothis": "Go to this column", "lang_sort_gothis": "Aller à cette colonne",
"lang_sort_remthis": "Delete this column", "lang_sort_remthis": "Supprimer cette colonne",
"lang_spotify_img": "Attach an album artwork", "lang_spotify_img": "Joindre une pochette d'album",
"lang_spotify_imgno": "Not attach an album artwork", "lang_spotify_imgno": "Ne pas attacher de pochette d'album",
"lang_spotify_acct": "Connect TheDesk to Spotify", "lang_spotify_acct": "Connecter TheDesk à Spotify",
"lang_spotify_np": "Done:templete of NowPlaying", "lang_spotify_np": "Terminé:templete de NowPlaying",
"lang_setting_npprovide": "NowPlaying provider:{{set}}", "lang_setting_npprovide": "NowPlaying de:{{set}}",
"lang_hisdata_frcreq": "Required Mastodon 2.4.3 and above", "lang_hisdata_frcreq": "Version minimum de Mastodon requise 2.4.3 et suivantes",
"lang_hisdata_frcwarn": "Unfollow accounts will be shown.", "lang_hisdata_frcwarn": "Les comptes non suivis seront affichés.",
"lang_hisdata_taketime": "It will take 30s ~ several minutes", "lang_hisdata_taketime": "Cela prendra entre 30 secondes de quelques minutes",
"lang_hisdata_notonmisskey": "Misskey is unable to request.", "lang_hisdata_notonmisskey": "Impossible de requêter Misskey.",
"lang_hisdata_key": "This user is proofed by {{set}}", "lang_hisdata_key": "Cet utilisateur est protégé par {{set}}",
"lang_showontl_movetxt": "Ce compte a migré ailleurs", "lang_showontl_movetxt": "Ce compte a migré ailleurs",
"lang_showontl_movebtn": "Continuer sur le nouveau compte", "lang_showontl_movebtn": "Continuer sur le nouveau compte",
"lang_showontl_botacct": "[bot]", "lang_showontl_botacct": "[bot]",
"lang_showontl_followed": "Vous suit", "lang_showontl_followed": "Vous suit",
"lang_parse_request": "Follow request", "lang_parse_request": "Demandes de suivi",
"lang_showontl_notf": "Notification ", "lang_showontl_notf": "Notification ",
"lang_showontl_domain": "Domaine ", "lang_showontl_domain": "Domaine ",
"lang_showontl_listwarn": "Follow to add this user to lists.", "lang_showontl_listwarn": "Suivre pour ajouter cet utilisateur aux listes.",
"lang_showontl_verified": "This website is verified by owner at ", "lang_showontl_verified": "Ce site Web est vérifié par le propriétaire à ",
"lang_status_requesting": "Requesting", "lang_status_requesting": "Demande en cours",
"lang_parse_mentioned": " vous a répondu", "lang_parse_mentioned": " vous a répondu",
"lang_parse_faved": " favourited your toot", "lang_parse_faved": " a mis votre pouet en favori",
"lang_parse_bted": " boosted your toot", "lang_parse_bted": " a boosté votre pouet",
"lang_parse_btedsimple": " boosted", "lang_parse_btedsimple": " boosté",
"lang_parse_polled": "'s poll", "lang_parse_polled": "a fait un sondage",
"lang_parse_notftime": "Actioned at", "lang_parse_notftime": "Fait le",
"lang_parse_cwshow": "Afficher", "lang_parse_cwshow": "Afficher",
"lang_parse_cwshow_acc": "This is a post with content warning. click to show the whole content", "lang_parse_cwshow_acc": "Ceci est un pouet avec un avertissement de contenu. Cliquez pour afficher tout le contenu",
"lang_parse_fulltext": "Full size text:", "lang_parse_fulltext": "Texte complet:",
"lang_parse_autofold": "Auto folded", "lang_parse_autofold": "Replié automatiquement",
"lang_parse_more": "Plus", "lang_parse_more": "Plus",
"lang_parse_url": "Analyseur dURL", "lang_parse_url": "Analyseur dURL",
"lang_parse_tagTL": "Fil à propos de {{tag}}", "lang_parse_tagTL": "Fil à propos de {{tag}}",
@ -203,89 +203,89 @@
"lang_parse_bt": "Booster ce pouet", "lang_parse_bt": "Booster ce pouet",
"lang_parse_fav": "Mettre ce pouet en favoris", "lang_parse_fav": "Mettre ce pouet en favoris",
"lang_parse_quote": "Citer ce pouet", "lang_parse_quote": "Citer ce pouet",
"lang_parse_bookmark": "Bookmark this", "lang_parse_bookmark": "Ajouter cette page aux favoris",
"lang_parse_unbookmark": "Unbookmark this", "lang_parse_unbookmark": "Retirer ce favori",
"lang_parse_del": "Supprimer ce pouet", "lang_parse_del": "Supprimer ce pouet",
"lang_parse_pin": "Épingler ce pouet", "lang_parse_pin": "Épingler ce pouet",
"lang_parse_unpin": "Unpin this", "lang_parse_unpin": "Désépingler ceci",
"lang_parse_link": "Open in a browser", "lang_parse_link": "Ouvrir dans un navigateur",
"lang_parse_det": "Details via your main account.", "lang_parse_det": "Détails via votre compte principal.",
"lang_parse_detail": "Details", "lang_parse_detail": "Détails",
"lang_parse_redraft": "Supprimer & reformuler", "lang_parse_redraft": "Supprimer & reformuler",
"lang_parse_followed": "Vous a suivi", "lang_parse_followed": "Vous a suivi",
"lang_parse_moved": "Moved to...", "lang_parse_moved": "Déplacé vers...",
"lang_parse_clientop": "Operation of this client", "lang_parse_clientop": "Opération de ce client",
"lang_parse_clienttxt": " will be", "lang_parse_clienttxt": " sera",
"lang_parse_clientno": "done nothing", "lang_parse_clientno": "ne rien faire",
"lang_parse_clientemp": "emphasized(/not emphasized)", "lang_parse_clientemp": "mis en évidence(/pas mis en évidence)",
"lang_parse_clientmute": "muted", "lang_parse_clientmute": "mis en sourdine",
"lang_parse_mute": " will be muted. You can remove on preferences.", "lang_parse_mute": " sera mis en sourdine. Vous pouvez le supprimer dans les préférences.",
"lang_parse_voted": "(Voted)", "lang_parse_voted": "(A voté)",
"lang_parse_myvote": "(My own poll)", "lang_parse_myvote": "(Mon propre sondage)",
"lang_parse_vote": "Vote", "lang_parse_vote": "Vote",
"lang_parse_unvoted": "Show the result without voting", "lang_parse_unvoted": "Afficher le résultat sans voter",
"lang_parse_endedvote": "Expired", "lang_parse_endedvote": "Expiré",
"lang_parse_people": "people", "lang_parse_people": "personnes",
"lang_parse_thread": "Show thread", "lang_parse_thread": "Afficher le fil de discussion",
"lang_parse_unknown": "Attached file", "lang_parse_unknown": "Fichier joint",
"lang_parse_nsfw": "sensitive media", "lang_parse_nsfw": "média NSFW",
"lang_parse_html": "Show embed HTML", "lang_parse_html": "Afficher le HTML intégré",
"lang_parse_notffilter": "Show this user's notifications", "lang_parse_notffilter": "Afficher les notifications",
"lang_parse_hidden": "Unvisible quoted toot", "lang_parse_hidden": "Pouet entre guillemets non visible",
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)", "lang_parse_disconnected": "Le streaming a été déconnecté (réessayer après 3s)",
"lang_misskeyparse_renote": "Repost", "lang_misskeyparse_renote": "Retooter",
"lang_misskeyparse_renoteqt": "Renote", "lang_misskeyparse_renoteqt": "Re-noter",
"lang_misskeyparse_reaction": "Réaction", "lang_misskeyparse_reaction": "Réaction",
"lang_misskeyparse_tagnostr": "No streaming API on Tag TLs", "lang_misskeyparse_tagnostr": "Aucune API de streaming pour le Tag des TLs",
"lang_misskeyparse_listnostr": "No streaming API on List TLs", "lang_misskeyparse_listnostr": "Aucune API de streaming pour le Tag des TLs",
"lang_misskeyparse_home": "Accueil", "lang_misskeyparse_home": "Accueil",
"lang_misskeyparse_followers": "Abonné", "lang_misskeyparse_followers": "Abonné",
"lang_misskeyparse_specified": "Specified User", "lang_misskeyparse_specified": "Utilisateur spécifié",
"lang_misskeyparse_qt": "Misskey renote(quote) mode:Ctrl+Shift+Enter to clear", "lang_misskeyparse_qt": "Ctrl+Shift+Enter pour reformuler Misskey(quote), Entrée pour effacer",
"lang_misskeyparse_renoted": " renoted your following post.", "lang_misskeyparse_renoted": " reformulation de votre post.",
"lang_misskeyparse_quoted": " quoted your following post.", "lang_misskeyparse_quoted": " citation de votre post.",
"lang_misskeyparse_reacted": " reacted your following post.", "lang_misskeyparse_reacted": " réaction à votre post.",
"lang_setting_time": "Time format:{{set}}", "lang_setting_time": "Format de l'heure :{{set}}",
"lang_setting_theme": "Thème : {{set}}", "lang_setting_theme": "Thème : {{set}}",
"lang_setting_compat": "Compatible", "lang_setting_compat": "Compatible",
"lang_setting_nsfw": "NSFW:{{set}}", "lang_setting_nsfw": "NSFW:{{set}}",
"lang_setting_cw": "CW:{{set}}", "lang_setting_cw": "CW:{{set}}",
"lang_setting_cwtext": "Default CW text:{{set}}", "lang_setting_cwtext": "CW par défaut: {{set}}",
"lang_setting_cws": "Always CW on:{{set}}", "lang_setting_cws": "Toujours activer le CW: {{set}}",
"lang_setting_rp": "Reply counter:{{set}}", "lang_setting_rp": "Nombre de réponses:{{set}}",
"lang_setting_vis": "Default visibility:{{set}}", "lang_setting_vis": "Visibilité par défaut:{{set}}",
"lang_setting_popup": "Popup notification:{{set}}", "lang_setting_popup": "Popup de notification:{{set}}",
"lang_setting_off": "Désactivé", "lang_setting_off": "Désactivé",
"lang_setting_s": "s", "lang_setting_s": "s",
"lang_setting_box": "Default toot box action:{{set}}", "lang_setting_box": "Action par défaut de la boîte d'envoi:{{set}}",
"lang_setting_gif": "GIF:{{set}}", "lang_setting_gif": "GIF:{{set}}",
"lang_setting_selt": "Auto fold:{{set1}} lines and above, {{set2}} letters and above", "lang_setting_selt": "Replier automatiquement :{{set1}} lignes et plus, {{set2}} lettres et plus",
"lang_setting_autocw": "Auto CW:{{set1}} lines and above, {{set2}} letters and above", "lang_setting_autocw": "CW automatique :{{set1}} lignes et plus, {{set2}} lettres et plus",
"lang_setting_width": "Minimam width:{{set}}", "lang_setting_width": "Largeur minimum:{{set}}",
"lang_setting_fixwidth": "TweetDeck fixed width:{{set}}px", "lang_setting_fixwidth": "Largeur fixe du TweetDeck :{{set}}px",
"lang_setting_img": "After posting an image:{{set}}", "lang_setting_img": "Après avoir posté une image :{{set}}",
"lang_setting_font": "Fonts:{{set}}", "lang_setting_font": "Polices:{{set}}",
"lang_setting_default": "default font", "lang_setting_default": "police par défaut",
"lang_setting_size": "Font size:{{set}}px", "lang_setting_size": "Taille de la police:{{set}}px",
"lang_setting_imgheight": "Image height:{{set}}px", "lang_setting_imgheight": "Hauteur de l'image:{{set}}px",
"lang_setting_ticker": "#InstanceTicker:{{set}}px", "lang_setting_ticker": "#InstanceTicker:{{set}}px",
"lang_setting_animation": "Animation: {{set}}", "lang_setting_animation": "Animation: {{set}}",
"lang_setting_tag": "Tag TL:{{set}}", "lang_setting_tag": "Tag TL:{{set}}",
"lang_setting_boxConfirm": "Post box:{{set}}", "lang_setting_boxConfirm": "Boite de toot:{{set}}",
"lang_setting_ul": "Native locale:{{set}}", "lang_setting_ul": "Langue native:{{set}}",
"lang_setting_notf": "Native notification:{{set}}", "lang_setting_notf": "Notification native:{{set}}",
"lang_setting_quote": "Quote format:{{set}}", "lang_setting_quote": "Format de citation:{{set}}",
"lang_setting_via": "Via:{{set}}", "lang_setting_via": "Via:{{set}}",
"lang_setting_mov": "Action buttons hiding:{{set}}", "lang_setting_mov": "Masquer les boutons d'action:{{set}}",
"lang_setting_setasread": "Notification markers:{{set}}", "lang_setting_setasread": "Marquer comme lu:{{set}}",
"lang_setting_main": "Compte par défaut : {{set}}", "lang_setting_main": "Compte par défaut : {{set}}",
"lang_setting_sec": "Secondary toot button:{{set}}", "lang_setting_sec": "Bouton de pouet secondaire:{{set}}",
"lang_setting_ksref": "Keyboard shortcuts are refreshed.", "lang_setting_ksref": "Les raccourcis clavier sont actualisés.",
"lang_setting_nomuting": "No client is muted.", "lang_setting_nomuting": "Aucun client n'est mis en muet.",
"lang_setting_notftest": " Notification test ", "lang_setting_notftest": " Test de notification ",
"lang_setting_notftestprof": "Your icon is shown.", "lang_setting_notftestprof": "Votre icône est affichée.",
"lang_setting_exportwarn": "Only important data will be exported. You must keep this data secure.", "lang_setting_exportwarn": "Seules les données importantes seront exportées. Vous devez garder ces données en sécurité.",
"lang_setting_importwarn": "Toutes les données seront supprimées.", "lang_setting_importwarn": "Toutes les données seront supprimées.",
"lang_setting_noupd": "No available update", "lang_setting_noupd": "Aucune mise à jour disponible",
"lang_setting_thisisbeta": "This is beta version. You have to update manually." "lang_setting_thisisbeta": "Ceci est une version bêta. Vous devez la mettre à jour manuellement."
} }

View File

@ -4,7 +4,7 @@
"yes": "Oui", "yes": "Oui",
"no": "Non", "no": "Non",
"none": "Aucun", "none": "Aucun",
"show": "Show", "show": "Afficher",
"hide": "Cacher", "hide": "Cacher",
"default": "Par défaut", "default": "Par défaut",
"change": "Modifier", "change": "Modifier",
@ -19,30 +19,30 @@
"hardwareAccelerationWarn": "Redémarrage Automatique", "hardwareAccelerationWarn": "Redémarrage Automatique",
"theme": "Thèmes", "theme": "Thèmes",
"popup": "Notification pop-up", "popup": "Notification pop-up",
"popupwarn": "Hide to set \"0\"", "popupwarn": "\"0\" pour cacher",
"s": "sec", "s": "sec",
"nativenotf": "Native notification", "nativenotf": "Notification native",
"nnwarn": "Cela ne fonctionne pas sur la version portable pour Windows.", "nnwarn": "Cela ne fonctionne pas sur la version portable pour Windows.",
"nntest": "Notification test", "nntest": "Test de notification",
"width": "Largeur des colonnes", "width": "Largeur des colonnes",
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.", "widthwarn": "La barre de défilement apparaitra lorsque la taille de votre fenêtre ne peut plus afficher toutes les colonnes.",
"fixwidth": "Largeur minimale du navigateur TweetDeck", "fixwidth": "Largeur minimale du navigateur TweetDeck",
"fixwidthwarn": "", "fixwidthwarn": "",
"margin": "Marge entre les timelines", "margin": "Marge entre les timelines",
"above": "above", "above": "au-dessus de",
"font": "Police de caractères", "font": "Police de caractères",
"fontwarn": "Select your favorite font to 'Select'", "fontwarn": "Select your favorite font to 'Select'",
"fontsize": "Taille de la police de caractères", "fontsize": "Taille de la police de caractères",
"savefolder": "Folder to save", "savefolder": "Enregistrer dans ce dossier",
"savefolderwarn": "TheDesk utilise cette valeur lorsqu'il tente d'enregistrer des photos ou de prendre des captures d'écran.", "savefolderwarn": "TheDesk utilise cette valeur lorsqu'il tente d'enregistrer des photos ou de prendre des captures d'écran.",
"useragent": "User agent", "useragent": "User-Agent",
"useragentWarn": "Restart when changed", "useragentWarn": "Redémarrer après les changements",
"frame": "Window frame", "frame": "Cadre de fenêtre",
"frameWarn": "If 'off', the window looks cool.", "frameWarn": "Sur 'off', la fenêtre sera chouette.",
"downloadWin": "Versioning(o Windows downloader)", "downloadWin": "Versionner (o Téléchargeur de Windows)",
"absolute": "valeur absolue", "absolute": "valeur absolue",
"srcUrl": "Moteur de recherche", "srcUrl": "Moteur de recherche",
"srcUrlWarn": "{q} will be replaced to query.", "srcUrlWarn": "{q} sera remplacé pour requêter.",
"themeSel": "Sélectionner un thème", "themeSel": "Sélectionner un thème",
"customtheme": "Modifier et ajouter des thèmes", "customtheme": "Modifier et ajouter des thèmes",
"customthemeDirection": "Jeu de couleurs", "customthemeDirection": "Jeu de couleurs",
@ -51,170 +51,172 @@
"use": "Utiliser ceci", "use": "Utiliser ceci",
"copyFrom": "Copier depuis", "copyFrom": "Copier depuis",
"bg": "Couleur de l'arrière-plan", "bg": "Couleur de l'arrière-plan",
"subcolor": "Distinguishable from background", "subcolor": "Différend du fond",
"text": "Couleur du texte", "text": "Couleur du texte",
"accent": "Arrière-plan des boosts", "accent": "Arrière-plan des boosts",
"modal": "Background of modal window", "modal": "Arrière-plan de la fenêtre modale",
"modalFooter": "Background of modal window's footer", "modalFooter": "Arrière plan du pied de page de la fenêtre modale",
"thirdColor": "Backgroud of tag buttons, etc(near to Background)", "thirdColor": "Fond des boutons tag, etc (près de l'arrière plan)",
"forthColor": "Title bar(same scheme to Background)", "forthColor": "Barre de titre (même schéma en arrière-plan)",
"bottom": "Background of menu-bar at bottom of window", "bottom": "Arrière-plan de la barre de menus en bas de la fenêtre",
"emphasized": "Emphasized toot's background", "emphasized": "Arrière plan des pouets mis en évidence",
"postbox": "Background of post-box and menu", "postbox": "Arrière plan du menu et de la boite d'envoi",
"active": "Background of 'active' elements", "active": "Arrière-plan des éléments 'actifs'",
"selected": "Background of selected with arrow keys", "selected": "Arrière-plan de la sélection avec les flèches",
"selectedWithShare": "Background of selected with arrow keys(boosted toots)", "selectedWithShare": "Arrière-plan de la sélection avec les flèches (pouets boostés)",
"add_new": "Ajouter", "add_new": "Ajouter",
"name": "Nom", "name": "Nom",
"desc": "À propos de ce thème", "desc": "À propos de ce thème",
"customImport": "Import of custom themes", "customImport": "Importer des thèmes personnalisés",
"delete": "Supprimer", "delete": "Supprimer",
"timeline": "Timeline Preferences", "timeline": "Préférence de la TimeLine",
"timemode": "Format de lheure", "timemode": "Format de lheure",
"relativetime": "Relative format:\"1 minutes ago\",\"3 days ago\"", "relativetime": "Format relatif:\"Il y a 1 minutes\",\"3 jours\"",
"absolutetime": "Absolute format:\"23:25:21\",\"2017/12/30 23:59:00\"", "absolutetime": "Format absolu :\"23:25:21\",\"2017/12/30 23:59:00\"",
"mixtime": "Mixed format:toots posted today are relative-format, others are absolute-format.", "mixtime": "Formats mixtes: les pouets postés aujourd'hui sont au format relatif, les autres sont au format absolu.",
"relativesel": "Relative", "relativesel": "Relatif",
"absolutesel": "Absolute", "absolutesel": "Absolu",
"doublesel": "Both relative and absolute", "doublesel": "Relatif et absolu",
"mixsel": "Mixed", "mixsel": "Mixte",
"locale": "Server's unique locale", "locale": "Locale unique du serveur",
"localewarn": "This value is available on some Japanese servers", "localewarn": "Cette valeur est disponible sur certains serveurs japonais",
"nswf": "Hide NSFW pictures", "nswf": "Hide NSFW pictures",
"nsfwwarn": "Strong blur effect", "nsfwwarn": "Fort effet de flou",
"cw": "Hide CW contents", "cw": "Cacher le contenu CW",
"replyct": "Reply counter style", "replyct": "Style du compteur de réponse",
"replyct_hidden": "Show 1+ if the replies are more than 1.", "replyct_hidden": "Afficher +1 s'il y a plus d'une réponse.",
"replyct_full": "Show full count(1,2...)", "replyct_full": "Afficher le comptage complet (1,2...)",
"gif": "Animated GIF images animation", "gif": "Animation des images GIF animées",
"box": "Action of posting-box", "box": "Action de la boite d'envoi",
"boxyes": "Folding", "boxyes": "Pliage",
"boxabs": "Absolutely open", "boxabs": "Entièrement ouvert",
"boxno": "Open after posting", "boxno": "Ouvrir après l'envoi",
"tag": "Tag TL Search", "tag": "Recherche de Tags dans la TL",
"tagfed": "Use federated network", "tagfed": "Utiliser le réseau fédéré",
"taglocal": "Utiliser le réseau local", "taglocal": "Utiliser le réseau local",
"via": "Afficher via", "via": "Afficher via",
"mouseover": "Hide action buttons without mouseover", "mouseover": "Masquer les boutons d'action sans survol de la souris",
"mouseoverwarn": "You may feel 'mouseover' is unconfortable:(", "mouseoverwarn": "Vous pourriez trouver le survol de la souris inconfortable :(",
"mv": "Mouseover to show", "mv": "Survoler pour afficher",
"mvclick": "Cliquez pour afficher", "mvclick": "Cliquez pour afficher",
"notfmarker": "Show Notification marker, red colored bell and counter(if you show a notification column.)", "notfmarker": "Afficher le marqueur de notification, la cloche rouge et le compteur (si vous affichez une colonne de notification.)",
"autofold": "Auto folding", "autofold": "Défilement automatique",
"autofoldwarn": "TheDesk ne réduit pas les toots de 5 caractères ou moins. Si réduit, les retours à la ligne ne sont pas affichés. TheDesk compte uniquement les retours à la ligne comme le nombre de lignes.", "autofoldwarn": "TheDesk ne réduit pas les toots de 5 caractères ou moins. Si réduit, les retours à la ligne ne sont pas affichés. TheDesk compte uniquement les retours à la ligne comme le nombre de lignes.",
"lines": "lignes", "lines": "lignes",
"letters": "lettres", "letters": "lettres",
"or": "ou", "or": "ou",
"imgheight": "Hauteur des images", "imgheight": "Hauteur des images",
"imgheightwarn": "Option:Set \"full\" to uncrop.", "imgheightwarn": "Option:Définir \"full\" pour ne pas rogner.",
"ticker": "Activer OpenSticker", "ticker": "Activer OpenSticker",
"tickerwarn": "Show colorful stickers about tooters' server. <a href=\"https://cdn.weep.me/mastodon/\">About #InstanceTicker</a> Copyright 2018 weepjp, kyori19.", "tickerwarn": "Show colorful stickers about tooters' server. <a href=\"https://cdn.weep.me/mastodon/\">About #InstanceTicker</a> Copyright 2018 weepjp, kyori19.",
"animation": "Animation des timelines", "animation": "Animation des timelines",
"markers": "Markers(mark as read) on HTL and notifications", "markers": "Marqueur(marquer comme lu) sur la TL personnelle et les notifications",
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Partagé sur l'interface web et les clients tiers supportés.",
"remote_img": "Récupérer les images depuis le serveur distant", "remote_img": "Récupérer les images depuis le serveur distant",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "Toutes les prévisualisations sont obtenues depuis le serveur où vous êtes connecté.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Son (Réponse)", "replySound": "Son (Réponse)",
"favSound": "Son (Fav)", "favSound": "Son (Fav)",
"btSound": "Son (Boost)", "btSound": "Son (Boost)",
"followSound": "Son (Follow)", "followSound": "Son (Follow)",
"customSound": "Son personnalisé", "customSound": "Son personnalisé",
"post": "Posting Preferences", "post": "Préférences d'envoi",
"autocw": "Alerte avant de poster un long toot.", "autocw": "Alerte avant de poster un long toot.",
"autocwwarn": "Afficher la boîte de dialogue si vous cachez un texte trop long.", "autocwwarn": "Afficher la boîte de dialogue si vous cachez un texte trop long.",
"defaultcw": "Texte d'avertissement par défaut", "defaultcw": "Texte d'avertissement par défaut",
"cws": "Always CW set", "cws": "Toujours marquer CW",
"defaultvis": "Visibilité par défaut", "defaultvis": "Visibilité par défaut",
"public": "Public", "public": "Public",
"unlisted": "Non listé", "unlisted": "Non listé",
"private": "Privé", "private": "Privé",
"direct": "Direct", "direct": "Direct",
"memory": "Memory(memorized as each server)", "memory": "Mémoire (mémorisée pour chaque serveur)",
"useapi": "Default of your visibility(Set on preferences of Mastodon server)", "useapi": "Visibilité par défaut (choisi dans les préférences du serveur Mastodon)",
"postimg": "Posting images preferences", "postimg": "Préférences de publication d'images",
"showurl": "Insert media URL", "showurl": "Insérer l'URL du média",
"nourl": "Insert nothig", "nourl": "Ne rien insérer",
"disabled": "Désactivé", "disabled": "Désactivé",
"quote": "Format des citations", "quote": "Format des citations",
"simple": "URL uniquement", "simple": "URL uniquement",
"mention": "URL and acct(mention to the user)", "mention": "URL et compte (mention à l'utilisateur)",
"full": "URL, text and acct(mention to the user)", "full": "URL, texte et compte (mention à l'utilisateur)",
"notqt": "Disabled(Hide buttons on TLs)", "notqt": "Désactivé (boutons masqués sur les TLs)",
"apiQuote": "API (seulement certaines instances)", "apiQuote": "API (seulement certaines instances)",
"showBookmarkAction": "Show a bookmarking toot button", "showBookmarkAction": "Afficher un bouton pour ajouter un pouet aux marque-pages",
"scrollBar": "Height of the scroll bar", "scrollBar": "Hauteur de la barre de défilement",
"thin": "Thin", "thin": "Fin",
"normal": "Normal", "normal": "Normal",
"thick": "Thick", "thick": "Épais",
"main": "Default accounts of actions", "main": "Comptes par défaut des actions",
"mainwarn": "Main account can be set on Account Manager.", "mainwarn": "Le compte principal peut être défini sur le gestionnaire de comptes.",
"lastacct": "Account you used recently", "lastacct": "Compte que vous avez utilisé récemment",
"usemainacct": "Compte principal", "usemainacct": "Compte principal",
"secondary": "Secondary Toot Button", "secondary": "Bouton de pouet secondaire",
"secwarn": "Toot with other visibility setting", "secwarn": "Pouet avec un autre paramètre de visibilité",
"nothing": "Hidden", "nothing": "Caché",
"localonly": "Local Only", "localonly": "Local uniquement",
"zeroWidthEmoji": "Zero-width space when inserting emojis", "zeroWidthEmoji": "Insérer les émojis sans espace",
"uploadCrop": "Ajuster automatiquement la taille", "uploadCrop": "Ajuster automatiquement la taille",
"uploadCropWarn": "Max long-side px. Uploaded images are converted to JPEG(from JPEG) or PNG(from others). Set 0 and the images will not be resized. Notice: if you post an animated picture like GIF, it will be converted static one.", "uploadCropWarn": "Longueur max en px. Les images téléchargées sont converties en JPEG ou en PNG. Entrez 0 pour ne pas redimensionner les. Attention: si vous publiez une image animée comme un GIF, elle sera convertie en image statique.",
"keysc": "Keyboard shortcut Preferences", "keysc": "Préférences de raccourcis clavier",
"iks": "Easy inserter", "iks": "Insertion facile",
"okswarn": "You can insert any letters and emojis with only 3 keys", "okswarn": "Vous pouvez insérer des lettres et des emojis avec seulement 3 touches",
"plugin": "Plugins", "plugin": "Plugins",
"howToWritePlugin": "Japanese docs of AiScript TheDesk plugins", "howToWritePlugin": "Documentation japonaise des plugins AiScript TheDesk",
"pluginList": "Plugin list", "pluginList": "Liste des plugins",
"muteemp": "Mute & Emphasis Preferences", "muteemp": "Préférences de mise en valeur et muet",
"climute": "Client Mute", "climute": "Client Muet",
"cliemp": "Client Emphasis", "cliemp": "Client Mis en valeur",
"cliwarn": "Click client name on toots to toggle mute and emphasis.", "cliwarn": "Cliquez sur le nom du client des pouets pour activer/désactiver muet et la mise en valeur.",
"enter": "Enter to set", "enter": "Entrer pour définir",
"wordmute": "Words Mute", "wordmute": "Mots muets",
"wordemp": "Words Emphasis", "wordemp": "Mots mis en valeur",
"useremp": "Users Emphasis", "useremp": "Utilisateurs mis en valeur",
"useerempwarn": "Set on users data modals.", "useerempwarn": "Régler sur les modales de données des utilisateurs.",
"empcolorwarn": "Use this color to emphasis", "empcolorwarn": "Utilisez cette couleur pour mettre en valeur",
"spotify": "Spotify and NowPlaying Preferences", "spotify": "Préférences Spotify et NowPlaying",
"spotifynote1": "Click ", "spotifynote1": "Clic ",
"spotifynote2": "icon to NowPlaying", "spotifynote2": "icône pour la lecture en cours",
"link": "Account Connection", "link": "Connexion au compte",
"linkwarn": "TheDesk enregistre vos données sur le serveur thedesk.top.", "linkwarn": "TheDesk enregistre vos données sur le serveur thedesk.top.",
"connect": "Se connecter", "connect": "Se connecter",
"disconnect": "Se déconnecter", "disconnect": "Se déconnecter",
"lastFmWarn": "User name...(empty to disconnect) You cannot hide your recent play log at last.fm privacy settings.", "lastFmWarn": "Nom d'utilisateur...(vide pour se déconnecter) Vous ne pouvez pas cacher votre journal de lecture récente dans les paramètres de confidentialité de last.fm.",
"templateedit": "Modifier un modèle", "templateedit": "Modifier un modèle",
"templateeditwarn": "", "templateeditwarn": "",
"template1": "Spotify:{song}:Song name/{album}:Album name/{artist}:Artist name/{url}:URL to Spotify", "template1": "Spotify:{song}:Morceau/{album}:Album name/{artist}:Nom de l'artiste /{url}:URL de Spotify",
"template2": "macOS:{song}:Song name/{album}:Album name/{artist}:Artist name/composer:{composer}/spampling rate:{hz}/bit rate:{bitRate}/genre:{genre}", "template2": "macOS:{song}:Morceau/{album}:Album/{artist}:Artiste/compositeur:{composer}/fréquence d'échantillonage :{hz}/débit:{bitRate}/genre:{genre}",
"template3": "", "template3": "",
"postartwork": "Attach an Artwork of Spotify", "postartwork": "Attacher une couverture depuis Spotify",
"searchArtwork": "Si la chanson n'a pas d'illustration, la compléter automatiquement (macOS)", "searchArtwork": "Si la chanson n'a pas d'illustration, la compléter automatiquement (macOS)",
"searchArtworkWarn": "If you nowplaying an non-artwork song, get one which seems nice through API. If you do not like the completed artwork, you can right-click it to delete.", "searchArtworkWarn": "Si vous jouez un morceau sans couverture, récupérez en une jolie via l'API. Si vous n'aimez pas la couverture, faites un clic-droit pour l'effacer.",
"tts": "TTS(text to speech) Preferences", "tts": "Préférences TTS(audio description)",
"bouyomi": "BouyomiChan connect", "bouyomi": "Connexion à BouyomiChan",
"bouyomiWarn": "Require: BouyomiChan WebSocket Plugin", "bouyomiWarn": "Le plugin BouyomiChan pour WebSocket est nécessaire",
"speed": "Vitesse", "speed": "Vitesse",
"speedwarn": "1-100(default:10)", "speedwarn": "1-100 (par défaut:10)",
"pitch": "Pitch", "pitch": "Tonalité",
"pitchwarn": "0-100(default:50)", "pitchwarn": "0-100 (par défaut:50)",
"vol": "Volume", "vol": "Volume",
"volwarn": "0-100(default:100)", "volwarn": "0-100 (par défaut:100)",
"volwarn80": "0-100 (par défaut:80)", "volwarn80": "0-100 (par défaut:80)",
"test": "Test", "test": "Test",
"sample": "TheDesk est un client Mastodon open-source pour PC.", "sample": "TheDesk est un client Mastodon open-source pour PC.",
"playstop": "Jouer/Arrêter", "playstop": "Jouer/Arrêter",
"back": "Retour", "back": "Retour",
"keyscs": "Raccourcis clavier", "keyscs": "Raccourcis clavier",
"keyscr": "Jump to n(1-9)th column", "keyscr": "Aller à la n(1-9)ème colonne",
"keynew": "Open toot box", "keynew": "Ouvrir la boîte d'envoi",
"keytoggle": "Toggle toot box", "keytoggle": "Activer/désactiver la boîte d'envoi",
"keypost": "Publier", "keypost": "Publier",
"keysecpost": "Post(secondary toot)", "keysecpost": "Envoyer(pouet secondaire)",
"keyunread": "Marquer toutes les notifications comme lues", "keyunread": "Marquer toutes les notifications comme lues",
"keyesc": "Hide toot box", "keyesc": "Cacher la boite d'envoi",
"keyf5": "Super Reload", "keyf5": "Super rechargement",
"keyclear": "Clear toot box", "keyclear": "Vider le champs de saisie du pouet",
"keyacctman": "Account Manager", "keyacctman": "Gestionnaire de compte",
"keyshowprof": "Show profile of selecting", "keyshowprof": "Afficher le profil de sélection",
"keyrow": "Montrer l'image précédente ou suivante", "keyrow": "Montrer l'image précédente ou suivante",
"keyzoom": "Molette de la souris : Zoomer sur l'image", "keyzoom": "Molette de la souris : Zoomer sur l'image",
"whenSelected": "Quand un toot est sélectionné : ", "whenSelected": "Quand un toot est sélectionné : ",
@ -224,7 +226,7 @@
"keyselecttop": "Sélectionner la colonne de toot en haut à gauche (colonne numéro 1)", "keyselecttop": "Sélectionner la colonne de toot en haut à gauche (colonne numéro 1)",
"reset": "Réinitialiser (Danger)", "reset": "Réinitialiser (Danger)",
"resetconfirm": "Supprimer toutes les données. Vous ne pouvez pas annuler. Continuer ?", "resetconfirm": "Supprimer toutes les données. Vous ne pouvez pas annuler. Continuer ?",
"about": "About TheDesk", "about": "À propos de TheDesk",
"hp": "Site Web", "hp": "Site Web",
"support": "Assistance", "support": "Assistance",
"help": "Aide", "help": "Aide",

View File

@ -1,17 +1,17 @@
{ {
"updatehere": "Téléchargez le dernier TheDesk", "updatehere": "Téléchargez le dernier TheDesk",
"download": "Démarrer", "download": "Démarrer",
"portable": "Portable ver.", "portable": "Version portable",
"installer": "Installer(Recommended)", "installer": "Installeur(Recommandé)",
"linux": "zip", "linux": "zip",
"linuxdeb": "deb(Recommended on buntu, Debian)", "linuxdeb": "deb(Recommandé sur ubuntu, Debian)",
"linuxsnap": "snap", "linuxsnap": "snap",
"snap": "Get it on Snapcraft", "snap": "Obtenez-le sur Snapcraft",
"sureupd": "You may lose a cool experience!", "sureupd": "Vous pourriez rater une expérience sympa!",
"skipupd": "Ignorer cette mise à jour", "skipupd": "Ignorer cette mise à jour",
"nexttl": "Hidden until next TL loading", "nexttl": "Caché jusqu'au prochain chargement de la TL",
"nextver": "Hidden until next version", "nextver": "Caché jusqu'à la prochaine version",
"problem1": "Some problems?", "problem1": "Des soucis?",
"problem2": "Please download on <a href=\"https://thedesk.top\">Oficial HP</a>.", "problem2": "Please download on <a href=\"https://thedesk.top\">Oficial HP</a>.",
"continue": "Continuer la mise à jour", "continue": "Continuer la mise à jour",
"dlnow": "Téléchargement...", "dlnow": "Téléchargement...",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Condiviso su WebUI e client supportati da terze parti.", "markerswarn": "Mastodon 3.0~. Condiviso su WebUI e client supportati da terze parti.",
"remote_img": "Ottieni immagini dal server remoto", "remote_img": "Ottieni immagini dal server remoto",
"remote_imgWarn": "Tutte le anteprime sono ottenute dal server cache loginato.", "remote_imgWarn": "Tutte le anteprime sono ottenute dal server cache loginato.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Suono(Rispondi)", "replySound": "Suono(Rispondi)",
"favSound": "Suono (Fav)", "favSound": "Suono (Fav)",
"btSound": "Suono (Boost)", "btSound": "Suono (Boost)",

View File

@ -113,6 +113,8 @@
"markerswarn": "Mastodon 3.0相当以上。WebUIと対応クライアントで共有するやつや。", "markerswarn": "Mastodon 3.0相当以上。WebUIと対応クライアントで共有するやつや。",
"remote_img": "画像をリモートから取得", "remote_img": "画像をリモートから取得",
"remote_imgWarn": "プレビューはログインサーバーのキャッシュからどちらにしろ取得する。ビューワーのみに適用されるで。", "remote_imgWarn": "プレビューはログインサーバーのキャッシュからどちらにしろ取得する。ビューワーのみに適用されるで。",
"moreContextMode": "コンテキストツール",
"moreContextModeWarn": "トゥート詳細の、トゥート前後のトゥートを表示する機能",
"replySound": "リプライの通知音", "replySound": "リプライの通知音",
"favSound": "お気に入り登録の通知音", "favSound": "お気に入り登録の通知音",
"btSound": "ブーストの通知音", "btSound": "ブーストの通知音",

View File

@ -146,6 +146,8 @@
"thin": "細い", "thin": "細い",
"normal": "普通", "normal": "普通",
"thick": "太い", "thick": "太い",
"moreContextMode": "コンテキストツール",
"moreContextModeWarn": "トゥート詳細の、トゥート前後のトゥートを表示する機能",
"main": "投稿後や起動時のアカウント", "main": "投稿後や起動時のアカウント",
"mainwarn": "メインアカウントはアカウント設定で指定できます。投稿以外のアカウント選択にも影響します。", "mainwarn": "メインアカウントはアカウント設定で指定できます。投稿以外のアカウント選択にも影響します。",
"lastacct": "最後に使用したアカウント", "lastacct": "最後に使用したアカウント",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -1,25 +1,25 @@
{ {
"list": "List of accounts", "list": "Lista kont",
"back": "Back", "back": "Wstecz",
"add": "Add an account", "add": "Dodaj konto",
"addAcct": "Fill the instance domain (like mastodon.social)", "addAcct": "Wprowadź domenę instancji (jak mastodon.social)",
"codesetupwarn": "Uncheck it to skip pasiting code.(login to Mastodon on Windows or macOS) (Recommended: pcheck)", "codesetupwarn": "Uncheck it to skip pasiting code.(login to Mastodon on Windows or macOS) (Recommended: pcheck)",
"codesetup": "Code setup", "codesetup": "Code setup",
"mainacct": "Main an account", "mainacct": "Main an account",
"selacct": "Select an account", "selacct": "Wybierz konto",
"codepastewarn": "Paste the code and close browser.", "codepastewarn": "Wklej kod i zamknij przeglądarkę.",
"codepaste": "Code", "codepaste": "Code",
"domain": "Domain", "domain": "Domain",
"connect": "Federated servers", "connect": "Federated servers",
"toots": "Toots", "toots": "Tooty",
"users": "Users", "users": "Użytkownicy",
"users2": "users", "users2": "użytkownicy",
"safety": "Connection", "safety": "Connection",
"ver": "Mastodon version", "ver": "Wersja Mastodona",
"ko": "", "ko": "",
"thisismisskey": "Login as Misskey", "thisismisskey": "Login as Misskey",
"misskeylogin": "Read <a href=\"https://thedesk.top/how-to-misskey-login.html\">Docs(ja)</a> to login Misskey.", "misskeylogin": "Read <a href=\"https://thedesk.top/how-to-misskey-login.html\">Docs(ja)</a> to login Misskey.",
"nodata": "No data", "nodata": "Brak danych",
"accessTokenSetup": "Use access token to login(click after fill not code but access-token in box: Advanced)", "accessTokenSetup": "Use access token to login(click after fill not code but access-token in box: Advanced)",
"haveExported": "Having the exported file of TheDesk, click here to jump setting page" "haveExported": "Having the exported file of TheDesk, click here to jump setting page"
} }

View File

@ -1,27 +1,27 @@
{ {
"draghere": "Drag here to upload", "draghere": "Przeciągnij tutaj by przesłać",
"nowOffline": "OFFLINE: all of your post is in the draft box and you should reload after re-connect to the Internet", "nowOffline": "OFFLINE: all of your post is in the draft box and you should reload after re-connect to the Internet",
"reOnline": "Now we are in the Internet, you should reload...", "reOnline": "Now we are in the Internet, you should reload...",
"close": "Close", "close": "Zamknij",
"webSrc": "Search on Web", "webSrc": "Szukaj w Internecie",
"tsSrc": "Search on tootsearch", "tsSrc": "Search on tootsearch",
"showSelectProf": "Show profile of the selecting account", "showSelectProf": "Pokaż profil wybranego konta",
"closethisbox": "Close this box", "closethisbox": "Close this box",
"toot": "Toot", "toot": "Toot",
"post-new": "Post new", "post-new": "Post new",
"nsfwDes": "Mark media as sensitive", "nsfwDes": "Oznacz media jako wrażliwe",
"cwDes": "Hide text behind warning", "cwDes": "Hide text behind warning",
"selfile": "Attach..", "selfile": "Dołącz..",
"insertEmoji": "Emojis", "insertEmoji": "Emoji",
"schedule": "Scheduled toot", "schedule": "Zaplanowany toot",
"postat": "Post at", "postat": "Post at",
"scheduleWarn": "2.7.0~ Minimum time gap:5min(clock on the server may not be accurate.)", "scheduleWarn": "2.7.0~ Minimum time gap:5min(clock on the server may not be accurate.)",
"clearToot": "Clear toot box", "clearToot": "Clear toot box",
"replyMode": "Reply", "replyMode": "Reply",
"no": "No", "no": "Nie",
"yes": "Yes", "yes": "Tak",
"temp": "Attaching files", "temp": "Dołączanie plików",
"nothing": "None", "nothing": "Brak",
"stamp": "Stamp", "stamp": "Stamp",
"stampWarn": "Your acct(aa@bb.cc) is printed on the right-bottom of the uploaded image", "stampWarn": "Your acct(aa@bb.cc) is printed on the right-bottom of the uploaded image",
"vis": "Adjust status privacy", "vis": "Adjust status privacy",
@ -30,33 +30,33 @@
"publicJP": "", "publicJP": "",
"unlistedJP": "", "unlistedJP": "",
"privateJP": "", "privateJP": "",
"localJP": "Local only", "localJP": "Tylko lokalne",
"sectoot": "Secondary Toot", "sectoot": "Secondary Toot",
"directJP": "", "directJP": "",
"emojiWarn": "", "emojiWarn": "",
"emojiInsertWarn": "Some emojis are not able to be inserted.", "emojiInsertWarn": "Niektóre emotikony nie mogą być wstawione.",
"refreshEmoji": "Refresh emojis list", "refreshEmoji": "Refresh emojis list",
"closeThisBox": "Close this box", "closeThisBox": "Close this box",
"showThisEmoji": " are shown.", "showThisEmoji": " are shown.",
"customEmoji": "Custom emojis", "customEmoji": "Custom emojis",
"peopleEmoji": "Emojis of people", "peopleEmoji": "Emoji ludzi",
"natureEmoji": "Emojis of nature", "natureEmoji": "Emoji natury",
"foodEmoji": "Emojis of foods", "foodEmoji": "Emoji jedzenia",
"activityEmoji": "Emojis of activities", "activityEmoji": "Emoji aktywności",
"placeEmoji": "Emojis of places", "placeEmoji": "Emoji miejsc",
"thingsEmoji": "Emojis of tools", "thingsEmoji": "Emoji narzędzi",
"symbolEmoji": "Emojis of symbols", "symbolEmoji": "Emoji symboli",
"flagsEmoji": "Emojis of flags", "flagsEmoji": "Emoji flag",
"draft": "Draft", "draft": "Draft",
"poll": "Poll", "poll": "Poll",
"pollDdisabled": "Polls: Disabled", "pollDdisabled": "Polls: Disabled",
"pollProvider": "Provider of Poll", "pollProvider": "Provider of Poll",
"polluntil": "Hide 'votes' count until people vote it.", "polluntil": "Hide 'votes' count until people vote it.",
"choice": "Choice", "choice": "Wybór",
"pollmulti": "Multiple select", "pollmulti": "Wielokrotny wybór",
"expires_in": "Expires in...(sec)", "expires_in": "Wygasa za... (sek)",
"contextBefore": "Context before this toot", "contextBefore": "Context before this toot",
"thisToot": "This toot", "thisToot": "Ten toot",
"contextAfter": "Context after this toot", "contextAfter": "Context after this toot",
"beforeLTL": "Local TL before this toot", "beforeLTL": "Local TL before this toot",
"beforeUTL": "User TL before this toot", "beforeUTL": "User TL before this toot",
@ -69,49 +69,49 @@
"useOtherAcct2": ":unfav and unBT are disabled.", "useOtherAcct2": ":unfav and unBT are disabled.",
"btWithVis": "Boost with visibility", "btWithVis": "Boost with visibility",
"reply": "Reply", "reply": "Reply",
"bt": "Boost", "bt": "Podbij",
"favRegist": "Favourite", "favRegist": "Polub",
"openBrowser": "Open in browser", "openBrowser": "Otwórz w przeglądarce",
"screenshot": "Take a screenshot", "screenshot": "Zrób zrzut ekranu",
"copyURL": "Copy the URL", "copyURL": "Skopiuj adres URL",
"embed": "Embed", "embed": "Osadzony",
"toots": "Toots", "toots": "Tooty",
"follow": "Follow", "follow": "Obserwuj",
"follower": "Follower", "follower": "Obserwujący",
"utlColumn": "Show as a column", "utlColumn": "Pokaż jako kolumnę",
"timeline": "Timeline", "timeline": "Oś czasu",
"operateOtherAcct": "Cross-account", "operateOtherAcct": "Cross-account",
"list": "List", "list": "Lista",
"makeNew": "Save", "makeNew": "Zapisz",
"blocks": "Blocks", "blocks": "Blocks",
"mutes": "Mutes", "mutes": "Mutes",
"block": "Block", "block": "Zablokuj",
"mute": "Mute", "mute": "Wycisz",
"domainBlock": "Domain block", "domainBlock": "Domain block",
"editProf": "Edit profile", "editProf": "Edytuj profil",
"change": "Save", "change": "Zapisz",
"followReq": "Follow requests", "followReq": "Follow requests",
"likeHimOrHer": "Resembling", "likeHimOrHer": "Resembling",
"endorse": "Feature on profile", "endorse": "Feature on profile",
"openinbrowser": "Open in browser", "openinbrowser": "Otwórz w przeglądarce",
"mainacct": "Set it an main account", "mainacct": "Set it an main account",
"frc": "Suggest", "frc": "Suggest",
"more": "More", "more": "Więcej",
"revoverJP": " to ", "revoverJP": " do ",
"warnUseOtherAcct": "(Unable to unfollow)", "warnUseOtherAcct": "(Nie można przestać obserwować)",
"revoverJPde": "", "revoverJPde": "",
"or": "or", "or": "lub",
"openProf": "Show profile", "openProf": "Pokaż profil",
"warnListRegist": "Follow to add this user to lists.", "warnListRegist": "Follow to add this user to lists.",
"blockDomain": "Add blocking domain", "blockDomain": "Add blocking domain",
"name": "Display name", "name": "Wyświetlana nazwa",
"note": "Note", "note": "Notka",
"editProfImg": "Change avataor", "editProfImg": "Zmień awatar",
"editHeader": "Change header image", "editHeader": "Change header image",
"blocked": "You are blocked. Why?", "blocked": "You are blocked. Why?",
"likeUserDes": "Get people resembling this user.", "likeUserDes": "Get people resembling this user.",
"get": "Get", "get": "Get",
"historyBack": "Back", "historyBack": "Wstecz",
"empUser": "Emphasize this user", "empUser": "Emphasize this user",
"supportme": "Support TheDesk!", "supportme": "Support TheDesk!",
"TheDeskDes": "TheDesk has no ad, you need no charge to unlock premium features. We need your friendly support!", "TheDeskDes": "TheDesk has no ad, you need no charge to unlock premium features. We need your friendly support!",
@ -138,7 +138,7 @@
"search": "Search", "search": "Search",
"sortSet": "Sort", "sortSet": "Sort",
"selectAcct": "Account(Scroll to show all)", "selectAcct": "Account(Scroll to show all)",
"listLocale": "List", "listLocale": "Lista",
"filterWord": "Filtering words", "filterWord": "Filtering words",
"degree": "Filter contexts", "degree": "Filter contexts",
"conver": "Conversations", "conver": "Conversations",
@ -151,22 +151,22 @@
"avalableBefore": "Expire after", "avalableBefore": "Expire after",
"warnAvBefore": "Unset or \"0\" means \"Never\"", "warnAvBefore": "Unset or \"0\" means \"Never\"",
"warnAvBefore2": "This value may contain some error", "warnAvBefore2": "This value may contain some error",
"unlimited": "Never", "unlimited": "Nigdy",
"days": "day(s)", "days": "dzień (dni)",
"hours": "hour(s)", "hours": "hour(s)",
"mins": "minute(s)", "mins": "minute(s)",
"secs": "second(s)", "secs": "second(s)",
"warnOnIntegratedTL": "Integrated TL/Plus TL will hide both Home-filtering words and Local-filtering words.", "warnOnIntegratedTL": "Integrated TL/Plus TL will hide both Home-filtering words and Local-filtering words.",
"helloTheDesk": "Internal error: please clear all data(at setting page) <b>All data will be deleted.</b>", "helloTheDesk": "Internal error: please clear all data(at setting page) <b>All data will be deleted.</b>",
"addColumn": "Add a column", "addColumn": "Dodaj kolumnę",
"sortColumns": "Sort", "sortColumns": "Sort",
"acctMan": "Account Manager", "acctMan": "Menadżer konta",
"filter": "Filter", "filter": "Filtr",
"setting": "Preferences", "setting": "Ustawienia",
"reverse": "Toot button layout reverse", "reverse": "Toot button layout reverse",
"f5": "Reload TL", "f5": "Reload TL",
"nanoDes": "The smallest Mastodon,", "nanoDes": "The smallest Mastodon,",
"verTips": "Version", "verTips": "Wersja",
"clockTips": "Clock", "clockTips": "Clock",
"ramTips": "RAM status", "ramTips": "RAM status",
"changeTips": "Change Tips", "changeTips": "Change Tips",
@ -176,13 +176,13 @@
"about": "About TheDesk", "about": "About TheDesk",
"hereAddColumns": "<- Add TL", "hereAddColumns": "<- Add TL",
"foundBug": "I found a bug", "foundBug": "I found a bug",
"show": "Show", "show": "Pokaż",
"directory": "Directory", "directory": "Katalog",
"active": "Recently active", "active": "Ostatnio aktywne",
"newcomer": "New arrivals", "newcomer": "New arrivals",
"local_only": "Local only", "local_only": "Tylko lokalne",
"menu": "Menu", "menu": "Menu",
"demoBottomBtns": "Welcome guide", "demoBottomBtns": "Przewodnik powitalny",
"lookAtBottom": "Look at the bottom of this window. Here is some tips about it.", "lookAtBottom": "Look at the bottom of this window. Here is some tips about it.",
"acctManDesc": "Add more accounts and logout them.", "acctManDesc": "Add more accounts and logout them.",
"settingDesc": "Many and many preferences here. You will couldn't check it all!", "settingDesc": "Many and many preferences here. You will couldn't check it all!",

View File

@ -1,11 +1,11 @@
{ {
"language": "en", "language": "en",
"lang_toot": "Toot", "lang_toot": "Toot",
"lang_there": "Yes", "lang_there": "Tak",
"lang_nothing": "None", "lang_nothing": "Brak",
"lang_yesno": "Yes", "lang_yesno": "Tak",
"lang_no": "No", "lang_no": "Nie",
"lang_progress": "Wait...", "lang_progress": "Czekaj...",
"lang_edit": "Edit", "lang_edit": "Edit",
"lang_del": "Delete", "lang_del": "Delete",
"lang_add": "Add", "lang_add": "Add",
@ -13,7 +13,7 @@
"lang_speech": "Google US English", "lang_speech": "Google US English",
"lang_lang": "Language", "lang_lang": "Language",
"lang_langlocale": "English", "lang_langlocale": "English",
"lang_back": "Back", "lang_back": "Wstecz",
"lang_set": "Set", "lang_set": "Set",
"lang_langadd": "Translate TheDesk to other languages or proofread TheDesk on <a href=\"https://github.com/cutls/TheDesk\" target=\"_blank\">GitHub</a>. TheDesk needs your help.", "lang_langadd": "Translate TheDesk to other languages or proofread TheDesk on <a href=\"https://github.com/cutls/TheDesk\" target=\"_blank\">GitHub</a>. TheDesk needs your help.",
"lang_time_prefixAgo": null, "lang_time_prefixAgo": null,
@ -40,14 +40,14 @@
"lang_login_noauth": "Show TL of unlogined accounts", "lang_login_noauth": "Show TL of unlogined accounts",
"lang_manager_info": "About this instance", "lang_manager_info": "About this instance",
"lang_manager_refresh": "Refresh", "lang_manager_refresh": "Refresh",
"lang_manager_delete": "Logout", "lang_manager_delete": "Wyloguj się",
"lang_manager_color": "Account Color", "lang_manager_color": "Account Color",
"lang_manager_confirm": "is about to logout. Continue?", "lang_manager_confirm": "is about to logout. Continue?",
"lang_manager_mainAcct": "Done:choose main account", "lang_manager_mainAcct": "Done:choose main account",
"lang_manager_def": "Default", "lang_manager_def": "Default",
"lang_manager_none": "None", "lang_manager_none": "Brak",
"lang_manager_godev": "Open DevCenter of Misskey. We show also an official documents to refer.", "lang_manager_godev": "Open DevCenter of Misskey. We show also an official documents to refer.",
"lang_manager_logout": "Logout", "lang_manager_logout": "Wyloguj się",
"lang_manager_maxChars": "Max chars of toots", "lang_manager_maxChars": "Max chars of toots",
"lang_manager_refreshAt": "Login with this domain", "lang_manager_refreshAt": "Login with this domain",
"lang_bbmd_misskey": "TheDesk regards \"@\" as reply, but put other parameter. Unlisted on Mastodon means Home on Misskey.", "lang_bbmd_misskey": "TheDesk regards \"@\" as reply, but put other parameter. Unlisted on Mastodon means Home on Misskey.",
@ -75,11 +75,11 @@
"lang_post_offline": "Add to the drafts because of offline", "lang_post_offline": "Add to the drafts because of offline",
"lang_status_favWarn": "It will take a miunte to favourite a remote toot.", "lang_status_favWarn": "It will take a miunte to favourite a remote toot.",
"lang_status_btWarn": "It will take a miunte to boost a remote toot.", "lang_status_btWarn": "It will take a miunte to boost a remote toot.",
"lang_status_follow": "Follow", "lang_status_follow": "Obserwuj",
"lang_status_unfollow": "Unfollow", "lang_status_unfollow": "Unfollow",
"lang_status_block": "Block", "lang_status_block": "Zablokuj",
"lang_status_unblock": "Unblock", "lang_status_unblock": "Unblock",
"lang_status_mute": "Mute", "lang_status_mute": "Wycisz",
"lang_status_unmute": "Unmute", "lang_status_unmute": "Unmute",
"lang_status_redraftTitle": "Delete & redraft", "lang_status_redraftTitle": "Delete & redraft",
"lang_status_redraft": "Continue to delete & redraft? You lose statuses of this toot. This fanction may contain some bugs. Images of this toot will be deleted on older than Mastodon 2.4.1.", "lang_status_redraft": "Continue to delete & redraft? You lose statuses of this toot. This fanction may contain some bugs. Images of this toot will be deleted on older than Mastodon 2.4.1.",
@ -98,15 +98,15 @@
"lang_cards_pip": "PiP mode", "lang_cards_pip": "PiP mode",
"lang_cards_trusted": "Trusted embed HTML by TheDesk(Twitter, nicovideo, YouTube, Spotify, twitcasing)", "lang_cards_trusted": "Trusted embed HTML by TheDesk(Twitter, nicovideo, YouTube, Spotify, twitcasing)",
"lang_cards_untrusted": "Untrusted embed HTML by TheDesk", "lang_cards_untrusted": "Untrusted embed HTML by TheDesk",
"lang_details_nodata": "No data", "lang_details_nodata": "Brak danych",
"lang_details_filtered": "Filtered toot", "lang_details_filtered": "Filtered toot",
"lang_details_embed": "Embed HTML is cliped.", "lang_details_embed": "Embed HTML is cliped.",
"lang_details_url": "URL of this toot is cliped.", "lang_details_url": "URL of this toot is cliped.",
"lang_details_txt": "Content of this toot is cliped.", "lang_details_txt": "Content of this toot is cliped.",
"lang_filter_nodata": "No data", "lang_filter_nodata": "Brak danych",
"lang_filter_errordegree": "Please check a context", "lang_filter_errordegree": "Please check a context",
"lang_list_nodata": "No data", "lang_list_nodata": "Brak danych",
"lang_list_show": "Show", "lang_list_show": "Pokaż",
"lang_list_users": "Users list", "lang_list_users": "Users list",
"lang_list_nouser": "No users in this list.", "lang_list_nouser": "No users in this list.",
"lang_list_add": "Add to the list", "lang_list_add": "Add to the list",
@ -183,11 +183,11 @@
"lang_parse_btedsimple": " boosted", "lang_parse_btedsimple": " boosted",
"lang_parse_polled": "'s poll", "lang_parse_polled": "'s poll",
"lang_parse_notftime": "Actioned at", "lang_parse_notftime": "Actioned at",
"lang_parse_cwshow": "Show", "lang_parse_cwshow": "Pokaż",
"lang_parse_cwshow_acc": "This is a post with content warning. click to show the whole content", "lang_parse_cwshow_acc": "This is a post with content warning. click to show the whole content",
"lang_parse_fulltext": "Full size text:", "lang_parse_fulltext": "Full size text:",
"lang_parse_autofold": "Auto folded", "lang_parse_autofold": "Auto folded",
"lang_parse_more": "More", "lang_parse_more": "Więcej",
"lang_parse_url": "URL Analyzer", "lang_parse_url": "URL Analyzer",
"lang_parse_tagTL": "Timeline of {{tag}}", "lang_parse_tagTL": "Timeline of {{tag}}",
"lang_parse_tagtoot": "Toot with {{tag}}", "lang_parse_tagtoot": "Toot with {{tag}}",
@ -198,38 +198,38 @@
"lang_parse_direct": "Direct", "lang_parse_direct": "Direct",
"lang_parse_clickcopy": "Click to copy text of this toot", "lang_parse_clickcopy": "Click to copy text of this toot",
"lang_parse_clickcopyurl": "Click to copy URL of this toot", "lang_parse_clickcopyurl": "Click to copy URL of this toot",
"lang_parse_trans": "Translate to English", "lang_parse_trans": "Przetłumacz na angielski",
"lang_parse_replyto": "Reply to this toot", "lang_parse_replyto": "Odpowiedz na ten toot",
"lang_parse_bt": "Boost this toot", "lang_parse_bt": "Podbij tego toota",
"lang_parse_fav": "Favourite this toot", "lang_parse_fav": "Polub ten toot",
"lang_parse_quote": "Quote this toot", "lang_parse_quote": "Cytuj ten toot",
"lang_parse_bookmark": "Bookmark this", "lang_parse_bookmark": "Bookmark this",
"lang_parse_unbookmark": "Unbookmark this", "lang_parse_unbookmark": "Unbookmark this",
"lang_parse_del": "Delete this", "lang_parse_del": "Delete this",
"lang_parse_pin": "Pin this", "lang_parse_pin": "Pin this",
"lang_parse_unpin": "Unpin this", "lang_parse_unpin": "Unpin this",
"lang_parse_link": "Open in a browser", "lang_parse_link": "Otwórz w przeglądarce",
"lang_parse_det": "Details via your main account.", "lang_parse_det": "Szczegóły za pośrednictwem głównego konta.",
"lang_parse_detail": "Details", "lang_parse_detail": "Szczegóły",
"lang_parse_redraft": "Delete & re-draft", "lang_parse_redraft": "Usuń i przeredaguj",
"lang_parse_followed": "Followed you", "lang_parse_followed": "Obserwowano Cię",
"lang_parse_moved": "Moved to...", "lang_parse_moved": "Przeniesiono do...",
"lang_parse_clientop": "Operation of this client", "lang_parse_clientop": "Operation of this client",
"lang_parse_clienttxt": " will be", "lang_parse_clienttxt": " będzie",
"lang_parse_clientno": "done nothing", "lang_parse_clientno": "nic nie zrobiono",
"lang_parse_clientemp": "emphasized(/not emphasized)", "lang_parse_clientemp": "emphasized(/not emphasized)",
"lang_parse_clientmute": "muted", "lang_parse_clientmute": "wyciszony",
"lang_parse_mute": " will be muted. You can remove on preferences.", "lang_parse_mute": " will be muted. You can remove on preferences.",
"lang_parse_voted": "(Voted)", "lang_parse_voted": "(Voted)",
"lang_parse_myvote": "(My own poll)", "lang_parse_myvote": "(My own poll)",
"lang_parse_vote": "Vote", "lang_parse_vote": "Zagłosuj",
"lang_parse_unvoted": "Show the result without voting", "lang_parse_unvoted": "Pokaż wynik bez głosowania",
"lang_parse_endedvote": "Expired", "lang_parse_endedvote": "Wygasłe",
"lang_parse_people": "people", "lang_parse_people": "ludzie",
"lang_parse_thread": "Show thread", "lang_parse_thread": "Pokaż wątek",
"lang_parse_unknown": "Attached file", "lang_parse_unknown": "Załączony plik",
"lang_parse_nsfw": "sensitive media", "lang_parse_nsfw": "wrażliwe media",
"lang_parse_html": "Show embed HTML", "lang_parse_html": "Pokaż osadzony HTML",
"lang_parse_notffilter": "Show this user's notifications", "lang_parse_notffilter": "Show this user's notifications",
"lang_parse_hidden": "Unvisible quoted toot", "lang_parse_hidden": "Unvisible quoted toot",
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)", "lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
@ -239,16 +239,16 @@
"lang_misskeyparse_tagnostr": "No streaming API on Tag TLs", "lang_misskeyparse_tagnostr": "No streaming API on Tag TLs",
"lang_misskeyparse_listnostr": "No streaming API on List TLs", "lang_misskeyparse_listnostr": "No streaming API on List TLs",
"lang_misskeyparse_home": "Home", "lang_misskeyparse_home": "Home",
"lang_misskeyparse_followers": "Follower", "lang_misskeyparse_followers": "Obserwujący",
"lang_misskeyparse_specified": "Specified User", "lang_misskeyparse_specified": "Specified User",
"lang_misskeyparse_qt": "Misskey renote(quote) mode:Ctrl+Shift+Enter to clear", "lang_misskeyparse_qt": "Misskey renote(quote) mode:Ctrl+Shift+Enter to clear",
"lang_misskeyparse_renoted": " renoted your following post.", "lang_misskeyparse_renoted": " renoted your following post.",
"lang_misskeyparse_quoted": " quoted your following post.", "lang_misskeyparse_quoted": " quoted your following post.",
"lang_misskeyparse_reacted": " reacted your following post.", "lang_misskeyparse_reacted": " reacted your following post.",
"lang_setting_time": "Time format:{{set}}", "lang_setting_time": "Format czasu:{{set}}",
"lang_setting_theme": "Theme:{{set}}", "lang_setting_theme": "Motyw:{{set}}",
"lang_setting_compat": "Compatible", "lang_setting_compat": "Kompatybilny",
"lang_setting_nsfw": "Sensitive media:{{set}}", "lang_setting_nsfw": "Wrażliwe media:{{set}}",
"lang_setting_cw": "CW:{{set}}", "lang_setting_cw": "CW:{{set}}",
"lang_setting_cwtext": "Default CW text:{{set}}", "lang_setting_cwtext": "Default CW text:{{set}}",
"lang_setting_cws": "Always CW on:{{set}}", "lang_setting_cws": "Always CW on:{{set}}",
@ -283,9 +283,9 @@
"lang_setting_ksref": "Keyboard shortcuts are refreshed.", "lang_setting_ksref": "Keyboard shortcuts are refreshed.",
"lang_setting_nomuting": "No client is muted.", "lang_setting_nomuting": "No client is muted.",
"lang_setting_notftest": " Notification test ", "lang_setting_notftest": " Notification test ",
"lang_setting_notftestprof": "Your icon is shown.", "lang_setting_notftestprof": "Twoja ikona jest wyświetlana.",
"lang_setting_exportwarn": "Only important data will be exported. You must keep this data secure.", "lang_setting_exportwarn": "Wyeksportowane będą tylko ważne dane. Dane muszą być bezpieczne.",
"lang_setting_importwarn": "All data will be deleted.", "lang_setting_importwarn": "Wszystkie dane zostaną usunięte.",
"lang_setting_noupd": "No available update", "lang_setting_noupd": "Brak dostępnej aktualizacji",
"lang_setting_thisisbeta": "This is beta version. You have to update manually." "lang_setting_thisisbeta": "This is beta version. You have to update manually."
} }

View File

@ -1,52 +1,52 @@
{ {
"setting": "Preferences", "setting": "Ustawienia",
"set": "Save", "set": "Zapisz",
"yes": "Yes", "yes": "Tak",
"no": "No", "no": "Nie",
"none": "None", "none": "Brak",
"show": "Show", "show": "Pokaż",
"hide": "Hide", "hide": "Ukryj",
"default": "Default", "default": "Default",
"change": "Change", "change": "Zmień",
"select": "Select", "select": "Wybierz",
"env": "System Preferences", "env": "Ustawienia systemowe",
"setlang": "Languages", "setlang": "Języki",
"backup": "Import and export of preferences", "backup": "Import i eksport preferencji",
"backupWarn": "If you got a error when you choose the file, please paste the strings printed when you open the file and click import", "backupWarn": "If you got a error when you choose the file, please paste the strings printed when you open the file and click import",
"import": "Import", "import": "Import",
"export": "Export", "export": "Eksport",
"hardwareAcceleration": "Disable hardware acceleration", "hardwareAcceleration": "Wyłącz przyspieszanie sprzętowe",
"hardwareAccelerationWarn": "Auto restarted", "hardwareAccelerationWarn": "Auto restarted",
"theme": "Themes", "theme": "Motywy",
"popup": "Popup notification", "popup": "Wyskakujące powiadomienia",
"popupwarn": "Hide to set \"0\"", "popupwarn": "Hide to set \"0\"",
"s": "sec", "s": "sek",
"nativenotf": "Native notification", "nativenotf": "Powiadomienie natywne",
"nnwarn": "This does not work on Windows Portable ver.", "nnwarn": "To nie działa w wersji przenośnej Windows.",
"nntest": "Notification test", "nntest": "Test powiadomień",
"width": "Width of columns", "width": "Szerokość kolumn",
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.", "widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
"fixwidth": "Minimum width of TweetDeck browser", "fixwidth": "Minimum width of TweetDeck browser",
"fixwidthwarn": "", "fixwidthwarn": "",
"margin": "Margin between timelines", "margin": "Margin between timelines",
"above": "above", "above": "powyżej",
"font": "Font", "font": "Czcionka",
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)", "fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
"fontsize": "Font size", "fontsize": "Rozmiar czcionki",
"savefolder": "Folder to save", "savefolder": "Folder to save",
"savefolderwarn": "TheDesk uses this value when it try to save pictures or take screenshots.", "savefolderwarn": "TheDesk uses this value when it try to save pictures or take screenshots.",
"useragent": "User agent", "useragent": "Agent użytkownika",
"useragentWarn": "Restart when changed", "useragentWarn": "Restart when changed",
"frame": "Window frame", "frame": "Ramka okna",
"frameWarn": "If 'off', the window looks cool.", "frameWarn": "If 'off', the window looks cool.",
"downloadWin": "Versioning(o Windows downloader)", "downloadWin": "Versioning(o Windows downloader)",
"absolute": "absolute value", "absolute": "wartość bezwzględna",
"srcUrl": "Search engine", "srcUrl": "Wyszukiwarka",
"srcUrlWarn": "{q} will be replaced to query.", "srcUrlWarn": "{q} will be replaced to query.",
"themeSel": "Select theme", "themeSel": "Wybierz motyw",
"customtheme": "Edit and add themes", "customtheme": "Edytuj i dodaj motywy",
"customthemeDirection": "Color scheme", "customthemeDirection": "Schemat kolorów",
"advanced": "Advanced options", "advanced": "Opcje zaawansowane",
"advancedWarn": "", "advancedWarn": "",
"use": "Use this", "use": "Use this",
"copyFrom": "Copy from", "copyFrom": "Copy from",
@ -94,31 +94,33 @@
"tag": "Tag TL Search", "tag": "Tag TL Search",
"tagfed": "Use federated network", "tagfed": "Use federated network",
"taglocal": "Use local network", "taglocal": "Use local network",
"via": "Show via", "via": "Pokaż przez",
"mouseover": "Hide action buttons without mouseover", "mouseover": "Hide action buttons without mouseover",
"mouseoverwarn": "You may feel 'mouseover' is unconfortable:(", "mouseoverwarn": "You may feel 'mouseover' is unconfortable:(",
"mv": "Mouseover to show", "mv": "Mouseover to show",
"mvclick": "Click to show", "mvclick": "Kliknij, aby pokazać",
"notfmarker": "Show Notification marker, red colored bell and counter(if you show a notification column.)", "notfmarker": "Show Notification marker, red colored bell and counter(if you show a notification column.)",
"autofold": "Auto folding", "autofold": "Auto folding",
"autofoldwarn": "TheDesk does not collapse totes of 5 characters or less. Also, when collapsing, newlines are not shown. TheDesk count only newlines as the number of lines.", "autofoldwarn": "TheDesk does not collapse totes of 5 characters or less. Also, when collapsing, newlines are not shown. TheDesk count only newlines as the number of lines.",
"lines": "lines", "lines": "linie",
"letters": "letters", "letters": "litery",
"or": "or", "or": "lub",
"imgheight": "Height of images", "imgheight": "Wysokość obrazów",
"imgheightwarn": "Option:Set \"full\" to uncrop.", "imgheightwarn": "Option:Set \"full\" to uncrop.",
"ticker": "Enable OpenSticker", "ticker": "Włącz OpenSticker",
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>", "tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
"animation": "Animation of timelines", "animation": "Animacja osi czasu",
"markers": "Markers(mark as read) on HTL and notifications", "markers": "Markers(mark as read) on HTL and notifications",
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",
"followSound": "Sound(Follow)", "followSound": "Sound(Follow)",
"customSound": "Custom sound", "customSound": "Niestandardowy dźwięk",
"post": "Posting Preferences", "post": "Posting Preferences",
"autocw": "Alert before posting a long toot.", "autocw": "Alert before posting a long toot.",
"autocwwarn": "Show dialog whether you make too-long text hidden.", "autocwwarn": "Show dialog whether you make too-long text hidden.",
@ -134,7 +136,7 @@
"postimg": "Posting images preferences", "postimg": "Posting images preferences",
"showurl": "Insert media URL", "showurl": "Insert media URL",
"nourl": "Insert nothig", "nourl": "Insert nothig",
"disabled": "Disabled", "disabled": "Wyłączone",
"quote": "Quote format", "quote": "Quote format",
"simple": "Only URL", "simple": "Only URL",
"mention": "URL and acct(mention to the user)", "mention": "URL and acct(mention to the user)",
@ -144,25 +146,25 @@
"showBookmarkAction": "Show a bookmarking toot button", "showBookmarkAction": "Show a bookmarking toot button",
"scrollBar": "Height of the scroll bar", "scrollBar": "Height of the scroll bar",
"thin": "Thin", "thin": "Thin",
"normal": "Normal", "normal": "Normalny",
"thick": "Thick", "thick": "Gruba",
"main": "Default accounts of actions", "main": "Default accounts of actions",
"mainwarn": "Main account can be set on Account Manager.", "mainwarn": "Main account can be set on Account Manager.",
"lastacct": "Account you used recently", "lastacct": "Account you used recently",
"usemainacct": "Main account", "usemainacct": "Konto główne",
"secondary": "Secondary Toot Button", "secondary": "Secondary Toot Button",
"secwarn": "Toot with other visibility setting", "secwarn": "Toot with other visibility setting",
"nothing": "Hidden", "nothing": "Ukryty",
"localonly": "Local Only", "localonly": "Tylko lokalne",
"zeroWidthEmoji": "Zero-width space when inserting emojis", "zeroWidthEmoji": "Zero-width space when inserting emojis",
"uploadCrop": "Auto scale to fit", "uploadCrop": "Auto scale to fit",
"uploadCropWarn": "Max long-side px. Uploaded images are converted to JPEG(from JPEG) or PNG(from others). Set 0 and the images will not be resized. Notice: if you post an animated picture like GIF, it will be converted static one.", "uploadCropWarn": "Max long-side px. Uploaded images are converted to JPEG(from JPEG) or PNG(from others). Set 0 and the images will not be resized. Notice: if you post an animated picture like GIF, it will be converted static one.",
"keysc": "Keyboard shortcut Preferences", "keysc": "Keyboard shortcut Preferences",
"iks": "Easy inserter", "iks": "Easy inserter",
"okswarn": "You can insert any letters and emojis with only 3 keys", "okswarn": "You can insert any letters and emojis with only 3 keys",
"plugin": "Plugins", "plugin": "Wtyczki",
"howToWritePlugin": "Japanese docs of AiScript TheDesk plugins", "howToWritePlugin": "Japanese docs of AiScript TheDesk plugins",
"pluginList": "Plugin list", "pluginList": "Lista wtyczek",
"muteemp": "Mute & Emphasis Preferences", "muteemp": "Mute & Emphasis Preferences",
"climute": "Client Mute", "climute": "Client Mute",
"cliemp": "Client Emphasis", "cliemp": "Client Emphasis",
@ -174,14 +176,14 @@
"useerempwarn": "Set on users data modals.", "useerempwarn": "Set on users data modals.",
"empcolorwarn": "Use this color to emphasis", "empcolorwarn": "Use this color to emphasis",
"spotify": "Spotify and NowPlaying Preferences", "spotify": "Spotify and NowPlaying Preferences",
"spotifynote1": "Click ", "spotifynote1": "Kliknij ",
"spotifynote2": "icon to NowPlaying", "spotifynote2": "icon to NowPlaying",
"link": "Account Connection", "link": "Account Connection",
"linkwarn": "TheDesk save your data on thedesk.top server.", "linkwarn": "TheDesk save your data on thedesk.top server.",
"connect": "Connect", "connect": "Połącz",
"disconnect": "Disconnect", "disconnect": "Rozłącz",
"lastFmWarn": "User name...(empty to disconnect) You cannot hide your recent play log at last.fm privacy settings.", "lastFmWarn": "User name...(empty to disconnect) You cannot hide your recent play log at last.fm privacy settings.",
"templateedit": "Edit a template", "templateedit": "Edytuj szablon",
"templateeditwarn": "", "templateeditwarn": "",
"template1": "Spotify:{song}:Song name/{album}:Album name/{artist}:Artist name/{url}:URL to Spotify", "template1": "Spotify:{song}:Song name/{album}:Album name/{artist}:Artist name/{url}:URL to Spotify",
"template2": "macOS:{song}:Song name/{album}:Album name/{artist}:Artist name/composer:{composer}/spampling rate:{hz}/bit rate:{bitRate}/genre:{genre}", "template2": "macOS:{song}:Song name/{album}:Album name/{artist}:Artist name/composer:{composer}/spampling rate:{hz}/bit rate:{bitRate}/genre:{genre}",
@ -192,17 +194,17 @@
"tts": "TTS(text to speech) Preferences", "tts": "TTS(text to speech) Preferences",
"bouyomi": "BouyomiChan connect", "bouyomi": "BouyomiChan connect",
"bouyomiWarn": "Require: BouyomiChan WebSocket Plugin", "bouyomiWarn": "Require: BouyomiChan WebSocket Plugin",
"speed": "Speed", "speed": "Prędkość",
"speedwarn": "1-100(default:10)", "speedwarn": "1-100(domyślnie:10)",
"pitch": "Pitch", "pitch": "Wysokość",
"pitchwarn": "0-100(default:50)", "pitchwarn": "0-100 (domyślnie: 50)",
"vol": "Volume", "vol": "Volume",
"volwarn": "0-100(default:100)", "volwarn": "0-100(default:100)",
"volwarn80": "0-100(default:80)", "volwarn80": "0-100(default:80)",
"test": "Test", "test": "Test",
"sample": "TheDesk is an open-source Mastodon client for PC.", "sample": "TheDesk is an open-source Mastodon client for PC.",
"playstop": "Play/Stop", "playstop": "Play/Stop",
"back": "Back", "back": "Wstecz",
"keyscs": "Keyboard shortcuts", "keyscs": "Keyboard shortcuts",
"keyscr": "Jump to n(1-9)th column", "keyscr": "Jump to n(1-9)th column",
"keynew": "Open toot box", "keynew": "Open toot box",
@ -213,22 +215,22 @@
"keyesc": "Hide toot box", "keyesc": "Hide toot box",
"keyf5": "Super Reload", "keyf5": "Super Reload",
"keyclear": "Clear toot box", "keyclear": "Clear toot box",
"keyacctman": "Account Manager", "keyacctman": "Menadżer konta",
"keyshowprof": "Show profile of selecting", "keyshowprof": "Show profile of selecting",
"keyrow": "Show next or previous image", "keyrow": "Show next or previous image",
"keyzoom": "Mousewheel:Zoom a image", "keyzoom": "Kółko myszy: Przybliż obraz",
"whenSelected": "When a toot is selected: ", "whenSelected": "Po wybraniu toota: ",
"fav": "Favourite this toot", "fav": "Polub ten toot",
"bt": "Boost this toot", "bt": "Podbij tego toota",
"reply": "Reply to this toot", "reply": "Odpowiedz na ten toot",
"keyselecttop": "Select the top & left(No.1 column) toot", "keyselecttop": "Select the top & left(No.1 column) toot",
"reset": "Reset(Danger)", "reset": "Reset(Danger)",
"resetconfirm": "Delete all data. You cannot undo. Continue?", "resetconfirm": "Delete all data. You cannot undo. Continue?",
"about": "About TheDesk", "about": "About TheDesk",
"hp": "Website", "hp": "Strona internetowa",
"support": "Support", "support": "Wsparcie",
"help": "Help", "help": "Help",
"sushi": "Give me a sushi!", "sushi": "Podaruj mi sushi!",
"checkup": "Check update", "checkup": "Sprawdź aktualizacje",
"ossJP": "" "ossJP": ""
} }

View File

@ -1,19 +1,19 @@
{ {
"updatehere": "Get latest TheDesk", "updatehere": "Pobierz najnowsze TheDesk",
"download": "Start", "download": "Rozpocznij",
"portable": "Portable ver.", "portable": "Portable ver.",
"installer": "Installer(Recommended)", "installer": "Instalator (zalecane)",
"linux": "zip", "linux": "zip",
"linuxdeb": "deb(Recommended on buntu, Debian)", "linuxdeb": "deb(Rekomendowane na buntu, Debian)",
"linuxsnap": "snap", "linuxsnap": "snap",
"snap": "Get it on Snapcraft", "snap": "Pobierz na Snapcraft",
"sureupd": "You may lose a cool experience!", "sureupd": "You may lose a cool experience!",
"skipupd": "Skip this update", "skipupd": "Pomiń tę aktualizację",
"nexttl": "Hidden until next TL loading", "nexttl": "Ukryte do następnego ładowania TL",
"nextver": "Hidden until next version", "nextver": "Ukryte do następnej wersji",
"problem1": "Some problems?", "problem1": "Jakieś problemy?",
"problem2": "Please download on <a href='https://thedesk.top'>Oficial HP</a>.", "problem2": "Please download on <a href='https://thedesk.top'>Oficial HP</a>.",
"continue": "Continue updating", "continue": "Kontynuuj aktualizację",
"dlnow": "Downloading...", "dlnow": "Pobieranie...",
"checkWhatIsNew": "What is new?" "checkWhatIsNew": "Co nowego?"
} }

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Звук (Ответить)", "replySound": "Звук (Ответить)",
"favSound": "Звук(Fav)", "favSound": "Звук(Fav)",
"btSound": "Звук(Boost)", "btSound": "Звук(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,6 +114,8 @@
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.", "markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
"remote_img": "Get images from the remote server", "remote_img": "Get images from the remote server",
"remote_imgWarn": "All previews are got from your loginned cache server.", "remote_imgWarn": "All previews are got from your loginned cache server.",
"moreContextMode": "Context Tool",
"moreContextModeWarn": "On detail of the toot modal, show toots before / after the toot on LTL, FTL, UTL",
"replySound": "Sound(Reply)", "replySound": "Sound(Reply)",
"favSound": "Sound(Fav)", "favSound": "Sound(Fav)",
"btSound": "Sound(Boost)", "btSound": "Sound(Boost)",

View File

@ -114,7 +114,7 @@ function main(ver, basefile, pwa, store) {
refKey.push(key) refKey.push(key)
let str = target[key] let str = target[key]
if (pages[i] == 'setting.vue.js') { if (pages[i] == 'setting.vue.js') {
str = str.replace(/'/g, '\\') str = str.replace(/'/g, "\\'")
} }
var regExp = new RegExp('@@' + key + '@@', 'g') var regExp = new RegExp('@@' + key + '@@', 'g')
source = source.replace(regExp, str) source = source.replace(regExp, str)
@ -133,7 +133,7 @@ function main(ver, basefile, pwa, store) {
} }
if (pages[i] == 'setting.vue.js') { if (pages[i] == 'setting.vue.js') {
if (str) { if (str) {
str = str.replace(/'/g, '\\') str = str.replace(/'/g, "\\'")
} }
} }
var regExp = new RegExp('@@' + tarKey + '@@', 'g') var regExp = new RegExp('@@' + tarKey + '@@', 'g')

View File

@ -453,6 +453,17 @@ var tlConstruction = [
] ]
} }
}, },
{
id: 'mcm',
storage: 'moreContext',
checkbox: true,
setValue: 'no',
text: {
head: '@@moreContextMode@@',
desc: '@@moreContextModeWarn@@',
checkbox: yesno
}
},
{ {
id: 'replySound', id: 'replySound',
storage: 'replySound', storage: 'replySound',

View File

@ -7,10 +7,10 @@
resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.0.3.tgz#bc5b5532ecafd923a61f2fb097e3b108c0106a3f" resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.0.3.tgz#bc5b5532ecafd923a61f2fb097e3b108c0106a3f"
integrity sha512-GLyWIFBbGvpKPGo55JyRZAo4lVbnBiD52cKlw/0Vt+wnmKvWJkpZvsjVoaIolyBXDeAQKSicRtqFNPem9w0WYA== integrity sha512-GLyWIFBbGvpKPGo55JyRZAo4lVbnBiD52cKlw/0Vt+wnmKvWJkpZvsjVoaIolyBXDeAQKSicRtqFNPem9w0WYA==
"@babel/code-frame@^7.0.0": "@babel/code-frame@7.12.11":
version "7.10.4" version "7.12.11"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
dependencies: dependencies:
"@babel/highlight" "^7.10.4" "@babel/highlight" "^7.10.4"
@ -58,10 +58,10 @@
global-agent "^2.0.2" global-agent "^2.0.2"
global-tunnel-ng "^2.7.1" global-tunnel-ng "^2.7.1"
"@eslint/eslintrc@^0.2.1": "@eslint/eslintrc@^0.4.0":
version "0.2.1" version "0.4.0"
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.2.1.tgz#f72069c330461a06684d119384435e12a5d76e3c" resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz#99cc0a0584d72f1df38b900fb062ba995f395547"
integrity sha512-XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA== integrity sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog==
dependencies: dependencies:
ajv "^6.12.4" ajv "^6.12.4"
debug "^4.1.1" debug "^4.1.1"
@ -70,7 +70,6 @@
ignore "^4.0.6" ignore "^4.0.6"
import-fresh "^3.2.1" import-fresh "^3.2.1"
js-yaml "^3.13.1" js-yaml "^3.13.1"
lodash "^4.17.19"
minimatch "^3.0.4" minimatch "^3.0.4"
strip-json-comments "^3.1.1" strip-json-comments "^3.1.1"
@ -492,10 +491,10 @@ abbrev@1:
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
acorn-jsx@^5.2.0: acorn-jsx@^5.3.1:
version "5.2.0" version "5.3.1"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==
acorn-node@^1.2.0, acorn-node@^1.3.0, acorn-node@^1.5.2, acorn-node@^1.6.1: acorn-node@^1.2.0, acorn-node@^1.3.0, acorn-node@^1.5.2, acorn-node@^1.6.1:
version "1.8.2" version "1.8.2"
@ -526,7 +525,7 @@ ajv-keywords@^3.4.1:
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da"
integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==
ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.12.3, ajv@^6.12.4: ajv@^6.10.0, ajv@^6.12.0, ajv@^6.12.3, ajv@^6.12.4:
version "6.12.5" version "6.12.5"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.5.tgz#19b0e8bae8f476e5ba666300387775fb1a00a4da" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.5.tgz#19b0e8bae8f476e5ba666300387775fb1a00a4da"
integrity sha512-lRF8RORchjpKG50/WFf8xmg7sgCLFiYNNnqdKflk63whMQcWR5ngGjiSXkL9bjxy6B2npOK2HSMN49jEBMSkag== integrity sha512-lRF8RORchjpKG50/WFf8xmg7sgCLFiYNNnqdKflk63whMQcWR5ngGjiSXkL9bjxy6B2npOK2HSMN49jEBMSkag==
@ -536,6 +535,16 @@ ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.12.3, ajv@^6.12.4:
json-schema-traverse "^0.4.1" json-schema-traverse "^0.4.1"
uri-js "^4.2.2" uri-js "^4.2.2"
ajv@^8.0.1:
version "8.0.1"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.0.1.tgz#dac101898a87f8ebb57fea69617e8096523c628c"
integrity sha512-46ZA4TalFcLLqX1dEU3dhdY38wAtDydJ4e7QQTVekLUTzXkb1LfqU6VOBXC/a9wiv4T094WURqJH6ZitF92Kqw==
dependencies:
fast-deep-equal "^3.1.1"
json-schema-traverse "^1.0.0"
require-from-string "^2.0.2"
uri-js "^4.2.2"
ansi-align@^3.0.0: ansi-align@^3.0.0:
version "3.0.0" version "3.0.0"
resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb" resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.0.tgz#b536b371cf687caaef236c18d3e21fe3797467cb"
@ -568,7 +577,7 @@ ansi-regex@^5.0.0:
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
ansi-styles@^3.2.0, ansi-styles@^3.2.1: ansi-styles@^3.2.1:
version "3.2.1" version "3.2.1"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
@ -684,10 +693,10 @@ assert@^1.4.0:
object-assign "^4.1.1" object-assign "^4.1.1"
util "0.10.3" util "0.10.3"
astral-regex@^1.0.0: astral-regex@^2.0.0:
version "1.0.0" version "2.0.0"
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
async-exit-hook@^2.0.1: async-exit-hook@^2.0.1:
version "2.0.1" version "2.0.1"
@ -787,10 +796,10 @@ bmp-js@^0.1.0:
resolved "https://registry.yarnpkg.com/bmp-js/-/bmp-js-0.1.0.tgz#e05a63f796a6c1ff25f4771ec7adadc148c07233" resolved "https://registry.yarnpkg.com/bmp-js/-/bmp-js-0.1.0.tgz#e05a63f796a6c1ff25f4771ec7adadc148c07233"
integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM= integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM=
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:
version "4.11.9" version "4.12.0"
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
bn.js@^5.0.0, bn.js@^5.1.1: bn.js@^5.0.0, bn.js@^5.1.1:
version "5.1.3" version "5.1.3"
@ -831,7 +840,7 @@ braces@~3.0.2:
dependencies: dependencies:
fill-range "^7.0.1" fill-range "^7.0.1"
brorand@^1.0.1: brorand@^1.0.1, brorand@^1.1.0:
version "1.1.0" version "1.1.0"
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
@ -1670,10 +1679,10 @@ electron-builder@^22.9.1:
update-notifier "^4.1.1" update-notifier "^4.1.1"
yargs "^16.0.3" yargs "^16.0.3"
electron-dl@^3.0.2: electron-dl@^3.2.1:
version "3.0.2" version "3.2.1"
resolved "https://registry.yarnpkg.com/electron-dl/-/electron-dl-3.0.2.tgz#302a46f9a449ddce720cb8e7f2a24c386e19a26c" resolved "https://registry.yarnpkg.com/electron-dl/-/electron-dl-3.2.1.tgz#244a1316c663691f70e8aa4515cd1a401b4b5690"
integrity sha512-pRgE9Jbhoo5z6Vk3qi+vIrfpMDlCp2oB1UeR96SMnsfz073jj0AZGQwp69EdIcEvlUlwBSGyJK8Jt6OB6JLn+g== integrity sha512-k5DFjocJlXbrjshO1zeWe/Gz7HkGwCgnehHPemiyzN2B/LfLlnbIX7sCj5F+huTwZ2l+nQehTI4IR37xvCn6FQ==
dependencies: dependencies:
ext-name "^5.0.0" ext-name "^5.0.0"
pupa "^2.0.1" pupa "^2.0.1"
@ -1711,27 +1720,27 @@ electron-rebuild@^2.3.5:
tar "^6.0.5" tar "^6.0.5"
yargs "^16.0.0" yargs "^16.0.0"
electron@^10.1.5: electron@^10.2.0:
version "10.1.5" version "10.2.0"
resolved "https://registry.yarnpkg.com/electron/-/electron-10.1.5.tgz#f2b161310f627063e73fbac44efcb35dece83a90" resolved "https://registry.yarnpkg.com/electron/-/electron-10.2.0.tgz#4b00f0907b28aca4b93661bb53ce9a4f8ad32201"
integrity sha512-fys/KnEfJq05TtMij+lFvLuKkuVH030CHYx03iZrW5DNNLwjE6cW3pysJ420lB0FRSfPjTHBMu2eVCf5TG71zQ== integrity sha512-GBUyq8dwUqXPkCTkoID+eZ5Pm9GFlLUd2eSoGe8UOaHeW68SgCf5t75/uGHraQ1OIz/0qniyH5M4ebWEHGppyQ==
dependencies: dependencies:
"@electron/get" "^1.0.1" "@electron/get" "^1.0.1"
"@types/node" "^12.0.12" "@types/node" "^12.0.12"
extract-zip "^1.0.3" extract-zip "^1.0.3"
elliptic@^6.5.3: elliptic@^6.5.3:
version "6.5.3" version "6.5.4"
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
dependencies: dependencies:
bn.js "^4.4.0" bn.js "^4.11.9"
brorand "^1.0.1" brorand "^1.1.0"
hash.js "^1.0.0" hash.js "^1.0.0"
hmac-drbg "^1.0.0" hmac-drbg "^1.0.1"
inherits "^2.0.1" inherits "^2.0.4"
minimalistic-assert "^1.0.0" minimalistic-assert "^1.0.1"
minimalistic-crypto-utils "^1.0.0" minimalistic-crypto-utils "^1.0.1"
emoji-regex@^7.0.1: emoji-regex@^7.0.1:
version "7.0.3" version "7.0.3"
@ -1869,13 +1878,13 @@ eslint-visitor-keys@^2.0.0:
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
eslint@^7.13.0: eslint@^7.23.0:
version "7.13.0" version "7.23.0"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.13.0.tgz#7f180126c0dcdef327bfb54b211d7802decc08da" resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.23.0.tgz#8d029d252f6e8cf45894b4bee08f5493f8e94325"
integrity sha512-uCORMuOO8tUzJmsdRtrvcGq5qposf7Rw0LwkTJkoDbOycVQtQjmnhZSuLQnozLE4TmAzlMVV45eCHmQ1OpDKUQ== integrity sha512-kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q==
dependencies: dependencies:
"@babel/code-frame" "^7.0.0" "@babel/code-frame" "7.12.11"
"@eslint/eslintrc" "^0.2.1" "@eslint/eslintrc" "^0.4.0"
ajv "^6.10.0" ajv "^6.10.0"
chalk "^4.0.0" chalk "^4.0.0"
cross-spawn "^7.0.2" cross-spawn "^7.0.2"
@ -1885,13 +1894,13 @@ eslint@^7.13.0:
eslint-scope "^5.1.1" eslint-scope "^5.1.1"
eslint-utils "^2.1.0" eslint-utils "^2.1.0"
eslint-visitor-keys "^2.0.0" eslint-visitor-keys "^2.0.0"
espree "^7.3.0" espree "^7.3.1"
esquery "^1.2.0" esquery "^1.4.0"
esutils "^2.0.2" esutils "^2.0.2"
file-entry-cache "^5.0.1" file-entry-cache "^6.0.1"
functional-red-black-tree "^1.0.1" functional-red-black-tree "^1.0.1"
glob-parent "^5.0.0" glob-parent "^5.0.0"
globals "^12.1.0" globals "^13.6.0"
ignore "^4.0.6" ignore "^4.0.6"
import-fresh "^3.0.0" import-fresh "^3.0.0"
imurmurhash "^0.1.4" imurmurhash "^0.1.4"
@ -1899,7 +1908,7 @@ eslint@^7.13.0:
js-yaml "^3.13.1" js-yaml "^3.13.1"
json-stable-stringify-without-jsonify "^1.0.1" json-stable-stringify-without-jsonify "^1.0.1"
levn "^0.4.1" levn "^0.4.1"
lodash "^4.17.19" lodash "^4.17.21"
minimatch "^3.0.4" minimatch "^3.0.4"
natural-compare "^1.4.0" natural-compare "^1.4.0"
optionator "^0.9.1" optionator "^0.9.1"
@ -1908,17 +1917,17 @@ eslint@^7.13.0:
semver "^7.2.1" semver "^7.2.1"
strip-ansi "^6.0.0" strip-ansi "^6.0.0"
strip-json-comments "^3.1.0" strip-json-comments "^3.1.0"
table "^5.2.3" table "^6.0.4"
text-table "^0.2.0" text-table "^0.2.0"
v8-compile-cache "^2.0.3" v8-compile-cache "^2.0.3"
espree@^7.3.0: espree@^7.3.0, espree@^7.3.1:
version "7.3.0" version "7.3.1"
resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348" resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw== integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
dependencies: dependencies:
acorn "^7.4.0" acorn "^7.4.0"
acorn-jsx "^5.2.0" acorn-jsx "^5.3.1"
eslint-visitor-keys "^1.3.0" eslint-visitor-keys "^1.3.0"
esprima@^4.0.0: esprima@^4.0.0:
@ -1926,10 +1935,10 @@ esprima@^4.0.0:
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
esquery@^1.2.0: esquery@^1.4.0:
version "1.3.1" version "1.4.0"
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
dependencies: dependencies:
estraverse "^5.1.0" estraverse "^5.1.0"
@ -2045,12 +2054,12 @@ fd-slicer@~1.0.1:
dependencies: dependencies:
pend "~1.2.0" pend "~1.2.0"
file-entry-cache@^5.0.1: file-entry-cache@^6.0.1:
version "5.0.1" version "6.0.1"
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
dependencies: dependencies:
flat-cache "^2.0.1" flat-cache "^3.0.4"
file-type@^9.0.0: file-type@^9.0.0:
version "9.0.0" version "9.0.0"
@ -2071,19 +2080,18 @@ fill-range@^7.0.1:
dependencies: dependencies:
to-regex-range "^5.0.1" to-regex-range "^5.0.1"
flat-cache@^2.0.1: flat-cache@^3.0.4:
version "2.0.1" version "3.0.4"
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
dependencies: dependencies:
flatted "^2.0.0" flatted "^3.1.0"
rimraf "2.6.3" rimraf "^3.0.2"
write "1.0.3"
flatted@^2.0.0: flatted@^3.1.0:
version "2.0.2" version "3.1.1"
resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469"
integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== integrity sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==
for-each@^0.3.3: for-each@^0.3.3:
version "0.3.3" version "0.3.3"
@ -2290,6 +2298,13 @@ globals@^12.1.0:
dependencies: dependencies:
type-fest "^0.8.1" type-fest "^0.8.1"
globals@^13.6.0:
version "13.7.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-13.7.0.tgz#aed3bcefd80ad3ec0f0be2cf0c895110c0591795"
integrity sha512-Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA==
dependencies:
type-fest "^0.20.2"
globalthis@^1.0.0: globalthis@^1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.0.tgz#c5fb98213a9b4595f59cf3e7074f141b4169daae" resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.0.tgz#c5fb98213a9b4595f59cf3e7074f141b4169daae"
@ -2415,7 +2430,7 @@ hash.js@^1.0.0, hash.js@^1.0.3:
inherits "^2.0.3" inherits "^2.0.3"
minimalistic-assert "^1.0.1" minimalistic-assert "^1.0.1"
hmac-drbg@^1.0.0: hmac-drbg@^1.0.1:
version "1.0.1" version "1.0.1"
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
@ -2590,6 +2605,13 @@ is-binary-path@~2.1.0:
dependencies: dependencies:
binary-extensions "^2.0.0" binary-extensions "^2.0.0"
is-boolean-object@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0"
integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==
dependencies:
call-bind "^1.0.0"
is-buffer@^1.1.0: is-buffer@^1.1.0:
version "1.1.6" version "1.1.6"
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
@ -2681,6 +2703,11 @@ is-npm@^4.0.0:
resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-4.0.0.tgz#c90dd8380696df87a7a6d823c20d0b12bbe3c84d" resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-4.0.0.tgz#c90dd8380696df87a7a6d823c20d0b12bbe3c84d"
integrity sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig== integrity sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==
is-number-object@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197"
integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==
is-number@^7.0.0: is-number@^7.0.0:
version "7.0.0" version "7.0.0"
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
@ -2720,6 +2747,11 @@ is-regex@^1.1.1:
dependencies: dependencies:
has-symbols "^1.0.1" has-symbols "^1.0.1"
is-string@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6"
integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==
is-symbol@^1.0.2: is-symbol@^1.0.2:
version "1.0.2" version "1.0.2"
resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38"
@ -2803,10 +2835,10 @@ jquery-ui-dist@^1.12.1:
resolved "https://registry.yarnpkg.com/jquery-ui-dist/-/jquery-ui-dist-1.12.1.tgz#5c0815d3cc6f90ff5faaf5b268a6e23b4ca904fa" resolved "https://registry.yarnpkg.com/jquery-ui-dist/-/jquery-ui-dist-1.12.1.tgz#5c0815d3cc6f90ff5faaf5b268a6e23b4ca904fa"
integrity sha1-XAgV08xvkP9fqvWyaKbiO0ypBPo= integrity sha1-XAgV08xvkP9fqvWyaKbiO0ypBPo=
jquery@^3.5.1: jquery@^3.6.0:
version "3.5.1" version "3.6.0"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.5.1.tgz#d7b4d08e1bfdb86ad2f1a3d039ea17304717abb5" resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz#c72a09f15c1bdce142f49dbf1170bdf8adac2470"
integrity sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg== integrity sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==
js-tokens@^4.0.0: js-tokens@^4.0.0:
version "4.0.0" version "4.0.0"
@ -2841,6 +2873,11 @@ json-schema-traverse@^0.4.1:
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
json-schema-traverse@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
json-schema@0.2.3: json-schema@0.2.3:
version "0.2.3" version "0.2.3"
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
@ -2955,15 +2992,30 @@ load-bmfont@^1.3.1, load-bmfont@^1.4.0:
xhr "^2.0.1" xhr "^2.0.1"
xtend "^4.0.0" xtend "^4.0.0"
lodash.clonedeep@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
lodash.flatten@^4.4.0:
version "4.4.0"
resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f"
integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=
lodash.memoize@~3.0.3: lodash.memoize@~3.0.3:
version "3.0.4" version "3.0.4"
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f" resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f"
integrity sha1-LcvSwofLwKVcxCMovQxzYVDVPj8= integrity sha1-LcvSwofLwKVcxCMovQxzYVDVPj8=
lodash@^4.17.10, lodash@^4.17.14, lodash@^4.17.19, lodash@^4.17.20: lodash.truncate@^4.4.2:
version "4.17.20" version "4.4.2"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=
lodash@^4.17.10, lodash@^4.17.20, lodash@^4.17.21:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
log-symbols@^4.0.0: log-symbols@^4.0.0:
version "4.0.0" version "4.0.0"
@ -3085,7 +3137,7 @@ minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: minimalistic-crypto-utils@^1.0.1:
version "1.0.1" version "1.0.1"
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
@ -3884,6 +3936,11 @@ require-directory@^2.1.1:
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
require-from-string@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
resolve-alpn@^1.0.0: resolve-alpn@^1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.0.0.tgz#745ad60b3d6aff4b4a48e01b8c0bdc70959e0e8c" resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.0.0.tgz#745ad60b3d6aff4b4a48e01b8c0bdc70959e0e8c"
@ -3931,13 +3988,6 @@ restore-cursor@^3.1.0:
onetime "^5.1.0" onetime "^5.1.0"
signal-exit "^3.0.2" signal-exit "^3.0.2"
rimraf@2.6.3:
version "2.6.3"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
dependencies:
glob "^7.1.3"
rimraf@^2.6.1, rimraf@^2.6.3, rimraf@^2.7.1: rimraf@^2.6.1, rimraf@^2.6.3, rimraf@^2.7.1:
version "2.7.1" version "2.7.1"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
@ -3945,6 +3995,13 @@ rimraf@^2.6.1, rimraf@^2.6.3, rimraf@^2.7.1:
dependencies: dependencies:
glob "^7.1.3" glob "^7.1.3"
rimraf@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
dependencies:
glob "^7.1.3"
ripemd160@^2.0.0, ripemd160@^2.0.1: ripemd160@^2.0.0, ripemd160@^2.0.1:
version "2.0.2" version "2.0.2"
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
@ -4096,14 +4153,14 @@ simple-concat@^1.0.0:
resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f"
integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==
slice-ansi@^2.1.0: slice-ansi@^4.0.0:
version "2.1.0" version "4.0.0"
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
dependencies: dependencies:
ansi-styles "^3.2.0" ansi-styles "^4.0.0"
astral-regex "^1.0.0" astral-regex "^2.0.0"
is-fullwidth-code-point "^2.0.0" is-fullwidth-code-point "^3.0.0"
sort-keys-length@^1.0.0: sort-keys-length@^1.0.0:
version "1.0.1" version "1.0.1"
@ -4390,10 +4447,10 @@ supports-color@^7.1.0:
dependencies: dependencies:
has-flag "^4.0.0" has-flag "^4.0.0"
sweetalert2@^10.14.0: sweetalert2@^10.15.7:
version "10.14.0" version "10.15.7"
resolved "https://registry.yarnpkg.com/sweetalert2/-/sweetalert2-10.14.0.tgz#73a7487b12b56dec4c1e47d7d4926e8fe880e727" resolved "https://registry.yarnpkg.com/sweetalert2/-/sweetalert2-10.15.7.tgz#ad4c8f08432952d3283adbaa9a309c534f5a863d"
integrity sha512-EBUh4k9qyRRsttm9X9j7WUhLExetvTJpcbp1VTMJCpuI2UwHLesXMIw9M+UeuqBywv0UjNMR5PKH7Qnv65m8rw== integrity sha512-imY0MR03NGefPcGzSYjWYz1GMIlniusEBXilswvKrHD/GMiTxA5jnsdjtK2IoRyXfEaqV7GWt6DM4YVjAZU8gw==
syntax-error@^1.1.1: syntax-error@^1.1.1:
version "1.4.0" version "1.4.0"
@ -4410,15 +4467,20 @@ system-font-families@^0.4.1:
babel-polyfill "^6.23.0" babel-polyfill "^6.23.0"
ttfinfo "https://github.com/rBurgett/ttfinfo.git" ttfinfo "https://github.com/rBurgett/ttfinfo.git"
table@^5.2.3: table@^6.0.4:
version "5.4.6" version "6.0.8"
resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" resolved "https://registry.yarnpkg.com/table/-/table-6.0.8.tgz#b63f35af8d90601de282a3292226007a9429644f"
integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== integrity sha512-OBAdezyozae8IvjHGXBDHByVkLCcsmffXUSj8LXkNb0SluRd4ug3GFCjk6JynZONIPhOkyr0Nnvbq1rlIspXyQ==
dependencies: dependencies:
ajv "^6.10.2" ajv "^8.0.1"
lodash "^4.17.14" is-boolean-object "^1.1.0"
slice-ansi "^2.1.0" is-number-object "^1.0.4"
string-width "^3.0.0" is-string "^1.0.5"
lodash.clonedeep "^4.5.0"
lodash.flatten "^4.4.0"
lodash.truncate "^4.4.2"
slice-ansi "^4.0.0"
string-width "^4.2.0"
tar@^4: tar@^4:
version "4.4.13" version "4.4.13"
@ -4553,6 +4615,11 @@ type-check@^0.4.0, type-check@~0.4.0:
dependencies: dependencies:
prelude-ls "^1.2.1" prelude-ls "^1.2.1"
type-fest@^0.20.2:
version "0.20.2"
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
type-fest@^0.8.0, type-fest@^0.8.1: type-fest@^0.8.0, type-fest@^0.8.1:
version "0.8.1" version "0.8.1"
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
@ -4807,13 +4874,6 @@ write-file-atomic@^3.0.0:
signal-exit "^3.0.2" signal-exit "^3.0.2"
typedarray-to-buffer "^3.1.5" typedarray-to-buffer "^3.1.5"
write@1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3"
integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==
dependencies:
mkdirp "^0.5.1"
xdg-basedir@^4.0.0: xdg-basedir@^4.0.0:
version "4.0.0" version "4.0.0"
resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13"