diff --git a/locales/de.yml b/locales/de.yml index 1be8874..c5d91db 100644 --- a/locales/de.yml +++ b/locales/de.yml @@ -28,6 +28,7 @@ light: Hell choose_file: Datei auswählen crash_report: Absturzbericht crash_report_warning: Anwendung wurde beim letzten Mal unerwartet geschlossen, Sie können den Absturzbericht mit Entwicklern teilen. +confirmation: Bestätigung wallets: await_conf_amount: Erwarte Bestätigung await_fin_amount: Warten auf die Fertigstellung @@ -287,7 +288,6 @@ network_settings: modal: cancel: Abbrechen save: Speichern - confirmation: Bestätigung add: Hinzufügen modal_exit: description: Sind Sie sicher, dass Sie die Anwendung beenden wollen? diff --git a/locales/en.yml b/locales/en.yml index 622e6a5..7c29472 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -28,6 +28,7 @@ light: Light choose_file: Choose file crash_report: Crash report crash_report_warning: Application closed unexpectedly last time, you can share crash report with developers. +confirmation: Confirmation wallets: await_conf_amount: Awaiting confirmation await_fin_amount: Awaiting finalization @@ -287,7 +288,6 @@ network_settings: modal: cancel: Cancel save: Save - confirmation: Confirmation add: Add modal_exit: description: Are you sure you want to quit the application? diff --git a/locales/fr.yml b/locales/fr.yml index e5bc04d..a546deb 100644 --- a/locales/fr.yml +++ b/locales/fr.yml @@ -28,6 +28,7 @@ light: Clair choose_file: Choisir un fichier crash_report: Rapport d'échec crash_report_warning: L'application s'est fermée de manière inattendue la dernière fois, vous pouvez partager un rapport d'incident avec les développeurs. +confirmation: Confirmation wallets: await_conf_amount: En attente de confirmation await_fin_amount: En attente de finalisation @@ -287,7 +288,6 @@ network_settings: modal: cancel: Annuler save: Sauvegarder - confirmation: Confirmation add: Ajouter modal_exit: description: "Êtes-vous sûr de vouloir quitter l'application ?" diff --git a/locales/ru.yml b/locales/ru.yml index da0ddf1..04611de 100644 --- a/locales/ru.yml +++ b/locales/ru.yml @@ -28,6 +28,7 @@ light: Светлая choose_file: Выбрать файл crash_report: Отчёт о сбое crash_report_warning: В прошлый раз приложение неожиданно закрылось, вы можете поделиться отчетом о сбое с разработчиками. +confirmation: Подтверждение wallets: await_conf_amount: Ожидает подтверждения await_fin_amount: Ожидает завершения @@ -287,7 +288,6 @@ network_settings: modal: cancel: Отмена save: Сохранить - confirmation: Подтверждение add: Добавить modal_exit: description: Вы уверены, что хотите выйти из приложения? diff --git a/locales/tr.yml b/locales/tr.yml index 8c07d3f..d7582a5 100644 --- a/locales/tr.yml +++ b/locales/tr.yml @@ -28,6 +28,7 @@ light: Isik choose_file: Dosya seçin crash_report: Ariza Raporu crash_report_warning: Uygulama beklenmedik bir sekilde kapandi son kez, kilitlenme raporunu gelistiricilerle paylasabilirsiniz. +confirmation: Onay wallets: await_conf_amount: Onay bekleniyor await_fin_amount: Tamamlanma bekleniyor @@ -287,7 +288,6 @@ network_settings: modal: cancel: Iptal save: Kaydet - confirmation: Onay add: Ekle modal_exit: description: Uygulamadan cikmak için exit, emin misiniz? diff --git a/src/gui/views/content.rs b/src/gui/views/content.rs index fc91ae0..0a1d4ae 100644 --- a/src/gui/views/content.rs +++ b/src/gui/views/content.rs @@ -201,7 +201,7 @@ impl Content { /// Show exit confirmation [`Modal`]. pub fn show_exit_modal() { Modal::new(Self::EXIT_CONFIRMATION_MODAL) - .title(t!("modal.confirmation")) + .title(t!("confirmation")) .show(); } diff --git a/src/gui/views/network/settings.rs b/src/gui/views/network/settings.rs index 7705d87..3bd83af 100644 --- a/src/gui/views/network/settings.rs +++ b/src/gui/views/network/settings.rs @@ -212,7 +212,7 @@ fn reset_settings_ui(ui: &mut egui::Ui) { // Show modal to confirm settings reset. Modal::new(RESET_SETTINGS_MODAL) .position(ModalPosition::Center) - .title(t!("modal.confirmation")) + .title(t!("confirmation")) .show(); }); diff --git a/src/gui/views/wallets/wallet/settings/recovery.rs b/src/gui/views/wallets/wallet/settings/recovery.rs index e1541cd..862b9e5 100644 --- a/src/gui/views/wallets/wallet/settings/recovery.rs +++ b/src/gui/views/wallets/wallet/settings/recovery.rs @@ -127,7 +127,7 @@ impl RecoverySettings { View::colored_text_button(ui, delete_text, Colors::red(), Colors::button(), || { Modal::new(DELETE_CONFIRMATION_MODAL) .position(ModalPosition::Center) - .title(t!("modal.confirmation")) + .title(t!("confirmation")) .show(); }); ui.add_space(8.0); diff --git a/src/gui/views/wallets/wallet/txs/content.rs b/src/gui/views/wallets/wallet/txs/content.rs index 3c5a268..927add1 100644 --- a/src/gui/views/wallets/wallet/txs/content.rs +++ b/src/gui/views/wallets/wallet/txs/content.rs @@ -223,7 +223,7 @@ impl WalletTransactions { // Show transaction cancellation confirmation modal. Modal::new(CANCEL_TX_CONFIRMATION_MODAL) .position(ModalPosition::Center) - .title(t!("modal.confirmation")) + .title(t!("confirmation")) .show(); }); }