mirror of
https://github.com/twisterarmy/theme_nin.git
synced 2025-09-13 14:43:04 +00:00
Fix i18n
This commit is contained in:
parent
7fa6b77bbd
commit
f80f1af092
@ -117,13 +117,13 @@
|
|||||||
<!-- THEME NIN added user menu (mentions, messages and edit profile) -->
|
<!-- THEME NIN added user menu (mentions, messages and edit profile) -->
|
||||||
<ul class="mini-profile-indicators selectable_theme theme_nin">
|
<ul class="mini-profile-indicators selectable_theme theme_nin">
|
||||||
<li class="userMenu-connections">
|
<li class="userMenu-connections">
|
||||||
<a href="#" title="Mentions"><span class="messages-qtd" style="display:none;">0</span>Mentions</a>
|
<a href="#" title="Mentions"><span class="messages-qtd" style="display:none;">0</span><span>Mentions</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="userMenu-messages">
|
<li class="userMenu-messages">
|
||||||
<a href="#" title="Direct Messages"><span class="messages-qtd" style="display:none;">0</span>Messages</a>
|
<a href="#" title="Direct Messages"><span class="messages-qtd" style="display:none;">0</span><span>Messages</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="userMenu-user">
|
<li class="userMenu-user">
|
||||||
<a href="profile-edit.html" title="Edit profile">Edit profile</a>
|
<a href="profile-edit.html" title="Edit profile"><span>Edit profile</span></a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
12
home.html
12
home.html
@ -118,13 +118,13 @@
|
|||||||
<!-- THEME NIN added sub-menu (mentions, messages and edit profile) -->
|
<!-- THEME NIN added sub-menu (mentions, messages and edit profile) -->
|
||||||
<ul class="mini-profile-indicators selectable_theme theme_nin">
|
<ul class="mini-profile-indicators selectable_theme theme_nin">
|
||||||
<li class="userMenu-connections">
|
<li class="userMenu-connections">
|
||||||
<a href="#" title="Mentions"><span class="messages-qtd" style="display:none;">0</span>Mentions</a>
|
<a href="#" title="Mentions"><span class="messages-qtd" style="display:none;">0</span><span>Mentions</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="userMenu-messages">
|
<li class="userMenu-messages">
|
||||||
<a href="#" title="Direct Messages"><span class="messages-qtd" style="display:none;">0</span>Messages</a>
|
<a href="#" title="Direct Messages"><span class="messages-qtd" style="display:none;">0</span><span>Messages</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="userMenu-user">
|
<li class="userMenu-user">
|
||||||
<a href="profile-edit.html" title="Edit profile">Edit profile</a>
|
<a href="profile-edit.html" title="Edit profile"><span>Edit profile</span></a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<!--/sub-menu -->
|
<!--/sub-menu -->
|
||||||
@ -166,7 +166,7 @@
|
|||||||
|
|
||||||
<!-- WHO TO FOLLOW MODULE INIT -->
|
<!-- WHO TO FOLLOW MODULE INIT -->
|
||||||
<div class="module toptrends">
|
<div class="module toptrends">
|
||||||
<h3>Top Trends</h3>
|
<h3><span>Top Trends</span></h3>
|
||||||
<ol class="toptrends-list">
|
<ol class="toptrends-list">
|
||||||
<!-- use "follow-suggestion-template" here -->
|
<!-- use "follow-suggestion-template" here -->
|
||||||
</ol>
|
</ol>
|
||||||
@ -185,8 +185,8 @@
|
|||||||
</h2>
|
</h2>
|
||||||
<!-- Tabs to switch between promoted post and normal posts-->
|
<!-- Tabs to switch between promoted post and normal posts-->
|
||||||
<ul class="promoted-posts-only promoted selectable_theme theme_nin">
|
<ul class="promoted-posts-only promoted selectable_theme theme_nin">
|
||||||
<li class="normal-posts active">Normal posts</li>
|
<li class="normal-posts active"><span>Normal posts</span></li>
|
||||||
<li class="promoted-posts disabled">Promoted posts</li>
|
<li class="promoted-posts disabled"><span>Promoted posts</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
<!-- Post area on top of postboard -->
|
<!-- Post area on top of postboard -->
|
||||||
<div id="postboard-top" class=" selectable_theme theme_nin">
|
<div id="postboard-top" class=" selectable_theme theme_nin">
|
||||||
|
@ -125,6 +125,9 @@ function openProfileModal(e)
|
|||||||
unfollow(username);
|
unfollow(username);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$(".tox-ctc").attr("title", polyglot.t("Copy to clipboard"));
|
||||||
|
$(".bitmessage-ctc").attr("title", polyglot.t("Copy to clipboard"));
|
||||||
}
|
}
|
||||||
|
|
||||||
function newHashtagModal(hashtag) {
|
function newHashtagModal(hashtag) {
|
||||||
@ -1111,7 +1114,7 @@ function convert2Unicodes(s, ta) {
|
|||||||
|
|
||||||
if (unicodeConversionStack.length > 0){
|
if (unicodeConversionStack.length > 0){
|
||||||
var ub = ta.closest(".post-area-new").find(".undo-unicode");
|
var ub = ta.closest(".post-area-new").find(".undo-unicode");
|
||||||
ub.text("undo: " + unicodeConversionStack[0].u);
|
ub.text(polyglot.t("undo") + ": " + unicodeConversionStack[0].u);
|
||||||
$.MAL.enableButton(ub);
|
$.MAL.enableButton(ub);
|
||||||
} else {
|
} else {
|
||||||
$.MAL.disableButton(ta.closest(".post-area-new").find(".undo-unicode"));
|
$.MAL.disableButton(ta.closest(".post-area-new").find(".undo-unicode"));
|
||||||
@ -1144,7 +1147,7 @@ function undoLastUnicode(e) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (unicodeConversionStack.length > 0)
|
if (unicodeConversionStack.length > 0)
|
||||||
$(this).text("undo: " + unicodeConversionStack[0].u);
|
$(this).text(polyglot.t("undo") + ": " + unicodeConversionStack[0].u);
|
||||||
else
|
else
|
||||||
$.MAL.disableButton($(this));
|
$.MAL.disableButton($(this));
|
||||||
|
|
||||||
|
@ -226,11 +226,31 @@ if(preferredLanguage == "en"){
|
|||||||
"follows you": "follows you",
|
"follows you": "follows you",
|
||||||
"Show conversation": "Show conversation",
|
"Show conversation": "Show conversation",
|
||||||
"Mark all as read": "Mark all as read",
|
"Mark all as read": "Mark all as read",
|
||||||
"show_more_count": "%{count} more...",
|
"show_more_count": "%{smart_count} more...",
|
||||||
"hide": "hide",
|
"hide": "hide",
|
||||||
"Show more in this conversation...": "Show more in this conversation...",
|
"Show more in this conversation...": "Show more in this conversation...",
|
||||||
"conversation_title": "Conversation of @%{username}",
|
"conversation_title": "Conversation of @%{username}",
|
||||||
"copy_to_clipboard": "Press Ctrl/Cmd+C to copy then Enter to close"
|
"copy_to_clipboard": "Press Ctrl/Cmd+C to copy then Enter to close",
|
||||||
|
"Normal posts": "Normal posts",
|
||||||
|
"Promoted posts": "Promoted posts",
|
||||||
|
"Messages": "Messages",
|
||||||
|
"Edit profile": "Edit profile",
|
||||||
|
"Top Trends": "Top Trends",
|
||||||
|
"twisted again by": "twisted again by",
|
||||||
|
"undo": "undo",
|
||||||
|
"Are you sure you want to exit the daemon?\nThe Twister client will stop working.": "Are you sure you want to exit the daemon?\nThe Twister client will stop working.",
|
||||||
|
"Daemon exited...": "Daemon exited...",
|
||||||
|
"Secret Key": "Secret Key",
|
||||||
|
"Copy to clipboard": "Copy to clipboard",
|
||||||
|
"Full name here": "Full name here",
|
||||||
|
"Describe yourself": "Describe yourself",
|
||||||
|
"Location": "Location",
|
||||||
|
"website": "website",
|
||||||
|
"Tox address": "Tox address",
|
||||||
|
"Bitmessage address": "Bitmessage address",
|
||||||
|
"Language": "Language",
|
||||||
|
"Sound": "Sound",
|
||||||
|
"Users": "Users",
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
if(preferredLanguage == "es"){
|
if(preferredLanguage == "es"){
|
||||||
@ -1875,7 +1895,7 @@ if(preferredLanguage == "tr"){
|
|||||||
"follows you": "seni takip ediyor",
|
"follows you": "seni takip ediyor",
|
||||||
"Show conversation": "Sohbeti göster",
|
"Show conversation": "Sohbeti göster",
|
||||||
"Mark all as read": "hepsini okundu olarak işaretle",
|
"Mark all as read": "hepsini okundu olarak işaretle",
|
||||||
"show_more_count": "%{count} tane daha...",
|
"show_more_count": "%{smart_count} tane daha...",
|
||||||
"hide": "gizle",
|
"hide": "gizle",
|
||||||
"Show more in this conversation...": "Sohbetin tamamını göster...",
|
"Show more in this conversation...": "Sohbetin tamamını göster...",
|
||||||
"conversation_title": "@%{username} kullanıcısının bir sohbeti",
|
"conversation_title": "@%{username} kullanıcısının bir sohbeti",
|
||||||
|
@ -103,18 +103,22 @@ function verifyUserAlreadyInBlockchain()
|
|||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
if( !newUserWarnDisplayed ) {
|
if( !newUserWarnDisplayed ) {
|
||||||
alert("Other peers have not yet accepted this new user.\n" +
|
alert(polyglot.t("user_not_yet_accepted"));
|
||||||
"Unfortunately it is not possible to save profile\n" +
|
|
||||||
"or send any posts in this state.\n\n" +
|
|
||||||
"Please wait a few minutes to continue.\n\n" +
|
|
||||||
"The 'Save Changes' will be automatically enabled\n" +
|
|
||||||
"when the process completes. (I promise this is\n"+
|
|
||||||
"the last time you will have to wait before using\n" +
|
|
||||||
"twister).\n\n" +
|
|
||||||
"Tip: choose your avatar in the meantime!");
|
|
||||||
newUserWarnDisplayed = true;
|
newUserWarnDisplayed = true;
|
||||||
}
|
}
|
||||||
setTimeout("verifyUserAlreadyInBlockchain()", 5000);
|
setTimeout("verifyUserAlreadyInBlockchain()", 5000);
|
||||||
}
|
}
|
||||||
}, {} );
|
}, {} );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function localizePlaceholders()
|
||||||
|
{
|
||||||
|
$(".input-name").attr("placeholder",polyglot.t("Full name here"));
|
||||||
|
$(".input-description").attr("placeholder",polyglot.t("Describe yourself"));
|
||||||
|
$(".input-city").attr("placeholder",polyglot.t("Location"));
|
||||||
|
$(".input-website").attr("placeholder",polyglot.t("website"));
|
||||||
|
$(".input-tox").attr("placeholder",polyglot.t("Tox address"));
|
||||||
|
$(".input-bitmessage").attr("placeholder",polyglot.t("Bitmessage address"));
|
||||||
|
}
|
||||||
|
|
||||||
|
$(document).ready(localizePlaceholders);
|
||||||
|
@ -98,7 +98,7 @@ var MAL = function()
|
|||||||
var newTweetsBarMenu = $(".userMenu").find(".menu-news"); // added for home menu entry
|
var newTweetsBarMenu = $(".userMenu").find(".menu-news"); // added for home menu entry
|
||||||
if( newPosts ) {
|
if( newPosts ) {
|
||||||
document.title = "(" + String(newPosts) + ") twister";
|
document.title = "(" + String(newPosts) + ") twister";
|
||||||
newTweetsBar.text(String(newPosts) + " new posts");
|
newTweetsBar.text(polyglot.t("new_posts", newPosts));
|
||||||
newTweetsBar.fadeIn("slow");
|
newTweetsBar.fadeIn("slow");
|
||||||
newTweetsBarMenu.text(String(newPosts));
|
newTweetsBarMenu.text(String(newPosts));
|
||||||
newTweetsBarMenu.addClass("show");
|
newTweetsBarMenu.addClass("show");
|
||||||
|
@ -105,6 +105,7 @@ var TwisterOptions = function()
|
|||||||
$('#language').val($.Options.getOption('locLang','auto'))
|
$('#language').val($.Options.getOption('locLang','auto'))
|
||||||
$('#language').on('change', function(){
|
$('#language').on('change', function(){
|
||||||
$.Options.setOption('locLang', $(this).val());
|
$.Options.setOption('locLang', $(this).val());
|
||||||
|
location.reload();
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -347,3 +348,14 @@ var TwisterOptions = function()
|
|||||||
|
|
||||||
jQuery.Options = new TwisterOptions;
|
jQuery.Options = new TwisterOptions;
|
||||||
|
|
||||||
|
function localizeLabels()
|
||||||
|
{
|
||||||
|
$("label[for=tab_language]").text(polyglot.t("Language"));
|
||||||
|
$("label[for=t-2]").text(polyglot.t("Theme"));
|
||||||
|
$("label[for=t-3]").text(polyglot.t("Sound"));
|
||||||
|
$("label[for=t-4]").text(polyglot.t("Keys"));
|
||||||
|
$("label[for=t-5]").text(polyglot.t("Postboard"));
|
||||||
|
$("label[for=t-6]").text(polyglot.t("Users"));
|
||||||
|
}
|
||||||
|
|
||||||
|
$(document).ready(localizeLabels);
|
||||||
|
@ -477,7 +477,7 @@ function getWhoFollows(username, item) {
|
|||||||
fillWhoFollows(list, item, 0, (list.length > 5 ? 5 : list.length));
|
fillWhoFollows(list, item, 0, (list.length > 5 ? 5 : list.length));
|
||||||
|
|
||||||
if (list.length > 5) {
|
if (list.length > 5) {
|
||||||
var more_link = $('<a class="show-more-followers">' + polyglot.t('show_more_count', {'count': list.length - 5}) + '</a>');
|
var more_link = $('<a class="show-more-followers">' + polyglot.t('show_more_count', {'smart_count': list.length - 5}) + '</a>');
|
||||||
more_link.on('click', function() {
|
more_link.on('click', function() {
|
||||||
fillWhoFollows(list, item, 5, list.length - 5);
|
fillWhoFollows(list, item, 5, list.length - 5);
|
||||||
|
|
||||||
|
@ -222,7 +222,7 @@ function setSpamMsg() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function exitDaemon() {
|
function exitDaemon() {
|
||||||
if (confirm('Are you sure you want to exit the daemon?\nThe Twister client will stop working.')) {
|
if (confirm(polyglot.t("Are you sure you want to exit the daemon?\nThe Twister client will stop working."))) {
|
||||||
$( ".terminate-daemon").text("Exiting...");
|
$( ".terminate-daemon").text("Exiting...");
|
||||||
$( ".terminate-daemon").addClass("disabled");
|
$( ".terminate-daemon").addClass("disabled");
|
||||||
$.MAL.disableButton( $( ".terminate-daemon") );
|
$.MAL.disableButton( $( ".terminate-daemon") );
|
||||||
|
@ -55,7 +55,7 @@
|
|||||||
<h2> twister login </h2>
|
<h2> twister login </h2>
|
||||||
|
|
||||||
<div class="module">
|
<div class="module">
|
||||||
<p> Existing local users </p>
|
<p> <span>Existing local users</span> </p>
|
||||||
<div>
|
<div>
|
||||||
<select class="local-usernames login-user">
|
<select class="local-usernames login-user">
|
||||||
</select>
|
</select>
|
||||||
@ -66,7 +66,7 @@
|
|||||||
<!-- <span> Or... </span> -->
|
<!-- <span> Or... </span> -->
|
||||||
|
|
||||||
<div class="module">
|
<div class="module">
|
||||||
<p> Create a new user </p>
|
<p> <span>Create a new user</span> </p>
|
||||||
<div>
|
<div>
|
||||||
<input class="new-username" type="textbox" placeholder="Type nickname here" cols="16" rows="1"></input>
|
<input class="new-username" type="textbox" placeholder="Type nickname here" cols="16" rows="1"></input>
|
||||||
<button class="check-availability">Check availability</button>
|
<button class="check-availability">Check availability</button>
|
||||||
@ -81,11 +81,11 @@
|
|||||||
|
|
||||||
<div class="module">
|
<div class="module">
|
||||||
<div>
|
<div>
|
||||||
<p> Import secret key </p>
|
<p> <span>Import secret key</span> </p>
|
||||||
<input class="secret-key-import" type="textbox" placeholder="52-characters secret" size="52" rows="1"></input>
|
<input class="secret-key-import" type="textbox" placeholder="52-characters secret" size="52" rows="1"></input>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<p class="with-nickname"> With nickname </p>
|
<p class="with-nickname"> <span>With nickname</span> </p>
|
||||||
<input class="username-import" type="textbox" placeholder="Type nickname here" size="16" rows="1"></input>
|
<input class="username-import" type="textbox" placeholder="Type nickname here" size="16" rows="1"></input>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
@ -185,7 +185,7 @@
|
|||||||
<p class="label"> Posts display </p>
|
<p class="label"> Posts display </p>
|
||||||
<div>
|
<div>
|
||||||
<form action="" id="lineFeedsOpt">
|
<form action="" id="lineFeedsOpt">
|
||||||
<p>Line feeds</p>
|
<p class="label">Line feeds</p>
|
||||||
<select name="" id="displayLineFeeds">
|
<select name="" id="displayLineFeeds">
|
||||||
<option value="disable">Ignore</option>
|
<option value="disable">Ignore</option>
|
||||||
<option value="enable">Display</option>
|
<option value="enable">Display</option>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user