Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
f3fa854074 | ||
|
714feca455 | ||
|
f0db66d8d8 | ||
|
cd74236462 | ||
|
955c95e8a8 | ||
|
ebdacc013a |
896
app/css/tl.css
896
app/css/tl.css
File diff suppressed because it is too large
Load Diff
@@ -37,8 +37,6 @@ function imgv(id, key, acct_id) {
|
|||||||
}
|
}
|
||||||
//イメージビューワーの送り
|
//イメージビューワーの送り
|
||||||
function imgCont(type) {
|
function imgCont(type) {
|
||||||
$('#imgprog').text(0)
|
|
||||||
$('#imgsec').text(0)
|
|
||||||
var key = $('#imagemodal').attr('data-key')
|
var key = $('#imagemodal').attr('data-key')
|
||||||
var id = $('#imagemodal').attr('data-id')
|
var id = $('#imagemodal').attr('data-id')
|
||||||
if (type == 'next') {
|
if (type == 'next') {
|
||||||
@@ -59,6 +57,8 @@ function imgCont(type) {
|
|||||||
murl = ourl
|
murl = ourl
|
||||||
}
|
}
|
||||||
if (murl) {
|
if (murl) {
|
||||||
|
$('#imgprog').text(0)
|
||||||
|
$('#imgsec').text(0)
|
||||||
$('#imgmodal').attr('src', '../../img/loading.svg')
|
$('#imgmodal').attr('src', '../../img/loading.svg')
|
||||||
var type = $('#' + id + '-image-' + key).attr('data-type')
|
var type = $('#' + id + '-image-' + key).attr('data-type')
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
@@ -95,6 +95,7 @@ function imageXhr(id, key, murl) {
|
|||||||
'loadend',
|
'loadend',
|
||||||
function(event) {
|
function(event) {
|
||||||
var total = event.total
|
var total = event.total
|
||||||
|
$('#imgbyte').text(Math.floor(total/1024))
|
||||||
var now = event.loaded
|
var now = event.loaded
|
||||||
var per = (now / total) * 100
|
var per = (now / total) * 100
|
||||||
$('#imgprog').text(Math.floor(per))
|
$('#imgprog').text(Math.floor(per))
|
||||||
|
@@ -1,218 +1,293 @@
|
|||||||
//左下のメッセージ
|
//左下のメッセージ
|
||||||
var todcTrigger = null;
|
var todcTrigger = null
|
||||||
function todo(mes) {
|
function todo(mes) {
|
||||||
clearInterval(todcTrigger);
|
clearInterval(todcTrigger)
|
||||||
$("#message").text(mes);
|
$('#message').text(mes)
|
||||||
$("#message").fadeIn();
|
$('#message').fadeIn()
|
||||||
todcTrigger = setTimeout(todc, 4000);
|
todcTrigger = setTimeout(todc, 4000)
|
||||||
}
|
}
|
||||||
function todc() {
|
function todc() {
|
||||||
$("#message").fadeOut();
|
$('#message').fadeOut()
|
||||||
}
|
}
|
||||||
//reverse
|
//reverse
|
||||||
function bottomReverse() {
|
function bottomReverse() {
|
||||||
$("#bottom").toggleClass("reverse");
|
$('#bottom').toggleClass('reverse')
|
||||||
$(".leftside").toggleClass("reverse");
|
$('.leftside').toggleClass('reverse')
|
||||||
if ($("#bottom").hasClass("reverse")) {
|
if ($('#bottom').hasClass('reverse')) {
|
||||||
localStorage.removeItem("reverse");
|
localStorage.removeItem('reverse')
|
||||||
} else {
|
} else {
|
||||||
localStorage.setItem("reverse", "true");
|
localStorage.setItem('reverse', 'true')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function tips(mode) {
|
function tips(mode) {
|
||||||
postMessage(["sendSinmpleIpc", "endmem"], "*");
|
postMessage(['sendSinmpleIpc', 'endmem'], '*')
|
||||||
clearInterval(clockint);
|
clearInterval(clockint)
|
||||||
clearInterval(spotStart);
|
clearInterval(spotStart)
|
||||||
if (mode == "ver") {
|
if (mode == 'ver') {
|
||||||
tipsToggle();
|
tipsToggle()
|
||||||
$("#tips-text").html('<img src="../../img/desk.png" width="20" onclick="todo(\'TheDesk is a nice client!: TheDesk ' + localStorage.getItem("ver") + " git: " + gitHash + "')\">TheDesk " + localStorage.getItem("ver") + " {" + gitHash.slice(0, 7) + '} [<i class="material-icons" style="font-size:1.2rem;top: 3px;position: relative;">supervisor_account</i><span id="persons">1+</span>]');
|
$('#tips-text').html(
|
||||||
localStorage.setItem("tips", "ver");
|
'<img src="../../img/desk.png" width="20" onclick="todo(\'TheDesk is a nice client!: TheDesk ' +
|
||||||
} else if (mode == "clock") {
|
localStorage.getItem('ver') +
|
||||||
tipsToggle();
|
' git: ' +
|
||||||
localStorage.setItem("tips", "clock");
|
gitHash +
|
||||||
clock();
|
'\')">TheDesk ' +
|
||||||
} else if (mode == "memory") {
|
localStorage.getItem('ver') +
|
||||||
tipsToggle();
|
' {' +
|
||||||
localStorage.setItem("tips", "memory");
|
gitHash.slice(0, 7) +
|
||||||
startmem();
|
'} [<i class="material-icons" style="font-size:1.2rem;top: 3px;position: relative;">supervisor_account</i><span id="persons">1+</span>]'
|
||||||
} else if (mode == "trend") {
|
)
|
||||||
tipsToggle();
|
localStorage.setItem('tips', 'ver')
|
||||||
localStorage.setItem("tips", "trend");
|
} else if (mode == 'clock') {
|
||||||
trendTagonTip();
|
tipsToggle()
|
||||||
} else if (mode == "spotify") {
|
localStorage.setItem('tips', 'clock')
|
||||||
tipsToggle();
|
clock()
|
||||||
localStorage.setItem("tips", "spotify");
|
} else if (mode == 'memory') {
|
||||||
var json = nowplaying("spotifytips");
|
tipsToggle()
|
||||||
spotifytips(json);
|
localStorage.setItem('tips', 'memory')
|
||||||
|
startmem()
|
||||||
|
} else if (mode == 'trend') {
|
||||||
|
tipsToggle()
|
||||||
|
localStorage.setItem('tips', 'trend')
|
||||||
|
trendTagonTip()
|
||||||
|
} else if (mode == 'spotify') {
|
||||||
|
tipsToggle()
|
||||||
|
localStorage.setItem('tips', 'spotify')
|
||||||
|
spotifytips()
|
||||||
|
} else if (mode == 'itunes') {
|
||||||
|
tipsToggle()
|
||||||
|
localStorage.setItem('tips', 'itunes')
|
||||||
|
itunestips()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//メモリ
|
//メモリ
|
||||||
function startmem() {
|
function startmem() {
|
||||||
postMessage(["sendSinmpleIpc", "startmem"], "*");
|
postMessage(['sendSinmpleIpc', 'startmem'], '*')
|
||||||
}
|
}
|
||||||
function renderMem(use, cpu, total) {
|
function renderMem(use, cpu, total) {
|
||||||
$("#tips-text").html(escapeHTML(cpu) + "<br>Memory:" + Math.floor(use / 1024 / 1024 / 102.4) / 10 + "/" + Math.floor(total / 1024 / 1024 / 102.4) / 10 + "GB(" + Math.floor((use / total) * 100) + "%)");
|
$('#tips-text').html(
|
||||||
|
escapeHTML(cpu) +
|
||||||
|
'<br>Memory:' +
|
||||||
|
Math.floor(use / 1024 / 1024 / 102.4) / 10 +
|
||||||
|
'/' +
|
||||||
|
Math.floor(total / 1024 / 1024 / 102.4) / 10 +
|
||||||
|
'GB(' +
|
||||||
|
Math.floor((use / total) * 100) +
|
||||||
|
'%)'
|
||||||
|
)
|
||||||
}
|
}
|
||||||
//トレンドタグ
|
//トレンドタグ
|
||||||
function trendTagonTip() {
|
function trendTagonTip() {
|
||||||
$(".trendtag").remove();
|
$('.trendtag').remove()
|
||||||
var domain = "imastodon.net";
|
var domain = 'imastodon.net'
|
||||||
var at = localStorage.getItem("acct_" + acct_id + "_at");
|
var at = localStorage.getItem('acct_' + acct_id + '_at')
|
||||||
var start = "https://" + domain + "/api/v1/trend_tags";
|
var start = 'https://' + domain + '/api/v1/trend_tags'
|
||||||
fetch(start, {
|
fetch(start, {
|
||||||
method: "GET",
|
method: 'GET',
|
||||||
headers: {
|
headers: {
|
||||||
"content-type": "application/json",
|
'content-type': 'application/json',
|
||||||
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) {
|
if (json) {
|
||||||
var tags = "";
|
var tags = ''
|
||||||
json = json.score;
|
json = json.score
|
||||||
Object.keys(json).forEach(function(tag) {
|
Object.keys(json).forEach(function(tag) {
|
||||||
tags = tags + "<a onclick=\"tagShow('" + tag + '\')" class="pointer">#' + escapeHTML(tag) + '</a><span class="hide" data-tag="' + tag + "\"> <a onclick=\"tagTL('tag','" + tag + '\',false,\'add\')" class="pointer" title="#' + tag + 'のタイムライン">TL</a> <a onclick="show();brInsert(\'#' + tag + '\')" class="pointer" title="#' + tag + 'でトゥート">Toot</a></span><br>';
|
tags =
|
||||||
});
|
tags +
|
||||||
$("#tips-text").html('<div class="trendtag">トレンドタグ<i class="material-icons pointer" onclick="trendTagonTip()" style="font-size:12px">refresh</i>:<br>' + tags + "</div>");
|
`<a onclick="tagShow('${tag}')" class="pointer">
|
||||||
trendTagonTipInterval();
|
#${escapeHTML(tag)}
|
||||||
|
</a>
|
||||||
|
<span class="hide" data-tag="${tag}">
|
||||||
|
<a onclick="tagTL('tag','${tag}',false,'add')" class="pointer" title="#${tag}のタイムライン">TL</a>
|
||||||
|
<a onclick="show();brInsert('#${tag}')" class="pointer" title="#${tag}でトゥート">Toot</a>
|
||||||
|
</span><br>`
|
||||||
|
})
|
||||||
|
$('#tips-text').html(
|
||||||
|
'<div class="trendtag">トレンドタグ<i class="material-icons pointer" onclick="trendTagonTip()" style="font-size:12px">refresh</i>:<br>' +
|
||||||
|
tags +
|
||||||
|
'</div>'
|
||||||
|
)
|
||||||
|
trendTagonTipInterval()
|
||||||
} else {
|
} else {
|
||||||
$("#tips-text").html("");
|
$('#tips-text').html('')
|
||||||
}
|
}
|
||||||
});
|
})
|
||||||
}
|
}
|
||||||
//Spotify
|
//Spotify
|
||||||
|
spotint = null
|
||||||
function spotifytips() {
|
function spotifytips() {
|
||||||
var start = "https://thedesk.top/now-playing?at=" + localStorage.getItem("spotify") + "&rt=" + localStorage.getItem("spotify-refresh");
|
if (spotint) clearInterval(spotint)
|
||||||
var at = localStorage.getItem("spotify");
|
var start =
|
||||||
|
'https://thedesk.top/now-playing?at=' +
|
||||||
|
localStorage.getItem('spotify') +
|
||||||
|
'&rt=' +
|
||||||
|
localStorage.getItem('spotify-refresh')
|
||||||
|
var at = localStorage.getItem('spotify')
|
||||||
if (at) {
|
if (at) {
|
||||||
fetch(start, {
|
fetch(start, {
|
||||||
method: "GET",
|
method: 'GET',
|
||||||
headers: {
|
headers: {
|
||||||
"content-type": "application/json"
|
'content-type': 'application/json'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.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) {
|
||||||
var ms = json.progress_ms;
|
var ms = json.progress_ms
|
||||||
var last = 1000 - (ms % 1000);
|
var last = 1000 - (ms % 1000)
|
||||||
var item = json.item;
|
var item = json.item
|
||||||
var img = item.album.images[0].url;
|
var img = item.album.images[0].url
|
||||||
var artisttxt = "";
|
var artisttxt = ''
|
||||||
for (i = 0; i < item.artists.length; i++) {
|
for (i = 0; i < item.artists.length; i++) {
|
||||||
if (i > 0) {
|
if (i > 0) {
|
||||||
artisttxt = artisttxt + "," + item.artists[i].name;
|
artisttxt = artisttxt + ',' + item.artists[i].name
|
||||||
} else {
|
} else {
|
||||||
artisttxt = item.artists[0].name;
|
artisttxt = item.artists[0].name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
artisttxt = escapeHTML(artisttxt);
|
artisttxt = escapeHTML(artisttxt)
|
||||||
sleep(last);
|
sleep(last)
|
||||||
var tms = item.duration_ms;
|
var tms = item.duration_ms
|
||||||
var per = (ms / item.duration_ms) * 100;
|
var per = (ms / item.duration_ms) * 100
|
||||||
ms = ms / 1000;
|
ms = ms / 1000
|
||||||
tms = tms / 1000;
|
tms = tms / 1000
|
||||||
var s = Math.round(ms) % 60;
|
var s = Math.round(ms) % 60
|
||||||
if (s < 10) {
|
if (s < 10) {
|
||||||
s = "0" + s;
|
s = '0' + s
|
||||||
}
|
}
|
||||||
var m = (Math.round(ms) - (Math.round(ms) % 60)) / 60;
|
var m = (Math.round(ms) - (Math.round(ms) % 60)) / 60
|
||||||
var ts = Math.round(tms) % 60;
|
var ts = Math.round(tms) % 60
|
||||||
if (ts < 10) {
|
if (ts < 10) {
|
||||||
ts = "0" + ts;
|
ts = '0' + ts
|
||||||
}
|
}
|
||||||
var tm = (Math.round(tms) - (Math.round(tms) % 60)) / 60;
|
var tm = (Math.round(tms) - (Math.round(tms) % 60)) / 60
|
||||||
$("#tips-text").html('<div id="spot-box"><i class="material-icons pointer" onclick="spotifytips()" style="font-size:12px">refresh</i><img src="' + img + '" width="20" id="spot-img">' + escapeHTML(item.name) + '<span class="gray sml" id="spot-art">' + artisttxt + '</span><span id="spot-m">' + m + '</span>:<span id="spot-s">' + s + "</span>/" + tm + ":" + ts + '</span></div><div class="progress grey"><div class="determinate spotify-prog grey lighten-2" style="width: ' + per + '%" data-s="' + Math.round(ms) + '" data-total="' + item.duration_ms + '"></div></div>');
|
var html = `
|
||||||
spotint = setInterval(spotStart, 1000);
|
<div id="spot-box">
|
||||||
});
|
<div id="spot-refresh">
|
||||||
|
<i class="material-icons pointer" onclick="spotifytips()" style="font-size:20px">refresh</i>
|
||||||
|
<i class="material-icons pointer" onclick="nowplaying('spotify');show()" style="font-size:20px">send</i>
|
||||||
|
</div>
|
||||||
|
<div id="spot-cover">
|
||||||
|
<img src="${img}" id="spot-img">
|
||||||
|
</div>
|
||||||
|
<div id="spot-name">
|
||||||
|
${escapeHTML(item.name)}
|
||||||
|
</div>
|
||||||
|
<div id="spot-artist">
|
||||||
|
<span class="gray sml" id="spot-art">${artisttxt}</span>
|
||||||
|
</div>
|
||||||
|
<div id="spot-time">
|
||||||
|
<span id="spot-m">${m}</span>:<span id="spot-s">${s}</span>/${tm}:${ts}</span>
|
||||||
|
</div>
|
||||||
|
<div class="progress grey">
|
||||||
|
<div class="determinate spotify-prog grey lighten-2"
|
||||||
|
style="width:${per}%" data-s="${Math.round(ms)}" data-total="${item.duration_ms}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>`
|
||||||
|
$('#tips-text').html(html)
|
||||||
|
spotint = setInterval(spotStart, 1000)
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
Swal.fire({
|
Swal.fire({
|
||||||
type: "info",
|
type: 'info',
|
||||||
title: lang.lang_spotify_acct
|
title: lang.lang_spotify_acct
|
||||||
});
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function spotStart() {
|
function spotStart() {
|
||||||
var total = $(".spotify-prog").attr("data-total");
|
var total = $('.spotify-prog').attr('data-total')
|
||||||
var s = $(".spotify-prog").attr("data-s");
|
var s = $('.spotify-prog').attr('data-s')
|
||||||
var news = s * 1 + 1;
|
var news = s * 1 + 1
|
||||||
var per = (news * 100000) / total;
|
var per = (news * 100000) / total
|
||||||
var ns = news % 60;
|
var ns = news % 60
|
||||||
var nm = (news - ns) / 60;
|
var nm = (news - ns) / 60
|
||||||
if (ns < 10) {
|
if (ns < 10) {
|
||||||
ns = "0" + ns;
|
ns = '0' + ns
|
||||||
}
|
}
|
||||||
if (per >= 100) {
|
if (per >= 100) {
|
||||||
clearInterval(spotStart);
|
clearInterval(spotStart)
|
||||||
spotifytips();
|
spotifytips()
|
||||||
} else {
|
} else {
|
||||||
$("#spot-m").text(nm);
|
$('#spot-m').text(nm)
|
||||||
$("#spot-s").text(ns);
|
$('#spot-s').text(ns)
|
||||||
}
|
}
|
||||||
$(".spotify-prog").attr("data-s", news);
|
$('.spotify-prog').attr('data-s', news)
|
||||||
$(".spotify-prog").css("width", per + "%");
|
$('.spotify-prog').css('width', per + '%')
|
||||||
}
|
}
|
||||||
|
|
||||||
function trendTagonTipInterval() {
|
function trendTagonTipInterval() {
|
||||||
setTimeout(trendTagonTip, 6000000);
|
setTimeout(trendTagonTip, 6000000)
|
||||||
}
|
}
|
||||||
//時計
|
//時計
|
||||||
var clockint;
|
var clockint
|
||||||
function clock() {
|
function clock() {
|
||||||
var now = new Date();
|
var now = new Date()
|
||||||
var last = 1000 - (now.getTime() % 1000);
|
var last = 1000 - (now.getTime() % 1000)
|
||||||
sleep(last);
|
sleep(last)
|
||||||
clockint = setInterval(clockStart, 1000);
|
clockint = setInterval(clockStart, 1000)
|
||||||
}
|
}
|
||||||
function clockStart() {
|
function clockStart() {
|
||||||
var nowTime = new Date(); // 現在日時を得る
|
var nowTime = new Date() // 現在日時を得る
|
||||||
var nowHour = nowTime.getHours(); // 時を抜き出す
|
var nowHour = nowTime.getHours() // 時を抜き出す
|
||||||
if (nowHour < 10) {
|
if (nowHour < 10) {
|
||||||
nowHour = "0" + nowHour;
|
nowHour = '0' + nowHour
|
||||||
}
|
}
|
||||||
var nowMin = nowTime.getMinutes(); // 分を抜き出す
|
var nowMin = nowTime.getMinutes() // 分を抜き出す
|
||||||
if (nowMin < 10) {
|
if (nowMin < 10) {
|
||||||
nowMin = "0" + nowMin;
|
nowMin = '0' + nowMin
|
||||||
}
|
}
|
||||||
var nowSec = nowTime.getSeconds(); // 秒を抜き出す
|
var nowSec = nowTime.getSeconds() // 秒を抜き出す
|
||||||
if (nowSec < 10) {
|
if (nowSec < 10) {
|
||||||
nowSec = "0" + nowSec;
|
nowSec = '0' + nowSec
|
||||||
}
|
}
|
||||||
var msg = nowTime.getFullYear() + "/" + (nowTime.getMonth() + 1) + "/" + nowTime.getDate() + '<span style="font-size:20px; font-family:Open Sans">' + nowHour + ":" + nowMin + ":" + nowSec + "</span>";
|
var msg =
|
||||||
$("#tips-text").html(msg);
|
nowTime.getFullYear() +
|
||||||
|
'/' +
|
||||||
|
(nowTime.getMonth() + 1) +
|
||||||
|
'/' +
|
||||||
|
nowTime.getDate() +
|
||||||
|
'<span style="font-size:20px; font-family:Open Sans">' +
|
||||||
|
nowHour +
|
||||||
|
':' +
|
||||||
|
nowMin +
|
||||||
|
':' +
|
||||||
|
nowSec +
|
||||||
|
'</span>'
|
||||||
|
$('#tips-text').html(msg)
|
||||||
}
|
}
|
||||||
function sleep(waitMsec) {
|
function sleep(waitMsec) {
|
||||||
var startMsec = new Date();
|
var startMsec = new Date()
|
||||||
while (new Date() - startMsec < waitMsec);
|
while (new Date() - startMsec < waitMsec);
|
||||||
}
|
}
|
||||||
function tipsToggle() {
|
function tipsToggle() {
|
||||||
$("#tips").toggleClass("hide");
|
$('#tips').toggleClass('hide')
|
||||||
$("#tips-menu").toggleClass("hide");
|
$('#tips-menu').toggleClass('hide')
|
||||||
}
|
}
|
||||||
if (localStorage.getItem("tips")) {
|
if (localStorage.getItem('tips')) {
|
||||||
tips(localStorage.getItem("tips"));
|
tips(localStorage.getItem('tips'))
|
||||||
}
|
}
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "thedesk",
|
"name": "thedesk",
|
||||||
"version": "20.0.0",
|
"version": "20.0.1",
|
||||||
"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",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
|
@@ -694,7 +694,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
DL:<span id="imgprog"></span>%
|
DL:<span id="imgprog"></span>%
|
||||||
(<span id="imgsec"></span>ms)
|
(<span id="imgsec"></span>ms, <span id="imgbyte"></span>KB)
|
||||||
<a class="waves-effect white-text" onclick="zoom(2)">
|
<a class="waves-effect white-text" onclick="zoom(2)">
|
||||||
<i class="material-icons">zoom_in</i>
|
<i class="material-icons">zoom_in</i>
|
||||||
</a>
|
</a>
|
||||||
@@ -760,10 +760,15 @@
|
|||||||
<a href="https://thedesk.top" target="_blank">HP</a><br>
|
<a href="https://thedesk.top" target="_blank">HP</a><br>
|
||||||
<a href="https://github.com/cutls/TheDesk" target="_blank">GitHub</a><br>
|
<a href="https://github.com/cutls/TheDesk" target="_blank">GitHub</a><br>
|
||||||
<br>
|
<br>
|
||||||
<div id="release-20-0-0_Kawaii" class="release-do" style="display:none; ">><br>
|
<div id="release-20-0-1_Kawaii" class="release-do" style="display:none; ">><br>
|
||||||
<a href="https://ja.mstdn.wiki/TheDesk" target="_blank">機能一覧</a><br>
|
<a href="https://ja.mstdn.wiki/TheDesk" target="_blank">機能一覧</a><br>
|
||||||
Pixiv FanboxやPatreonでは支援者様限定で様々なTheDeskに関する記事をご覧いただけます。最低月一更新。<br>
|
Pixiv FanboxやPatreonでは支援者様限定で様々なTheDeskに関する記事をご覧いただけます。最低月一更新。<br>
|
||||||
困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。
|
困ったときは、<a href="https://docs.thedesk.top">TheDesk Docs</a>をご覧ください。
|
||||||
|
<h5>Release Note 20.0.1 (Kawaii)</h5>
|
||||||
|
・緊急DoS対策(Spotify Tips)
|
||||||
|
<a onclick="udgEx('Cutls@cutls.com','main')" class="contributor">
|
||||||
|
<img src="https://media.thedesk.top/accounts/avatars/000/000/001/original/d34ef8bb49d5e011.png">Cutls
|
||||||
|
</a><br>
|
||||||
<h5>Release Note 20.0.0 (Kawaii)</h5>
|
<h5>Release Note 20.0.0 (Kawaii)</h5>
|
||||||
・コードがKawaii感じ(Prettier)になりました
|
・コードがKawaii感じ(Prettier)になりました
|
||||||
<a onclick="udgEx('Cutls@cutls.com','main')" class="contributor">
|
<a onclick="udgEx('Cutls@cutls.com','main')" class="contributor">
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -19,5 +19,5 @@
|
|||||||
"thisismisskey": "Влезте като Misskey",
|
"thisismisskey": "Влезте като Misskey",
|
||||||
"misskeylogin": "Прочетете <a href=\"https://thedesk.top/how-to-misskey-login.html\">Документацията</a>, за да влезете в Misskey.",
|
"misskeylogin": "Прочетете <a href=\"https://thedesk.top/how-to-misskey-login.html\">Документацията</a>, за да влезете в Misskey.",
|
||||||
"nodata": "Няма данни",
|
"nodata": "Няма данни",
|
||||||
"accessTokenSetup": "Use access token to login(click after fill not code but access-token in box: Advanced)"
|
"accessTokenSetup": "Използвайте маркера за достъп и вход (щракнете след попълване, но не код, а знак за достъп в поле: Разширено)"
|
||||||
}
|
}
|
@@ -62,7 +62,7 @@
|
|||||||
"btedPeople": "Хората, които го подсилиха",
|
"btedPeople": "Хората, които го подсилиха",
|
||||||
"useOtherAcct1": "Използване на друг профил",
|
"useOtherAcct1": "Използване на друг профил",
|
||||||
"useOtherAcct2": ":unfav и unBT са деактивирани.",
|
"useOtherAcct2": ":unfav и unBT са деактивирани.",
|
||||||
"btWithVis": "Boost with visibility",
|
"btWithVis": "Подсилването е видимо",
|
||||||
"reply": "Отговор",
|
"reply": "Отговор",
|
||||||
"bt": "Подсилване",
|
"bt": "Подсилване",
|
||||||
"favRegist": "Любими",
|
"favRegist": "Любими",
|
||||||
@@ -88,7 +88,7 @@
|
|||||||
"likeHimOrHer": "Наподобяващ",
|
"likeHimOrHer": "Наподобяващ",
|
||||||
"endorse": "Функция в профила",
|
"endorse": "Функция в профила",
|
||||||
"openinbrowser": "Отваряне в браузъра",
|
"openinbrowser": "Отваряне в браузъра",
|
||||||
"mainacct": "Set it an main account",
|
"mainacct": "Задайте го и за основен акаунт",
|
||||||
"frc": "Предложени",
|
"frc": "Предложени",
|
||||||
"more": "Още",
|
"more": "Още",
|
||||||
"revoverJP": " да се ",
|
"revoverJP": " да се ",
|
||||||
@@ -109,13 +109,13 @@
|
|||||||
"empUser": "Подчертайте този потребител",
|
"empUser": "Подчертайте този потребител",
|
||||||
"supportme": "Подкрепете TheDesk!",
|
"supportme": "Подкрепете TheDesk!",
|
||||||
"TheDeskDes": "TheDesk няма реклама, няма нужда от такса за отключване на премиум функции. Нуждаем се от вашата приятелска подкрепа!",
|
"TheDeskDes": "TheDesk няма реклама, няма нужда от такса за отключване на премиум функции. Нуждаем се от вашата приятелска подкрепа!",
|
||||||
"PatreonSupport": "Support on Patreon",
|
"PatreonSupport": "Поддръжка на Patreon",
|
||||||
"PixivSupport": "Подкрепете в Pixiv FANBOX",
|
"PixivSupport": "Подкрепете в Pixiv FANBOX",
|
||||||
"AWLSupport": "Списък с желания от Amazon",
|
"AWLSupport": "Списък с желания от Amazon",
|
||||||
"SendAmazonGift1": "Дай ми Amazon Gift Card:",
|
"SendAmazonGift1": "Дай ми Amazon Gift Card:",
|
||||||
"SendAmazonGift2": "",
|
"SendAmazonGift2": "",
|
||||||
"monthly": "Monthly",
|
"monthly": "Месечно",
|
||||||
"once": "Once",
|
"once": "Веднъж",
|
||||||
"local": "Местно",
|
"local": "Местно",
|
||||||
"localMedia": "Местна (медия)",
|
"localMedia": "Местна (медия)",
|
||||||
"home": "Начало",
|
"home": "Начало",
|
||||||
@@ -162,20 +162,20 @@
|
|||||||
"clockTips": "Часовник",
|
"clockTips": "Часовник",
|
||||||
"ramTips": "Състояние на RAM",
|
"ramTips": "Състояние на RAM",
|
||||||
"changeTips": "Промени Обърни",
|
"changeTips": "Промени Обърни",
|
||||||
"helpAndLogs": "Help & Log",
|
"helpAndLogs": "Помощ § Лог",
|
||||||
"help": "Помощ",
|
"help": "Помощ",
|
||||||
"contactwithlog": "If you tell me bugs(not working or something) with this log, I can detect what is wrong more easily.",
|
"contactwithlog": "Ако ми кажете за грешки (нещо не работи или подобно) с този дневник, мога по-лесно да открия какво не е наред.",
|
||||||
"about": "За TheDesk",
|
"about": "За TheDesk",
|
||||||
"hereAddColumns": "<- Добави ТЛ",
|
"hereAddColumns": "<- Добави ТЛ",
|
||||||
"show": "Show",
|
"show": "Покажи",
|
||||||
"directory": "Directory",
|
"directory": "Директория",
|
||||||
"active": "Recently active",
|
"active": "Наскоро активен",
|
||||||
"newcomer": "New arrivals",
|
"newcomer": "Новодошли",
|
||||||
"local_only": "Само местно",
|
"local_only": "Само местно",
|
||||||
"demoBottomBtns": "Welcome guide",
|
"demoBottomBtns": "Ръководство за добре дошли",
|
||||||
"lookAtBottom": "Look at the bottom of this window. Here is some tips about it.",
|
"lookAtBottom": "Погледнете в края на този прозорец. Ето няколко съвета за това.",
|
||||||
"acctManDesc": "Add more accounts and logout them.",
|
"acctManDesc": "Добавете още акаунти и излезте от тях.",
|
||||||
"settingDesc": "Many and many preferences here. You will couldn't check it all!",
|
"settingDesc": "Много. много предпочитания са тук. Няма да можете да ги проверите всички!",
|
||||||
"nanoDescPlus": "Mini window client(experimental)",
|
"nanoDescPlus": "Клиент мини прозорец (експериментално)",
|
||||||
"listDesc": "All daily TheDesk and Mastodon tuning like <b>add and sort columns</b>, <b>list and filter check</b>."
|
"listDesc": "All daily TheDesk and Mastodon tuning like <b>add and sort columns</b>, <b>list and filter check</b>."
|
||||||
}
|
}
|
@@ -94,7 +94,7 @@
|
|||||||
"lang_filter_nodata": "Няма данни",
|
"lang_filter_nodata": "Няма данни",
|
||||||
"lang_filter_errordegree": "Please check a context",
|
"lang_filter_errordegree": "Please check a context",
|
||||||
"lang_list_nodata": "Няма данни",
|
"lang_list_nodata": "Няма данни",
|
||||||
"lang_list_show": "Show",
|
"lang_list_show": "Покажи",
|
||||||
"lang_list_users": "Users list",
|
"lang_list_users": "Users list",
|
||||||
"lang_list_nouser": "No users in this list.",
|
"lang_list_nouser": "No users in this list.",
|
||||||
"lang_list_add": "Add to the list",
|
"lang_list_add": "Add to the list",
|
||||||
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
@@ -160,7 +161,7 @@
|
|||||||
"lang_parse_btedsimple": " boosted",
|
"lang_parse_btedsimple": " boosted",
|
||||||
"lang_parse_polled": "'s poll",
|
"lang_parse_polled": "'s poll",
|
||||||
"lang_parse_notftime": "Actioned at",
|
"lang_parse_notftime": "Actioned at",
|
||||||
"lang_parse_cwshow": "Show",
|
"lang_parse_cwshow": "Покажи",
|
||||||
"lang_parse_fulltext": "Full size text:",
|
"lang_parse_fulltext": "Full size text:",
|
||||||
"lang_parse_autofold": "Auto folded",
|
"lang_parse_autofold": "Auto folded",
|
||||||
"lang_parse_more": "Още",
|
"lang_parse_more": "Още",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"animation": "Анимация на времевата линия",
|
"animation": "Анимация на времевата линия",
|
||||||
"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_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Звук (Отговор)",
|
"replySound": "Звук (Отговор)",
|
||||||
"favSound": "Звук(Фаворит)",
|
"favSound": "Звук(Фаворит)",
|
||||||
"btSound": "Звук(Подсилване)",
|
"btSound": "Звук(Подсилване)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} tohoto účtu",
|
"lang_layout_thisacct": "{{notf}} tohoto účtu",
|
||||||
"lang_layout_delthis": "Odstranit tento sloupec",
|
"lang_layout_delthis": "Odstranit tento sloupec",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Heruntergeladen:",
|
"lang_img_DLDone": "Heruntergeladen:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Gehen Sie zum Anfang dieser Spalte. Wenn das Symbol rot ist, kann diese Spalte keine Verbindung zur Streaming-API herstellen. Bitte neu laden.",
|
"lang_layout_gotop": "Gehen Sie zum Anfang dieser Spalte. Wenn das Symbol rot ist, kann diese Spalte keine Verbindung zur Streaming-API herstellen. Bitte neu laden.",
|
||||||
"lang_layout_thisacct": "{{notf}} dieses Kontos",
|
"lang_layout_thisacct": "{{notf}} dieses Kontos",
|
||||||
"lang_layout_delthis": "Diese Spalte löschen",
|
"lang_layout_delthis": "Diese Spalte löschen",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"animation": "Animation der Verläufe",
|
"animation": "Animation der Verläufe",
|
||||||
"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_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Ton bei Antwort",
|
"replySound": "Ton bei Antwort",
|
||||||
"favSound": "Ton bei Favorit",
|
"favSound": "Ton bei Favorit",
|
||||||
"btSound": "Ton bei Verstärkung",
|
"btSound": "Ton bei Verstärkung",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "crwdns3630:0crwdne3630:0",
|
"lang_tl_postmarkers_title": "crwdns3630:0crwdne3630:0",
|
||||||
"lang_tl_postmarkers": "crwdns3632:0crwdne3632:0",
|
"lang_tl_postmarkers": "crwdns3632:0crwdne3632:0",
|
||||||
"lang_img_DLDone": "crwdns3634:0crwdne3634:0",
|
"lang_img_DLDone": "crwdns3634:0crwdne3634:0",
|
||||||
|
"lang_img_copyDone": "crwdns4380:0crwdne4380:0",
|
||||||
"lang_layout_gotop": "crwdns3636:0crwdne3636:0",
|
"lang_layout_gotop": "crwdns3636:0crwdne3636:0",
|
||||||
"lang_layout_thisacct": "crwdns3638:0{{notf}}crwdne3638:0",
|
"lang_layout_thisacct": "crwdns3638:0{{notf}}crwdne3638:0",
|
||||||
"lang_layout_delthis": "crwdns3640:0crwdne3640:0",
|
"lang_layout_delthis": "crwdns3640:0crwdne3640:0",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"animation": "crwdns4082:0crwdne4082:0",
|
"animation": "crwdns4082:0crwdne4082:0",
|
||||||
"markers": "crwdns4084:0crwdne4084:0",
|
"markers": "crwdns4084:0crwdne4084:0",
|
||||||
"markerswarn": "crwdns4086:0crwdne4086:0",
|
"markerswarn": "crwdns4086:0crwdne4086:0",
|
||||||
|
"remote_img": "crwdns4382:0crwdne4382:0",
|
||||||
|
"remote_imgWarn": "crwdns4384:0crwdne4384:0",
|
||||||
"replySound": "crwdns4088:0crwdne4088:0",
|
"replySound": "crwdns4088:0crwdne4088:0",
|
||||||
"favSound": "crwdns4090:0crwdne4090:0",
|
"favSound": "crwdns4090:0crwdne4090:0",
|
||||||
"btSound": "crwdns4092:0crwdne4092:0",
|
"btSound": "crwdns4092:0crwdne4092:0",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Procesando…",
|
"lang_tl_postmarkers_title": "Procesando…",
|
||||||
"lang_tl_postmarkers": "Datos de marcadores POST. Por favor, esperá.",
|
"lang_tl_postmarkers": "Datos de marcadores POST. Por favor, esperá.",
|
||||||
"lang_img_DLDone": "Descargado:",
|
"lang_img_DLDone": "Descargado:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Ir al comienzo de esta columna. Cuando el ícono está rojo, esta columna no se puede conectar a la API del streaming. En ese caso, por favor, refrescá.",
|
"lang_layout_gotop": "Ir al comienzo de esta columna. Cuando el ícono está rojo, esta columna no se puede conectar a la API del streaming. En ese caso, por favor, refrescá.",
|
||||||
"lang_layout_thisacct": "{{notf}} de esta cuenta",
|
"lang_layout_thisacct": "{{notf}} de esta cuenta",
|
||||||
"lang_layout_delthis": "Quitar esta columna",
|
"lang_layout_delthis": "Quitar esta columna",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"animation": "Animación de líneas temporales",
|
"animation": "Animación de líneas temporales",
|
||||||
"markers": "Marcadores (marcar como leído) en línea temporal principal y notificaciones",
|
"markers": "Marcadores (marcar como leído) en línea temporal principal y notificaciones",
|
||||||
"markerswarn": "Mastodon 3.0~. Compartido en interface web y clientes de terceros soportados.",
|
"markerswarn": "Mastodon 3.0~. Compartido en interface web y clientes de terceros soportados.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sonido (respuesta)",
|
"replySound": "Sonido (respuesta)",
|
||||||
"favSound": "Sonido (marcado como favorito)",
|
"favSound": "Sonido (marcado como favorito)",
|
||||||
"btSound": "Sonido (retoot)",
|
"btSound": "Sonido (retoot)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -114,6 +114,7 @@
|
|||||||
"lang_tl_postmarkers_title": "Process...",
|
"lang_tl_postmarkers_title": "Process...",
|
||||||
"lang_tl_postmarkers": "POST markers data. Please wait",
|
"lang_tl_postmarkers": "POST markers data. Please wait",
|
||||||
"lang_img_DLDone": "Downloaded:",
|
"lang_img_DLDone": "Downloaded:",
|
||||||
|
"lang_img_copyDone": "Copied: URL of this image",
|
||||||
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
"lang_layout_gotop": "Go top of this column. When icon is red, this column cannot connect straming API. Please reload.",
|
||||||
"lang_layout_thisacct": "{{notf}} of this account",
|
"lang_layout_thisacct": "{{notf}} of this account",
|
||||||
"lang_layout_delthis": "Remove this column",
|
"lang_layout_delthis": "Remove this column",
|
||||||
|
@@ -98,6 +98,8 @@
|
|||||||
"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.",
|
||||||
|
"remote_img": "Get images from the remote server",
|
||||||
|
"remote_imgWarn": "All previews are got from your loginned cache server.",
|
||||||
"replySound": "Sound(Reply)",
|
"replySound": "Sound(Reply)",
|
||||||
"favSound": "Sound(Fav)",
|
"favSound": "Sound(Fav)",
|
||||||
"btSound": "Sound(Boost)",
|
"btSound": "Sound(Boost)",
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
let ver = "20.0.0 (Kawaii)";
|
let ver = "20.0.1 (Kawaii)";
|
||||||
if (process.argv.indexOf("--automatic") === -1) {
|
if (process.argv.indexOf("--automatic") === -1) {
|
||||||
let input = require("readline-sync").question("version string [empty: " + ver + " (default)]? ");
|
let input = require("readline-sync").question("version string [empty: " + ver + " (default)]? ");
|
||||||
if (input) {
|
if (input) {
|
||||||
|
Reference in New Issue
Block a user