mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-02-04 11:04:29 +00:00
Merge pull request #193 from X-NicON/fix-bugs
Fix bug localization page titles
This commit is contained in:
commit
15c0c423fb
@ -1307,7 +1307,7 @@ if(preferredLanguage == "ru"){
|
|||||||
"Messages": "Сообщения",
|
"Messages": "Сообщения",
|
||||||
"Edit profile": "Изменить профиль",
|
"Edit profile": "Изменить профиль",
|
||||||
"Top Trends": "Топ Трендов",
|
"Top Trends": "Топ Трендов",
|
||||||
"twisted again by": "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.": "Вы уверены, что хотите "+
|
||||||
"выключить демон?\nTwister клиент перестанет работать.",
|
"выключить демон?\nTwister клиент перестанет работать.",
|
||||||
@ -2247,7 +2247,10 @@ var fixedLabels = [
|
|||||||
".login input",
|
".login input",
|
||||||
|
|
||||||
//options page
|
//options page
|
||||||
"option"
|
"option",
|
||||||
|
|
||||||
|
//page titles
|
||||||
|
"title"
|
||||||
];
|
];
|
||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
for(var i=0;i<fixedLabels.length;i++){
|
for(var i=0;i<fixedLabels.length;i++){
|
||||||
@ -2256,8 +2259,8 @@ $(document).ready(function(){
|
|||||||
var content = $.trim($(elems[e]).text());
|
var content = $.trim($(elems[e]).text());
|
||||||
if(wordset[content]){
|
if(wordset[content]){
|
||||||
$(elems[e]).text( polyglot.t(content) );
|
$(elems[e]).text( polyglot.t(content) );
|
||||||
}
|
|
||||||
else{
|
}else{
|
||||||
// uncomment to see translations not found
|
// uncomment to see translations not found
|
||||||
//console.log(content);
|
//console.log(content);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user