add new fi
This commit is contained in:
parent
36ad187296
commit
d62bc57368
|
@ -1,78 +1,96 @@
|
|||
//ディレクトリ
|
||||
//ディレクトリトグル
|
||||
function dirMenu() {
|
||||
$("#dir-contents").html("")
|
||||
directory()
|
||||
$("#left-menu a").removeClass("active")
|
||||
$("#dirMenu").addClass("active")
|
||||
$(".menu-content").addClass("hide")
|
||||
$("#dir-box").removeClass("hide")
|
||||
$('#dir-contents').html('')
|
||||
directory('directory')
|
||||
$('#left-menu a').removeClass('active')
|
||||
$('#dirMenu').addClass('active')
|
||||
$('.menu-content').addClass('hide')
|
||||
$('#dir-box').removeClass('hide')
|
||||
}
|
||||
|
||||
function dirselCk() {
|
||||
var acct = $("#dir-acct-sel").val()
|
||||
if (acct == "noauth") {
|
||||
$("#dirNoAuth").removeClass("hide")
|
||||
} else {
|
||||
$("#dirNoAuth").addClass("hide")
|
||||
directory()
|
||||
}
|
||||
var acct = $('#dir-acct-sel').val()
|
||||
if (acct == 'noauth') {
|
||||
$('#dirNoAuth').removeClass('hide')
|
||||
} else {
|
||||
$('#dirNoAuth').addClass('hide')
|
||||
directory('check')
|
||||
}
|
||||
}
|
||||
function directory(isMore) {
|
||||
var order = $("[name=sort]:checked").val()
|
||||
if (!order) {
|
||||
order = "active"
|
||||
}
|
||||
var local_only = $("#local_only:checked").val()
|
||||
if (local_only) {
|
||||
local_only = "true"
|
||||
} else {
|
||||
local_only = "false"
|
||||
}
|
||||
var acct_id = $("#dir-acct-sel").val()
|
||||
if (acct_id == "noauth") {
|
||||
var domain = $("#dirNoAuth-url").val()
|
||||
var at = ""
|
||||
} else {
|
||||
var domain = localStorage.getItem("domain_" + acct_id)
|
||||
var at = localStorage.getItem("acct_" + acct_id + "_at")
|
||||
}
|
||||
if (isMore) {
|
||||
var addOffset = $("#dir-contents .cvo").length
|
||||
$("#dir-contents").append(`<div class="progress transparent"><div class="indeterminate"></div></div>`)
|
||||
} else {
|
||||
var addOffset = 0
|
||||
$("#dir-contents").html(`<div class="progress transparent"><div class="indeterminate"></div></div>`)
|
||||
}
|
||||
var start = "https://" + domain + "/api/v1/directory?order=" + order + "&local=" + local_only + "&offset=" + addOffset
|
||||
console.log(start)
|
||||
fetch(start, {
|
||||
method: "GET",
|
||||
headers: {
|
||||
"content-type": "application/json",
|
||||
Authorization: "Bearer " + at
|
||||
}
|
||||
})
|
||||
.then(function (response) {
|
||||
$("#dir-contents .progress").remove()
|
||||
if (!response.ok) {
|
||||
response.text().then(function (text) {
|
||||
setLog(response.url, response.status, text)
|
||||
})
|
||||
}
|
||||
return response.json()
|
||||
})
|
||||
.catch(function (error) {
|
||||
setLog(start, "JSON", error)
|
||||
console.error(error)
|
||||
})
|
||||
.then(function (json) {
|
||||
if (json) {
|
||||
$("#moreDir").removeClass("disabled")
|
||||
var html = userparse(json, null, acct_id, "dir", null)
|
||||
$("#dir-contents").append(html)
|
||||
jQuery("time.timeago").timeago()
|
||||
} else {
|
||||
$("#moreDir").addClass("disabled")
|
||||
}
|
||||
})
|
||||
|
||||
function dirChange(mode) {
|
||||
if (mode === 'directory') $('#directoryConfig').removeClass('hide')
|
||||
if (mode === 'suggest') $('#directoryConfig').addClass('hide')
|
||||
directory(mode)
|
||||
}
|
||||
|
||||
function directory(modeRaw, isMore) {
|
||||
const mode = modeRaw === 'check' ? $('[name=dirsug]:checked').val() : modeRaw
|
||||
var order = $('[name=sort]:checked').val()
|
||||
if (!order) {
|
||||
order = 'active'
|
||||
}
|
||||
var local_only = $('#local_only:checked').val()
|
||||
if (local_only) {
|
||||
local_only = 'true'
|
||||
} else {
|
||||
local_only = 'false'
|
||||
}
|
||||
var acct_id = $('#dir-acct-sel').val()
|
||||
if (acct_id == 'noauth') {
|
||||
var domain = $('#dirNoAuth-url').val()
|
||||
var at = ''
|
||||
} else {
|
||||
var domain = localStorage.getItem('domain_' + acct_id)
|
||||
var at = localStorage.getItem('acct_' + acct_id + '_at')
|
||||
}
|
||||
if (isMore) {
|
||||
var addOffset = $('#dir-contents .cvo').length
|
||||
$('#dir-contents').append(`<div class="progress transparent"><div class="indeterminate"></div></div>`)
|
||||
} else {
|
||||
var addOffset = 0
|
||||
$('#dir-contents').html(`<div class="progress transparent"><div class="indeterminate"></div></div>`)
|
||||
}
|
||||
let start = `https://${domain}/api/v1/directory?order=${order}&local=${local_only}&offset=${addOffset}`
|
||||
if (mode === 'suggest') start = `https://${domain}/api/v2/suggestions`
|
||||
console.log(start)
|
||||
fetch(start, {
|
||||
method: 'GET',
|
||||
headers: {
|
||||
'content-type': 'application/json',
|
||||
Authorization: 'Bearer ' + at,
|
||||
},
|
||||
})
|
||||
.then(function(response) {
|
||||
$('#dir-contents .progress').remove()
|
||||
if (!response.ok) {
|
||||
$('#dir-contents').html(`v2 follow suggestion is supported by Mastodon 3.4.0 or above.`)
|
||||
response.text().then(function(text) {
|
||||
setLog(response.url, response.status, text)
|
||||
})
|
||||
}
|
||||
return response.json()
|
||||
})
|
||||
.catch(function(error) {
|
||||
setLog(start, 'JSON', error)
|
||||
console.error(error)
|
||||
})
|
||||
.then(function(json) {
|
||||
if (json) {
|
||||
$('#moreDir').removeClass('disabled')
|
||||
let obj = []
|
||||
if (mode === 'suggest') {
|
||||
$('#moreDir').addClass('disabled')
|
||||
for (const suggest of json) obj.push(suggest.account)
|
||||
} else {
|
||||
obj = json
|
||||
}
|
||||
var html = userparse(obj, null, acct_id, 'dir', null)
|
||||
$('#dir-contents').append(html)
|
||||
jQuery('time.timeago').timeago()
|
||||
} else {
|
||||
$('#moreDir').addClass('disabled')
|
||||
}
|
||||
})
|
||||
}
|
2842
app/js/tl/tl.js
2842
app/js/tl/tl.js
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,184 +1,185 @@
|
|||
{
|
||||
"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",
|
||||
"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",
|
||||
"webSrc": "Search on Web",
|
||||
"tsSrc": "Search on tootsearch",
|
||||
"showSelectProf":"Show profile of the selecting account",
|
||||
"closethisbox":"Close this box",
|
||||
"toot":"Toot",
|
||||
"post-new":"Post new",
|
||||
"nsfwDes":"Mark media as sensitive",
|
||||
"cwDes":"Hide text behind warning",
|
||||
"selfile":"Attach..",
|
||||
"insertEmoji":"Emojis",
|
||||
"schedule":"Scheduled toot",
|
||||
"postat":"Post at",
|
||||
"scheduleWarn":"2.7.0~ Minimum time gap:5min(clock on the server may not be accurate.)",
|
||||
"clearToot":"Clear toot box",
|
||||
"replyMode":"Reply",
|
||||
"no":"No",
|
||||
"yes":"Yes",
|
||||
"temp":"Attaching files",
|
||||
"nothing":"None",
|
||||
"showSelectProf": "Show profile of the selecting account",
|
||||
"closethisbox": "Close this box",
|
||||
"toot": "Toot",
|
||||
"post-new": "Post new",
|
||||
"nsfwDes": "Mark media as sensitive",
|
||||
"cwDes": "Hide text behind warning",
|
||||
"selfile": "Attach..",
|
||||
"insertEmoji": "Emojis",
|
||||
"schedule": "Scheduled toot",
|
||||
"postat": "Post at",
|
||||
"scheduleWarn": "2.7.0~ Minimum time gap:5min(clock on the server may not be accurate.)",
|
||||
"clearToot": "Clear toot box",
|
||||
"replyMode": "Reply",
|
||||
"no": "No",
|
||||
"yes": "Yes",
|
||||
"temp": "Attaching files",
|
||||
"nothing": "None",
|
||||
"stamp": "Stamp",
|
||||
"stampWarn": "Your acct(aa@bb.cc) is printed on the right-bottom of the uploaded image",
|
||||
"vis":"Adjust status privacy",
|
||||
"cwtext":"Warning text",
|
||||
"selectVis":"Adjust status privacy",
|
||||
"publicJP":"",
|
||||
"unlistedJP":"",
|
||||
"privateJP":"",
|
||||
"localJP":"Local only",
|
||||
"sectoot":"Secondary Toot",
|
||||
"directJP":"",
|
||||
"emojiWarn":"",
|
||||
"emojiInsertWarn":"Some emojis are not able to be inserted.",
|
||||
"refreshEmoji":"Refresh emojis list",
|
||||
"closeThisBox":"Close this box",
|
||||
"showThisEmoji":" are shown.",
|
||||
"customEmoji":"Custom emojis",
|
||||
"peopleEmoji":"Emojis of people",
|
||||
"natureEmoji":"Emojis of nature",
|
||||
"foodEmoji":"Emojis of foods",
|
||||
"activityEmoji":"Emojis of activities",
|
||||
"placeEmoji":"Emojis of places",
|
||||
"thingsEmoji":"Emojis of tools",
|
||||
"symbolEmoji":"Emojis of symbols",
|
||||
"flagsEmoji":"Emojis of flags",
|
||||
"vis": "Adjust status privacy",
|
||||
"cwtext": "Warning text",
|
||||
"selectVis": "Adjust status privacy",
|
||||
"publicJP": "",
|
||||
"unlistedJP": "",
|
||||
"privateJP": "",
|
||||
"localJP": "Local only",
|
||||
"sectoot": "Secondary Toot",
|
||||
"directJP": "",
|
||||
"emojiWarn": "",
|
||||
"emojiInsertWarn": "Some emojis are not able to be inserted.",
|
||||
"refreshEmoji": "Refresh emojis list",
|
||||
"closeThisBox": "Close this box",
|
||||
"showThisEmoji": " are shown.",
|
||||
"customEmoji": "Custom emojis",
|
||||
"peopleEmoji": "Emojis of people",
|
||||
"natureEmoji": "Emojis of nature",
|
||||
"foodEmoji": "Emojis of foods",
|
||||
"activityEmoji": "Emojis of activities",
|
||||
"placeEmoji": "Emojis of places",
|
||||
"thingsEmoji": "Emojis of tools",
|
||||
"symbolEmoji": "Emojis of symbols",
|
||||
"flagsEmoji": "Emojis of flags",
|
||||
"draft": "Draft",
|
||||
"poll":"Poll",
|
||||
"pollDdisabled":"Polls: Disabled",
|
||||
"pollProvider":"Provider of Poll",
|
||||
"polluntil":"Hide 'votes' count until people vote it.",
|
||||
"choice":"Choice",
|
||||
"pollmulti":"Multiple select",
|
||||
"expires_in":"Expires in...(sec)",
|
||||
"contextBefore":"Context before this toot",
|
||||
"thisToot":"This toot",
|
||||
"contextAfter":"Context after this toot",
|
||||
"beforeLTL":"Local TL before this toot",
|
||||
"beforeUTL":"User TL before this toot",
|
||||
"afterLTL":"Local TL after this toot)",
|
||||
"afterUTL":"User TL before this toot",
|
||||
"afterFTL":"Federated TL after this toot",
|
||||
"favedPeople":"People who favourited it",
|
||||
"btedPeople":"People who boosted it",
|
||||
"useOtherAcct1":"Use other account",
|
||||
"useOtherAcct2":":unfav and unBT are disabled.",
|
||||
"poll": "Poll",
|
||||
"pollDdisabled": "Polls: Disabled",
|
||||
"pollProvider": "Provider of Poll",
|
||||
"polluntil": "Hide 'votes' count until people vote it.",
|
||||
"choice": "Choice",
|
||||
"pollmulti": "Multiple select",
|
||||
"expires_in": "Expires in...(sec)",
|
||||
"contextBefore": "Context before this toot",
|
||||
"thisToot": "This toot",
|
||||
"contextAfter": "Context after this toot",
|
||||
"beforeLTL": "Local TL before this toot",
|
||||
"beforeUTL": "User TL before this toot",
|
||||
"afterLTL": "Local TL after this toot)",
|
||||
"afterUTL": "User TL before this toot",
|
||||
"afterFTL": "Federated TL after this toot",
|
||||
"favedPeople": "People who favourited it",
|
||||
"btedPeople": "People who boosted it",
|
||||
"useOtherAcct1": "Use other account",
|
||||
"useOtherAcct2": ":unfav and unBT are disabled.",
|
||||
"btWithVis": "Boost with visibility",
|
||||
"reply":"Reply",
|
||||
"bt":"Boost",
|
||||
"favRegist":"Favourite",
|
||||
"openBrowser":"Open in browser",
|
||||
"screenshot":"Take a screenshot",
|
||||
"copyURL":"Copy the URL",
|
||||
"copy":"Copy",
|
||||
"embed":"Embed",
|
||||
"toots":"Toots",
|
||||
"follow":"Follow",
|
||||
"follower":"Follower",
|
||||
"utlColumn":"Show as a column",
|
||||
"timeline":"Timeline",
|
||||
"operateOtherAcct":"Cross-account",
|
||||
"list":"List",
|
||||
"makeNew":"Save",
|
||||
"blocks":"Blocks",
|
||||
"mutes":"Mutes",
|
||||
"block":"Block",
|
||||
"mute":"Mute",
|
||||
"domainBlock":"Domain block",
|
||||
"editProf":"Edit profile",
|
||||
"change":"Save",
|
||||
"followReq":"Follow requests",
|
||||
"likeHimOrHer":"Resembling",
|
||||
"endorse":"Feature on profile",
|
||||
"openinbrowser":"Open in browser",
|
||||
"mainacct":"Set it an main account",
|
||||
"frc":"Suggest",
|
||||
"more":"More",
|
||||
"revoverJP":" to ",
|
||||
"warnUseOtherAcct":"(Unable to unfollow)",
|
||||
"revoverJPde":"",
|
||||
"or":"or",
|
||||
"openProf":"Show profile",
|
||||
"warnListRegist":"Follow to add this user to lists.",
|
||||
"blockDomain":"Add blocking domain",
|
||||
"name":"Display name",
|
||||
"note":"Note",
|
||||
"editProfImg":"Change avataor",
|
||||
"editHeader":"Change header image",
|
||||
"blocked":"You are blocked. Why?",
|
||||
"likeUserDes":"Get people resembling this user.",
|
||||
"get":"Get",
|
||||
"historyBack":"Back",
|
||||
"empUser":"Emphasize this user",
|
||||
"supportme":"Support TheDesk!",
|
||||
"TheDeskDes":"TheDesk has no ad, you need no charge to unlock premium features. We need your friendly support!",
|
||||
"PatreonSupport":"Support on Patreon",
|
||||
"PixivSupport":"Support on Pixiv FANBOX",
|
||||
"AWLSupport":"Amazon Wish List",
|
||||
"SendAmazonGift1":"Give me Amazon Gift Card:",
|
||||
"SendAmazonGift2":"",
|
||||
"monthly":"Monthly",
|
||||
"once":"Once",
|
||||
"local":"Local",
|
||||
"localMedia":"Local(Media)",
|
||||
"home":"Home",
|
||||
"fed":"Federated",
|
||||
"fedMedia":"Federated(Media)",
|
||||
"dm":"Direct Message",
|
||||
"integratedTLDes":"Integrated(Local/Home)",
|
||||
"localPlusDes":"LTL+Reply+BT",
|
||||
"notf":"Notifications",
|
||||
"reply": "Reply",
|
||||
"bt": "Boost",
|
||||
"favRegist": "Favourite",
|
||||
"openBrowser": "Open in browser",
|
||||
"screenshot": "Take a screenshot",
|
||||
"copyURL": "Copy the URL",
|
||||
"copy": "Copy",
|
||||
"embed": "Embed",
|
||||
"toots": "Toots",
|
||||
"follow": "Follow",
|
||||
"follower": "Follower",
|
||||
"utlColumn": "Show as a column",
|
||||
"timeline": "Timeline",
|
||||
"operateOtherAcct": "Cross-account",
|
||||
"list": "List",
|
||||
"makeNew": "Save",
|
||||
"blocks": "Blocks",
|
||||
"mutes": "Mutes",
|
||||
"block": "Block",
|
||||
"mute": "Mute",
|
||||
"domainBlock": "Domain block",
|
||||
"editProf": "Edit profile",
|
||||
"change": "Save",
|
||||
"followReq": "Follow requests",
|
||||
"likeHimOrHer": "Resembling",
|
||||
"endorse": "Feature on profile",
|
||||
"openinbrowser": "Open in browser",
|
||||
"mainacct": "Set it an main account",
|
||||
"frc": "Suggest",
|
||||
"more": "More",
|
||||
"revoverJP": " to ",
|
||||
"warnUseOtherAcct": "(Unable to unfollow)",
|
||||
"revoverJPde": "",
|
||||
"or": "or",
|
||||
"openProf": "Show profile",
|
||||
"warnListRegist": "Follow to add this user to lists.",
|
||||
"blockDomain": "Add blocking domain",
|
||||
"name": "Display name",
|
||||
"note": "Note",
|
||||
"editProfImg": "Change avataor",
|
||||
"editHeader": "Change header image",
|
||||
"blocked": "You are blocked. Why?",
|
||||
"likeUserDes": "Get people resembling this user.",
|
||||
"get": "Get",
|
||||
"historyBack": "Back",
|
||||
"empUser": "Emphasize this user",
|
||||
"supportme": "Support TheDesk!",
|
||||
"TheDeskDes": "TheDesk has no ad, you need no charge to unlock premium features. We need your friendly support!",
|
||||
"PatreonSupport": "Support on Patreon",
|
||||
"PixivSupport": "Support on Pixiv FANBOX",
|
||||
"AWLSupport": "Amazon Wish List",
|
||||
"SendAmazonGift1": "Give me Amazon Gift Card:",
|
||||
"SendAmazonGift2": "",
|
||||
"monthly": "Monthly",
|
||||
"once": "Once",
|
||||
"local": "Local",
|
||||
"localMedia": "Local(Media)",
|
||||
"home": "Home",
|
||||
"fed": "Federated",
|
||||
"fedMedia": "Federated(Media)",
|
||||
"dm": "Direct Message",
|
||||
"integratedTLDes": "Integrated(Local/Home)",
|
||||
"localPlusDes": "LTL+Reply+BT",
|
||||
"notf": "Notifications",
|
||||
"bookmark": "Bookmarks",
|
||||
"showThisTL":"Show this TL:",
|
||||
"webviewWarn":"TweetDeck with customed TJDeck(<a href='https://gist.github.com/cutls/8787a55d2c1c53274e68a427966046a6' target='_blank'>Code</a>/<a href='https://gist.github.com/totoraj930/d1394dadb51d75666a76829f61e7280c' target='_blank'>TJDeck</a>).",
|
||||
"add":"Add",
|
||||
"search":"Search",
|
||||
"sortSet":"Sort",
|
||||
"selectAcct":"Account(Scroll to show all)",
|
||||
"listLocale":"List",
|
||||
"filterWord":"Filtering words",
|
||||
"degree":"Filter contexts",
|
||||
"conver":"Conversations",
|
||||
"prof":"Profiles",
|
||||
"option":"Options",
|
||||
"matchWord":"Whole word",
|
||||
"warnMatchWord":"Nice for Latin language",
|
||||
"except":"Drop instead of hide",
|
||||
"exceptWorn":"Filtered toots will disappear irreversibly, even if filter is later removed",
|
||||
"avalableBefore":"Expire after",
|
||||
"warnAvBefore":"Unset or \"0\" means \"Never\"",
|
||||
"warnAvBefore2":"This value may contain some error",
|
||||
"unlimited":"Never",
|
||||
"days":"day(s)",
|
||||
"hours":"hour(s)",
|
||||
"mins":"minute(s)",
|
||||
"secs":"second(s)",
|
||||
"warnOnIntegratedTL":"Integrated TL/Plus TL will hide both Home-filtering words and Local-filtering words.",
|
||||
"helloTheDesk":"Internal error: please clear all data(at setting page) <b>All data will be deleted.</b>",
|
||||
"addColumn":"Add a column",
|
||||
"sortColumns":"Sort",
|
||||
"acctMan":"Account Manager",
|
||||
"filter":"Filter",
|
||||
"setting":"Preferences",
|
||||
"reverse":"Toot button layout reverse",
|
||||
"f5":"Reload TL",
|
||||
"nanoDes":"The smallest Mastodon,",
|
||||
"verTips":"Version",
|
||||
"clockTips":"Clock",
|
||||
"ramTips":"RAM status",
|
||||
"changeTips":"Change Tips",
|
||||
"helpAndLogs":"Help & Log",
|
||||
"help":"Help",
|
||||
"contactwithlog":"If you tell me bugs(not working or something) with this log, I can detect what is wrong more easily.",
|
||||
"about":"About TheDesk",
|
||||
"hereAddColumns":"<- Add TL",
|
||||
"showThisTL": "Show this TL:",
|
||||
"webviewWarn": "TweetDeck with customed TJDeck(<a href='https://gist.github.com/cutls/8787a55d2c1c53274e68a427966046a6' target='_blank'>Code</a>/<a href='https://gist.github.com/totoraj930/d1394dadb51d75666a76829f61e7280c' target='_blank'>TJDeck</a>).",
|
||||
"add": "Add",
|
||||
"search": "Search",
|
||||
"sortSet": "Sort",
|
||||
"selectAcct": "Account(Scroll to show all)",
|
||||
"listLocale": "List",
|
||||
"filterWord": "Filtering words",
|
||||
"degree": "Filter contexts",
|
||||
"conver": "Conversations",
|
||||
"prof": "Profiles",
|
||||
"option": "Options",
|
||||
"matchWord": "Whole word",
|
||||
"warnMatchWord": "Nice for Latin language",
|
||||
"except": "Drop instead of hide",
|
||||
"exceptWorn": "Filtered toots will disappear irreversibly, even if filter is later removed",
|
||||
"avalableBefore": "Expire after",
|
||||
"warnAvBefore": "Unset or \"0\" means \"Never\"",
|
||||
"warnAvBefore2": "This value may contain some error",
|
||||
"unlimited": "Never",
|
||||
"days": "day(s)",
|
||||
"hours": "hour(s)",
|
||||
"mins": "minute(s)",
|
||||
"secs": "second(s)",
|
||||
"warnOnIntegratedTL": "Integrated TL/Plus TL will hide both Home-filtering words and Local-filtering words.",
|
||||
"helloTheDesk": "Internal error: please clear all data(at setting page) <b>All data will be deleted.</b>",
|
||||
"addColumn": "Add a column",
|
||||
"sortColumns": "Sort",
|
||||
"acctMan": "Account Manager",
|
||||
"filter": "Filter",
|
||||
"setting": "Preferences",
|
||||
"reverse": "Toot button layout reverse",
|
||||
"f5": "Reload TL",
|
||||
"nanoDes": "The smallest Mastodon,",
|
||||
"verTips": "Version",
|
||||
"clockTips": "Clock",
|
||||
"ramTips": "RAM status",
|
||||
"changeTips": "Change Tips",
|
||||
"helpAndLogs": "Help & Log",
|
||||
"help": "Help",
|
||||
"contactwithlog": "If you tell me bugs(not working or something) with this log, I can detect what is wrong more easily.",
|
||||
"about": "About TheDesk",
|
||||
"hereAddColumns": "<- Add TL",
|
||||
"foundBug": "I found a bug",
|
||||
"show": "Show",
|
||||
"directory": "Directory",
|
||||
"discover": "Discover",
|
||||
"active": "Recently active",
|
||||
"newcomer": "New arrivals",
|
||||
"local_only": "Local only",
|
||||
|
|
|
@ -1,182 +1,183 @@
|
|||
{
|
||||
"draghere":"ドラッグしてみ?(ドラッグしたらすぐアップロードされるで)",
|
||||
"nowOffline":"オフラインやで。投稿は全部下書きに行くし、もしオンラインなったら再読み込みしたらええで。",
|
||||
"reOnline":"オンライン戻ったから再読み込みしてな。",
|
||||
"close":"Close",
|
||||
"draghere": "ドラッグしてみ?(ドラッグしたらすぐアップロードされるで)",
|
||||
"nowOffline": "オフラインやで。投稿は全部下書きに行くし、もしオンラインなったら再読み込みしたらええで。",
|
||||
"reOnline": "オンライン戻ったから再読み込みしてな。",
|
||||
"close": "Close",
|
||||
"webSrc": "Webでさがす",
|
||||
"tsSrc": "tootsearchでさがす",
|
||||
"showSelectProf":"このアカウントのプロフィール出す",
|
||||
"closethisbox":"このボックスなおす",
|
||||
"post-new":"投稿",
|
||||
"toot":"トゥート",
|
||||
"nsfwDes":"画像を見たらあかんやつにする",
|
||||
"cwDes":"コンテンツワーニング(ほんまに見るんか?って聞く)",
|
||||
"selfile":"ファイル選ぶ",
|
||||
"insertEmoji":"絵文字入れる",
|
||||
"schedule":"時間指定投稿",
|
||||
"postat":"時間指定投稿",
|
||||
"scheduleWarn":"2.7.0~ 5分は待ってな。サーバーの時計おうてるかは知らんで。",
|
||||
"clearToot":"トゥートボックスのクリア",
|
||||
"replyMode":"返信モード",
|
||||
"no":"いいえ",
|
||||
"yes":"はい",
|
||||
"temp":"添付ファイル",
|
||||
"nothing":"なし",
|
||||
"vis":"公開範囲",
|
||||
"cwtext":"警告文",
|
||||
"selectVis":"公開範囲指定",
|
||||
"publicJP":"公開",
|
||||
"unlistedJP":"未収載",
|
||||
"privateJP":"非公開",
|
||||
"localJP":"ローカル限定",
|
||||
"directJP":"ダイレクト",
|
||||
"sectoot":"こっちでもトゥート",
|
||||
"emojiWarn":"サーバーちゃうかったら絵文字もちゃうで。",
|
||||
"emojiInsertWarn":"入力できん絵文字もあるけどしゃーない。",
|
||||
"refreshEmoji":"絵文字更新",
|
||||
"closeThisBox":"ボックスなおす",
|
||||
"showThisEmoji":"一覧を表示中",
|
||||
"customEmoji":"カスタム絵文字",
|
||||
"peopleEmoji":"ひと",
|
||||
"natureEmoji":"自然",
|
||||
"foodEmoji":"食べ物",
|
||||
"activityEmoji":"活動",
|
||||
"placeEmoji":"場所",
|
||||
"thingsEmoji":"もの",
|
||||
"symbolEmoji":"記号",
|
||||
"flagsEmoji":"国旗",
|
||||
"showSelectProf": "このアカウントのプロフィール出す",
|
||||
"closethisbox": "このボックスなおす",
|
||||
"post-new": "投稿",
|
||||
"toot": "トゥート",
|
||||
"nsfwDes": "画像を見たらあかんやつにする",
|
||||
"cwDes": "コンテンツワーニング(ほんまに見るんか?って聞く)",
|
||||
"selfile": "ファイル選ぶ",
|
||||
"insertEmoji": "絵文字入れる",
|
||||
"schedule": "時間指定投稿",
|
||||
"postat": "時間指定投稿",
|
||||
"scheduleWarn": "2.7.0~ 5分は待ってな。サーバーの時計おうてるかは知らんで。",
|
||||
"clearToot": "トゥートボックスのクリア",
|
||||
"replyMode": "返信モード",
|
||||
"no": "いいえ",
|
||||
"yes": "はい",
|
||||
"temp": "添付ファイル",
|
||||
"nothing": "なし",
|
||||
"vis": "公開範囲",
|
||||
"cwtext": "警告文",
|
||||
"selectVis": "公開範囲指定",
|
||||
"publicJP": "公開",
|
||||
"unlistedJP": "未収載",
|
||||
"privateJP": "非公開",
|
||||
"localJP": "ローカル限定",
|
||||
"directJP": "ダイレクト",
|
||||
"sectoot": "こっちでもトゥート",
|
||||
"emojiWarn": "サーバーちゃうかったら絵文字もちゃうで。",
|
||||
"emojiInsertWarn": "入力できん絵文字もあるけどしゃーない。",
|
||||
"refreshEmoji": "絵文字更新",
|
||||
"closeThisBox": "ボックスなおす",
|
||||
"showThisEmoji": "一覧を表示中",
|
||||
"customEmoji": "カスタム絵文字",
|
||||
"peopleEmoji": "ひと",
|
||||
"natureEmoji": "自然",
|
||||
"foodEmoji": "食べ物",
|
||||
"activityEmoji": "活動",
|
||||
"placeEmoji": "場所",
|
||||
"thingsEmoji": "もの",
|
||||
"symbolEmoji": "記号",
|
||||
"flagsEmoji": "国旗",
|
||||
"draft": "下書き(タンス)",
|
||||
"poll":"アンケート",
|
||||
"pollDdisabled":"アンケート付けへん",
|
||||
"pollProvider":"アンケートのプロバイダ",
|
||||
"choice":"選択肢",
|
||||
"polluntil":"あんたが投票するまで票数教えへん",
|
||||
"pollmulti":"複数選択を許可",
|
||||
"expires_in":"有効期限(秒)",
|
||||
"contextBefore":"これより前の会話",
|
||||
"thisToot":"対象のトゥート",
|
||||
"contextAfter":"これより後の会話",
|
||||
"beforeLTL":"これより前のLocal TL(誰にエアリプしてん)",
|
||||
"beforeUTL":"これより前のユーザーTL(誰のトゥート言及してんねん)",
|
||||
"afterLTL":"これより後のLocal TL(誰のトゥート言及してんねん)",
|
||||
"afterUTL":"これより後のユーザーTL(誰のトゥート言及してんねん)",
|
||||
"afterFTL":"これより後の連合TL(誰のトゥート言及してんねん)",
|
||||
"favedPeople":"誰がお気に入りに登録してるんや",
|
||||
"btedPeople":"誰がお気に入りブーストしたんや",
|
||||
"useOtherAcct1":"他のアカウント使う",
|
||||
"useOtherAcct2":"の解除はできひん",
|
||||
"poll": "アンケート",
|
||||
"pollDdisabled": "アンケート付けへん",
|
||||
"pollProvider": "アンケートのプロバイダ",
|
||||
"choice": "選択肢",
|
||||
"polluntil": "あんたが投票するまで票数教えへん",
|
||||
"pollmulti": "複数選択を許可",
|
||||
"expires_in": "有効期限(秒)",
|
||||
"contextBefore": "これより前の会話",
|
||||
"thisToot": "対象のトゥート",
|
||||
"contextAfter": "これより後の会話",
|
||||
"beforeLTL": "これより前のLocal TL(誰にエアリプしてん)",
|
||||
"beforeUTL": "これより前のユーザーTL(誰のトゥート言及してんねん)",
|
||||
"afterLTL": "これより後のLocal TL(誰のトゥート言及してんねん)",
|
||||
"afterUTL": "これより後のユーザーTL(誰のトゥート言及してんねん)",
|
||||
"afterFTL": "これより後の連合TL(誰のトゥート言及してんねん)",
|
||||
"favedPeople": "誰がお気に入りに登録してるんや",
|
||||
"btedPeople": "誰がお気に入りブーストしたんや",
|
||||
"useOtherAcct1": "他のアカウント使う",
|
||||
"useOtherAcct2": "の解除はできひん",
|
||||
"btWithVis": "公開範囲も決めてからブースト",
|
||||
"reply":"返信",
|
||||
"bt":"ブースト",
|
||||
"favRegist":"お気に入り",
|
||||
"openBrowser":"ブラウザで開く",
|
||||
"screenshot":"スクリーンショット",
|
||||
"copyURL":"URLをコピー",
|
||||
"copy":"コピー",
|
||||
"embed":"埋め込む",
|
||||
"toots":"トゥート",
|
||||
"follow":"フォロー",
|
||||
"follower":"フォロワー",
|
||||
"utlColumn":"カラムとして追加",
|
||||
"timeline":"タイムライン",
|
||||
"operateOtherAcct":"他のアカウント使うて何かする",
|
||||
"list":"リスト",
|
||||
"makeNew":"新しいやつ",
|
||||
"blocks":"ブロック",
|
||||
"mutes":"ミュート",
|
||||
"block":"ブロック",
|
||||
"mute":"ミュート",
|
||||
"domainBlock":"ドメインブロック",
|
||||
"editProf":"プロフィールいらう",
|
||||
"change":"変更",
|
||||
"followReq":"フォローリクエスト",
|
||||
"likeHimOrHer":"似とうユーザー",
|
||||
"frc":"あんたにおすすめ",
|
||||
"more":"他無いんか?",
|
||||
"endorse":"紹介したる",
|
||||
"openinbrowser":"ブラウザで開く",
|
||||
"mainacct":"メインアカウントに設定",
|
||||
"revoverJP":"する",
|
||||
"warnUseOtherAcct":"(解除はでけへん。)",
|
||||
"revoverJPde":"で",
|
||||
"or":"それか",
|
||||
"openProf":"プロフィール出す",
|
||||
"warnListRegist":"リストに入れたかったらまずフォローせなあかん。",
|
||||
"blockDomain":"ブロックするドメイン",
|
||||
"name":"名前",
|
||||
"note":"自己紹介",
|
||||
"editProfImg":"アバター変える",
|
||||
"editHeader":"ヘッダー変える",
|
||||
"blocked":"なんでか知らんけどブロックされとるわ",
|
||||
"likeUserDes":"あんたと似とうユーザーを発掘すんで。",
|
||||
"get":"取得",
|
||||
"historyBack":"一つ前のユーザーデータ",
|
||||
"empUser":"ユーザー強調",
|
||||
"supportme":"支援してくれんか?",
|
||||
"TheDeskDes":"TheDeskは営利目的ちゃうし、有料機能や広告は一切あらへん。<br>せやけど君らが支援してくれとうからTheDeskは続いてるんや。ほんまありがとうな。",
|
||||
"PatreonSupport":"Patreonで支援",
|
||||
"PixivSupport":"Pixiv FANBOXで支援",
|
||||
"AWLSupport":"Amazonほしいものリスト",
|
||||
"SendAmazonGift1":"",
|
||||
"SendAmazonGift2":"にAmazonギフトカードを送る",
|
||||
"monthly":"月額支援(大歓迎)",
|
||||
"once":"一度限りの支援(めっちゃ歓迎)",
|
||||
"local":"ローカル",
|
||||
"localMedia":"ローカル(メディア)",
|
||||
"home":"ホーム",
|
||||
"fed":"連合",
|
||||
"fedMedia":"連合(メディア)",
|
||||
"dm":"ダイレクトメッセージ",
|
||||
"integratedTLDes":"統合(ローカルとホーム)",
|
||||
"localPlusDes":"統合(LTL+BT+返信)",
|
||||
"notf":"通知",
|
||||
"reply": "返信",
|
||||
"bt": "ブースト",
|
||||
"favRegist": "お気に入り",
|
||||
"openBrowser": "ブラウザで開く",
|
||||
"screenshot": "スクリーンショット",
|
||||
"copyURL": "URLをコピー",
|
||||
"copy": "コピー",
|
||||
"embed": "埋め込む",
|
||||
"toots": "トゥート",
|
||||
"follow": "フォロー",
|
||||
"follower": "フォロワー",
|
||||
"utlColumn": "カラムとして追加",
|
||||
"timeline": "タイムライン",
|
||||
"operateOtherAcct": "他のアカウント使うて何かする",
|
||||
"list": "リスト",
|
||||
"makeNew": "新しいやつ",
|
||||
"blocks": "ブロック",
|
||||
"mutes": "ミュート",
|
||||
"block": "ブロック",
|
||||
"mute": "ミュート",
|
||||
"domainBlock": "ドメインブロック",
|
||||
"editProf": "プロフィールいらう",
|
||||
"change": "変更",
|
||||
"followReq": "フォローリクエスト",
|
||||
"likeHimOrHer": "似とうユーザー",
|
||||
"frc": "あんたにおすすめ",
|
||||
"more": "他無いんか?",
|
||||
"endorse": "紹介したる",
|
||||
"openinbrowser": "ブラウザで開く",
|
||||
"mainacct": "メインアカウントに設定",
|
||||
"revoverJP": "する",
|
||||
"warnUseOtherAcct": "(解除はでけへん。)",
|
||||
"revoverJPde": "で",
|
||||
"or": "それか",
|
||||
"openProf": "プロフィール出す",
|
||||
"warnListRegist": "リストに入れたかったらまずフォローせなあかん。",
|
||||
"blockDomain": "ブロックするドメイン",
|
||||
"name": "名前",
|
||||
"note": "自己紹介",
|
||||
"editProfImg": "アバター変える",
|
||||
"editHeader": "ヘッダー変える",
|
||||
"blocked": "なんでか知らんけどブロックされとるわ",
|
||||
"likeUserDes": "あんたと似とうユーザーを発掘すんで。",
|
||||
"get": "取得",
|
||||
"historyBack": "一つ前のユーザーデータ",
|
||||
"empUser": "ユーザー強調",
|
||||
"supportme": "支援してくれんか?",
|
||||
"TheDeskDes": "TheDeskは営利目的ちゃうし、有料機能や広告は一切あらへん。<br>せやけど君らが支援してくれとうからTheDeskは続いてるんや。ほんまありがとうな。",
|
||||
"PatreonSupport": "Patreonで支援",
|
||||
"PixivSupport": "Pixiv FANBOXで支援",
|
||||
"AWLSupport": "Amazonほしいものリスト",
|
||||
"SendAmazonGift1": "",
|
||||
"SendAmazonGift2": "にAmazonギフトカードを送る",
|
||||
"monthly": "月額支援(大歓迎)",
|
||||
"once": "一度限りの支援(めっちゃ歓迎)",
|
||||
"local": "ローカル",
|
||||
"localMedia": "ローカル(メディア)",
|
||||
"home": "ホーム",
|
||||
"fed": "連合",
|
||||
"fedMedia": "連合(メディア)",
|
||||
"dm": "ダイレクトメッセージ",
|
||||
"integratedTLDes": "統合(ローカルとホーム)",
|
||||
"localPlusDes": "統合(LTL+BT+返信)",
|
||||
"notf": "通知",
|
||||
"bookmark": "ブックマーク",
|
||||
"showThisTL":"表示するタイムライン",
|
||||
"webviewWarn":"TweetDeckを出すで。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":"追加",
|
||||
"search":"検索",
|
||||
"sortSet":"並べ替え設定",
|
||||
"selectAcct":"選択(スクロールして全選択肢表示)",
|
||||
"filterWord":"フィルターワード",
|
||||
"listLocale":"一覧",
|
||||
"degree":"適応範囲",
|
||||
"conver":"会話",
|
||||
"prof":"プロフィール",
|
||||
"option":"オプション",
|
||||
"matchWord":"単語マッチ",
|
||||
"warnMatchWord":"非ラテン系の文字列では「単語マッチ」はせん方がええで。(これはフリかも知れん)",
|
||||
"except":"除外",
|
||||
"exceptWorn":"「除外」にしてもうたらマッチしたトゥートはフィルター解除しても二度と表示されへん。",
|
||||
"avalableBefore":"有効期限(あと)",
|
||||
"warnAvBefore":"未指定(または0分)で「無期限」や",
|
||||
"warnAvBefore2":"この数字はそんなに正確ちゃうで",
|
||||
"unlimited":"無期限",
|
||||
"days":"日",
|
||||
"hours":"時間",
|
||||
"mins":"分",
|
||||
"secs":"秒",
|
||||
"warnOnIntegratedTL":"Integrated TL/Plus TLは、公開/ホームのフィルターワードをどっちも合わせて処理するで",
|
||||
"helloTheDesk":"やってもうた…再読込して治らんかったら初期化(全データ削除)してな…(予め設定をエクスポートしとくんやで)",
|
||||
"addColumn":"カラム追加",
|
||||
"sortColumns":"カラム一覧/並べ替え",
|
||||
"acctMan":"アカウントマネージャー",
|
||||
"filter":"フィルター",
|
||||
"setting":"設定",
|
||||
"reverse":"トゥートボタンの左右入れ替え",
|
||||
"f5":"TL再読込",
|
||||
"nanoDes":"めっちゃ小さいマストドン。",
|
||||
"verTips":"バージョン",
|
||||
"clockTips":"時計",
|
||||
"ramTips":"システムメモリ容量",
|
||||
"changeTips":"Tips変更",
|
||||
"helpAndLogs":"ヘルプとログ",
|
||||
"help":"ヘルプ",
|
||||
"contactwithlog":"なんか知らんけど動かんとかそういうのを開発者のお兄さんお姉さんに言うときは下のログのそこらへんの時間に起きたなぁってのを拾って連絡するとなんかの助けになるかも知れん。ついでやけどこのウィンドウ全体を横に引き伸ばしたらいい感じに見れるで",
|
||||
"about":"このソフトについて",
|
||||
"hereAddColumns":"←ここからTL追加",
|
||||
"showThisTL": "表示するタイムライン",
|
||||
"webviewWarn": "TweetDeckを出すで。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": "追加",
|
||||
"search": "検索",
|
||||
"sortSet": "並べ替え設定",
|
||||
"selectAcct": "選択(スクロールして全選択肢表示)",
|
||||
"filterWord": "フィルターワード",
|
||||
"listLocale": "一覧",
|
||||
"degree": "適応範囲",
|
||||
"conver": "会話",
|
||||
"prof": "プロフィール",
|
||||
"option": "オプション",
|
||||
"matchWord": "単語マッチ",
|
||||
"warnMatchWord": "非ラテン系の文字列では「単語マッチ」はせん方がええで。(これはフリかも知れん)",
|
||||
"except": "除外",
|
||||
"exceptWorn": "「除外」にしてもうたらマッチしたトゥートはフィルター解除しても二度と表示されへん。",
|
||||
"avalableBefore": "有効期限(あと)",
|
||||
"warnAvBefore": "未指定(または0分)で「無期限」や",
|
||||
"warnAvBefore2": "この数字はそんなに正確ちゃうで",
|
||||
"unlimited": "無期限",
|
||||
"days": "日",
|
||||
"hours": "時間",
|
||||
"mins": "分",
|
||||
"secs": "秒",
|
||||
"warnOnIntegratedTL": "Integrated TL/Plus TLは、公開/ホームのフィルターワードをどっちも合わせて処理するで",
|
||||
"helloTheDesk": "やってもうた…再読込して治らんかったら初期化(全データ削除)してな…(予め設定をエクスポートしとくんやで)",
|
||||
"addColumn": "カラム追加",
|
||||
"sortColumns": "カラム一覧/並べ替え",
|
||||
"acctMan": "アカウントマネージャー",
|
||||
"filter": "フィルター",
|
||||
"setting": "設定",
|
||||
"reverse": "トゥートボタンの左右入れ替え",
|
||||
"f5": "TL再読込",
|
||||
"nanoDes": "めっちゃ小さいマストドン。",
|
||||
"verTips": "バージョン",
|
||||
"clockTips": "時計",
|
||||
"ramTips": "システムメモリ容量",
|
||||
"changeTips": "Tips変更",
|
||||
"helpAndLogs": "ヘルプとログ",
|
||||
"help": "ヘルプ",
|
||||
"contactwithlog": "なんか知らんけど動かんとかそういうのを開発者のお兄さんお姉さんに言うときは下のログのそこらへんの時間に起きたなぁってのを拾って連絡するとなんかの助けになるかも知れん。ついでやけどこのウィンドウ全体を横に引き伸ばしたらいい感じに見れるで",
|
||||
"about": "このソフトについて",
|
||||
"hereAddColumns": "←ここからTL追加",
|
||||
"foundBug": "バグあるんやけど",
|
||||
"show": "表示",
|
||||
"directory": "ディレクトリ",
|
||||
"discover": "見つける",
|
||||
"active": "最新活動順",
|
||||
"newcomer": "新規順",
|
||||
"local_only": "ローカルだけ",
|
||||
|
|
|
@ -1,184 +1,185 @@
|
|||
{
|
||||
"draghere":"ここにドラッグして添付(ドラッグと同時にアップロードされます)",
|
||||
"nowOffline":"オフラインです。投稿はすべて下書きに追加されます。オンライン復帰時には再読み込みを推奨します。",
|
||||
"draghere": "ここにドラッグして添付(ドラッグと同時にアップロードされます)",
|
||||
"nowOffline": "オフラインです。投稿はすべて下書きに追加されます。オンライン復帰時には再読み込みを推奨します。",
|
||||
"reOnline": "オンラインに復帰しました。再読み込みを推奨します。",
|
||||
"webSrc": "Webで検索",
|
||||
"tsSrc": "tootsearchで検索",
|
||||
"close":"Close",
|
||||
"showSelectProf":"選択したアカウントのプロフィールを表示",
|
||||
"closethisbox":"このボックスを閉じる",
|
||||
"post-new":"投稿",
|
||||
"toot":"トゥート",
|
||||
"nsfwDes":"画像に制限を付与",
|
||||
"cwDes":"コンテンツワーニング(トゥートを表示する前にメッセージで隠す)",
|
||||
"selfile":"ファイルを選択",
|
||||
"insertEmoji":"絵文字を挿入",
|
||||
"schedule":"時間指定投稿",
|
||||
"postat":"時間指定投稿",
|
||||
"scheduleWarn":"2.7.0~ 5分以内には投稿できません。サーバーの時計が正確とは限りません。",
|
||||
"clearToot":"トゥートボックスのクリア",
|
||||
"replyMode":"返信モード",
|
||||
"no":"いいえ",
|
||||
"yes":"はい",
|
||||
"temp":"添付ファイル",
|
||||
"nothing":"なし",
|
||||
"close": "Close",
|
||||
"showSelectProf": "選択したアカウントのプロフィールを表示",
|
||||
"closethisbox": "このボックスを閉じる",
|
||||
"post-new": "投稿",
|
||||
"toot": "トゥート",
|
||||
"nsfwDes": "画像に制限を付与",
|
||||
"cwDes": "コンテンツワーニング(トゥートを表示する前にメッセージで隠す)",
|
||||
"selfile": "ファイルを選択",
|
||||
"insertEmoji": "絵文字を挿入",
|
||||
"schedule": "時間指定投稿",
|
||||
"postat": "時間指定投稿",
|
||||
"scheduleWarn": "2.7.0~ 5分以内には投稿できません。サーバーの時計が正確とは限りません。",
|
||||
"clearToot": "トゥートボックスのクリア",
|
||||
"replyMode": "返信モード",
|
||||
"no": "いいえ",
|
||||
"yes": "はい",
|
||||
"temp": "添付ファイル",
|
||||
"nothing": "なし",
|
||||
"stamp": "スタンプ",
|
||||
"stampWarn": "画像右下にアカウント名(aa@bb.cc)テキストを挿入します",
|
||||
"vis":"公開範囲",
|
||||
"cwtext":"警告文",
|
||||
"selectVis":"公開範囲指定",
|
||||
"publicJP":"公開",
|
||||
"unlistedJP":"未収載",
|
||||
"privateJP":"非公開",
|
||||
"localJP":"ローカル限定",
|
||||
"directJP":"ダイレクト",
|
||||
"sectoot":"セカンダリートゥート",
|
||||
"emojiWarn":"サーバーによって実装が異なります。",
|
||||
"emojiInsertWarn":"一部絵文字は入力できません。",
|
||||
"refreshEmoji":"絵文字更新",
|
||||
"closeThisBox":"このボックスを閉じる",
|
||||
"showThisEmoji":"一覧を表示中",
|
||||
"customEmoji":"カスタム絵文字",
|
||||
"peopleEmoji":"ひと",
|
||||
"natureEmoji":"自然",
|
||||
"foodEmoji":"食べ物",
|
||||
"activityEmoji":"活動",
|
||||
"placeEmoji":"場所",
|
||||
"thingsEmoji":"もの",
|
||||
"symbolEmoji":"記号",
|
||||
"flagsEmoji":"国旗",
|
||||
"vis": "公開範囲",
|
||||
"cwtext": "警告文",
|
||||
"selectVis": "公開範囲指定",
|
||||
"publicJP": "公開",
|
||||
"unlistedJP": "未収載",
|
||||
"privateJP": "非公開",
|
||||
"localJP": "ローカル限定",
|
||||
"directJP": "ダイレクト",
|
||||
"sectoot": "セカンダリートゥート",
|
||||
"emojiWarn": "サーバーによって実装が異なります。",
|
||||
"emojiInsertWarn": "一部絵文字は入力できません。",
|
||||
"refreshEmoji": "絵文字更新",
|
||||
"closeThisBox": "このボックスを閉じる",
|
||||
"showThisEmoji": "一覧を表示中",
|
||||
"customEmoji": "カスタム絵文字",
|
||||
"peopleEmoji": "ひと",
|
||||
"natureEmoji": "自然",
|
||||
"foodEmoji": "食べ物",
|
||||
"activityEmoji": "活動",
|
||||
"placeEmoji": "場所",
|
||||
"thingsEmoji": "もの",
|
||||
"symbolEmoji": "記号",
|
||||
"flagsEmoji": "国旗",
|
||||
"draft": "下書き",
|
||||
"poll":"アンケート",
|
||||
"pollDdisabled":"アンケートを使用しない",
|
||||
"pollProvider":"アンケートのプロバイダ",
|
||||
"choice":"選択肢",
|
||||
"polluntil":"投票するまで票数を隠す",
|
||||
"pollmulti":"複数選択を許可",
|
||||
"expires_in":"有効期限(秒)",
|
||||
"contextBefore":"これより前の会話",
|
||||
"thisToot":"対象のトゥート",
|
||||
"contextAfter":"これより後の会話",
|
||||
"beforeLTL":"これより前のLocal TL(エアリプソース確認)",
|
||||
"beforeUTL":"これより前のユーザーTL(BTソース確認)",
|
||||
"afterLTL":"これより後のLocal TL(言及確認)",
|
||||
"afterUTL":"これより後のユーザーTL(言及確認)",
|
||||
"afterFTL":"これより後の連合TL(言及確認)",
|
||||
"favedPeople":"このトゥートをお気に入りに登録した人",
|
||||
"btedPeople":"このトゥートをブーストした人",
|
||||
"useOtherAcct1":"他のアカウントを使用",
|
||||
"useOtherAcct2":"の解除はできません",
|
||||
"poll": "アンケート",
|
||||
"pollDdisabled": "アンケートを使用しない",
|
||||
"pollProvider": "アンケートのプロバイダ",
|
||||
"choice": "選択肢",
|
||||
"polluntil": "投票するまで票数を隠す",
|
||||
"pollmulti": "複数選択を許可",
|
||||
"expires_in": "有効期限(秒)",
|
||||
"contextBefore": "これより前の会話",
|
||||
"thisToot": "対象のトゥート",
|
||||
"contextAfter": "これより後の会話",
|
||||
"beforeLTL": "これより前のLocal TL(エアリプソース確認)",
|
||||
"beforeUTL": "これより前のユーザーTL(BTソース確認)",
|
||||
"afterLTL": "これより後のLocal TL(言及確認)",
|
||||
"afterUTL": "これより後のユーザーTL(言及確認)",
|
||||
"afterFTL": "これより後の連合TL(言及確認)",
|
||||
"favedPeople": "このトゥートをお気に入りに登録した人",
|
||||
"btedPeople": "このトゥートをブーストした人",
|
||||
"useOtherAcct1": "他のアカウントを使用",
|
||||
"useOtherAcct2": "の解除はできません",
|
||||
"btWithVis": "公開範囲を指定してブースト",
|
||||
"reply":"返信",
|
||||
"bt":"ブースト",
|
||||
"favRegist":"お気に入り",
|
||||
"openBrowser":"ブラウザで開く",
|
||||
"screenshot":"スクリーンショット",
|
||||
"copyURL":"URLをコピー",
|
||||
"copy":"コピー",
|
||||
"embed":"埋め込む",
|
||||
"toots":"トゥート",
|
||||
"follow":"フォロー",
|
||||
"follower":"フォロワー",
|
||||
"utlColumn":"カラムとして追加",
|
||||
"timeline":"タイムライン",
|
||||
"operateOtherAcct":"他のアカウントで操作",
|
||||
"list":"リスト",
|
||||
"makeNew":"新規作成",
|
||||
"blocks":"ブロック",
|
||||
"mutes":"ミュート",
|
||||
"block":"ブロック",
|
||||
"mute":"ミュート",
|
||||
"domainBlock":"ドメインブロック",
|
||||
"editProf":"プロフィール編集",
|
||||
"change":"変更",
|
||||
"followReq":"フォローリクエスト",
|
||||
"likeHimOrHer":"似てる",
|
||||
"frc":"おすすめ",
|
||||
"more":"もっと",
|
||||
"endorse":"紹介する",
|
||||
"openinbrowser":"ブラウザで開く",
|
||||
"mainacct":"メインアカウントに設定",
|
||||
"revoverJP":"する",
|
||||
"warnUseOtherAcct":"(解除はできません。)",
|
||||
"revoverJPde":"で",
|
||||
"or":"または",
|
||||
"openProf":"プロフィールを表示",
|
||||
"warnListRegist":"リストに追加するためにはフォローが必要です。",
|
||||
"blockDomain":"ブロックするドメイン",
|
||||
"name":"名前",
|
||||
"note":"自己紹介",
|
||||
"editProfImg":"アバターを変更",
|
||||
"editHeader":"ヘッダーを変更",
|
||||
"blocked":"ブロックされています。なぜでしょう?",
|
||||
"likeUserDes":"似ているユーザーを取得できます。",
|
||||
"get":"取得",
|
||||
"historyBack":"一つ前のユーザーデータ",
|
||||
"empUser":"ユーザー強調",
|
||||
"supportme":"ご支援ください。",
|
||||
"TheDeskDes":"TheDeskは営利目的ではないため、有料機能や広告は一切ありません。<br>皆様のあたたかいご支援のもとで製作されています。",
|
||||
"PatreonSupport":"Patreonで支援",
|
||||
"PixivSupport":"Pixiv FANBOXで支援",
|
||||
"AWLSupport":"Amazonほしいものリスト",
|
||||
"SendAmazonGift1":"",
|
||||
"SendAmazonGift2":"にAmazonギフトカードを送る",
|
||||
"monthly":"月額支援(大歓迎)",
|
||||
"once":"一度限りの支援(もちろん歓迎)",
|
||||
"local":"ローカル",
|
||||
"localMedia":"ローカル(メディア)",
|
||||
"home":"ホーム",
|
||||
"fed":"連合",
|
||||
"fedMedia":"連合(メディア)",
|
||||
"dm":"ダイレクトメッセージ",
|
||||
"integratedTLDes":"統合(ローカルとホーム)",
|
||||
"localPlusDes":"統合(LTL+BT+返信)",
|
||||
"notf":"通知",
|
||||
"reply": "返信",
|
||||
"bt": "ブースト",
|
||||
"favRegist": "お気に入り",
|
||||
"openBrowser": "ブラウザで開く",
|
||||
"screenshot": "スクリーンショット",
|
||||
"copyURL": "URLをコピー",
|
||||
"copy": "コピー",
|
||||
"embed": "埋め込む",
|
||||
"toots": "トゥート",
|
||||
"follow": "フォロー",
|
||||
"follower": "フォロワー",
|
||||
"utlColumn": "カラムとして追加",
|
||||
"timeline": "タイムライン",
|
||||
"operateOtherAcct": "他のアカウントで操作",
|
||||
"list": "リスト",
|
||||
"makeNew": "新規作成",
|
||||
"blocks": "ブロック",
|
||||
"mutes": "ミュート",
|
||||
"block": "ブロック",
|
||||
"mute": "ミュート",
|
||||
"domainBlock": "ドメインブロック",
|
||||
"editProf": "プロフィール編集",
|
||||
"change": "変更",
|
||||
"followReq": "フォローリクエスト",
|
||||
"likeHimOrHer": "似てる",
|
||||
"frc": "おすすめフォロー",
|
||||
"more": "もっと",
|
||||
"endorse": "紹介する",
|
||||
"openinbrowser": "ブラウザで開く",
|
||||
"mainacct": "メインアカウントに設定",
|
||||
"revoverJP": "する",
|
||||
"warnUseOtherAcct": "(解除はできません。)",
|
||||
"revoverJPde": "で",
|
||||
"or": "または",
|
||||
"openProf": "プロフィールを表示",
|
||||
"warnListRegist": "リストに追加するためにはフォローが必要です。",
|
||||
"blockDomain": "ブロックするドメイン",
|
||||
"name": "名前",
|
||||
"note": "自己紹介",
|
||||
"editProfImg": "アバターを変更",
|
||||
"editHeader": "ヘッダーを変更",
|
||||
"blocked": "ブロックされています。なぜでしょう?",
|
||||
"likeUserDes": "似ているユーザーを取得できます。",
|
||||
"get": "取得",
|
||||
"historyBack": "一つ前のユーザーデータ",
|
||||
"empUser": "ユーザー強調",
|
||||
"supportme": "ご支援ください。",
|
||||
"TheDeskDes": "TheDeskは営利目的ではないため、有料機能や広告は一切ありません。<br>皆様のあたたかいご支援のもとで製作されています。",
|
||||
"PatreonSupport": "Patreonで支援",
|
||||
"PixivSupport": "Pixiv FANBOXで支援",
|
||||
"AWLSupport": "Amazonほしいものリスト",
|
||||
"SendAmazonGift1": "",
|
||||
"SendAmazonGift2": "にAmazonギフトカードを送る",
|
||||
"monthly": "月額支援(大歓迎)",
|
||||
"once": "一度限りの支援(もちろん歓迎)",
|
||||
"local": "ローカル",
|
||||
"localMedia": "ローカル(メディア)",
|
||||
"home": "ホーム",
|
||||
"fed": "連合",
|
||||
"fedMedia": "連合(メディア)",
|
||||
"dm": "ダイレクトメッセージ",
|
||||
"integratedTLDes": "統合(ローカルとホーム)",
|
||||
"localPlusDes": "統合(LTL+BT+返信)",
|
||||
"notf": "通知",
|
||||
"bookmark": "ブックマーク",
|
||||
"showThisTL":"表示するタイムライン",
|
||||
"webviewWarn":"TweetDeckを表示します。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":"追加",
|
||||
"search":"検索",
|
||||
"sortSet":"並べ替え設定",
|
||||
"selectAcct":"選択(スクロールで全選択肢表示)",
|
||||
"filterWord":"フィルターワード",
|
||||
"listLocale":"一覧",
|
||||
"degree":"適応範囲",
|
||||
"conver":"会話",
|
||||
"prof":"プロフィール",
|
||||
"option":"オプション",
|
||||
"matchWord":"単語マッチ",
|
||||
"warnMatchWord":"非ラテン系の文字列では「単語マッチ」は推奨されません。",
|
||||
"except":"除外",
|
||||
"exceptWorn":"「除外」時マッチしたトゥートは非可逆的に除外され、削除後も閲覧できません。",
|
||||
"avalableBefore":"有効期限(あと)",
|
||||
"warnAvBefore":"未指定(または0分)で「無期限」になります。",
|
||||
"warnAvBefore2":"仕様上数値の正確性を保証できません。",
|
||||
"unlimited":"無期限",
|
||||
"days":"日",
|
||||
"hours":"時間",
|
||||
"mins":"分",
|
||||
"secs":"秒",
|
||||
"warnOnIntegratedTL":"Integrated TL/Plus TLは、公開/ホームのフィルターワードが合算されて適応されます。どちらか一方の指定でも非表示になります。",
|
||||
"helloTheDesk":"内部エラーです。再読込して治らない場合は初期化(全データ削除)をしてください。(事前に設定をエクスポートしておくことをおすすめします。)",
|
||||
"addColumn":"カラム追加",
|
||||
"sortColumns":"カラム一覧/並べ替え",
|
||||
"acctMan":"アカウントマネージャー",
|
||||
"filter":"フィルター",
|
||||
"setting":"設定",
|
||||
"reverse":"トゥートボタンの左右入れ替え",
|
||||
"f5":"TL再読込",
|
||||
"nanoDes":"最小のマストドン。",
|
||||
"verTips":"バージョン",
|
||||
"clockTips":"時計",
|
||||
"ramTips":"システムメモリ容量",
|
||||
"changeTips":"Tips変更",
|
||||
"helpAndLogs":"ヘルプとログ",
|
||||
"help":"ヘルプ",
|
||||
"contactwithlog":"不具合等のお問合わせは以下のログから発生時刻付近のものを集めてご連絡いただけるとスムーズになるかもしれません。また、このメニューウィンドウ全体を横に引き伸ばすとログが見やすくなります。",
|
||||
"about":"このソフトについて",
|
||||
"hereAddColumns":"←ここからTL追加",
|
||||
"showThisTL": "表示するタイムライン",
|
||||
"webviewWarn": "TweetDeckを表示します。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": "追加",
|
||||
"search": "検索",
|
||||
"sortSet": "並べ替え設定",
|
||||
"selectAcct": "選択(スクロールで全選択肢表示)",
|
||||
"filterWord": "フィルターワード",
|
||||
"listLocale": "一覧",
|
||||
"degree": "適応範囲",
|
||||
"conver": "会話",
|
||||
"prof": "プロフィール",
|
||||
"option": "オプション",
|
||||
"matchWord": "単語マッチ",
|
||||
"warnMatchWord": "非ラテン系の文字列では「単語マッチ」は推奨されません。",
|
||||
"except": "除外",
|
||||
"exceptWorn": "「除外」時マッチしたトゥートは非可逆的に除外され、削除後も閲覧できません。",
|
||||
"avalableBefore": "有効期限(あと)",
|
||||
"warnAvBefore": "未指定(または0分)で「無期限」になります。",
|
||||
"warnAvBefore2": "仕様上数値の正確性を保証できません。",
|
||||
"unlimited": "無期限",
|
||||
"days": "日",
|
||||
"hours": "時間",
|
||||
"mins": "分",
|
||||
"secs": "秒",
|
||||
"warnOnIntegratedTL": "Integrated TL/Plus TLは、公開/ホームのフィルターワードが合算されて適応されます。どちらか一方の指定でも非表示になります。",
|
||||
"helloTheDesk": "内部エラーです。再読込して治らない場合は初期化(全データ削除)をしてください。(事前に設定をエクスポートしておくことをおすすめします。)",
|
||||
"addColumn": "カラム追加",
|
||||
"sortColumns": "カラム一覧/並べ替え",
|
||||
"acctMan": "アカウントマネージャー",
|
||||
"filter": "フィルター",
|
||||
"setting": "設定",
|
||||
"reverse": "トゥートボタンの左右入れ替え",
|
||||
"f5": "TL再読込",
|
||||
"nanoDes": "最小のマストドン。",
|
||||
"verTips": "バージョン",
|
||||
"clockTips": "時計",
|
||||
"ramTips": "システムメモリ容量",
|
||||
"changeTips": "Tips変更",
|
||||
"helpAndLogs": "ヘルプとログ",
|
||||
"help": "ヘルプ",
|
||||
"contactwithlog": "不具合等のお問合わせは以下のログから発生時刻付近のものを集めてご連絡いただけるとスムーズになるかもしれません。また、このメニューウィンドウ全体を横に引き伸ばすとログが見やすくなります。",
|
||||
"about": "このソフトについて",
|
||||
"hereAddColumns": "←ここからTL追加",
|
||||
"foundBug": "バグを見つけた",
|
||||
"show": "表示",
|
||||
"directory": "ディレクトリ",
|
||||
"discover": "見つける",
|
||||
"active": "最新活動順",
|
||||
"newcomer": "新規順",
|
||||
"local_only": "ローカルのみ",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -688,7 +688,7 @@
|
|||
style="width:100%; max-width:40rem;"><img src="../../img/desk_full.svg" class="left" width="25"
|
||||
style="padding-top:5px;">Main author: Cutls@1m.cutls.com</a>
|
||||
<br>
|
||||
TheDesk @ <a href="https://github.com/cutls/TheDesk/commits/5621ffbe42a1de361ccee0e679c97d30da436aab">5621ffbe42a1de361ccee0e679c97d30da436aab</a> - <a
|
||||
TheDesk @ <a href="https://github.com/cutls/TheDesk/commits/36ad187296f74ae3ed6cb12a4ef26b27d8d13d0f">36ad187296f74ae3ed6cb12a4ef26b27d8d13d0f</a> - <a
|
||||
onclick="checkupd(); return localStorage.removeItem('new-ver-skip'); location.href='index.html';"
|
||||
class="pointer pwa">Sprawdź aktualizacje</a><br>
|
||||
<br>
|
||||
|
@ -698,7 +698,7 @@
|
|||
<img src="https://status.cutls.com/badge-service?site=thedesk.top">
|
||||
</a><br>
|
||||
<h5>OSS License</h5>
|
||||
<a href="https://app.fossa.com/projects/git%2Bgithub.com%2Fcutls%2FTheDesk/refs/branch/master/5621ffbe42a1de361ccee0e679c97d30da436aab"
|
||||
<a href="https://app.fossa.com/projects/git%2Bgithub.com%2Fcutls%2FTheDesk/refs/branch/master/36ad187296f74ae3ed6cb12a4ef26b27d8d13d0f"
|
||||
alt="FOSSA Status"><img
|
||||
src="https://app.fossa.com/api/projects/git%2Bgithub.com%2Fcutls%2FTheDesk.svg?type=small" /></a>
|
||||
<br>
|
||||
|
|
Loading…
Reference in New Issue
Block a user