Add translations for reload confirmation (#7945)
* Add translations for reload confirmation * Update app_languages.php
This commit is contained in:
@@ -702,6 +702,33 @@ $text['confirm-toggle']['ja-jp'] = "あなたは本当にこれをTOGGLEした
|
||||
$text['confirm-toggle']['ko-kr'] = "정말 토글하시겠습니까?";
|
||||
$text['confirm-toggle']['ka-ge'] = "ნამდვილად გსურთ გადართვა?";
|
||||
|
||||
$text['confirm-reload']['en-us'] = "Do you really want to RELOAD this?";
|
||||
$text['confirm-reload']['en-gb'] = "Do you really want to RELOAD this?";
|
||||
$text['confirm-reload']['ar-eg'] = "هل تريد حقًا إعادة تحميل هذا؟";
|
||||
$text['confirm-reload']['de-at'] = "Möchten Sie dies wirklich NEU LADEN?";
|
||||
$text['confirm-reload']['de-ch'] = "Möchten Sie dies wirklich NEU LADEN?";
|
||||
$text['confirm-reload']['de-de'] = "Möchten Sie dies wirklich NEU LADEN?";
|
||||
$text['confirm-reload']['el-gr'] = "Θέλετε πραγματικά να ανανεώσετε αυτό;";
|
||||
$text['confirm-reload']['es-cl'] = "¿Realmente deseas recargar esto?";
|
||||
$text['confirm-reload']['es-mx'] = "¿Realmente deseas recargar esto?";
|
||||
$text['confirm-reload']['fr-ca'] = "Voulez-vous vraiment recharger ceci ?";
|
||||
$text['confirm-reload']['fr-fr'] = "Voulez-vous vraiment recharger ceci ?";
|
||||
$text['confirm-reload']['he-il'] = "האם אתה באמת רוצה לטעון את זה מחדש?";
|
||||
$text['confirm-reload']['it-it'] = "Vuoi davvero ricaricare questo?";
|
||||
$text['confirm-reload']['nl-nl'] = "Wil je dit echt opnieuw laden?";
|
||||
$text['confirm-reload']['pl-pl'] = "Czy na pewno chcesz to ponownie załadować?";
|
||||
$text['confirm-reload']['pt-br'] = "Você realmente deseja recarregar isso?";
|
||||
$text['confirm-reload']['pt-pt'] = "Deseja realmente recarregar isto?";
|
||||
$text['confirm-reload']['ro-ro'] = "Chiar doriți să reîncărcați acest lucru?";
|
||||
$text['confirm-reload']['ru-ru'] = "Вы действительно хотите перезагрузить это?";
|
||||
$text['confirm-reload']['sv-se'] = "Vill du verkligen ladda om detta?";
|
||||
$text['confirm-reload']['uk-ua'] = "Ви дійсно хочете перезавантажити це?";
|
||||
$text['confirm-reload']['tr-tr'] = "Bunu gerçekten yeniden yüklemek istiyor musunuz?";
|
||||
$text['confirm-reload']['zh-cn'] = "你真的想重新加载这个吗?";
|
||||
$text['confirm-reload']['ja-jp'] = "本当にこれを再読み込みますか?";
|
||||
$text['confirm-reload']['ko-kr'] = "정말로 다시 로드하시겠습니까?";
|
||||
$text['confirm-reload']['ka-ge'] = "ნამდვილად გსურთ ახლიდან ჩატვირება?";
|
||||
|
||||
$text['confirm-unassign']['en-us'] = "Do you really want to UNASSIGN this?";
|
||||
$text['confirm-unassign']['en-gb'] = "Do you really want to UNASSIGN this?";
|
||||
$text['confirm-unassign']['ar-eg'] = "هل تريد حقا أن تفصل هذا؟";
|
||||
|
||||
@@ -72,9 +72,14 @@ class modal {
|
||||
$array['title'] = $text['modal_title-confirmation'];
|
||||
$array['message'] = $text['confirm-delete'];
|
||||
break;
|
||||
case 'reload':
|
||||
$array['title'] = $text['modal_title-confirmation'];
|
||||
$array['message'] = $text['confirm-reload'];
|
||||
break;
|
||||
case 'unassign':
|
||||
$array['title'] = $text['modal_title-confirmation'];
|
||||
$array['message'] = $text['confirm-unassign'];
|
||||
break;
|
||||
default: //general
|
||||
$array['title'] = !empty($array['title']) ? $array['title'] : $text['modal_title-confirmation'];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user