Merge branch 'master' into dependabot/npm_and_yarn/app/electron-rebuild-2.3.5
This commit is contained in:
commit
6adfca8f52
|
@ -286,7 +286,7 @@ function getdataAdv(domain, at) {
|
|||
}
|
||||
var multi = localStorage.getItem('multi')
|
||||
var obj = JSON.parse(multi)
|
||||
var target = obj.lengtth
|
||||
var target = obj.length
|
||||
obj.push(add)
|
||||
localStorage.setItem('name_' + target, json['display_name'])
|
||||
localStorage.setItem('user_' + target, json['acct'])
|
||||
|
@ -307,8 +307,13 @@ async function refresh(target, loadskip) {
|
|||
let at = obj[target].at
|
||||
if (obj[target].rt) {
|
||||
console.log('refresh access token')
|
||||
at = await refreshPleromaAt(obj[target])
|
||||
const atk = await refreshPleromaAt(obj[target])
|
||||
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'
|
||||
fetch(start, {
|
||||
|
@ -384,7 +389,7 @@ async function refreshPleromaAt(obj) {
|
|||
'content-type': 'application/json'
|
||||
},
|
||||
body: JSON.stringify({
|
||||
grant_type : 'refresh_token',
|
||||
grant_type: 'refresh_token',
|
||||
refresh_token: rt[0],
|
||||
client_id: rt[1],
|
||||
client_secret: rt[2]
|
||||
|
|
|
@ -1107,13 +1107,11 @@ input.addEventListener(
|
|||
var new_val = input.value
|
||||
if (prev_val != new_val) {
|
||||
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, {
|
||||
method: 'GET',
|
||||
headers: {
|
||||
'content-type': 'application/json',
|
||||
Authorization:
|
||||
'Bearer tC8F6xWGWBUwGScyNevYlx62iO6fdQ4oIK0ad68Oo7ZKB8GQdGpjW9TKxBnIh8grAhvd5rw3iyP9JPamoDpeLQdz62EToPJUW99hDx8rfuJfGdjQuimZPTbIOx0woA5M'
|
||||
}
|
||||
})
|
||||
.then(function (response) {
|
||||
|
@ -1132,11 +1130,11 @@ input.addEventListener(
|
|||
.then(function (json) {
|
||||
if (!json.error) {
|
||||
var urls = 'Suggest:'
|
||||
Object.keys(json.instances).forEach(function (key) {
|
||||
var url = json.instances[key]
|
||||
Object.keys(json.data).forEach(function (key) {
|
||||
var url = json.data[key]
|
||||
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)
|
||||
} else {
|
||||
|
|
|
@ -5,6 +5,12 @@ function details(id, acct_id, tlid, mode) {
|
|||
} else {
|
||||
$('.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>')
|
||||
var html = $('#timeline_' + tlid + ' [toot-id=' + id + ']').html()
|
||||
$('#toot-this').html(html)
|
||||
|
@ -222,6 +228,10 @@ function getContext(id, acct_id) {
|
|||
var templete = parse(json.descendants, '', acct_id, '', '', mute)
|
||||
if (templete != '') {
|
||||
$('#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 .hide').html(lang.lang_details_filtered)
|
||||
|
@ -230,6 +240,9 @@ function getContext(id, acct_id) {
|
|||
var templete = parse(json.ancestors, '', acct_id, '', '', mute)
|
||||
if (templete != '') {
|
||||
$('#toot-reply .no-data').hide()
|
||||
$('#toot-reply-new').removeClass('hide')
|
||||
} else {
|
||||
$('#toot-reply-new').addClass('hide')
|
||||
}
|
||||
$('#toot-reply').prepend(templete)
|
||||
$('#toot-reply .hide').html(lang.lang_details_filtered)
|
||||
|
|
|
@ -1563,7 +1563,7 @@ function mastodonBaseStreaming(acct_id) {
|
|||
const at = localStorage.getItem(`acct_${acct_id}_at`)
|
||||
let wss = 'wss://' + domain
|
||||
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}`
|
||||
mastodonBaseWs[domain] = new WebSocket(start)
|
||||
|
|
|
@ -299,7 +299,7 @@ function oldStreaming(type, cc, acct_id, tlid, data, mute, delc, voice, mode) {
|
|||
const domain = localStorage.getItem(`domain_${acct_id}`)
|
||||
var at = localStorage.getItem('acct_' + acct_id + '_at')
|
||||
if (localStorage.getItem('streaming_' + acct_id)) {
|
||||
var wss = localStorage.getItem('streaming_' + acct_id)
|
||||
var wss = localStorage.getItem('streaming_' + acct_id).replace('https://', 'wss://')
|
||||
} else {
|
||||
var wss = 'wss://' + domain
|
||||
}
|
||||
|
|
|
@ -4,13 +4,18 @@ var envView = new Vue({
|
|||
data: { config: envConstruction },
|
||||
methods: {
|
||||
complete: function (i, val) {
|
||||
var ls = envView.config[i].storage
|
||||
M.toast({ html: 'Complete', displayLength: 3000 })
|
||||
if (!val) {
|
||||
var id = envView.config[i].id
|
||||
var val = $('#' + id).val()
|
||||
var ls = envView.config[i]
|
||||
if (!ls.data) {
|
||||
ls = [ls]
|
||||
} else {
|
||||
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') {
|
||||
hardwareAcceleration(val)
|
||||
}
|
||||
|
@ -105,9 +110,16 @@ function load() {
|
|||
var max = envView.config.length
|
||||
for (var i = 0; i < max; i++) {
|
||||
var ls = envView.config[i].storage
|
||||
if (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
|
||||
for (var i = 0; i < max; i++) {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "thedesk",
|
||||
"version": "22.0.1",
|
||||
"version": "22.1.0",
|
||||
"codename": "Koume",
|
||||
"description": "TheDesk is a Mastodon client for PC.",
|
||||
"repository": "https://github.com/cutls/TheDesk",
|
||||
|
@ -61,16 +61,16 @@
|
|||
"dependencies": {
|
||||
"@fortawesome/fontawesome-free": "^5.15.2",
|
||||
"@syuilo/aiscript": "^0.11.1",
|
||||
"electron-dl": "^3.0.2",
|
||||
"electron-dl": "^3.2.1",
|
||||
"jimp": "^0.16.1",
|
||||
"jquery": "^3.5.1",
|
||||
"jquery": "^3.6.0",
|
||||
"jquery-ui-dist": "^1.12.1",
|
||||
"json5": "^2.2.0",
|
||||
"lodash": "^4.17.20",
|
||||
"lodash": "^4.17.21",
|
||||
"materialize-css": "git://github.com/cutls/materialize#v1-dev",
|
||||
"sanitize-html": "^2.3.2",
|
||||
"sumchecker": "^3.0.1",
|
||||
"sweetalert2": "^10.14.0",
|
||||
"sweetalert2": "^10.15.7",
|
||||
"system-font-families": "^0.4.1",
|
||||
"vue": "^2.6.12"
|
||||
},
|
||||
|
@ -80,10 +80,10 @@
|
|||
"devDependencies": {
|
||||
"browserify": "^17.0.0",
|
||||
"chokidar": "^3.5.1",
|
||||
"electron": "^10.1.5",
|
||||
"electron": "^10.2.0",
|
||||
"electron-builder": "^22.9.1",
|
||||
"electron-rebuild": "^2.3.5",
|
||||
"eslint": "^7.13.0",
|
||||
"eslint": "^7.23.0",
|
||||
"readline-sync": "1.4.10"
|
||||
},
|
||||
"build": {
|
||||
|
|
|
@ -390,25 +390,26 @@
|
|||
<div id="tootmodal" class="modal modal-fixed-footer">
|
||||
<div class="modal-content">
|
||||
<ul class="collapsible" id="det-col">
|
||||
<li class="dm-hide">
|
||||
<li class="dm-hide contextTool">
|
||||
<div class="collapsible-header">
|
||||
<i class="material-icons">people_outline</i>@@afterLTL@@
|
||||
</div>
|
||||
<div class="collapsible-body toot-reset" id="ltl-after"></div>
|
||||
</li>
|
||||
<li class="dm-hide">
|
||||
<li class="dm-hide contextTool">
|
||||
<div class="collapsible-header">
|
||||
<i class="material-icons">person_outline</i>@@afterUTL@@
|
||||
</div>
|
||||
<div class="collapsible-body toot-reset" id="user-after"></div>
|
||||
</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-body toot-reset" id="ftl-after"></div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="collapsible-header">
|
||||
<i class="material-icons">arrow_upward</i>@@contextBefore@@
|
||||
<i class="material-icons red-text hide" id="toot-reply-new">new_releases</i>
|
||||
</div>
|
||||
<div class="collapsible-body toot-reset" id="toot-reply"></div>
|
||||
</li>
|
||||
|
@ -423,16 +424,17 @@
|
|||
<li>
|
||||
<div class="collapsible-header">
|
||||
<i class="material-icons">arrow_downward</i>@@contextAfter@@
|
||||
<i class="material-icons red-text hide" id="toot-after-new">new_releases</i>
|
||||
</div>
|
||||
<div class="collapsible-body toot-reset" id="toot-after"></div>
|
||||
</li>
|
||||
<li class="dm-hide">
|
||||
<li class="dm-hide contextTool">
|
||||
<div class="collapsible-header">
|
||||
<i class="material-icons">people_outline</i>@@beforeLTL@@
|
||||
</div>
|
||||
<div class="collapsible-body toot-reset" id="toot-before"></div>
|
||||
</li>
|
||||
<li class="dm-hide">
|
||||
<li class="dm-hide contextTool">
|
||||
<div class="collapsible-header">
|
||||
<i class="material-icons">person_outline</i>@@beforeUTL@@
|
||||
</div>
|
||||
|
@ -781,21 +783,21 @@
|
|||
<a href="https://thedesk.top" target="_blank">HP</a><br />
|
||||
<a href="https://github.com/cutls/TheDesk" target="_blank">GitHub</a><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 />
|
||||
<a href="https://ja.mstdn.
|
||||
wiki/TheDesk" target="_blank">機能一覧</a><br />
|
||||
Pixiv
|
||||
FanboxやPatreonでは支援者様限定で様々なTheDeskに関する記事をご覧いただけます。最低月一更新。<br />
|
||||
困ったときは、<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も変えてね-->
|
||||
・手動調節したカラム横幅を自動に戻すボタン <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>
|
||||
・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>
|
||||
・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>
|
||||
・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>
|
||||
・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>
|
||||
・画像の回転ボタン <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>
|
||||
・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 id="release-en" style="display:none">
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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": "Звук (Отговор)",
|
||||
"favSound": "Звук(Фаворит)",
|
||||
"btSound": "Звук(Подсилване)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Auf WebUI und Drittanbieter-unterstützten Clients geteilt.",
|
||||
"remote_img": "Get images from the remote 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",
|
||||
"favSound": "Ton bei Favorit",
|
||||
"btSound": "Ton bei Verstärkung",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "crwdns4086:0crwdne4086:0",
|
||||
"remote_img": "crwdns4382:0crwdne4382:0",
|
||||
"remote_imgWarn": "crwdns4384:0crwdne4384:0",
|
||||
"moreContextMode": "crwdns4572:0crwdne4572:0",
|
||||
"moreContextModeWarn": "crwdns4574:0crwdne4574:0",
|
||||
"replySound": "crwdns4088:0crwdne4088:0",
|
||||
"favSound": "crwdns4090:0crwdne4090:0",
|
||||
"btSound": "crwdns4092:0crwdne4092:0",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"draghere": "Arrastrá y soltá acá para subir",
|
||||
"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...",
|
||||
"draghere": "Arrastrar y soltar aquí para subir",
|
||||
"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": "Ahora estamos en Internet, usted debería recargar...",
|
||||
"close": "Cerrar",
|
||||
"webSrc": "Buscar en la Web",
|
||||
"tsSrc": "Buscar en tootsearch",
|
||||
|
@ -47,7 +47,7 @@
|
|||
"thingsEmoji": "Herramientas",
|
||||
"symbolEmoji": "Símbolos",
|
||||
"flagsEmoji": "Banderas",
|
||||
"draft": "Draft",
|
||||
"draft": "Borrador",
|
||||
"poll": "Encuesta",
|
||||
"pollDdisabled": "Encuestas: deshabilitadas",
|
||||
"pollProvider": "Proveedor de encuesta",
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
"lang_manager_godev": "Abrí DevCenter de Misskey. También mostramos documentos oficiales como referencia.",
|
||||
"lang_manager_logout": "Cerrar sesión",
|
||||
"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_emoji_get": "Obtené emojis",
|
||||
"lang_emoji_custom": "Emojis personalizados",
|
||||
|
@ -72,7 +72,7 @@
|
|||
"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_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_btWarn": "Llevará un minuto retootear un toot remoto.",
|
||||
"lang_status_follow": "Seguir",
|
||||
|
@ -89,8 +89,8 @@
|
|||
"lang_status_endorse": "Destacado en el perfil",
|
||||
"lang_status_followers": "Seguidores",
|
||||
"lang_status_active": "Último estado",
|
||||
"lang_secure_draft": "Add to draft",
|
||||
"lang_secure_useThis": "Use this",
|
||||
"lang_secure_draft": "Agregar al borrador",
|
||||
"lang_secure_useThis": "Usar este",
|
||||
"lang_secure_deleteThis": "Eliminar este toot",
|
||||
"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.",
|
||||
|
@ -141,11 +141,11 @@
|
|||
"lang_layout_nodata": "[Sin datos]<br>F5/⌘+R para refrescar",
|
||||
"lang_layout_dm": "Mensaje directo",
|
||||
"lang_layout_webviewmode": "Preferir WebView",
|
||||
"lang_layout_excluded": "Excluded type of notification",
|
||||
"lang_layout_mention": "Mentions",
|
||||
"lang_layout_fav": "Favourites",
|
||||
"lang_layout_bt": "Boosts",
|
||||
"lang_layout_poll": "Polls",
|
||||
"lang_layout_excluded": "Tipo de notificación excluido",
|
||||
"lang_layout_mention": "Menciones",
|
||||
"lang_layout_fav": "Favoritos",
|
||||
"lang_layout_bt": "Retootear",
|
||||
"lang_layout_poll": "Encuestas",
|
||||
"lang_layout_excludingbt": "Mostrar modo de retoot (DESACTIVADO / Excluir retoots / Sólo retoots)",
|
||||
"lang_layout_leftFold": "Pegar a la izquierda",
|
||||
"lang_layout_leftUnfold": "Colocar en la derecha",
|
||||
|
@ -154,7 +154,7 @@
|
|||
"lang_layout_unread": "Sin leer",
|
||||
"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_resetWidth": "Stretch this column",
|
||||
"lang_layout_resetWidth": "Estirar esta columna",
|
||||
"lang_sort_gothis": "Ir a esta columna",
|
||||
"lang_sort_remthis": "Eliminar esta columna",
|
||||
"lang_spotify_img": "Adjuntar la tapa del álbum",
|
||||
|
@ -232,7 +232,7 @@
|
|||
"lang_parse_html": "Mostrar HTML insertado",
|
||||
"lang_parse_notffilter": "Mostrar notificaciones de este usuario",
|
||||
"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_renoteqt": "Renovar",
|
||||
"lang_misskeyparse_reaction": "Reacción",
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
"env": "Configuración del sistema",
|
||||
"setlang": "Idiomas",
|
||||
"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",
|
||||
"export": "Exportar",
|
||||
"hardwareAcceleration": "Deshabilitar la aceleración por hardware",
|
||||
|
@ -24,11 +24,11 @@
|
|||
"nativenotf": "Notificación nativa",
|
||||
"nnwarn": "Esto no funciona en la compilación portátil para Windows.",
|
||||
"nntest": "Prueba de notificación",
|
||||
"width": "Width of columns",
|
||||
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||
"width": "Ancho de columnas",
|
||||
"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",
|
||||
"fixwidthwarn": "",
|
||||
"margin": "Margin between timelines",
|
||||
"margin": "Margen entre líneas de tiempo",
|
||||
"above": "por encima",
|
||||
"font": "Tipografía",
|
||||
"fontwarn": "Seleccioná tu tipografía favorita (sólo para Windows y macOS)",
|
||||
|
@ -48,22 +48,22 @@
|
|||
"customthemeDirection": "Esquema de colores",
|
||||
"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.",
|
||||
"use": "Use this",
|
||||
"copyFrom": "Copy from",
|
||||
"bg": "Background color",
|
||||
"use": "Usar este",
|
||||
"copyFrom": "Copiar desde",
|
||||
"bg": "Color de fondo",
|
||||
"subcolor": "Subcolor, en armonía con el color secundario",
|
||||
"text": "Color del texto",
|
||||
"accent": "Fondo de retoots",
|
||||
"modal": "Fondo de modos",
|
||||
"modalFooter": "Background of modal window's footer",
|
||||
"thirdColor": "Backgroud of tag buttons, etc(near to Background)",
|
||||
"forthColor": "Title bar(same scheme to Background)",
|
||||
"modalFooter": "Fondo del pie de la ventana modal",
|
||||
"thirdColor": "Fondo de botones de etiquetas, etc. (cerca de fondo)",
|
||||
"forthColor": "Barra de título (mismo esquema del color de Fondo)",
|
||||
"bottom": "Fondo de barra inferior",
|
||||
"emphasized": "Emphasized toot's background",
|
||||
"emphasized": "Fondo del toot enfatizado",
|
||||
"postbox": "Fondo de caja de publicación y menú",
|
||||
"active": "Fondo, botones de advertencia de contenido…",
|
||||
"selected": "Background of selected with arrow keys",
|
||||
"selectedWithShare": "Background of selected with arrow keys(boosted toots)",
|
||||
"selected": "Fondo de las teclas de flecha seleccionadas",
|
||||
"selectedWithShare": "Fondo seleccionado con teclas de flecha (toots reforzados)",
|
||||
"add_new": "Agregar nuevo",
|
||||
"name": "Nombre",
|
||||
"desc": "Acerca de este tema",
|
||||
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Compartido en interface web y clientes de terceros soportados.",
|
||||
"remote_img": "Obtener imágenes del servidor remoto",
|
||||
"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)",
|
||||
"favSound": "Sonido (marcado como favorito)",
|
||||
"btSound": "Sonido (retoot)",
|
||||
|
@ -142,10 +144,10 @@
|
|||
"notqt": "Deshabilitado (ocultar botones en las líneas temporales)",
|
||||
"apiQuote": "API (sólo algunas instancias)",
|
||||
"showBookmarkAction": "Mostrar un botón de marcador",
|
||||
"scrollBar": "Height of the scroll bar",
|
||||
"thin": "Thin",
|
||||
"scrollBar": "Altura de la barra de desplazamiento",
|
||||
"thin": "Ligero",
|
||||
"normal": "Normal",
|
||||
"thick": "Thick",
|
||||
"thick": "Grosor",
|
||||
"main": "Acciones de cuenta predeterminada",
|
||||
"mainwarn": "Se puede establecer la cuenta predeterminada en el Administrador de cuentas.",
|
||||
"lastacct": "Cuenta usada recientemente",
|
||||
|
@ -161,8 +163,8 @@
|
|||
"iks": "Inserción fácil",
|
||||
"okswarn": "Podés insertar cualquier letra y emoji con sólo 3 teclas",
|
||||
"plugin": "Plugins",
|
||||
"howToWritePlugin": "Japanese docs of AiScript TheDesk plugins",
|
||||
"pluginList": "Plugin list",
|
||||
"howToWritePlugin": "Documentos en japones de los plugins de AiScript TheDesk",
|
||||
"pluginList": "Lista de plugins",
|
||||
"muteemp": "Configuración de silenciado y resaltado",
|
||||
"climute": "Silenciado de usuario",
|
||||
"cliemp": "Resaltado de usuario",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -2,24 +2,24 @@
|
|||
"list": "Liste des comptes",
|
||||
"back": "Retour",
|
||||
"add": "Ajouter un compte",
|
||||
"addAcct": "Fill the instance domain (like mastodon.social)",
|
||||
"codesetupwarn": "Uncheck it to skip pasiting code.(login to Mastodon on Windows or macOS) (Recommended: pcheck)",
|
||||
"codesetup": "Code setup",
|
||||
"mainacct": "Main an account",
|
||||
"addAcct": "Écrire le domaine de l'instance (mastodon.social par exemple)",
|
||||
"codesetupwarn": "Décochez cette case pour ignorer le code de collage.(Connectez-vous à Mastodon sous Windows ou macOS) (Recommandé: coché)",
|
||||
"codesetup": "Configuration du code",
|
||||
"mainacct": "Compte principal",
|
||||
"selacct": "Choisir un compte",
|
||||
"codepastewarn": "Insérer le code et fermez le navigateur.",
|
||||
"codepastewarn": "Insérez le code et fermez le navigateur.",
|
||||
"codepaste": "Code",
|
||||
"domain": "Domaine",
|
||||
"connect": "Serveur fédérées",
|
||||
"toots": "Pouets",
|
||||
"users": "Utilisateur·rice·s",
|
||||
"users2": "utilisateur·rice·s",
|
||||
"safety": "Connection",
|
||||
"safety": "Connexion",
|
||||
"ver": "Version de Mastodon",
|
||||
"ko": "",
|
||||
"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",
|
||||
"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"
|
||||
"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": "Après avoir exporté le fichier de TheDesk, cliquez ici pour aller à la page de configuration"
|
||||
}
|
|
@ -1,127 +1,127 @@
|
|||
{
|
||||
"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",
|
||||
"reOnline": "Now we are in the Internet, you should reload...",
|
||||
"nowOffline": "Hors LIGNE : tout votre message est dans la zone brouillon et vous devriez recharger après vous être reconnecté à Internet",
|
||||
"reOnline": "Maintenant que nous sommes connectés à Internet, vous devriez recharger...",
|
||||
"close": "Fermer",
|
||||
"webSrc": "Search on Web",
|
||||
"tsSrc": "Search on tootsearch",
|
||||
"showSelectProf": "Show profile of the selecting account",
|
||||
"closethisbox": "Close this box",
|
||||
"webSrc": "Rechercher sur le Web",
|
||||
"tsSrc": "Rechercher dans la recherche de pouet",
|
||||
"showSelectProf": "Afficher le profil du compte sélectionné",
|
||||
"closethisbox": "Fermer cette fenêtre",
|
||||
"toot": "Pouet",
|
||||
"post-new": "Post new",
|
||||
"nsfwDes": "Mark media as sensitive",
|
||||
"cwDes": "Hide text behind warning",
|
||||
"selfile": "Attach..",
|
||||
"post-new": "Publier un nouveau message",
|
||||
"nsfwDes": "Marquer le média comme sensible",
|
||||
"cwDes": "Masquer le texte derrière un avertissement",
|
||||
"selfile": "Joindre..",
|
||||
"insertEmoji": "Émojis",
|
||||
"schedule": "Scheduled toot",
|
||||
"postat": "Post at",
|
||||
"scheduleWarn": "2.7.0~ Minimum time gap:5min(clock on the server may not be accurate.)",
|
||||
"clearToot": "Clear toot box",
|
||||
"schedule": "Pouet programmé",
|
||||
"postat": "Publier à",
|
||||
"scheduleWarn": "2.7.0~ Intervalle de temps minimum : 5min (l'horloge sur le serveur peut ne pas être précise.)",
|
||||
"clearToot": "Vider le champs de saisie du pouet",
|
||||
"replyMode": "Répondre",
|
||||
"no": "Non",
|
||||
"yes": "Oui",
|
||||
"temp": "Attaching files",
|
||||
"temp": "Joindre des fichiers",
|
||||
"nothing": "Aucun",
|
||||
"stamp": "Stamp",
|
||||
"stampWarn": "Your acct(aa@bb.cc) is printed on the right-bottom of the uploaded image",
|
||||
"vis": "Adjust status privacy",
|
||||
"cwtext": "Warning text",
|
||||
"selectVis": "Adjust status privacy",
|
||||
"stamp": "Tamponer",
|
||||
"stampWarn": "Votre compte (aa@bb.cc) est affiché en bas à droite de l'image envoyée",
|
||||
"vis": "Ajuster la confidentialité du statut",
|
||||
"cwtext": "Texte d'avertissement",
|
||||
"selectVis": "Ajuster la confidentialité du statut",
|
||||
"publicJP": "",
|
||||
"unlistedJP": "",
|
||||
"privateJP": "",
|
||||
"localJP": "Local only",
|
||||
"sectoot": "Secondary Toot",
|
||||
"localJP": "Local uniquement",
|
||||
"sectoot": "Pouet secondaire",
|
||||
"directJP": "",
|
||||
"emojiWarn": "",
|
||||
"emojiInsertWarn": "Some emojis are not able to be inserted.",
|
||||
"refreshEmoji": "Refresh emojis list",
|
||||
"closeThisBox": "Close this box",
|
||||
"showThisEmoji": " are shown.",
|
||||
"customEmoji": "Custom emojis",
|
||||
"peopleEmoji": "Emojis of people",
|
||||
"natureEmoji": "Emojis of nature",
|
||||
"foodEmoji": "Emojis of foods",
|
||||
"activityEmoji": "Emojis of activities",
|
||||
"placeEmoji": "Emojis of places",
|
||||
"thingsEmoji": "Emojis of tools",
|
||||
"symbolEmoji": "Emojis of symbols",
|
||||
"flagsEmoji": "Emojis of flags",
|
||||
"draft": "Draft",
|
||||
"poll": "Poll",
|
||||
"pollDdisabled": "Polls: Disabled",
|
||||
"pollProvider": "Provider of Poll",
|
||||
"polluntil": "Hide 'votes' count until people vote it.",
|
||||
"choice": "Choice",
|
||||
"pollmulti": "Multiple select",
|
||||
"expires_in": "Expires in...(sec)",
|
||||
"contextBefore": "Context before this toot",
|
||||
"thisToot": "This toot",
|
||||
"contextAfter": "Context after this toot",
|
||||
"beforeLTL": "Local TL before this toot",
|
||||
"beforeUTL": "User TL before this toot",
|
||||
"afterLTL": "Local TL after this toot)",
|
||||
"afterUTL": "User TL before this toot",
|
||||
"afterFTL": "Federated TL after this toot",
|
||||
"favedPeople": "People who favourited it",
|
||||
"btedPeople": "People who boosted it",
|
||||
"useOtherAcct1": "Use other account",
|
||||
"useOtherAcct2": ":unfav and unBT are disabled.",
|
||||
"btWithVis": "Boost with visibility",
|
||||
"emojiInsertWarn": "Certains emojis ne peuvent pas être insérés.",
|
||||
"refreshEmoji": "Actualiser la liste des émojis",
|
||||
"closeThisBox": "Fermer cette fenêtre",
|
||||
"showThisEmoji": " sont affichés.",
|
||||
"customEmoji": "Émojis personnalisés",
|
||||
"peopleEmoji": "Emojis de personnes",
|
||||
"natureEmoji": "Emojis de nature",
|
||||
"foodEmoji": "Emojis de nouriture",
|
||||
"activityEmoji": "Emojis d'activités",
|
||||
"placeEmoji": "Emojis de lieux",
|
||||
"thingsEmoji": "Emojis d'outils",
|
||||
"symbolEmoji": "Emojis de symboles",
|
||||
"flagsEmoji": "Emojis de drapeaux",
|
||||
"draft": "Brouillon",
|
||||
"poll": "Sondage",
|
||||
"pollDdisabled": "Sondages : désactivés",
|
||||
"pollProvider": "Fournisseur du sondage",
|
||||
"polluntil": "Masquer le nombre de 'votes' jusqu'à ce que les gens votent.",
|
||||
"choice": "Choix",
|
||||
"pollmulti": "Sélection multiple",
|
||||
"expires_in": "Expire dans...(sec)",
|
||||
"contextBefore": "Contexte avant ce pouet",
|
||||
"thisToot": "Ce pouet",
|
||||
"contextAfter": "Contexte après ce pouet",
|
||||
"beforeLTL": "TL locale avant ce pouet",
|
||||
"beforeUTL": "TL de l'utilisateur avant ce pouet",
|
||||
"afterLTL": "TL locale après ce pouet)",
|
||||
"afterUTL": "TL de l'utilisateur avant ce pouet",
|
||||
"afterFTL": "TL fédérée après ce pouet",
|
||||
"favedPeople": "Personnes qui l'ont mis en favori",
|
||||
"btedPeople": "Personnes qui l'ont boosté",
|
||||
"useOtherAcct1": "Utiliser un autre compte",
|
||||
"useOtherAcct2": ":unfav et unBT sont désactivés.",
|
||||
"btWithVis": "Boost avec visibilité",
|
||||
"reply": "Répondre",
|
||||
"bt": "Boost",
|
||||
"favRegist": "Favourite",
|
||||
"openBrowser": "Open in browser",
|
||||
"screenshot": "Take a screenshot",
|
||||
"copyURL": "Copy the URL",
|
||||
"embed": "Embed",
|
||||
"bt": "Booster",
|
||||
"favRegist": "Favoris",
|
||||
"openBrowser": "Ouvrir dans un navigateur",
|
||||
"screenshot": "Prendre une capture d'écran",
|
||||
"copyURL": "Copier l'URL",
|
||||
"embed": "Embarquer",
|
||||
"toots": "Pouets",
|
||||
"follow": "Follow",
|
||||
"follower": "Follower",
|
||||
"utlColumn": "Show as a column",
|
||||
"follow": "Suivre",
|
||||
"follower": "Abonné",
|
||||
"utlColumn": "Afficher en tant que colonne",
|
||||
"timeline": "Fil",
|
||||
"operateOtherAcct": "Cross-account",
|
||||
"operateOtherAcct": "Compte croisé",
|
||||
"list": "Liste",
|
||||
"makeNew": "Sauvegarder",
|
||||
"blocks": "Blocks",
|
||||
"mutes": "Mutes",
|
||||
"blocks": "Blocs",
|
||||
"mutes": "Muets",
|
||||
"block": "Bloquer",
|
||||
"mute": "Mute",
|
||||
"domainBlock": "Domain block",
|
||||
"mute": "Muet",
|
||||
"domainBlock": "Blocage de domaine",
|
||||
"editProf": "Modifier le profil",
|
||||
"change": "Sauvegarder",
|
||||
"followReq": "Demandes de suivi",
|
||||
"likeHimOrHer": "Resembling",
|
||||
"likeHimOrHer": "Similaires",
|
||||
"endorse": "Recommander sur sa page",
|
||||
"openinbrowser": "Ouvrir dans un navigateur",
|
||||
"mainacct": "Set it an main account",
|
||||
"mainacct": "Définir un compte principal",
|
||||
"frc": "Suggérer",
|
||||
"more": "Plus",
|
||||
"revoverJP": " to ",
|
||||
"warnUseOtherAcct": "(Unable to unfollow)",
|
||||
"revoverJP": " à ",
|
||||
"warnUseOtherAcct": "(Impossible de ne plus suivre)",
|
||||
"revoverJPde": "",
|
||||
"or": "ou",
|
||||
"openProf": "Afficher le profile",
|
||||
"warnListRegist": "Follow to add this user to lists.",
|
||||
"blockDomain": "Add blocking domain",
|
||||
"name": "Display name",
|
||||
"warnListRegist": "Suivre pour ajouter cet utilisateur aux listes.",
|
||||
"blockDomain": "Bloquer un nouveau domaine",
|
||||
"name": "Nom affiché",
|
||||
"note": "Note",
|
||||
"editProfImg": "Change avataor",
|
||||
"editHeader": "Change header image",
|
||||
"blocked": "You are blocked. Why?",
|
||||
"likeUserDes": "Get people resembling this user.",
|
||||
"get": "Get",
|
||||
"editProfImg": "Changer d'avatar",
|
||||
"editHeader": "Changer l'image d'en-tête",
|
||||
"blocked": "Vous êtes bloqué. Pourquoi?",
|
||||
"likeUserDes": "Rechercher des personnes ressemblant à cet utilisateur.",
|
||||
"get": "Obtenir",
|
||||
"historyBack": "Retour",
|
||||
"empUser": "Emphasize this user",
|
||||
"supportme": "Support TheDesk!",
|
||||
"TheDeskDes": "TheDesk has no ad, you need no charge to unlock premium features. We need your friendly support!",
|
||||
"PatreonSupport": "Support on Patreon",
|
||||
"PixivSupport": "Support on Pixiv FANBOX",
|
||||
"AWLSupport": "Amazon Wish List",
|
||||
"SendAmazonGift1": "Give me Amazon Gift Card:",
|
||||
"empUser": "Mettre en valeur cet utilisateur",
|
||||
"supportme": "Supportez TheDesk!",
|
||||
"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": "Supporter sur Patreon",
|
||||
"PixivSupport": "Supporter sur Pixiv FANBOX",
|
||||
"AWLSupport": "Liste de souhaits sur Amazon",
|
||||
"SendAmazonGift1": "Offrez-moi une carte-cadeau Amazon:",
|
||||
"SendAmazonGift2": "",
|
||||
"monthly": "Monthly",
|
||||
"once": "Once",
|
||||
"monthly": "Mensuel",
|
||||
"once": "Une fois",
|
||||
"local": "Local",
|
||||
"localMedia": "Local (médias)",
|
||||
"home": "Principal",
|
||||
|
@ -131,61 +131,61 @@
|
|||
"integratedTLDes": "Intégré (local et principal)",
|
||||
"localPlusDes": "Integrated(Local and replies and BT on Home)",
|
||||
"notf": "Notifications",
|
||||
"bookmark": "Bookmarks",
|
||||
"showThisTL": "Show this 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>).",
|
||||
"add": "Add",
|
||||
"search": "Search",
|
||||
"sortSet": "Sort",
|
||||
"bookmark": "Marque-pages",
|
||||
"showThisTL": "Montrer cette TL:",
|
||||
"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": "Ajouter",
|
||||
"search": "Rechercher",
|
||||
"sortSet": "Trier",
|
||||
"selectAcct": "Select an account",
|
||||
"listLocale": "Liste",
|
||||
"filterWord": "Filtering words",
|
||||
"degree": "Filter contexts",
|
||||
"filterWord": "Mots filtrés",
|
||||
"degree": "Contextes filtrés",
|
||||
"conver": "Conversations",
|
||||
"prof": "Profiles",
|
||||
"prof": "Profils",
|
||||
"option": "Options",
|
||||
"matchWord": "Whole word",
|
||||
"warnMatchWord": "Nice for Latin language",
|
||||
"except": "Drop instead of hide",
|
||||
"exceptWorn": "Filtered toots will disappear irreversibly, even if filter is later removed",
|
||||
"avalableBefore": "Expire after",
|
||||
"warnAvBefore": "Unset or \"0\" means \"Never\"",
|
||||
"warnAvBefore2": "This value may contain some error",
|
||||
"unlimited": "Never",
|
||||
"matchWord": "Mot entier",
|
||||
"warnMatchWord": "Utile pour les langues latines",
|
||||
"except": "Ignorer au lieu de cacher",
|
||||
"exceptWorn": "Les pouets filtrés disparaîtront irréversiblement, même si le filtre est supprimé plus tard",
|
||||
"avalableBefore": "Expire après",
|
||||
"warnAvBefore": "Non défini ou \"0\" signifie \"Jamais\"",
|
||||
"warnAvBefore2": "Cette valeur peut contenir une erreur",
|
||||
"unlimited": "Jamais",
|
||||
"days": "days",
|
||||
"hours": "hours",
|
||||
"mins": "minutes",
|
||||
"secs": "second(s)",
|
||||
"warnOnIntegratedTL": "Integrated TL/Plus TL will hide both Home-filtering words and Local-filtering words.",
|
||||
"secs": "seconde(s)",
|
||||
"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.",
|
||||
"addColumn": "Ajouter une colonne",
|
||||
"sortColumns": "Tri",
|
||||
"acctMan": "Account Manager",
|
||||
"filter": "Filter",
|
||||
"acctMan": "Gestionnaire de compte",
|
||||
"filter": "Filtre",
|
||||
"setting": "Paramètres",
|
||||
"reverse": "Toot box reverse",
|
||||
"f5": "Super Reload",
|
||||
"nanoDes": "The smallest Mastodon,",
|
||||
"nanoDes": "Le plus petit Mastodon,",
|
||||
"verTips": "Version",
|
||||
"clockTips": "Clock",
|
||||
"ramTips": "RAM status",
|
||||
"changeTips": "Change Tips",
|
||||
"helpAndLogs": "Help & Log",
|
||||
"help": "Help",
|
||||
"contactwithlog": "If you tell me bugs(not working or something) with this log, I can detect what is wrong more easily.",
|
||||
"about": "About TheDesk",
|
||||
"hereAddColumns": "<- Add TL",
|
||||
"foundBug": "I found a bug",
|
||||
"show": "Show",
|
||||
"directory": "Directory",
|
||||
"active": "Recently active",
|
||||
"newcomer": "New arrivals",
|
||||
"local_only": "Local only",
|
||||
"clockTips": "Horloge",
|
||||
"ramTips": "Etat de la mémoire",
|
||||
"changeTips": "Changer les astuces",
|
||||
"helpAndLogs": "Aide & Journal",
|
||||
"help": "Aide",
|
||||
"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": "À propos de TheDesk",
|
||||
"hereAddColumns": "<- Ajout TL",
|
||||
"foundBug": "J'ai trouvé un bug",
|
||||
"show": "Afficher",
|
||||
"directory": "Répertoire",
|
||||
"active": "Actif récemment",
|
||||
"newcomer": "Nouveautés",
|
||||
"local_only": "Local uniquement",
|
||||
"menu": "Menu",
|
||||
"demoBottomBtns": "Welcome guide",
|
||||
"lookAtBottom": "Look at the bottom of this window. Here is some tips about it.",
|
||||
"acctManDesc": "Add more accounts and logout them.",
|
||||
"settingDesc": "Many and many preferences here. You will couldn't check it all!",
|
||||
"nanoDescPlus": "Mini window client(experimental)",
|
||||
"menuDesc": "All daily TheDesk and Mastodon tuning like <b>add and sort columns</b>, <b>list and filter check</b>."
|
||||
"demoBottomBtns": "Guide de bienvenue",
|
||||
"lookAtBottom": "Regardez le bas de cette fenêtre. Voici quelques conseils à ce sujet.",
|
||||
"acctManDesc": "Ajoutez plus de comptes et déconnectez-les.",
|
||||
"settingDesc": "Beaucoup beaucoup de préférences ici. Vous ne pourrez pas tout vérifier!",
|
||||
"nanoDescPlus": "Mini fenêtre client (expérimental)",
|
||||
"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>."
|
||||
}
|
|
@ -22,171 +22,171 @@
|
|||
"lang_time_suffixFromNow": null,
|
||||
"lang_time_inPast": null,
|
||||
"lang_time_seconds": "%d s",
|
||||
"lang_time_minute": "1 m",
|
||||
"lang_time_minutes": "%d m",
|
||||
"lang_time_minute": "1 min",
|
||||
"lang_time_minutes": "%d min",
|
||||
"lang_time_hour": "1 h",
|
||||
"lang_time_hours": "%d h",
|
||||
"lang_time_day": "1 d",
|
||||
"lang_time_days": "%d d",
|
||||
"lang_time_day": "1 j",
|
||||
"lang_time_days": "%d j",
|
||||
"lang_time_month": "1 mois",
|
||||
"lang_time_months": "%d mois",
|
||||
"lang_time_year": "y",
|
||||
"lang_time_years": "%d y",
|
||||
"lang_version_usever": "Aucune mise à jour n'a été trouvée ({{ver}})",
|
||||
"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_linux": "Do you want auto-updates?(users installed on Snapcraft select 'No')",
|
||||
"lang_version_platform_mac": "Do you want auto-updates?(Homebrew Cask users select 'No')",
|
||||
"lang_login_noauth": "Show TL of unlogined accounts",
|
||||
"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": "Voulez-vous des mises à jour automatiques? (si ce programme est installé depuis Snapcraft, sélectionnez 'Non')",
|
||||
"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": "Afficher la TL d'une instance distante",
|
||||
"lang_manager_info": "À propos de cette instance",
|
||||
"lang_manager_refresh": "Actualiser",
|
||||
"lang_manager_delete": "Se déconnecter",
|
||||
"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_def": "Par défaut",
|
||||
"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_maxChars": "Nombre maximum de caractères de pouets",
|
||||
"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_custom": "Émojis personnalisés",
|
||||
"lang_defaultemojis_text": "Emojis about {{cat}}",
|
||||
"lang_defaultemojis_text": "Émojis de {{cat}}",
|
||||
"lang_emoji_uncat": "Non catégorisé",
|
||||
"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_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_leadContext": "right-click the thumbnail to delete this",
|
||||
"lang_post_syncDetail": "Upload media synchronously",
|
||||
"lang_post_syncDetailText": "Click each picture icon to get the thumbnail. If you can get, the media you uploaded are completely processed.",
|
||||
"lang_post_tagTL": "This toot does not contain a default tag. This toot will not be shown on Local TL. Continue?",
|
||||
"lang_post_tagVis": "This toot(not 'public' toot) is not shown on this tag's TL.",
|
||||
"lang_post_cwtitle": "Auto CW Alert",
|
||||
"lang_post_cwtxt": "You are about to post longer toot than you set.\nWarning text:",
|
||||
"lang_post_btn1": "Cancel (will not post)",
|
||||
"lang_post_btn2": "Make text hidden automatically",
|
||||
"lang_post_btn3": "Continue to post",
|
||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||
"lang_post_retry": "Retry",
|
||||
"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_btWarn": "It will take a miunte to boost a remote toot.",
|
||||
"lang_postimg_leadContext": "click droit sur la vignette pour supprimer ceci",
|
||||
"lang_post_syncDetail": "Téléverser les médias de manière synchronisée",
|
||||
"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": "Ce pouet ne contient pas de tag par défaut. Ce pouet ne sera pas affiché sur la TL locale. Continuer ?",
|
||||
"lang_post_tagVis": "Ce pouet (pas un pouet 'public') n'est pas affiché sur la TL de ce tag.",
|
||||
"lang_post_cwtitle": "Alerte CW automatique",
|
||||
"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": "Annuler (ne sera pas publié)",
|
||||
"lang_post_btn2": "Caché automatiquement le texte",
|
||||
"lang_post_btn3": "Continuer à poster",
|
||||
"lang_post_unfinishedMedia": "Le serveur n'a pas terminé le traitement de vos médias. Réessayez.",
|
||||
"lang_post_retry": "Réessayer",
|
||||
"lang_post_offline": "Ajouter aux brouillons, car la connexion est hors ligne",
|
||||
"lang_status_favWarn": "Cela prendra une minute d'ajouter un pouet distant à vos favoris.",
|
||||
"lang_status_btWarn": "Cela prendra une minute de booster un pouet distant à vos favoris.",
|
||||
"lang_status_follow": "Suivre",
|
||||
"lang_status_unfollow": "Se désabonner",
|
||||
"lang_status_block": "Bloquer",
|
||||
"lang_status_unblock": "Débloquer",
|
||||
"lang_status_mute": "Silencier",
|
||||
"lang_status_unmute": "Unmute",
|
||||
"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_emphas": "'s toots are emphasized. Please reload after this action.",
|
||||
"lang_status_unemphas": "'s toots are not emphasized. Please reload after this action.",
|
||||
"lang_status_unendorse": "Not feature on profile",
|
||||
"lang_status_unmute": "Non-muet",
|
||||
"lang_status_redraftTitle": "Supprimer & reformuler",
|
||||
"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": "a ses pouets mis en évidence. Veuillez recharger après cette action.",
|
||||
"lang_status_unemphas": "a ses pouets sans mise en avant. Veuillez recharger après cette action.",
|
||||
"lang_status_unendorse": "Ne s'affiche pas sur le profile",
|
||||
"lang_status_endorse": "Recommander sur son profile",
|
||||
"lang_status_followers": "Followers",
|
||||
"lang_status_active": "Last status",
|
||||
"lang_secure_draft": "Add to draft",
|
||||
"lang_status_followers": "Abonnés",
|
||||
"lang_status_active": "Dernier statut",
|
||||
"lang_secure_draft": "Ajouter au brouillon",
|
||||
"lang_secure_useThis": "Utiliser ceci",
|
||||
"lang_secure_deleteThis": "Supprimer ce pouet",
|
||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||
"lang_cards_check": " check",
|
||||
"lang_cards_pip": "PiP mode",
|
||||
"lang_cards_trusted": "Trusted embed HTML by TheDesk(Twitter, nicovideo, YouTube, Spotify, twitcasing)",
|
||||
"lang_cards_untrusted": "Untrusted embed HTML by TheDesk",
|
||||
"lang_suggest_nodata": "S'il vous plait obtenez la liste d'emojis pour afficher des suggestions.",
|
||||
"lang_usetxtbox_reply": "Mode réponse. Ctrl+Shift+C pour effacer.",
|
||||
"lang_cards_check": " vérifier",
|
||||
"lang_cards_pip": "Mode Image dans l'Image",
|
||||
"lang_cards_trusted": "HTML embarqué de confiance pour TheDesk (Twitter, nicovideo, YouTube, Spotify, twitcasing)",
|
||||
"lang_cards_untrusted": "HTML embarqué sans confiance pour TheDesk",
|
||||
"lang_details_nodata": "Aucune donnée",
|
||||
"lang_details_filtered": "Pouet filtré",
|
||||
"lang_details_embed": "Embed HTML is cliped.",
|
||||
"lang_details_url": "URL of this toot is cliped.",
|
||||
"lang_details_txt": "Content of this toot is cliped.",
|
||||
"lang_details_embed": "Le code HTML intégré est tronqué.",
|
||||
"lang_details_url": "L'URL de ce pouet est tronqué.",
|
||||
"lang_details_txt": "Le contenu de ce pouet est tronqué.",
|
||||
"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_show": "Afficher",
|
||||
"lang_list_users": "Liste des utilisateur·rice·s",
|
||||
"lang_list_nouser": "Aucun·e utilisateur·rice dans cette 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_notf_new": " nouvelles notifications",
|
||||
"lang_speech_refresh": "Save value about TTS config",
|
||||
"lang_src_ts": "chronological order",
|
||||
"lang_src_people": " people toot",
|
||||
"lang_tags_always": "Always toots with ",
|
||||
"lang_tags_realtime": "Tag-stream toot",
|
||||
"lang_tags_tagunpin": "Unpin {{tag}}",
|
||||
"lang_tags_unrealtime": "Disable TsT",
|
||||
"lang_speech_refresh": "Sauvegarder la configuration TTS",
|
||||
"lang_src_ts": "ordre chronologique",
|
||||
"lang_src_people": " pouet de",
|
||||
"lang_tags_always": "Toujours tagger les toots avec ",
|
||||
"lang_tags_realtime": "Flux de toots taggés",
|
||||
"lang_tags_tagunpin": "Désépingler {{tag}}",
|
||||
"lang_tags_unrealtime": "Désactiver TsT",
|
||||
"lang_tags_tagwarn": "When you toot without {{tag}}, tag-streaming mode will be off.",
|
||||
"lang_tl_media": "Media",
|
||||
"lang_tl_reconnect": "Reconnect to streaming API",
|
||||
"lang_tl_postmarkers_title": "Process...",
|
||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||
"lang_img_DLDone": "Downloaded:",
|
||||
"lang_img_copyDone": "Copied: URL of this image",
|
||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||
"lang_layout_thisacct": "{{notf}} of this account",
|
||||
"lang_layout_delthis": "Remove this column",
|
||||
"lang_tl_media": "Média",
|
||||
"lang_tl_reconnect": "Se reconnecter à l'API de streaming",
|
||||
"lang_tl_postmarkers_title": "En cours...",
|
||||
"lang_tl_postmarkers": "POST des marqueurs. Veuillez patienter",
|
||||
"lang_img_DLDone": "Téléchargé:",
|
||||
"lang_img_copyDone": "Copié: URL de cette image",
|
||||
"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}} de ce compte",
|
||||
"lang_layout_delthis": "Supprimer cette colonne",
|
||||
"lang_layout_setthis": "Paramètres de cette colonne",
|
||||
"lang_layout_mediafil": "Media filtering",
|
||||
"lang_layout_remoteOnly": "Remote only",
|
||||
"lang_layout_linkana": "Auto Link Analyzer",
|
||||
"lang_layout_linkanades": "Auto link analyzer",
|
||||
"lang_layout_tts": "Text to speech ",
|
||||
"lang_layout_mediafil": "Filtrage des médias",
|
||||
"lang_layout_remoteOnly": "Distant seulement",
|
||||
"lang_layout_linkana": "Analyse automatique du lien",
|
||||
"lang_layout_linkanades": "Analyse automatique des liens",
|
||||
"lang_layout_tts": "Audio description ",
|
||||
"lang_layout_reconnect": "Reconnect to streaming API",
|
||||
"lang_layout_headercolor": "Header color of this column",
|
||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||
"lang_layout_headercolor": "Couleur de l'en-tête de cette colonne",
|
||||
"lang_layout_nodata": "[Pas de données]<br>F5/⌘+R pour recharger",
|
||||
"lang_layout_dm": "Message direct",
|
||||
"lang_layout_webviewmode": "Prefer WebView",
|
||||
"lang_layout_excluded": "Excluded type of notification",
|
||||
"lang_layout_webviewmode": "Préférer WebView",
|
||||
"lang_layout_excluded": "Type de notification exclu",
|
||||
"lang_layout_mention": "Mentions",
|
||||
"lang_layout_fav": "Favourites",
|
||||
"lang_layout_fav": "Favoris",
|
||||
"lang_layout_bt": "Boosts",
|
||||
"lang_layout_poll": "Polls",
|
||||
"lang_layout_excludingbt": "Show BT mode",
|
||||
"lang_layout_leftFold": "Stack to the left",
|
||||
"lang_layout_leftUnfold": "Dock on the right",
|
||||
"lang_layout_deleteColumn": "Delete this column",
|
||||
"lang_layout_deleteColumnDesc": "Delete this column",
|
||||
"lang_layout_unread": "Unread",
|
||||
"lang_layout_tagManager": "Tag timeline manager",
|
||||
"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_resetWidth": "Stretch this column",
|
||||
"lang_sort_gothis": "Go to this column",
|
||||
"lang_sort_remthis": "Delete this column",
|
||||
"lang_spotify_img": "Attach an album artwork",
|
||||
"lang_spotify_imgno": "Not attach an album artwork",
|
||||
"lang_spotify_acct": "Connect TheDesk to Spotify",
|
||||
"lang_spotify_np": "Done:templete of NowPlaying",
|
||||
"lang_setting_npprovide": "NowPlaying provider:{{set}}",
|
||||
"lang_hisdata_frcreq": "Required Mastodon 2.4.3 and above",
|
||||
"lang_hisdata_frcwarn": "Unfollow accounts will be shown.",
|
||||
"lang_hisdata_taketime": "It will take 30s ~ several minutes",
|
||||
"lang_hisdata_notonmisskey": "Misskey is unable to request.",
|
||||
"lang_hisdata_key": "This user is proofed by {{set}}",
|
||||
"lang_layout_poll": "Sondages",
|
||||
"lang_layout_excludingbt": "Afficher le mode BT",
|
||||
"lang_layout_leftFold": "Empiler à gauche",
|
||||
"lang_layout_leftUnfold": "Ancrer à droite",
|
||||
"lang_layout_deleteColumn": "Supprimer cette colonne",
|
||||
"lang_layout_deleteColumnDesc": "Supprimer cette colonne",
|
||||
"lang_layout_unread": "Non lu",
|
||||
"lang_layout_tagManager": "Gérer la timeline des Tags",
|
||||
"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": "Étirer cette colonne",
|
||||
"lang_sort_gothis": "Aller à cette colonne",
|
||||
"lang_sort_remthis": "Supprimer cette colonne",
|
||||
"lang_spotify_img": "Joindre une pochette d'album",
|
||||
"lang_spotify_imgno": "Ne pas attacher de pochette d'album",
|
||||
"lang_spotify_acct": "Connecter TheDesk à Spotify",
|
||||
"lang_spotify_np": "Terminé:templete de NowPlaying",
|
||||
"lang_setting_npprovide": "NowPlaying de:{{set}}",
|
||||
"lang_hisdata_frcreq": "Version minimum de Mastodon requise 2.4.3 et suivantes",
|
||||
"lang_hisdata_frcwarn": "Les comptes non suivis seront affichés.",
|
||||
"lang_hisdata_taketime": "Cela prendra entre 30 secondes de quelques minutes",
|
||||
"lang_hisdata_notonmisskey": "Impossible de requêter Misskey.",
|
||||
"lang_hisdata_key": "Cet utilisateur est protégé par {{set}}",
|
||||
"lang_showontl_movetxt": "Ce compte a migré ailleurs",
|
||||
"lang_showontl_movebtn": "Continuer sur le nouveau compte",
|
||||
"lang_showontl_botacct": "[bot]",
|
||||
"lang_showontl_followed": "Vous suit",
|
||||
"lang_parse_request": "Follow request",
|
||||
"lang_parse_request": "Demandes de suivi",
|
||||
"lang_showontl_notf": "Notification ",
|
||||
"lang_showontl_domain": "Domaine ",
|
||||
"lang_showontl_listwarn": "Follow to add this user to lists.",
|
||||
"lang_showontl_verified": "This website is verified by owner at ",
|
||||
"lang_status_requesting": "Requesting",
|
||||
"lang_showontl_listwarn": "Suivre pour ajouter cet utilisateur aux listes.",
|
||||
"lang_showontl_verified": "Ce site Web est vérifié par le propriétaire à ",
|
||||
"lang_status_requesting": "Demande en cours",
|
||||
"lang_parse_mentioned": " vous a répondu",
|
||||
"lang_parse_faved": " favourited your toot",
|
||||
"lang_parse_bted": " boosted your toot",
|
||||
"lang_parse_btedsimple": " boosted",
|
||||
"lang_parse_polled": "'s poll",
|
||||
"lang_parse_notftime": "Actioned at",
|
||||
"lang_parse_faved": " a mis votre pouet en favori",
|
||||
"lang_parse_bted": " a boosté votre pouet",
|
||||
"lang_parse_btedsimple": " boosté",
|
||||
"lang_parse_polled": "a fait un sondage",
|
||||
"lang_parse_notftime": "Fait le",
|
||||
"lang_parse_cwshow": "Afficher",
|
||||
"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_autofold": "Auto folded",
|
||||
"lang_parse_cwshow_acc": "Ceci est un pouet avec un avertissement de contenu. Cliquez pour afficher tout le contenu",
|
||||
"lang_parse_fulltext": "Texte complet:",
|
||||
"lang_parse_autofold": "Replié automatiquement",
|
||||
"lang_parse_more": "Plus",
|
||||
"lang_parse_url": "Analyseur d’URL",
|
||||
"lang_parse_tagTL": "Fil à propos de {{tag}}",
|
||||
|
@ -203,89 +203,89 @@
|
|||
"lang_parse_bt": "Booster ce pouet",
|
||||
"lang_parse_fav": "Mettre ce pouet en favoris",
|
||||
"lang_parse_quote": "Citer ce pouet",
|
||||
"lang_parse_bookmark": "Bookmark this",
|
||||
"lang_parse_unbookmark": "Unbookmark this",
|
||||
"lang_parse_bookmark": "Ajouter cette page aux favoris",
|
||||
"lang_parse_unbookmark": "Retirer ce favori",
|
||||
"lang_parse_del": "Supprimer ce pouet",
|
||||
"lang_parse_pin": "Épingler ce pouet",
|
||||
"lang_parse_unpin": "Unpin this",
|
||||
"lang_parse_link": "Open in a browser",
|
||||
"lang_parse_det": "Details via your main account.",
|
||||
"lang_parse_detail": "Details",
|
||||
"lang_parse_unpin": "Désépingler ceci",
|
||||
"lang_parse_link": "Ouvrir dans un navigateur",
|
||||
"lang_parse_det": "Détails via votre compte principal.",
|
||||
"lang_parse_detail": "Détails",
|
||||
"lang_parse_redraft": "Supprimer & reformuler",
|
||||
"lang_parse_followed": "Vous a suivi",
|
||||
"lang_parse_moved": "Moved to...",
|
||||
"lang_parse_clientop": "Operation of this client",
|
||||
"lang_parse_clienttxt": " will be",
|
||||
"lang_parse_clientno": "done nothing",
|
||||
"lang_parse_clientemp": "emphasized(/not emphasized)",
|
||||
"lang_parse_clientmute": "muted",
|
||||
"lang_parse_mute": " will be muted. You can remove on preferences.",
|
||||
"lang_parse_voted": "(Voted)",
|
||||
"lang_parse_myvote": "(My own poll)",
|
||||
"lang_parse_moved": "Déplacé vers...",
|
||||
"lang_parse_clientop": "Opération de ce client",
|
||||
"lang_parse_clienttxt": " sera",
|
||||
"lang_parse_clientno": "ne rien faire",
|
||||
"lang_parse_clientemp": "mis en évidence(/pas mis en évidence)",
|
||||
"lang_parse_clientmute": "mis en sourdine",
|
||||
"lang_parse_mute": " sera mis en sourdine. Vous pouvez le supprimer dans les préférences.",
|
||||
"lang_parse_voted": "(A voté)",
|
||||
"lang_parse_myvote": "(Mon propre sondage)",
|
||||
"lang_parse_vote": "Vote",
|
||||
"lang_parse_unvoted": "Show the result without voting",
|
||||
"lang_parse_endedvote": "Expired",
|
||||
"lang_parse_people": "people",
|
||||
"lang_parse_thread": "Show thread",
|
||||
"lang_parse_unknown": "Attached file",
|
||||
"lang_parse_nsfw": "sensitive media",
|
||||
"lang_parse_html": "Show embed HTML",
|
||||
"lang_parse_notffilter": "Show this user's notifications",
|
||||
"lang_parse_hidden": "Unvisible quoted toot",
|
||||
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||
"lang_misskeyparse_renote": "Repost",
|
||||
"lang_misskeyparse_renoteqt": "Renote",
|
||||
"lang_parse_unvoted": "Afficher le résultat sans voter",
|
||||
"lang_parse_endedvote": "Expiré",
|
||||
"lang_parse_people": "personnes",
|
||||
"lang_parse_thread": "Afficher le fil de discussion",
|
||||
"lang_parse_unknown": "Fichier joint",
|
||||
"lang_parse_nsfw": "média NSFW",
|
||||
"lang_parse_html": "Afficher le HTML intégré",
|
||||
"lang_parse_notffilter": "Afficher les notifications",
|
||||
"lang_parse_hidden": "Pouet entre guillemets non visible",
|
||||
"lang_parse_disconnected": "Le streaming a été déconnecté (réessayer après 3s)",
|
||||
"lang_misskeyparse_renote": "Retooter",
|
||||
"lang_misskeyparse_renoteqt": "Re-noter",
|
||||
"lang_misskeyparse_reaction": "Réaction",
|
||||
"lang_misskeyparse_tagnostr": "No streaming API on Tag TLs",
|
||||
"lang_misskeyparse_listnostr": "No streaming API on List TLs",
|
||||
"lang_misskeyparse_tagnostr": "Aucune API de streaming pour le Tag des TLs",
|
||||
"lang_misskeyparse_listnostr": "Aucune API de streaming pour le Tag des TLs",
|
||||
"lang_misskeyparse_home": "Accueil",
|
||||
"lang_misskeyparse_followers": "Abonné",
|
||||
"lang_misskeyparse_specified": "Specified User",
|
||||
"lang_misskeyparse_qt": "Misskey renote(quote) mode:Ctrl+Shift+Enter to clear",
|
||||
"lang_misskeyparse_renoted": " renoted your following post.",
|
||||
"lang_misskeyparse_quoted": " quoted your following post.",
|
||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||
"lang_setting_time": "Time format:{{set}}",
|
||||
"lang_misskeyparse_specified": "Utilisateur spécifié",
|
||||
"lang_misskeyparse_qt": "Ctrl+Shift+Enter pour reformuler Misskey(quote), Entrée pour effacer",
|
||||
"lang_misskeyparse_renoted": " reformulation de votre post.",
|
||||
"lang_misskeyparse_quoted": " citation de votre post.",
|
||||
"lang_misskeyparse_reacted": " réaction à votre post.",
|
||||
"lang_setting_time": "Format de l'heure :{{set}}",
|
||||
"lang_setting_theme": "Thème : {{set}}",
|
||||
"lang_setting_compat": "Compatible",
|
||||
"lang_setting_nsfw": "NSFW:{{set}}",
|
||||
"lang_setting_cw": "CW:{{set}}",
|
||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||
"lang_setting_cws": "Always CW on:{{set}}",
|
||||
"lang_setting_rp": "Reply counter:{{set}}",
|
||||
"lang_setting_vis": "Default visibility:{{set}}",
|
||||
"lang_setting_popup": "Popup notification:{{set}}",
|
||||
"lang_setting_cwtext": "CW par défaut: {{set}}",
|
||||
"lang_setting_cws": "Toujours activer le CW: {{set}}",
|
||||
"lang_setting_rp": "Nombre de réponses:{{set}}",
|
||||
"lang_setting_vis": "Visibilité par défaut:{{set}}",
|
||||
"lang_setting_popup": "Popup de notification:{{set}}",
|
||||
"lang_setting_off": "Désactivé",
|
||||
"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_selt": "Auto fold:{{set1}} lines and above, {{set2}} letters and above",
|
||||
"lang_setting_autocw": "Auto CW:{{set1}} lines and above, {{set2}} letters and above",
|
||||
"lang_setting_width": "Minimam width:{{set}}",
|
||||
"lang_setting_fixwidth": "TweetDeck fixed width:{{set}}px",
|
||||
"lang_setting_img": "After posting an image:{{set}}",
|
||||
"lang_setting_font": "Fonts:{{set}}",
|
||||
"lang_setting_default": "default font",
|
||||
"lang_setting_size": "Font size:{{set}}px",
|
||||
"lang_setting_imgheight": "Image height:{{set}}px",
|
||||
"lang_setting_selt": "Replier automatiquement :{{set1}} lignes et plus, {{set2}} lettres et plus",
|
||||
"lang_setting_autocw": "CW automatique :{{set1}} lignes et plus, {{set2}} lettres et plus",
|
||||
"lang_setting_width": "Largeur minimum:{{set}}",
|
||||
"lang_setting_fixwidth": "Largeur fixe du TweetDeck :{{set}}px",
|
||||
"lang_setting_img": "Après avoir posté une image :{{set}}",
|
||||
"lang_setting_font": "Polices:{{set}}",
|
||||
"lang_setting_default": "police par défaut",
|
||||
"lang_setting_size": "Taille de la police:{{set}}px",
|
||||
"lang_setting_imgheight": "Hauteur de l'image:{{set}}px",
|
||||
"lang_setting_ticker": "#InstanceTicker:{{set}}px",
|
||||
"lang_setting_animation": "Animation: {{set}}",
|
||||
"lang_setting_tag": "Tag TL:{{set}}",
|
||||
"lang_setting_boxConfirm": "Post box:{{set}}",
|
||||
"lang_setting_ul": "Native locale:{{set}}",
|
||||
"lang_setting_notf": "Native notification:{{set}}",
|
||||
"lang_setting_quote": "Quote format:{{set}}",
|
||||
"lang_setting_boxConfirm": "Boite de toot:{{set}}",
|
||||
"lang_setting_ul": "Langue native:{{set}}",
|
||||
"lang_setting_notf": "Notification native:{{set}}",
|
||||
"lang_setting_quote": "Format de citation:{{set}}",
|
||||
"lang_setting_via": "Via:{{set}}",
|
||||
"lang_setting_mov": "Action buttons hiding:{{set}}",
|
||||
"lang_setting_setasread": "Notification markers:{{set}}",
|
||||
"lang_setting_mov": "Masquer les boutons d'action:{{set}}",
|
||||
"lang_setting_setasread": "Marquer comme lu:{{set}}",
|
||||
"lang_setting_main": "Compte par défaut : {{set}}",
|
||||
"lang_setting_sec": "Secondary toot button:{{set}}",
|
||||
"lang_setting_ksref": "Keyboard shortcuts are refreshed.",
|
||||
"lang_setting_nomuting": "No client is muted.",
|
||||
"lang_setting_notftest": " Notification test ",
|
||||
"lang_setting_notftestprof": "Your icon is shown.",
|
||||
"lang_setting_exportwarn": "Only important data will be exported. You must keep this data secure.",
|
||||
"lang_setting_sec": "Bouton de pouet secondaire:{{set}}",
|
||||
"lang_setting_ksref": "Les raccourcis clavier sont actualisés.",
|
||||
"lang_setting_nomuting": "Aucun client n'est mis en muet.",
|
||||
"lang_setting_notftest": " Test de notification ",
|
||||
"lang_setting_notftestprof": "Votre icône est affichée.",
|
||||
"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_noupd": "No available update",
|
||||
"lang_setting_thisisbeta": "This is beta version. You have to update manually."
|
||||
"lang_setting_noupd": "Aucune mise à jour disponible",
|
||||
"lang_setting_thisisbeta": "Ceci est une version bêta. Vous devez la mettre à jour manuellement."
|
||||
}
|
|
@ -4,7 +4,7 @@
|
|||
"yes": "Oui",
|
||||
"no": "Non",
|
||||
"none": "Aucun",
|
||||
"show": "Show",
|
||||
"show": "Afficher",
|
||||
"hide": "Cacher",
|
||||
"default": "Par défaut",
|
||||
"change": "Modifier",
|
||||
|
@ -19,30 +19,30 @@
|
|||
"hardwareAccelerationWarn": "Redémarrage Automatique",
|
||||
"theme": "Thèmes",
|
||||
"popup": "Notification pop-up",
|
||||
"popupwarn": "Hide to set \"0\"",
|
||||
"popupwarn": "\"0\" pour cacher",
|
||||
"s": "sec",
|
||||
"nativenotf": "Native notification",
|
||||
"nativenotf": "Notification native",
|
||||
"nnwarn": "Cela ne fonctionne pas sur la version portable pour Windows.",
|
||||
"nntest": "Notification test",
|
||||
"nntest": "Test de notification",
|
||||
"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",
|
||||
"fixwidthwarn": "",
|
||||
"margin": "Marge entre les timelines",
|
||||
"above": "above",
|
||||
"above": "au-dessus de",
|
||||
"font": "Police de caractères",
|
||||
"fontwarn": "Select your favorite font to 'Select'",
|
||||
"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.",
|
||||
"useragent": "User agent",
|
||||
"useragentWarn": "Restart when changed",
|
||||
"frame": "Window frame",
|
||||
"frameWarn": "If 'off', the window looks cool.",
|
||||
"downloadWin": "Versioning(o Windows downloader)",
|
||||
"useragent": "User-Agent",
|
||||
"useragentWarn": "Redémarrer après les changements",
|
||||
"frame": "Cadre de fenêtre",
|
||||
"frameWarn": "Sur 'off', la fenêtre sera chouette.",
|
||||
"downloadWin": "Versionner (o Téléchargeur de Windows)",
|
||||
"absolute": "valeur absolue",
|
||||
"srcUrl": "Moteur de recherche",
|
||||
"srcUrlWarn": "{q} will be replaced to query.",
|
||||
"srcUrlWarn": "{q} sera remplacé pour requêter.",
|
||||
"themeSel": "Sélectionner un thème",
|
||||
"customtheme": "Modifier et ajouter des thèmes",
|
||||
"customthemeDirection": "Jeu de couleurs",
|
||||
|
@ -51,170 +51,172 @@
|
|||
"use": "Utiliser ceci",
|
||||
"copyFrom": "Copier depuis",
|
||||
"bg": "Couleur de l'arrière-plan",
|
||||
"subcolor": "Distinguishable from background",
|
||||
"subcolor": "Différend du fond",
|
||||
"text": "Couleur du texte",
|
||||
"accent": "Arrière-plan des boosts",
|
||||
"modal": "Background of modal window",
|
||||
"modalFooter": "Background of modal window's footer",
|
||||
"thirdColor": "Backgroud of tag buttons, etc(near to Background)",
|
||||
"forthColor": "Title bar(same scheme to Background)",
|
||||
"bottom": "Background of menu-bar at bottom of window",
|
||||
"emphasized": "Emphasized toot's background",
|
||||
"postbox": "Background of post-box and menu",
|
||||
"active": "Background of 'active' elements",
|
||||
"selected": "Background of selected with arrow keys",
|
||||
"selectedWithShare": "Background of selected with arrow keys(boosted toots)",
|
||||
"modal": "Arrière-plan de la fenêtre modale",
|
||||
"modalFooter": "Arrière plan du pied de page de la fenêtre modale",
|
||||
"thirdColor": "Fond des boutons tag, etc (près de l'arrière plan)",
|
||||
"forthColor": "Barre de titre (même schéma en arrière-plan)",
|
||||
"bottom": "Arrière-plan de la barre de menus en bas de la fenêtre",
|
||||
"emphasized": "Arrière plan des pouets mis en évidence",
|
||||
"postbox": "Arrière plan du menu et de la boite d'envoi",
|
||||
"active": "Arrière-plan des éléments 'actifs'",
|
||||
"selected": "Arrière-plan de la sélection avec les flèches",
|
||||
"selectedWithShare": "Arrière-plan de la sélection avec les flèches (pouets boostés)",
|
||||
"add_new": "Ajouter",
|
||||
"name": "Nom",
|
||||
"desc": "À propos de ce thème",
|
||||
"customImport": "Import of custom themes",
|
||||
"customImport": "Importer des thèmes personnalisés",
|
||||
"delete": "Supprimer",
|
||||
"timeline": "Timeline Preferences",
|
||||
"timeline": "Préférence de la TimeLine",
|
||||
"timemode": "Format de l’heure",
|
||||
"relativetime": "Relative format:\"1 minutes ago\",\"3 days ago\"",
|
||||
"absolutetime": "Absolute format:\"23:25:21\",\"2017/12/30 23:59:00\"",
|
||||
"mixtime": "Mixed format:toots posted today are relative-format, others are absolute-format.",
|
||||
"relativesel": "Relative",
|
||||
"absolutesel": "Absolute",
|
||||
"doublesel": "Both relative and absolute",
|
||||
"mixsel": "Mixed",
|
||||
"locale": "Server's unique locale",
|
||||
"localewarn": "This value is available on some Japanese servers",
|
||||
"relativetime": "Format relatif:\"Il y a 1 minutes\",\"3 jours\"",
|
||||
"absolutetime": "Format absolu :\"23:25:21\",\"2017/12/30 23:59:00\"",
|
||||
"mixtime": "Formats mixtes: les pouets postés aujourd'hui sont au format relatif, les autres sont au format absolu.",
|
||||
"relativesel": "Relatif",
|
||||
"absolutesel": "Absolu",
|
||||
"doublesel": "Relatif et absolu",
|
||||
"mixsel": "Mixte",
|
||||
"locale": "Locale unique du serveur",
|
||||
"localewarn": "Cette valeur est disponible sur certains serveurs japonais",
|
||||
"nswf": "Hide NSFW pictures",
|
||||
"nsfwwarn": "Strong blur effect",
|
||||
"cw": "Hide CW contents",
|
||||
"replyct": "Reply counter style",
|
||||
"replyct_hidden": "Show 1+ if the replies are more than 1.",
|
||||
"replyct_full": "Show full count(1,2...)",
|
||||
"gif": "Animated GIF images animation",
|
||||
"box": "Action of posting-box",
|
||||
"boxyes": "Folding",
|
||||
"boxabs": "Absolutely open",
|
||||
"boxno": "Open after posting",
|
||||
"tag": "Tag TL Search",
|
||||
"tagfed": "Use federated network",
|
||||
"nsfwwarn": "Fort effet de flou",
|
||||
"cw": "Cacher le contenu CW",
|
||||
"replyct": "Style du compteur de réponse",
|
||||
"replyct_hidden": "Afficher +1 s'il y a plus d'une réponse.",
|
||||
"replyct_full": "Afficher le comptage complet (1,2...)",
|
||||
"gif": "Animation des images GIF animées",
|
||||
"box": "Action de la boite d'envoi",
|
||||
"boxyes": "Pliage",
|
||||
"boxabs": "Entièrement ouvert",
|
||||
"boxno": "Ouvrir après l'envoi",
|
||||
"tag": "Recherche de Tags dans la TL",
|
||||
"tagfed": "Utiliser le réseau fédéré",
|
||||
"taglocal": "Utiliser le réseau local",
|
||||
"via": "Afficher via",
|
||||
"mouseover": "Hide action buttons without mouseover",
|
||||
"mouseoverwarn": "You may feel 'mouseover' is unconfortable:(",
|
||||
"mv": "Mouseover to show",
|
||||
"mouseover": "Masquer les boutons d'action sans survol de la souris",
|
||||
"mouseoverwarn": "Vous pourriez trouver le survol de la souris inconfortable :(",
|
||||
"mv": "Survoler pour afficher",
|
||||
"mvclick": "Cliquez pour afficher",
|
||||
"notfmarker": "Show Notification marker, red colored bell and counter(if you show a notification column.)",
|
||||
"autofold": "Auto folding",
|
||||
"notfmarker": "Afficher le marqueur de notification, la cloche rouge et le compteur (si vous affichez une colonne de notification.)",
|
||||
"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.",
|
||||
"lines": "lignes",
|
||||
"letters": "lettres",
|
||||
"or": "ou",
|
||||
"imgheight": "Hauteur des images",
|
||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||
"imgheightwarn": "Option:Définir \"full\" pour ne pas rogner.",
|
||||
"ticker": "Activer OpenSticker",
|
||||
"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",
|
||||
"markers": "Markers(mark as read) on HTL and notifications",
|
||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"markers": "Marqueur(marquer comme lu) sur la TL personnelle et les notifications",
|
||||
"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_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)",
|
||||
"favSound": "Son (Fav)",
|
||||
"btSound": "Son (Boost)",
|
||||
"followSound": "Son (Follow)",
|
||||
"customSound": "Son personnalisé",
|
||||
"post": "Posting Preferences",
|
||||
"post": "Préférences d'envoi",
|
||||
"autocw": "Alerte avant de poster un long toot.",
|
||||
"autocwwarn": "Afficher la boîte de dialogue si vous cachez un texte trop long.",
|
||||
"defaultcw": "Texte d'avertissement par défaut",
|
||||
"cws": "Always CW set",
|
||||
"cws": "Toujours marquer CW",
|
||||
"defaultvis": "Visibilité par défaut",
|
||||
"public": "Public",
|
||||
"unlisted": "Non listé",
|
||||
"private": "Privé",
|
||||
"direct": "Direct",
|
||||
"memory": "Memory(memorized as each server)",
|
||||
"useapi": "Default of your visibility(Set on preferences of Mastodon server)",
|
||||
"postimg": "Posting images preferences",
|
||||
"showurl": "Insert media URL",
|
||||
"nourl": "Insert nothig",
|
||||
"memory": "Mémoire (mémorisée pour chaque serveur)",
|
||||
"useapi": "Visibilité par défaut (choisi dans les préférences du serveur Mastodon)",
|
||||
"postimg": "Préférences de publication d'images",
|
||||
"showurl": "Insérer l'URL du média",
|
||||
"nourl": "Ne rien insérer",
|
||||
"disabled": "Désactivé",
|
||||
"quote": "Format des citations",
|
||||
"simple": "URL uniquement",
|
||||
"mention": "URL and acct(mention to the user)",
|
||||
"full": "URL, text and acct(mention to the user)",
|
||||
"notqt": "Disabled(Hide buttons on TLs)",
|
||||
"mention": "URL et compte (mention à l'utilisateur)",
|
||||
"full": "URL, texte et compte (mention à l'utilisateur)",
|
||||
"notqt": "Désactivé (boutons masqués sur les TLs)",
|
||||
"apiQuote": "API (seulement certaines instances)",
|
||||
"showBookmarkAction": "Show a bookmarking toot button",
|
||||
"scrollBar": "Height of the scroll bar",
|
||||
"thin": "Thin",
|
||||
"showBookmarkAction": "Afficher un bouton pour ajouter un pouet aux marque-pages",
|
||||
"scrollBar": "Hauteur de la barre de défilement",
|
||||
"thin": "Fin",
|
||||
"normal": "Normal",
|
||||
"thick": "Thick",
|
||||
"main": "Default accounts of actions",
|
||||
"mainwarn": "Main account can be set on Account Manager.",
|
||||
"lastacct": "Account you used recently",
|
||||
"thick": "Épais",
|
||||
"main": "Comptes par défaut des actions",
|
||||
"mainwarn": "Le compte principal peut être défini sur le gestionnaire de comptes.",
|
||||
"lastacct": "Compte que vous avez utilisé récemment",
|
||||
"usemainacct": "Compte principal",
|
||||
"secondary": "Secondary Toot Button",
|
||||
"secwarn": "Toot with other visibility setting",
|
||||
"nothing": "Hidden",
|
||||
"localonly": "Local Only",
|
||||
"zeroWidthEmoji": "Zero-width space when inserting emojis",
|
||||
"secondary": "Bouton de pouet secondaire",
|
||||
"secwarn": "Pouet avec un autre paramètre de visibilité",
|
||||
"nothing": "Caché",
|
||||
"localonly": "Local uniquement",
|
||||
"zeroWidthEmoji": "Insérer les émojis sans espace",
|
||||
"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.",
|
||||
"keysc": "Keyboard shortcut Preferences",
|
||||
"iks": "Easy inserter",
|
||||
"okswarn": "You can insert any letters and emojis with only 3 keys",
|
||||
"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": "Préférences de raccourcis clavier",
|
||||
"iks": "Insertion facile",
|
||||
"okswarn": "Vous pouvez insérer des lettres et des emojis avec seulement 3 touches",
|
||||
"plugin": "Plugins",
|
||||
"howToWritePlugin": "Japanese docs of AiScript TheDesk plugins",
|
||||
"pluginList": "Plugin list",
|
||||
"muteemp": "Mute & Emphasis Preferences",
|
||||
"climute": "Client Mute",
|
||||
"cliemp": "Client Emphasis",
|
||||
"cliwarn": "Click client name on toots to toggle mute and emphasis.",
|
||||
"enter": "Enter to set",
|
||||
"wordmute": "Words Mute",
|
||||
"wordemp": "Words Emphasis",
|
||||
"useremp": "Users Emphasis",
|
||||
"useerempwarn": "Set on users data modals.",
|
||||
"empcolorwarn": "Use this color to emphasis",
|
||||
"spotify": "Spotify and NowPlaying Preferences",
|
||||
"spotifynote1": "Click ",
|
||||
"spotifynote2": "icon to NowPlaying",
|
||||
"link": "Account Connection",
|
||||
"howToWritePlugin": "Documentation japonaise des plugins AiScript TheDesk",
|
||||
"pluginList": "Liste des plugins",
|
||||
"muteemp": "Préférences de mise en valeur et muet",
|
||||
"climute": "Client Muet",
|
||||
"cliemp": "Client Mis en valeur",
|
||||
"cliwarn": "Cliquez sur le nom du client des pouets pour activer/désactiver muet et la mise en valeur.",
|
||||
"enter": "Entrer pour définir",
|
||||
"wordmute": "Mots muets",
|
||||
"wordemp": "Mots mis en valeur",
|
||||
"useremp": "Utilisateurs mis en valeur",
|
||||
"useerempwarn": "Régler sur les modales de données des utilisateurs.",
|
||||
"empcolorwarn": "Utilisez cette couleur pour mettre en valeur",
|
||||
"spotify": "Préférences Spotify et NowPlaying",
|
||||
"spotifynote1": "Clic ",
|
||||
"spotifynote2": "icône pour la lecture en cours",
|
||||
"link": "Connexion au compte",
|
||||
"linkwarn": "TheDesk enregistre vos données sur le serveur thedesk.top.",
|
||||
"connect": "Se 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",
|
||||
"templateeditwarn": "",
|
||||
"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}",
|
||||
"template1": "Spotify:{song}:Morceau/{album}:Album name/{artist}:Nom de l'artiste /{url}:URL de Spotify",
|
||||
"template2": "macOS:{song}:Morceau/{album}:Album/{artist}:Artiste/compositeur:{composer}/fréquence d'échantillonage :{hz}/débit:{bitRate}/genre:{genre}",
|
||||
"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)",
|
||||
"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.",
|
||||
"tts": "TTS(text to speech) Preferences",
|
||||
"bouyomi": "BouyomiChan connect",
|
||||
"bouyomiWarn": "Require: BouyomiChan WebSocket Plugin",
|
||||
"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": "Préférences TTS(audio description)",
|
||||
"bouyomi": "Connexion à BouyomiChan",
|
||||
"bouyomiWarn": "Le plugin BouyomiChan pour WebSocket est nécessaire",
|
||||
"speed": "Vitesse",
|
||||
"speedwarn": "1-100(default:10)",
|
||||
"pitch": "Pitch",
|
||||
"pitchwarn": "0-100(default:50)",
|
||||
"speedwarn": "1-100 (par défaut:10)",
|
||||
"pitch": "Tonalité",
|
||||
"pitchwarn": "0-100 (par défaut:50)",
|
||||
"vol": "Volume",
|
||||
"volwarn": "0-100(default:100)",
|
||||
"volwarn": "0-100 (par défaut:100)",
|
||||
"volwarn80": "0-100 (par défaut:80)",
|
||||
"test": "Test",
|
||||
"sample": "TheDesk est un client Mastodon open-source pour PC.",
|
||||
"playstop": "Jouer/Arrêter",
|
||||
"back": "Retour",
|
||||
"keyscs": "Raccourcis clavier",
|
||||
"keyscr": "Jump to n(1-9)th column",
|
||||
"keynew": "Open toot box",
|
||||
"keytoggle": "Toggle toot box",
|
||||
"keyscr": "Aller à la n(1-9)ème colonne",
|
||||
"keynew": "Ouvrir la boîte d'envoi",
|
||||
"keytoggle": "Activer/désactiver la boîte d'envoi",
|
||||
"keypost": "Publier",
|
||||
"keysecpost": "Post(secondary toot)",
|
||||
"keysecpost": "Envoyer(pouet secondaire)",
|
||||
"keyunread": "Marquer toutes les notifications comme lues",
|
||||
"keyesc": "Hide toot box",
|
||||
"keyf5": "Super Reload",
|
||||
"keyclear": "Clear toot box",
|
||||
"keyacctman": "Account Manager",
|
||||
"keyshowprof": "Show profile of selecting",
|
||||
"keyesc": "Cacher la boite d'envoi",
|
||||
"keyf5": "Super rechargement",
|
||||
"keyclear": "Vider le champs de saisie du pouet",
|
||||
"keyacctman": "Gestionnaire de compte",
|
||||
"keyshowprof": "Afficher le profil de sélection",
|
||||
"keyrow": "Montrer l'image précédente ou suivante",
|
||||
"keyzoom": "Molette de la souris : Zoomer sur l'image",
|
||||
"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)",
|
||||
"reset": "Réinitialiser (Danger)",
|
||||
"resetconfirm": "Supprimer toutes les données. Vous ne pouvez pas annuler. Continuer ?",
|
||||
"about": "About TheDesk",
|
||||
"about": "À propos de TheDesk",
|
||||
"hp": "Site Web",
|
||||
"support": "Assistance",
|
||||
"help": "Aide",
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
{
|
||||
"updatehere": "Téléchargez le dernier TheDesk",
|
||||
"download": "Démarrer",
|
||||
"portable": "Portable ver.",
|
||||
"installer": "Installer(Recommended)",
|
||||
"portable": "Version portable",
|
||||
"installer": "Installeur(Recommandé)",
|
||||
"linux": "zip",
|
||||
"linuxdeb": "deb(Recommended on buntu, Debian)",
|
||||
"linuxdeb": "deb(Recommandé sur ubuntu, Debian)",
|
||||
"linuxsnap": "snap",
|
||||
"snap": "Get it on Snapcraft",
|
||||
"sureupd": "You may lose a cool experience!",
|
||||
"snap": "Obtenez-le sur Snapcraft",
|
||||
"sureupd": "Vous pourriez rater une expérience sympa!",
|
||||
"skipupd": "Ignorer cette mise à jour",
|
||||
"nexttl": "Hidden until next TL loading",
|
||||
"nextver": "Hidden until next version",
|
||||
"problem1": "Some problems?",
|
||||
"nexttl": "Caché jusqu'au prochain chargement de la TL",
|
||||
"nextver": "Caché jusqu'à la prochaine version",
|
||||
"problem1": "Des soucis?",
|
||||
"problem2": "Please download on <a href=\"https://thedesk.top\">Oficial HP</a>.",
|
||||
"continue": "Continuer la mise à jour",
|
||||
"dlnow": "Téléchargement...",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Condiviso su WebUI e client supportati da terze parti.",
|
||||
"remote_img": "Ottieni immagini dal server remoto",
|
||||
"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)",
|
||||
"favSound": "Suono (Fav)",
|
||||
"btSound": "Suono (Boost)",
|
||||
|
|
|
@ -113,6 +113,8 @@
|
|||
"markerswarn": "Mastodon 3.0相当以上。WebUIと対応クライアントで共有するやつや。",
|
||||
"remote_img": "画像をリモートから取得",
|
||||
"remote_imgWarn": "プレビューはログインサーバーのキャッシュからどちらにしろ取得する。ビューワーのみに適用されるで。",
|
||||
"moreContextMode": "コンテキストツール",
|
||||
"moreContextModeWarn": "トゥート詳細の、トゥート前後のトゥートを表示する機能",
|
||||
"replySound": "リプライの通知音",
|
||||
"favSound": "お気に入り登録の通知音",
|
||||
"btSound": "ブーストの通知音",
|
||||
|
|
|
@ -146,6 +146,8 @@
|
|||
"thin": "細い",
|
||||
"normal": "普通",
|
||||
"thick": "太い",
|
||||
"moreContextMode": "コンテキストツール",
|
||||
"moreContextModeWarn": "トゥート詳細の、トゥート前後のトゥートを表示する機能",
|
||||
"main": "投稿後や起動時のアカウント",
|
||||
"mainwarn": "メインアカウントはアカウント設定で指定できます。投稿以外のアカウント選択にも影響します。",
|
||||
"lastacct": "最後に使用したアカウント",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"list": "List of accounts",
|
||||
"back": "Back",
|
||||
"add": "Add an account",
|
||||
"addAcct": "Fill the instance domain (like mastodon.social)",
|
||||
"list": "Lista kont",
|
||||
"back": "Wstecz",
|
||||
"add": "Dodaj konto",
|
||||
"addAcct": "Wprowadź domenę instancji (jak mastodon.social)",
|
||||
"codesetupwarn": "Uncheck it to skip pasiting code.(login to Mastodon on Windows or macOS) (Recommended: pcheck)",
|
||||
"codesetup": "Code setup",
|
||||
"mainacct": "Main an account",
|
||||
"selacct": "Select an account",
|
||||
"codepastewarn": "Paste the code and close browser.",
|
||||
"selacct": "Wybierz konto",
|
||||
"codepastewarn": "Wklej kod i zamknij przeglądarkę.",
|
||||
"codepaste": "Code",
|
||||
"domain": "Domain",
|
||||
"connect": "Federated servers",
|
||||
"toots": "Toots",
|
||||
"users": "Users",
|
||||
"users2": "users",
|
||||
"toots": "Tooty",
|
||||
"users": "Użytkownicy",
|
||||
"users2": "użytkownicy",
|
||||
"safety": "Connection",
|
||||
"ver": "Mastodon version",
|
||||
"ver": "Wersja Mastodona",
|
||||
"ko": "",
|
||||
"thisismisskey": "Login as 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)",
|
||||
"haveExported": "Having the exported file of TheDesk, click here to jump setting page"
|
||||
}
|
|
@ -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",
|
||||
"reOnline": "Now we are in the Internet, you should reload...",
|
||||
"close": "Close",
|
||||
"webSrc": "Search on Web",
|
||||
"close": "Zamknij",
|
||||
"webSrc": "Szukaj w Internecie",
|
||||
"tsSrc": "Search on tootsearch",
|
||||
"showSelectProf": "Show profile of the selecting account",
|
||||
"showSelectProf": "Pokaż profil wybranego konta",
|
||||
"closethisbox": "Close this box",
|
||||
"toot": "Toot",
|
||||
"post-new": "Post new",
|
||||
"nsfwDes": "Mark media as sensitive",
|
||||
"nsfwDes": "Oznacz media jako wrażliwe",
|
||||
"cwDes": "Hide text behind warning",
|
||||
"selfile": "Attach..",
|
||||
"insertEmoji": "Emojis",
|
||||
"schedule": "Scheduled toot",
|
||||
"selfile": "Dołącz..",
|
||||
"insertEmoji": "Emoji",
|
||||
"schedule": "Zaplanowany toot",
|
||||
"postat": "Post at",
|
||||
"scheduleWarn": "2.7.0~ Minimum time gap:5min(clock on the server may not be accurate.)",
|
||||
"clearToot": "Clear toot box",
|
||||
"replyMode": "Reply",
|
||||
"no": "No",
|
||||
"yes": "Yes",
|
||||
"temp": "Attaching files",
|
||||
"nothing": "None",
|
||||
"no": "Nie",
|
||||
"yes": "Tak",
|
||||
"temp": "Dołączanie plików",
|
||||
"nothing": "Brak",
|
||||
"stamp": "Stamp",
|
||||
"stampWarn": "Your acct(aa@bb.cc) is printed on the right-bottom of the uploaded image",
|
||||
"vis": "Adjust status privacy",
|
||||
|
@ -30,33 +30,33 @@
|
|||
"publicJP": "",
|
||||
"unlistedJP": "",
|
||||
"privateJP": "",
|
||||
"localJP": "Local only",
|
||||
"localJP": "Tylko lokalne",
|
||||
"sectoot": "Secondary Toot",
|
||||
"directJP": "",
|
||||
"emojiWarn": "",
|
||||
"emojiInsertWarn": "Some emojis are not able to be inserted.",
|
||||
"emojiInsertWarn": "Niektóre emotikony nie mogą być wstawione.",
|
||||
"refreshEmoji": "Refresh emojis list",
|
||||
"closeThisBox": "Close this box",
|
||||
"showThisEmoji": " are shown.",
|
||||
"customEmoji": "Custom emojis",
|
||||
"peopleEmoji": "Emojis of people",
|
||||
"natureEmoji": "Emojis of nature",
|
||||
"foodEmoji": "Emojis of foods",
|
||||
"activityEmoji": "Emojis of activities",
|
||||
"placeEmoji": "Emojis of places",
|
||||
"thingsEmoji": "Emojis of tools",
|
||||
"symbolEmoji": "Emojis of symbols",
|
||||
"flagsEmoji": "Emojis of flags",
|
||||
"peopleEmoji": "Emoji ludzi",
|
||||
"natureEmoji": "Emoji natury",
|
||||
"foodEmoji": "Emoji jedzenia",
|
||||
"activityEmoji": "Emoji aktywności",
|
||||
"placeEmoji": "Emoji miejsc",
|
||||
"thingsEmoji": "Emoji narzędzi",
|
||||
"symbolEmoji": "Emoji symboli",
|
||||
"flagsEmoji": "Emoji flag",
|
||||
"draft": "Draft",
|
||||
"poll": "Poll",
|
||||
"pollDdisabled": "Polls: Disabled",
|
||||
"pollProvider": "Provider of Poll",
|
||||
"polluntil": "Hide 'votes' count until people vote it.",
|
||||
"choice": "Choice",
|
||||
"pollmulti": "Multiple select",
|
||||
"expires_in": "Expires in...(sec)",
|
||||
"choice": "Wybór",
|
||||
"pollmulti": "Wielokrotny wybór",
|
||||
"expires_in": "Wygasa za... (sek)",
|
||||
"contextBefore": "Context before this toot",
|
||||
"thisToot": "This toot",
|
||||
"thisToot": "Ten toot",
|
||||
"contextAfter": "Context after this toot",
|
||||
"beforeLTL": "Local TL before this toot",
|
||||
"beforeUTL": "User TL before this toot",
|
||||
|
@ -69,49 +69,49 @@
|
|||
"useOtherAcct2": ":unfav and unBT are disabled.",
|
||||
"btWithVis": "Boost with visibility",
|
||||
"reply": "Reply",
|
||||
"bt": "Boost",
|
||||
"favRegist": "Favourite",
|
||||
"openBrowser": "Open in browser",
|
||||
"screenshot": "Take a screenshot",
|
||||
"copyURL": "Copy the URL",
|
||||
"embed": "Embed",
|
||||
"toots": "Toots",
|
||||
"follow": "Follow",
|
||||
"follower": "Follower",
|
||||
"utlColumn": "Show as a column",
|
||||
"timeline": "Timeline",
|
||||
"bt": "Podbij",
|
||||
"favRegist": "Polub",
|
||||
"openBrowser": "Otwórz w przeglądarce",
|
||||
"screenshot": "Zrób zrzut ekranu",
|
||||
"copyURL": "Skopiuj adres URL",
|
||||
"embed": "Osadzony",
|
||||
"toots": "Tooty",
|
||||
"follow": "Obserwuj",
|
||||
"follower": "Obserwujący",
|
||||
"utlColumn": "Pokaż jako kolumnę",
|
||||
"timeline": "Oś czasu",
|
||||
"operateOtherAcct": "Cross-account",
|
||||
"list": "List",
|
||||
"makeNew": "Save",
|
||||
"list": "Lista",
|
||||
"makeNew": "Zapisz",
|
||||
"blocks": "Blocks",
|
||||
"mutes": "Mutes",
|
||||
"block": "Block",
|
||||
"mute": "Mute",
|
||||
"block": "Zablokuj",
|
||||
"mute": "Wycisz",
|
||||
"domainBlock": "Domain block",
|
||||
"editProf": "Edit profile",
|
||||
"change": "Save",
|
||||
"editProf": "Edytuj profil",
|
||||
"change": "Zapisz",
|
||||
"followReq": "Follow requests",
|
||||
"likeHimOrHer": "Resembling",
|
||||
"endorse": "Feature on profile",
|
||||
"openinbrowser": "Open in browser",
|
||||
"openinbrowser": "Otwórz w przeglądarce",
|
||||
"mainacct": "Set it an main account",
|
||||
"frc": "Suggest",
|
||||
"more": "More",
|
||||
"revoverJP": " to ",
|
||||
"warnUseOtherAcct": "(Unable to unfollow)",
|
||||
"more": "Więcej",
|
||||
"revoverJP": " do ",
|
||||
"warnUseOtherAcct": "(Nie można przestać obserwować)",
|
||||
"revoverJPde": "",
|
||||
"or": "or",
|
||||
"openProf": "Show profile",
|
||||
"or": "lub",
|
||||
"openProf": "Pokaż profil",
|
||||
"warnListRegist": "Follow to add this user to lists.",
|
||||
"blockDomain": "Add blocking domain",
|
||||
"name": "Display name",
|
||||
"note": "Note",
|
||||
"editProfImg": "Change avataor",
|
||||
"name": "Wyświetlana nazwa",
|
||||
"note": "Notka",
|
||||
"editProfImg": "Zmień awatar",
|
||||
"editHeader": "Change header image",
|
||||
"blocked": "You are blocked. Why?",
|
||||
"likeUserDes": "Get people resembling this user.",
|
||||
"get": "Get",
|
||||
"historyBack": "Back",
|
||||
"historyBack": "Wstecz",
|
||||
"empUser": "Emphasize this user",
|
||||
"supportme": "Support TheDesk!",
|
||||
"TheDeskDes": "TheDesk has no ad, you need no charge to unlock premium features. We need your friendly support!",
|
||||
|
@ -138,7 +138,7 @@
|
|||
"search": "Search",
|
||||
"sortSet": "Sort",
|
||||
"selectAcct": "Account(Scroll to show all)",
|
||||
"listLocale": "List",
|
||||
"listLocale": "Lista",
|
||||
"filterWord": "Filtering words",
|
||||
"degree": "Filter contexts",
|
||||
"conver": "Conversations",
|
||||
|
@ -151,22 +151,22 @@
|
|||
"avalableBefore": "Expire after",
|
||||
"warnAvBefore": "Unset or \"0\" means \"Never\"",
|
||||
"warnAvBefore2": "This value may contain some error",
|
||||
"unlimited": "Never",
|
||||
"days": "day(s)",
|
||||
"unlimited": "Nigdy",
|
||||
"days": "dzień (dni)",
|
||||
"hours": "hour(s)",
|
||||
"mins": "minute(s)",
|
||||
"secs": "second(s)",
|
||||
"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>",
|
||||
"addColumn": "Add a column",
|
||||
"addColumn": "Dodaj kolumnę",
|
||||
"sortColumns": "Sort",
|
||||
"acctMan": "Account Manager",
|
||||
"filter": "Filter",
|
||||
"setting": "Preferences",
|
||||
"acctMan": "Menadżer konta",
|
||||
"filter": "Filtr",
|
||||
"setting": "Ustawienia",
|
||||
"reverse": "Toot button layout reverse",
|
||||
"f5": "Reload TL",
|
||||
"nanoDes": "The smallest Mastodon,",
|
||||
"verTips": "Version",
|
||||
"verTips": "Wersja",
|
||||
"clockTips": "Clock",
|
||||
"ramTips": "RAM status",
|
||||
"changeTips": "Change Tips",
|
||||
|
@ -176,13 +176,13 @@
|
|||
"about": "About TheDesk",
|
||||
"hereAddColumns": "<- Add TL",
|
||||
"foundBug": "I found a bug",
|
||||
"show": "Show",
|
||||
"directory": "Directory",
|
||||
"active": "Recently active",
|
||||
"show": "Pokaż",
|
||||
"directory": "Katalog",
|
||||
"active": "Ostatnio aktywne",
|
||||
"newcomer": "New arrivals",
|
||||
"local_only": "Local only",
|
||||
"local_only": "Tylko lokalne",
|
||||
"menu": "Menu",
|
||||
"demoBottomBtns": "Welcome guide",
|
||||
"demoBottomBtns": "Przewodnik powitalny",
|
||||
"lookAtBottom": "Look at the bottom of this window. Here is some tips about it.",
|
||||
"acctManDesc": "Add more accounts and logout them.",
|
||||
"settingDesc": "Many and many preferences here. You will couldn't check it all!",
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"language": "en",
|
||||
"lang_toot": "Toot",
|
||||
"lang_there": "Yes",
|
||||
"lang_nothing": "None",
|
||||
"lang_yesno": "Yes",
|
||||
"lang_no": "No",
|
||||
"lang_progress": "Wait...",
|
||||
"lang_there": "Tak",
|
||||
"lang_nothing": "Brak",
|
||||
"lang_yesno": "Tak",
|
||||
"lang_no": "Nie",
|
||||
"lang_progress": "Czekaj...",
|
||||
"lang_edit": "Edit",
|
||||
"lang_del": "Delete",
|
||||
"lang_add": "Add",
|
||||
|
@ -13,7 +13,7 @@
|
|||
"lang_speech": "Google US English",
|
||||
"lang_lang": "Language",
|
||||
"lang_langlocale": "English",
|
||||
"lang_back": "Back",
|
||||
"lang_back": "Wstecz",
|
||||
"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_time_prefixAgo": null,
|
||||
|
@ -40,14 +40,14 @@
|
|||
"lang_login_noauth": "Show TL of unlogined accounts",
|
||||
"lang_manager_info": "About this instance",
|
||||
"lang_manager_refresh": "Refresh",
|
||||
"lang_manager_delete": "Logout",
|
||||
"lang_manager_delete": "Wyloguj się",
|
||||
"lang_manager_color": "Account Color",
|
||||
"lang_manager_confirm": "is about to logout. Continue?",
|
||||
"lang_manager_mainAcct": "Done:choose main account",
|
||||
"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_logout": "Logout",
|
||||
"lang_manager_logout": "Wyloguj się",
|
||||
"lang_manager_maxChars": "Max chars of toots",
|
||||
"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.",
|
||||
|
@ -75,11 +75,11 @@
|
|||
"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_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_block": "Block",
|
||||
"lang_status_block": "Zablokuj",
|
||||
"lang_status_unblock": "Unblock",
|
||||
"lang_status_mute": "Mute",
|
||||
"lang_status_mute": "Wycisz",
|
||||
"lang_status_unmute": "Unmute",
|
||||
"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.",
|
||||
|
@ -98,15 +98,15 @@
|
|||
"lang_cards_pip": "PiP mode",
|
||||
"lang_cards_trusted": "Trusted embed HTML by TheDesk(Twitter, nicovideo, YouTube, Spotify, twitcasing)",
|
||||
"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_embed": "Embed HTML is cliped.",
|
||||
"lang_details_url": "URL 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_list_nodata": "No data",
|
||||
"lang_list_show": "Show",
|
||||
"lang_list_nodata": "Brak danych",
|
||||
"lang_list_show": "Pokaż",
|
||||
"lang_list_users": "Users list",
|
||||
"lang_list_nouser": "No users in this list.",
|
||||
"lang_list_add": "Add to the list",
|
||||
|
@ -183,11 +183,11 @@
|
|||
"lang_parse_btedsimple": " boosted",
|
||||
"lang_parse_polled": "'s poll",
|
||||
"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_fulltext": "Full size text:",
|
||||
"lang_parse_autofold": "Auto folded",
|
||||
"lang_parse_more": "More",
|
||||
"lang_parse_more": "Więcej",
|
||||
"lang_parse_url": "URL Analyzer",
|
||||
"lang_parse_tagTL": "Timeline of {{tag}}",
|
||||
"lang_parse_tagtoot": "Toot with {{tag}}",
|
||||
|
@ -198,38 +198,38 @@
|
|||
"lang_parse_direct": "Direct",
|
||||
"lang_parse_clickcopy": "Click to copy text of this toot",
|
||||
"lang_parse_clickcopyurl": "Click to copy URL of this toot",
|
||||
"lang_parse_trans": "Translate to English",
|
||||
"lang_parse_replyto": "Reply to this toot",
|
||||
"lang_parse_bt": "Boost this toot",
|
||||
"lang_parse_fav": "Favourite this toot",
|
||||
"lang_parse_quote": "Quote this toot",
|
||||
"lang_parse_trans": "Przetłumacz na angielski",
|
||||
"lang_parse_replyto": "Odpowiedz na ten toot",
|
||||
"lang_parse_bt": "Podbij tego toota",
|
||||
"lang_parse_fav": "Polub ten toot",
|
||||
"lang_parse_quote": "Cytuj ten toot",
|
||||
"lang_parse_bookmark": "Bookmark this",
|
||||
"lang_parse_unbookmark": "Unbookmark this",
|
||||
"lang_parse_del": "Delete this",
|
||||
"lang_parse_pin": "Pin this",
|
||||
"lang_parse_unpin": "Unpin this",
|
||||
"lang_parse_link": "Open in a browser",
|
||||
"lang_parse_det": "Details via your main account.",
|
||||
"lang_parse_detail": "Details",
|
||||
"lang_parse_redraft": "Delete & re-draft",
|
||||
"lang_parse_followed": "Followed you",
|
||||
"lang_parse_moved": "Moved to...",
|
||||
"lang_parse_link": "Otwórz w przeglądarce",
|
||||
"lang_parse_det": "Szczegóły za pośrednictwem głównego konta.",
|
||||
"lang_parse_detail": "Szczegóły",
|
||||
"lang_parse_redraft": "Usuń i przeredaguj",
|
||||
"lang_parse_followed": "Obserwowano Cię",
|
||||
"lang_parse_moved": "Przeniesiono do...",
|
||||
"lang_parse_clientop": "Operation of this client",
|
||||
"lang_parse_clienttxt": " will be",
|
||||
"lang_parse_clientno": "done nothing",
|
||||
"lang_parse_clienttxt": " będzie",
|
||||
"lang_parse_clientno": "nic nie zrobiono",
|
||||
"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_voted": "(Voted)",
|
||||
"lang_parse_myvote": "(My own poll)",
|
||||
"lang_parse_vote": "Vote",
|
||||
"lang_parse_unvoted": "Show the result without voting",
|
||||
"lang_parse_endedvote": "Expired",
|
||||
"lang_parse_people": "people",
|
||||
"lang_parse_thread": "Show thread",
|
||||
"lang_parse_unknown": "Attached file",
|
||||
"lang_parse_nsfw": "sensitive media",
|
||||
"lang_parse_html": "Show embed HTML",
|
||||
"lang_parse_vote": "Zagłosuj",
|
||||
"lang_parse_unvoted": "Pokaż wynik bez głosowania",
|
||||
"lang_parse_endedvote": "Wygasłe",
|
||||
"lang_parse_people": "ludzie",
|
||||
"lang_parse_thread": "Pokaż wątek",
|
||||
"lang_parse_unknown": "Załączony plik",
|
||||
"lang_parse_nsfw": "wrażliwe media",
|
||||
"lang_parse_html": "Pokaż osadzony HTML",
|
||||
"lang_parse_notffilter": "Show this user's notifications",
|
||||
"lang_parse_hidden": "Unvisible quoted toot",
|
||||
"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_listnostr": "No streaming API on List TLs",
|
||||
"lang_misskeyparse_home": "Home",
|
||||
"lang_misskeyparse_followers": "Follower",
|
||||
"lang_misskeyparse_followers": "Obserwujący",
|
||||
"lang_misskeyparse_specified": "Specified User",
|
||||
"lang_misskeyparse_qt": "Misskey renote(quote) mode:Ctrl+Shift+Enter to clear",
|
||||
"lang_misskeyparse_renoted": " renoted your following post.",
|
||||
"lang_misskeyparse_quoted": " quoted your following post.",
|
||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||
"lang_setting_time": "Time format:{{set}}",
|
||||
"lang_setting_theme": "Theme:{{set}}",
|
||||
"lang_setting_compat": "Compatible",
|
||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
||||
"lang_setting_time": "Format czasu:{{set}}",
|
||||
"lang_setting_theme": "Motyw:{{set}}",
|
||||
"lang_setting_compat": "Kompatybilny",
|
||||
"lang_setting_nsfw": "Wrażliwe media:{{set}}",
|
||||
"lang_setting_cw": "CW:{{set}}",
|
||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||
"lang_setting_cws": "Always CW on:{{set}}",
|
||||
|
@ -283,9 +283,9 @@
|
|||
"lang_setting_ksref": "Keyboard shortcuts are refreshed.",
|
||||
"lang_setting_nomuting": "No client is muted.",
|
||||
"lang_setting_notftest": " Notification test ",
|
||||
"lang_setting_notftestprof": "Your icon is shown.",
|
||||
"lang_setting_exportwarn": "Only important data will be exported. You must keep this data secure.",
|
||||
"lang_setting_importwarn": "All data will be deleted.",
|
||||
"lang_setting_noupd": "No available update",
|
||||
"lang_setting_notftestprof": "Twoja ikona jest wyświetlana.",
|
||||
"lang_setting_exportwarn": "Wyeksportowane będą tylko ważne dane. Dane muszą być bezpieczne.",
|
||||
"lang_setting_importwarn": "Wszystkie dane zostaną usunięte.",
|
||||
"lang_setting_noupd": "Brak dostępnej aktualizacji",
|
||||
"lang_setting_thisisbeta": "This is beta version. You have to update manually."
|
||||
}
|
|
@ -1,52 +1,52 @@
|
|||
{
|
||||
"setting": "Preferences",
|
||||
"set": "Save",
|
||||
"yes": "Yes",
|
||||
"no": "No",
|
||||
"none": "None",
|
||||
"show": "Show",
|
||||
"hide": "Hide",
|
||||
"setting": "Ustawienia",
|
||||
"set": "Zapisz",
|
||||
"yes": "Tak",
|
||||
"no": "Nie",
|
||||
"none": "Brak",
|
||||
"show": "Pokaż",
|
||||
"hide": "Ukryj",
|
||||
"default": "Default",
|
||||
"change": "Change",
|
||||
"select": "Select",
|
||||
"env": "System Preferences",
|
||||
"setlang": "Languages",
|
||||
"backup": "Import and export of preferences",
|
||||
"change": "Zmień",
|
||||
"select": "Wybierz",
|
||||
"env": "Ustawienia systemowe",
|
||||
"setlang": "Języki",
|
||||
"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",
|
||||
"import": "Import",
|
||||
"export": "Export",
|
||||
"hardwareAcceleration": "Disable hardware acceleration",
|
||||
"export": "Eksport",
|
||||
"hardwareAcceleration": "Wyłącz przyspieszanie sprzętowe",
|
||||
"hardwareAccelerationWarn": "Auto restarted",
|
||||
"theme": "Themes",
|
||||
"popup": "Popup notification",
|
||||
"theme": "Motywy",
|
||||
"popup": "Wyskakujące powiadomienia",
|
||||
"popupwarn": "Hide to set \"0\"",
|
||||
"s": "sec",
|
||||
"nativenotf": "Native notification",
|
||||
"nnwarn": "This does not work on Windows Portable ver.",
|
||||
"nntest": "Notification test",
|
||||
"width": "Width of columns",
|
||||
"s": "sek",
|
||||
"nativenotf": "Powiadomienie natywne",
|
||||
"nnwarn": "To nie działa w wersji przenośnej Windows.",
|
||||
"nntest": "Test powiadomień",
|
||||
"width": "Szerokość kolumn",
|
||||
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||
"fixwidth": "Minimum width of TweetDeck browser",
|
||||
"fixwidthwarn": "",
|
||||
"margin": "Margin between timelines",
|
||||
"above": "above",
|
||||
"font": "Font",
|
||||
"above": "powyżej",
|
||||
"font": "Czcionka",
|
||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||
"fontsize": "Font size",
|
||||
"fontsize": "Rozmiar czcionki",
|
||||
"savefolder": "Folder to save",
|
||||
"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",
|
||||
"frame": "Window frame",
|
||||
"frame": "Ramka okna",
|
||||
"frameWarn": "If 'off', the window looks cool.",
|
||||
"downloadWin": "Versioning(o Windows downloader)",
|
||||
"absolute": "absolute value",
|
||||
"srcUrl": "Search engine",
|
||||
"absolute": "wartość bezwzględna",
|
||||
"srcUrl": "Wyszukiwarka",
|
||||
"srcUrlWarn": "{q} will be replaced to query.",
|
||||
"themeSel": "Select theme",
|
||||
"customtheme": "Edit and add themes",
|
||||
"customthemeDirection": "Color scheme",
|
||||
"advanced": "Advanced options",
|
||||
"themeSel": "Wybierz motyw",
|
||||
"customtheme": "Edytuj i dodaj motywy",
|
||||
"customthemeDirection": "Schemat kolorów",
|
||||
"advanced": "Opcje zaawansowane",
|
||||
"advancedWarn": "",
|
||||
"use": "Use this",
|
||||
"copyFrom": "Copy from",
|
||||
|
@ -94,31 +94,33 @@
|
|||
"tag": "Tag TL Search",
|
||||
"tagfed": "Use federated network",
|
||||
"taglocal": "Use local network",
|
||||
"via": "Show via",
|
||||
"via": "Pokaż przez",
|
||||
"mouseover": "Hide action buttons without mouseover",
|
||||
"mouseoverwarn": "You may feel 'mouseover' is unconfortable:(",
|
||||
"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.)",
|
||||
"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.",
|
||||
"lines": "lines",
|
||||
"letters": "letters",
|
||||
"or": "or",
|
||||
"imgheight": "Height of images",
|
||||
"lines": "linie",
|
||||
"letters": "litery",
|
||||
"or": "lub",
|
||||
"imgheight": "Wysokość obrazów",
|
||||
"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>",
|
||||
"animation": "Animation of timelines",
|
||||
"animation": "Animacja osi czasu",
|
||||
"markers": "Markers(mark as read) on HTL and notifications",
|
||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
"followSound": "Sound(Follow)",
|
||||
"customSound": "Custom sound",
|
||||
"customSound": "Niestandardowy dźwięk",
|
||||
"post": "Posting Preferences",
|
||||
"autocw": "Alert before posting a long toot.",
|
||||
"autocwwarn": "Show dialog whether you make too-long text hidden.",
|
||||
|
@ -134,7 +136,7 @@
|
|||
"postimg": "Posting images preferences",
|
||||
"showurl": "Insert media URL",
|
||||
"nourl": "Insert nothig",
|
||||
"disabled": "Disabled",
|
||||
"disabled": "Wyłączone",
|
||||
"quote": "Quote format",
|
||||
"simple": "Only URL",
|
||||
"mention": "URL and acct(mention to the user)",
|
||||
|
@ -144,25 +146,25 @@
|
|||
"showBookmarkAction": "Show a bookmarking toot button",
|
||||
"scrollBar": "Height of the scroll bar",
|
||||
"thin": "Thin",
|
||||
"normal": "Normal",
|
||||
"thick": "Thick",
|
||||
"normal": "Normalny",
|
||||
"thick": "Gruba",
|
||||
"main": "Default accounts of actions",
|
||||
"mainwarn": "Main account can be set on Account Manager.",
|
||||
"lastacct": "Account you used recently",
|
||||
"usemainacct": "Main account",
|
||||
"usemainacct": "Konto główne",
|
||||
"secondary": "Secondary Toot Button",
|
||||
"secwarn": "Toot with other visibility setting",
|
||||
"nothing": "Hidden",
|
||||
"localonly": "Local Only",
|
||||
"nothing": "Ukryty",
|
||||
"localonly": "Tylko lokalne",
|
||||
"zeroWidthEmoji": "Zero-width space when inserting emojis",
|
||||
"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.",
|
||||
"keysc": "Keyboard shortcut Preferences",
|
||||
"iks": "Easy inserter",
|
||||
"okswarn": "You can insert any letters and emojis with only 3 keys",
|
||||
"plugin": "Plugins",
|
||||
"plugin": "Wtyczki",
|
||||
"howToWritePlugin": "Japanese docs of AiScript TheDesk plugins",
|
||||
"pluginList": "Plugin list",
|
||||
"pluginList": "Lista wtyczek",
|
||||
"muteemp": "Mute & Emphasis Preferences",
|
||||
"climute": "Client Mute",
|
||||
"cliemp": "Client Emphasis",
|
||||
|
@ -174,14 +176,14 @@
|
|||
"useerempwarn": "Set on users data modals.",
|
||||
"empcolorwarn": "Use this color to emphasis",
|
||||
"spotify": "Spotify and NowPlaying Preferences",
|
||||
"spotifynote1": "Click ",
|
||||
"spotifynote1": "Kliknij ",
|
||||
"spotifynote2": "icon to NowPlaying",
|
||||
"link": "Account Connection",
|
||||
"linkwarn": "TheDesk save your data on thedesk.top server.",
|
||||
"connect": "Connect",
|
||||
"disconnect": "Disconnect",
|
||||
"connect": "Połącz",
|
||||
"disconnect": "Rozłącz",
|
||||
"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": "",
|
||||
"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}",
|
||||
|
@ -192,17 +194,17 @@
|
|||
"tts": "TTS(text to speech) Preferences",
|
||||
"bouyomi": "BouyomiChan connect",
|
||||
"bouyomiWarn": "Require: BouyomiChan WebSocket Plugin",
|
||||
"speed": "Speed",
|
||||
"speedwarn": "1-100(default:10)",
|
||||
"pitch": "Pitch",
|
||||
"pitchwarn": "0-100(default:50)",
|
||||
"speed": "Prędkość",
|
||||
"speedwarn": "1-100(domyślnie:10)",
|
||||
"pitch": "Wysokość",
|
||||
"pitchwarn": "0-100 (domyślnie: 50)",
|
||||
"vol": "Volume",
|
||||
"volwarn": "0-100(default:100)",
|
||||
"volwarn80": "0-100(default:80)",
|
||||
"test": "Test",
|
||||
"sample": "TheDesk is an open-source Mastodon client for PC.",
|
||||
"playstop": "Play/Stop",
|
||||
"back": "Back",
|
||||
"back": "Wstecz",
|
||||
"keyscs": "Keyboard shortcuts",
|
||||
"keyscr": "Jump to n(1-9)th column",
|
||||
"keynew": "Open toot box",
|
||||
|
@ -213,22 +215,22 @@
|
|||
"keyesc": "Hide toot box",
|
||||
"keyf5": "Super Reload",
|
||||
"keyclear": "Clear toot box",
|
||||
"keyacctman": "Account Manager",
|
||||
"keyacctman": "Menadżer konta",
|
||||
"keyshowprof": "Show profile of selecting",
|
||||
"keyrow": "Show next or previous image",
|
||||
"keyzoom": "Mousewheel:Zoom a image",
|
||||
"whenSelected": "When a toot is selected: ",
|
||||
"fav": "Favourite this toot",
|
||||
"bt": "Boost this toot",
|
||||
"reply": "Reply to this toot",
|
||||
"keyzoom": "Kółko myszy: Przybliż obraz",
|
||||
"whenSelected": "Po wybraniu toota: ",
|
||||
"fav": "Polub ten toot",
|
||||
"bt": "Podbij tego toota",
|
||||
"reply": "Odpowiedz na ten toot",
|
||||
"keyselecttop": "Select the top & left(No.1 column) toot",
|
||||
"reset": "Reset(Danger)",
|
||||
"resetconfirm": "Delete all data. You cannot undo. Continue?",
|
||||
"about": "About TheDesk",
|
||||
"hp": "Website",
|
||||
"support": "Support",
|
||||
"hp": "Strona internetowa",
|
||||
"support": "Wsparcie",
|
||||
"help": "Help",
|
||||
"sushi": "Give me a sushi!",
|
||||
"checkup": "Check update",
|
||||
"sushi": "Podaruj mi sushi!",
|
||||
"checkup": "Sprawdź aktualizacje",
|
||||
"ossJP": ""
|
||||
}
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
{
|
||||
"updatehere": "Get latest TheDesk",
|
||||
"download": "Start",
|
||||
"updatehere": "Pobierz najnowsze TheDesk",
|
||||
"download": "Rozpocznij",
|
||||
"portable": "Portable ver.",
|
||||
"installer": "Installer(Recommended)",
|
||||
"installer": "Instalator (zalecane)",
|
||||
"linux": "zip",
|
||||
"linuxdeb": "deb(Recommended on buntu, Debian)",
|
||||
"linuxdeb": "deb(Rekomendowane na buntu, Debian)",
|
||||
"linuxsnap": "snap",
|
||||
"snap": "Get it on Snapcraft",
|
||||
"snap": "Pobierz na Snapcraft",
|
||||
"sureupd": "You may lose a cool experience!",
|
||||
"skipupd": "Skip this update",
|
||||
"nexttl": "Hidden until next TL loading",
|
||||
"nextver": "Hidden until next version",
|
||||
"problem1": "Some problems?",
|
||||
"skipupd": "Pomiń tę aktualizację",
|
||||
"nexttl": "Ukryte do następnego ładowania TL",
|
||||
"nextver": "Ukryte do następnej wersji",
|
||||
"problem1": "Jakieś problemy?",
|
||||
"problem2": "Please download on <a href='https://thedesk.top'>Oficial HP</a>.",
|
||||
"continue": "Continue updating",
|
||||
"dlnow": "Downloading...",
|
||||
"checkWhatIsNew": "What is new?"
|
||||
"continue": "Kontynuuj aktualizację",
|
||||
"dlnow": "Pobieranie...",
|
||||
"checkWhatIsNew": "Co nowego?"
|
||||
}
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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": "Звук (Ответить)",
|
||||
"favSound": "Звук(Fav)",
|
||||
"btSound": "Звук(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,6 +114,8 @@
|
|||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||
"remote_img": "Get images from the remote 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)",
|
||||
"favSound": "Sound(Fav)",
|
||||
"btSound": "Sound(Boost)",
|
||||
|
|
|
@ -114,7 +114,7 @@ function main(ver, basefile, pwa, store) {
|
|||
refKey.push(key)
|
||||
let str = target[key]
|
||||
if (pages[i] == 'setting.vue.js') {
|
||||
str = str.replace(/'/g, '\\')
|
||||
str = str.replace(/'/g, "\\'")
|
||||
}
|
||||
var regExp = new RegExp('@@' + key + '@@', 'g')
|
||||
source = source.replace(regExp, str)
|
||||
|
@ -133,7 +133,7 @@ function main(ver, basefile, pwa, store) {
|
|||
}
|
||||
if (pages[i] == 'setting.vue.js') {
|
||||
if (str) {
|
||||
str = str.replace(/'/g, '\\')
|
||||
str = str.replace(/'/g, "\\'")
|
||||
}
|
||||
}
|
||||
var regExp = new RegExp('@@' + tarKey + '@@', 'g')
|
||||
|
|
|
@ -453,6 +453,17 @@ var tlConstruction = [
|
|||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'mcm',
|
||||
storage: 'moreContext',
|
||||
checkbox: true,
|
||||
setValue: 'no',
|
||||
text: {
|
||||
head: '@@moreContextMode@@',
|
||||
desc: '@@moreContextModeWarn@@',
|
||||
checkbox: yesno
|
||||
}
|
||||
},
|
||||
{
|
||||
id: 'replySound',
|
||||
storage: 'replySound',
|
||||
|
|
302
app/yarn.lock
302
app/yarn.lock
|
@ -7,10 +7,10 @@
|
|||
resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.0.3.tgz#bc5b5532ecafd923a61f2fb097e3b108c0106a3f"
|
||||
integrity sha512-GLyWIFBbGvpKPGo55JyRZAo4lVbnBiD52cKlw/0Vt+wnmKvWJkpZvsjVoaIolyBXDeAQKSicRtqFNPem9w0WYA==
|
||||
|
||||
"@babel/code-frame@^7.0.0":
|
||||
version "7.10.4"
|
||||
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
|
||||
integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
|
||||
"@babel/code-frame@7.12.11":
|
||||
version "7.12.11"
|
||||
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
|
||||
integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
|
||||
dependencies:
|
||||
"@babel/highlight" "^7.10.4"
|
||||
|
||||
|
@ -58,10 +58,10 @@
|
|||
global-agent "^2.0.2"
|
||||
global-tunnel-ng "^2.7.1"
|
||||
|
||||
"@eslint/eslintrc@^0.2.1":
|
||||
version "0.2.1"
|
||||
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.2.1.tgz#f72069c330461a06684d119384435e12a5d76e3c"
|
||||
integrity sha512-XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA==
|
||||
"@eslint/eslintrc@^0.4.0":
|
||||
version "0.4.0"
|
||||
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz#99cc0a0584d72f1df38b900fb062ba995f395547"
|
||||
integrity sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog==
|
||||
dependencies:
|
||||
ajv "^6.12.4"
|
||||
debug "^4.1.1"
|
||||
|
@ -70,7 +70,6 @@
|
|||
ignore "^4.0.6"
|
||||
import-fresh "^3.2.1"
|
||||
js-yaml "^3.13.1"
|
||||
lodash "^4.17.19"
|
||||
minimatch "^3.0.4"
|
||||
strip-json-comments "^3.1.1"
|
||||
|
||||
|
@ -492,10 +491,10 @@ abbrev@1:
|
|||
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
|
||||
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
|
||||
|
||||
acorn-jsx@^5.2.0:
|
||||
version "5.2.0"
|
||||
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe"
|
||||
integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==
|
||||
acorn-jsx@^5.3.1:
|
||||
version "5.3.1"
|
||||
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
|
||||
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:
|
||||
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"
|
||||
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"
|
||||
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.5.tgz#19b0e8bae8f476e5ba666300387775fb1a00a4da"
|
||||
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"
|
||||
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:
|
||||
version "3.0.0"
|
||||
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"
|
||||
integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
|
||||
|
||||
ansi-styles@^3.2.0, ansi-styles@^3.2.1:
|
||||
ansi-styles@^3.2.1:
|
||||
version "3.2.1"
|
||||
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
|
||||
integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
|
||||
|
@ -684,10 +693,10 @@ assert@^1.4.0:
|
|||
object-assign "^4.1.1"
|
||||
util "0.10.3"
|
||||
|
||||
astral-regex@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
|
||||
integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==
|
||||
astral-regex@^2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
|
||||
integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
|
||||
|
||||
async-exit-hook@^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"
|
||||
integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM=
|
||||
|
||||
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0:
|
||||
version "4.11.9"
|
||||
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828"
|
||||
integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==
|
||||
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:
|
||||
version "4.12.0"
|
||||
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
|
||||
integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
|
||||
|
||||
bn.js@^5.0.0, bn.js@^5.1.1:
|
||||
version "5.1.3"
|
||||
|
@ -831,7 +840,7 @@ braces@~3.0.2:
|
|||
dependencies:
|
||||
fill-range "^7.0.1"
|
||||
|
||||
brorand@^1.0.1:
|
||||
brorand@^1.0.1, brorand@^1.1.0:
|
||||
version "1.1.0"
|
||||
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
|
||||
integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
|
||||
|
@ -1670,10 +1679,10 @@ electron-builder@^22.9.1:
|
|||
update-notifier "^4.1.1"
|
||||
yargs "^16.0.3"
|
||||
|
||||
electron-dl@^3.0.2:
|
||||
version "3.0.2"
|
||||
resolved "https://registry.yarnpkg.com/electron-dl/-/electron-dl-3.0.2.tgz#302a46f9a449ddce720cb8e7f2a24c386e19a26c"
|
||||
integrity sha512-pRgE9Jbhoo5z6Vk3qi+vIrfpMDlCp2oB1UeR96SMnsfz073jj0AZGQwp69EdIcEvlUlwBSGyJK8Jt6OB6JLn+g==
|
||||
electron-dl@^3.2.1:
|
||||
version "3.2.1"
|
||||
resolved "https://registry.yarnpkg.com/electron-dl/-/electron-dl-3.2.1.tgz#244a1316c663691f70e8aa4515cd1a401b4b5690"
|
||||
integrity sha512-k5DFjocJlXbrjshO1zeWe/Gz7HkGwCgnehHPemiyzN2B/LfLlnbIX7sCj5F+huTwZ2l+nQehTI4IR37xvCn6FQ==
|
||||
dependencies:
|
||||
ext-name "^5.0.0"
|
||||
pupa "^2.0.1"
|
||||
|
@ -1711,27 +1720,27 @@ electron-rebuild@^2.3.5:
|
|||
tar "^6.0.5"
|
||||
yargs "^16.0.0"
|
||||
|
||||
electron@^10.1.5:
|
||||
version "10.1.5"
|
||||
resolved "https://registry.yarnpkg.com/electron/-/electron-10.1.5.tgz#f2b161310f627063e73fbac44efcb35dece83a90"
|
||||
integrity sha512-fys/KnEfJq05TtMij+lFvLuKkuVH030CHYx03iZrW5DNNLwjE6cW3pysJ420lB0FRSfPjTHBMu2eVCf5TG71zQ==
|
||||
electron@^10.2.0:
|
||||
version "10.2.0"
|
||||
resolved "https://registry.yarnpkg.com/electron/-/electron-10.2.0.tgz#4b00f0907b28aca4b93661bb53ce9a4f8ad32201"
|
||||
integrity sha512-GBUyq8dwUqXPkCTkoID+eZ5Pm9GFlLUd2eSoGe8UOaHeW68SgCf5t75/uGHraQ1OIz/0qniyH5M4ebWEHGppyQ==
|
||||
dependencies:
|
||||
"@electron/get" "^1.0.1"
|
||||
"@types/node" "^12.0.12"
|
||||
extract-zip "^1.0.3"
|
||||
|
||||
elliptic@^6.5.3:
|
||||
version "6.5.3"
|
||||
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6"
|
||||
integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==
|
||||
version "6.5.4"
|
||||
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
|
||||
integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
|
||||
dependencies:
|
||||
bn.js "^4.4.0"
|
||||
brorand "^1.0.1"
|
||||
bn.js "^4.11.9"
|
||||
brorand "^1.1.0"
|
||||
hash.js "^1.0.0"
|
||||
hmac-drbg "^1.0.0"
|
||||
inherits "^2.0.1"
|
||||
minimalistic-assert "^1.0.0"
|
||||
minimalistic-crypto-utils "^1.0.0"
|
||||
hmac-drbg "^1.0.1"
|
||||
inherits "^2.0.4"
|
||||
minimalistic-assert "^1.0.1"
|
||||
minimalistic-crypto-utils "^1.0.1"
|
||||
|
||||
emoji-regex@^7.0.1:
|
||||
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"
|
||||
integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
|
||||
|
||||
eslint@^7.13.0:
|
||||
version "7.13.0"
|
||||
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.13.0.tgz#7f180126c0dcdef327bfb54b211d7802decc08da"
|
||||
integrity sha512-uCORMuOO8tUzJmsdRtrvcGq5qposf7Rw0LwkTJkoDbOycVQtQjmnhZSuLQnozLE4TmAzlMVV45eCHmQ1OpDKUQ==
|
||||
eslint@^7.23.0:
|
||||
version "7.23.0"
|
||||
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.23.0.tgz#8d029d252f6e8cf45894b4bee08f5493f8e94325"
|
||||
integrity sha512-kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q==
|
||||
dependencies:
|
||||
"@babel/code-frame" "^7.0.0"
|
||||
"@eslint/eslintrc" "^0.2.1"
|
||||
"@babel/code-frame" "7.12.11"
|
||||
"@eslint/eslintrc" "^0.4.0"
|
||||
ajv "^6.10.0"
|
||||
chalk "^4.0.0"
|
||||
cross-spawn "^7.0.2"
|
||||
|
@ -1885,13 +1894,13 @@ eslint@^7.13.0:
|
|||
eslint-scope "^5.1.1"
|
||||
eslint-utils "^2.1.0"
|
||||
eslint-visitor-keys "^2.0.0"
|
||||
espree "^7.3.0"
|
||||
esquery "^1.2.0"
|
||||
espree "^7.3.1"
|
||||
esquery "^1.4.0"
|
||||
esutils "^2.0.2"
|
||||
file-entry-cache "^5.0.1"
|
||||
file-entry-cache "^6.0.1"
|
||||
functional-red-black-tree "^1.0.1"
|
||||
glob-parent "^5.0.0"
|
||||
globals "^12.1.0"
|
||||
globals "^13.6.0"
|
||||
ignore "^4.0.6"
|
||||
import-fresh "^3.0.0"
|
||||
imurmurhash "^0.1.4"
|
||||
|
@ -1899,7 +1908,7 @@ eslint@^7.13.0:
|
|||
js-yaml "^3.13.1"
|
||||
json-stable-stringify-without-jsonify "^1.0.1"
|
||||
levn "^0.4.1"
|
||||
lodash "^4.17.19"
|
||||
lodash "^4.17.21"
|
||||
minimatch "^3.0.4"
|
||||
natural-compare "^1.4.0"
|
||||
optionator "^0.9.1"
|
||||
|
@ -1908,17 +1917,17 @@ eslint@^7.13.0:
|
|||
semver "^7.2.1"
|
||||
strip-ansi "^6.0.0"
|
||||
strip-json-comments "^3.1.0"
|
||||
table "^5.2.3"
|
||||
table "^6.0.4"
|
||||
text-table "^0.2.0"
|
||||
v8-compile-cache "^2.0.3"
|
||||
|
||||
espree@^7.3.0:
|
||||
version "7.3.0"
|
||||
resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348"
|
||||
integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==
|
||||
espree@^7.3.0, espree@^7.3.1:
|
||||
version "7.3.1"
|
||||
resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
|
||||
integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==
|
||||
dependencies:
|
||||
acorn "^7.4.0"
|
||||
acorn-jsx "^5.2.0"
|
||||
acorn-jsx "^5.3.1"
|
||||
eslint-visitor-keys "^1.3.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"
|
||||
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
|
||||
|
||||
esquery@^1.2.0:
|
||||
version "1.3.1"
|
||||
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
|
||||
integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
|
||||
esquery@^1.4.0:
|
||||
version "1.4.0"
|
||||
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
|
||||
integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
|
||||
dependencies:
|
||||
estraverse "^5.1.0"
|
||||
|
||||
|
@ -2045,12 +2054,12 @@ fd-slicer@~1.0.1:
|
|||
dependencies:
|
||||
pend "~1.2.0"
|
||||
|
||||
file-entry-cache@^5.0.1:
|
||||
version "5.0.1"
|
||||
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c"
|
||||
integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==
|
||||
file-entry-cache@^6.0.1:
|
||||
version "6.0.1"
|
||||
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
|
||||
integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
|
||||
dependencies:
|
||||
flat-cache "^2.0.1"
|
||||
flat-cache "^3.0.4"
|
||||
|
||||
file-type@^9.0.0:
|
||||
version "9.0.0"
|
||||
|
@ -2071,19 +2080,18 @@ fill-range@^7.0.1:
|
|||
dependencies:
|
||||
to-regex-range "^5.0.1"
|
||||
|
||||
flat-cache@^2.0.1:
|
||||
version "2.0.1"
|
||||
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0"
|
||||
integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==
|
||||
flat-cache@^3.0.4:
|
||||
version "3.0.4"
|
||||
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
|
||||
integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
|
||||
dependencies:
|
||||
flatted "^2.0.0"
|
||||
rimraf "2.6.3"
|
||||
write "1.0.3"
|
||||
flatted "^3.1.0"
|
||||
rimraf "^3.0.2"
|
||||
|
||||
flatted@^2.0.0:
|
||||
version "2.0.2"
|
||||
resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138"
|
||||
integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==
|
||||
flatted@^3.1.0:
|
||||
version "3.1.1"
|
||||
resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469"
|
||||
integrity sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==
|
||||
|
||||
for-each@^0.3.3:
|
||||
version "0.3.3"
|
||||
|
@ -2290,6 +2298,13 @@ globals@^12.1.0:
|
|||
dependencies:
|
||||
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:
|
||||
version "1.0.0"
|
||||
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"
|
||||
minimalistic-assert "^1.0.1"
|
||||
|
||||
hmac-drbg@^1.0.0:
|
||||
hmac-drbg@^1.0.1:
|
||||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
|
||||
integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
|
||||
|
@ -2590,6 +2605,13 @@ is-binary-path@~2.1.0:
|
|||
dependencies:
|
||||
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:
|
||||
version "1.1.6"
|
||||
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"
|
||||
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:
|
||||
version "7.0.0"
|
||||
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
|
||||
|
@ -2720,6 +2747,11 @@ is-regex@^1.1.1:
|
|||
dependencies:
|
||||
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:
|
||||
version "1.0.2"
|
||||
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"
|
||||
integrity sha1-XAgV08xvkP9fqvWyaKbiO0ypBPo=
|
||||
|
||||
jquery@^3.5.1:
|
||||
version "3.5.1"
|
||||
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.5.1.tgz#d7b4d08e1bfdb86ad2f1a3d039ea17304717abb5"
|
||||
integrity sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg==
|
||||
jquery@^3.6.0:
|
||||
version "3.6.0"
|
||||
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz#c72a09f15c1bdce142f49dbf1170bdf8adac2470"
|
||||
integrity sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==
|
||||
|
||||
js-tokens@^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"
|
||||
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:
|
||||
version "0.2.3"
|
||||
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"
|
||||
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:
|
||||
version "3.0.4"
|
||||
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-3.0.4.tgz#2dcbd2c287cbc0a55cc42328bd0c736150d53e3f"
|
||||
integrity sha1-LcvSwofLwKVcxCMovQxzYVDVPj8=
|
||||
|
||||
lodash@^4.17.10, lodash@^4.17.14, lodash@^4.17.19, lodash@^4.17.20:
|
||||
version "4.17.20"
|
||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
|
||||
integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
|
||||
lodash.truncate@^4.4.2:
|
||||
version "4.4.2"
|
||||
resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
|
||||
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:
|
||||
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"
|
||||
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"
|
||||
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
|
||||
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"
|
||||
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:
|
||||
version "1.0.0"
|
||||
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"
|
||||
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:
|
||||
version "2.7.1"
|
||||
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:
|
||||
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:
|
||||
version "2.0.2"
|
||||
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"
|
||||
integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==
|
||||
|
||||
slice-ansi@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636"
|
||||
integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==
|
||||
slice-ansi@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
|
||||
integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==
|
||||
dependencies:
|
||||
ansi-styles "^3.2.0"
|
||||
astral-regex "^1.0.0"
|
||||
is-fullwidth-code-point "^2.0.0"
|
||||
ansi-styles "^4.0.0"
|
||||
astral-regex "^2.0.0"
|
||||
is-fullwidth-code-point "^3.0.0"
|
||||
|
||||
sort-keys-length@^1.0.0:
|
||||
version "1.0.1"
|
||||
|
@ -4390,10 +4447,10 @@ supports-color@^7.1.0:
|
|||
dependencies:
|
||||
has-flag "^4.0.0"
|
||||
|
||||
sweetalert2@^10.14.0:
|
||||
version "10.14.0"
|
||||
resolved "https://registry.yarnpkg.com/sweetalert2/-/sweetalert2-10.14.0.tgz#73a7487b12b56dec4c1e47d7d4926e8fe880e727"
|
||||
integrity sha512-EBUh4k9qyRRsttm9X9j7WUhLExetvTJpcbp1VTMJCpuI2UwHLesXMIw9M+UeuqBywv0UjNMR5PKH7Qnv65m8rw==
|
||||
sweetalert2@^10.15.7:
|
||||
version "10.15.7"
|
||||
resolved "https://registry.yarnpkg.com/sweetalert2/-/sweetalert2-10.15.7.tgz#ad4c8f08432952d3283adbaa9a309c534f5a863d"
|
||||
integrity sha512-imY0MR03NGefPcGzSYjWYz1GMIlniusEBXilswvKrHD/GMiTxA5jnsdjtK2IoRyXfEaqV7GWt6DM4YVjAZU8gw==
|
||||
|
||||
syntax-error@^1.1.1:
|
||||
version "1.4.0"
|
||||
|
@ -4410,15 +4467,20 @@ system-font-families@^0.4.1:
|
|||
babel-polyfill "^6.23.0"
|
||||
ttfinfo "https://github.com/rBurgett/ttfinfo.git"
|
||||
|
||||
table@^5.2.3:
|
||||
version "5.4.6"
|
||||
resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e"
|
||||
integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==
|
||||
table@^6.0.4:
|
||||
version "6.0.8"
|
||||
resolved "https://registry.yarnpkg.com/table/-/table-6.0.8.tgz#b63f35af8d90601de282a3292226007a9429644f"
|
||||
integrity sha512-OBAdezyozae8IvjHGXBDHByVkLCcsmffXUSj8LXkNb0SluRd4ug3GFCjk6JynZONIPhOkyr0Nnvbq1rlIspXyQ==
|
||||
dependencies:
|
||||
ajv "^6.10.2"
|
||||
lodash "^4.17.14"
|
||||
slice-ansi "^2.1.0"
|
||||
string-width "^3.0.0"
|
||||
ajv "^8.0.1"
|
||||
is-boolean-object "^1.1.0"
|
||||
is-number-object "^1.0.4"
|
||||
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:
|
||||
version "4.4.13"
|
||||
|
@ -4553,6 +4615,11 @@ type-check@^0.4.0, type-check@~0.4.0:
|
|||
dependencies:
|
||||
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:
|
||||
version "0.8.1"
|
||||
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"
|
||||
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:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13"
|
||||
|
|
Loading…
Reference in New Issue
Block a user