attach file tooltip (not only images anymore)
This commit is contained in:
parent
9bb193f425
commit
9b7aa477ab
|
@ -1465,7 +1465,7 @@ function queetBoxPopUpHtml() {
|
|||
}
|
||||
|
||||
var startText = encodeURIComponent(window.sL.compose);
|
||||
return '<div class="inline-reply-queetbox"><div id="pop-up-queet-box" class="queet-box queet-box-syntax" data-start-text="' + startText + '" data-cached-text="' + cachedText + '">' + decodeURIComponent(startText) + '</div><div class="syntax-middle"></div><div class="syntax-two" contenteditable="true"></div><div class="mentions-suggestions"></div><div class="queet-toolbar toolbar-reply"><div class="queet-box-extras"><button data-tooltip="' + window.sL.tooltipAttachImage + '" class="upload-image"></button><button data-tooltip="' + window.sL.tooltipShortenUrls + '" class="shorten disabled">URL</button></div><div class="queet-button"><span class="queet-counter"></span><button>' + window.sL.queetVerb + '</button></div></div></div>';
|
||||
return '<div class="inline-reply-queetbox"><div id="pop-up-queet-box" class="queet-box queet-box-syntax" data-start-text="' + startText + '" data-cached-text="' + cachedText + '">' + decodeURIComponent(startText) + '</div><div class="syntax-middle"></div><div class="syntax-two" contenteditable="true"></div><div class="mentions-suggestions"></div><div class="queet-toolbar toolbar-reply"><div class="queet-box-extras"><button data-tooltip="' + window.sL.tooltipAttachFile + '" class="upload-image"></button><button data-tooltip="' + window.sL.tooltipShortenUrls + '" class="shorten disabled">URL</button></div><div class="queet-button"><span class="queet-counter"></span><button>' + window.sL.queetVerb + '</button></div></div></div>';
|
||||
}
|
||||
|
||||
|
||||
|
@ -1550,7 +1550,7 @@ function replyFormHtml(streamItem,qid) {
|
|||
|
||||
startText = encodeURIComponent(startText);
|
||||
repliesText = encodeURIComponent(repliesText);
|
||||
return '<div class="inline-reply-queetbox"><span class="inline-reply-caret"><span class="caret-inner"></span></span><img class="reply-avatar" src="' + $('#user-avatar').attr('src') + '" /><div class="queet-box queet-box-syntax" id="queet-box-' + qid + '" data-start-text="' + startText + '" data-replies-text="' + repliesText + '" data-cached-text="' + cachedText + '">' + decodeURIComponent(startText) + '</div><div class="syntax-middle"></div><div class="syntax-two" contenteditable="true"></div><div class="mentions-suggestions"></div><div class="queet-toolbar toolbar-reply"><div class="queet-box-extras"><button data-tooltip="' + window.sL.tooltipAttachImage + '" class="upload-image"></button><button data-tooltip="' + window.sL.tooltipShortenUrls + '" class="shorten disabled">URL</button></div><div class="queet-button"><span class="queet-counter"></span><button>' + window.sL.queetVerb + '</button></div></div></div>';
|
||||
return '<div class="inline-reply-queetbox"><span class="inline-reply-caret"><span class="caret-inner"></span></span><img class="reply-avatar" src="' + $('#user-avatar').attr('src') + '" /><div class="queet-box queet-box-syntax" id="queet-box-' + qid + '" data-start-text="' + startText + '" data-replies-text="' + repliesText + '" data-cached-text="' + cachedText + '">' + decodeURIComponent(startText) + '</div><div class="syntax-middle"></div><div class="syntax-two" contenteditable="true"></div><div class="mentions-suggestions"></div><div class="queet-toolbar toolbar-reply"><div class="queet-box-extras"><button data-tooltip="' + window.sL.tooltipAttachFile + '" class="upload-image"></button><button data-tooltip="' + window.sL.tooltipShortenUrls + '" class="shorten disabled">URL</button></div><div class="queet-button"><span class="queet-counter"></span><button>' + window.sL.queetVerb + '</button></div></div></div>';
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -1063,7 +1063,7 @@ function proceedToSetLanguageAndLogin(data){
|
|||
$('#accessibility-toggle-link').html(window.sL.accessibilityToggleLink);
|
||||
$('#settingslink .nav-session').attr('data-tooltip',window.sL.profileAndSettings);
|
||||
$('#top-compose').attr('data-tooltip',window.sL.compose);
|
||||
$('button.upload-image').attr('data-tooltip',window.sL.tooltipAttachImage);
|
||||
$('button.upload-image').attr('data-tooltip',window.sL.tooltipAttachFile);
|
||||
$('button.shorten').attr('data-tooltip',window.sL.tooltipShortenUrls);
|
||||
$('.reload-stream').attr('data-tooltip',window.sL.tooltipReloadStream);
|
||||
$('#clear-history').html(window.sL.clearHistory);
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"Això és un marcador va crear en l'interfície Clàssic",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"Ĉi tio estas paĝosigno kreita en la klasika interfaco",
|
||||
"thisIsARemoteUser":"<strong>Atentu!</strong> Ĉi tiu estas fora uzanto. Ĉi tiu paĝo estas nur konservita kopio el ĝia profilo, kaj enhavas nur datumojn konatajn de ĉi tiu GNU social-retejo. Vizitu <a href=\"{remote-profile-url}\" donthijack>la uzantprofilon ĉi ĝia servilo</a> por vidi la tutan profilon.",
|
||||
"findSomeone":"Trovu iun",
|
||||
"findSomeoneTooltip":"Enigu uzantnomon aŭ profilo-adreson, ekz. @lokauzanto aŭ https://fora.retejo/kromnomo"
|
||||
"findSomeoneTooltip":"Enigu uzantnomon aŭ profilo-adreson, ekz. @lokauzanto aŭ https://fora.retejo/kromnomo",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -199,5 +199,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -201,5 +201,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"זוהי סימנייה שנוצרה בתוך הממשק הקלאסי",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -197,5 +197,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"Iste es un marcapaginas create in le interfacie Classic",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"Ca esas markorubando kreita en la interfacio klasika",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"これはクラシックインターフェースで作られたブックマークです",
|
||||
"thisIsARemoteUser":"<strong>注意!</strong> これはリモートユーザーです。このページはリモートユーザーのプロフィールのキャッシュされている複製であり、このGNU socialインスタンスに保存されたデータのみを含みます。<a href=\"{remote-profile-url}\" donthijack>このユーザーが所属するサーバーのプロフィール</a>で完全なプロフィールを閲覧できます。",
|
||||
"findSomeone":"誰かを検索",
|
||||
"findSomeoneTooltip":"ユーザー名またはプロフィールURLを入力 (例: @localuser または https://remote.instance/nickname)"
|
||||
"findSomeoneTooltip":"ユーザー名またはプロフィールURLを入力 (例: @localuser または https://remote.instance/nickname)",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"Dette er et bokmerke som ble laget i det klassiske grensesnittet",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"To jest zakładka stworzona w klasycznym interfejsie",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"Este é um favorito criado na interface clássica",
|
||||
"thisIsARemoteUser":"<strong>Atenção!</strong> Este é um usuário remoto. Esta página é apenas uma cópia preservada do perfil do usuário, e inclui apenas dados conhecidos por esta instância do GNU social. Visite <a href=\"{remote-profile-url}\" donthijack>o perfil deste usuário no servidor dele</a> para ver o perfil completo.",
|
||||
"findSomeone":"Encontrar alguém",
|
||||
"findSomeoneTooltip":"Escreva o nome de usuário ou url do perfil, por exemplo @usuariolocal ou https://instancia.remota/apelido"
|
||||
"findSomeoneTooltip":"Escreva o nome de usuário ou url do perfil, por exemplo @usuariolocal ou https://instancia.remota/apelido",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -198,5 +198,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"Ky është një faqerojtës i krijuar nën ndërfaqen Klasike",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"Detta är ett bokmärke som skapats i GNU socials standardgränssnitt",
|
||||
"thisIsARemoteUser":"<strong>Obs!</strong> Detta är en extern användare. Den här sidan visar bara en cachad version av deras profil. Gå till <a href=\"{remote-profile-url}\" donthijack>använderas profil på deras server</a> för se hela deras profil.",
|
||||
"findSomeone":"Hitta en användare",
|
||||
"findSomeoneTooltip":"Skriv in ett användarnamn eller en url till en profil, t ex @anvandarnamn eller https://extern.server/anvandarnamn"
|
||||
"findSomeoneTooltip":"Skriv in ett användarnamn eller en url till en profil, t ex @anvandarnamn eller https://extern.server/anvandarnamn",
|
||||
"tooltipAttachFile":"Bifoga en fil"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -200,5 +200,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -199,5 +199,6 @@
|
|||
"thisIsABookmark":"该书签系在旧版视图下创建。",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
|
@ -199,5 +199,6 @@
|
|||
"thisIsABookmark":"This is a bookmark created in the Classic interface",
|
||||
"thisIsARemoteUser":"<strong>Attention!</strong> This is a remote user. This page is only a cached copy of their profile, and includes only data known to this GNU social instance. Go to the <a href=\"{remote-profile-url}\" donthijack>user's profile on their server</a> to view their full profile.",
|
||||
"findSomeone":"Find someone",
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname"
|
||||
"findSomeoneTooltip":"Input a username or a profile url, e.g. @localuser or https://remote.instance/nickname",
|
||||
"tooltipAttachFile":"Attach a file"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user