Compare commits
80 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
8873af4597 | ||
|
859acad27c | ||
|
44943e0e14 | ||
|
640847416a | ||
|
35122db142 | ||
|
994ec964d6 | ||
|
5508862ba1 | ||
|
075a120856 | ||
|
f34e2e6bbf | ||
|
64296c69d3 | ||
|
f4d250eeb3 | ||
|
750c74ae69 | ||
|
525dd5ec52 | ||
|
89bb8d6496 | ||
|
a7399db3f1 | ||
|
790ab2065c | ||
|
fa20278727 | ||
|
f2a4900f18 | ||
|
fd3afb6354 | ||
|
4a4dc82c40 | ||
|
54db978b6f | ||
|
1a35eda46f | ||
|
7d9ab19eef | ||
|
bdfeae20f2 | ||
|
9931ecd577 | ||
|
99c2f0fc8d | ||
|
58d9228aec | ||
|
85738d72ae | ||
|
2fe60a3b69 | ||
|
06c944a35d | ||
|
0f75972616 | ||
|
f55b08cbf3 | ||
|
51814e49d7 | ||
|
36d8a00a49 | ||
|
1c8ca3b5f9 | ||
|
1cbd6992e3 | ||
|
1f3a27325b | ||
|
890ec772f9 | ||
|
b072012976 | ||
|
8982058a25 | ||
|
fb95e077e9 | ||
|
dc08f46909 | ||
|
3e6a47d5f7 | ||
|
aabcfb230f | ||
|
ee99a660c2 | ||
|
5063061a70 | ||
|
c3ce7bd516 | ||
|
95efd96c3e | ||
|
abf5274c06 | ||
|
db5d3182bc | ||
|
0527c978ce | ||
|
b36de5dc26 | ||
|
92b47e56f7 | ||
|
fc967f92f3 | ||
|
1882bbf0b6 | ||
|
a3fed1f6f0 | ||
|
eae0fd1768 | ||
|
a7a99fc3a2 | ||
|
fedd80477b | ||
|
844d145e09 | ||
|
a817c14925 | ||
|
70e145eceb | ||
|
438f11c11d | ||
|
edf75d1915 | ||
|
9de26d9998 | ||
|
ab5a786197 | ||
|
272b613e18 | ||
|
35c10e0c7d | ||
|
7795adf173 | ||
|
dca2e5fdab | ||
|
eb6dcdfa5d | ||
|
9f4f788519 | ||
|
1d7588e4e4 | ||
|
81c476c1bb | ||
|
ccc44ca769 | ||
|
82c5a853cb | ||
|
e11af25ba6 | ||
|
db4d457325 | ||
|
d87245899e | ||
|
ac6260ab24 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -20,6 +20,7 @@ app/view/bg
|
|||||||
app/view/cs
|
app/view/cs
|
||||||
app/view/ps
|
app/view/ps
|
||||||
app/view/es-AR
|
app/view/es-AR
|
||||||
|
app/view/it-IT
|
||||||
app/git
|
app/git
|
||||||
*.code-workspace
|
*.code-workspace
|
||||||
releasenote.md
|
releasenote.md
|
||||||
|
@@ -6,7 +6,7 @@ language: node_js
|
|||||||
env:
|
env:
|
||||||
- YARN_GPG=no
|
- YARN_GPG=no
|
||||||
node_js:
|
node_js:
|
||||||
- '10.15.2'
|
- '12.17.0'
|
||||||
cache:
|
cache:
|
||||||
yarn: true
|
yarn: true
|
||||||
script: node -v
|
script: node -v
|
||||||
|
@@ -150,7 +150,7 @@ macOS
|
|||||||
|
|
||||||
### PWA support
|
### PWA support
|
||||||
|
|
||||||
TheDesk is a wed-based app, so you can run it on a browser. Of course, the main stream is as Electron. Some features won't work as well as Electron.
|
TheDesk is a web-based app, so you can run it on a browser. Of course, the main stream is as Electron. Some features won't work as well as Electron.
|
||||||
|
|
||||||
You can run `npm run build:pwa` to build as PWA, including `manifest.json` and the ServiceWorker.
|
You can run `npm run build:pwa` to build as PWA, including `manifest.json` and the ServiceWorker.
|
||||||
|
|
||||||
|
@@ -21,7 +21,8 @@ html {
|
|||||||
.action-menu-item:hover {
|
.action-menu-item:hover {
|
||||||
filter: brightness(80%) !important;
|
filter: brightness(80%) !important;
|
||||||
}
|
}
|
||||||
.btn, .btn-flat {
|
.btn,
|
||||||
|
.btn-flat {
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
margin: 0.4rem;
|
margin: 0.4rem;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
@@ -340,16 +341,16 @@ blockquote:before,
|
|||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
input[type="color"] {
|
input[type='color'] {
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
border: none;
|
border: none;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
}
|
}
|
||||||
input[type="color"]::-webkit-color-swatch-wrapper {
|
input[type='color']::-webkit-color-swatch-wrapper {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
input[type="color"]::-webkit-color-swatch {
|
input[type='color']::-webkit-color-swatch {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
#menu {
|
#menu {
|
||||||
@@ -625,4 +626,30 @@ textarea {
|
|||||||
}
|
}
|
||||||
.dropdown-content.header:hover {
|
.dropdown-content.header:hover {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
}
|
}
|
||||||
|
button {
|
||||||
|
font-family: inherit !important;
|
||||||
|
}
|
||||||
|
.via-dropdown {
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
#re-online {
|
||||||
|
background-color: rgb(38, 92, 153);
|
||||||
|
position: fixed;
|
||||||
|
width: 100vw;
|
||||||
|
height: 2rem;
|
||||||
|
padding: 0.25rem;
|
||||||
|
color: white;
|
||||||
|
z-index: 1000;
|
||||||
|
}
|
||||||
|
#offline {
|
||||||
|
background-color: rgb(153, 38, 38);
|
||||||
|
position: fixed;
|
||||||
|
width: 100vw;
|
||||||
|
height: 2rem;
|
||||||
|
padding: 0.25rem;
|
||||||
|
color: white;
|
||||||
|
z-index: 999;
|
||||||
|
}
|
||||||
|
@@ -64,9 +64,10 @@ textarea {
|
|||||||
}
|
}
|
||||||
#emoji {
|
#emoji {
|
||||||
}
|
}
|
||||||
#suggest {
|
#suggest, #draft {
|
||||||
max-height: 23rem;
|
max-height: 23rem;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
#emoji-list {
|
#emoji-list {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@@ -93,7 +93,7 @@
|
|||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 3rem 2.3rem 2.5fr 1fr 4.6rem;
|
grid-template-columns: 3rem 2.3rem 2.5fr 1fr 4.6rem;
|
||||||
grid-template-rows: 1.7rem 1.5rem;
|
grid-template-rows: 1.7rem 1.5rem;
|
||||||
grid-template-areas: 'cover name name artist refresh' 'cover progress progress progress time';
|
grid-template-areas: 'cover name name name refresh' 'cover progress progress progress time';
|
||||||
}
|
}
|
||||||
#spot-refresh {
|
#spot-refresh {
|
||||||
grid-area: refresh;
|
grid-area: refresh;
|
||||||
@@ -108,18 +108,12 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
line-height: 1.92rem;
|
line-height: 1.92rem;
|
||||||
}
|
}
|
||||||
#spot-artist {
|
|
||||||
grid-area: artist;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
overflow: hidden;
|
|
||||||
line-height: 1.92rem;
|
|
||||||
}
|
|
||||||
#spot-img {
|
#spot-img {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
}
|
}
|
||||||
#spot-time {
|
#spot-time {
|
||||||
grid-area: time;
|
grid-area: time;
|
||||||
|
line-height: 0.5rem;
|
||||||
}
|
}
|
||||||
.progress {
|
.progress {
|
||||||
grid-area: progress;
|
grid-area: progress;
|
||||||
|
@@ -1,151 +1,162 @@
|
|||||||
/*アイコンをクリックした時とかにでてくるユーザーデータ*/
|
/*アイコンをクリックした時とかにでてくるユーザーデータ*/
|
||||||
#his-data {
|
#his-data {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-image: url("../img/loading.svg");
|
background-image: url('../img/loading.svg');
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
#his-data .btn .material-icons{
|
#his-data .btn .material-icons {
|
||||||
float:left;
|
float: left;
|
||||||
}
|
}
|
||||||
#his-data-content {
|
#his-data-content {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
#his-name {
|
#his-name {
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
#his-prof {
|
#his-prof {
|
||||||
float: left;
|
width: 7.7rem;
|
||||||
width: 7.7rem;
|
margin-right: 0.4rem;
|
||||||
margin-right: 0.4rem;
|
|
||||||
}
|
}
|
||||||
.his-float {
|
.his-float {
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
padding: 0.4rem;
|
padding: 0.4rem;
|
||||||
}
|
}
|
||||||
#his-float-data {
|
#his-float-data {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
|
|
||||||
}
|
}
|
||||||
#his-leftside {
|
#his-leftside {
|
||||||
width: 38.4rem;
|
width: 28.4rem;
|
||||||
|
max-width: 30vw;
|
||||||
}
|
}
|
||||||
#his-float-timeline {
|
#his-float-timeline {
|
||||||
max-width: 59.6rem;
|
max-width: 47.5rem;
|
||||||
height: 100%;
|
min-width: calc(100% - 29.4rem);
|
||||||
overflow-y: hidden;
|
height: 100%;
|
||||||
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
#his-basic-prof {
|
#his-basic-prof {
|
||||||
min-height: 10rem;
|
display: flex;
|
||||||
|
min-height: 10rem;
|
||||||
}
|
}
|
||||||
#his-field {
|
#his-field {
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
#his-field tr {
|
#his-field tr {
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
}
|
}
|
||||||
.his-field-title {
|
.his-field-title {
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
background-color: #757575;
|
background-color: #757575;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 0.4rem;
|
padding: 0.4rem;
|
||||||
margin-bottom: 1px;
|
margin-bottom: 1px;
|
||||||
width: 30%;
|
width: 30%;
|
||||||
}
|
}
|
||||||
.his-field-content {
|
.his-field-content {
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
padding-left: 0.4rem;
|
padding-left: 0.4rem;
|
||||||
}
|
}
|
||||||
.his-var-content a span.ellipsis:after {
|
.his-var-content a span.ellipsis:after {
|
||||||
content: "...";
|
content: '...';
|
||||||
}
|
}
|
||||||
.his-var-content a:not(.mention) span:last-of-type {
|
.his-var-content a:not(.mention) span:last-of-type {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
#his-data a .rep_ct,
|
#his-data a .rep_ct,
|
||||||
#his-data a .rt_ct,
|
#his-data a .rt_ct,
|
||||||
#his-data a .fav_ct {
|
#his-data a .fav_ct {
|
||||||
display: inline !important;
|
display: inline !important;
|
||||||
}
|
}
|
||||||
#his-data-show {
|
#his-data-show {
|
||||||
margin: 1.5rem;
|
margin: 1.5rem;
|
||||||
margin-left: 3.8rem;
|
margin-left: 3.8rem;
|
||||||
margin-right: 3.8rem;
|
margin-right: 3.8rem;
|
||||||
background-color: var(--his-data);
|
background-color: var(--his-data);
|
||||||
height: calc(100% - 1.5rem);
|
height: calc(100% - 1.5rem);
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
padding: 0.4rem;
|
padding: 0.4rem;
|
||||||
}
|
}
|
||||||
#his-data-wrap {
|
#his-data-wrap {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
.his-var-content {
|
.his-var-content {
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
height: calc(100% - 3.4rem);
|
height: calc(100% - 3.4rem);
|
||||||
padding-bottom: 60px;
|
padding-bottom: 60px;
|
||||||
}
|
}
|
||||||
#my-data-nav .btn {
|
#my-data-nav .btn {
|
||||||
width: 10.7rem;
|
width: 10.6rem;
|
||||||
}
|
}
|
||||||
.active-back {
|
#my-data-nav .active-back {
|
||||||
background-color: var(--active);
|
display: none;
|
||||||
}
|
}
|
||||||
#his-name .emojione,
|
#his-name .emojione,
|
||||||
#his-name .emoji-img {
|
#his-name .emoji-img {
|
||||||
width: 1.538rem;
|
width: 1.538rem;
|
||||||
}
|
}
|
||||||
#his-plus-action .btn {
|
#his-plus-action .btn {
|
||||||
padding-right: 0.4rem;
|
padding-right: 0.4rem;
|
||||||
padding-left: 0.4rem;
|
padding-left: 0.4rem;
|
||||||
}
|
}
|
||||||
.tabs {
|
.tabs {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
.tabs .tab a {
|
.tabs .tab a {
|
||||||
padding: 0.6rem 0.9rem;
|
padding: 0.6rem 0.9rem;
|
||||||
}
|
}
|
||||||
#his-des {
|
#his-des {
|
||||||
max-height: 17.7rem;
|
max-height: 17.7rem;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
}
|
}
|
||||||
#his-sign-action {
|
#his-sign-action {
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
border-radius: 0.4rem;
|
border-radius: 0.4rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-left: 0.75rem;
|
padding-left: 0.75rem;
|
||||||
padding-right: 0.75rem;
|
padding-right: 0.75rem;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
#his-sign-action .btn {
|
#his-sign-action .btn {
|
||||||
flex-basis: 31.2%;
|
flex-basis: calc(50% - 10.6px);
|
||||||
|
}
|
||||||
|
#his-sign-action .dropdown-trigger {
|
||||||
|
flex-basis: 100%;
|
||||||
}
|
}
|
||||||
#his-des .mention {
|
#his-des .mention {
|
||||||
color: #039be5;
|
color: #039be5;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
#his-table{
|
#his-table {
|
||||||
max-height: 11.538rem;
|
max-height: 11.538rem;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
}
|
}
|
||||||
#his-float-blocked {
|
#his-float-blocked {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
#hisdropdown{
|
#hisdropdown {
|
||||||
background-color: var(--bg);
|
background-color: var(--bg);
|
||||||
}
|
}
|
||||||
#hisdropdown li a {
|
#hisdropdown li a {
|
||||||
color: white;
|
color: white;
|
||||||
|
}
|
||||||
|
#hisdropdown li:hover {
|
||||||
|
background-color: var(--active);
|
||||||
|
}
|
||||||
|
#his-data-title {
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 1.5rem;
|
||||||
}
|
}
|
||||||
#hisdropdown li:hover{
|
|
||||||
background-color: var(--active);
|
|
||||||
}
|
|
@@ -227,7 +227,8 @@ $(function($) {
|
|||||||
var acct_id = $('#timeline_' + selectedColumn).attr('data-acct')
|
var acct_id = $('#timeline_' + selectedColumn).attr('data-acct')
|
||||||
var ats_cm = $('.selectedToot .rep-btn').attr('data-men')
|
var ats_cm = $('.selectedToot .rep-btn').attr('data-men')
|
||||||
var mode = $('.selectedToot .rep-btn').attr('data-visen')
|
var mode = $('.selectedToot .rep-btn').attr('data-visen')
|
||||||
re(id, ats_cm, acct_id, mode)
|
var cwTxt = $('#cw-text').val()
|
||||||
|
re(id, ats_cm, acct_id, mode, cwTxt)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -170,7 +170,7 @@ onmessage = function(e) {
|
|||||||
} else if (e.data[0] == 'npCore') {
|
} else if (e.data[0] == 'npCore') {
|
||||||
npCore(e.data[1])
|
npCore(e.data[1])
|
||||||
} else if (e.data[0] == 'renderMem') {
|
} else if (e.data[0] == 'renderMem') {
|
||||||
renderMem(e.data[1][0], e.data[1][1], e.data[1][2])
|
renderMem(e.data[1][0], e.data[1][1], e.data[1][2], e.data[1][3], e.data[1][4])
|
||||||
} else if (e.data[0] == 'updateProg') {
|
} else if (e.data[0] == 'updateProg') {
|
||||||
updateProg(e.data[1])
|
updateProg(e.data[1])
|
||||||
} else if (e.data[0] == 'updateMess') {
|
} else if (e.data[0] == 'updateMess') {
|
||||||
@@ -215,4 +215,16 @@ if(pwa) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
const connection = function (event) {
|
||||||
|
console.log(navigator.onLine, 'network state')
|
||||||
|
if(!navigator.onLine) {
|
||||||
|
$('#re-online').addClass('hide')
|
||||||
|
$('#offline').removeClass('hide')
|
||||||
|
} else if(!$('#offline').hasClass('hide')) {
|
||||||
|
$('#offline').addClass('hide')
|
||||||
|
$('#re-online').removeClass('hide')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
window.onoffline = connection
|
||||||
|
window.ononline = connection
|
||||||
|
@@ -2,25 +2,9 @@ var electron = require('electron')
|
|||||||
const shell = electron.shell
|
const shell = electron.shell
|
||||||
var ipc = electron.ipcRenderer
|
var ipc = electron.ipcRenderer
|
||||||
//title bar
|
//title bar
|
||||||
const customTitlebar = require('custom-electron-titlebar')
|
|
||||||
window.addEventListener('DOMContentLoaded', () => {
|
window.addEventListener('DOMContentLoaded', () => {
|
||||||
document.title = 'TheDesk'
|
document.title = 'TheDesk'
|
||||||
ipc.send('acsCheck', '')
|
ipc.send('acsCheck', '')
|
||||||
ipc.send('frameCheck', '')
|
|
||||||
ipc.on('frame', function(event, args) {
|
|
||||||
const file = location.href.substr(-10)
|
|
||||||
if (
|
|
||||||
file == 'index.html' ||
|
|
||||||
file == '/acct.html' ||
|
|
||||||
file == 'tting.html'
|
|
||||||
) {
|
|
||||||
new customTitlebar.Titlebar({
|
|
||||||
backgroundColor: customTitlebar.Color.fromHex('#000'),
|
|
||||||
titleHorizontalAlignment: 'right',
|
|
||||||
icon: '../../img/desk.png'
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|
||||||
onmessage = function(e) {
|
onmessage = function(e) {
|
||||||
@@ -220,7 +204,7 @@ ipc.on('memory', function(event, arg) {
|
|||||||
var use = arg[0]
|
var use = arg[0]
|
||||||
var cpu = arg[1]
|
var cpu = arg[1]
|
||||||
var total = arg[2]
|
var total = arg[2]
|
||||||
postMessage(['renderMem', [use, cpu, total]], '*')
|
postMessage(['renderMem', [use, cpu, total, arg[3], arg[4]]], '*')
|
||||||
})
|
})
|
||||||
//log
|
//log
|
||||||
ipc.on('logData', function(event, args) {
|
ipc.on('logData', function(event, args) {
|
||||||
|
@@ -23,6 +23,7 @@ function emojiToggle(reaction) {
|
|||||||
}
|
}
|
||||||
$('#post-box').css('width', width + 'px')
|
$('#post-box').css('width', width + 'px')
|
||||||
$('#suggest').html('')
|
$('#suggest').html('')
|
||||||
|
$('#draft').html('')
|
||||||
if (!localStorage.getItem('emojis_' + acct_id)) {
|
if (!localStorage.getItem('emojis_' + acct_id)) {
|
||||||
var html = `<button class="btn waves-effect green" style="width:100%; padding:0; margin-top:0;" onclick="emojiGet('true');">${lang.lang_emoji_get}</button>`
|
var html = `<button class="btn waves-effect green" style="width:100%; padding:0; margin-top:0;" onclick="emojiGet('true');">${lang.lang_emoji_get}</button>`
|
||||||
$('#emoji-list').html(html)
|
$('#emoji-list').html(html)
|
||||||
@@ -31,10 +32,12 @@ function emojiToggle(reaction) {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$('#poll').addClass('hide')
|
$('#poll').addClass('hide')
|
||||||
|
$('#draft').addClass('hide')
|
||||||
$('#right-side').hide()
|
$('#right-side').hide()
|
||||||
$('#right-side').css('width', '300px')
|
$('#right-side').css('width', '300px')
|
||||||
$('#emoji').addClass('hide')
|
$('#emoji').addClass('hide')
|
||||||
$('#suggest').html('')
|
$('#suggest').html('')
|
||||||
|
$('#draft').html('')
|
||||||
$('#left-side').css('width', '100%')
|
$('#left-side').css('width', '100%')
|
||||||
var width = localStorage.getItem('postbox-width')
|
var width = localStorage.getItem('postbox-width')
|
||||||
if (width) {
|
if (width) {
|
||||||
|
@@ -9,7 +9,16 @@ function sec() {
|
|||||||
}
|
}
|
||||||
post(null, mode)
|
post(null, mode)
|
||||||
}
|
}
|
||||||
function post(mode, postvis) {
|
function post(mode, postvis, dry) {
|
||||||
|
if(!navigator.onLine && !dry) {
|
||||||
|
draftToggle(true)
|
||||||
|
addToDraft()
|
||||||
|
M.toast({
|
||||||
|
html: lang.lang_post_offline,
|
||||||
|
displayLength: 3000
|
||||||
|
})
|
||||||
|
return false
|
||||||
|
}
|
||||||
if ($('#toot-post-btn').prop('disabled')) {
|
if ($('#toot-post-btn').prop('disabled')) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
@@ -122,7 +131,7 @@ function post(mode, postvis) {
|
|||||||
console.log('This toot will be posted at:' + scheduled)
|
console.log('This toot will be posted at:' + scheduled)
|
||||||
schedule()
|
schedule()
|
||||||
toot.scheduled_at = scheduled
|
toot.scheduled_at = scheduled
|
||||||
if($('#sch-box').hasClass('expire')) {
|
if ($('#sch-box').hasClass('expire')) {
|
||||||
toot.scheduled_at = null
|
toot.scheduled_at = null
|
||||||
toot.expires_at = scheduled
|
toot.expires_at = scheduled
|
||||||
}
|
}
|
||||||
@@ -131,7 +140,7 @@ function post(mode, postvis) {
|
|||||||
}
|
}
|
||||||
if (!$('#poll').hasClass('hide')) {
|
if (!$('#poll').hasClass('hide')) {
|
||||||
var options = []
|
var options = []
|
||||||
$('.mastodon-choice').map(function() {
|
$('.mastodon-choice').map(function () {
|
||||||
var choice = $(this).val()
|
var choice = $(this).val()
|
||||||
if (choice != '') {
|
if (choice != '') {
|
||||||
options.push(choice)
|
options.push(choice)
|
||||||
@@ -159,6 +168,13 @@ function post(mode, postvis) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.table(toot)
|
console.table(toot)
|
||||||
|
if (dry) {
|
||||||
|
$('#ideKey').val('')
|
||||||
|
$('.toot-btn-group').prop('disabled', false)
|
||||||
|
todc()
|
||||||
|
toot['TheDeskAcctId'] = acct_id
|
||||||
|
return toot
|
||||||
|
}
|
||||||
var httpreq = new XMLHttpRequest()
|
var httpreq = new XMLHttpRequest()
|
||||||
httpreq.open('POST', start, true)
|
httpreq.open('POST', start, true)
|
||||||
httpreq.setRequestHeader('Content-Type', 'application/json')
|
httpreq.setRequestHeader('Content-Type', 'application/json')
|
||||||
@@ -166,11 +182,11 @@ function post(mode, postvis) {
|
|||||||
httpreq.setRequestHeader('Idempotency-Key', ideKey)
|
httpreq.setRequestHeader('Idempotency-Key', ideKey)
|
||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send(JSON.stringify(toot))
|
httpreq.send(JSON.stringify(toot))
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
var json = httpreq.response
|
var json = httpreq.response
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
if(media && this.status == 422) {
|
if (media && this.status == 422) {
|
||||||
$('#ideKey').val('')
|
$('#ideKey').val('')
|
||||||
$('.toot-btn-group').prop('disabled', false)
|
$('.toot-btn-group').prop('disabled', false)
|
||||||
alertProcessUnfinished()
|
alertProcessUnfinished()
|
||||||
@@ -201,7 +217,7 @@ function post(mode, postvis) {
|
|||||||
}
|
}
|
||||||
function expPostMode() {
|
function expPostMode() {
|
||||||
$('#sch-box').toggleClass('expire')
|
$('#sch-box').toggleClass('expire')
|
||||||
if($('#sch-box').hasClass('expire')) {
|
if ($('#sch-box').hasClass('expire')) {
|
||||||
Swal.fire({
|
Swal.fire({
|
||||||
type: 'info',
|
type: 'info',
|
||||||
title: 'Expiring toot On'
|
title: 'Expiring toot On'
|
||||||
@@ -270,7 +286,7 @@ function misskeyPost() {
|
|||||||
httpreq.setRequestHeader('Content-Type', 'application/json')
|
httpreq.setRequestHeader('Content-Type', 'application/json')
|
||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send(JSON.stringify(toot))
|
httpreq.send(JSON.stringify(toot))
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
if (str.indexOf(localStorage.getItem('stable')) == -1) {
|
if (str.indexOf(localStorage.getItem('stable')) == -1) {
|
||||||
localStorage.removeItem('stable')
|
localStorage.removeItem('stable')
|
||||||
@@ -339,7 +355,7 @@ function clear() {
|
|||||||
$('#mins_poll').val(6)
|
$('#mins_poll').val(6)
|
||||||
$('#poll').addClass('hide')
|
$('#poll').addClass('hide')
|
||||||
$('#pollsta').text(lang.lang_no)
|
$('#pollsta').text(lang.lang_no)
|
||||||
$('.mastodon-choice').map(function() {
|
$('.mastodon-choice').map(function () {
|
||||||
$(this).val('')
|
$(this).val('')
|
||||||
})
|
})
|
||||||
localStorage.removeItem('image')
|
localStorage.removeItem('image')
|
||||||
|
@@ -79,8 +79,8 @@ function loadVis() {
|
|||||||
loadVis()
|
loadVis()
|
||||||
|
|
||||||
//コンテントワーニング
|
//コンテントワーニング
|
||||||
function cw() {
|
function cw(force) {
|
||||||
if ($('#cw').hasClass('cw-avail')) {
|
if ($('#cw').hasClass('cw-avail') || !force) {
|
||||||
$('#cw-text').val()
|
$('#cw-text').val()
|
||||||
$('#cw-text').hide()
|
$('#cw-text').hide()
|
||||||
$('#cw').removeClass('yellow-text')
|
$('#cw').removeClass('yellow-text')
|
||||||
@@ -100,8 +100,8 @@ function cw_show(e) {
|
|||||||
$(e).parent().parent().find('.cw_hide').toggleClass('cw')
|
$(e).parent().parent().find('.cw_hide').toggleClass('cw')
|
||||||
$(e).parent().find('.cw_long').toggleClass('hide')
|
$(e).parent().find('.cw_long').toggleClass('hide')
|
||||||
}
|
}
|
||||||
$(function() {
|
$(function () {
|
||||||
$('#cw-text').on('change', function(event) {
|
$('#cw-text').on('change', function (event) {
|
||||||
var acct_id = $('#post-acct-sel').val()
|
var acct_id = $('#post-acct-sel').val()
|
||||||
var domain = localStorage.getItem('domain_' + acct_id)
|
var domain = localStorage.getItem('domain_' + acct_id)
|
||||||
var cwlen = $('#cw-text').val().length
|
var cwlen = $('#cw-text').val().length
|
||||||
@@ -126,3 +126,79 @@ function schedule() {
|
|||||||
$('#sch-box').addClass('sch-avail')
|
$('#sch-box').addClass('sch-avail')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//下書き機能
|
||||||
|
function draftToggle(force) {
|
||||||
|
if ($('#draft').hasClass('hide') || force) {
|
||||||
|
$('#draft').removeClass('hide')
|
||||||
|
$('#right-side').show()
|
||||||
|
$('#right-side').css('width', '300px')
|
||||||
|
$('#left-side').css('width', 'calc(100% - 300px)')
|
||||||
|
var width = localStorage.getItem('postbox-width')
|
||||||
|
if (width) {
|
||||||
|
width = width.replace('px', '') * 1 + 300
|
||||||
|
} else {
|
||||||
|
width = 600
|
||||||
|
}
|
||||||
|
$('#post-box').css('width', width + 'px')
|
||||||
|
$('#suggest').html('')
|
||||||
|
$('#draft').html('')
|
||||||
|
draftDraw()
|
||||||
|
} else {
|
||||||
|
$('#poll').addClass('hide')
|
||||||
|
$('#draft').addClass('hide')
|
||||||
|
$('#right-side').hide()
|
||||||
|
$('#right-side').css('width', '300px')
|
||||||
|
$('#emoji').addClass('hide')
|
||||||
|
$('#suggest').html('')
|
||||||
|
$('#draft').html('')
|
||||||
|
$('#left-side').css('width', '100%')
|
||||||
|
var width = localStorage.getItem('postbox-width')
|
||||||
|
if (width) {
|
||||||
|
width = width.replace('px', '') * 1
|
||||||
|
} else {
|
||||||
|
width = 300
|
||||||
|
}
|
||||||
|
$('#post-box').css('width', width + 'px')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function draftDraw() {
|
||||||
|
var draft = localStorage.getItem('draft')
|
||||||
|
var html = `<button class="btn waves-effect green" style="width:100%; padding:0; margin-top:0;" onclick="addToDraft();">${lang.lang_secure_draft}</button>`
|
||||||
|
if (draft) {
|
||||||
|
var draftObj = JSON.parse(draft)
|
||||||
|
for (let i = 0; i < draftObj.length; i++) {
|
||||||
|
var toot = draftObj[i]
|
||||||
|
html = html + `<div class="tootInDraft">
|
||||||
|
<i class="waves-effect gray material-icons" onclick="useThisDraft(${i})" title="${lang.lang_secure_userThis}">reply</i>
|
||||||
|
<i class="waves-effect gray material-icons" onclick="deleteThisDraft(${i})" title="${lang.lang_secure_deleteThis}">cancel</i>
|
||||||
|
${escapeHTML(toot.status).replace(/\n/, '').substr(0, 10)}
|
||||||
|
</div>`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$('#draft').html(html)
|
||||||
|
}
|
||||||
|
function addToDraft() {
|
||||||
|
var json = post(null, null, true)
|
||||||
|
var draft = localStorage.getItem('draft')
|
||||||
|
var draftObj = []
|
||||||
|
if (draft) draftObj = JSON.parse(draft)
|
||||||
|
draftObj.push(json)
|
||||||
|
draft = JSON.stringify(draftObj)
|
||||||
|
localStorage.setItem('draft', draft)
|
||||||
|
draftDraw()
|
||||||
|
}
|
||||||
|
function useThisDraft(i) {
|
||||||
|
var draft = localStorage.getItem('draft')
|
||||||
|
var draftObj = JSON.parse(draft)
|
||||||
|
draftToPost(draftObj[i], draftObj[i]['TheDeskAcctId'], 0)
|
||||||
|
draftToggle()
|
||||||
|
}
|
||||||
|
function deleteThisDraft(i) {
|
||||||
|
var draft = localStorage.getItem('draft')
|
||||||
|
var draftObj = JSON.parse(draft)
|
||||||
|
draftObj.splice(i, 1)
|
||||||
|
draft = JSON.stringify(draftObj)
|
||||||
|
localStorage.setItem('draft', draft)
|
||||||
|
draftDraw()
|
||||||
|
}
|
@@ -15,7 +15,7 @@ function fav(id, acct_id, remote) {
|
|||||||
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send()
|
httpreq.send()
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
var json = httpreq.response
|
var json = httpreq.response
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
@@ -75,7 +75,7 @@ function rt(id, acct_id, remote, vis) {
|
|||||||
} else {
|
} else {
|
||||||
httpreq.send()
|
httpreq.send()
|
||||||
}
|
}
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
var json = httpreq.response
|
var json = httpreq.response
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
@@ -131,7 +131,7 @@ function bkm(id, acct_id, tlid) {
|
|||||||
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send()
|
httpreq.send()
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
var json = httpreq.response
|
var json = httpreq.response
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
@@ -160,7 +160,7 @@ function bkm(id, acct_id, tlid) {
|
|||||||
|
|
||||||
//フォロー
|
//フォロー
|
||||||
async function follow(acct_id, resolve) {
|
async function follow(acct_id, resolve) {
|
||||||
if($('#his-data').hasClass('locked')) {
|
if ($('#his-data').hasClass('locked')) {
|
||||||
locked = true
|
locked = true
|
||||||
} else {
|
} else {
|
||||||
locked = false
|
locked = false
|
||||||
@@ -178,7 +178,7 @@ async function follow(acct_id, resolve) {
|
|||||||
var flag = 'follow'
|
var flag = 'follow'
|
||||||
var flagm = 'create'
|
var flagm = 'create'
|
||||||
}
|
}
|
||||||
|
|
||||||
var id = $('#his-data').attr('user-id')
|
var id = $('#his-data').attr('user-id')
|
||||||
if (resolve == 'selector') {
|
if (resolve == 'selector') {
|
||||||
var fullacct = $('#his-acct').attr('fullname')
|
var fullacct = $('#his-acct').attr('fullname')
|
||||||
@@ -200,7 +200,7 @@ async function follow(acct_id, resolve) {
|
|||||||
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send(JSON.stringify(ent))
|
httpreq.send(JSON.stringify(ent))
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
var json = httpreq.response
|
var json = httpreq.response
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
@@ -212,7 +212,7 @@ async function follow(acct_id, resolve) {
|
|||||||
$('#his-follow-btn-text').text(lang.lang_status_follow)
|
$('#his-follow-btn-text').text(lang.lang_status_follow)
|
||||||
} else {
|
} else {
|
||||||
$('#his-data').addClass('following')
|
$('#his-data').addClass('following')
|
||||||
if(locked) {
|
if (locked) {
|
||||||
$('#his-follow-btn-text').text(lang.lang_status_requesting)
|
$('#his-follow-btn-text').text(lang.lang_status_requesting)
|
||||||
} else {
|
} else {
|
||||||
$('#his-follow-btn-text').text(lang.lang_status_unfollow)
|
$('#his-follow-btn-text').text(lang.lang_status_unfollow)
|
||||||
@@ -278,7 +278,7 @@ function block(acct_id) {
|
|||||||
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send()
|
httpreq.send()
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
setLog(start, this.status, this.response)
|
setLog(start, this.status, this.response)
|
||||||
@@ -338,7 +338,7 @@ function muteDo(acct_id) {
|
|||||||
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send(rq)
|
httpreq.send(rq)
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
setLog(start, this.status, this.response)
|
setLog(start, this.status, this.response)
|
||||||
@@ -378,7 +378,7 @@ function del(id, acct_id) {
|
|||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send()
|
httpreq.send()
|
||||||
}
|
}
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
setLog(start, this.status, this.response)
|
setLog(start, this.status, this.response)
|
||||||
@@ -420,69 +420,73 @@ function redraft(id, acct_id) {
|
|||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send()
|
httpreq.send()
|
||||||
}
|
}
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
setLog(start, this.status, this.response)
|
setLog(start, this.status, this.response)
|
||||||
}
|
}
|
||||||
var json = httpreq.response
|
var json = httpreq.response
|
||||||
$('#post-acct-sel').prop('disabled', true)
|
draftToPost(json, acct_id, id)
|
||||||
$('#post-acct-sel').val(acct_id)
|
|
||||||
$('select').formSelect()
|
|
||||||
mdCheck()
|
|
||||||
var medias = $('[toot-id=' + id + ']').attr('data-medias')
|
|
||||||
var mediack = json.media_attachments[0]
|
|
||||||
//メディアがあれば
|
|
||||||
var media_ids = []
|
|
||||||
if (mediack) {
|
|
||||||
for (var i = 0; i <= 4; i++) {
|
|
||||||
if (json.media_attachments[i]) {
|
|
||||||
media_ids.push(json.media_attachments[i].id)
|
|
||||||
$('#preview').append(
|
|
||||||
'<img src="' +
|
|
||||||
json.media_attachments[i].preview_url +
|
|
||||||
'" style="width:50px; max-height:100px;">'
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var vismode = $('[toot-id=' + id + '] .vis-data').attr('data-vis')
|
|
||||||
vis(vismode)
|
|
||||||
var medias = media_ids.join(',');
|
|
||||||
$('#media').val(medias)
|
|
||||||
localStorage.setItem('nohide', true)
|
|
||||||
show()
|
|
||||||
if (json.text) {
|
|
||||||
var html = json.text
|
|
||||||
} else {
|
|
||||||
var html = $('[toot-id=' + id + '] .toot').html()
|
|
||||||
html = html.replace(/^<p>(.+)<\/p>$/, '$1')
|
|
||||||
html = html.replace(/<br\s?\/?>/, '\n')
|
|
||||||
html = html.replace(/<p>/, '\n')
|
|
||||||
html = html.replace(/<\/p>/, '\n')
|
|
||||||
html = html.replace(/<img[\s\S]*alt="(.+?)"[\s\S]*?>/g, '$1')
|
|
||||||
html = $.strip_tags(html)
|
|
||||||
}
|
|
||||||
$('#textarea').val(html)
|
|
||||||
if (json.spoiler_text) {
|
|
||||||
cw()
|
|
||||||
$('#cw-text').val(json.spoiler_text)
|
|
||||||
}
|
|
||||||
if (json.sensitive) {
|
|
||||||
$('#nsfw').addClass('yellow-text')
|
|
||||||
$('#nsfw').html('visibility')
|
|
||||||
$('#nsfw').addClass('nsfw-avail')
|
|
||||||
}
|
|
||||||
if (json.in_reply_to_id) {
|
|
||||||
$('#reply').val(json.in_reply_to_id)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
function draftToPost(json, acct_id, id) {
|
||||||
|
$('#post-acct-sel').prop('disabled', true)
|
||||||
|
$('#post-acct-sel').val(acct_id)
|
||||||
|
$('select').formSelect()
|
||||||
|
mdCheck()
|
||||||
|
var medias = $('[toot-id=' + id + ']').attr('data-medias')
|
||||||
|
mediack = null
|
||||||
|
if(json.media_attachments) mediack = json.media_attachments[0]
|
||||||
|
//メディアがあれば
|
||||||
|
var media_ids = []
|
||||||
|
if (mediack) {
|
||||||
|
for (var i = 0; i <= 4; i++) {
|
||||||
|
if (json.media_attachments[i]) {
|
||||||
|
media_ids.push(json.media_attachments[i].id)
|
||||||
|
$('#preview').append(
|
||||||
|
'<img src="' +
|
||||||
|
json.media_attachments[i].preview_url +
|
||||||
|
'" style="width:50px; max-height:100px;">'
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var vismode = json.visibility
|
||||||
|
vis(vismode)
|
||||||
|
var medias = media_ids.join(',')
|
||||||
|
$('#media').val(medias)
|
||||||
|
localStorage.setItem('nohide', true)
|
||||||
|
show()
|
||||||
|
if (json.text) {
|
||||||
|
var html = json.text
|
||||||
|
} else {
|
||||||
|
var html = json.status
|
||||||
|
html = html.replace(/^<p>(.+)<\/p>$/, '$1')
|
||||||
|
html = html.replace(/<br\s?\/?>/, '\n')
|
||||||
|
html = html.replace(/<p>/, '\n')
|
||||||
|
html = html.replace(/<\/p>/, '\n')
|
||||||
|
html = html.replace(/<img[\s\S]*alt="(.+?)"[\s\S]*?>/g, '$1')
|
||||||
|
html = $.strip_tags(html)
|
||||||
|
}
|
||||||
|
$('#textarea').val(html)
|
||||||
|
if (json.spoiler_text) {
|
||||||
|
cw(true)
|
||||||
|
$('#cw-text').val(json.spoiler_text)
|
||||||
|
}
|
||||||
|
if (json.sensitive) {
|
||||||
|
$('#nsfw').addClass('yellow-text')
|
||||||
|
$('#nsfw').html('visibility')
|
||||||
|
$('#nsfw').addClass('nsfw-avail')
|
||||||
|
}
|
||||||
|
if (json.in_reply_to_id) {
|
||||||
|
$('#reply').val(json.in_reply_to_id)
|
||||||
|
}
|
||||||
|
}
|
||||||
//ピン留め
|
//ピン留め
|
||||||
function pin(id, acct_id) {
|
function pin(id, acct_id) {
|
||||||
if ($(`.cvo[unique-id=${id}]`).hasClass('pined')) {
|
if ($(`.cvo[unique-id=${id}]`).hasClass('pined')) {
|
||||||
@@ -499,7 +503,7 @@ function pin(id, acct_id) {
|
|||||||
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send()
|
httpreq.send()
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
var json = httpreq.response
|
var json = httpreq.response
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
@@ -530,7 +534,7 @@ function request(id, flag, acct_id) {
|
|||||||
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send()
|
httpreq.send()
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
var json = httpreq.response
|
var json = httpreq.response
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
@@ -556,7 +560,7 @@ function domainblock(add, flag, acct_id) {
|
|||||||
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send()
|
httpreq.send()
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
var json = httpreq.response
|
var json = httpreq.response
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
@@ -583,7 +587,7 @@ function empUser() {
|
|||||||
M.toast({ html: id + lang.lang_status_emphas, displayLength: 4000 })
|
M.toast({ html: id + lang.lang_status_emphas, displayLength: 4000 })
|
||||||
} else {
|
} else {
|
||||||
var can
|
var can
|
||||||
Object.keys(obj).forEach(function(key) {
|
Object.keys(obj).forEach(function (key) {
|
||||||
var usT = obj[key]
|
var usT = obj[key]
|
||||||
if (usT != id && !can) {
|
if (usT != id && !can) {
|
||||||
can = false
|
can = false
|
||||||
@@ -615,7 +619,7 @@ function pinUser() {
|
|||||||
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
httpreq.setRequestHeader('Authorization', 'Bearer ' + at)
|
||||||
httpreq.responseType = 'json'
|
httpreq.responseType = 'json'
|
||||||
httpreq.send()
|
httpreq.send()
|
||||||
httpreq.onreadystatechange = function() {
|
httpreq.onreadystatechange = function () {
|
||||||
if (httpreq.readyState === 4) {
|
if (httpreq.readyState === 4) {
|
||||||
var json = httpreq.response
|
var json = httpreq.response
|
||||||
if (this.status !== 200) {
|
if (this.status !== 200) {
|
||||||
@@ -651,20 +655,20 @@ function staEx(mode) {
|
|||||||
Authorization: 'Bearer ' + at
|
Authorization: 'Bearer ' + at
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then(function(response) {
|
.then(function (response) {
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
response.text().then(function(text) {
|
response.text().then(function (text) {
|
||||||
setLog(response.url, response.status, text)
|
setLog(response.url, response.status, text)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
return response.json()
|
return response.json()
|
||||||
})
|
})
|
||||||
.catch(function(error) {
|
.catch(function (error) {
|
||||||
todo(error)
|
todo(error)
|
||||||
setLog(start, 'JSON', error)
|
setLog(start, 'JSON', error)
|
||||||
console.error(error)
|
console.error(error)
|
||||||
})
|
})
|
||||||
.then(function(json) {
|
.then(function (json) {
|
||||||
if (json.statuses) {
|
if (json.statuses) {
|
||||||
if (json.statuses[0]) {
|
if (json.statuses[0]) {
|
||||||
var id = json.statuses[0].id
|
var id = json.statuses[0].id
|
||||||
@@ -681,40 +685,8 @@ function staEx(mode) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
function toggleAction(id) {
|
function toggleAction(id) {
|
||||||
console.log(document.getElementById(id))
|
const elm = document.getElementById(id)
|
||||||
var instance = M.Dropdown.init(document.getElementById(id));
|
const instance = M.Dropdown.init(elm);
|
||||||
|
console.log(instance.isOpen)
|
||||||
instance.open()
|
instance.open()
|
||||||
return
|
|
||||||
var height = ct * 39 + 6
|
|
||||||
var cont = elem.parents('.cvo').find('.contextMenu')
|
|
||||||
if (cont.hasClass('hide')) {
|
|
||||||
$('#contextWrap').removeClass('hide')
|
|
||||||
var left = elem.offset().left + 60
|
|
||||||
var top = elem.offset().top - height
|
|
||||||
if (top < 75) {
|
|
||||||
top = elem.offset().top + 45
|
|
||||||
cont.removeClass('bottom')
|
|
||||||
cont.addClass('top')
|
|
||||||
} else {
|
|
||||||
top = elem.offset().top - 105
|
|
||||||
cont.removeClass('top')
|
|
||||||
cont.addClass('bottom')
|
|
||||||
}
|
|
||||||
if (elem.parents('.cvo').attr('id') == 'toot-this') {
|
|
||||||
console.log($('#toot-this').offset().top, elem.offset().top)
|
|
||||||
left = $('#toot-this').offset().left + elem.offset().left + 10
|
|
||||||
top = $('#toot-this').offset().top - $('#toot-this').height() - height + 25
|
|
||||||
}
|
|
||||||
cont.css('top', top + 'px')
|
|
||||||
cont.css('right', `calc(100vw - ${left}px)`)
|
|
||||||
cont.removeClass('hide')
|
|
||||||
elem
|
|
||||||
.parents('.cvo')
|
|
||||||
.find('.act-icon')
|
|
||||||
.text('expand_less')
|
|
||||||
} else {
|
|
||||||
$('#contextWrap').addClass('hide')
|
|
||||||
$('.contextMenu').addClass('hide')
|
|
||||||
$('.act-icon').text('expand_more')
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -18,7 +18,7 @@ input.addEventListener(
|
|||||||
var new_val = input.value
|
var new_val = input.value
|
||||||
if (new_val == '') {
|
if (new_val == '') {
|
||||||
$('#suggest').html('')
|
$('#suggest').html('')
|
||||||
if ($('#poll').hasClass('hide') && $('#emoji').hasClass('hide')) {
|
if ($('#poll').hasClass('hide') && $('#emoji').hasClass('hide') && $('#draft').hasClass('hide')) {
|
||||||
$('#right-side').hide()
|
$('#right-side').hide()
|
||||||
$('#right-side').css('width', '300px')
|
$('#right-side').css('width', '300px')
|
||||||
$('#left-side').css('width', '100%')
|
$('#left-side').css('width', '100%')
|
||||||
@@ -41,7 +41,7 @@ input.addEventListener(
|
|||||||
var q = acct[1]
|
var q = acct[1]
|
||||||
} else {
|
} else {
|
||||||
$('#suggest').html('')
|
$('#suggest').html('')
|
||||||
if ($('#poll').hasClass('hide') && $('#emoji').hasClass('hide')) {
|
if ($('#poll').hasClass('hide') && $('#emoji').hasClass('hide') && $('#draft').hasClass('hide')) {
|
||||||
$('#right-side').hide()
|
$('#right-side').hide()
|
||||||
$('#right-side').css('width', '300px')
|
$('#right-side').css('width', '300px')
|
||||||
$('#left-side').css('width', '100%')
|
$('#left-side').css('width', '100%')
|
||||||
@@ -138,6 +138,7 @@ input.addEventListener(
|
|||||||
$('#post-box').css('width', width + 'px')
|
$('#post-box').css('width', width + 'px')
|
||||||
$('#poll').addClass('hide')
|
$('#poll').addClass('hide')
|
||||||
$('#emoji').addClass('hide')
|
$('#emoji').addClass('hide')
|
||||||
|
$('#draft').addClass('hide')
|
||||||
}
|
}
|
||||||
} else if (json.accounts[0] && acct[1]) {
|
} else if (json.accounts[0] && acct[1]) {
|
||||||
var accts = ''
|
var accts = ''
|
||||||
@@ -165,8 +166,9 @@ input.addEventListener(
|
|||||||
$('#suggest').html(accts)
|
$('#suggest').html(accts)
|
||||||
$('#poll').addClass('hide')
|
$('#poll').addClass('hide')
|
||||||
$('#emoji').addClass('hide')
|
$('#emoji').addClass('hide')
|
||||||
|
$('#draft').addClass('hide')
|
||||||
} else {
|
} else {
|
||||||
if ($('#poll').hasClass('hide') && $('#emoji').hasClass('hide')) {
|
if ($('#poll').hasClass('hide') && $('#emoji').hasClass('hide') && $('#draft').hasClass('hide')) {
|
||||||
$('#right-side').hide()
|
$('#right-side').hide()
|
||||||
$('#right-side').css('width', '300px')
|
$('#right-side').css('width', '300px')
|
||||||
$('#left-side').css('width', '100%')
|
$('#left-side').css('width', '100%')
|
||||||
@@ -226,7 +228,7 @@ function tagInsert(code, del) {
|
|||||||
}
|
}
|
||||||
sentence = before + word + after
|
sentence = before + word + after
|
||||||
textarea.value = sentence
|
textarea.value = sentence
|
||||||
if ($('#poll').hasClass('hide') && $('#emoji').hasClass('hide')) {
|
if ($('#poll').hasClass('hide') && $('#emoji').hasClass('hide') && $('#draft').hasClass('hide')) {
|
||||||
$('#right-side').hide()
|
$('#right-side').hide()
|
||||||
$('#right-side').css('width', '300px')
|
$('#right-side').css('width', '300px')
|
||||||
$('#left-side').css('width', '50%')
|
$('#left-side').css('width', '50%')
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*リプライ*/
|
/*リプライ*/
|
||||||
function re(id, ats_cm, acct_id, mode) {
|
function re(id, ats_cm, acct_id, mode, cwTxt) {
|
||||||
clear()
|
clear()
|
||||||
var ats = ats_cm.split(',')
|
var ats = ats_cm.split(',')
|
||||||
localStorage.setItem('nohide', true)
|
localStorage.setItem('nohide', true)
|
||||||
@@ -25,13 +25,18 @@ function re(id, ats_cm, acct_id, mode) {
|
|||||||
}
|
}
|
||||||
$('#acct-sel-prof').attr('src', profimg)
|
$('#acct-sel-prof').attr('src', profimg)
|
||||||
vis(mode)
|
vis(mode)
|
||||||
|
if(localStorage.getItem('cw-continue') == 'yes') {
|
||||||
|
cw(true)
|
||||||
|
$('#cw-text').val(cwTxt)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
function reEx(id) {
|
function reEx(id) {
|
||||||
$('#tootmodal').modal('close')
|
$('#tootmodal').modal('close')
|
||||||
var at = $('#tootmodal').attr('data-user')
|
var at = $('#tootmodal').attr('data-user')
|
||||||
var acct_id = $('#status-acct-sel').val()
|
var acct_id = $('#status-acct-sel').val()
|
||||||
var mode = $('#tootmodal .vis-data').attr('data-vis')
|
var mode = $('#tootmodal .vis-data').attr('data-vis')
|
||||||
re(id, at, acct_id, mode)
|
var cwTxt = $('#cw-text').val()
|
||||||
|
re(id, at, acct_id, mode, cwTxt)
|
||||||
}
|
}
|
||||||
//引用
|
//引用
|
||||||
function qt(id, acct_id, at, url) {
|
function qt(id, acct_id, at, url) {
|
||||||
|
@@ -335,6 +335,13 @@ function cardCheck(tlid) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function mov(id, tlid, type) {
|
function mov(id, tlid, type) {
|
||||||
|
const dropdownTrigger = `dropdown_${tlid}_${id}`
|
||||||
|
const elm = document.getElementById(dropdownTrigger)
|
||||||
|
const instance = M.Dropdown.getInstance(elm)
|
||||||
|
if(instance) {
|
||||||
|
if(instance.isOpen) return false
|
||||||
|
}
|
||||||
|
|
||||||
var click = false
|
var click = false
|
||||||
if (tlid == 'notf') {
|
if (tlid == 'notf') {
|
||||||
var tlide = '[data-notf=' + acct_id + ']'
|
var tlide = '[data-notf=' + acct_id + ']'
|
||||||
@@ -361,9 +368,9 @@ function mov(id, tlid, type) {
|
|||||||
}
|
}
|
||||||
if (mouseover == 'hide') {
|
if (mouseover == 'hide') {
|
||||||
if (click) {
|
if (click) {
|
||||||
$(tlide + ' [toot-id=' + id + ']').toggleClass('hide-actions')
|
$(tlide + ' [unique-id=' + id + ']').toggleClass('hide-actions')
|
||||||
} else {
|
} else {
|
||||||
$(tlide + ' [toot-id=' + id + ']').removeClass('hide-actions')
|
$(tlide + ' [unique-id=' + id + ']').removeClass('hide-actions')
|
||||||
}
|
}
|
||||||
|
|
||||||
//$(tlide + " [toot-id=" + id + "] .area-vis").toggleClass("hide")
|
//$(tlide + " [toot-id=" + id + "] .area-vis").toggleClass("hide")
|
||||||
|
@@ -27,12 +27,12 @@ async function mixtl(acct_id, tlid, type, delc, voice) {
|
|||||||
mixre(acct_id, tlid, 'mix', mute, voice, '')
|
mixre(acct_id, tlid, 'mix', mute, voice, '')
|
||||||
clearInterval(mbws)
|
clearInterval(mbws)
|
||||||
} else if(mastodonBaseWsStatus[domain] == 'available') {
|
} else if(mastodonBaseWsStatus[domain] == 'available') {
|
||||||
mastodonBaseWs[domain].send(`{"type":"subscribe","stream":"public:local"}`)
|
mastodonBaseWs[domain].send(JSON.stringify({type: 'subscribe', stream: 'public:local'}))
|
||||||
clearInterval(mbws)
|
clearInterval(mbws)
|
||||||
}
|
}
|
||||||
}, 1000)
|
}, 1000)
|
||||||
} else if(mastodonBaseWsStatus[domain] == 'available') {
|
} else if(mastodonBaseWsStatus[domain] == 'available') {
|
||||||
mastodonBaseWs[domain].send(`{"type":"subscribe","stream":"public:local"}`)
|
mastodonBaseWs[domain].send(JSON.stringify({type: 'subscribe', stream: 'public:local'}))
|
||||||
}
|
}
|
||||||
|
|
||||||
$(window).scrollTop(0)
|
$(window).scrollTop(0)
|
||||||
|
@@ -211,6 +211,7 @@ function notfCommon(acct_id, tlid, sys, stream) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
function notfWS(misskey, acct_id, tlid, domain, at) {
|
function notfWS(misskey, acct_id, tlid, domain, at) {
|
||||||
|
if(mastodonBaseWsStatus[domain] == 'available') return false
|
||||||
if (!misskey) {
|
if (!misskey) {
|
||||||
if (localStorage.getItem('streaming_' + acct_id)) {
|
if (localStorage.getItem('streaming_' + acct_id)) {
|
||||||
var wss = localStorage.getItem('streaming_' + acct_id)
|
var wss = localStorage.getItem('streaming_' + acct_id)
|
||||||
@@ -262,7 +263,7 @@ function notfWS(misskey, acct_id, tlid, domain, at) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
websocketNotf[acct_id].onerror = function(error) {
|
websocketNotf[acct_id].onerror = function(error) {
|
||||||
console.error('WebSocket Error ' + error)
|
console.error('WebSocket Error ', error)
|
||||||
errorct++
|
errorct++
|
||||||
console.log(errorct)
|
console.log(errorct)
|
||||||
if (errorct < 3) {
|
if (errorct < 3) {
|
||||||
@@ -270,7 +271,7 @@ function notfWS(misskey, acct_id, tlid, domain, at) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
websocketNotf[acct_id].onclose = function(error) {
|
websocketNotf[acct_id].onclose = function(error) {
|
||||||
console.error('WebSocket Close ' + error)
|
console.error('WebSocket Close ', error)
|
||||||
errorct++
|
errorct++
|
||||||
console.log(errorct)
|
console.log(errorct)
|
||||||
if (errorct < 3) {
|
if (errorct < 3) {
|
||||||
|
@@ -224,7 +224,7 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
}
|
}
|
||||||
var emoji_url = `
|
var emoji_url = `
|
||||||
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
||||||
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');">
|
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');" loading="lazy">
|
||||||
`
|
`
|
||||||
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
||||||
dis_name = dis_name.replace(regExp, emoji_url)
|
dis_name = dis_name.replace(regExp, emoji_url)
|
||||||
@@ -241,7 +241,7 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
noticeavatar = toot.account.avatar_static
|
noticeavatar = toot.account.avatar_static
|
||||||
}
|
}
|
||||||
noticeavatar = `<a onclick="udg('${toot.account.id}','${acct_id}');" user="${toot.account.acct}" class="udg">
|
noticeavatar = `<a onclick="udg('${toot.account.id}','${acct_id}');" user="${toot.account.acct}" class="udg">
|
||||||
<img draggable="false" src="${noticeavatar}" width="20" class="notf-icon prof-img" user="${toot.account.acct}" alt="">
|
<img draggable="false" src="${noticeavatar}" width="20" class="notf-icon prof-img" user="${toot.account.acct}" alt="" loading="lazy">
|
||||||
</a>`
|
</a>`
|
||||||
if (toot.type == 'mention') {
|
if (toot.type == 'mention') {
|
||||||
var what = lang.lang_parse_mentioned
|
var what = lang.lang_parse_mentioned
|
||||||
@@ -379,7 +379,7 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
}
|
}
|
||||||
var emoji_url = `
|
var emoji_url = `
|
||||||
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
||||||
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');">
|
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');" loading="lazy">
|
||||||
`
|
`
|
||||||
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
||||||
dis_name = dis_name.replace(regExp, emoji_url)
|
dis_name = dis_name.replace(regExp, emoji_url)
|
||||||
@@ -395,7 +395,7 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
}
|
}
|
||||||
noticeavatar = `<a onclick="udg('${toot.account.id}','${acct_id}');" user="${toot.account.acct}" class="udg" aria-hidden="true">
|
noticeavatar = `<a onclick="udg('${toot.account.id}','${acct_id}');" user="${toot.account.acct}" class="udg" aria-hidden="true">
|
||||||
<img draggable="false" src="${noticeavatar}" width="20" class="notf-icon prof-img"
|
<img draggable="false" src="${noticeavatar}" width="20" class="notf-icon prof-img"
|
||||||
user="${toot.account.acct}" onerror="this.src=\'../../img/loading.svg\'">
|
user="${toot.account.acct}" onerror="this.src=\'../../img/loading.svg\'" loading="lazy">
|
||||||
</a>`
|
</a>`
|
||||||
var rebtxt = lang.lang_parse_btedsimple
|
var rebtxt = lang.lang_parse_btedsimple
|
||||||
var rticon = 'fa-retweet light-blue-text'
|
var rticon = 'fa-retweet light-blue-text'
|
||||||
@@ -436,7 +436,7 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
}
|
}
|
||||||
var emoji_url = `
|
var emoji_url = `
|
||||||
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
||||||
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');">
|
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');" loading="lazy">
|
||||||
`
|
`
|
||||||
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
||||||
dis_name = dis_name.replace(regExp, emoji_url)
|
dis_name = dis_name.replace(regExp, emoji_url)
|
||||||
@@ -652,7 +652,7 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
id="${id}-image-${key2}" data-url="${url}" data-original="${remote_url}" data-type="${media.type}"
|
id="${id}-image-${key2}" data-url="${url}" data-original="${remote_url}" data-type="${media.type}"
|
||||||
class="img-parsed img-link" style="width:calc(${cwdt}% - 1px); height:${imh};">
|
class="img-parsed img-link" style="width:calc(${cwdt}% - 1px); height:${imh};">
|
||||||
<img draggable="false" src="${purl}" class="${sense} toot-img pointer"
|
<img draggable="false" src="${purl}" class="${sense} toot-img pointer"
|
||||||
onerror="this.src=\'../../img/loading.svg\'" title="${escapeHTML(desc)}" alt="${escapeHTML(desc)}">
|
onerror="this.src=\'../../img/loading.svg\'" title="${escapeHTML(desc)}" alt="${escapeHTML(desc)}" loading="lazy">
|
||||||
${nsfwmes}
|
${nsfwmes}
|
||||||
</a>`
|
</a>`
|
||||||
}
|
}
|
||||||
@@ -855,7 +855,7 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
}
|
}
|
||||||
var emoji_url = `
|
var emoji_url = `
|
||||||
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
||||||
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');">
|
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');" loading="lazy">
|
||||||
`
|
`
|
||||||
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
||||||
content = content.replace(regExp, emoji_url)
|
content = content.replace(regExp, emoji_url)
|
||||||
@@ -875,7 +875,7 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
var emoji = toot.profile_emojis[keynico]
|
var emoji = toot.profile_emojis[keynico]
|
||||||
var shortcode = emoji.shortcode
|
var shortcode = emoji.shortcode
|
||||||
var emoji_url = `<img draggable="false" src="${emoji.url}" class="emoji-img" data-emoji="${shortcode}" alt=" :${shortcode}: "
|
var emoji_url = `<img draggable="false" src="${emoji.url}" class="emoji-img" data-emoji="${shortcode}" alt=" :${shortcode}: "
|
||||||
title="${shortcode}" onclick="this.classList.toggle(\'bigemoji\');">`
|
title="${shortcode}" onclick="this.classList.toggle(\'bigemoji\');" loading="lazy">`
|
||||||
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
||||||
content = content.replace(regExp, emoji_url)
|
content = content.replace(regExp, emoji_url)
|
||||||
spoil = spoil.replace(regExp, emoji_url)
|
spoil = spoil.replace(regExp, emoji_url)
|
||||||
@@ -962,7 +962,7 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
};width:100%; height:0.9rem; font-size:0.8rem;" class="tickers">
|
};width:100%; height:0.9rem; font-size:0.8rem;" class="tickers">
|
||||||
<img draggable="false" src="${
|
<img draggable="false" src="${
|
||||||
value.favicon
|
value.favicon
|
||||||
}" style="height:100%;" onerror="this.src=\'../../img/loading.svg\'">
|
}" style="height:100%;" onerror="this.src=\'../../img/loading.svg\'" loading="lazy">
|
||||||
<span style="position:relative; top:-0.2rem;">${escapeHTML(value.name)}</span>
|
<span style="position:relative; top:-0.2rem;">${escapeHTML(value.name)}</span>
|
||||||
</div>`
|
</div>`
|
||||||
break
|
break
|
||||||
@@ -984,7 +984,7 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
<a onclick="udg('${toot.quote.account.id}','${acct_id}');" user="${
|
<a onclick="udg('${toot.quote.account.id}','${acct_id}');" user="${
|
||||||
toot.quote.account.acct
|
toot.quote.account.acct
|
||||||
}" class="udg">
|
}" class="udg">
|
||||||
<img draggable="false" src="${toot.quote.account.avatar}">
|
<img draggable="false" src="${toot.quote.account.avatar}" loading="lazy">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="renote-user">
|
<div class="renote-user">
|
||||||
@@ -1032,15 +1032,15 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
'unix'
|
'unix'
|
||||||
)}"
|
)}"
|
||||||
${if_notf}
|
${if_notf}
|
||||||
onmouseover="mov('${toot.id}','${tlid}','mv')"
|
onmouseover="mov('${uniqueid}','${tlid}','mv')"
|
||||||
onclick="mov('${toot.id}','${tlid}','cl')"
|
onclick="mov('${uniqueid}','${tlid}','cl')"
|
||||||
onmouseout="resetmv('mv')"
|
onmouseout="resetmv('mv')"
|
||||||
>
|
>
|
||||||
<div class="area-notice grid"><span class="gray sharesta">${notice}${home}</span></div>
|
<div class="area-notice grid"><span class="gray sharesta">${notice}${home}</span></div>
|
||||||
<div class="area-icon grid">
|
<div class="area-icon grid">
|
||||||
<a onclick="udg('${toot.account.id}','${acct_id}');" user="${toot.account.acct}" class="udg">
|
<a onclick="udg('${toot.account.id}','${acct_id}');" user="${toot.account.acct}" class="udg">
|
||||||
<img draggable="false" src="${avatar}" width="40" class="prof-img"
|
<img draggable="false" src="${avatar}" width="40" class="prof-img"
|
||||||
user="${toot.account.acct}" onerror="this.src='../../img/loading.svg'" alt="" />
|
user="${toot.account.acct}" onerror="this.src='../../img/loading.svg'" alt="" loading="lazy" />
|
||||||
</a>
|
</a>
|
||||||
${noticeavatar}
|
${noticeavatar}
|
||||||
</div>
|
</div>
|
||||||
@@ -1085,7 +1085,7 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="action ${disp['re']} ${noauth}">
|
<div class="action ${disp['re']} ${noauth}">
|
||||||
<a onclick="re('${toot.id}','${to_mention}','${acct_id}','${visen}')"
|
<a onclick="re('${toot.id}','${to_mention}','${acct_id}','${visen}','${escapeHTML(toot.spoiler_text)}')"
|
||||||
class="waves-effect waves-dark btn-flat actct rep-btn"
|
class="waves-effect waves-dark btn-flat actct rep-btn"
|
||||||
data-men="${to_mention}" data-visen="${visen}" style="padding:0" title="${lang.lang_parse_replyto}">
|
data-men="${to_mention}" data-visen="${visen}" style="padding:0" title="${lang.lang_parse_replyto}">
|
||||||
<i class="fas fa-share"></i>
|
<i class="fas fa-share"></i>
|
||||||
@@ -1145,9 +1145,8 @@ function parse(obj, mix, acct_id, tlid, popup, mutefilter, type) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<ul class="dropdown-content contextMenu" id="dropdown_${tlid}_${uniqueid}">
|
<ul class="dropdown-content contextMenu" id="dropdown_${tlid}_${uniqueid}">
|
||||||
<li class="${viashow}">
|
<li class="${viashow} via-dropdown" onclick="client('${$.strip_tags(via)}')" title="${lang.lang_parse_clientop}">
|
||||||
via ${escapeHTML(via)}<br>
|
via ${escapeHTML(via)}</a>
|
||||||
<a onclick="client('${$.strip_tags(via)}')" class="pointer">${lang.lang_parse_clientop}</a>
|
|
||||||
</li>
|
</li>
|
||||||
<div>
|
<div>
|
||||||
<li onclick="bkm('${uniqueid}','${acct_id}','${tlid}')"
|
<li onclick="bkm('${uniqueid}','${acct_id}','${tlid}')"
|
||||||
@@ -1281,7 +1280,7 @@ function userparse(obj, auth, acct_id, tlid, popup) {
|
|||||||
}
|
}
|
||||||
var emoji_url = `
|
var emoji_url = `
|
||||||
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
||||||
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');">
|
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');" loading="lazy">
|
||||||
`
|
`
|
||||||
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
||||||
dis_name = dis_name.replace(regExp, emoji_url)
|
dis_name = dis_name.replace(regExp, emoji_url)
|
||||||
@@ -1324,6 +1323,7 @@ function userparse(obj, auth, acct_id, tlid, popup) {
|
|||||||
user="${toot.acct}"
|
user="${toot.acct}"
|
||||||
onerror="this.src='../../img/loading.svg'"
|
onerror="this.src='../../img/loading.svg'"
|
||||||
alt=""
|
alt=""
|
||||||
|
loading="lazy"
|
||||||
/>
|
/>
|
||||||
</a></div>
|
</a></div>
|
||||||
<div class="area-display_name">
|
<div class="area-display_name">
|
||||||
@@ -1514,7 +1514,7 @@ function pollParse(poll, acct_id, emojis) {
|
|||||||
}
|
}
|
||||||
var emoji_url = `
|
var emoji_url = `
|
||||||
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
<img draggable="false" src="${emoSource}" class="emoji-img" data-emoji="${shortcode}"
|
||||||
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');">
|
alt=" :${shortcode}: " title="${shortcode}" onclick="this.classList.toggle('bigemoji');" loading="lazy">
|
||||||
`
|
`
|
||||||
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
var regExp = new RegExp(':' + shortcode + ':', 'g')
|
||||||
choiceText = choiceText.replace(regExp, emoji_url)
|
choiceText = choiceText.replace(regExp, emoji_url)
|
||||||
@@ -1549,9 +1549,10 @@ function pollParse(poll, acct_id, emojis) {
|
|||||||
var mastodonBaseWs = {}
|
var mastodonBaseWs = {}
|
||||||
var mastodonBaseWsStatus = {}
|
var mastodonBaseWsStatus = {}
|
||||||
function mastodonBaseStreaming(acct_id) {
|
function mastodonBaseStreaming(acct_id) {
|
||||||
|
console.log('start to connect mastodonBaseStreaming of ' + acct_id)
|
||||||
notfCommon(acct_id, 0, null, 'no')
|
notfCommon(acct_id, 0, null, 'no')
|
||||||
const domain = localStorage.getItem(`domain_${acct_id}`)
|
const domain = localStorage.getItem(`domain_${acct_id}`)
|
||||||
if(mastodonBaseWsStatus[domain]) return
|
if (mastodonBaseWsStatus[domain]) return
|
||||||
mastodonBaseWsStatus[domain] = 'undetected'
|
mastodonBaseWsStatus[domain] = 'undetected'
|
||||||
const at = localStorage.getItem(`acct_${acct_id}_at`)
|
const at = localStorage.getItem(`acct_${acct_id}_at`)
|
||||||
let wss = 'wss://' + domain
|
let wss = 'wss://' + domain
|
||||||
@@ -1565,7 +1566,7 @@ function mastodonBaseStreaming(acct_id) {
|
|||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
mastodonBaseWsStatus[domain] = 'available'
|
mastodonBaseWsStatus[domain] = 'available'
|
||||||
}, 3000)
|
}, 3000)
|
||||||
mastodonBaseWs[domain].send(`{"type":"subscribe","stream":"user"}`)
|
mastodonBaseWs[domain].send(JSON.stringify({type: 'subscribe', stream: 'user'}))
|
||||||
$('.notice_icon_acct_' + acct_id).removeClass('red-text')
|
$('.notice_icon_acct_' + acct_id).removeClass('red-text')
|
||||||
}
|
}
|
||||||
mastodonBaseWs[domain].onmessage = function (mess) {
|
mastodonBaseWs[domain].onmessage = function (mess) {
|
||||||
@@ -1611,7 +1612,18 @@ function mastodonBaseStreaming(acct_id) {
|
|||||||
notfCommon(acct_id, 0, null, 'only') //fallback
|
notfCommon(acct_id, 0, null, 'only') //fallback
|
||||||
console.error("Error closing " + domain)
|
console.error("Error closing " + domain)
|
||||||
console.error(error)
|
console.error(error)
|
||||||
if (mastodonBaseWsStatus[domain] == 'available' && !pwa) location.reload()
|
if (mastodonBaseWsStatus[domain] == 'available') {
|
||||||
|
/*M.toast({
|
||||||
|
html:
|
||||||
|
`${lang.lang_parse_disconnected}<button class="btn-flat toast-action" onclick="location.reload()">${lang.lang_layout_reconnect}</button>`,
|
||||||
|
completeCallback: function () {
|
||||||
|
parseColumn()
|
||||||
|
|
||||||
|
},
|
||||||
|
displayLength: 3000
|
||||||
|
})*/
|
||||||
|
parseColumn()
|
||||||
|
}
|
||||||
mastodonBaseWsStatus[domain] = 'cannotuse'
|
mastodonBaseWsStatus[domain] = 'cannotuse'
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
mastodonBaseWsStatus[domain] = 'cannotuse'
|
mastodonBaseWsStatus[domain] = 'cannotuse'
|
||||||
@@ -1622,7 +1634,18 @@ function mastodonBaseStreaming(acct_id) {
|
|||||||
mastodonBaseWs[domain].onclose = function () {
|
mastodonBaseWs[domain].onclose = function () {
|
||||||
notfCommon(acct_id, 0, null, 'only') //fallback
|
notfCommon(acct_id, 0, null, 'only') //fallback
|
||||||
console.warn("Closing " + domain)
|
console.warn("Closing " + domain)
|
||||||
if (mastodonBaseWsStatus[domain] == 'available' && !pwa) location.reload()
|
if (mastodonBaseWsStatus[domain] == 'available') {
|
||||||
|
/*M.toast({
|
||||||
|
html:
|
||||||
|
`${lang.lang_parse_disconnected}<button class="btn-flat toast-action" onclick="location.reload()">${lang.lang_layout_reconnect}</button>`,
|
||||||
|
completeCallback: function () {
|
||||||
|
parseColumn()
|
||||||
|
|
||||||
|
},
|
||||||
|
displayLength: 3000
|
||||||
|
})*/
|
||||||
|
parseColumn()
|
||||||
|
}
|
||||||
mastodonBaseWs[domain] = false
|
mastodonBaseWs[domain] = false
|
||||||
mastodonBaseWsStatus[domain] = 'cannotuse'
|
mastodonBaseWsStatus[domain] = 'cannotuse'
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
@@ -1666,10 +1689,11 @@ function getTlMeta(type, data, num, status) {
|
|||||||
const columns = localStorage.getItem('column')
|
const columns = localStorage.getItem('column')
|
||||||
const obj = JSON.parse(columns)
|
const obj = JSON.parse(columns)
|
||||||
let ret = []
|
let ret = []
|
||||||
let i = 0
|
let i = -1
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case 'user':
|
case 'user':
|
||||||
for (const tl of obj) {
|
for (const tl of obj) {
|
||||||
|
i++
|
||||||
if (tl.domain != acct_id) continue
|
if (tl.domain != acct_id) continue
|
||||||
if (tl.type == 'mix' || tl.type == 'home') {
|
if (tl.type == 'mix' || tl.type == 'home') {
|
||||||
let voice = false
|
let voice = false
|
||||||
@@ -1681,11 +1705,11 @@ function getTlMeta(type, data, num, status) {
|
|||||||
acct_id: tl.domain
|
acct_id: tl.domain
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
i++
|
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
case 'public:local':
|
case 'public:local':
|
||||||
for (const tl of obj) {
|
for (const tl of obj) {
|
||||||
|
i++
|
||||||
if (tl.domain != acct_id) continue
|
if (tl.domain != acct_id) continue
|
||||||
if (tl.type == 'mix' || tl.type == 'local') {
|
if (tl.type == 'mix' || tl.type == 'local') {
|
||||||
let voice = false
|
let voice = false
|
||||||
@@ -1697,11 +1721,11 @@ function getTlMeta(type, data, num, status) {
|
|||||||
acct_id: tl.domain
|
acct_id: tl.domain
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
i++
|
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
case 'public:local:media':
|
case 'public:local:media':
|
||||||
for (const tl of obj) {
|
for (const tl of obj) {
|
||||||
|
i++
|
||||||
if (tl.domain != acct_id) continue
|
if (tl.domain != acct_id) continue
|
||||||
if (tl.type == 'local-media') {
|
if (tl.type == 'local-media') {
|
||||||
let voice = false
|
let voice = false
|
||||||
@@ -1713,13 +1737,14 @@ function getTlMeta(type, data, num, status) {
|
|||||||
acct_id: tl.domain
|
acct_id: tl.domain
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
i++
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'public':
|
case 'public':
|
||||||
for (const tl of obj) {
|
for (const tl of obj) {
|
||||||
|
i++
|
||||||
if (tl.domain != acct_id) continue
|
if (tl.domain != acct_id) continue
|
||||||
if (tl.type == 'pub') {
|
if (tl.type == 'pub') {
|
||||||
|
console.log(i, tl)
|
||||||
let voice = false
|
let voice = false
|
||||||
if (localStorage.getItem('voice_' + i)) voice = true
|
if (localStorage.getItem('voice_' + i)) voice = true
|
||||||
ret.push({
|
ret.push({
|
||||||
@@ -1729,11 +1754,11 @@ function getTlMeta(type, data, num, status) {
|
|||||||
acct_id: tl.domain
|
acct_id: tl.domain
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
i++
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'public:media':
|
case 'public:media':
|
||||||
for (const tl of obj) {
|
for (const tl of obj) {
|
||||||
|
i++
|
||||||
if (tl.domain != acct_id) continue
|
if (tl.domain != acct_id) continue
|
||||||
if (tl.type == 'pub-media') {
|
if (tl.type == 'pub-media') {
|
||||||
let voice = false
|
let voice = false
|
||||||
@@ -1745,11 +1770,11 @@ function getTlMeta(type, data, num, status) {
|
|||||||
acct_id: tl.domain
|
acct_id: tl.domain
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
i++
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'list':
|
case 'list':
|
||||||
for (const tl of obj) {
|
for (const tl of obj) {
|
||||||
|
i++
|
||||||
if (tl.domain != acct_id) continue
|
if (tl.domain != acct_id) continue
|
||||||
if (tl.type == 'list' && tl.data == data[1]) {
|
if (tl.type == 'list' && tl.data == data[1]) {
|
||||||
let voice = false
|
let voice = false
|
||||||
@@ -1761,11 +1786,11 @@ function getTlMeta(type, data, num, status) {
|
|||||||
acct_id: tl.domain
|
acct_id: tl.domain
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
i++
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'direct':
|
case 'direct':
|
||||||
for (const tl of obj) {
|
for (const tl of obj) {
|
||||||
|
i++
|
||||||
if (tl.domain != acct_id) continue
|
if (tl.domain != acct_id) continue
|
||||||
if (tl.type == 'dm') {
|
if (tl.type == 'dm') {
|
||||||
let voice = false
|
let voice = false
|
||||||
@@ -1777,11 +1802,11 @@ function getTlMeta(type, data, num, status) {
|
|||||||
acct_id: tl.domain
|
acct_id: tl.domain
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
i++
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'hashtag':
|
case 'hashtag':
|
||||||
for (const tl of obj) {
|
for (const tl of obj) {
|
||||||
|
i++
|
||||||
if (tl.domain != acct_id) continue
|
if (tl.domain != acct_id) continue
|
||||||
const columnDataRaw = tl.data
|
const columnDataRaw = tl.data
|
||||||
let columnData
|
let columnData
|
||||||
@@ -1821,7 +1846,6 @@ function getTlMeta(type, data, num, status) {
|
|||||||
acct_id: tl.domain
|
acct_id: tl.domain
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
i++
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
@@ -25,6 +25,7 @@ function pollToggle() {
|
|||||||
}
|
}
|
||||||
$('#post-box').css('width', width + 'px')
|
$('#post-box').css('width', width + 'px')
|
||||||
$('#emoji').addClass('hide')
|
$('#emoji').addClass('hide')
|
||||||
|
$('#draft').addClass('hide')
|
||||||
$('#poll').addClass('hide')
|
$('#poll').addClass('hide')
|
||||||
$('#pollsta').text(lang.lang_no)
|
$('#pollsta').text(lang.lang_no)
|
||||||
}
|
}
|
||||||
|
@@ -278,7 +278,7 @@ function stremaingSubscribe(type, acct_id, data, unsubscribe) {
|
|||||||
else if (type === 'pub') { stream = 'public' }
|
else if (type === 'pub') { stream = 'public' }
|
||||||
else if (type === 'pub-media') { stream = 'public:media' }
|
else if (type === 'pub-media') { stream = 'public:media' }
|
||||||
else if (type === 'list') {
|
else if (type === 'list') {
|
||||||
mastodonBaseWs[domain].send(`{"type":"${command}","stream":"list","list":"${data}"}`)
|
mastodonBaseWs[domain].send(JSON.stringify({type: command, stream: 'list', list: data}))
|
||||||
return true
|
return true
|
||||||
} else if (type === 'tag') {
|
} else if (type === 'tag') {
|
||||||
let arr = []
|
let arr = []
|
||||||
@@ -288,11 +288,11 @@ function stremaingSubscribe(type, acct_id, data, unsubscribe) {
|
|||||||
if (data.any) arr = arr.concat(data.any.split(','))
|
if (data.any) arr = arr.concat(data.any.split(','))
|
||||||
if (data.all) arr = arr.concat(data.all.split(','))
|
if (data.all) arr = arr.concat(data.all.split(','))
|
||||||
for (const tag of arr) {
|
for (const tag of arr) {
|
||||||
mastodonBaseWs[domain].send(`{"type":"${command}","stream":"hashtag","tag":"${tag}"}`)
|
mastodonBaseWs[domain].send(JSON.stringify({type: command, stream: 'hashtag', tag: tag}))
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
mastodonBaseWs[domain].send(`{"type":"${command}","stream":"${stream}"`)
|
mastodonBaseWs[domain].send(JSON.stringify({type: command, stream: stream}))
|
||||||
}
|
}
|
||||||
function oldStreaming(type, cc, acct_id, tlid, data, mute, delc, voice, mode) {
|
function oldStreaming(type, cc, acct_id, tlid, data, mute, delc, voice, mode) {
|
||||||
var misskey = false
|
var misskey = false
|
||||||
|
@@ -101,7 +101,7 @@ if (location.search) {
|
|||||||
$('.mini-btn').text('expand_less')
|
$('.mini-btn').text('expand_less')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
window.onload = initPostbox
|
window.onload = function () { initPostbox(); connection() }
|
||||||
function initPostbox() {
|
function initPostbox() {
|
||||||
$('#posttgl').click(function (e) {
|
$('#posttgl').click(function (e) {
|
||||||
if (!$('#post-box').hasClass('appear')) {
|
if (!$('#post-box').hasClass('appear')) {
|
||||||
|
@@ -80,22 +80,6 @@ var postView = new Vue({
|
|||||||
})
|
})
|
||||||
//設定ボタン押した。
|
//設定ボタン押した。
|
||||||
function settings() {
|
function settings() {
|
||||||
var cd = $('[name=theme]:checked').val()
|
|
||||||
var ct = $('[data-ct=' + cd + ']').html()
|
|
||||||
if (cd == 'custom' && !$('#custom-sel-sel').val()) {
|
|
||||||
var theme = localStorage.getItem('theme')
|
|
||||||
if (!theme) {
|
|
||||||
var theme = 'white'
|
|
||||||
}
|
|
||||||
$('#' + theme).prop('checked', true)
|
|
||||||
} else {
|
|
||||||
if (cd != localStorage.getItem('theme')) {
|
|
||||||
M.toast({ html: lang.lang_setting_theme.replace('{{set}}', ct), displayLength: 3000 })
|
|
||||||
}
|
|
||||||
//テーマはこの場で設定
|
|
||||||
themes(cd)
|
|
||||||
localStorage.setItem('theme', cd)
|
|
||||||
}
|
|
||||||
var fontd = $('#font').val()
|
var fontd = $('#font').val()
|
||||||
if (fontd) {
|
if (fontd) {
|
||||||
if (fontd != localStorage.getItem('font')) {
|
if (fontd != localStorage.getItem('font')) {
|
||||||
|
@@ -4,10 +4,17 @@ function themes(theme) {
|
|||||||
var theme = localStorage.getItem('customtheme-id')
|
var theme = localStorage.getItem('customtheme-id')
|
||||||
if (!theme) {
|
if (!theme) {
|
||||||
localStorage.setItem('customtheme-id', 'black')
|
localStorage.setItem('customtheme-id', 'black')
|
||||||
|
theme = 'black'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
postMessage(['themeCSSRequest', theme + '.thedesktheme'], '*')
|
postMessage(['themeCSSRequest', theme + '.thedesktheme'], '*')
|
||||||
var el = document.getElementsByTagName('html')[0]
|
var el = document.getElementsByTagName('html')[0]
|
||||||
el.style.backgroundColor = 'var(--bg)'
|
el.style.backgroundColor = 'var(--bg)'
|
||||||
|
var font = localStorage.getItem('font')
|
||||||
|
if(font) {
|
||||||
|
el.style.fontFamily = font
|
||||||
|
} else {
|
||||||
|
el.style.fontFamily = ''
|
||||||
|
}
|
||||||
}
|
}
|
||||||
themes()
|
themes()
|
||||||
|
@@ -63,16 +63,21 @@ function tips(mode) {
|
|||||||
function startmem() {
|
function startmem() {
|
||||||
postMessage(['sendSinmpleIpc', 'startmem'], '*')
|
postMessage(['sendSinmpleIpc', 'startmem'], '*')
|
||||||
}
|
}
|
||||||
function renderMem(use, cpu, total) {
|
function renderMem(use, cpu, total, core, uptime) {
|
||||||
|
let day = Math.floor(uptime / 60 / 60 / 24)
|
||||||
|
let hour = Math.floor(uptime / 60 /60 % 24)
|
||||||
|
if(hour < 10) hour = '0' + hour
|
||||||
|
let min = Math.floor(uptime / 60 % 60)
|
||||||
|
if(min < 10) min = '0' + min
|
||||||
|
let sec = Math.floor(uptime % 60)
|
||||||
|
if(sec < 10) sec = '0' + sec
|
||||||
|
let time = `${day ? day + ' days ' : ''}${hour ? hour + ':' : ''}${min}:${sec}`
|
||||||
|
//Intel
|
||||||
|
cpu = cpu.replace('Intel(R)', '').replace('(TM)', '').replace(' CPU', '')
|
||||||
|
//AMD
|
||||||
|
cpu = cpu.replace('AMD ', '').replace(/\s[0-9]{1,3}-Core\sProcessor/, '')
|
||||||
$('#tips-text').html(
|
$('#tips-text').html(
|
||||||
escapeHTML(cpu) +
|
`${escapeHTML(cpu)} x ${core}<br />RAM: ${Math.floor(use / 1024 / 1024 / 102.4) / 10}/${Math.floor(total / 1024 / 1024 / 102.4) / 10}GB(${Math.floor((use / total) * 100)}%) UP:${time}`
|
||||||
'<br>Memory:' +
|
|
||||||
Math.floor(use / 1024 / 1024 / 102.4) / 10 +
|
|
||||||
'/' +
|
|
||||||
Math.floor(total / 1024 / 1024 / 102.4) / 10 +
|
|
||||||
'GB(' +
|
|
||||||
Math.floor((use / total) * 100) +
|
|
||||||
'%)'
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
//トレンドタグ
|
//トレンドタグ
|
||||||
@@ -196,12 +201,10 @@ function spotifytips() {
|
|||||||
<i class="material-icons pointer" onclick="nowplaying('spotify');show()" style="font-size:20px">send</i>
|
<i class="material-icons pointer" onclick="nowplaying('spotify');show()" style="font-size:20px">send</i>
|
||||||
</div>
|
</div>
|
||||||
<div id="spot-cover">
|
<div id="spot-cover">
|
||||||
<img src="${img}" id="spot-img">
|
<img src="${img}" id="spot-img" draggable="false">
|
||||||
</div>
|
</div>
|
||||||
<div id="spot-name">
|
<div id="spot-name">
|
||||||
${escapeHTML(item.name)}
|
${escapeHTML(item.name)}
|
||||||
</div>
|
|
||||||
<div id="spot-artist">
|
|
||||||
<span class="gray sml" id="spot-art">${artisttxt}</span>
|
<span class="gray sml" id="spot-art">${artisttxt}</span>
|
||||||
</div>
|
</div>
|
||||||
<div id="spot-time">
|
<div id="spot-time">
|
||||||
|
@@ -204,7 +204,7 @@ function flw(user, more, acct_id) {
|
|||||||
let link
|
let link
|
||||||
if (linkHeader) {
|
if (linkHeader) {
|
||||||
console.log(linkHeader)
|
console.log(linkHeader)
|
||||||
link = linkHeader.match(/[?&]{1}max_id=([0-9]+)/)[1]
|
try {link = linkHeader.match(/[?&]{1}max_id=([0-9]+)/)[1] }catch{}
|
||||||
console.log(link)
|
console.log(link)
|
||||||
}
|
}
|
||||||
$("#his-follow-list-contents").attr('max-id', link)
|
$("#his-follow-list-contents").attr('max-id', link)
|
||||||
@@ -313,7 +313,7 @@ function fer(user, more, acct_id) {
|
|||||||
let link
|
let link
|
||||||
if (linkHeader) {
|
if (linkHeader) {
|
||||||
console.log(linkHeader)
|
console.log(linkHeader)
|
||||||
link = linkHeader.match(/[?&]{1}max_id=([0-9]+)/)[1]
|
try {link = linkHeader.match(/[?&]{1}max_id=([0-9]+)/)[1] }catch{}
|
||||||
console.log(link)
|
console.log(link)
|
||||||
}
|
}
|
||||||
$("#his-follower-list-contents").attr('max-id', link)
|
$("#his-follower-list-contents").attr('max-id', link)
|
||||||
@@ -354,7 +354,7 @@ function fer(user, more, acct_id) {
|
|||||||
let link
|
let link
|
||||||
if (linkHeader) {
|
if (linkHeader) {
|
||||||
console.log(linkHeader)
|
console.log(linkHeader)
|
||||||
link = linkHeader.match(/[?&]{1}max_id=([0-9]+)/)[1]
|
try {link = linkHeader.match(/[?&]{1}max_id=([0-9]+)/)[1] }catch{}
|
||||||
console.log(link)
|
console.log(link)
|
||||||
}
|
}
|
||||||
$("#his-follower-list-contents").attr('max-id', link)
|
$("#his-follower-list-contents").attr('max-id', link)
|
||||||
@@ -403,7 +403,7 @@ function showFav(more, acct_id) {
|
|||||||
let link
|
let link
|
||||||
if (linkHeader) {
|
if (linkHeader) {
|
||||||
console.log(linkHeader)
|
console.log(linkHeader)
|
||||||
link = linkHeader.match(/[?&]{1}max_id=([0-9]+)/)[1]
|
try {link = linkHeader.match(/[?&]{1}max_id=([0-9]+)/)[1] }catch{}
|
||||||
console.log(link)
|
console.log(link)
|
||||||
}
|
}
|
||||||
var template = parse(json, "", acct_id, "user")
|
var template = parse(json, "", acct_id, "user")
|
||||||
|
@@ -554,6 +554,8 @@ function reset() {
|
|||||||
$("#my-data-nav .anc-link").on("click", function() {
|
$("#my-data-nav .anc-link").on("click", function() {
|
||||||
var target = $(this).attr("go")
|
var target = $(this).attr("go")
|
||||||
if (target) {
|
if (target) {
|
||||||
|
const title = $(this).html()
|
||||||
|
$('#his-data-title').html(title)
|
||||||
$("#my-data-nav .anc-link").removeClass("active-back")
|
$("#my-data-nav .anc-link").removeClass("active-back")
|
||||||
$(this).addClass("active-back")
|
$(this).addClass("active-back")
|
||||||
$(target).show()
|
$(target).show()
|
||||||
|
22
app/main.js
22
app/main.js
@@ -124,7 +124,6 @@ function createWindow() {
|
|||||||
var max_info_path = join(app.getPath('userData'), 'max-window-size.json')
|
var max_info_path = join(app.getPath('userData'), 'max-window-size.json')
|
||||||
var ha_path = join(app.getPath('userData'), 'hardwareAcceleration')
|
var ha_path = join(app.getPath('userData'), 'hardwareAcceleration')
|
||||||
var ua_path = join(app.getPath('userData'), 'useragent')
|
var ua_path = join(app.getPath('userData'), 'useragent')
|
||||||
var frame_path = join(app.getPath('userData'), 'frame')
|
|
||||||
try {
|
try {
|
||||||
fs.readFileSync(ha_path, 'utf8')
|
fs.readFileSync(ha_path, 'utf8')
|
||||||
app.disableHardwareAcceleration()
|
app.disableHardwareAcceleration()
|
||||||
@@ -152,19 +151,6 @@ function createWindow() {
|
|||||||
y: 'string',
|
y: 'string',
|
||||||
} // デフォルトバリュー
|
} // デフォルトバリュー
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
|
||||||
var frameRaw = fs.readFileSync(frame_path, 'utf8')
|
|
||||||
if (frameRaw == 'false') {
|
|
||||||
var frame = false
|
|
||||||
var frameTitle = 'hidden'
|
|
||||||
} else {
|
|
||||||
var frame = true
|
|
||||||
var frameTitle = 'default'
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
var frame = true
|
|
||||||
}
|
|
||||||
// メイン画面の表示。ウィンドウの幅、高さを指定できる
|
// メイン画面の表示。ウィンドウの幅、高さを指定できる
|
||||||
var platform = process.platform
|
var platform = process.platform
|
||||||
var bit = process.arch
|
var bit = process.arch
|
||||||
@@ -173,6 +159,7 @@ function createWindow() {
|
|||||||
webviewTag: true,
|
webviewTag: true,
|
||||||
nodeIntegration: false,
|
nodeIntegration: false,
|
||||||
contextIsolation: true,
|
contextIsolation: true,
|
||||||
|
spellcheck: false,
|
||||||
preload: join(__dirname, 'js', 'platform', 'preload.js'),
|
preload: join(__dirname, 'js', 'platform', 'preload.js'),
|
||||||
},
|
},
|
||||||
width: window_size.width,
|
width: window_size.width,
|
||||||
@@ -180,7 +167,6 @@ function createWindow() {
|
|||||||
x: window_size.x,
|
x: window_size.x,
|
||||||
y: window_size.y,
|
y: window_size.y,
|
||||||
show: false,
|
show: false,
|
||||||
frame: frame,
|
|
||||||
}
|
}
|
||||||
if (platform == 'linux') {
|
if (platform == 'linux') {
|
||||||
arg.resizable = true
|
arg.resizable = true
|
||||||
@@ -189,7 +175,6 @@ function createWindow() {
|
|||||||
arg.simpleFullscreen = true
|
arg.simpleFullscreen = true
|
||||||
} else if (platform == 'darwin') {
|
} else if (platform == 'darwin') {
|
||||||
arg.simpleFullscreen = true
|
arg.simpleFullscreen = true
|
||||||
arg.titleBarStyle = frameTitle
|
|
||||||
}
|
}
|
||||||
mainWindow = new BrowserWindow(arg)
|
mainWindow = new BrowserWindow(arg)
|
||||||
mainWindow.once('page-title-updated', () => {
|
mainWindow.once('page-title-updated', () => {
|
||||||
@@ -293,10 +278,7 @@ function createWindow() {
|
|||||||
|
|
||||||
var platform = process.platform
|
var platform = process.platform
|
||||||
var bit = process.arch
|
var bit = process.arch
|
||||||
Menu.setApplicationMenu(Menu.buildFromTemplate(language.template(lang, mainWindow, packaged, dir, dirname, frame)))
|
Menu.setApplicationMenu(Menu.buildFromTemplate(language.template(lang, mainWindow, packaged, dir, dirname)))
|
||||||
if (!frame) {
|
|
||||||
mainWindow.setMenu(null)
|
|
||||||
}
|
|
||||||
//CSS
|
//CSS
|
||||||
css.css(mainWindow)
|
css.css(mainWindow)
|
||||||
//アップデータとダウンロード
|
//アップデータとダウンロード
|
||||||
|
@@ -44,7 +44,7 @@ function css(mainWindow) {
|
|||||||
})
|
})
|
||||||
ipc.on('theme-json-request', function (e, arg) {
|
ipc.on('theme-json-request', function (e, arg) {
|
||||||
try {
|
try {
|
||||||
var themecss = join('./source/themes', arg)
|
var themecss = join(app.getAppPath(), '/source/themes', arg)
|
||||||
var raw = fs.readFileSync(themecss, 'utf8')
|
var raw = fs.readFileSync(themecss, 'utf8')
|
||||||
var json = JSON5.parse(raw)
|
var json = JSON5.parse(raw)
|
||||||
} catch {
|
} catch {
|
||||||
@@ -56,7 +56,7 @@ function css(mainWindow) {
|
|||||||
})
|
})
|
||||||
ipc.on('theme-css-request', function (e, arg) {
|
ipc.on('theme-css-request', function (e, arg) {
|
||||||
try {
|
try {
|
||||||
var themecss = join('./source/themes', arg)
|
var themecss = join(app.getAppPath(), '/source/themes', arg)
|
||||||
var json = JSON5.parse(fs.readFileSync(themecss, 'utf8'))
|
var json = JSON5.parse(fs.readFileSync(themecss, 'utf8'))
|
||||||
} catch {
|
} catch {
|
||||||
var themecss = join(app.getPath("userData"), arg)
|
var themecss = join(app.getPath("userData"), arg)
|
||||||
@@ -144,7 +144,7 @@ function css(mainWindow) {
|
|||||||
hisData +
|
hisData +
|
||||||
";--active:" + active + ";--postbox:" + postbox + ";--modalfooter:" +
|
";--active:" + active + ";--postbox:" + postbox + ";--modalfooter:" +
|
||||||
modalFooter + ";--selected:" + selected + ";--selectedWithShare:" + selectedWithShare +
|
modalFooter + ";--selected:" + selected + ";--selectedWithShare:" + selectedWithShare +
|
||||||
"--gray:" + gray + ";}" +
|
";--gray:" + gray + ";}" +
|
||||||
".customtheme #imagemodal{background: url(\"../img/pixel.svg\");}";
|
".customtheme #imagemodal{background: url(\"../img/pixel.svg\");}";
|
||||||
} else {
|
} else {
|
||||||
var css = compatibleTheme(json)
|
var css = compatibleTheme(json)
|
||||||
@@ -227,10 +227,10 @@ function css(mainWindow) {
|
|||||||
return css
|
return css
|
||||||
}
|
}
|
||||||
ipc.on('theme-json-list', function (e, arg) {
|
ipc.on('theme-json-list', function (e, arg) {
|
||||||
var files1 = fs.readdirSync('./source/themes')
|
var files1 = fs.readdirSync(join(app.getAppPath(), '/source/themes'))
|
||||||
var file1List = files1.filter(function (file) {
|
var file1List = files1.filter(function (file) {
|
||||||
if (file.match(/\.thedesktheme$/)) {
|
if (file.match(/\.thedesktheme$/)) {
|
||||||
var tfile = join('./source/themes', file)
|
var tfile = join(app.getAppPath(), '/source/themes', file)
|
||||||
return fs.statSync(tfile).isFile() && /.*\.thedesktheme$/.test(tfile)
|
return fs.statSync(tfile).isFile() && /.*\.thedesktheme$/.test(tfile)
|
||||||
} else {
|
} else {
|
||||||
return null
|
return null
|
||||||
@@ -238,7 +238,7 @@ function css(mainWindow) {
|
|||||||
})
|
})
|
||||||
var themes = [];
|
var themes = [];
|
||||||
for (var i = 0; i < file1List.length; i++) {
|
for (var i = 0; i < file1List.length; i++) {
|
||||||
var themecss = join('./source/themes', file1List[i]);
|
var themecss = join(app.getAppPath(), '/source/themes', file1List[i]);
|
||||||
var json = JSON5.parse(fs.readFileSync(themecss, 'utf8'));
|
var json = JSON5.parse(fs.readFileSync(themecss, 'utf8'));
|
||||||
let compat = true
|
let compat = true
|
||||||
if (json.version) compat = false
|
if (json.version) compat = false
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
// Create the Application's main menu
|
// Create the Application's main menu
|
||||||
function templete(lang, mainWindow, packaged, dir, dirname, frame) {
|
function templete(lang, mainWindow, packaged, dir, dirname) {
|
||||||
//フレーム
|
//フレーム
|
||||||
if(lang !="ja" && lang != "en"){
|
if(lang !="ja" && lang != "en"){
|
||||||
lang = "en"
|
lang = "en"
|
||||||
@@ -9,11 +9,6 @@ function templete(lang, mainWindow, packaged, dir, dirname, frame) {
|
|||||||
const app = electron.app;
|
const app = electron.app;
|
||||||
const BrowserWindow = electron.BrowserWindow;
|
const BrowserWindow = electron.BrowserWindow;
|
||||||
const join = require('path').join;
|
const join = require('path').join;
|
||||||
ipc.on("frameCheck", function(e, arg) {
|
|
||||||
if(!frame) {
|
|
||||||
e.sender.webContents.send("frame", "");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
const dict = {
|
const dict = {
|
||||||
"application": {
|
"application": {
|
||||||
"ja": "アプリケーション",
|
"ja": "アプリケーション",
|
||||||
|
@@ -188,8 +188,8 @@ function system(mainWindow, dir, lang, dirname) {
|
|||||||
})
|
})
|
||||||
function mems() {
|
function mems() {
|
||||||
var mem = os.totalmem() - os.freemem()
|
var mem = os.totalmem() - os.freemem()
|
||||||
if (mainWindow) {
|
if (mainWindow && event.webContents) {
|
||||||
event.webContents.send('memory', [mem, os.cpus()[0].model, os.totalmem()])
|
event.webContents.send('memory', [mem, os.cpus()[0].model, os.totalmem(), os.cpus().length, os.uptime()])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ipc.on('endmem', (e, arg) => {
|
ipc.on('endmem', (e, arg) => {
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "thedesk",
|
"name": "thedesk",
|
||||||
"version": "21.2.0",
|
"version": "21.3.0",
|
||||||
"codename": "Mayu",
|
"codename": "Mayu",
|
||||||
"description": "TheDesk is a Mastodon client for PC.",
|
"description": "TheDesk is a Mastodon client for PC.",
|
||||||
"repository": "https://github.com/cutls/TheDesk",
|
"repository": "https://github.com/cutls/TheDesk",
|
||||||
@@ -21,8 +21,8 @@
|
|||||||
"build:linux:snapstore": "node view/make/make.js --automatic --store && npx electron-builder --linux",
|
"build:linux:snapstore": "node view/make/make.js --automatic --store && npx electron-builder --linux",
|
||||||
"build:mac:web": "node view/make/make.js --automatic && npx electron-builder --mac",
|
"build:mac:web": "node view/make/make.js --automatic && npx electron-builder --mac",
|
||||||
"build:mac:homebrew": "node view/make/make.js --automatic --store && npx electron-builder --mac",
|
"build:mac:homebrew": "node view/make/make.js --automatic --store && npx electron-builder --mac",
|
||||||
"lint:fix": "eslint js --fix" ,
|
"lint:fix": "eslint js --fix",
|
||||||
"lint": "eslint js"
|
"lint": "eslint js"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"mastodon",
|
"mastodon",
|
||||||
@@ -59,29 +59,28 @@
|
|||||||
],
|
],
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-free": "^5.14.0",
|
"@fortawesome/fontawesome-free": "^5.15.1",
|
||||||
"custom-electron-titlebar": "^3.2.3",
|
"electron-dl": "^3.0.2",
|
||||||
"electron-dl": "^3.0.1",
|
"jimp": "^0.16.1",
|
||||||
"jimp": "^0.14.0",
|
|
||||||
"jquery": "^3.5.1",
|
"jquery": "^3.5.1",
|
||||||
"jquery-ui-dist": "^1.12.1",
|
"jquery-ui-dist": "^1.12.1",
|
||||||
"json5": "^2.1.3",
|
"json5": "^2.1.3",
|
||||||
"lodash": "^4.17.19",
|
"lodash": "^4.17.20",
|
||||||
"materialize-css": "git://github.com/cutls/materialize#v1-dev",
|
"materialize-css": "git://github.com/cutls/materialize#v1-dev",
|
||||||
"sumchecker": "^3.0.1",
|
"sumchecker": "^3.0.1",
|
||||||
"sweetalert2": "^9.17.0",
|
"sweetalert2": "^10.10.0",
|
||||||
"system-font-families": "^0.4.1",
|
"system-font-families": "^0.4.1",
|
||||||
"vue": "^2.6.11"
|
"vue": "^2.6.12"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"itunes-nowplaying-mac": "0.3.1"
|
"itunes-nowplaying-mac": "0.3.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"chokidar": "^3.4.1",
|
"chokidar": "^3.4.3",
|
||||||
"electron": "^9.1.1",
|
"electron": "^10.1.5",
|
||||||
"electron-builder": "^22.7.0",
|
"electron-builder": "^22.9.1",
|
||||||
"electron-rebuild": "^1.11.0",
|
"electron-rebuild": "^2.3.2",
|
||||||
"eslint": "^7.6.0",
|
"eslint": "^7.13.0",
|
||||||
"readline-sync": "1.4.10"
|
"readline-sync": "1.4.10"
|
||||||
},
|
},
|
||||||
"build": {
|
"build": {
|
||||||
|
BIN
app/source/bubble.wav
Normal file
BIN
app/source/bubble.wav
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Drag here to upload",
|
||||||
|
"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",
|
"close": "Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_follow": "Follow",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_endorse": "Feature on profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Delete this",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -131,13 +135,17 @@
|
|||||||
"lang_layout_linkana": "Auto Link Analyzer",
|
"lang_layout_linkana": "Auto Link Analyzer",
|
||||||
"lang_layout_linkanades": "Auto link analyzer",
|
"lang_layout_linkanades": "Auto link analyzer",
|
||||||
"lang_layout_tts": "Text to speech ",
|
"lang_layout_tts": "Text to speech ",
|
||||||
"lang_layout_reconnect": "Reload this column",
|
"lang_layout_reconnect": "Reload",
|
||||||
"lang_layout_headercolor": "Header color of this column",
|
"lang_layout_headercolor": "Header color of this column",
|
||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Direct Message",
|
"lang_layout_dm": "Direct Message",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Prefer WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_deleteColumn": "Delete this column",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reaction",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Time format:{{set}}",
|
||||||
"lang_setting_theme": "Theme:{{set}}",
|
"lang_setting_theme": "Theme:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Notification test",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Minimum width of TweetDeck browser",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Font",
|
"font": "Font",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -43,19 +44,26 @@
|
|||||||
"srcUrl": "Search engine",
|
"srcUrl": "Search engine",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Select theme",
|
"themeSel": "Select theme",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Edit and add themes",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Color scheme",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
"text": "Text color",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Add new",
|
"add_new": "Add new",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "About this theme",
|
"desc": "About this theme",
|
||||||
@@ -101,8 +109,8 @@
|
|||||||
"or": "or",
|
"or": "or",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Height of images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation of timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Drag here to upload",
|
||||||
|
"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",
|
"close": "Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_follow": "Follow",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_endorse": "Feature on profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Delete this",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -131,13 +135,17 @@
|
|||||||
"lang_layout_linkana": "Auto Link Analyzer",
|
"lang_layout_linkana": "Auto Link Analyzer",
|
||||||
"lang_layout_linkanades": "Auto link analyzer",
|
"lang_layout_linkanades": "Auto link analyzer",
|
||||||
"lang_layout_tts": "Text to speech ",
|
"lang_layout_tts": "Text to speech ",
|
||||||
"lang_layout_reconnect": "Reload this column",
|
"lang_layout_reconnect": "Reload",
|
||||||
"lang_layout_headercolor": "Header color of this column",
|
"lang_layout_headercolor": "Header color of this column",
|
||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Direct Message",
|
"lang_layout_dm": "Direct Message",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Prefer WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_deleteColumn": "Delete this column",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reaction",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Time format:{{set}}",
|
||||||
"lang_setting_theme": "Theme:{{set}}",
|
"lang_setting_theme": "Theme:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Notification test",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Minimum width of TweetDeck browser",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Font",
|
"font": "Font",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -43,19 +44,26 @@
|
|||||||
"srcUrl": "Search engine",
|
"srcUrl": "Search engine",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Select theme",
|
"themeSel": "Select theme",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Edit and add themes",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Color scheme",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
"text": "Text color",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Add new",
|
"add_new": "Add new",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "About this theme",
|
"desc": "About this theme",
|
||||||
@@ -101,8 +109,8 @@
|
|||||||
"or": "or",
|
"or": "or",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Height of images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation of timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Плъзнете тук за да качите",
|
"draghere": "Плъзнете тук за да качите",
|
||||||
|
"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",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Емоти с инструменти",
|
"thingsEmoji": "Емоти с инструменти",
|
||||||
"symbolEmoji": "Емоти със символи",
|
"symbolEmoji": "Емоти със символи",
|
||||||
"flagsEmoji": "Емоти с флагове",
|
"flagsEmoji": "Емоти с флагове",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Анкета",
|
"poll": "Анкета",
|
||||||
"pollDdisabled": "Анкети: Деактивирани",
|
"pollDdisabled": "Анкети: Деактивирани",
|
||||||
"pollProvider": "Доставчик на Анкета",
|
"pollProvider": "Доставчик на Анкета",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Продължете към публикуването",
|
"lang_post_btn3": "Продължете към публикуването",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "Retry",
|
"lang_post_retry": "Retry",
|
||||||
|
"lang_post_offline": "Add to the drafts because of offline",
|
||||||
"lang_status_favWarn": "Ще отнеме минута раздумката отдалечено да стане любима.",
|
"lang_status_favWarn": "Ще отнеме минута раздумката отдалечено да стане любима.",
|
||||||
"lang_status_btWarn": "Ще отнеме минута раздумката отдалечено да бъде подсилена.",
|
"lang_status_btWarn": "Ще отнеме минута раздумката отдалечено да бъде подсилена.",
|
||||||
"lang_status_follow": "Следване",
|
"lang_status_follow": "Следване",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Функция в профила",
|
"lang_status_endorse": "Функция в профила",
|
||||||
"lang_status_followers": "Последователи",
|
"lang_status_followers": "Последователи",
|
||||||
"lang_status_active": "Последно състояние",
|
"lang_status_active": "Последно състояние",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Изтрийте тази раздумка",
|
||||||
"lang_suggest_nodata": "Моля, вземете списък с емотикони за да покажете състояние.",
|
"lang_suggest_nodata": "Моля, вземете списък с емотикони за да покажете състояние.",
|
||||||
"lang_usetxtbox_reply": "Режим на отговор. Ctrl+Shift+C за изчистване.",
|
"lang_usetxtbox_reply": "Режим на отговор. Ctrl+Shift+C за изчистване.",
|
||||||
"lang_cards_check": " проверка",
|
"lang_cards_check": " проверка",
|
||||||
@@ -136,7 +140,11 @@
|
|||||||
"lang_layout_nodata": "[Няма данни]<br>F5/⌘+R за презареждане",
|
"lang_layout_nodata": "[Няма данни]<br>F5/⌘+R за презареждане",
|
||||||
"lang_layout_dm": "Директни съобщения",
|
"lang_layout_dm": "Директни съобщения",
|
||||||
"lang_layout_webviewmode": "Предпочитания за WebView",
|
"lang_layout_webviewmode": "Предпочитания за WebView",
|
||||||
"lang_excluded": "Изключване на вид уведомление",
|
"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_excludingbt": "Показване в BT режим (ИЗКЛ./Изключване BT/ Само в BT)",
|
"lang_layout_excludingbt": "Показване в BT режим (ИЗКЛ./Изключване BT/ Само в BT)",
|
||||||
"lang_layout_leftFold": "Стъпка наляво",
|
"lang_layout_leftFold": "Стъпка наляво",
|
||||||
"lang_layout_leftUnfold": "Док отдясно",
|
"lang_layout_leftUnfold": "Док отдясно",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Показване на вграденият HTML код",
|
"lang_parse_html": "Показване на вграденият HTML код",
|
||||||
"lang_parse_notffilter": "Показване на известията от този потребител",
|
"lang_parse_notffilter": "Показване на известията от този потребител",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Повторно публикуване",
|
"lang_misskeyparse_renote": "Повторно публикуване",
|
||||||
"lang_misskeyparse_renoteqt": "Повторна бележка",
|
"lang_misskeyparse_renoteqt": "Повторна бележка",
|
||||||
"lang_misskeyparse_reaction": "Реакция",
|
"lang_misskeyparse_reaction": "Реакция",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " реагирали на следващата ви публикация.",
|
"lang_misskeyparse_reacted": " реагирали на следващата ви публикация.",
|
||||||
"lang_setting_time": "Времеви формат:{{set}}",
|
"lang_setting_time": "Времеви формат:{{set}}",
|
||||||
"lang_setting_theme": "Тема:{{set}}",
|
"lang_setting_theme": "Тема:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "NSFW:{{set}}",
|
"lang_setting_nsfw": "NSFW:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Вътрешно уведомяване",
|
"nativenotf": "Вътрешно уведомяване",
|
||||||
"nnwarn": "Това не работи в Windows Portable вер.",
|
"nnwarn": "Това не работи в Windows Portable вер.",
|
||||||
"nntest": "Тест за уведомяване",
|
"nntest": "Тест за уведомяване",
|
||||||
"minwidth": "Минимална ширина на колоните",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Лентата за превъртане ще се покаже, когато размерът на прозореца е по-голям от размера на колони.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Минимална ширина на браузъра TweetDeck",
|
"fixwidth": "Минимална ширина на браузъра TweetDeck",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "над",
|
"above": "над",
|
||||||
"font": "Шрифт",
|
"font": "Шрифт",
|
||||||
"fontwarn": "Изберете любимия си шрифт с „Избор“ (само за Windows / macOS)",
|
"fontwarn": "Изберете любимия си шрифт с „Избор“ (само за Windows / macOS)",
|
||||||
@@ -45,17 +46,24 @@
|
|||||||
"themeSel": "Изберете тема",
|
"themeSel": "Изберете тема",
|
||||||
"customtheme": "Редактирайте и добавете персонализирани теми",
|
"customtheme": "Редактирайте и добавете персонализирани теми",
|
||||||
"customthemeDirection": "Цветова схема",
|
"customthemeDirection": "Цветова схема",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Цвят на фона",
|
|
||||||
"secondarycolor": "Компоненти на фона",
|
|
||||||
"text": "Цвят на текста",
|
"text": "Цвят на текста",
|
||||||
"accent": "Фон на подсилването",
|
"accent": "Фон на подсилването",
|
||||||
|
"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)",
|
||||||
"add_new": "Добавяне на нов",
|
"add_new": "Добавяне на нов",
|
||||||
"name": "Име",
|
"name": "Име",
|
||||||
"desc": "Относно тази тема",
|
"desc": "Относно тази тема",
|
||||||
@@ -101,7 +109,7 @@
|
|||||||
"or": "или",
|
"or": "или",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Height of images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://cdn.weep.me/mastodon/\">About #InstanceTicker</a> Copyright 2018 weepjp, kyori19.",
|
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://cdn.weep.me/mastodon/\">About #InstanceTicker</a> Copyright 2018 weepjp, kyori19.",
|
||||||
"animation": "Анимация на времевата линия",
|
"animation": "Анимация на времевата линия",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Drag here to upload",
|
||||||
|
"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",
|
"close": "Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_follow": "Follow",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_endorse": "Feature on profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Delete this",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -131,13 +135,17 @@
|
|||||||
"lang_layout_linkana": "Auto Link Analyzer",
|
"lang_layout_linkana": "Auto Link Analyzer",
|
||||||
"lang_layout_linkanades": "Auto link analyzer",
|
"lang_layout_linkanades": "Auto link analyzer",
|
||||||
"lang_layout_tts": "Text to speech ",
|
"lang_layout_tts": "Text to speech ",
|
||||||
"lang_layout_reconnect": "Reload this column",
|
"lang_layout_reconnect": "Reload",
|
||||||
"lang_layout_headercolor": "Header color of this column",
|
"lang_layout_headercolor": "Header color of this column",
|
||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Direct Message",
|
"lang_layout_dm": "Direct Message",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Prefer WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_deleteColumn": "Delete this column",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reaction",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Time format:{{set}}",
|
||||||
"lang_setting_theme": "Theme:{{set}}",
|
"lang_setting_theme": "Theme:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Notification test",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Minimum width of TweetDeck browser",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Font",
|
"font": "Font",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -43,19 +44,26 @@
|
|||||||
"srcUrl": "Search engine",
|
"srcUrl": "Search engine",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Select theme",
|
"themeSel": "Select theme",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Edit and add themes",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Color scheme",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
"text": "Text color",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Add new",
|
"add_new": "Add new",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "About this theme",
|
"desc": "About this theme",
|
||||||
@@ -101,8 +109,8 @@
|
|||||||
"or": "or",
|
"or": "or",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Height of images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation of timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Přetáhněte sem pro nahrání",
|
"draghere": "Přetáhněte sem pro nahrání",
|
||||||
|
"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": "Zavřít",
|
"close": "Zavřít",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Anketa",
|
"poll": "Anketa",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Pokračovat k přispívání",
|
"lang_post_btn3": "Pokračovat k přispívání",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "Retry",
|
"lang_post_retry": "Retry",
|
||||||
|
"lang_post_offline": "Add to the drafts because of offline",
|
||||||
"lang_status_favWarn": "Oblíbení vzdáleného tootu bude chvíli trvat.",
|
"lang_status_favWarn": "Oblíbení vzdáleného tootu bude chvíli trvat.",
|
||||||
"lang_status_btWarn": "Boostnutí vzdáleného tootu bude chvíli trvat.",
|
"lang_status_btWarn": "Boostnutí vzdáleného tootu bude chvíli trvat.",
|
||||||
"lang_status_follow": "Sledovat",
|
"lang_status_follow": "Sledovat",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Představit na profilu",
|
"lang_status_endorse": "Představit na profilu",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Smazat tento toot",
|
||||||
"lang_suggest_nodata": "Pro zobrazení návrhu prosím získejte seznam emoji.",
|
"lang_suggest_nodata": "Pro zobrazení návrhu prosím získejte seznam emoji.",
|
||||||
"lang_usetxtbox_reply": "Režim odpovězení. Pro vymazání stiskněte Ctrl+Shift+C.",
|
"lang_usetxtbox_reply": "Režim odpovězení. Pro vymazání stiskněte Ctrl+Shift+C.",
|
||||||
"lang_cards_check": " kontrolovat",
|
"lang_cards_check": " kontrolovat",
|
||||||
@@ -136,7 +140,11 @@
|
|||||||
"lang_layout_nodata": "[Žádná data]<br>Obnovte stránku klávesami F5/⌘+R",
|
"lang_layout_nodata": "[Žádná data]<br>Obnovte stránku klávesami F5/⌘+R",
|
||||||
"lang_layout_dm": "Přímá zpráva",
|
"lang_layout_dm": "Přímá zpráva",
|
||||||
"lang_layout_webviewmode": "Preferovat WebView",
|
"lang_layout_webviewmode": "Preferovat WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"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_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Znovusdílení",
|
"lang_misskeyparse_renote": "Znovusdílení",
|
||||||
"lang_misskeyparse_renoteqt": "Renotování",
|
"lang_misskeyparse_renoteqt": "Renotování",
|
||||||
"lang_misskeyparse_reaction": "Reakce",
|
"lang_misskeyparse_reaction": "Reakce",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reagoval/a na váš následující příspěvek.",
|
"lang_misskeyparse_reacted": " reagoval/a na váš následující příspěvek.",
|
||||||
"lang_setting_time": "Časový formát: {{set}}",
|
"lang_setting_time": "Časový formát: {{set}}",
|
||||||
"lang_setting_theme": "Motiv: {{set}}",
|
"lang_setting_theme": "Motiv: {{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Citlivý obsah: {{set}}",
|
"lang_setting_nsfw": "Citlivý obsah: {{set}}",
|
||||||
"lang_setting_cw": "Varování: {{set}}",
|
"lang_setting_cw": "Varování: {{set}}",
|
||||||
"lang_setting_cwtext": "Výchozí text varování: {{set}}",
|
"lang_setting_cwtext": "Výchozí text varování: {{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Odskoušet oznámení",
|
"nntest": "Odskoušet oznámení",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimální šířka TweetDeck prohlížeče",
|
"fixwidth": "Minimální šířka TweetDeck prohlížeče",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Písmo",
|
"font": "Písmo",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -45,17 +46,24 @@
|
|||||||
"themeSel": "Vybrat motiv",
|
"themeSel": "Vybrat motiv",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Edit and add custom themes",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Color scheme",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
"text": "Text color",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Add new",
|
"add_new": "Add new",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "About this theme",
|
"desc": "About this theme",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Drag here to upload",
|
||||||
|
"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",
|
"close": "Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_follow": "Follow",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_endorse": "Feature on profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Delete this",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -131,13 +135,17 @@
|
|||||||
"lang_layout_linkana": "Auto Link Analyzer",
|
"lang_layout_linkana": "Auto Link Analyzer",
|
||||||
"lang_layout_linkanades": "Auto link analyzer",
|
"lang_layout_linkanades": "Auto link analyzer",
|
||||||
"lang_layout_tts": "Text to speech ",
|
"lang_layout_tts": "Text to speech ",
|
||||||
"lang_layout_reconnect": "Reload this column",
|
"lang_layout_reconnect": "Reload",
|
||||||
"lang_layout_headercolor": "Header color of this column",
|
"lang_layout_headercolor": "Header color of this column",
|
||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Direct Message",
|
"lang_layout_dm": "Direct Message",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Prefer WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_deleteColumn": "Delete this column",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reaction",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Time format:{{set}}",
|
||||||
"lang_setting_theme": "Theme:{{set}}",
|
"lang_setting_theme": "Theme:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Notification test",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Minimum width of TweetDeck browser",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Font",
|
"font": "Font",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -43,19 +44,26 @@
|
|||||||
"srcUrl": "Search engine",
|
"srcUrl": "Search engine",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Select theme",
|
"themeSel": "Select theme",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Edit and add themes",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Color scheme",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
"text": "Text color",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Add new",
|
"add_new": "Add new",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "About this theme",
|
"desc": "About this theme",
|
||||||
@@ -101,8 +109,8 @@
|
|||||||
"or": "or",
|
"or": "or",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Height of images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation of timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
|
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"list": "Accountliste",
|
"list": "Konten",
|
||||||
"back": "Zurück",
|
"back": "Zurück",
|
||||||
"add": "Konto hinzufügen",
|
"add": "Konto hinzufügen",
|
||||||
"addAcct": "Fill the instance domain (like mastodon.social)",
|
"addAcct": "Geben Sie die Instanz-Domain ein (wie mastodon.social)",
|
||||||
"codesetupwarn": "Check if TheDesk is not working on Windows, you want to login Pleroma servers, you cannot login when it checked.",
|
"codesetupwarn": "Check if TheDesk is not working on Windows, you want to login Pleroma servers, you cannot login when it checked.",
|
||||||
"codesetup": "Code-Setup",
|
"codesetup": "Code-Setup",
|
||||||
"mainacct": "Hauptkonto",
|
"mainacct": "Hauptkonto",
|
||||||
@@ -21,5 +21,5 @@
|
|||||||
"misskeylogin": "Lies die <a href=\"https://thedesk.top/how-to-misskey-login.html\">Doku (japanisch)</a> um dich bei Misskey einzuloggen.",
|
"misskeylogin": "Lies die <a href=\"https://thedesk.top/how-to-misskey-login.html\">Doku (japanisch)</a> um dich bei Misskey einzuloggen.",
|
||||||
"nodata": "Keine Daten",
|
"nodata": "Keine Daten",
|
||||||
"accessTokenSetup": "Benutze Zugangs-Token zum Anmelden (Klicke nach Ausfüllen nicht den Code, sondern den Access-Token im Kästchen: Erweitert)",
|
"accessTokenSetup": "Benutze Zugangs-Token zum Anmelden (Klicke nach Ausfüllen nicht den Code, sondern den Access-Token im Kästchen: Erweitert)",
|
||||||
"haveExported": "Having the exported file of TheDesk, click here to jump setting page"
|
"haveExported": "Haben Sie eine exportierte Datei von TheDesk, klicken Sie hier für die Einstellungen"
|
||||||
}
|
}
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Zum Hochladen hier her ziehen",
|
"draghere": "Zum Hochladen hier her ziehen",
|
||||||
|
"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": "Schließen",
|
"close": "Schließen",
|
||||||
"webSrc": "Suche im Internet",
|
"webSrc": "Suche im Internet",
|
||||||
"tsSrc": "Bei Tootsearch suchen",
|
"tsSrc": "Bei Tootsearch suchen",
|
||||||
@@ -20,8 +22,8 @@
|
|||||||
"yes": "Ja",
|
"yes": "Ja",
|
||||||
"temp": "Dateien anhängen",
|
"temp": "Dateien anhängen",
|
||||||
"nothing": "Keine",
|
"nothing": "Keine",
|
||||||
"stamp": "Stamp",
|
"stamp": "Stempel",
|
||||||
"stampWarn": "Your acct(aa@bb.cc) is printed on the right-bottom of the uploaded image",
|
"stampWarn": "Ihr acct(aa@bb.cc) wird rechts unten des hochgeladenen Bildes gedruckt",
|
||||||
"vis": "Status Privatsphäre anpassen",
|
"vis": "Status Privatsphäre anpassen",
|
||||||
"cwtext": "Warntext",
|
"cwtext": "Warntext",
|
||||||
"selectVis": "Status Privatsphäre anpassen",
|
"selectVis": "Status Privatsphäre anpassen",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis vom Werkzeugen",
|
"thingsEmoji": "Emojis vom Werkzeugen",
|
||||||
"symbolEmoji": "Emojis von Symbolen",
|
"symbolEmoji": "Emojis von Symbolen",
|
||||||
"flagsEmoji": "Emojis der Flaggen",
|
"flagsEmoji": "Emojis der Flaggen",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Umfrage",
|
"poll": "Umfrage",
|
||||||
"pollDdisabled": "Umfragen: Deaktiviert",
|
"pollDdisabled": "Umfragen: Deaktiviert",
|
||||||
"pollProvider": "Anbieter von Umfragen",
|
"pollProvider": "Anbieter von Umfragen",
|
||||||
@@ -75,7 +78,7 @@
|
|||||||
"toots": "Tröts",
|
"toots": "Tröts",
|
||||||
"follow": "Folgen",
|
"follow": "Folgen",
|
||||||
"follower": "Abonnenten",
|
"follower": "Abonnenten",
|
||||||
"utlColumn": "Show as a column",
|
"utlColumn": "Als Spalte anzeigen",
|
||||||
"timeline": "Verlauf",
|
"timeline": "Verlauf",
|
||||||
"operateOtherAcct": "Cross-Account",
|
"operateOtherAcct": "Cross-Account",
|
||||||
"list": "Liste",
|
"list": "Liste",
|
||||||
@@ -139,7 +142,7 @@
|
|||||||
"filterWord": "Filterwörter",
|
"filterWord": "Filterwörter",
|
||||||
"degree": "Kontexte filtern",
|
"degree": "Kontexte filtern",
|
||||||
"conver": "Gespräche",
|
"conver": "Gespräche",
|
||||||
"prof": "Profiles",
|
"prof": "Profile",
|
||||||
"option": "Einstellungen",
|
"option": "Einstellungen",
|
||||||
"matchWord": "Ganze Wörter",
|
"matchWord": "Ganze Wörter",
|
||||||
"warnMatchWord": "Schön für lateinische Sprachen",
|
"warnMatchWord": "Schön für lateinische Sprachen",
|
||||||
@@ -184,5 +187,5 @@
|
|||||||
"acctManDesc": "Fügen Sie weitere Konten hinzu und loggen Sie sie aus.",
|
"acctManDesc": "Fügen Sie weitere Konten hinzu und loggen Sie sie aus.",
|
||||||
"settingDesc": "Hier sind sehr, sehr viele Einstellungen. Du könntest gar nicht alles ausprobieren!",
|
"settingDesc": "Hier sind sehr, sehr viele Einstellungen. Du könntest gar nicht alles ausprobieren!",
|
||||||
"nanoDescPlus": "Mini-Fenster-Klient (experimentell)",
|
"nanoDescPlus": "Mini-Fenster-Klient (experimentell)",
|
||||||
"menuDesc": "All daily TheDesk and Mastodon tuning like <b>add and sort columns</b>, <b>list and filter check</b>."
|
"menuDesc": "Alle täglichen TheDesk und Mastodon-Einstellungen wie <b>hinzufügen und sortieren von Spalten</b>, <b>Liste und Filter prüfen</b>."
|
||||||
}
|
}
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Weiter mit Senden",
|
"lang_post_btn3": "Weiter mit Senden",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "Retry",
|
"lang_post_retry": "Retry",
|
||||||
|
"lang_post_offline": "Add to the drafts because of offline",
|
||||||
"lang_status_favWarn": "Es braucht einen Moment, um ein entferntes Tröt zu favorisieren.",
|
"lang_status_favWarn": "Es braucht einen Moment, um ein entferntes Tröt zu favorisieren.",
|
||||||
"lang_status_btWarn": "Es braucht einen Moment, um ein entferntes Tröt zu verstärken.",
|
"lang_status_btWarn": "Es braucht einen Moment, um ein entferntes Tröt zu verstärken.",
|
||||||
"lang_status_follow": "Folgen",
|
"lang_status_follow": "Folgen",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Auf dem Profil zeigen",
|
"lang_status_endorse": "Auf dem Profil zeigen",
|
||||||
"lang_status_followers": "Folgende",
|
"lang_status_followers": "Folgende",
|
||||||
"lang_status_active": "Letzter Status",
|
"lang_status_active": "Letzter Status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Diesen Tröt löschen",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Antwortmodus. Strg+Umschalt+C zum Löschen.",
|
"lang_usetxtbox_reply": "Antwortmodus. Strg+Umschalt+C zum Löschen.",
|
||||||
"lang_cards_check": " überprüfen",
|
"lang_cards_check": " überprüfen",
|
||||||
@@ -136,7 +140,11 @@
|
|||||||
"lang_layout_nodata": "[Keine Daten]<br>F5/⌘+R zum Neu laden",
|
"lang_layout_nodata": "[Keine Daten]<br>F5/⌘+R zum Neu laden",
|
||||||
"lang_layout_dm": "Direkte Nachricht",
|
"lang_layout_dm": "Direkte Nachricht",
|
||||||
"lang_layout_webviewmode": "Web-Ansicht bevorzugen",
|
"lang_layout_webviewmode": "Web-Ansicht bevorzugen",
|
||||||
"lang_excluded": "Ausgeschlossene Benachrichtigungsart",
|
"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_excludingbt": "BT-Modus anzeigen (aus/kein BT/Nur BT)",
|
"lang_layout_excludingbt": "BT-Modus anzeigen (aus/kein BT/Nur BT)",
|
||||||
"lang_layout_leftFold": "Nach links Stapeln",
|
"lang_layout_leftFold": "Nach links Stapeln",
|
||||||
"lang_layout_leftUnfold": "Rechts Anheften",
|
"lang_layout_leftUnfold": "Rechts Anheften",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Benachrichtigungen dieses Benutzers anzeigen",
|
"lang_parse_notffilter": "Benachrichtigungen dieses Benutzers anzeigen",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Weiterleiten",
|
"lang_misskeyparse_renote": "Weiterleiten",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaktion",
|
"lang_misskeyparse_reaction": "Reaktion",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " hat auf Ihren folgenden Beitrag reagiert.",
|
"lang_misskeyparse_reacted": " hat auf Ihren folgenden Beitrag reagiert.",
|
||||||
"lang_setting_time": "Zeitformat:{{set}}",
|
"lang_setting_time": "Zeitformat:{{set}}",
|
||||||
"lang_setting_theme": "Design:{{set}}",
|
"lang_setting_theme": "Design:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "NSFW:{{set}}",
|
"lang_setting_nsfw": "NSFW:{{set}}",
|
||||||
"lang_setting_cw": "NSFW:{{set}}",
|
"lang_setting_cw": "NSFW:{{set}}",
|
||||||
"lang_setting_cwtext": "Standard-NSFW-Text:{{set}}",
|
"lang_setting_cwtext": "Standard-NSFW-Text:{{set}}",
|
||||||
|
@@ -13,8 +13,8 @@
|
|||||||
"setlang": "Sprachen",
|
"setlang": "Sprachen",
|
||||||
"backup": "Import und Export von Einstellungen",
|
"backup": "Import und Export von Einstellungen",
|
||||||
"backupWarn": "If you got a error when you choose the file, please paste the strings printed when you open the file and click import",
|
"backupWarn": "If you got a error when you choose the file, please paste the strings printed when you open the file and click import",
|
||||||
"import": "Import",
|
"import": "Importieren",
|
||||||
"export": "Export",
|
"export": "Exportieren",
|
||||||
"hardwareAcceleration": "Hardwarebeschleunigung deaktivieren",
|
"hardwareAcceleration": "Hardwarebeschleunigung deaktivieren",
|
||||||
"hardwareAccelerationWarn": "Automatischer Neustart",
|
"hardwareAccelerationWarn": "Automatischer Neustart",
|
||||||
"theme": "Designs",
|
"theme": "Designs",
|
||||||
@@ -24,38 +24,46 @@
|
|||||||
"nativenotf": "System Benachrichtigungen",
|
"nativenotf": "System Benachrichtigungen",
|
||||||
"nnwarn": "Dies funktioniert nicht mit der Portablen Windows Version.",
|
"nnwarn": "Dies funktioniert nicht mit der Portablen Windows Version.",
|
||||||
"nntest": "Benachrichtigungen testen",
|
"nntest": "Benachrichtigungen testen",
|
||||||
"minwidth": "Minimale Breite der Spalten",
|
"width": "Spaltenbreite",
|
||||||
"minwidthwarn": "Die Scroll-Leiste wird angezeigt, wenn Spalten breiter als das Fenster sind.",
|
"widthwarn": "Die Bildlaufleiste wird angezeigt, wenn die Fenstergröße größer als die Spaltenanzahl ist.",
|
||||||
"fixwidth": "Minimale Breite des TweetDeck-Browsers",
|
"fixwidth": "Minimale Breite des TweetDeck-Browsers",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Abstand zwischen Zeitleisten",
|
||||||
"above": "über",
|
"above": "über",
|
||||||
"font": "Schriftart",
|
"font": "Schriftart",
|
||||||
"fontwarn": "Wählen Sie Ihre Lieblingsschrift. 'Select'(nur Windows/ macOS)",
|
"fontwarn": "Wählen Sie Ihre Lieblingsschrift. 'Select'(nur Windows/ macOS)",
|
||||||
"fontsize": "Schriftgröße",
|
"fontsize": "Schriftgröße",
|
||||||
"savefolder": "Ordner zum Speichern",
|
"savefolder": "Ordner zum Speichern",
|
||||||
"savefolderwarn": "TheDesk verwendet diesen Ordner, wenn es versucht Bilder zu speichern oder Screenshots zu machen.",
|
"savefolderwarn": "TheDesk verwendet diesen Ordner, wenn es versucht Bilder zu speichern oder Screenshots zu machen.",
|
||||||
"useragent": "User agent",
|
"useragent": "User-Agent",
|
||||||
"useragentWarn": "Restart when changed",
|
"useragentWarn": "Neustart bei Änderung",
|
||||||
"frame": "Window frame",
|
"frame": "Fensterrahmen",
|
||||||
"frameWarn": "If 'off', the window looks cool.",
|
"frameWarn": "If 'off', the window looks cool.",
|
||||||
"downloadWin": "Versioning(o Windows downloader)",
|
"downloadWin": "Versioning(o Windows downloader)",
|
||||||
"absolute": "Absoluter Wert",
|
"absolute": "Absoluter Wert",
|
||||||
"srcUrl": "Search engine",
|
"srcUrl": "Suchmaschine",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Design auswählen",
|
"themeSel": "Design auswählen",
|
||||||
"customtheme": "Bearbeiten und hinzufügen von eigenen Designs",
|
"customtheme": "Bearbeiten und hinzufügen von eigenen Designs",
|
||||||
"customthemeDirection": "Farbschema",
|
"customthemeDirection": "Farbschema",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Erweiterte Einstellungen",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Kopieren von",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Hintergrundfarbe",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Hintergrundfarbe",
|
|
||||||
"secondarycolor": "Hintergrund der Komponenten",
|
|
||||||
"text": "Textfarbe",
|
"text": "Textfarbe",
|
||||||
"accent": "Hintergrund des Boosts",
|
"accent": "Hintergrund 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)",
|
||||||
"add_new": "Neues hinzufügen",
|
"add_new": "Neues hinzufügen",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "Über dieses Design",
|
"desc": "Über dieses Design",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Drag here to upload",
|
||||||
|
"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",
|
"close": "Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_follow": "Follow",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_endorse": "Feature on profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Delete this",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -131,13 +135,17 @@
|
|||||||
"lang_layout_linkana": "Auto Link Analyzer",
|
"lang_layout_linkana": "Auto Link Analyzer",
|
||||||
"lang_layout_linkanades": "Auto link analyzer",
|
"lang_layout_linkanades": "Auto link analyzer",
|
||||||
"lang_layout_tts": "Text to speech ",
|
"lang_layout_tts": "Text to speech ",
|
||||||
"lang_layout_reconnect": "Reload this column",
|
"lang_layout_reconnect": "Reload",
|
||||||
"lang_layout_headercolor": "Header color of this column",
|
"lang_layout_headercolor": "Header color of this column",
|
||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Direct Message",
|
"lang_layout_dm": "Direct Message",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Prefer WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_deleteColumn": "Delete this column",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reaction",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Time format:{{set}}",
|
||||||
"lang_setting_theme": "Theme:{{set}}",
|
"lang_setting_theme": "Theme:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Notification test",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Minimum width of TweetDeck browser",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Font",
|
"font": "Font",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -43,19 +44,26 @@
|
|||||||
"srcUrl": "Search engine",
|
"srcUrl": "Search engine",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Select theme",
|
"themeSel": "Select theme",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Edit and add themes",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Color scheme",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
"text": "Text color",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Add new",
|
"add_new": "Add new",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "About this theme",
|
"desc": "About this theme",
|
||||||
@@ -101,8 +109,8 @@
|
|||||||
"or": "or",
|
"or": "or",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Height of images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation of timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "crwdns3058:0crwdne3058:0",
|
"draghere": "crwdns3058:0crwdne3058:0",
|
||||||
|
"nowOffline": "crwdns4548:0crwdne4548:0",
|
||||||
|
"reOnline": "crwdns4550:0crwdne4550:0",
|
||||||
"close": "crwdns3060:0crwdne3060:0",
|
"close": "crwdns3060:0crwdne3060:0",
|
||||||
"webSrc": "crwdns4451:0crwdne4451:0",
|
"webSrc": "crwdns4451:0crwdne4451:0",
|
||||||
"tsSrc": "crwdns4453:0crwdne4453:0",
|
"tsSrc": "crwdns4453:0crwdne4453:0",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "crwdns3140:0crwdne3140:0",
|
"thingsEmoji": "crwdns3140:0crwdne3140:0",
|
||||||
"symbolEmoji": "crwdns3142:0crwdne3142:0",
|
"symbolEmoji": "crwdns3142:0crwdne3142:0",
|
||||||
"flagsEmoji": "crwdns3144:0crwdne3144:0",
|
"flagsEmoji": "crwdns3144:0crwdne3144:0",
|
||||||
|
"draft": "crwdns4540:0crwdne4540:0",
|
||||||
"poll": "crwdns3146:0crwdne3146:0",
|
"poll": "crwdns3146:0crwdne3146:0",
|
||||||
"pollDdisabled": "crwdns3148:0crwdne3148:0",
|
"pollDdisabled": "crwdns3148:0crwdne3148:0",
|
||||||
"pollProvider": "crwdns3150:0crwdne3150:0",
|
"pollProvider": "crwdns3150:0crwdne3150:0",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "crwdns3538:0crwdne3538:0",
|
"lang_post_btn3": "crwdns3538:0crwdne3538:0",
|
||||||
"lang_post_unfinishedMedia": "crwdns4480:0crwdne4480:0",
|
"lang_post_unfinishedMedia": "crwdns4480:0crwdne4480:0",
|
||||||
"lang_post_retry": "crwdns4482:0crwdne4482:0",
|
"lang_post_retry": "crwdns4482:0crwdne4482:0",
|
||||||
|
"lang_post_offline": "crwdns4552:0crwdne4552:0",
|
||||||
"lang_status_favWarn": "crwdns3540:0crwdne3540:0",
|
"lang_status_favWarn": "crwdns3540:0crwdne3540:0",
|
||||||
"lang_status_btWarn": "crwdns3542:0crwdne3542:0",
|
"lang_status_btWarn": "crwdns3542:0crwdne3542:0",
|
||||||
"lang_status_follow": "crwdns3544:0crwdne3544:0",
|
"lang_status_follow": "crwdns3544:0crwdne3544:0",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "crwdns3566:0crwdne3566:0",
|
"lang_status_endorse": "crwdns3566:0crwdne3566:0",
|
||||||
"lang_status_followers": "crwdns3568:0crwdne3568:0",
|
"lang_status_followers": "crwdns3568:0crwdne3568:0",
|
||||||
"lang_status_active": "crwdns3570:0crwdne3570:0",
|
"lang_status_active": "crwdns3570:0crwdne3570:0",
|
||||||
|
"lang_secure_draft": "crwdns4542:0crwdne4542:0",
|
||||||
|
"lang_secure_useThis": "crwdns4544:0crwdne4544:0",
|
||||||
|
"lang_secure_deleteThis": "crwdns4546:0crwdne4546:0",
|
||||||
"lang_suggest_nodata": "crwdns3572:0crwdne3572:0",
|
"lang_suggest_nodata": "crwdns3572:0crwdne3572:0",
|
||||||
"lang_usetxtbox_reply": "crwdns3574:0crwdne3574:0",
|
"lang_usetxtbox_reply": "crwdns3574:0crwdne3574:0",
|
||||||
"lang_cards_check": "crwdns3576:0crwdne3576:0",
|
"lang_cards_check": "crwdns3576:0crwdne3576:0",
|
||||||
@@ -136,7 +140,11 @@
|
|||||||
"lang_layout_nodata": "crwdns3656:0crwdne3656:0",
|
"lang_layout_nodata": "crwdns3656:0crwdne3656:0",
|
||||||
"lang_layout_dm": "crwdns3658:0crwdne3658:0",
|
"lang_layout_dm": "crwdns3658:0crwdne3658:0",
|
||||||
"lang_layout_webviewmode": "crwdns3660:0crwdne3660:0",
|
"lang_layout_webviewmode": "crwdns3660:0crwdne3660:0",
|
||||||
"lang_excluded": "crwdns3662:0crwdne3662:0",
|
"lang_layout_excluded": "crwdns4508:0crwdne4508:0",
|
||||||
|
"lang_layout_mention": "crwdns4510:0crwdne4510:0",
|
||||||
|
"lang_layout_fav": "crwdns4512:0crwdne4512:0",
|
||||||
|
"lang_layout_bt": "crwdns4514:0crwdne4514:0",
|
||||||
|
"lang_layout_poll": "crwdns4516:0crwdne4516:0",
|
||||||
"lang_layout_excludingbt": "crwdns3664:0crwdne3664:0",
|
"lang_layout_excludingbt": "crwdns3664:0crwdne3664:0",
|
||||||
"lang_layout_leftFold": "crwdns3666:0crwdne3666:0",
|
"lang_layout_leftFold": "crwdns3666:0crwdne3666:0",
|
||||||
"lang_layout_leftUnfold": "crwdns3668:0crwdne3668:0",
|
"lang_layout_leftUnfold": "crwdns3668:0crwdne3668:0",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "crwdns4388:0crwdne4388:0",
|
"lang_parse_html": "crwdns4388:0crwdne4388:0",
|
||||||
"lang_parse_notffilter": "crwdns3802:0crwdne3802:0",
|
"lang_parse_notffilter": "crwdns3802:0crwdne3802:0",
|
||||||
"lang_parse_hidden": "crwdns4498:0crwdne4498:0",
|
"lang_parse_hidden": "crwdns4498:0crwdne4498:0",
|
||||||
|
"lang_parse_disconnected": "crwdns4538:0crwdne4538:0",
|
||||||
"lang_misskeyparse_renote": "crwdns3804:0crwdne3804:0",
|
"lang_misskeyparse_renote": "crwdns3804:0crwdne3804:0",
|
||||||
"lang_misskeyparse_renoteqt": "crwdns3806:0crwdne3806:0",
|
"lang_misskeyparse_renoteqt": "crwdns3806:0crwdne3806:0",
|
||||||
"lang_misskeyparse_reaction": "crwdns3808:0crwdne3808:0",
|
"lang_misskeyparse_reaction": "crwdns3808:0crwdne3808:0",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": "crwdns3826:0crwdne3826:0",
|
"lang_misskeyparse_reacted": "crwdns3826:0crwdne3826:0",
|
||||||
"lang_setting_time": "crwdns3828:0{{set}}crwdne3828:0",
|
"lang_setting_time": "crwdns3828:0{{set}}crwdne3828:0",
|
||||||
"lang_setting_theme": "crwdns3830:0{{set}}crwdne3830:0",
|
"lang_setting_theme": "crwdns3830:0{{set}}crwdne3830:0",
|
||||||
|
"lang_setting_compat": "crwdns4518:0crwdne4518:0",
|
||||||
"lang_setting_nsfw": "crwdns3832:0{{set}}crwdne3832:0",
|
"lang_setting_nsfw": "crwdns3832:0{{set}}crwdne3832:0",
|
||||||
"lang_setting_cw": "crwdns3834:0{{set}}crwdne3834:0",
|
"lang_setting_cw": "crwdns3834:0{{set}}crwdne3834:0",
|
||||||
"lang_setting_cwtext": "crwdns3836:0{{set}}crwdne3836:0",
|
"lang_setting_cwtext": "crwdns3836:0{{set}}crwdne3836:0",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "crwdns3946:0crwdne3946:0",
|
"nativenotf": "crwdns3946:0crwdne3946:0",
|
||||||
"nnwarn": "crwdns3948:0crwdne3948:0",
|
"nnwarn": "crwdns3948:0crwdne3948:0",
|
||||||
"nntest": "crwdns3950:0crwdne3950:0",
|
"nntest": "crwdns3950:0crwdne3950:0",
|
||||||
"minwidth": "crwdns3952:0crwdne3952:0",
|
"width": "crwdns4502:0crwdne4502:0",
|
||||||
"minwidthwarn": "crwdns3954:0crwdne3954:0",
|
"widthwarn": "crwdns4504:0crwdne4504:0",
|
||||||
"fixwidth": "crwdns3956:0crwdne3956:0",
|
"fixwidth": "crwdns3956:0crwdne3956:0",
|
||||||
"fixwidthwarn": "crwdns3958:0crwdne3958:0",
|
"fixwidthwarn": "crwdns3958:0crwdne3958:0",
|
||||||
|
"margin": "crwdns4506:0crwdne4506:0",
|
||||||
"above": "crwdns3960:0crwdne3960:0",
|
"above": "crwdns3960:0crwdne3960:0",
|
||||||
"font": "crwdns3962:0crwdne3962:0",
|
"font": "crwdns3962:0crwdne3962:0",
|
||||||
"fontwarn": "crwdns4360:0crwdne4360:0",
|
"fontwarn": "crwdns4360:0crwdne4360:0",
|
||||||
@@ -47,15 +48,22 @@
|
|||||||
"customthemeDirection": "crwdns3978:0crwdne3978:0",
|
"customthemeDirection": "crwdns3978:0crwdne3978:0",
|
||||||
"advanced": "crwdns4326:0crwdne4326:0",
|
"advanced": "crwdns4326:0crwdne4326:0",
|
||||||
"advancedWarn": "crwdns4328:0crwdne4328:0",
|
"advancedWarn": "crwdns4328:0crwdne4328:0",
|
||||||
"active": "crwdns4330:0crwdne4330:0",
|
"use": "crwdns4520:0crwdne4520:0",
|
||||||
"modal": "crwdns4332:0crwdne4332:0",
|
"copyFrom": "crwdns4522:0crwdne4522:0",
|
||||||
"bottom": "crwdns4334:0crwdne4334:0",
|
"bg": "crwdns4524:0crwdne4524:0",
|
||||||
"postbox": "crwdns4336:0crwdne4336:0",
|
|
||||||
"subcolor": "crwdns4338:0crwdne4338:0",
|
"subcolor": "crwdns4338:0crwdne4338:0",
|
||||||
"primary": "crwdns3980:0crwdne3980:0",
|
|
||||||
"secondarycolor": "crwdns3982:0crwdne3982:0",
|
|
||||||
"text": "crwdns3984:0crwdne3984:0",
|
"text": "crwdns3984:0crwdne3984:0",
|
||||||
"accent": "crwdns3986:0crwdne3986:0",
|
"accent": "crwdns3986:0crwdne3986:0",
|
||||||
|
"modal": "crwdns4332:0crwdne4332:0",
|
||||||
|
"modalFooter": "crwdns4526:0crwdne4526:0",
|
||||||
|
"thirdColor": "crwdns4528:0crwdne4528:0",
|
||||||
|
"forthColor": "crwdns4530:0crwdne4530:0",
|
||||||
|
"bottom": "crwdns4334:0crwdne4334:0",
|
||||||
|
"emphasized": "crwdns4532:0crwdne4532:0",
|
||||||
|
"postbox": "crwdns4336:0crwdne4336:0",
|
||||||
|
"active": "crwdns4330:0crwdne4330:0",
|
||||||
|
"selected": "crwdns4534:0crwdne4534:0",
|
||||||
|
"selectedWithShare": "crwdns4536:0crwdne4536:0",
|
||||||
"add_new": "crwdns3988:0crwdne3988:0",
|
"add_new": "crwdns3988:0crwdne3988:0",
|
||||||
"name": "crwdns3990:0crwdne3990:0",
|
"name": "crwdns3990:0crwdne3990:0",
|
||||||
"desc": "crwdns3992:0crwdne3992:0",
|
"desc": "crwdns3992:0crwdne3992:0",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere":"Drag here to upload",
|
"draghere":"Drag here to upload",
|
||||||
|
"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",
|
"close":"Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji":"Emojis of tools",
|
"thingsEmoji":"Emojis of tools",
|
||||||
"symbolEmoji":"Emojis of symbols",
|
"symbolEmoji":"Emojis of symbols",
|
||||||
"flagsEmoji":"Emojis of flags",
|
"flagsEmoji":"Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll":"Poll",
|
"poll":"Poll",
|
||||||
"pollDdisabled":"Polls: Disabled",
|
"pollDdisabled":"Polls: Disabled",
|
||||||
"pollProvider":"Provider of Poll",
|
"pollProvider":"Provider of Poll",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_follow": "Follow",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_endorse": "Feature on profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Delete this",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -226,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reaction",
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
"list": "Lista de cuentas",
|
"list": "Lista de cuentas",
|
||||||
"back": "Volver",
|
"back": "Volver",
|
||||||
"add": "Agregar una cuenta",
|
"add": "Agregar una cuenta",
|
||||||
"addAcct": "Fill the instance domain (like mastodon.social)",
|
"addAcct": "Ingresá el dominio de la instancia (ej. mastodon.social)",
|
||||||
"codesetupwarn": "No seleccionar para saltar el pegado de código (iniciá sesión de Mastodon en Windows o macOS) (Recomendado: pcheck)",
|
"codesetupwarn": "No seleccionar para saltar el pegado de código (iniciá sesión de Mastodon en Windows o macOS) (Recomendado: pcheck)",
|
||||||
"codesetup": "Configuración de código",
|
"codesetup": "Configuración de código",
|
||||||
"mainacct": "Establecer una cuenta",
|
"mainacct": "Establecer una cuenta",
|
||||||
@@ -20,6 +20,6 @@
|
|||||||
"thisismisskey": "Iniciar sesión con Misskey",
|
"thisismisskey": "Iniciar sesión con Misskey",
|
||||||
"misskeylogin": "Leé <a href=\"https://docs.thedesk.top/\">la documentación (en japonés)</a> para usar Misskey.",
|
"misskeylogin": "Leé <a href=\"https://docs.thedesk.top/\">la documentación (en japonés)</a> para usar Misskey.",
|
||||||
"nodata": "Sin datos",
|
"nodata": "Sin datos",
|
||||||
"accessTokenSetup": "Use access token to login(click after fill not code but access-token in box: Advanced)",
|
"accessTokenSetup": "Usar token de acceso para iniciar sesión (hacer clic después de completar no el código sino el token de acceso en la casilla: Avanzado)",
|
||||||
"haveExported": "Having the exported file of TheDesk, click here to jump setting page"
|
"haveExported": "Teniendo el archivo exportado de TheDesk, hacé clic acá para ir a la página de opciones"
|
||||||
}
|
}
|
@@ -1,8 +1,10 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Arrastrá y soltá acá para subir",
|
"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...",
|
||||||
"close": "Cerrar",
|
"close": "Cerrar",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Buscar en la Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Buscar en tootsearch",
|
||||||
"showSelectProf": "Mostrar perfil de la cuenta seleccionada",
|
"showSelectProf": "Mostrar perfil de la cuenta seleccionada",
|
||||||
"closethisbox": "Cerrar esta caja",
|
"closethisbox": "Cerrar esta caja",
|
||||||
"toot": "Tootear",
|
"toot": "Tootear",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Herramientas",
|
"thingsEmoji": "Herramientas",
|
||||||
"symbolEmoji": "Símbolos",
|
"symbolEmoji": "Símbolos",
|
||||||
"flagsEmoji": "Banderas",
|
"flagsEmoji": "Banderas",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Encuesta",
|
"poll": "Encuesta",
|
||||||
"pollDdisabled": "Encuestas: deshabilitadas",
|
"pollDdisabled": "Encuestas: deshabilitadas",
|
||||||
"pollProvider": "Proveedor de encuesta",
|
"pollProvider": "Proveedor de encuesta",
|
||||||
@@ -75,7 +78,7 @@
|
|||||||
"toots": "Toots",
|
"toots": "Toots",
|
||||||
"follow": "Seguir",
|
"follow": "Seguir",
|
||||||
"follower": "Seguidor",
|
"follower": "Seguidor",
|
||||||
"utlColumn": "Show as a column",
|
"utlColumn": "Mostrar como columna",
|
||||||
"timeline": "Línea temporal",
|
"timeline": "Línea temporal",
|
||||||
"operateOtherAcct": "Cuenta cruzada",
|
"operateOtherAcct": "Cuenta cruzada",
|
||||||
"list": "Enlistar",
|
"list": "Enlistar",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notificaciones",
|
"notf": "Notificaciones",
|
||||||
"bookmark": "Marcadores",
|
"bookmark": "Marcadores",
|
||||||
"showThisTL": "Mostrar esta línea temporal:",
|
"showThisTL": "Mostrar esta línea temporal:",
|
||||||
"webviewWarn": "TweetDeck con TJDeck personalizado (<a href='https://gist.github.com/cutls/8787a55d2c1c53274e68a427966046a6' target='_blank'>Código</a>/<a href='https://gist.github.com/totoraj930/d1394dadb51d75666a76829f61e7280c' target='_blank'>TJDeck</a>). Los atajos de teclado te irritarán. Cuando lo sientas, revisá \"Preferir WebView\" en la parte superior de la columna.",
|
"webviewWarn": "TweetDeck con TJDeck personalizado (<a href='https://gist.github.com/cutls/8787a55d2c1c53274e68a427966046a6' target='_blank'>Código</a>/<a href='https://gist.github.com/totoraj930/d1394dadb51d75666a76829f61e7280c' target='_blank'>TJDeck</a>). Los atajos de teclado te irritarán. Cuando lo sientas, revisá 'Preferir WebView' en la parte superior de la columna.",
|
||||||
"add": "Agregar",
|
"add": "Agregar",
|
||||||
"search": "Buscar",
|
"search": "Buscar",
|
||||||
"sortSet": "Ordenar",
|
"sortSet": "Ordenar",
|
||||||
@@ -139,7 +142,7 @@
|
|||||||
"filterWord": "Palabras filtradas",
|
"filterWord": "Palabras filtradas",
|
||||||
"degree": "Filtrar contextos",
|
"degree": "Filtrar contextos",
|
||||||
"conver": "Conversaciones",
|
"conver": "Conversaciones",
|
||||||
"prof": "Profiles",
|
"prof": "Perfiles",
|
||||||
"option": "Configuración",
|
"option": "Configuración",
|
||||||
"matchWord": "Palabra completa",
|
"matchWord": "Palabra completa",
|
||||||
"warnMatchWord": "Útil para lenguas romances",
|
"warnMatchWord": "Útil para lenguas romances",
|
||||||
@@ -178,11 +181,11 @@
|
|||||||
"active": "Recientemente activo",
|
"active": "Recientemente activo",
|
||||||
"newcomer": "Recién llegados",
|
"newcomer": "Recién llegados",
|
||||||
"local_only": "Sólo local",
|
"local_only": "Sólo local",
|
||||||
"menu": "Menu",
|
"menu": "Menú",
|
||||||
"demoBottomBtns": "Guía de bienvenida",
|
"demoBottomBtns": "Guía de bienvenida",
|
||||||
"lookAtBottom": "Mirá en la parte inferior de esta ventana. Acá tenés algunas sugerencias.",
|
"lookAtBottom": "Mirá en la parte inferior de esta ventana. Acá tenés algunas sugerencias.",
|
||||||
"acctManDesc": "Agregá más cuentas y administralas.",
|
"acctManDesc": "Agregá más cuentas y administralas.",
|
||||||
"settingDesc": "Muchas configuraciones. ¡No vas a poder con todas!",
|
"settingDesc": "Muchas configuraciones. ¡No vas a poder con todas!",
|
||||||
"nanoDescPlus": "Miniventana (experimental)",
|
"nanoDescPlus": "Miniventana (experimental)",
|
||||||
"menuDesc": "All daily TheDesk and Mastodon tuning like <b>add and sort columns</b>, <b>list and filter check</b>."
|
"menuDesc": "Toda la configuración diaria de TheDesk y Mastodon, como <b>agregar y ordenar columnas</b> y <b>revisión de listas y filtros</b>."
|
||||||
}
|
}
|
@@ -60,8 +60,8 @@
|
|||||||
"lang_postimg_delete": "Hacé clic para agregar descripción, o clic secundario para eliminar esto",
|
"lang_postimg_delete": "Hacé clic para agregar descripción, o clic secundario para eliminar esto",
|
||||||
"lang_postimg_desc": "Descripción",
|
"lang_postimg_desc": "Descripción",
|
||||||
"lang_postimg_leadContext": "hacé clic secundario sobre la miniatura para eliminar esto",
|
"lang_postimg_leadContext": "hacé clic secundario sobre la miniatura para eliminar esto",
|
||||||
"lang_post_syncDetail": "Upload media synchronously",
|
"lang_post_syncDetail": "Subir multimedia sincrónicamente",
|
||||||
"lang_post_syncDetailText": "Click each picture icon to get the thumbnail. If you can get, the media you uploaded are completely processed.",
|
"lang_post_syncDetailText": "Hacé clic en cada ícono de la imagen para obtener la miniatura. Si podés obtenerla, el archivo multimedia que subiste se procesó completamente.",
|
||||||
"lang_post_tagTL": "Este toot no contiene una etiqueta predeterminada. Este toot no se mostrará en la línea temporal local. ¿Querés continuar?",
|
"lang_post_tagTL": "Este toot no contiene una etiqueta predeterminada. Este toot no se mostrará en la línea temporal local. ¿Querés continuar?",
|
||||||
"lang_post_tagVis": "Este toot (toot no público) no se muestra en la línea temporal de esta etiqueta.",
|
"lang_post_tagVis": "Este toot (toot no público) no se muestra en la línea temporal de esta etiqueta.",
|
||||||
"lang_post_cwtitle": "Alerta automática de Advertencia de contenido",
|
"lang_post_cwtitle": "Alerta automática de Advertencia de contenido",
|
||||||
@@ -69,8 +69,9 @@
|
|||||||
"lang_post_btn1": "Cancelar (no se enviará)",
|
"lang_post_btn1": "Cancelar (no se enviará)",
|
||||||
"lang_post_btn2": "Crear el texto oculto automáticamente",
|
"lang_post_btn2": "Crear el texto oculto automáticamente",
|
||||||
"lang_post_btn3": "Continuar con el envío",
|
"lang_post_btn3": "Continuar con el envío",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "El servidor no ha terminado de procesar tu archivo. Volvé a intentarlo.",
|
||||||
"lang_post_retry": "Retry",
|
"lang_post_retry": "Reintentar",
|
||||||
|
"lang_post_offline": "Add to the drafts because of offline",
|
||||||
"lang_status_favWarn": "Llevará un minuto marcar un toot remoto como favorito.",
|
"lang_status_favWarn": "Llevará un minuto marcar un toot remoto como favorito.",
|
||||||
"lang_status_btWarn": "Llevará un minuto retootear un toot remoto.",
|
"lang_status_btWarn": "Llevará un minuto retootear un toot remoto.",
|
||||||
"lang_status_follow": "Seguir",
|
"lang_status_follow": "Seguir",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Destacado en el perfil",
|
"lang_status_endorse": "Destacado en el perfil",
|
||||||
"lang_status_followers": "Seguidores",
|
"lang_status_followers": "Seguidores",
|
||||||
"lang_status_active": "Último estado",
|
"lang_status_active": "Último estado",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Eliminar este toot",
|
||||||
"lang_suggest_nodata": "Por favor, obtené la lista de emojis para mostrar sugerencias.",
|
"lang_suggest_nodata": "Por favor, obtené la lista de emojis para mostrar sugerencias.",
|
||||||
"lang_usetxtbox_reply": "Modo de respuesta. \"Ctrl\" + \"Mayús\" + \"C\" para limpiar.",
|
"lang_usetxtbox_reply": "Modo de respuesta. \"Ctrl\" + \"Mayús\" + \"C\" para limpiar.",
|
||||||
"lang_cards_check": " comprobado",
|
"lang_cards_check": " comprobado",
|
||||||
@@ -127,7 +131,7 @@
|
|||||||
"lang_layout_delthis": "Quitar esta columna",
|
"lang_layout_delthis": "Quitar esta columna",
|
||||||
"lang_layout_setthis": "Configuración de esta columna",
|
"lang_layout_setthis": "Configuración de esta columna",
|
||||||
"lang_layout_mediafil": "Filtro de medio",
|
"lang_layout_mediafil": "Filtro de medio",
|
||||||
"lang_layout_remoteOnly": "Remote only",
|
"lang_layout_remoteOnly": "Solo remoto",
|
||||||
"lang_layout_linkana": "Analizador automático de enlace",
|
"lang_layout_linkana": "Analizador automático de enlace",
|
||||||
"lang_layout_linkanades": "Analizador automático de enlace",
|
"lang_layout_linkanades": "Analizador automático de enlace",
|
||||||
"lang_layout_tts": "Texto hablado ",
|
"lang_layout_tts": "Texto hablado ",
|
||||||
@@ -136,7 +140,11 @@
|
|||||||
"lang_layout_nodata": "[Sin datos]<br>F5/⌘+R para refrescar",
|
"lang_layout_nodata": "[Sin datos]<br>F5/⌘+R para refrescar",
|
||||||
"lang_layout_dm": "Mensaje directo",
|
"lang_layout_dm": "Mensaje directo",
|
||||||
"lang_layout_webviewmode": "Preferir WebView",
|
"lang_layout_webviewmode": "Preferir WebView",
|
||||||
"lang_excluded": "Tipo de notificación excluida",
|
"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_excludingbt": "Mostrar modo de retoot (DESACTIVADO / Excluir retoots / Sólo retoots)",
|
"lang_layout_excludingbt": "Mostrar modo de retoot (DESACTIVADO / Excluir retoots / Sólo retoots)",
|
||||||
"lang_layout_leftFold": "Pegar a la izquierda",
|
"lang_layout_leftFold": "Pegar a la izquierda",
|
||||||
"lang_layout_leftUnfold": "Colocar en la derecha",
|
"lang_layout_leftUnfold": "Colocar en la derecha",
|
||||||
@@ -144,7 +152,7 @@
|
|||||||
"lang_layout_deleteColumnDesc": "Eliminar esta columna",
|
"lang_layout_deleteColumnDesc": "Eliminar esta columna",
|
||||||
"lang_layout_unread": "Sin leer",
|
"lang_layout_unread": "Sin leer",
|
||||||
"lang_layout_tagManager": "Administrador de etiqueta de línea temporal",
|
"lang_layout_tagManager": "Administrador de etiqueta de línea temporal",
|
||||||
"lang_layout_announ": "Announcement: the counter is the number of your unread announcements. If not shown, it means announcements are all marked as read.",
|
"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_sort_gothis": "Ir a esta columna",
|
"lang_sort_gothis": "Ir a esta columna",
|
||||||
"lang_sort_remthis": "Eliminar esta columna",
|
"lang_sort_remthis": "Eliminar esta columna",
|
||||||
"lang_spotify_img": "Adjuntar la tapa del álbum",
|
"lang_spotify_img": "Adjuntar la tapa del álbum",
|
||||||
@@ -166,7 +174,7 @@
|
|||||||
"lang_showontl_domain": "Dominio ",
|
"lang_showontl_domain": "Dominio ",
|
||||||
"lang_showontl_listwarn": "Seguí a este usuario para agregarlo a las listas.",
|
"lang_showontl_listwarn": "Seguí a este usuario para agregarlo a las listas.",
|
||||||
"lang_showontl_verified": "Este sitio web está verificado por su propietario en ",
|
"lang_showontl_verified": "Este sitio web está verificado por su propietario en ",
|
||||||
"lang_status_requesting": "Requesting",
|
"lang_status_requesting": "Solicitando",
|
||||||
"lang_parse_mentioned": " te respondió",
|
"lang_parse_mentioned": " te respondió",
|
||||||
"lang_parse_faved": " marcó tu toot como favorito",
|
"lang_parse_faved": " marcó tu toot como favorito",
|
||||||
"lang_parse_bted": " retooteó tu toot",
|
"lang_parse_bted": " retooteó tu toot",
|
||||||
@@ -174,7 +182,7 @@
|
|||||||
"lang_parse_polled": " hizo una encuesta",
|
"lang_parse_polled": " hizo una encuesta",
|
||||||
"lang_parse_notftime": "Enviado el",
|
"lang_parse_notftime": "Enviado el",
|
||||||
"lang_parse_cwshow": "Mostrar",
|
"lang_parse_cwshow": "Mostrar",
|
||||||
"lang_parse_cwshow_acc": "This is a post with content warning. click to show the whole content",
|
"lang_parse_cwshow_acc": "Esta es una publicación con advertencia de contenido. Hacé clic para mostrar todo el contenido",
|
||||||
"lang_parse_fulltext": "Tamaño de texto:",
|
"lang_parse_fulltext": "Tamaño de texto:",
|
||||||
"lang_parse_autofold": "Colapsado automáticamente",
|
"lang_parse_autofold": "Colapsado automáticamente",
|
||||||
"lang_parse_more": "Más",
|
"lang_parse_more": "Más",
|
||||||
@@ -221,7 +229,8 @@
|
|||||||
"lang_parse_nsfw": "medios sensibles",
|
"lang_parse_nsfw": "medios sensibles",
|
||||||
"lang_parse_html": "Mostrar HTML insertado",
|
"lang_parse_html": "Mostrar HTML insertado",
|
||||||
"lang_parse_notffilter": "Mostrar notificaciones de este usuario",
|
"lang_parse_notffilter": "Mostrar notificaciones de este usuario",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Toot citado no visible",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Republicar",
|
"lang_misskeyparse_renote": "Republicar",
|
||||||
"lang_misskeyparse_renoteqt": "Renovar",
|
"lang_misskeyparse_renoteqt": "Renovar",
|
||||||
"lang_misskeyparse_reaction": "Reacción",
|
"lang_misskeyparse_reaction": "Reacción",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reaccionó a tu siguiente entrada.",
|
"lang_misskeyparse_reacted": " reaccionó a tu siguiente entrada.",
|
||||||
"lang_setting_time": "Formato de tiempo: {{set}}",
|
"lang_setting_time": "Formato de tiempo: {{set}}",
|
||||||
"lang_setting_theme": "Tema: {{set}}",
|
"lang_setting_theme": "Tema: {{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Medios sensibles: {{set}}",
|
"lang_setting_nsfw": "Medios sensibles: {{set}}",
|
||||||
"lang_setting_cw": "Advertencia de contenido: {{set}}",
|
"lang_setting_cw": "Advertencia de contenido: {{set}}",
|
||||||
"lang_setting_cwtext": "Texto predeterminado de advertencia de contenido: {{set}}",
|
"lang_setting_cwtext": "Texto predeterminado de advertencia de contenido: {{set}}",
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
"no": "No",
|
"no": "No",
|
||||||
"none": "Ninguno",
|
"none": "Ninguno",
|
||||||
"show": "Mostrar",
|
"show": "Mostrar",
|
||||||
"hide": "Hide",
|
"hide": "Ocultar",
|
||||||
"default": "Predeterminado",
|
"default": "Predeterminado",
|
||||||
"change": "Cambiar",
|
"change": "Cambiar",
|
||||||
"select": "Seleccionar",
|
"select": "Seleccionar",
|
||||||
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Notificación nativa",
|
"nativenotf": "Notificación nativa",
|
||||||
"nnwarn": "Esto no funciona en la compilación portátil para Windows.",
|
"nnwarn": "Esto no funciona en la compilación portátil para Windows.",
|
||||||
"nntest": "Prueba de notificación",
|
"nntest": "Prueba de notificación",
|
||||||
"minwidth": "Ancho mínimo de las columnas",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "La barra de desplazamiento se mostrará cuando el tamaño de la ventana sea mayor que el de las columnas.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Ancho mínimo del explorador de TweetDeck",
|
"fixwidth": "Ancho mínimo del explorador de TweetDeck",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "por encima",
|
"above": "por encima",
|
||||||
"font": "Tipografía",
|
"font": "Tipografía",
|
||||||
"fontwarn": "Seleccioná tu tipografía favorita (sólo para Windows y macOS)",
|
"fontwarn": "Seleccioná tu tipografía favorita (sólo para Windows y macOS)",
|
||||||
@@ -36,26 +37,33 @@
|
|||||||
"savefolderwarn": "TheDesk usa esta configuración para guardar imágenes en general y capturas de pantallas.",
|
"savefolderwarn": "TheDesk usa esta configuración para guardar imágenes en general y capturas de pantallas.",
|
||||||
"useragent": "Cadena de agente de usuario",
|
"useragent": "Cadena de agente de usuario",
|
||||||
"useragentWarn": "Reiniciar cuando se cambie",
|
"useragentWarn": "Reiniciar cuando se cambie",
|
||||||
"frame": "Window frame",
|
"frame": "Marco de ventana",
|
||||||
"frameWarn": "If 'off', the window looks cool.",
|
"frameWarn": "Si está 'desactivado', la ventana se ve piola.",
|
||||||
"downloadWin": "Versioning(o Windows downloader)",
|
"downloadWin": "Versión (o Descargador de Windows)",
|
||||||
"absolute": "valor absoluto",
|
"absolute": "valor absoluto",
|
||||||
"srcUrl": "Search engine",
|
"srcUrl": "Motor de búsqueda",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} será reemplazado a la consulta.",
|
||||||
"themeSel": "Seleccionar tema",
|
"themeSel": "Seleccionar tema",
|
||||||
"customtheme": "Editar y agregar temas personalizados",
|
"customtheme": "Editar y agregar temas personalizados",
|
||||||
"customthemeDirection": "Esquema de colores",
|
"customthemeDirection": "Esquema de colores",
|
||||||
"advanced": "Configuración avanzada (6 colores adicionales)",
|
"advanced": "Configuración avanzada (6 colores adicionales)",
|
||||||
"advancedWarn": "La configuración avanzada será <i>nula</i> si no establecés nada, mientras que la configuración básica será blanca (<i>fff</i>). La configuración avanzada será restablecida si se guarda con el panel cerrado.",
|
"advancedWarn": "La configuración avanzada será <i>nula</i> si no establecés nada, mientras que la configuración básica será blanca (<i>fff</i>). La configuración avanzada será restablecida si se guarda con el panel cerrado.",
|
||||||
"active": "Fondo, botones de advertencia de contenido…",
|
"use": "Use this",
|
||||||
"modal": "Fondo de modos",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Fondo de barra inferior",
|
"bg": "Background color",
|
||||||
"postbox": "Fondo de caja de publicación y menú",
|
|
||||||
"subcolor": "Subcolor, en armonía con el color secundario",
|
"subcolor": "Subcolor, en armonía con el color secundario",
|
||||||
"primary": "Color de fondo",
|
|
||||||
"secondarycolor": "Fondo de componentes",
|
|
||||||
"text": "Color del texto",
|
"text": "Color del texto",
|
||||||
"accent": "Fondo de retoots",
|
"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)",
|
||||||
|
"bottom": "Fondo de barra inferior",
|
||||||
|
"emphasized": "Emphasized toot's background",
|
||||||
|
"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)",
|
||||||
"add_new": "Agregar nuevo",
|
"add_new": "Agregar nuevo",
|
||||||
"name": "Nombre",
|
"name": "Nombre",
|
||||||
"desc": "Acerca de este tema",
|
"desc": "Acerca de este tema",
|
||||||
@@ -167,15 +175,15 @@
|
|||||||
"linkwarn": "TheDesk guarda tus datos en el servidor thedesk.top.",
|
"linkwarn": "TheDesk guarda tus datos en el servidor thedesk.top.",
|
||||||
"connect": "Conectar",
|
"connect": "Conectar",
|
||||||
"disconnect": "Desconectar",
|
"disconnect": "Desconectar",
|
||||||
"lastFmWarn": "User name...(empty to disconnect) You cannot hide your recent play log at last.fm privacy settings.",
|
"lastFmWarn": "Nombre de usuario...(deje vacío para desconectarse) No puede ocultar su registro de reproducción reciente en la configuración de privacidad de last.fm.",
|
||||||
"templateedit": "Editar plantilla",
|
"templateedit": "Editar plantilla",
|
||||||
"templateeditwarn": "",
|
"templateeditwarn": "",
|
||||||
"template1": "Spotify: {artist}: nombre del artista // {song}: nombre del tema // {album}: nombre del álbum // {url}: dirección web a Spotify",
|
"template1": "Spotify: {artist}: nombre del artista // {song}: nombre del tema // {album}: nombre del álbum // {url}: dirección web a Spotify",
|
||||||
"template2": "macOS: {artist}: nombre del artista // {song}: nombre del tema // {album}: nombre del álbum // {genre}: género // {composer}: compositor // {hz}: frecuencia de muestreo // {bitRate}: tasa de transferencia",
|
"template2": "macOS: {artist}: nombre del artista // {song}: nombre del tema // {album}: nombre del álbum // {genre}: género // {composer}: compositor // {hz}: frecuencia de muestreo // {bitRate}: tasa de transferencia",
|
||||||
"template3": "",
|
"template3": "",
|
||||||
"postartwork": "Adjuntar tapa desde Spotify",
|
"postartwork": "Adjuntar tapa desde Spotify",
|
||||||
"searchArtwork": "If the song has no artwork, automatic complete it(macOS)",
|
"searchArtwork": "Si la canción no tiene ilustraciones, se completará automáticamente (macOS)",
|
||||||
"searchArtworkWarn": "If you nowplaying an non-artwork song, get one which seems nice through API. If you do not like the completed artwork, you can right-click it to delete.",
|
"searchArtworkWarn": "Si estás escuchando una canción sin ilustraciones, se conseguirá una que se vea bien desde la API. Si no te gusta la ilustración completada, puedes hacer clic derecho en ella para eliminarla.",
|
||||||
"tts": "Configuración de TTS (texto hablado)",
|
"tts": "Configuración de TTS (texto hablado)",
|
||||||
"bouyomi": "Conectar BouyomiChan",
|
"bouyomi": "Conectar BouyomiChan",
|
||||||
"bouyomiWarn": "Requiere: Plugin WebSocket de BouyomiChan",
|
"bouyomiWarn": "Requiere: Plugin WebSocket de BouyomiChan",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Drag here to upload",
|
||||||
|
"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",
|
"close": "Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_follow": "Follow",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_endorse": "Feature on profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Delete this",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -131,13 +135,17 @@
|
|||||||
"lang_layout_linkana": "Auto Link Analyzer",
|
"lang_layout_linkana": "Auto Link Analyzer",
|
||||||
"lang_layout_linkanades": "Auto link analyzer",
|
"lang_layout_linkanades": "Auto link analyzer",
|
||||||
"lang_layout_tts": "Text to speech ",
|
"lang_layout_tts": "Text to speech ",
|
||||||
"lang_layout_reconnect": "Reload this column",
|
"lang_layout_reconnect": "Reload",
|
||||||
"lang_layout_headercolor": "Header color of this column",
|
"lang_layout_headercolor": "Header color of this column",
|
||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Direct Message",
|
"lang_layout_dm": "Direct Message",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Prefer WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_deleteColumn": "Delete this column",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reaction",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Time format:{{set}}",
|
||||||
"lang_setting_theme": "Theme:{{set}}",
|
"lang_setting_theme": "Theme:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Notificación nativa",
|
"nativenotf": "Notificación nativa",
|
||||||
"nnwarn": "Esto no funciona en la versión portable para Windows.",
|
"nnwarn": "Esto no funciona en la versión portable para Windows.",
|
||||||
"nntest": "Prueba de notificación",
|
"nntest": "Prueba de notificación",
|
||||||
"minwidth": "Ancho mínimo de columnas",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "La barra de desplazamiento se mostrará cuando el tamaño de la ventana sea mayor que el de las columnas.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Ancho mínimo del navegador TweetDeck",
|
"fixwidth": "Ancho mínimo del navegador TweetDeck",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "arriba",
|
"above": "arriba",
|
||||||
"font": "Fuente",
|
"font": "Fuente",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -46,16 +47,23 @@
|
|||||||
"customtheme": "Editar y añadir temas personalizados",
|
"customtheme": "Editar y añadir temas personalizados",
|
||||||
"customthemeDirection": "Esquema de colores",
|
"customthemeDirection": "Esquema de colores",
|
||||||
"advanced": "Opciones avanzadas (6 colores adicionales)",
|
"advanced": "Opciones avanzadas (6 colores adicionales)",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
"text": "Text color",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Add new",
|
"add_new": "Add new",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "About this theme",
|
"desc": "About this theme",
|
||||||
@@ -101,8 +109,8 @@
|
|||||||
"or": "or",
|
"or": "or",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Height of images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation of timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Drag here to upload",
|
||||||
|
"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",
|
"close": "Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_follow": "Follow",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_endorse": "Feature on profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Delete this",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -131,13 +135,17 @@
|
|||||||
"lang_layout_linkana": "Auto Link Analyzer",
|
"lang_layout_linkana": "Auto Link Analyzer",
|
||||||
"lang_layout_linkanades": "Auto link analyzer",
|
"lang_layout_linkanades": "Auto link analyzer",
|
||||||
"lang_layout_tts": "Text to speech ",
|
"lang_layout_tts": "Text to speech ",
|
||||||
"lang_layout_reconnect": "Reload this column",
|
"lang_layout_reconnect": "Reload",
|
||||||
"lang_layout_headercolor": "Header color of this column",
|
"lang_layout_headercolor": "Header color of this column",
|
||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Direct Message",
|
"lang_layout_dm": "Direct Message",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Prefer WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_deleteColumn": "Delete this column",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reaction",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Time format:{{set}}",
|
||||||
"lang_setting_theme": "Theme:{{set}}",
|
"lang_setting_theme": "Theme:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Notification test",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Minimum width of TweetDeck browser",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Font",
|
"font": "Font",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -43,19 +44,26 @@
|
|||||||
"srcUrl": "Search engine",
|
"srcUrl": "Search engine",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Select theme",
|
"themeSel": "Select theme",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Edit and add themes",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Color scheme",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
"text": "Text color",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Add new",
|
"add_new": "Add new",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "About this theme",
|
"desc": "About this theme",
|
||||||
@@ -101,8 +109,8 @@
|
|||||||
"or": "or",
|
"or": "or",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Height of images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation of timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Faites glisser ici pour transférer",
|
"draghere": "Faites glisser ici pour transférer",
|
||||||
|
"nowOffline": "OFFLINE: all of your post is in the draft box and you should reload after re-connect to the Internet",
|
||||||
|
"reOnline": "Now we are in the Internet, you should reload...",
|
||||||
"close": "Fermer",
|
"close": "Fermer",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Suivre",
|
"lang_status_follow": "Suivre",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Recommander sur son profile",
|
"lang_status_endorse": "Recommander sur son profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Supprimer ce pouet",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -136,8 +140,12 @@
|
|||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Message direct",
|
"lang_layout_dm": "Message direct",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Prefer WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_deleteColumn": "Delete this column",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Réaction",
|
"lang_misskeyparse_reaction": "Réaction",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Time format:{{set}}",
|
||||||
"lang_setting_theme": "Thème : {{set}}",
|
"lang_setting_theme": "Thème : {{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "NSFW:{{set}}",
|
"lang_setting_nsfw": "NSFW:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -5,60 +5,68 @@
|
|||||||
"no": "Non",
|
"no": "Non",
|
||||||
"none": "Aucun",
|
"none": "Aucun",
|
||||||
"show": "Show",
|
"show": "Show",
|
||||||
"hide": "Hide",
|
"hide": "Cacher",
|
||||||
"default": "Par défaut",
|
"default": "Par défaut",
|
||||||
"change": "Modifier",
|
"change": "Modifier",
|
||||||
"select": "Select",
|
"select": "Sélectionner",
|
||||||
"env": "Préférences système",
|
"env": "Préférences système",
|
||||||
"setlang": "Langues",
|
"setlang": "Langues",
|
||||||
"backup": "Import and export of preferences",
|
"backup": "Importer et exporter les préférences",
|
||||||
"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 vous avez une erreur lorsque vous choisissez le fichier, veuillez coller les chaînes affichées lorsque vous ouvrez le fichier et cliquez sur Importer",
|
||||||
"import": "Importer",
|
"import": "Importer",
|
||||||
"export": "Exporter",
|
"export": "Exporter",
|
||||||
"hardwareAcceleration": "Disable hardware acceleration",
|
"hardwareAcceleration": "Désactiver l'accélération matérielle",
|
||||||
"hardwareAccelerationWarn": "Auto restarted",
|
"hardwareAccelerationWarn": "Redémarrage Automatique",
|
||||||
"theme": "Thèmes",
|
"theme": "Thèmes",
|
||||||
"popup": "Popup notification",
|
"popup": "Notification pop-up",
|
||||||
"popupwarn": "Hide to set \"0\"",
|
"popupwarn": "Hide to set \"0\"",
|
||||||
"s": "sec",
|
"s": "sec",
|
||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "Cela ne fonctionne pas sur la version portable pour Windows.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Notification test",
|
||||||
"minwidth": "Minimam width of columns",
|
"width": "Largeur des colonnes",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Largeur minimale du navigateur TweetDeck",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Marge entre les timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Police de caractères",
|
"font": "Police de caractères",
|
||||||
"fontwarn": "Select your favorite font to 'Select'",
|
"fontwarn": "Select your favorite font to 'Select'",
|
||||||
"fontsize": "Taille de la police de caractères",
|
"fontsize": "Taille de la police de caractères",
|
||||||
"savefolder": "Folder to save",
|
"savefolder": "Folder to save",
|
||||||
"savefolderwarn": "TheDesk uses this value when it try to save pictures or take screenshots.",
|
"savefolderwarn": "TheDesk utilise cette valeur lorsqu'il tente d'enregistrer des photos ou de prendre des captures d'écran.",
|
||||||
"useragent": "User agent",
|
"useragent": "User agent",
|
||||||
"useragentWarn": "Restart when changed",
|
"useragentWarn": "Restart when changed",
|
||||||
"frame": "Window frame",
|
"frame": "Window frame",
|
||||||
"frameWarn": "If 'off', the window looks cool.",
|
"frameWarn": "If 'off', the window looks cool.",
|
||||||
"downloadWin": "Versioning(o Windows downloader)",
|
"downloadWin": "Versioning(o Windows downloader)",
|
||||||
"absolute": "absolute value",
|
"absolute": "valeur absolue",
|
||||||
"srcUrl": "Search engine",
|
"srcUrl": "Moteur de recherche",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Select theme",
|
"themeSel": "Sélectionner un thème",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Modifier et ajouter des thèmes",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Jeu de couleurs",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Options avancées",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copier depuis",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Couleur de l'arrière-plan",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
"text": "Couleur du texte",
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of boosts",
|
||||||
"add_new": "Add new",
|
"modal": "Background of modal window",
|
||||||
"name": "Name",
|
"modalFooter": "Background of modal window's footer",
|
||||||
"desc": "About this theme",
|
"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)",
|
||||||
|
"add_new": "Ajouter",
|
||||||
|
"name": "Nom",
|
||||||
|
"desc": "À propos de ce thème",
|
||||||
"customShare": "Share this code with other TheDesk. Do not share this code with MiAS.",
|
"customShare": "Share this code with other TheDesk. Do not share this code with MiAS.",
|
||||||
"customImport": "Import of custom themes",
|
"customImport": "Import of custom themes",
|
||||||
"delete": "Supprimer",
|
"delete": "Supprimer",
|
||||||
@@ -87,7 +95,7 @@
|
|||||||
"boxno": "Open after posting",
|
"boxno": "Open after posting",
|
||||||
"tag": "Tag TL Search",
|
"tag": "Tag TL Search",
|
||||||
"tagfed": "Use federated network",
|
"tagfed": "Use federated network",
|
||||||
"taglocal": "Use local network",
|
"taglocal": "Utiliser le réseau local",
|
||||||
"via": "Afficher via",
|
"via": "Afficher via",
|
||||||
"mouseover": "Hide action buttons without mouseover",
|
"mouseover": "Hide action buttons without mouseover",
|
||||||
"mouseoverwarn": "You may feel 'mouseover' is unconfortable:(",
|
"mouseoverwarn": "You may feel 'mouseover' is unconfortable:(",
|
||||||
@@ -95,30 +103,30 @@
|
|||||||
"mvclick": "Cliquez pour afficher",
|
"mvclick": "Cliquez pour afficher",
|
||||||
"notfmarker": "Show Notification marker, red colored bell and counter(if you show a notification column.)",
|
"notfmarker": "Show Notification marker, red colored bell and counter(if you show a notification column.)",
|
||||||
"autofold": "Auto folding",
|
"autofold": "Auto folding",
|
||||||
"autofoldwarn": "TheDesk does not collapse totes of 5 characters or less. Also, when collapsing, newlines are not shown. TheDesk count only newlines as the number of lines.",
|
"autofoldwarn": "TheDesk 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": "lines",
|
"lines": "lignes",
|
||||||
"letters": "letters",
|
"letters": "lettres",
|
||||||
"or": "ou",
|
"or": "ou",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Hauteur des images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Activer OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about tooters' server. <a href=\"https://cdn.weep.me/mastodon/\">About #InstanceTicker</a> Copyright 2018 weepjp, kyori19.",
|
"tickerwarn": "Show colorful stickers about tooters' server. <a href=\"https://cdn.weep.me/mastodon/\">About #InstanceTicker</a> Copyright 2018 weepjp, kyori19.",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation des timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
"remote_img": "Get images from the remote server",
|
"remote_img": "Récupérer les images depuis le serveur distant",
|
||||||
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Son (Réponse)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Son (Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Son (Boost)",
|
||||||
"followSound": "Sound(Follow)",
|
"followSound": "Son (Follow)",
|
||||||
"customSound": "Custom sound",
|
"customSound": "Son personnalisé",
|
||||||
"post": "Posting Preferences",
|
"post": "Posting Preferences",
|
||||||
"autocw": "Alert before posting a long toot.",
|
"autocw": "Alerte avant de poster un long toot.",
|
||||||
"autocwwarn": "Show dialog whether you make too-long text hidden.",
|
"autocwwarn": "Afficher la boîte de dialogue si vous cachez un texte trop long.",
|
||||||
"defaultcw": "Default warining text",
|
"defaultcw": "Texte d'avertissement par défaut",
|
||||||
"cws": "Always CW set",
|
"cws": "Always CW set",
|
||||||
"defaultvis": "Default visibility",
|
"defaultvis": "Visibilité par défaut",
|
||||||
"public": "Public",
|
"public": "Public",
|
||||||
"unlisted": "Non listé",
|
"unlisted": "Non listé",
|
||||||
"private": "Privé",
|
"private": "Privé",
|
||||||
@@ -129,12 +137,12 @@
|
|||||||
"showurl": "Insert media URL",
|
"showurl": "Insert media URL",
|
||||||
"nourl": "Insert nothig",
|
"nourl": "Insert nothig",
|
||||||
"disabled": "Désactivé",
|
"disabled": "Désactivé",
|
||||||
"quote": "Quote format",
|
"quote": "Format des citations",
|
||||||
"simple": "Only URL",
|
"simple": "URL uniquement",
|
||||||
"mention": "URL and acct(mention to the user)",
|
"mention": "URL and acct(mention to the user)",
|
||||||
"full": "URL, text and acct(mention to the user)",
|
"full": "URL, text and acct(mention to the user)",
|
||||||
"notqt": "Disabled(Hide buttons on TLs)",
|
"notqt": "Disabled(Hide buttons on TLs)",
|
||||||
"apiQuote": "API(only some instances)",
|
"apiQuote": "API (seulement certaines instances)",
|
||||||
"showBookmarkAction": "Show a bookmarking toot button",
|
"showBookmarkAction": "Show a bookmarking toot button",
|
||||||
"main": "Default accounts of actions",
|
"main": "Default accounts of actions",
|
||||||
"mainwarn": "Main account can be set on Account Manager.",
|
"mainwarn": "Main account can be set on Account Manager.",
|
||||||
@@ -145,7 +153,7 @@
|
|||||||
"nothing": "Hidden",
|
"nothing": "Hidden",
|
||||||
"localonly": "Local Only",
|
"localonly": "Local Only",
|
||||||
"zeroWidthEmoji": "Zero-width space when inserting emojis",
|
"zeroWidthEmoji": "Zero-width space when inserting emojis",
|
||||||
"uploadCrop": "Auto scale to fit",
|
"uploadCrop": "Ajuster automatiquement la taille",
|
||||||
"uploadCropWarn": "Max long-side px. Uploaded images are converted to JPEG(from JPEG) or PNG(from others). Set 0 and the images will not be resized. Notice: if you post an animated picture like GIF, it will be converted static one.",
|
"uploadCropWarn": "Max long-side px. Uploaded images are converted to JPEG(from JPEG) or PNG(from others). Set 0 and the images will not be resized. Notice: if you post an animated picture like GIF, it will be converted static one.",
|
||||||
"keysc": "Keyboard shortcut Preferences",
|
"keysc": "Keyboard shortcut Preferences",
|
||||||
"iks": "Easy inserter",
|
"iks": "Easy inserter",
|
||||||
@@ -164,17 +172,17 @@
|
|||||||
"spotifynote1": "Click ",
|
"spotifynote1": "Click ",
|
||||||
"spotifynote2": "icon to NowPlaying",
|
"spotifynote2": "icon to NowPlaying",
|
||||||
"link": "Account Connection",
|
"link": "Account Connection",
|
||||||
"linkwarn": "TheDesk save your data on thedesk.top server.",
|
"linkwarn": "TheDesk enregistre vos données sur le serveur thedesk.top.",
|
||||||
"connect": "Connect",
|
"connect": "Se connecter",
|
||||||
"disconnect": "Disconnect",
|
"disconnect": "Se déconnecter",
|
||||||
"lastFmWarn": "User name...(empty to disconnect) You cannot hide your recent play log at last.fm privacy settings.",
|
"lastFmWarn": "User name...(empty to disconnect) You cannot hide your recent play log at last.fm privacy settings.",
|
||||||
"templateedit": "Edit a template",
|
"templateedit": "Modifier un modèle",
|
||||||
"templateeditwarn": "",
|
"templateeditwarn": "",
|
||||||
"template1": "Spotify:{song}:Song name/{album}:Album name/{artist}:Artist name/{url}:URL to Spotify",
|
"template1": "Spotify:{song}:Song name/{album}:Album name/{artist}:Artist name/{url}:URL to Spotify",
|
||||||
"template2": "macOS:{song}:Song name/{album}:Album name/{artist}:Artist name/composer:{composer}/spampling rate:{hz}/bit rate:{bitRate}/genre:{genre}",
|
"template2": "macOS:{song}:Song name/{album}:Album name/{artist}:Artist name/composer:{composer}/spampling rate:{hz}/bit rate:{bitRate}/genre:{genre}",
|
||||||
"template3": "",
|
"template3": "",
|
||||||
"postartwork": "Attach an Artwork of Spotify",
|
"postartwork": "Attach an Artwork of Spotify",
|
||||||
"searchArtwork": "If the song has no artwork, automatic complete it(macOS)",
|
"searchArtwork": "Si la chanson n'a pas d'illustration, la compléter automatiquement (macOS)",
|
||||||
"searchArtworkWarn": "If you nowplaying an non-artwork song, get one which seems nice through API. If you do not like the completed artwork, you can right-click it to delete.",
|
"searchArtworkWarn": "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",
|
"tts": "TTS(text to speech) Preferences",
|
||||||
"bouyomi": "BouyomiChan connect",
|
"bouyomi": "BouyomiChan connect",
|
||||||
@@ -185,32 +193,32 @@
|
|||||||
"pitchwarn": "0-100(default:50)",
|
"pitchwarn": "0-100(default:50)",
|
||||||
"vol": "Volume",
|
"vol": "Volume",
|
||||||
"volwarn": "0-100(default:100)",
|
"volwarn": "0-100(default:100)",
|
||||||
"volwarn80": "0-100(default:80)",
|
"volwarn80": "0-100 (par défaut:80)",
|
||||||
"test": "Test",
|
"test": "Test",
|
||||||
"sample": "TheDesk is an open-source Mastodon client for PC.",
|
"sample": "TheDesk est un client Mastodon open-source pour PC.",
|
||||||
"playstop": "Play/Stop",
|
"playstop": "Jouer/Arrêter",
|
||||||
"back": "Retour",
|
"back": "Retour",
|
||||||
"keyscs": "Raccourcis clavier",
|
"keyscs": "Raccourcis clavier",
|
||||||
"keyscr": "Jump to n(1-9)th column",
|
"keyscr": "Jump to n(1-9)th column",
|
||||||
"keynew": "Open toot box",
|
"keynew": "Open toot box",
|
||||||
"keytoggle": "Toggle toot box",
|
"keytoggle": "Toggle toot box",
|
||||||
"keypost": "Post",
|
"keypost": "Publier",
|
||||||
"keysecpost": "Post(secondary toot)",
|
"keysecpost": "Post(secondary toot)",
|
||||||
"keyunread": "Make all notifications read",
|
"keyunread": "Marquer toutes les notifications comme lues",
|
||||||
"keyesc": "Hide toot box",
|
"keyesc": "Hide toot box",
|
||||||
"keyf5": "Super Reload",
|
"keyf5": "Super Reload",
|
||||||
"keyclear": "Clear toot box",
|
"keyclear": "Clear toot box",
|
||||||
"keyacctman": "Account Manager",
|
"keyacctman": "Account Manager",
|
||||||
"keyshowprof": "Show profile of selecting",
|
"keyshowprof": "Show profile of selecting",
|
||||||
"keyrow": "Show next or previous image",
|
"keyrow": "Montrer l'image précédente ou suivante",
|
||||||
"keyzoom": "Mousewheel:Zoom a image",
|
"keyzoom": "Molette de la souris : Zoomer sur l'image",
|
||||||
"whenSelected": "When a toot is selected: ",
|
"whenSelected": "Quand un toot est sélectionné : ",
|
||||||
"fav": "Mettre ce pouet en favoris",
|
"fav": "Mettre ce pouet en favoris",
|
||||||
"bt": "Booster ce pouet",
|
"bt": "Booster ce pouet",
|
||||||
"reply": "Répondre à ce pouet",
|
"reply": "Répondre à ce pouet",
|
||||||
"keyselecttop": "Select the top & left(No.1 column) toot",
|
"keyselecttop": "Sélectionner la colonne de toot en haut à gauche (colonne numéro 1)",
|
||||||
"reset": "Reset(Danger)",
|
"reset": "Réinitialiser (Danger)",
|
||||||
"resetconfirm": "Delete all data. You cannot undo. Continue?",
|
"resetconfirm": "Supprimer toutes les données. Vous ne pouvez pas annuler. Continuer ?",
|
||||||
"about": "About TheDesk",
|
"about": "About TheDesk",
|
||||||
"hp": "Site Web",
|
"hp": "Site Web",
|
||||||
"support": "Assistance",
|
"support": "Assistance",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Drag here to upload",
|
||||||
|
"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",
|
"close": "Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_follow": "Follow",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_endorse": "Feature on profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Delete this",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -131,13 +135,17 @@
|
|||||||
"lang_layout_linkana": "Auto Link Analyzer",
|
"lang_layout_linkana": "Auto Link Analyzer",
|
||||||
"lang_layout_linkanades": "Auto link analyzer",
|
"lang_layout_linkanades": "Auto link analyzer",
|
||||||
"lang_layout_tts": "Text to speech ",
|
"lang_layout_tts": "Text to speech ",
|
||||||
"lang_layout_reconnect": "Reload this column",
|
"lang_layout_reconnect": "Reload",
|
||||||
"lang_layout_headercolor": "Header color of this column",
|
"lang_layout_headercolor": "Header color of this column",
|
||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Direct Message",
|
"lang_layout_dm": "Direct Message",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Prefer WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_deleteColumn": "Delete this column",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reaction",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Time format:{{set}}",
|
||||||
"lang_setting_theme": "Theme:{{set}}",
|
"lang_setting_theme": "Theme:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Notification test",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Minimum width of TweetDeck browser",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Font",
|
"font": "Font",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -43,19 +44,26 @@
|
|||||||
"srcUrl": "Search engine",
|
"srcUrl": "Search engine",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Select theme",
|
"themeSel": "Select theme",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Edit and add themes",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Color scheme",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
"text": "Text color",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Add new",
|
"add_new": "Add new",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "About this theme",
|
"desc": "About this theme",
|
||||||
@@ -101,8 +109,8 @@
|
|||||||
"or": "or",
|
"or": "or",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Height of images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation of timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Drag here to upload",
|
||||||
|
"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",
|
"close": "Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_follow": "Follow",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_endorse": "Feature on profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Delete this",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -131,13 +135,17 @@
|
|||||||
"lang_layout_linkana": "Auto Link Analyzer",
|
"lang_layout_linkana": "Auto Link Analyzer",
|
||||||
"lang_layout_linkanades": "Auto link analyzer",
|
"lang_layout_linkanades": "Auto link analyzer",
|
||||||
"lang_layout_tts": "Text to speech ",
|
"lang_layout_tts": "Text to speech ",
|
||||||
"lang_layout_reconnect": "Reload this column",
|
"lang_layout_reconnect": "Reload",
|
||||||
"lang_layout_headercolor": "Header color of this column",
|
"lang_layout_headercolor": "Header color of this column",
|
||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Direct Message",
|
"lang_layout_dm": "Direct Message",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Prefer WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_deleteColumn": "Delete this column",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reaction",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Time format:{{set}}",
|
||||||
"lang_setting_theme": "Theme:{{set}}",
|
"lang_setting_theme": "Theme:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Notification test",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Minimum width of TweetDeck browser",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Font",
|
"font": "Font",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -43,19 +44,26 @@
|
|||||||
"srcUrl": "Search engine",
|
"srcUrl": "Search engine",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Select theme",
|
"themeSel": "Select theme",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Edit and add themes",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Color scheme",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
"text": "Text color",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Add new",
|
"add_new": "Add new",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "About this theme",
|
"desc": "About this theme",
|
||||||
@@ -101,8 +109,8 @@
|
|||||||
"or": "or",
|
"or": "or",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Height of images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation of timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
|
@@ -1,25 +1,25 @@
|
|||||||
{
|
{
|
||||||
"list": "List of accounts",
|
"list": "Elenco degli account",
|
||||||
"back": "Back",
|
"back": "Indietro",
|
||||||
"add": "Add an account",
|
"add": "Aggiungi un account",
|
||||||
"addAcct": "Fill the instance domain (like mastodon.social)",
|
"addAcct": "Riempi il dominio dell'istanza (come mastodon.social)",
|
||||||
"codesetupwarn": "Uncheck it to skip pasiting code.(login to Mastodon on Windows or macOS) (Recommended: pcheck)",
|
"codesetupwarn": "Deseleziona per saltare il codice di pasiting.(login a Mastodon su Windows o macOS) (Consigliato: pcheck)",
|
||||||
"codesetup": "Code setup",
|
"codesetup": "Impostazione codice",
|
||||||
"mainacct": "Main an account",
|
"mainacct": "Principale un account",
|
||||||
"selacct": "Select an account",
|
"selacct": "Seleziona un account",
|
||||||
"codepastewarn": "Paste the code and close browser.",
|
"codepastewarn": "Incolla il codice e chiudi il browser.",
|
||||||
"codepaste": "Code",
|
"codepaste": "Codice",
|
||||||
"domain": "Domain",
|
"domain": "Dominio",
|
||||||
"connect": "Federated servers",
|
"connect": "Server federati",
|
||||||
"toots": "Toots",
|
"toots": "Toots",
|
||||||
"users": "Users",
|
"users": "Utenti",
|
||||||
"users2": "users",
|
"users2": "utenti",
|
||||||
"safety": "Connection",
|
"safety": "Connessione",
|
||||||
"ver": "Mastodon version",
|
"ver": "Versione di Mastodon",
|
||||||
"ko": "",
|
"ko": "",
|
||||||
"thisismisskey": "Login as Misskey",
|
"thisismisskey": "Accedi come Misskey",
|
||||||
"misskeylogin": "Read <a href=\"https://thedesk.top/how-to-misskey-login.html\">Docs(ja)</a> to login Misskey.",
|
"misskeylogin": "Leggi <a href=\"https://thedesk.top/how-to-misskey-login.html\">Docs(ja)</a> per accedere a Misskey.",
|
||||||
"nodata": "No data",
|
"nodata": "Nessun dato",
|
||||||
"accessTokenSetup": "Use access token to login(click after fill not code but access-token in box: Advanced)",
|
"accessTokenSetup": "Usa il token di accesso per effettuare il login (clicca dopo aver riempito non il codice ma il token di accesso nella scatola: Avanzato)",
|
||||||
"haveExported": "Having the exported file of TheDesk, click here to jump setting page"
|
"haveExported": "Avendo il file esportato di TheDesk, clicca qui per saltare la pagina di impostazione"
|
||||||
}
|
}
|
@@ -1,188 +1,191 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Trascina qui per caricare",
|
||||||
"close": "Close",
|
"nowOffline": "OFFLINE: all of your post is in the draft box and you should reload after re-connect to the Internet",
|
||||||
"webSrc": "Search on Web",
|
"reOnline": "Now we are in the Internet, you should reload...",
|
||||||
"tsSrc": "Search on tootsearch",
|
"close": "Chiudi",
|
||||||
"showSelectProf": "Show profile of the selecting account",
|
"webSrc": "Cerca sul Web",
|
||||||
"closethisbox": "Close this box",
|
"tsSrc": "Cerca su tootsearch",
|
||||||
|
"showSelectProf": "Mostra il profilo dell'account selezionato",
|
||||||
|
"closethisbox": "Chiudi questa casella",
|
||||||
"toot": "Toot",
|
"toot": "Toot",
|
||||||
"post-new": "Post new",
|
"post-new": "Pubblica nuovo",
|
||||||
"nsfwDes": "Mark media as sensitive",
|
"nsfwDes": "Segna il media come sensibile",
|
||||||
"cwDes": "Hide text behind warning",
|
"cwDes": "Nascondi il testo dietro l'avviso",
|
||||||
"selfile": "Attach..",
|
"selfile": "Allegato..",
|
||||||
"insertEmoji": "Emojis",
|
"insertEmoji": "Emojis",
|
||||||
"schedule": "Scheduled toot",
|
"schedule": "Toot programmato",
|
||||||
"postat": "Post at",
|
"postat": "Posta a",
|
||||||
"scheduleWarn": "2.7.0~ Minimum time gap:5min(clock on the server may not be accurate.)",
|
"scheduleWarn": "2.7.0~ Intervallo minimo di tempo:5min(l'orologio sul server potrebbe non essere accurato.)",
|
||||||
"clearToot": "Clear toot box",
|
"clearToot": "Svuota casella toot",
|
||||||
"replyMode": "Reply",
|
"replyMode": "Rispondi",
|
||||||
"no": "No",
|
"no": "No",
|
||||||
"yes": "Yes",
|
"yes": "Sì",
|
||||||
"temp": "Attaching files",
|
"temp": "Allegare file",
|
||||||
"nothing": "None",
|
"nothing": "Nessuno",
|
||||||
"stamp": "Stamp",
|
"stamp": "Timbro",
|
||||||
"stampWarn": "Your acct(aa@bb.cc) is printed on the right-bottom of the uploaded image",
|
"stampWarn": "Il tuo acct(aa@bb.cc) è stampato sul fondo destro dell'immagine caricata",
|
||||||
"vis": "Adjust status privacy",
|
"vis": "Regola la privacy di stato",
|
||||||
"cwtext": "Warning text",
|
"cwtext": "Testo dell'avviso",
|
||||||
"selectVis": "Adjust status privacy",
|
"selectVis": "Regola la privacy di stato",
|
||||||
"publicJP": "",
|
"publicJP": "",
|
||||||
"unlistedJP": "",
|
"unlistedJP": "",
|
||||||
"privateJP": "",
|
"privateJP": "",
|
||||||
"localJP": "Local only",
|
"localJP": "Solo locale",
|
||||||
"sectoot": "Secondary Toot",
|
"sectoot": "Radice Secondario",
|
||||||
"directJP": "",
|
"directJP": "",
|
||||||
"emojiWarn": "",
|
"emojiWarn": "",
|
||||||
"emojiInsertWarn": "Some emojis are not able to be inserted.",
|
"emojiInsertWarn": "Alcuni emoji non possono essere inseriti.",
|
||||||
"refreshEmoji": "Refresh emojis list",
|
"refreshEmoji": "Aggiorna elenco emoji",
|
||||||
"closeThisBox": "Close this box",
|
"closeThisBox": "Chiudi questa casella",
|
||||||
"showThisEmoji": " are shown.",
|
"showThisEmoji": " sono mostrati.",
|
||||||
"customEmoji": "Custom emojis",
|
"customEmoji": "Emoji personalizzate",
|
||||||
"peopleEmoji": "Emojis of people",
|
"peopleEmoji": "Emoji delle persone",
|
||||||
"natureEmoji": "Emojis of nature",
|
"natureEmoji": "Emoji della natura",
|
||||||
"foodEmoji": "Emojis of foods",
|
"foodEmoji": "Emoji degli alimenti",
|
||||||
"activityEmoji": "Emojis of activities",
|
"activityEmoji": "Emoji delle attività",
|
||||||
"placeEmoji": "Emojis of places",
|
"placeEmoji": "Emoji di luoghi",
|
||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emoji di strumenti",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emoji di simboli",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emoji delle bandiere",
|
||||||
"poll": "Poll",
|
"draft": "Draft",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"poll": "Sondaggio",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollDdisabled": "Sondaggi: Disabilitato",
|
||||||
"polluntil": "Hide 'votes' count until people vote it.",
|
"pollProvider": "Fornitore del sondaggio",
|
||||||
"choice": "Choice",
|
"polluntil": "Nascondi il conteggio dei 'voti' fino al voto della gente.",
|
||||||
"pollmulti": "Multiple select",
|
"choice": "Scelta",
|
||||||
"expires_in": "Expires in...(sec)",
|
"pollmulti": "Selezione multipla",
|
||||||
"contextBefore": "Context before this toot",
|
"expires_in": "Scade in...(sec)",
|
||||||
"thisToot": "This toot",
|
"contextBefore": "Contesto prima di questo toot",
|
||||||
"contextAfter": "Context after this toot",
|
"thisToot": "Questo toot",
|
||||||
"beforeLTL": "Local TL before this toot",
|
"contextAfter": "Contesto dopo questo toot",
|
||||||
"beforeUTL": "User TL before this toot",
|
"beforeLTL": "TL locale prima di questo toot",
|
||||||
"afterLTL": "Local TL after this toot)",
|
"beforeUTL": "TL utente prima di questo toot",
|
||||||
"afterUTL": "User TL before this toot",
|
"afterLTL": "TL locale dopo questo toot)",
|
||||||
"afterFTL": "Federated TL after this toot",
|
"afterUTL": "TL utente prima di questo toot",
|
||||||
"favedPeople": "People who favourited it",
|
"afterFTL": "Federato TL dopo questo toot",
|
||||||
"btedPeople": "People who boosted it",
|
"favedPeople": "Persone che lo hanno favorito",
|
||||||
"useOtherAcct1": "Use other account",
|
"btedPeople": "Persone che lo hanno potenziato",
|
||||||
"useOtherAcct2": ":unfav and unBT are disabled.",
|
"useOtherAcct1": "Usa un altro account",
|
||||||
"btWithVis": "Boost with visibility",
|
"useOtherAcct2": ":unfav e unBT sono disabilitati.",
|
||||||
"reply": "Reply",
|
"btWithVis": "Potenziamento con visibilità",
|
||||||
|
"reply": "Rispondi",
|
||||||
"bt": "Boost",
|
"bt": "Boost",
|
||||||
"favRegist": "Favourite",
|
"favRegist": "Preferito",
|
||||||
"openBrowser": "Open in browser",
|
"openBrowser": "Apri nel browser",
|
||||||
"screenshot": "Take a screenshot",
|
"screenshot": "Cattura una schermata",
|
||||||
"copyURL": "Copy the URL",
|
"copyURL": "Copia l'URL",
|
||||||
"embed": "Embed",
|
"embed": "Incorpora",
|
||||||
"toots": "Toots",
|
"toots": "Toots",
|
||||||
"follow": "Follow",
|
"follow": "Segui",
|
||||||
"follower": "Follower",
|
"follower": "Follower",
|
||||||
"utlColumn": "Show as a column",
|
"utlColumn": "Mostra come colonna",
|
||||||
"timeline": "Timeline",
|
"timeline": "Timeline",
|
||||||
"operateOtherAcct": "Cross-account",
|
"operateOtherAcct": "Cross-account",
|
||||||
"list": "List",
|
"list": "Elenco",
|
||||||
"makeNew": "Save",
|
"makeNew": "Salva",
|
||||||
"blocks": "Blocks",
|
"blocks": "Blocchi",
|
||||||
"mutes": "Mutes",
|
"mutes": "Muti",
|
||||||
"block": "Block",
|
"block": "Blocca",
|
||||||
"mute": "Mute",
|
"mute": "Silenzia",
|
||||||
"domainBlock": "Domain block",
|
"domainBlock": "Blocco di dominio",
|
||||||
"editProf": "Edit profile",
|
"editProf": "Modifica profilo",
|
||||||
"change": "Save",
|
"change": "Salva",
|
||||||
"followReq": "Follow requests",
|
"followReq": "Segui le richieste",
|
||||||
"likeHimOrHer": "Resembling",
|
"likeHimOrHer": "Rassomigliante",
|
||||||
"endorse": "Feature on profile",
|
"endorse": "Caratteristica sul profilo",
|
||||||
"openinbrowser": "Open in browser",
|
"openinbrowser": "Apri nel browser",
|
||||||
"mainacct": "Set it an main account",
|
"mainacct": "Imposta un account principale",
|
||||||
"frc": "Suggest",
|
"frc": "Suggerisci",
|
||||||
"more": "More",
|
"more": "Altro",
|
||||||
"revoverJP": " to ",
|
"revoverJP": " a ",
|
||||||
"warnUseOtherAcct": "(Unable to unfollow)",
|
"warnUseOtherAcct": "(Impossibile non seguire)",
|
||||||
"revoverJPde": "",
|
"revoverJPde": "",
|
||||||
"or": "or",
|
"or": "o",
|
||||||
"openProf": "Show profile",
|
"openProf": "Mostra profilo",
|
||||||
"warnListRegist": "Follow to add this user to lists.",
|
"warnListRegist": "Segui per aggiungere questo utente alle liste.",
|
||||||
"blockDomain": "Add blocking domain",
|
"blockDomain": "Aggiungi dominio di blocco",
|
||||||
"name": "Display name",
|
"name": "Nome visualizzato",
|
||||||
"note": "Note",
|
"note": "Nota",
|
||||||
"editProfImg": "Change avataor",
|
"editProfImg": "Cambia avataor",
|
||||||
"editHeader": "Change header image",
|
"editHeader": "Cambia immagine intestazione",
|
||||||
"blocked": "You are blocked. Why?",
|
"blocked": "Sei bloccato. Perché?",
|
||||||
"likeUserDes": "Get people resembling this user.",
|
"likeUserDes": "Fai rassomigliare a questo utente.",
|
||||||
"get": "Get",
|
"get": "Ottieni",
|
||||||
"historyBack": "Back",
|
"historyBack": "Indietro",
|
||||||
"empUser": "Emphasize this user",
|
"empUser": "Sottolinea questo utente",
|
||||||
"supportme": "Support TheDesk!",
|
"supportme": "Supporta TheDesk!",
|
||||||
"TheDeskDes": "TheDesk has no ad, you need no charge to unlock premium features. We need your friendly support!",
|
"TheDeskDes": "TheDesk non ha annunci, non hai bisogno di alcun costo per sbloccare le funzioni premium. Abbiamo bisogno del tuo supporto amichevole!",
|
||||||
"PatreonSupport": "Support on Patreon",
|
"PatreonSupport": "Sostegno su Patreon",
|
||||||
"PixivSupport": "Support on Pixiv FANBOX",
|
"PixivSupport": "Supporto su Pixiv FANBOX",
|
||||||
"AWLSupport": "Amazon Wish List",
|
"AWLSupport": "Lista Dei Desideri Amazon",
|
||||||
"SendAmazonGift1": "Give me Amazon Gift Card:",
|
"SendAmazonGift1": "Dammi Amazon Gift Card:",
|
||||||
"SendAmazonGift2": "",
|
"SendAmazonGift2": "",
|
||||||
"monthly": "Monthly",
|
"monthly": "Mensile",
|
||||||
"once": "Once",
|
"once": "Una Volta",
|
||||||
"local": "Local",
|
"local": "Locale",
|
||||||
"localMedia": "Local(Media)",
|
"localMedia": "Locale(Media)",
|
||||||
"home": "Home",
|
"home": "Principale",
|
||||||
"fed": "Federated",
|
"fed": "Federato",
|
||||||
"fedMedia": "Federated(Media)",
|
"fedMedia": "Federato(Media)",
|
||||||
"dm": "Direct Message",
|
"dm": "Messaggio Diretto",
|
||||||
"integratedTLDes": "Integrated(Local/Home)",
|
"integratedTLDes": "Integrato(Locale/Principale)",
|
||||||
"localPlusDes": "LTL+Reply+BT",
|
"localPlusDes": "LTL+Rispondi+BT",
|
||||||
"notf": "Notifications",
|
"notf": "Notifiche",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Segnalibri",
|
||||||
"showThisTL": "Show this TL:",
|
"showThisTL": "Mostra questo 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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"webviewWarn": "TweetDeck con TJDeck personalizzato (<a href='https://gist.github.com/cutls/8787a55d2c1c53274e68a427966046a6' target='_blank'>Code</a>/<a href='https://gist.github.com/totoraj930/d1394dadb51d75666a76829f61e7280c' target='_blank'>TJDeck</a>).",
|
||||||
"add": "Add",
|
"add": "Aggiungi",
|
||||||
"search": "Search",
|
"search": "Cerca",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Ordina",
|
||||||
"selectAcct": "Account(Scroll to show all)",
|
"selectAcct": "Account(Scorri per mostrare tutto)",
|
||||||
"listLocale": "List",
|
"listLocale": "Elenco",
|
||||||
"filterWord": "Filtering words",
|
"filterWord": "Filtrare parole",
|
||||||
"degree": "Filter contexts",
|
"degree": "Filtra contesti",
|
||||||
"conver": "Conversations",
|
"conver": "Conversazioni",
|
||||||
"prof": "Profiles",
|
"prof": "Profili",
|
||||||
"option": "Options",
|
"option": "Opzioni",
|
||||||
"matchWord": "Whole word",
|
"matchWord": "Intera parola",
|
||||||
"warnMatchWord": "Nice for Latin language",
|
"warnMatchWord": "Bello per la lingua latina",
|
||||||
"except": "Drop instead of hide",
|
"except": "Rilascia invece di nascondere",
|
||||||
"exceptWorn": "Filtered toots will disappear irreversibly, even if filter is later removed",
|
"exceptWorn": "I toot filtrati scompariranno irreversibilmente, anche se il filtro viene rimosso in seguito",
|
||||||
"avalableBefore": "Expire after",
|
"avalableBefore": "Scade dopo",
|
||||||
"warnAvBefore": "Unset or \"0\" means \"Never\"",
|
"warnAvBefore": "Azzera o \"0\" significa \"Mai\"",
|
||||||
"warnAvBefore2": "This value may contain some error",
|
"warnAvBefore2": "Questo valore può contenere qualche errore",
|
||||||
"unlimited": "Never",
|
"unlimited": "Mai",
|
||||||
"days": "day(s)",
|
"days": "giorno(i)",
|
||||||
"hours": "hour(s)",
|
"hours": "ora(e)",
|
||||||
"mins": "minute(s)",
|
"mins": "minuto(i)",
|
||||||
"secs": "second(s)",
|
"secs": "secondo(i)",
|
||||||
"warnOnIntegratedTL": "Integrated TL/Plus TL will hide both Home-filtering words and Local-filtering words.",
|
"warnOnIntegratedTL": "TL/Plus TL integrato nasconderà sia le parole di filtraggio Home-che le parole di filtraggio locale.",
|
||||||
"helloTheDesk": "Internal error: please clear all data(at setting page) <b>All data will be deleted.</b>",
|
"helloTheDesk": "Errore interno: cancella tutti i dati (alla pagina di impostazione) <b>Tutti i dati verranno eliminati.</b>",
|
||||||
"addColumn": "Add a column",
|
"addColumn": "Aggiungi colonna",
|
||||||
"sortColumns": "Sort",
|
"sortColumns": "Ordina",
|
||||||
"acctMan": "Account Manager",
|
"acctMan": "Gestione account",
|
||||||
"filter": "Filter",
|
"filter": "Filtro",
|
||||||
"setting": "Preferences",
|
"setting": "Preferenze",
|
||||||
"reverse": "Toot button layout reverse",
|
"reverse": "Layout pulsante Toot inverso",
|
||||||
"f5": "Reload TL",
|
"f5": "Ricarica TL",
|
||||||
"nanoDes": "The smallest Mastodon,",
|
"nanoDes": "Il più piccolo Mastodon,",
|
||||||
"verTips": "Version",
|
"verTips": "Versione",
|
||||||
"clockTips": "Clock",
|
"clockTips": "Orologio",
|
||||||
"ramTips": "RAM status",
|
"ramTips": "Stato della RAM",
|
||||||
"changeTips": "Change Tips",
|
"changeTips": "Cambia Suggerimenti",
|
||||||
"helpAndLogs": "Help & Log",
|
"helpAndLogs": "Aiuto & Log",
|
||||||
"help": "Help",
|
"help": "Aiuto",
|
||||||
"contactwithlog": "If you tell me bugs(not working or something) with this log, I can detect what is wrong more easily.",
|
"contactwithlog": "Se mi dici dei bug (non funzionanti o qualcosa) con questo registro, posso rilevare cosa è sbagliato più facilmente.",
|
||||||
"about": "About TheDesk",
|
"about": "Informazioni Su TheDesk",
|
||||||
"hereAddColumns": "<- Add TL",
|
"hereAddColumns": "<- Aggiungi TL",
|
||||||
"foundBug": "I found a bug",
|
"foundBug": "Ho trovato un bug",
|
||||||
"show": "Show",
|
"show": "Mostra",
|
||||||
"directory": "Directory",
|
"directory": "Directory",
|
||||||
"active": "Recently active",
|
"active": "Recentemente attivo",
|
||||||
"newcomer": "New arrivals",
|
"newcomer": "Nuovi arrivi",
|
||||||
"local_only": "Local only",
|
"local_only": "Solo locale",
|
||||||
"menu": "Menu",
|
"menu": "Menu",
|
||||||
"demoBottomBtns": "Welcome guide",
|
"demoBottomBtns": "Guida di benvenuto",
|
||||||
"lookAtBottom": "Look at the bottom of this window. Here is some tips about it.",
|
"lookAtBottom": "Guarda la parte inferiore di questa finestra. Ecco alcuni suggerimenti al riguardo.",
|
||||||
"acctManDesc": "Add more accounts and logout them.",
|
"acctManDesc": "Aggiungere più account e disconnetterli.",
|
||||||
"settingDesc": "Many and many preferences here. You will couldn't check it all!",
|
"settingDesc": "Molte e molte preferenze qui. Non è stato possibile controllare tutto!",
|
||||||
"nanoDescPlus": "Mini window client(experimental)",
|
"nanoDescPlus": "Mini window client (sperimentale)",
|
||||||
"menuDesc": "All daily TheDesk and Mastodon tuning like <b>add and sort columns</b>, <b>list and filter check</b>."
|
"menuDesc": "Tutte le registrazioni quotidiane TheDesk e Mastodon come <b>aggiungi e ordina colonne</b>, <b>lista e controllo filtro</b>."
|
||||||
}
|
}
|
@@ -1,21 +1,21 @@
|
|||||||
{
|
{
|
||||||
"language": "en",
|
"language": "it",
|
||||||
"lang_toot": "Toot",
|
"lang_toot": "Toot",
|
||||||
"lang_there": "Yes",
|
"lang_there": "Sì",
|
||||||
"lang_nothing": "None",
|
"lang_nothing": "Nessuno",
|
||||||
"lang_yesno": "Yes",
|
"lang_yesno": "Sì",
|
||||||
"lang_no": "No",
|
"lang_no": "No",
|
||||||
"lang_progress": "Wait...",
|
"lang_progress": "Attendere...",
|
||||||
"lang_edit": "Edit",
|
"lang_edit": "Modifica",
|
||||||
"lang_del": "Delete",
|
"lang_del": "Elimina",
|
||||||
"lang_add": "Add",
|
"lang_add": "Aggiungi",
|
||||||
"lang_fatalerroroccured": "Error",
|
"lang_fatalerroroccured": "Errore",
|
||||||
"lang_speech": "Google US English",
|
"lang_speech": "Google US Inglese",
|
||||||
"lang_lang": "Language",
|
"lang_lang": "Lingua",
|
||||||
"lang_langlocale": "English",
|
"lang_langlocale": "Italiano",
|
||||||
"lang_back": "Back",
|
"lang_back": "Indietro",
|
||||||
"lang_set": "Set",
|
"lang_set": "Imposta",
|
||||||
"lang_langadd": "Translate TheDesk to other languages or proofread TheDesk on <a href=\"https://github.com/cutls/TheDesk\" target=\"_blank\">GitHub</a>. TheDesk needs your help.",
|
"lang_langadd": "Traduci TheDesk in altre lingue o rileggi TheDesk su <a href=\"https://github.com/cutls/TheDesk\" target=\"_blank\">GitHub</a>. TheDesk ha bisogno del tuo aiuto.",
|
||||||
"lang_time_prefixAgo": null,
|
"lang_time_prefixAgo": null,
|
||||||
"lang_time_prefixFromNow": null,
|
"lang_time_prefixFromNow": null,
|
||||||
"lang_time_suffixAgo": null,
|
"lang_time_suffixAgo": null,
|
||||||
@@ -27,253 +27,263 @@
|
|||||||
"lang_time_hour": "1 h",
|
"lang_time_hour": "1 h",
|
||||||
"lang_time_hours": "%d h",
|
"lang_time_hours": "%d h",
|
||||||
"lang_time_day": "1 d",
|
"lang_time_day": "1 d",
|
||||||
"lang_time_days": "%d d",
|
"lang_time_days": "%d g",
|
||||||
"lang_time_month": "1 month",
|
"lang_time_month": "1 mese",
|
||||||
"lang_time_months": "%d months",
|
"lang_time_months": "%d mesi",
|
||||||
"lang_time_year": "y",
|
"lang_time_year": "y",
|
||||||
"lang_time_years": "%d y",
|
"lang_time_years": "%d y",
|
||||||
"lang_version_usever": "No update is found({{ver}})",
|
"lang_version_usever": "Nessun aggiornamento trovato({{ver}})",
|
||||||
"lang_version_skipver": "Update was ignored.",
|
"lang_version_skipver": "L'aggiornamento è stato ignorato.",
|
||||||
"lang_version_platform": "Do you want auto-updates?(users installed on Microsoft Store select 'No')",
|
"lang_version_platform": "Vuoi aggiornamenti automatici?(Gli utenti installati su Microsoft Store selezionano 'No')",
|
||||||
"lang_version_platform_linux": "Do you want auto-updates?(users installed on Snapcraft select 'No')",
|
"lang_version_platform_linux": "Vuoi aggiornamenti automatici?(utenti installati su Snapcraft seleziona 'No')",
|
||||||
"lang_version_platform_mac": "Do you want auto-updates?(Homebrew Cask users select 'No')",
|
"lang_version_platform_mac": "Vuoi aggiornamenti automatici?(Gli utenti di Cask ebrew selezionano 'No')",
|
||||||
"lang_login_noauth": "Show TL of unlogined accounts",
|
"lang_login_noauth": "Mostra TL degli account non registrati",
|
||||||
"lang_manager_info": "About this instance",
|
"lang_manager_info": "Informazioni su questa istanza",
|
||||||
"lang_manager_refresh": "Refresh",
|
"lang_manager_refresh": "Aggiorna",
|
||||||
"lang_manager_delete": "Logout",
|
"lang_manager_delete": "Esci",
|
||||||
"lang_manager_color": "Account Color",
|
"lang_manager_color": "Colore Account",
|
||||||
"lang_manager_confirm": "is about to logout. Continue?",
|
"lang_manager_confirm": "sta per uscire. Continuare?",
|
||||||
"lang_manager_mainAcct": "Done:choose main account",
|
"lang_manager_mainAcct": "Fatto:scegli l'account principale",
|
||||||
"lang_manager_def": "Default",
|
"lang_manager_def": "Predefinito",
|
||||||
"lang_manager_none": "None",
|
"lang_manager_none": "Nessuno",
|
||||||
"lang_manager_godev": "Open DevCenter of Misskey. We show also an official documents to refer.",
|
"lang_manager_godev": "Apri DevCenter di Misskey. Mostriamo anche un documento ufficiale da riferire.",
|
||||||
"lang_manager_logout": "Logout",
|
"lang_manager_logout": "Esci",
|
||||||
"lang_manager_maxChars": "Max chars of toots",
|
"lang_manager_maxChars": "Max caratteri dei toot",
|
||||||
"lang_bbmd_misskey": "TheDesk regards \"@\" as reply, but put other parameter. Unlisted on Mastodon means Home on Misskey.",
|
"lang_bbmd_misskey": "TheDesk considera \"@\" come risposta, ma mettere altri parametri. Non elencato su Mastodon significa Home su Misskey.",
|
||||||
"lang_emoji_get": "Get emojis",
|
"lang_emoji_get": "Ottieni emoji",
|
||||||
"lang_emoji_custom": "Custom emojis",
|
"lang_emoji_custom": "Emoji personalizzate",
|
||||||
"lang_defaultemojis_text": "Emojis about {{cat}}",
|
"lang_defaultemojis_text": "Emoji circa {{cat}}",
|
||||||
"lang_emoji_uncat": "Uncategorized",
|
"lang_emoji_uncat": "Senza categoria",
|
||||||
"lang_postimg_previewdis": "cannot preview",
|
"lang_postimg_previewdis": "impossibile visualizzare l'anteprima",
|
||||||
"lang_postimg_aftupload": "You cannot change accounts after uploading.",
|
"lang_postimg_aftupload": "Non puoi cambiare account dopo il caricamento.",
|
||||||
"lang_postimg_failupload": "Failed",
|
"lang_postimg_failupload": "Fallito",
|
||||||
"lang_postimg_delete": "Click to add description, right-click to delete this",
|
"lang_postimg_delete": "Fare clic per aggiungere la descrizione, fare clic col tasto destro per eliminare questo",
|
||||||
"lang_postimg_desc": "Description",
|
"lang_postimg_desc": "Descrizione",
|
||||||
"lang_postimg_leadContext": "right-click the thumbnail to delete this",
|
"lang_postimg_leadContext": "fare clic con il pulsante destro del mouse per eliminare",
|
||||||
"lang_post_syncDetail": "Upload media synchronously",
|
"lang_post_syncDetail": "Carica media in modo sincrono",
|
||||||
"lang_post_syncDetailText": "Click each picture icon to get the thumbnail. If you can get, the media you uploaded are completely processed.",
|
"lang_post_syncDetailText": "Fare clic sull'icona di ogni immagine per ottenere la miniatura. Se è possibile ottenere, i supporti caricati sono completamente elaborati.",
|
||||||
"lang_post_tagTL": "This toot does not contain a default tag. This toot will not be shown on Local TL. Continue?",
|
"lang_post_tagTL": "Questo toot non contiene un tag predefinito. Questo toot non sarà mostrato su Local TL. Continuare?",
|
||||||
"lang_post_tagVis": "This toot(not 'public' toot) is not shown on this tag's TL.",
|
"lang_post_tagVis": "Questo toot(non 'public') non è mostrato sul TL di questo tag.",
|
||||||
"lang_post_cwtitle": "Auto CW Alert",
|
"lang_post_cwtitle": "Auto CW Alert",
|
||||||
"lang_post_cwtxt": "You are about to post longer toot than you set.\nWarning text:",
|
"lang_post_cwtxt": "Stai per pubblicare un toot più lungo di quello impostato.\nTesto di avvertimento:",
|
||||||
"lang_post_btn1": "Cancel (will not post)",
|
"lang_post_btn1": "Annulla (non invierà)",
|
||||||
"lang_post_btn2": "Make text hidden automatically",
|
"lang_post_btn2": "Rendi il testo nascosto automaticamente",
|
||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continua a pubblicare",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "Il server non ha finito di elaborare il tuo supporto. Riprova.",
|
||||||
"lang_post_retry": "Retry",
|
"lang_post_retry": "Riprova",
|
||||||
"lang_status_favWarn": "It will take a miunte to favourite a remote toot.",
|
"lang_post_offline": "Add to the drafts because of offline",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_favWarn": "Ci vorrà un miunte per preferire un toot remoto.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_btWarn": "Ci vorrà un miunte per aumentare un toot remoto.",
|
||||||
"lang_status_unfollow": "Unfollow",
|
"lang_status_follow": "Segui",
|
||||||
"lang_status_block": "Block",
|
"lang_status_unfollow": "Non Segui",
|
||||||
"lang_status_unblock": "Unblock",
|
"lang_status_block": "Blocca",
|
||||||
"lang_status_mute": "Mute",
|
"lang_status_unblock": "Sblocca",
|
||||||
"lang_status_unmute": "Unmute",
|
"lang_status_mute": "Silenzia",
|
||||||
"lang_status_redraftTitle": "Delete & redraft",
|
"lang_status_unmute": "Riattiva",
|
||||||
"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_redraftTitle": "Elimina & riabbozza",
|
||||||
"lang_status_emphas": "'s toots are emphasized. Please reload after this action.",
|
"lang_status_redraft": "Continua a eliminare & riformulare? Perdi gli stati di questo toot. Questa fanteria può contenere alcuni bug. Le immagini di questo toot saranno cancellate su più vecchio di Mastodon 2.4.1.",
|
||||||
"lang_status_unemphas": "'s toots are not emphasized. Please reload after this action.",
|
"lang_status_emphas": "toots sono enfatizzati. Si prega di ricaricare dopo questa azione.",
|
||||||
"lang_status_unendorse": "Not feature on profile",
|
"lang_status_unemphas": "toots non sono enfatizzati. Si prega di ricaricare dopo questa azione.",
|
||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_unendorse": "Non è presente sul profilo",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_endorse": "Caratteristica sul profilo",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_followers": "Follower",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_status_active": "Ultimo stato",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_secure_draft": "Add to draft",
|
||||||
"lang_cards_check": " check",
|
"lang_secure_useThis": "Usa questo",
|
||||||
"lang_cards_pip": "PiP mode",
|
"lang_secure_deleteThis": "Elimina questo",
|
||||||
|
"lang_suggest_nodata": "Si prega di ottenere l'elenco delle emoji per mostrare il suggerimento.",
|
||||||
|
"lang_usetxtbox_reply": "Modalità di risposta. Ctrl+Maiusc+C per cancellare.",
|
||||||
|
"lang_cards_check": " controlla",
|
||||||
|
"lang_cards_pip": "Modalità PiP",
|
||||||
"lang_cards_trusted": "Trusted embed HTML by TheDesk(Twitter, nicovideo, YouTube, Spotify, twitcasing)",
|
"lang_cards_trusted": "Trusted embed HTML by TheDesk(Twitter, nicovideo, YouTube, Spotify, twitcasing)",
|
||||||
"lang_cards_untrusted": "Untrusted embed HTML by TheDesk",
|
"lang_cards_untrusted": "HTML incorporato non fidato di TheDesk",
|
||||||
"lang_details_nodata": "No data",
|
"lang_details_nodata": "Nessun dato",
|
||||||
"lang_details_filtered": "Filtered toot",
|
"lang_details_filtered": "Radice filtrata",
|
||||||
"lang_details_embed": "Embed HTML is cliped.",
|
"lang_details_embed": "HTML incorporato è sotto la lente.",
|
||||||
"lang_details_url": "URL of this toot is cliped.",
|
"lang_details_url": "L'URL di questo toot è sotto la lente.",
|
||||||
"lang_details_txt": "Content of this toot is cliped.",
|
"lang_details_txt": "Il contenuto di questo toot è ritagliato.",
|
||||||
"lang_filter_nodata": "No data",
|
"lang_filter_nodata": "Nessun dato",
|
||||||
"lang_filter_errordegree": "Please check a context",
|
"lang_filter_errordegree": "Si prega di controllare un contesto",
|
||||||
"lang_list_nodata": "No data",
|
"lang_list_nodata": "Nessun dato",
|
||||||
"lang_list_show": "Show",
|
"lang_list_show": "Mostra",
|
||||||
"lang_list_users": "Users list",
|
"lang_list_users": "Elenco utenti",
|
||||||
"lang_list_nouser": "No users in this list.",
|
"lang_list_nouser": "Nessun utente in questa lista.",
|
||||||
"lang_list_add": "Add to the list",
|
"lang_list_add": "Aggiungi alla lista",
|
||||||
"lang_list_add_misskey": "(perhaps this user has been listed)",
|
"lang_list_add_misskey": "(forse questo utente è stato elencato)",
|
||||||
"lang_list_remove": "Remove from the list",
|
"lang_list_remove": "Rimuovi dalla lista",
|
||||||
"lang_notf_new": " new notifications",
|
"lang_notf_new": " nuove notifiche",
|
||||||
"lang_speech_refresh": "Save value about TTS config",
|
"lang_speech_refresh": "Salva valore sulla configurazione TTS",
|
||||||
"lang_src_ts": "chronological order",
|
"lang_src_ts": "ordine cronologico",
|
||||||
"lang_src_people": " people toot",
|
"lang_src_people": " toot di persone",
|
||||||
"lang_tags_always": "Always toots with ",
|
"lang_tags_always": "Sempre i toot con ",
|
||||||
"lang_tags_realtime": "Tag-stream toot",
|
"lang_tags_realtime": "Toot del Tag-stream",
|
||||||
"lang_tags_tagunpin": "Unpin {{tag}}",
|
"lang_tags_tagunpin": "Unpin {{tag}}",
|
||||||
"lang_tags_unrealtime": "Disable TsT",
|
"lang_tags_unrealtime": "Disabilita TsT",
|
||||||
"lang_tags_tagwarn": "Auto complete {{tag}}, if toot without {{tag}}",
|
"lang_tags_tagwarn": "Completamento automatico di {{tag}}, se toot senza {{tag}}",
|
||||||
"lang_tl_media": "Media",
|
"lang_tl_media": "Media",
|
||||||
"lang_tl_reconnect": "Reconnect to streaming API",
|
"lang_tl_reconnect": "Riconnetti all'API di streaming",
|
||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Elabora...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "Dati dei marcatori POST. Attendere prego",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Scaricato:",
|
||||||
"lang_img_copyDone": "Copied: URL of this image",
|
"lang_img_copyDone": "Copiato: URL di questa immagine",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Vai in cima a questa colonna. Quando l'icona è rossa, questa colonna non può collegare l'API di stringa. Si prega di ricaricare.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} di questo account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Rimuovi questa colonna",
|
||||||
"lang_layout_setthis": "Preferences of this column",
|
"lang_layout_setthis": "Preferenze di questa colonna",
|
||||||
"lang_layout_mediafil": "Media filtering",
|
"lang_layout_mediafil": "Filtro multimediale",
|
||||||
"lang_layout_remoteOnly": "Remote only",
|
"lang_layout_remoteOnly": "Solo remoto",
|
||||||
"lang_layout_linkana": "Auto Link Analyzer",
|
"lang_layout_linkana": "Analizzatore Di Collegamenti Automatici",
|
||||||
"lang_layout_linkanades": "Auto link analyzer",
|
"lang_layout_linkanades": "Analizzatore di collegamenti automatici",
|
||||||
"lang_layout_tts": "Text to speech ",
|
"lang_layout_tts": "Testo a discorso ",
|
||||||
"lang_layout_reconnect": "Reload this column",
|
"lang_layout_reconnect": "Ricarica",
|
||||||
"lang_layout_headercolor": "Header color of this column",
|
"lang_layout_headercolor": "Colore intestazione di questa colonna",
|
||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[Nessun dato]<br>F5/<unk> +R per ricaricare",
|
||||||
"lang_layout_dm": "Direct Message",
|
"lang_layout_dm": "Messaggio Diretto",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Preferisci WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Tipo di notifica escluso",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Menzioni",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_fav": "Preferito",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_bt": "Potenziamenti",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_poll": "Sondaggi",
|
||||||
"lang_layout_deleteColumnDesc": "Delete this column",
|
"lang_layout_excludingbt": "Mostra modalità BT",
|
||||||
"lang_layout_unread": "Unread",
|
"lang_layout_leftFold": "Pila a sinistra",
|
||||||
"lang_layout_tagManager": "Tag timeline manager",
|
"lang_layout_leftUnfold": "Aggancia a destra",
|
||||||
"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_deleteColumn": "Elimina questa colonna",
|
||||||
"lang_sort_gothis": "Go to this column",
|
"lang_layout_deleteColumnDesc": "Elimina questa colonna",
|
||||||
"lang_sort_remthis": "Delete this column",
|
"lang_layout_unread": "Non Letta",
|
||||||
"lang_spotify_img": "Attach an album artwork",
|
"lang_layout_tagManager": "Gestore timeline tag",
|
||||||
"lang_spotify_imgno": "Not attach an album artwork",
|
"lang_layout_announ": "Annuncio: il contatore è il numero dei tuoi annunci non letti. Se non mostrato, significa che gli annunci sono tutti contrassegnati come letti.",
|
||||||
"lang_spotify_acct": "Connect TheDesk to Spotify",
|
"lang_sort_gothis": "Vai a questa colonna",
|
||||||
"lang_spotify_np": "Done:templete of NowPlaying",
|
"lang_sort_remthis": "Elimina questa colonna",
|
||||||
|
"lang_spotify_img": "Allega una copertina album",
|
||||||
|
"lang_spotify_imgno": "Non allegare una copertina album",
|
||||||
|
"lang_spotify_acct": "Collega TheDesk a Spotify",
|
||||||
|
"lang_spotify_np": "Fatto:templete of NowPlaying",
|
||||||
"lang_setting_npprovide": "NowPlaying provider:{{set}}",
|
"lang_setting_npprovide": "NowPlaying provider:{{set}}",
|
||||||
"lang_hisdata_frcreq": "Required Mastodon 2.4.3 and above",
|
"lang_hisdata_frcreq": "Mastodon richiesto 2.4.3 e oltre",
|
||||||
"lang_hisdata_frcwarn": "Unfollow accounts will be shown.",
|
"lang_hisdata_frcwarn": "Verranno mostrati gli account non seguenti.",
|
||||||
"lang_hisdata_taketime": "It will take 30s ~ several minutes",
|
"lang_hisdata_taketime": "Ci vorranno 30 ~ diversi minuti",
|
||||||
"lang_hisdata_notonmisskey": "Misskey is unable to request.",
|
"lang_hisdata_notonmisskey": "Misskey non è possibile richiedere.",
|
||||||
"lang_hisdata_key": "This user is proofed by {{set}}",
|
"lang_hisdata_key": "Questo utente è verificato da {{set}}",
|
||||||
"lang_showontl_movetxt": "This account was moved",
|
"lang_showontl_movetxt": "Questo account è stato spostato",
|
||||||
"lang_showontl_movebtn": "Continue on the new account",
|
"lang_showontl_movebtn": "Continua sul nuovo account",
|
||||||
"lang_showontl_botacct": "[bot]",
|
"lang_showontl_botacct": "[bot]",
|
||||||
"lang_showontl_followed": "Following you",
|
"lang_showontl_followed": "Seguendoti",
|
||||||
"lang_parse_request": "Follow request",
|
"lang_parse_request": "Segui la richiesta",
|
||||||
"lang_showontl_notf": "Notification ",
|
"lang_showontl_notf": "Notifica ",
|
||||||
"lang_showontl_domain": "Domain ",
|
"lang_showontl_domain": "Dominio ",
|
||||||
"lang_showontl_listwarn": "Follow to add this user to lists.",
|
"lang_showontl_listwarn": "Segui per aggiungere questo utente alle liste.",
|
||||||
"lang_showontl_verified": "This website is verified by owner at ",
|
"lang_showontl_verified": "Questo sito web è verificato dal proprietario a ",
|
||||||
"lang_status_requesting": "Requesting",
|
"lang_status_requesting": "Richiesta",
|
||||||
"lang_parse_mentioned": " replied to you",
|
"lang_parse_mentioned": " ti ha risposto",
|
||||||
"lang_parse_faved": " favourited your toot",
|
"lang_parse_faved": " favorito il tuo toot",
|
||||||
"lang_parse_bted": " boosted your toot",
|
"lang_parse_bted": " potenziato il tuo toot",
|
||||||
"lang_parse_btedsimple": " boosted",
|
"lang_parse_btedsimple": " potenziato",
|
||||||
"lang_parse_polled": "'s poll",
|
"lang_parse_polled": "del sondaggio",
|
||||||
"lang_parse_notftime": "Actioned at",
|
"lang_parse_notftime": "Aggiunto il",
|
||||||
"lang_parse_cwshow": "Show",
|
"lang_parse_cwshow": "Mostra",
|
||||||
"lang_parse_cwshow_acc": "This is a post with content warning. click to show the whole content",
|
"lang_parse_cwshow_acc": "Questo è un post con avviso di contenuto. fare clic per mostrare l'intero contenuto",
|
||||||
"lang_parse_fulltext": "Full size text:",
|
"lang_parse_fulltext": "Testo di dimensione completa:",
|
||||||
"lang_parse_autofold": "Auto folded",
|
"lang_parse_autofold": "Ripiegamento automatico",
|
||||||
"lang_parse_more": "More",
|
"lang_parse_more": "Altro",
|
||||||
"lang_parse_url": "URL Analyzer",
|
"lang_parse_url": "Analizzatore URL",
|
||||||
"lang_parse_tagTL": "Timeline of {{tag}}",
|
"lang_parse_tagTL": "Timeline di {{tag}}",
|
||||||
"lang_parse_tagtoot": "Toot with {{tag}}",
|
"lang_parse_tagtoot": "Toot con {{tag}}",
|
||||||
"lang_parse_tagpin": "Pin {{tag}}",
|
"lang_parse_tagpin": "Pin {{tag}}",
|
||||||
"lang_parse_public": "Public",
|
"lang_parse_public": "Pubblico",
|
||||||
"lang_parse_unlisted": "Unlisted",
|
"lang_parse_unlisted": "Non Elencato",
|
||||||
"lang_parse_private": "Private",
|
"lang_parse_private": "Privato",
|
||||||
"lang_parse_direct": "Direct",
|
"lang_parse_direct": "Diretto",
|
||||||
"lang_parse_clickcopy": "Click to copy text of this toot",
|
"lang_parse_clickcopy": "Fare clic per copiare il testo di questo toot",
|
||||||
"lang_parse_clickcopyurl": "Click to copy URL of this toot",
|
"lang_parse_clickcopyurl": "Fare clic per copiare l'URL di questo toot",
|
||||||
"lang_parse_trans": "Translate to English",
|
"lang_parse_trans": "Traduci in inglese",
|
||||||
"lang_parse_replyto": "Reply to this toot",
|
"lang_parse_replyto": "Rispondi a questo toot",
|
||||||
"lang_parse_bt": "Boost this toot",
|
"lang_parse_bt": "Migliora questo toot",
|
||||||
"lang_parse_fav": "Favourite this toot",
|
"lang_parse_fav": "Preferito questo toot",
|
||||||
"lang_parse_quote": "Quote this toot",
|
"lang_parse_quote": "Citate questo toot",
|
||||||
"lang_parse_bookmark": "Bookmark this",
|
"lang_parse_bookmark": "Segnalibro questo",
|
||||||
"lang_parse_unbookmark": "Unbookmark this",
|
"lang_parse_unbookmark": "Deseleziona questo",
|
||||||
"lang_parse_del": "Delete this",
|
"lang_parse_del": "Elimina questo",
|
||||||
"lang_parse_pin": "Pin this",
|
"lang_parse_pin": "Pin questo",
|
||||||
"lang_parse_unpin": "Unpin this",
|
"lang_parse_unpin": "Sblocca questo",
|
||||||
"lang_parse_link": "Open in a browser",
|
"lang_parse_link": "Apri in un browser",
|
||||||
"lang_parse_det": "Details via your main account.",
|
"lang_parse_det": "Dettagli tramite il tuo account principale.",
|
||||||
"lang_parse_detail": "Details",
|
"lang_parse_detail": "Dettagli",
|
||||||
"lang_parse_redraft": "Delete & re-draft",
|
"lang_parse_redraft": "Elimina & ribozza",
|
||||||
"lang_parse_followed": "Followed you",
|
"lang_parse_followed": "Ti ha seguito",
|
||||||
"lang_parse_moved": "Moved to...",
|
"lang_parse_moved": "Spostato in...",
|
||||||
"lang_parse_clientop": "Operation of this client",
|
"lang_parse_clientop": "Funzionamento di questo client",
|
||||||
"lang_parse_clienttxt": " will be",
|
"lang_parse_clienttxt": " sarà",
|
||||||
"lang_parse_clientno": "done nothing",
|
"lang_parse_clientno": "niente di fatto",
|
||||||
"lang_parse_clientemp": "emphasized(/not emphasized)",
|
"lang_parse_clientemp": "sottolineato(/non sottolineato)",
|
||||||
"lang_parse_clientmute": "muted",
|
"lang_parse_clientmute": "silenziato",
|
||||||
"lang_parse_mute": " will be muted. You can remove on preferences.",
|
"lang_parse_mute": " sarà disattivato. Puoi rimuovere sulle preferenze.",
|
||||||
"lang_parse_voted": "(Voted)",
|
"lang_parse_voted": "(Votato)",
|
||||||
"lang_parse_myvote": "(My own poll)",
|
"lang_parse_myvote": "(Il mio sondaggio)",
|
||||||
"lang_parse_vote": "Vote",
|
"lang_parse_vote": "Voto",
|
||||||
"lang_parse_unvoted": "Show the result without voting",
|
"lang_parse_unvoted": "Mostra il risultato senza voto",
|
||||||
"lang_parse_endedvote": "Expired",
|
"lang_parse_endedvote": "Scaduto",
|
||||||
"lang_parse_people": "people",
|
"lang_parse_people": "persone",
|
||||||
"lang_parse_thread": "Show thread",
|
"lang_parse_thread": "Mostra thread",
|
||||||
"lang_parse_unknown": "Attached file",
|
"lang_parse_unknown": "File allegato",
|
||||||
"lang_parse_nsfw": "sensitive media",
|
"lang_parse_nsfw": "media sensibili",
|
||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Mostra HTML incorporato",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Mostra le notifiche di questo utente",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Toot quotato non visibile",
|
||||||
|
"lang_parse_disconnected": "Lo streaming è stato disconnesso (riprova dopo 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reazione",
|
||||||
"lang_misskeyparse_tagnostr": "No streaming API on Tag TLs",
|
"lang_misskeyparse_tagnostr": "Nessuna API di streaming su Tag TLs",
|
||||||
"lang_misskeyparse_listnostr": "No streaming API on List TLs",
|
"lang_misskeyparse_listnostr": "Nessuna API di streaming sulle LTL della lista",
|
||||||
"lang_misskeyparse_home": "Home",
|
"lang_misskeyparse_home": "Principale",
|
||||||
"lang_misskeyparse_followers": "Follower",
|
"lang_misskeyparse_followers": "Follower",
|
||||||
"lang_misskeyparse_specified": "Specified User",
|
"lang_misskeyparse_specified": "Utente Specificato",
|
||||||
"lang_misskeyparse_qt": "Misskey renote(quote) mode:Ctrl+Shift+Enter to clear",
|
"lang_misskeyparse_qt": "Modalità di rinote(citazione):Ctrl+Maiusc+Invio per pulire",
|
||||||
"lang_misskeyparse_renoted": " renoted your following post.",
|
"lang_misskeyparse_renoted": " ha rinominato il tuo post seguente.",
|
||||||
"lang_misskeyparse_quoted": " quoted your following post.",
|
"lang_misskeyparse_quoted": " ha citato il tuo post seguente.",
|
||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " ha reagito al seguente post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Formato orario:{{set}}",
|
||||||
"lang_setting_theme": "Theme:{{set}}",
|
"lang_setting_theme": "Tema:{{set}}",
|
||||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
"lang_setting_compat": "Compatibile",
|
||||||
|
"lang_setting_nsfw": "Media sensibili:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Testo CW predefinito:{{set}}",
|
||||||
"lang_setting_cws": "Always CW on:{{set}}",
|
"lang_setting_cws": "CW sempre il:{{set}}",
|
||||||
"lang_setting_rp": "Reply counter:{{set}}",
|
"lang_setting_rp": "Contatore risposte:{{set}}",
|
||||||
"lang_setting_vis": "Default visibility:{{set}}",
|
"lang_setting_vis": "Default visibility:{{set}}",
|
||||||
"lang_setting_popup": "Popup notification:{{set}}",
|
"lang_setting_popup": "Notifica popup:{{set}}",
|
||||||
"lang_setting_off": "Off",
|
"lang_setting_off": "Off",
|
||||||
"lang_setting_s": "s",
|
"lang_setting_s": "s",
|
||||||
"lang_setting_box": "Default toot box action:{{set}}",
|
"lang_setting_box": "Azione predefinita del toot box:{{set}}",
|
||||||
"lang_setting_gif": "GIF:{{set}}",
|
"lang_setting_gif": "GIF:{{set}}",
|
||||||
"lang_setting_selt": "Auto fold:{{set1}} lines and above, {{set2}} letters and above",
|
"lang_setting_selt": "Ripiegamento automatico:{{set1}} linee e superiori, {{set2}} lettere e superiori",
|
||||||
"lang_setting_autocw": "Auto CW:{{set1}} lines and above, {{set2}} letters and above",
|
"lang_setting_autocw": "Auto CW:{{set1}} righe e superiori, {{set2}} lettere e superiori",
|
||||||
"lang_setting_width": "Minimam width:{{set}}",
|
"lang_setting_width": "Larghezza minima:{{set}}",
|
||||||
"lang_setting_fixwidth": "TweetDeck fixed width:{{set}}px",
|
"lang_setting_fixwidth": "Larghezza fissa TweetDeck:{{set}}px",
|
||||||
"lang_setting_img": "After posting an image:{{set}}",
|
"lang_setting_img": "Dopo aver postato un'immagine:{{set}}",
|
||||||
"lang_setting_font": "Fonts:{{set}}",
|
"lang_setting_font": "Caratteri:{{set}}",
|
||||||
"lang_setting_default": "default font",
|
"lang_setting_default": "carattere predefinito",
|
||||||
"lang_setting_size": "Font size:{{set}}px",
|
"lang_setting_size": "Dimensione carattere:{{set}}px",
|
||||||
"lang_setting_imgheight": "Image height:{{set}}px",
|
"lang_setting_imgheight": "Altezza immagine:{{set}}px",
|
||||||
"lang_setting_ticker": "#InstanceTicker:{{set}}px",
|
"lang_setting_ticker": "#InstanceTicker:{{set}}px",
|
||||||
"lang_setting_animation": "Animation: {{set}}",
|
"lang_setting_animation": "Animazione: {{set}}",
|
||||||
"lang_setting_tag": "Tag TL:{{set}}",
|
"lang_setting_tag": "Tag TL:{{set}}",
|
||||||
"lang_setting_boxConfirm": "Post box:{{set}}",
|
"lang_setting_boxConfirm": "Casella postale:{{set}}",
|
||||||
"lang_setting_ul": "Native locale:{{set}}",
|
"lang_setting_ul": "Locale nativo:{{set}}",
|
||||||
"lang_setting_notf": "Native notification:{{set}}",
|
"lang_setting_notf": "Notifica nativa:{{set}}",
|
||||||
"lang_setting_quote": "Quote format:{{set}}",
|
"lang_setting_quote": "Formato preventivo:{{set}}",
|
||||||
"lang_setting_via": "Via:{{set}}",
|
"lang_setting_via": "Via:{{set}}",
|
||||||
"lang_setting_mov": "Action buttons hiding:{{set}}",
|
"lang_setting_mov": "Pulsanti di azione nascosti:{{set}}",
|
||||||
"lang_setting_setasread": "Notification markers:{{set}}",
|
"lang_setting_setasread": "Marcatori di notifiche:{{set}}",
|
||||||
"lang_setting_main": "Default account:{{set}}",
|
"lang_setting_main": "Account predefinito:{{set}}",
|
||||||
"lang_setting_sec": "Secondary toot button:{{set}}",
|
"lang_setting_sec": "Pulsante radice secondario:{{set}}",
|
||||||
"lang_setting_ksref": "Keyboard shortcuts are refreshed.",
|
"lang_setting_ksref": "Le scorciatoie da tastiera sono aggiornate.",
|
||||||
"lang_setting_nomuting": "No client is muted.",
|
"lang_setting_nomuting": "Nessun client è silenziato.",
|
||||||
"lang_setting_notftest": " Notification test ",
|
"lang_setting_notftest": " Test di notifica ",
|
||||||
"lang_setting_notftestprof": "Your icon is shown.",
|
"lang_setting_notftestprof": "La tua icona è mostrata.",
|
||||||
"lang_setting_exportwarn": "Only important data will be exported. You must keep this data secure.",
|
"lang_setting_exportwarn": "Verranno esportati solo dati importanti. È necessario mantenere questi dati al sicuro.",
|
||||||
"lang_setting_importwarn": "All data will be deleted.",
|
"lang_setting_importwarn": "Tutti i dati verranno eliminati.",
|
||||||
"lang_setting_noupd": "No available update",
|
"lang_setting_noupd": "Nessun aggiornamento disponibile",
|
||||||
"lang_setting_thisisbeta": "This is beta version. You have to update manually."
|
"lang_setting_thisisbeta": "Questa è la versione beta. È necessario aggiornare manualmente."
|
||||||
}
|
}
|
@@ -1,221 +1,229 @@
|
|||||||
{
|
{
|
||||||
"setting": "Preferences",
|
"setting": "Preferenze",
|
||||||
"set": "Save",
|
"set": "Salva",
|
||||||
"yes": "Yes",
|
"yes": "Sì",
|
||||||
"no": "No",
|
"no": "No",
|
||||||
"none": "None",
|
"none": "Nessuno",
|
||||||
"show": "Show",
|
"show": "Mostra",
|
||||||
"hide": "Hide",
|
"hide": "Nascondi",
|
||||||
"default": "Default",
|
"default": "Predefinito",
|
||||||
"change": "Change",
|
"change": "Cambia",
|
||||||
"select": "Select",
|
"select": "Seleziona",
|
||||||
"env": "System Preferences",
|
"env": "Preferenze Di Sistema",
|
||||||
"setlang": "Languages",
|
"setlang": "Lingue",
|
||||||
"backup": "Import and export of preferences",
|
"backup": "Importazione ed esportazione delle preferenze",
|
||||||
"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": "Se hai un errore quando scegli il file, incolla le stringhe stampate quando apri il file e fai clic su importazione",
|
||||||
"import": "Import",
|
"import": "Importa",
|
||||||
"export": "Export",
|
"export": "Esporta",
|
||||||
"hardwareAcceleration": "Disable hardware acceleration",
|
"hardwareAcceleration": "Disabilita accelerazione hardware",
|
||||||
"hardwareAccelerationWarn": "Auto restarted",
|
"hardwareAccelerationWarn": "Riavvio automatico",
|
||||||
"theme": "Themes",
|
"theme": "Temi",
|
||||||
"popup": "Popup notification",
|
"popup": "Notifica popup",
|
||||||
"popupwarn": "Hide to set \"0\"",
|
"popupwarn": "Nascondi per impostare \"0\"",
|
||||||
"s": "sec",
|
"s": "sec",
|
||||||
"nativenotf": "Native notification",
|
"nativenotf": "Notifica nativa",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "Questo non funziona su Windows Portable vers.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Test di notifica",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Larghezza delle colonne",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "La barra di scorrimento verrà mostrata quando la dimensione della finestra è superiore a quella delle colonne.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Larghezza minima del browser TweetDeck",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
"above": "above",
|
"margin": "Margine tra le timeline",
|
||||||
|
"above": "sopra",
|
||||||
"font": "Font",
|
"font": "Font",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
"fontsize": "Font size",
|
"fontsize": "Dimensione del font",
|
||||||
"savefolder": "Folder to save",
|
"savefolder": "Cartella da salvare",
|
||||||
"savefolderwarn": "TheDesk uses this value when it try to save pictures or take screenshots.",
|
"savefolderwarn": "TheDesk utilizza questo valore quando tenta di salvare le immagini o scattare screenshot.",
|
||||||
"useragent": "User agent",
|
"useragent": "User agent",
|
||||||
"useragentWarn": "Restart when changed",
|
"useragentWarn": "Riavvia quando cambiato",
|
||||||
"frame": "Window frame",
|
"frame": "Riquadro della finestra",
|
||||||
"frameWarn": "If 'off', the window looks cool.",
|
"frameWarn": "Se 'off', la finestra sembra figa.",
|
||||||
"downloadWin": "Versioning(o Windows downloader)",
|
"downloadWin": "Versioning(o downloader di Windows)",
|
||||||
"absolute": "absolute value",
|
"absolute": "valore assoluto",
|
||||||
"srcUrl": "Search engine",
|
"srcUrl": "Motore di ricerca",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} sarà sostituito dalla query.",
|
||||||
"themeSel": "Select theme",
|
"themeSel": "Seleziona tema",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Modifica e aggiungi temi",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Schema colori",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Opzioni avanzate",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Usa questo",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copia da",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Colore di sfondo",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguibile dallo sfondo",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
"text": "Colore testo",
|
||||||
"primary": "Background color",
|
"accent": "Sfondo dei potenziamenti",
|
||||||
"secondarycolor": "Background of components",
|
"modal": "Sfondo della finestra modale",
|
||||||
"text": "Text color",
|
"modalFooter": "Sfondo del piè di pagina della finestra modale",
|
||||||
"accent": "Background of boosts",
|
"thirdColor": "Backgroud di pulsanti tag, ecc(vicino a Sfondo)",
|
||||||
"add_new": "Add new",
|
"forthColor": "Barra del titolo (stesso schema sullo sfondo)",
|
||||||
"name": "Name",
|
"bottom": "Sfondo della barra dei menu in fondo alla finestra",
|
||||||
"desc": "About this theme",
|
"emphasized": "Sfondo del toot enfatizzato",
|
||||||
"customShare": "Share this code with other TheDesk. Do not share this code with MiAS.",
|
"postbox": "Sfondo del post box e menu",
|
||||||
"customImport": "Import of custom themes",
|
"active": "Sfondo degli elementi 'attivi'",
|
||||||
"delete": "Delete",
|
"selected": "Sfondo dei tasti freccia selezionati",
|
||||||
"cImpWarn": "Get more themes on <a href=\"https://assets.msky.cafe/\" target=\"_blank\">MiAS</a>",
|
"selectedWithShare": "Sfondo dei tasti freccia selezionati (toot potenziati)",
|
||||||
"timeline": "Timeline Preferences",
|
"add_new": "Aggiungi nuovo",
|
||||||
"timemode": "Time format",
|
"name": "Nome",
|
||||||
"relativetime": "Relative format:\"1 minutes ago\",\"3 days ago\"",
|
"desc": "Informazioni su questo tema",
|
||||||
"absolutetime": "Absolute format:\"23:25:21\",\"2017/12/30 23:59:00\"",
|
"customShare": "Condividi questo codice con altri TheDesk. Non condividere questo codice con MiAS.",
|
||||||
"mixtime": "Mixed format:toots posted today are relative-format, others are absolute-format.",
|
"customImport": "Importa temi personalizzati",
|
||||||
"relativesel": "Relative",
|
"delete": "Elimina",
|
||||||
"absolutesel": "Absolute",
|
"cImpWarn": "Ottieni altri temi su <a href=\"https://assets.msky.cafe/\" target=\"_blank\">MiAS</a>",
|
||||||
"doublesel": "Both relative and absolute",
|
"timeline": "Preferenze Della Timeline",
|
||||||
"mixsel": "Mixed",
|
"timemode": "Formato orario",
|
||||||
"locale": "Server's unique locale",
|
"relativetime": "Formato relativo:\"1 minuti fa\",\"3 giorni fa\"",
|
||||||
"localewarn": "This value is available on some Japanese servers",
|
"absolutetime": "Formato assoluto:\"23:25:21\",\"2017/12/30 23:59:00\"",
|
||||||
"nswf": "Hide Mark sensitive pictures",
|
"mixtime": "Formato misto: i toot pubblicati oggi sono in formato relativo, altri sono in formato assoluto.",
|
||||||
"nsfwwarn": "Strong blur effect",
|
"relativesel": "Relativo",
|
||||||
"cw": "Hide CW contents",
|
"absolutesel": "Assoluto",
|
||||||
"replyct": "Reply counter style",
|
"doublesel": "Sia relativo che assoluto",
|
||||||
"replyct_hidden": "Show 1+ if the replies are more than 1.",
|
"mixsel": "Misto",
|
||||||
"replyct_full": "Show full count(1,2...)",
|
"locale": "Localizzazione univoca del server",
|
||||||
"gif": "Animated GIF images animation",
|
"localewarn": "Questo valore è disponibile su alcuni server giapponesi",
|
||||||
"box": "Action of posting-box",
|
"nswf": "Nascondi le immagini sensibili ai segni",
|
||||||
"boxyes": "Folding",
|
"nsfwwarn": "Forte effetto sfocatura",
|
||||||
"boxabs": "Absolutely open",
|
"cw": "Nascondi contenuti CW",
|
||||||
"boxno": "Open after posting",
|
"replyct": "Stile contatore risposta",
|
||||||
"tag": "Tag TL Search",
|
"replyct_hidden": "Mostra 1+ se le risposte sono più di 1.",
|
||||||
"tagfed": "Use federated network",
|
"replyct_full": "Mostra il conteggio completo(1,2...)",
|
||||||
"taglocal": "Use local network",
|
"gif": "Animazione immagini GIF animate",
|
||||||
"via": "Show via",
|
"box": "Azione del distacco",
|
||||||
"mouseover": "Hide action buttons without mouseover",
|
"boxyes": "Pieghevole",
|
||||||
"mouseoverwarn": "You may feel 'mouseover' is unconfortable:(",
|
"boxabs": "Assolutamente aperto",
|
||||||
"mv": "Mouseover to show",
|
"boxno": "Apri dopo la pubblicazione",
|
||||||
"mvclick": "Click to show",
|
"tag": "Ricerca Tag TL",
|
||||||
"notfmarker": "Show Notification marker, red colored bell and counter(if you show a notification column.)",
|
"tagfed": "Usa rete federata",
|
||||||
"autofold": "Auto folding",
|
"taglocal": "Usa rete locale",
|
||||||
"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.",
|
"via": "Mostra tramite",
|
||||||
"lines": "lines",
|
"mouseover": "Nascondi i pulsanti azione senza passaggio del mouse",
|
||||||
"letters": "letters",
|
"mouseoverwarn": "Il 'passaggio del mouse' può essere non confortevole:(",
|
||||||
"or": "or",
|
"mv": "Passaggio del mouse per mostrare",
|
||||||
"imgheight": "Height of images",
|
"mvclick": "Clicca per mostrare",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"notfmarker": "Mostra marcatore di notifiche, campana di colore rosso e contatore (se si mostra una colonna di notifiche)",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"autofold": "Ripiegamento automatico",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"autofoldwarn": "TheDesk non collassa totes di 5 caratteri o meno. Inoltre, quando si crolla, le newlines non sono mostrate. Il conteggio del Desk solo le newline come numero di linee.",
|
||||||
"animation": "Animation of timelines",
|
"lines": "linee",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"letters": "lettere",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"or": "o",
|
||||||
"remote_img": "Get images from the remote server",
|
"imgheight": "Altezza delle immagini",
|
||||||
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
"imgheightwarn": "Opzione:Imposta \"pieno\" per smontare.",
|
||||||
"replySound": "Sound(Reply)",
|
"ticker": "Abilita OpenSticker",
|
||||||
"favSound": "Sound(Fav)",
|
"tickerwarn": "Mostra il nome dell'istanza e la favicon dei tooter <a href=\"https://opensticker.0px.io\">Informazioni su OpenSticker</a>",
|
||||||
"btSound": "Sound(Boost)",
|
"animation": "Animazione delle timeline",
|
||||||
"followSound": "Sound(Follow)",
|
"markers": "Marcatori (contrassegnare come letto) su HTL e notifiche",
|
||||||
"customSound": "Custom sound",
|
"markerswarn": "Mastodon 3.0~. Condiviso su WebUI e client supportati da terze parti.",
|
||||||
"post": "Posting Preferences",
|
"remote_img": "Ottieni immagini dal server remoto",
|
||||||
"autocw": "Alert before posting a long toot.",
|
"remote_imgWarn": "Tutte le anteprime sono ottenute dal server cache loginato.",
|
||||||
"autocwwarn": "Show dialog whether you make too-long text hidden.",
|
"replySound": "Suono(Rispondi)",
|
||||||
"defaultcw": "Default warining text",
|
"favSound": "Suono (Fav)",
|
||||||
"cws": "Always CW set",
|
"btSound": "Suono (Boost)",
|
||||||
"defaultvis": "Default visibility",
|
"followSound": "Suoni (Follow)",
|
||||||
"public": "Public",
|
"customSound": "Suono personalizzato",
|
||||||
"unlisted": "Unlisted",
|
"post": "Preferenze Di Pubblicazione",
|
||||||
"private": "Private",
|
"autocw": "Avverti prima di postare un lungo toot.",
|
||||||
"direct": "Direct",
|
"autocwwarn": "Mostra la finestra di dialogo se rendi nascosto un testo troppo lungo.",
|
||||||
"memory": "Memory(memorized as each server)",
|
"defaultcw": "Testo di avvertimento predefinito",
|
||||||
"useapi": "Default of your visibility(Set on preferences of Mastodon server)",
|
"cws": "Sempre CW impostato",
|
||||||
"postimg": "Posting images preferences",
|
"defaultvis": "Visibilità di default",
|
||||||
"showurl": "Insert media URL",
|
"public": "Pubblico",
|
||||||
"nourl": "Insert nothig",
|
"unlisted": "Non Elencato",
|
||||||
"disabled": "Disabled",
|
"private": "Privato",
|
||||||
"quote": "Quote format",
|
"direct": "Diretto",
|
||||||
"simple": "Only URL",
|
"memory": "Memoria (memorizzata come ogni server)",
|
||||||
"mention": "URL and acct(mention to the user)",
|
"useapi": "Predefinito della Sua visibilità(Imposta sulle preferenze del server Mastodon)",
|
||||||
"full": "URL, text and acct(mention to the user)",
|
"postimg": "Pubblicazione delle preferenze delle immagini",
|
||||||
"notqt": "Disabled(Hide buttons on TLs)",
|
"showurl": "Inserisci URL media",
|
||||||
"apiQuote": "API(only some instances)",
|
"nourl": "Non aggiungere niente",
|
||||||
"showBookmarkAction": "Show a bookmarking toot button",
|
"disabled": "Disattivato",
|
||||||
"main": "Default accounts of actions",
|
"quote": "Formato di citazione",
|
||||||
"mainwarn": "Main account can be set on Account Manager.",
|
"simple": "Solo URL",
|
||||||
"lastacct": "Account you used recently",
|
"mention": "URL e acct(menzione all'utente)",
|
||||||
"usemainacct": "Main account",
|
"full": "URL, testo e acct(menzione all'utente)",
|
||||||
"secondary": "Secondary Toot Button",
|
"notqt": "Disattivato(Migliore sui TL)",
|
||||||
"secwarn": "Toot with other visibility setting",
|
"apiQuote": "API(solo alcuni casi)",
|
||||||
"nothing": "Hidden",
|
"showBookmarkAction": "Mostra un pulsante toot per segnalibri",
|
||||||
"localonly": "Local Only",
|
"main": "Account predefiniti delle azioni",
|
||||||
"zeroWidthEmoji": "Zero-width space when inserting emojis",
|
"mainwarn": "L'account principale può essere impostato su Account Manager.",
|
||||||
"uploadCrop": "Auto scale to fit",
|
"lastacct": "Account utilizzato di recente",
|
||||||
"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.",
|
"usemainacct": "Account principale",
|
||||||
"keysc": "Keyboard shortcut Preferences",
|
"secondary": "Pulsante Toot secondario",
|
||||||
"iks": "Easy inserter",
|
"secwarn": "Toot con altre impostazioni di visibilità",
|
||||||
"okswarn": "You can insert any letters and emojis with only 3 keys",
|
"nothing": "Nascosto",
|
||||||
"muteemp": "Mute & Emphasis Preferences",
|
"localonly": "Solo Locale",
|
||||||
"climute": "Client Mute",
|
"zeroWidthEmoji": "Spazio larghezza zero quando si inseriscono emoji",
|
||||||
"cliemp": "Client Emphasis",
|
"uploadCrop": "Scala automatica per adattarsi",
|
||||||
"cliwarn": "Click client name on toots to toggle mute and emphasis.",
|
"uploadCropWarn": "Max px lato lungo. Le immagini caricate vengono convertite in JPEG (da JPEG) o PNG (da altri). Imposta 0 e le immagini non saranno ridimensionate. Attenzione: se si pubblica un'immagine animata come GIF, verrà convertita una immagine statica.",
|
||||||
"enter": "Enter to set",
|
"keysc": "Preferenze scorciatoia tastiera",
|
||||||
"wordmute": "Words Mute",
|
"iks": "Inseritore facile",
|
||||||
"wordemp": "Words Emphasis",
|
"okswarn": "È possibile inserire qualsiasi lettera ed emoji con solo 3 tasti",
|
||||||
"useremp": "Users Emphasis",
|
"muteemp": "Preferenze Di Muto & Emphasis",
|
||||||
"useerempwarn": "Set on users data modals.",
|
"climute": "Silenzia Client",
|
||||||
"empcolorwarn": "Use this color to emphasis",
|
"cliemp": "Emfasi del client",
|
||||||
"spotify": "Spotify and NowPlaying Preferences",
|
"cliwarn": "Fare clic sul nome del client sui toot per attivare o disattivare l'audio e l'enfasi.",
|
||||||
"spotifynote1": "Click ",
|
"enter": "Inserisci da impostare",
|
||||||
"spotifynote2": "icon to NowPlaying",
|
"wordmute": "Parole Mute",
|
||||||
"link": "Account Connection",
|
"wordemp": "Parole Enfatizzate",
|
||||||
"linkwarn": "TheDesk save your data on thedesk.top server.",
|
"useremp": "Enfasi Degli Utenti",
|
||||||
"connect": "Connect",
|
"useerempwarn": "Imposta sulle modalità dati degli utenti.",
|
||||||
"disconnect": "Disconnect",
|
"empcolorwarn": "Usa questo colore per enfatizzare",
|
||||||
"lastFmWarn": "User name...(empty to disconnect) You cannot hide your recent play log at last.fm privacy settings.",
|
"spotify": "Preferenze di Spotify e NowPlaying",
|
||||||
"templateedit": "Edit a template",
|
"spotifynote1": "Clic ",
|
||||||
|
"spotifynote2": "icona su NowPlaying",
|
||||||
|
"link": "Connessione Account",
|
||||||
|
"linkwarn": "TheDesk salva i tuoi dati sul server thedesk.top.",
|
||||||
|
"connect": "Connetti",
|
||||||
|
"disconnect": "Disconnetti",
|
||||||
|
"lastFmWarn": "Nome utente...(vuoto per disconnettersi) Non puoi nascondere il tuo recente log di riproduzione alle impostazioni di privacy last.fm.",
|
||||||
|
"templateedit": "Modifica un modello",
|
||||||
"templateeditwarn": "",
|
"templateeditwarn": "",
|
||||||
"template1": "Spotify:{song}:Song name/{album}:Album name/{artist}:Artist name/{url}:URL to Spotify",
|
"template1": "Spotify:{song}:Song name/{album}:Album name/{artist}:Artist name/{url}:URL per Spotify",
|
||||||
"template2": "macOS:{song}:Song name/{album}:Album name/{artist}:Artist name/composer:{composer}/spampling rate:{hz}/bit rate:{bitRate}/genre:{genre}",
|
"template2": "macOS:{song}:Song name/{album}:Album name/{artist}:Artist name/composer:{composer}/spampling rate:{hz}/bit rate:{bitRate}/genere:{genre}",
|
||||||
"template3": "",
|
"template3": "",
|
||||||
"postartwork": "Attach an Artwork of Spotify",
|
"postartwork": "Allega una grafica di Spotify",
|
||||||
"searchArtwork": "If the song has no artwork, automatic complete it(macOS)",
|
"searchArtwork": "Se il brano non ha nessuna grafica, completalo automaticamente (macOS)",
|
||||||
"searchArtworkWarn": "If you nowplaying an non-artwork song, get one which seems nice through API. If you do not like the completed artwork, you can right-click it to delete.",
|
"searchArtworkWarn": "Se si esegue ora una canzone senza grafica, ottieni una che sembra bella attraverso API. Se non ti piace la grafica completata, puoi cliccare con il tasto destro del mouse per eliminarla.",
|
||||||
"tts": "TTS(text to speech) Preferences",
|
"tts": "Preferenze di TTS(testo a voce)",
|
||||||
"bouyomi": "BouyomiChan connect",
|
"bouyomi": "Connessione BouyomiChan",
|
||||||
"bouyomiWarn": "Require: BouyomiChan WebSocket Plugin",
|
"bouyomiWarn": "Requisito: BouyomiChan WebSocket Plugin",
|
||||||
"speed": "Speed",
|
"speed": "Velocità",
|
||||||
"speedwarn": "1-100(default:10)",
|
"speedwarn": "1-100(default:10)",
|
||||||
"pitch": "Pitch",
|
"pitch": "Tono",
|
||||||
"pitchwarn": "0-100(default:50)",
|
"pitchwarn": "0-100(default:50)",
|
||||||
"vol": "Volume",
|
"vol": "Volume",
|
||||||
"volwarn": "0-100(default:100)",
|
"volwarn": "0-100(default:100)",
|
||||||
"volwarn80": "0-100(default:80)",
|
"volwarn80": "0-100(default:80)",
|
||||||
"test": "Test",
|
"test": "Prova",
|
||||||
"sample": "TheDesk is an open-source Mastodon client for PC.",
|
"sample": "TheDesk è un client Mastodon open source per PC.",
|
||||||
"playstop": "Play/Stop",
|
"playstop": "Riproduci/Ferma",
|
||||||
"back": "Back",
|
"back": "Indietro",
|
||||||
"keyscs": "Keyboard shortcuts",
|
"keyscs": "Scorciatoie da tastiera",
|
||||||
"keyscr": "Jump to n(1-9)th column",
|
"keyscr": "Vai alla colonna n(1-9)th",
|
||||||
"keynew": "Open toot box",
|
"keynew": "Apri casella toot",
|
||||||
"keytoggle": "Toggle toot box",
|
"keytoggle": "Attiva/Disattiva casella di avvio",
|
||||||
"keypost": "Post",
|
"keypost": "Post",
|
||||||
"keysecpost": "Post(secondary toot)",
|
"keysecpost": "Post(toot secondario)",
|
||||||
"keyunread": "Make all notifications read",
|
"keyunread": "Leggi tutte le notifiche",
|
||||||
"keyesc": "Hide toot box",
|
"keyesc": "Nascondi toot box",
|
||||||
"keyf5": "Super Reload",
|
"keyf5": "Super Ricarica",
|
||||||
"keyclear": "Clear toot box",
|
"keyclear": "Svuota casella toot",
|
||||||
"keyacctman": "Account Manager",
|
"keyacctman": "Gestione account",
|
||||||
"keyshowprof": "Show profile of selecting",
|
"keyshowprof": "Mostra il profilo di selezione",
|
||||||
"keyrow": "Show next or previous image",
|
"keyrow": "Mostra l'immagine successiva o precedente",
|
||||||
"keyzoom": "Mousewheel:Zoom a image",
|
"keyzoom": "Mousewheel:Zoom immagine",
|
||||||
"whenSelected": "When a toot is selected: ",
|
"whenSelected": "Quando un toot è selezionato: ",
|
||||||
"fav": "Favourite this toot",
|
"fav": "Preferito questo toot",
|
||||||
"bt": "Boost this toot",
|
"bt": "Migliora questo toot",
|
||||||
"reply": "Reply to this toot",
|
"reply": "Rispondi a questo toot",
|
||||||
"keyselecttop": "Select the top & left(No.1 column) toot",
|
"keyselecttop": "Seleziona la colonna in alto a sinistra (No.1) toot",
|
||||||
"reset": "Reset(Danger)",
|
"reset": "Reset(Pericolo)",
|
||||||
"resetconfirm": "Delete all data. You cannot undo. Continue?",
|
"resetconfirm": "Eliminare tutti i dati. Non puoi annullare. Continuare?",
|
||||||
"about": "About TheDesk",
|
"about": "Informazioni Su TheDesk",
|
||||||
"hp": "Website",
|
"hp": "Sito web",
|
||||||
"support": "Support",
|
"support": "Supporto",
|
||||||
"help": "Help",
|
"help": "Aiuto",
|
||||||
"sushi": "Give me a sushi!",
|
"sushi": "Dammi un sushi!",
|
||||||
"checkup": "Check update",
|
"checkup": "Verifica gli aggiornamenti",
|
||||||
"ossJP": ""
|
"ossJP": ""
|
||||||
}
|
}
|
||||||
|
@@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
"updatehere": "Get latest TheDesk",
|
"updatehere": "Ottieni l'ultimo TheDesk",
|
||||||
"download": "Start",
|
"download": "Inizia",
|
||||||
"portable": "Portable ver.",
|
"portable": "Ver. Portatile.",
|
||||||
"installer": "Installer(Recommended)",
|
"installer": "Installer(Consigliato)",
|
||||||
"linux": "zip",
|
"linux": "zip",
|
||||||
"linuxdeb": "deb(Recommended on buntu, Debian)",
|
"linuxdeb": "deb(Consigliato su buntu, Debian)",
|
||||||
"linuxsnap": "snap",
|
"linuxsnap": "snap",
|
||||||
"snap": "Get it on Snapcraft",
|
"snap": "Ottienilo su Snapcraft",
|
||||||
"sureupd": "You may lose a cool experience!",
|
"sureupd": "Potresti perdere un'esperienza fresca!",
|
||||||
"skipupd": "Skip this update",
|
"skipupd": "Salta questo aggiornamento",
|
||||||
"nexttl": "Hidden until next TL loading",
|
"nexttl": "Nascosto fino al prossimo caricamento TL",
|
||||||
"nextver": "Hidden until next version",
|
"nextver": "Nascosto fino alla prossima versione",
|
||||||
"problem1": "Some problems?",
|
"problem1": "Alcuni problemi?",
|
||||||
"problem2": "Please download on <a href='https://thedesk.top'>Oficial HP</a>.",
|
"problem2": "Scarica su <a href='https://thedesk.top'>Oficial HP</a>.",
|
||||||
"continue": "Continue updating",
|
"continue": "Continua l'aggiornamento",
|
||||||
"dlnow": "Downloading...",
|
"dlnow": "Scaricamento...",
|
||||||
"checkWhatIsNew": "What is new?"
|
"checkWhatIsNew": "Che cosa è nuovo?"
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere":"ドラッグしてみ?(ドラッグしたらすぐアップロードされるで)",
|
"draghere":"ドラッグしてみ?(ドラッグしたらすぐアップロードされるで)",
|
||||||
|
"nowOffline":"オフラインやで。投稿は全部下書きに行くし、もしオンラインなったら再読み込みしたらええで。",
|
||||||
|
"reOnline":"オンライン戻ったから再読み込みしてな。",
|
||||||
"close":"Close",
|
"close":"Close",
|
||||||
"webSrc": "Webでさがす",
|
"webSrc": "Webでさがす",
|
||||||
"tsSrc": "tootsearchでさがす",
|
"tsSrc": "tootsearchでさがす",
|
||||||
@@ -43,6 +45,7 @@
|
|||||||
"thingsEmoji":"もの",
|
"thingsEmoji":"もの",
|
||||||
"symbolEmoji":"記号",
|
"symbolEmoji":"記号",
|
||||||
"flagsEmoji":"国旗",
|
"flagsEmoji":"国旗",
|
||||||
|
"draft": "下書き(タンス)",
|
||||||
"poll":"アンケート",
|
"poll":"アンケート",
|
||||||
"pollDdisabled":"アンケート付けへん",
|
"pollDdisabled":"アンケート付けへん",
|
||||||
"pollProvider":"アンケートのプロバイダ",
|
"pollProvider":"アンケートのプロバイダ",
|
||||||
|
@@ -72,6 +72,7 @@
|
|||||||
"lang_status_btWarn": "ブーストしたんやけどインスタンスがちゃうときは時間がかかるで、知らんけど。",
|
"lang_status_btWarn": "ブーストしたんやけどインスタンスがちゃうときは時間がかかるで、知らんけど。",
|
||||||
"lang_post_unfinishedMedia": "処理未了のメディアがあります。再試行してください。",
|
"lang_post_unfinishedMedia": "処理未了のメディアがあります。再試行してください。",
|
||||||
"lang_post_retry": "再試行",
|
"lang_post_retry": "再試行",
|
||||||
|
"lang_post_offline": "オフラインやったし下書きいれといたで",
|
||||||
"lang_status_follow": "フォロー",
|
"lang_status_follow": "フォロー",
|
||||||
"lang_status_unfollow": "フォロー解除",
|
"lang_status_unfollow": "フォロー解除",
|
||||||
"lang_status_block": "ブロック",
|
"lang_status_block": "ブロック",
|
||||||
@@ -86,6 +87,9 @@
|
|||||||
"lang_status_endorse": "プロフで紹介する",
|
"lang_status_endorse": "プロフで紹介する",
|
||||||
"lang_status_followers": "フォロワー",
|
"lang_status_followers": "フォロワー",
|
||||||
"lang_status_active": "最新トゥート",
|
"lang_status_active": "最新トゥート",
|
||||||
|
"lang_secure_draft": "タンスになおす",
|
||||||
|
"lang_secure_useThis": "使う",
|
||||||
|
"lang_secure_deleteThis": "ほかす",
|
||||||
"lang_suggest_nodata": "サジェストしたいんやけど、絵文字リストを取得してくれへん?",
|
"lang_suggest_nodata": "サジェストしたいんやけど、絵文字リストを取得してくれへん?",
|
||||||
"lang_usetxtbox_reply": "返信モードや。やめるときはCtrl+Shift+Cな。",
|
"lang_usetxtbox_reply": "返信モードや。やめるときはCtrl+Shift+Cな。",
|
||||||
"lang_cards_check": "チェック",
|
"lang_cards_check": "チェック",
|
||||||
@@ -221,6 +225,7 @@
|
|||||||
"lang_parse_nsfw": "閲覧注意",
|
"lang_parse_nsfw": "閲覧注意",
|
||||||
"lang_parse_html": "埋め込みを表示",
|
"lang_parse_html": "埋め込みを表示",
|
||||||
"lang_parse_notffilter": "このユーザーの通知だけ見る",
|
"lang_parse_notffilter": "このユーザーの通知だけ見る",
|
||||||
|
"lang_parse_disconnected": "ストリーミングがなんかおかしいねん(3秒後にもっかいやってみる)",
|
||||||
"lang_misskeyparse_renote": "再投稿",
|
"lang_misskeyparse_renote": "再投稿",
|
||||||
"lang_misskeyparse_renoteqt": "引用",
|
"lang_misskeyparse_renoteqt": "引用",
|
||||||
"lang_misskeyparse_reaction": "リアクション",
|
"lang_misskeyparse_reaction": "リアクション",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere":"ここにドラッグして添付(ドラッグと同時にアップロードされます)",
|
"draghere":"ここにドラッグして添付(ドラッグと同時にアップロードされます)",
|
||||||
|
"nowOffline":"オフラインです。投稿はすべて下書きに追加されます。オンライン復帰時には再読み込みを推奨します。",
|
||||||
|
"reOnline": "オンラインに復帰しました。再読み込みを推奨します。",
|
||||||
"webSrc": "Webで検索",
|
"webSrc": "Webで検索",
|
||||||
"tsSrc": "tootsearchで検索",
|
"tsSrc": "tootsearchで検索",
|
||||||
"close":"Close",
|
"close":"Close",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji":"もの",
|
"thingsEmoji":"もの",
|
||||||
"symbolEmoji":"記号",
|
"symbolEmoji":"記号",
|
||||||
"flagsEmoji":"国旗",
|
"flagsEmoji":"国旗",
|
||||||
|
"draft": "下書き",
|
||||||
"poll":"アンケート",
|
"poll":"アンケート",
|
||||||
"pollDdisabled":"アンケートを使用しない",
|
"pollDdisabled":"アンケートを使用しない",
|
||||||
"pollProvider":"アンケートのプロバイダ",
|
"pollProvider":"アンケートのプロバイダ",
|
||||||
|
@@ -72,6 +72,7 @@
|
|||||||
"lang_post_btn3": "そのまま投稿",
|
"lang_post_btn3": "そのまま投稿",
|
||||||
"lang_post_unfinishedMedia": "処理未了のメディアがあります。再試行してください。",
|
"lang_post_unfinishedMedia": "処理未了のメディアがあります。再試行してください。",
|
||||||
"lang_post_retry": "再試行",
|
"lang_post_retry": "再試行",
|
||||||
|
"lang_post_offline": "オフラインのため下書きに追加しました。",
|
||||||
"lang_status_favWarn": "お気に入り登録しました。インスタンスが違うときは時間がかかる場合があります。",
|
"lang_status_favWarn": "お気に入り登録しました。インスタンスが違うときは時間がかかる場合があります。",
|
||||||
"lang_status_btWarn": "ブーストしました。インスタンスが違うときは時間がかかる場合があります。",
|
"lang_status_btWarn": "ブーストしました。インスタンスが違うときは時間がかかる場合があります。",
|
||||||
"lang_status_follow": "フォロー",
|
"lang_status_follow": "フォロー",
|
||||||
@@ -88,6 +89,9 @@
|
|||||||
"lang_status_endorse": "プロフで紹介する",
|
"lang_status_endorse": "プロフで紹介する",
|
||||||
"lang_status_followers": "フォロワー",
|
"lang_status_followers": "フォロワー",
|
||||||
"lang_status_active": "最新トゥート",
|
"lang_status_active": "最新トゥート",
|
||||||
|
"lang_secure_draft": "下書きに追加",
|
||||||
|
"lang_secure_useThis": "使う",
|
||||||
|
"lang_secure_deleteThis": "削除",
|
||||||
"lang_suggest_nodata": "サジェストのために絵文字リストを取得してください。",
|
"lang_suggest_nodata": "サジェストのために絵文字リストを取得してください。",
|
||||||
"lang_usetxtbox_reply": "返信モードです。クリアするときはCtrl+Shift+Cを押してください。",
|
"lang_usetxtbox_reply": "返信モードです。クリアするときはCtrl+Shift+Cを押してください。",
|
||||||
"lang_cards_check": "チェック",
|
"lang_cards_check": "チェック",
|
||||||
@@ -227,6 +231,7 @@
|
|||||||
"lang_parse_html": "埋め込みを表示",
|
"lang_parse_html": "埋め込みを表示",
|
||||||
"lang_parse_hidden": "ミュートされた引用トゥート",
|
"lang_parse_hidden": "ミュートされた引用トゥート",
|
||||||
"lang_parse_notffilter": "このユーザーの通知のみを表示",
|
"lang_parse_notffilter": "このユーザーの通知のみを表示",
|
||||||
|
"lang_parse_disconnected": "ストリーミングから切断されました(3秒後に再試行)",
|
||||||
"lang_misskeyparse_renote": "再投稿",
|
"lang_misskeyparse_renote": "再投稿",
|
||||||
"lang_misskeyparse_renoteqt": "引用",
|
"lang_misskeyparse_renoteqt": "引用",
|
||||||
"lang_misskeyparse_reaction": "リアクション",
|
"lang_misskeyparse_reaction": "リアクション",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Drag here to upload",
|
||||||
|
"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",
|
"close": "Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Continue to post",
|
"lang_post_btn3": "Continue to post",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "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_favWarn": "It will take a miunte to favourite a remote toot.",
|
||||||
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
"lang_status_btWarn": "It will take a miunte to boost a remote toot.",
|
||||||
"lang_status_follow": "Follow",
|
"lang_status_follow": "Follow",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Feature on profile",
|
"lang_status_endorse": "Feature on profile",
|
||||||
"lang_status_followers": "Followers",
|
"lang_status_followers": "Followers",
|
||||||
"lang_status_active": "Last status",
|
"lang_status_active": "Last status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Delete this",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " check",
|
"lang_cards_check": " check",
|
||||||
@@ -131,13 +135,17 @@
|
|||||||
"lang_layout_linkana": "Auto Link Analyzer",
|
"lang_layout_linkana": "Auto Link Analyzer",
|
||||||
"lang_layout_linkanades": "Auto link analyzer",
|
"lang_layout_linkanades": "Auto link analyzer",
|
||||||
"lang_layout_tts": "Text to speech ",
|
"lang_layout_tts": "Text to speech ",
|
||||||
"lang_layout_reconnect": "Reload this column",
|
"lang_layout_reconnect": "Reload",
|
||||||
"lang_layout_headercolor": "Header color of this column",
|
"lang_layout_headercolor": "Header color of this column",
|
||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Direct Message",
|
"lang_layout_dm": "Direct Message",
|
||||||
"lang_layout_webviewmode": "Prefer WebView",
|
"lang_layout_webviewmode": "Prefer WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stack to the left",
|
"lang_layout_leftFold": "Stack to the left",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Delete this column",
|
"lang_layout_deleteColumn": "Delete this column",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaction",
|
"lang_misskeyparse_reaction": "Reaction",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Time format:{{set}}",
|
"lang_setting_time": "Time format:{{set}}",
|
||||||
"lang_setting_theme": "Theme:{{set}}",
|
"lang_setting_theme": "Theme:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
"lang_setting_nsfw": "Sensitive media:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Notification test",
|
"nntest": "Notification test",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Minimum width of TweetDeck browser",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Font",
|
"font": "Font",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -43,19 +44,26 @@
|
|||||||
"srcUrl": "Search engine",
|
"srcUrl": "Search engine",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Select theme",
|
"themeSel": "Select theme",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Edit and add themes",
|
||||||
"customthemeDirection": "Color scheme",
|
"customthemeDirection": "Color scheme",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Background color",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Text color",
|
"text": "Text color",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Add new",
|
"add_new": "Add new",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"desc": "About this theme",
|
"desc": "About this theme",
|
||||||
@@ -101,8 +109,8 @@
|
|||||||
"or": "or",
|
"or": "or",
|
||||||
"imgheight": "Height of images",
|
"imgheight": "Height of images",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation of timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Dra hit for å laste opp",
|
"draghere": "Dra hit for å laste opp",
|
||||||
|
"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": "Lukk",
|
"close": "Lukk",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Verktøyemojier",
|
"thingsEmoji": "Verktøyemojier",
|
||||||
"symbolEmoji": "Symbolemojier",
|
"symbolEmoji": "Symbolemojier",
|
||||||
"flagsEmoji": "Flaggemojier",
|
"flagsEmoji": "Flaggemojier",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Spørreundersøkelse",
|
"poll": "Spørreundersøkelse",
|
||||||
"pollDdisabled": "Spørreundersøkelser: Avslått",
|
"pollDdisabled": "Spørreundersøkelser: Avslått",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Varsler",
|
"notf": "Varsler",
|
||||||
"bookmark": "Bokmerke",
|
"bookmark": "Bokmerke",
|
||||||
"showThisTL": "Vis denne tidslinjen:",
|
"showThisTL": "Vis denne tidslinjen:",
|
||||||
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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": "Legg til",
|
"add": "Legg til",
|
||||||
"search": "Søk",
|
"search": "Søk",
|
||||||
"sortSet": "Sorter",
|
"sortSet": "Sorter",
|
||||||
|
@@ -71,6 +71,7 @@
|
|||||||
"lang_post_btn3": "Fortsett å poste",
|
"lang_post_btn3": "Fortsett å poste",
|
||||||
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
"lang_post_unfinishedMedia": "The server has not finished processing your media. Retry.",
|
||||||
"lang_post_retry": "Retry",
|
"lang_post_retry": "Retry",
|
||||||
|
"lang_post_offline": "Add to the drafts because of offline",
|
||||||
"lang_status_favWarn": "Det vil ta en stund å favorittmarkere en fjern toot.",
|
"lang_status_favWarn": "Det vil ta en stund å favorittmarkere en fjern toot.",
|
||||||
"lang_status_btWarn": "Det vil ta en stund å dytte en fjern toot.",
|
"lang_status_btWarn": "Det vil ta en stund å dytte en fjern toot.",
|
||||||
"lang_status_follow": "Følg",
|
"lang_status_follow": "Følg",
|
||||||
@@ -87,6 +88,9 @@
|
|||||||
"lang_status_endorse": "Fremhev profil",
|
"lang_status_endorse": "Fremhev profil",
|
||||||
"lang_status_followers": "Følgere",
|
"lang_status_followers": "Følgere",
|
||||||
"lang_status_active": "Siste status",
|
"lang_status_active": "Siste status",
|
||||||
|
"lang_secure_draft": "Add to draft",
|
||||||
|
"lang_secure_useThis": "Use this",
|
||||||
|
"lang_secure_deleteThis": "Slett dette",
|
||||||
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
"lang_suggest_nodata": "Please get emojis list in order to show suggestion.",
|
||||||
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
"lang_usetxtbox_reply": "Reply Mode. Ctrl+Shift+C to clear.",
|
||||||
"lang_cards_check": " kryss av",
|
"lang_cards_check": " kryss av",
|
||||||
@@ -136,8 +140,12 @@
|
|||||||
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
"lang_layout_nodata": "[No data]<br>F5/⌘+R to reload",
|
||||||
"lang_layout_dm": "Direktemelding",
|
"lang_layout_dm": "Direktemelding",
|
||||||
"lang_layout_webviewmode": "Foretrekk WebView",
|
"lang_layout_webviewmode": "Foretrekk WebView",
|
||||||
"lang_excluded": "Excluded type of notification",
|
"lang_layout_excluded": "Excluded type of notification",
|
||||||
"lang_layout_excludingbt": "Show BT mode(OFF/Exclude BT/Only BT)",
|
"lang_layout_mention": "Mentions",
|
||||||
|
"lang_layout_fav": "Favourites",
|
||||||
|
"lang_layout_bt": "Boosts",
|
||||||
|
"lang_layout_poll": "Polls",
|
||||||
|
"lang_layout_excludingbt": "Show BT mode",
|
||||||
"lang_layout_leftFold": "Stable til venstre",
|
"lang_layout_leftFold": "Stable til venstre",
|
||||||
"lang_layout_leftUnfold": "Dock on the right",
|
"lang_layout_leftUnfold": "Dock on the right",
|
||||||
"lang_layout_deleteColumn": "Slett denne kolonnen",
|
"lang_layout_deleteColumn": "Slett denne kolonnen",
|
||||||
@@ -222,6 +230,7 @@
|
|||||||
"lang_parse_html": "Show embed HTML",
|
"lang_parse_html": "Show embed HTML",
|
||||||
"lang_parse_notffilter": "Show this user's notifications",
|
"lang_parse_notffilter": "Show this user's notifications",
|
||||||
"lang_parse_hidden": "Unvisible quoted toot",
|
"lang_parse_hidden": "Unvisible quoted toot",
|
||||||
|
"lang_parse_disconnected": "Streaming has been disconnected(retry after 3s)",
|
||||||
"lang_misskeyparse_renote": "Repost",
|
"lang_misskeyparse_renote": "Repost",
|
||||||
"lang_misskeyparse_renoteqt": "Renote",
|
"lang_misskeyparse_renoteqt": "Renote",
|
||||||
"lang_misskeyparse_reaction": "Reaksjon",
|
"lang_misskeyparse_reaction": "Reaksjon",
|
||||||
@@ -236,6 +245,7 @@
|
|||||||
"lang_misskeyparse_reacted": " reacted your following post.",
|
"lang_misskeyparse_reacted": " reacted your following post.",
|
||||||
"lang_setting_time": "Tidsformat:{{set}}",
|
"lang_setting_time": "Tidsformat:{{set}}",
|
||||||
"lang_setting_theme": "Tema:{{set}}",
|
"lang_setting_theme": "Tema:{{set}}",
|
||||||
|
"lang_setting_compat": "Compatible",
|
||||||
"lang_setting_nsfw": "Sensitivt innhold:{{set}}",
|
"lang_setting_nsfw": "Sensitivt innhold:{{set}}",
|
||||||
"lang_setting_cw": "CW:{{set}}",
|
"lang_setting_cw": "CW:{{set}}",
|
||||||
"lang_setting_cwtext": "Default CW text:{{set}}",
|
"lang_setting_cwtext": "Default CW text:{{set}}",
|
||||||
|
@@ -24,10 +24,11 @@
|
|||||||
"nativenotf": "Native notification",
|
"nativenotf": "Native notification",
|
||||||
"nnwarn": "This does not work on Windows Portable ver.",
|
"nnwarn": "This does not work on Windows Portable ver.",
|
||||||
"nntest": "Varseltest",
|
"nntest": "Varseltest",
|
||||||
"minwidth": "Minimum width of columns",
|
"width": "Width of columns",
|
||||||
"minwidthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
"widthwarn": "Scroll bar will be shown when your window size is more than ammounts of columns.",
|
||||||
"fixwidth": "Minimum width of TweetDeck browser",
|
"fixwidth": "Minimum width of TweetDeck browser",
|
||||||
"fixwidthwarn": "",
|
"fixwidthwarn": "",
|
||||||
|
"margin": "Margin between timelines",
|
||||||
"above": "above",
|
"above": "above",
|
||||||
"font": "Font",
|
"font": "Font",
|
||||||
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
"fontwarn": "Select your favorite font to 'Select'(Windows/ macOS only)",
|
||||||
@@ -43,19 +44,26 @@
|
|||||||
"srcUrl": "Search engine",
|
"srcUrl": "Search engine",
|
||||||
"srcUrlWarn": "{q} will be replaced to query.",
|
"srcUrlWarn": "{q} will be replaced to query.",
|
||||||
"themeSel": "Velg tema",
|
"themeSel": "Velg tema",
|
||||||
"customtheme": "Edit and add custom themes",
|
"customtheme": "Edit and add themes",
|
||||||
"customthemeDirection": "Fargepalett",
|
"customthemeDirection": "Fargepalett",
|
||||||
"advanced": "Advanced options(6 additional colors)",
|
"advanced": "Advanced options",
|
||||||
"advancedWarn": "Advanced options will be <i>null</i> if you set nothing, while basic 3 options will be white(<i>fff</i>). They(adv. options) will be reset if you saved with advanced panel closed.",
|
"advancedWarn": "",
|
||||||
"active": "Background of Show or CW buttons, selected options...",
|
"use": "Use this",
|
||||||
"modal": "Background of modals",
|
"copyFrom": "Copy from",
|
||||||
"bottom": "Background of bottom bar",
|
"bg": "Background color",
|
||||||
"postbox": "Background of post box and menu",
|
"subcolor": "Distinguishable from background",
|
||||||
"subcolor": "Subcolor, has harmony with secondary color",
|
|
||||||
"primary": "Bakgrunnsfarge",
|
|
||||||
"secondarycolor": "Background of components",
|
|
||||||
"text": "Tekstfarge",
|
"text": "Tekstfarge",
|
||||||
"accent": "Background of boosts",
|
"accent": "Background of 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)",
|
||||||
"add_new": "Legg til ny",
|
"add_new": "Legg til ny",
|
||||||
"name": "Navn",
|
"name": "Navn",
|
||||||
"desc": "Om dette temaet",
|
"desc": "Om dette temaet",
|
||||||
@@ -101,8 +109,8 @@
|
|||||||
"or": "eller",
|
"or": "eller",
|
||||||
"imgheight": "Bildehøyder",
|
"imgheight": "Bildehøyder",
|
||||||
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
"imgheightwarn": "Option:Set \"full\" to uncrop.",
|
||||||
"ticker": "Enable #InstanceTicker",
|
"ticker": "Enable OpenSticker",
|
||||||
"tickerwarn": "Show colorful stickers about the server. <a href=\"https://github.com/MiyonMiyon/InstanceTicker_List\">About #InstanceTicker</a> (c)2018-2020 MiyonMiyon. Released under the MIT License.",
|
"tickerwarn": "Show the instance name and favicon of tooters <a href=\"https://opensticker.0px.io\">About OpenSticker</a>",
|
||||||
"animation": "Animation of timelines",
|
"animation": "Animation of timelines",
|
||||||
"markers": "Markers(mark as read) on HTL and notifications",
|
"markers": "Markers(mark as read) on HTL and notifications",
|
||||||
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
"markerswarn": "Mastodon 3.0~. Shared on WebUI and third-party supported clients.",
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
{
|
{
|
||||||
"draghere": "Drag here to upload",
|
"draghere": "Drag here to upload",
|
||||||
|
"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",
|
"close": "Close",
|
||||||
"webSrc": "Search on Web",
|
"webSrc": "Search on Web",
|
||||||
"tsSrc": "Search on tootsearch",
|
"tsSrc": "Search on tootsearch",
|
||||||
@@ -45,6 +47,7 @@
|
|||||||
"thingsEmoji": "Emojis of tools",
|
"thingsEmoji": "Emojis of tools",
|
||||||
"symbolEmoji": "Emojis of symbols",
|
"symbolEmoji": "Emojis of symbols",
|
||||||
"flagsEmoji": "Emojis of flags",
|
"flagsEmoji": "Emojis of flags",
|
||||||
|
"draft": "Draft",
|
||||||
"poll": "Poll",
|
"poll": "Poll",
|
||||||
"pollDdisabled": "Polls: Disabled",
|
"pollDdisabled": "Polls: Disabled",
|
||||||
"pollProvider": "Provider of Poll",
|
"pollProvider": "Provider of Poll",
|
||||||
@@ -130,7 +133,7 @@
|
|||||||
"notf": "Notifications",
|
"notf": "Notifications",
|
||||||
"bookmark": "Bookmarks",
|
"bookmark": "Bookmarks",
|
||||||
"showThisTL": "Show this TL:",
|
"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>). Keyboard shortcuts will irritate you. When you feel so, you check 'Prefer WebView' on top of the column.",
|
"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",
|
"add": "Add",
|
||||||
"search": "Search",
|
"search": "Search",
|
||||||
"sortSet": "Sort",
|
"sortSet": "Sort",
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user