mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
L10n: Added a localization for dialogs
This commit is contained in:
parent
958846a86c
commit
92146b8e47
3 changed files with 77 additions and 48 deletions
|
@ -47,9 +47,9 @@ u("#_photoDelete").on("click", function(e) {
|
||||||
formHtml += "</form>";
|
formHtml += "</form>";
|
||||||
u("body").append(formHtml);
|
u("body").append(formHtml);
|
||||||
|
|
||||||
MessageBox("Внимание", "Удаление нельзя отменить. Вы действительно уверены в том что хотите сделать?", [
|
MessageBox(tr('warning'), tr('question_confirm'), [
|
||||||
"Да",
|
tr('yes'),
|
||||||
"Нет"
|
tr('no')
|
||||||
], [
|
], [
|
||||||
(function() {
|
(function() {
|
||||||
u("#tmpPhDelF").nodes[0].submit();
|
u("#tmpPhDelF").nodes[0].submit();
|
||||||
|
@ -70,9 +70,9 @@ u("#_noteDelete").on("click", function(e) {
|
||||||
formHtml += "</form>";
|
formHtml += "</form>";
|
||||||
u("body").append(formHtml);
|
u("body").append(formHtml);
|
||||||
|
|
||||||
MessageBox("Внимание", "Удаление нельзя отменить. Вы действительно уверены в том что хотите сделать?", [
|
MessageBox(tr('warning'), tr('question_confirm'), [
|
||||||
"Да",
|
tr('yes'),
|
||||||
"Нет"
|
tr('no')
|
||||||
], [
|
], [
|
||||||
(function() {
|
(function() {
|
||||||
u("#tmpPhDelF").nodes[0].submit();
|
u("#tmpPhDelF").nodes[0].submit();
|
||||||
|
@ -88,9 +88,9 @@ u("#_noteDelete").on("click", function(e) {
|
||||||
}); //END ONREADY DECLS
|
}); //END ONREADY DECLS
|
||||||
|
|
||||||
function repostPost(id, hash) {
|
function repostPost(id, hash) {
|
||||||
uRepostMsgTxt = "Ваш комментарий: <textarea id='uRepostMsgInput_"+id+"'></textarea><br/><br/>";
|
uRepostMsgTxt = tr('your_comment') + ": <textarea id='uRepostMsgInput_"+id+"'></textarea><br/><br/>";
|
||||||
|
|
||||||
MessageBox("Поделиться", uRepostMsgTxt, ["Отправить", "Отменить"], [
|
MessageBox(tr('share'), uRepostMsgTxt, [tr('send'), tr('cancel')], [
|
||||||
(function() {
|
(function() {
|
||||||
text = document.querySelector("#uRepostMsgInput_"+id).value;
|
text = document.querySelector("#uRepostMsgInput_"+id).value;
|
||||||
hash = encodeURIComponent(hash);
|
hash = encodeURIComponent(hash);
|
||||||
|
@ -99,10 +99,10 @@ function repostPost(id, hash) {
|
||||||
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
|
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
|
||||||
xhr.onload = (function() {
|
xhr.onload = (function() {
|
||||||
if(xhr.responseText.indexOf("wall_owner") === -1)
|
if(xhr.responseText.indexOf("wall_owner") === -1)
|
||||||
MessageBox("Помилка", "Не удалось поделиться записью...", ["OK"], [Function.noop]);
|
MessageBox(tr('error'), tr('error_repost_fail'), tr('ok'), [Function.noop]);
|
||||||
else {
|
else {
|
||||||
let jsonR = JSON.parse(xhr.responseText);
|
let jsonR = JSON.parse(xhr.responseText);
|
||||||
NewNotification("Успешно поделились", "Запись появится на вашей стене. Нажмите на уведомление, чтобы перейти к своей стене.", null, () => {window.location.href = "/wall" + jsonR.wall_owner});
|
NewNotification(tr('information_-1'), tr('shared_succ'), null, () => {window.location.href = "/wall" + jsonR.wall_owner});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
xhr.send('text=' + encodeURI(text));
|
xhr.send('text=' + encodeURI(text));
|
||||||
|
@ -119,7 +119,7 @@ function setClubAdminComment(clubId, adminId, hash) {
|
||||||
<input type="hidden" name="removeComment" id="uClubAdminCommentRemoveCommentInput_${clubId}_${adminId}" value="0">
|
<input type="hidden" name="removeComment" id="uClubAdminCommentRemoveCommentInput_${clubId}_${adminId}" value="0">
|
||||||
<textarea name="comment" id="uClubAdminCommentTextArea_${clubId}_${adminId}"></textarea><br><br>
|
<textarea name="comment" id="uClubAdminCommentTextArea_${clubId}_${adminId}"></textarea><br><br>
|
||||||
</form>
|
</form>
|
||||||
`, ["Изменить", "Отменить"], [
|
`, [tr('edit_action'), tr('cancel')], [
|
||||||
() => {
|
() => {
|
||||||
if (document.querySelector(`#uClubAdminCommentTextArea_${clubId}_${adminId}`).value === "") {
|
if (document.querySelector(`#uClubAdminCommentTextArea_${clubId}_${adminId}`).value === "") {
|
||||||
document.querySelector(`#uClubAdminCommentRemoveCommentInput_${clubId}_${adminId}`).value = "1";
|
document.querySelector(`#uClubAdminCommentRemoveCommentInput_${clubId}_${adminId}`).value = "1";
|
||||||
|
|
|
@ -541,6 +541,7 @@
|
||||||
"error_old_password" = "Old password does not match";
|
"error_old_password" = "Old password does not match";
|
||||||
"error_new_password" = "New password does not match";
|
"error_new_password" = "New password does not match";
|
||||||
"error_shorturl_incorrect" = "The short address has an incorrect format.";
|
"error_shorturl_incorrect" = "The short address has an incorrect format.";
|
||||||
|
"error_repost_fail" = "Failed to share post";
|
||||||
|
|
||||||
"forbidden" = "Access error";
|
"forbidden" = "Access error";
|
||||||
"forbidden_comment" = "This user\'s privacy settings do not allow you to look at his page.";
|
"forbidden_comment" = "This user\'s privacy settings do not allow you to look at his page.";
|
||||||
|
@ -551,6 +552,8 @@
|
||||||
"photo_saved" = "Photo saved";
|
"photo_saved" = "Photo saved";
|
||||||
"photo_saved_comment" = "New profile picture will appear on your page";
|
"photo_saved_comment" = "New profile picture will appear on your page";
|
||||||
|
|
||||||
|
"shared_succ" = "The post will appear on your wall. Click on the notification to go to your wall.";
|
||||||
|
|
||||||
/* Admin actions */
|
/* Admin actions */
|
||||||
|
|
||||||
"login_as" = "Login as $1";
|
"login_as" = "Login as $1";
|
||||||
|
@ -558,8 +561,20 @@
|
||||||
"ban_user_action" = "Ban user";
|
"ban_user_action" = "Ban user";
|
||||||
"warn_user_action" = "Warn user";
|
"warn_user_action" = "Warn user";
|
||||||
|
|
||||||
/* Paginator */
|
/* Paginator (deprecated) */
|
||||||
|
|
||||||
"paginator_back" = "Back";
|
"paginator_back" = "Back";
|
||||||
"paginator_page" = "Page $1";
|
"paginator_page" = "Page $1";
|
||||||
"paginator_next" = "Next";
|
"paginator_next" = "Next";
|
||||||
|
|
||||||
|
/* Dialogs */
|
||||||
|
|
||||||
|
"ok" = "OK";
|
||||||
|
"yes" = "Yes";
|
||||||
|
"no" = "No";
|
||||||
|
"cancel" = "Cancel";
|
||||||
|
"edit_action" = "Change";
|
||||||
|
|
||||||
|
"warning" = "Warning";
|
||||||
|
"question_confirm" = "This action can't be undone. Do you really wanna do it?";
|
||||||
|
|
||||||
|
|
|
@ -613,6 +613,7 @@
|
||||||
"error_old_password" = "Старый пароль не совпадает";
|
"error_old_password" = "Старый пароль не совпадает";
|
||||||
"error_new_password" = "Новые пароли не совпадает";
|
"error_new_password" = "Новые пароли не совпадает";
|
||||||
"error_shorturl_incorrect" = "Короткий адрес имеет некорректный формат.";
|
"error_shorturl_incorrect" = "Короткий адрес имеет некорректный формат.";
|
||||||
|
"error_repost_fail" = "Не удалось поделиться записью";
|
||||||
|
|
||||||
"forbidden" = "Ошибка доступа";
|
"forbidden" = "Ошибка доступа";
|
||||||
"forbidden_comment" = "Настройки приватности этого пользователя не разрешают вам смотреть на его страницу.";
|
"forbidden_comment" = "Настройки приватности этого пользователя не разрешают вам смотреть на его страницу.";
|
||||||
|
@ -623,6 +624,8 @@
|
||||||
"photo_saved" = "Фотография сохранена";
|
"photo_saved" = "Фотография сохранена";
|
||||||
"photo_saved_comment" = "Новое изображние профиля появится у вас на странице";
|
"photo_saved_comment" = "Новое изображние профиля появится у вас на странице";
|
||||||
|
|
||||||
|
"shared_succ" = "Запись появится на вашей стене. Нажмите на уведомление, чтобы перейти к своей стене.";
|
||||||
|
|
||||||
/* Admin actions */
|
/* Admin actions */
|
||||||
|
|
||||||
"login_as" = "Войти как $1";
|
"login_as" = "Войти как $1";
|
||||||
|
@ -630,8 +633,19 @@
|
||||||
"ban_user_action" = "Заблокировать пользователя";
|
"ban_user_action" = "Заблокировать пользователя";
|
||||||
"warn_user_action" = "Предупредить пользователя";
|
"warn_user_action" = "Предупредить пользователя";
|
||||||
|
|
||||||
/* Paginator */
|
/* Paginator (deprecated) */
|
||||||
|
|
||||||
"paginator_back" = "Назад";
|
"paginator_back" = "Назад";
|
||||||
"paginator_page" = "Страница $1";
|
"paginator_page" = "Страница $1";
|
||||||
"paginator_next" = "Дальше";
|
"paginator_next" = "Дальше";
|
||||||
|
|
||||||
|
/* Dialogs */
|
||||||
|
|
||||||
|
"ok" = "ОК";
|
||||||
|
"yes" = "Да";
|
||||||
|
"no" = "Нет";
|
||||||
|
"cancel" = "Отмена";
|
||||||
|
"edit_action" = "Изменить";
|
||||||
|
|
||||||
|
"warning" = "Внимание";
|
||||||
|
"question_confirm" = "Это действие нельзя отменить. Вы действительно уверены в том что хотите сделать?";
|
||||||
|
|
Loading…
Reference in a new issue