diff --git a/lib/view_model/transaction_details_view_model.dart b/lib/view_model/transaction_details_view_model.dart index 41b4e0c60..6de28f238 100644 --- a/lib/view_model/transaction_details_view_model.dart +++ b/lib/view_model/transaction_details_view_model.dart @@ -142,7 +142,7 @@ abstract class TransactionDetailsViewModelBase with Store { final type = wallet.type; items.add(BlockExplorerListItem( - title: "View in Block Explorer", + title: S.current.view_in_block_explorer, value: _explorerDescription(type), onTap: () => launch(_explorerUrl(type, tx.id)))); @@ -191,13 +191,13 @@ abstract class TransactionDetailsViewModelBase with Store { String _explorerDescription(WalletType type) { switch (type) { case WalletType.monero: - return 'View Transaction on XMRChain.net'; + return S.current.view_transaction_on + 'XMRChain.net'; case WalletType.bitcoin: - return 'View Transaction on Blockchain.com'; + return S.current.view_transaction_on + 'Blockchain.com'; case WalletType.litecoin: - return 'View Transaction on Blockchair.com'; + return S.current.view_transaction_on + 'Blockchair.com'; case WalletType.haven: - return 'View Transaction on explorer.havenprotocol.org'; + return S.current.view_transaction_on + 'explorer.havenprotocol.org'; default: return ''; } diff --git a/res/values/strings_de.arb b/res/values/strings_de.arb index 306cc9e8b..a501cd72e 100644 --- a/res/values/strings_de.arb +++ b/res/values/strings_de.arb @@ -443,6 +443,8 @@ "enter_your_note" : "Geben Sie Ihre Bemerkung ein…", "note_optional" : "Bemerkung (optional)", "note_tap_to_change" : "Bemerkung (zum Ändern tippen)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "Transaktionsschlüssel", "confirmations" : "Bestätigungen", "recipient_address" : "Empfängeradresse", diff --git a/res/values/strings_en.arb b/res/values/strings_en.arb index 42f3e05f2..dfe3b84f3 100644 --- a/res/values/strings_en.arb +++ b/res/values/strings_en.arb @@ -443,6 +443,8 @@ "enter_your_note" : "Enter your note…", "note_optional" : "Note (optional)", "note_tap_to_change" : "Note (tap to change)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "Transaction Key", "confirmations" : "Confirmations", "recipient_address" : "Recipient address", @@ -529,4 +531,4 @@ "search": "Search", "new_template" : "New Template", "electrum_address_disclaimer": "We generate new addresses each time you use one, but previous addresses continue to work" -} \ No newline at end of file +} diff --git a/res/values/strings_es.arb b/res/values/strings_es.arb index 8e00ddcdb..a033025f3 100644 --- a/res/values/strings_es.arb +++ b/res/values/strings_es.arb @@ -443,6 +443,8 @@ "enter_your_note" : "Ingresa tu nota…", "note_optional" : "Nota (opcional)", "note_tap_to_change" : "Nota (toque para cambiar)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "Clave de transacción", "confirmations" : "Confirmaciones", "recipient_address" : "Dirección del receptor", diff --git a/res/values/strings_fr.arb b/res/values/strings_fr.arb index 224ee7112..f4311a070 100644 --- a/res/values/strings_fr.arb +++ b/res/values/strings_fr.arb @@ -441,6 +441,8 @@ "enter_your_note" : "Entrez votre note…", "note_optional" : "Note (optionnelle)", "note_tap_to_change" : "Note (appuyez pour changer)", + "view_in_block_explorer" : "Voir dans l'Explorateur de Blocs", + "view_transaction_on" : "Voir la Transaction sur ", "transaction_key" : "Clef de Transaction", "confirmations" : "Confirmations", "recipient_address" : "Adresse bénéficiaire", diff --git a/res/values/strings_hi.arb b/res/values/strings_hi.arb index bad0ae879..4efe457c3 100644 --- a/res/values/strings_hi.arb +++ b/res/values/strings_hi.arb @@ -443,6 +443,8 @@ "enter_your_note" : "अपना नोट दर्ज करें ...", "note_optional" : "नोट (वैकल्पिक)", "note_tap_to_change" : "नोट (टैप टू चेंज)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "लेन-देन की", "confirmations" : "पुष्टिकरण", "recipient_address" : "प्राप्तकर्ता का पता", diff --git a/res/values/strings_hr.arb b/res/values/strings_hr.arb index 03e7708bb..95004d689 100644 --- a/res/values/strings_hr.arb +++ b/res/values/strings_hr.arb @@ -443,6 +443,8 @@ "enter_your_note" : "Unesite svoju poruku…", "note_optional" : "Poruka (nije obvezno)", "note_tap_to_change" : "Poruka (dodirnite za promjenu)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "Transakcijski ključ", "confirmations" : "Potvrde", "recipient_address" : "Primateljeva adresa", diff --git a/res/values/strings_it.arb b/res/values/strings_it.arb index e92f4da5f..a65078b3e 100644 --- a/res/values/strings_it.arb +++ b/res/values/strings_it.arb @@ -443,6 +443,8 @@ "enter_your_note" : "Inserisci la tua nota…", "note_optional" : "Nota (opzionale)", "note_tap_to_change" : "Nota (clicca per cambiare)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "Chiave Transazione", "confirmations" : "Conferme", "recipient_address" : "Indirizzo di destinazione", diff --git a/res/values/strings_ja.arb b/res/values/strings_ja.arb index 734c769df..5cb3039c1 100644 --- a/res/values/strings_ja.arb +++ b/res/values/strings_ja.arb @@ -443,6 +443,8 @@ "enter_your_note" : "メモを入力してください…", "note_optional" : "注(オプション)", "note_tap_to_change" : "注(タップして変更)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "トランザクションキー", "confirmations" : "確認", "recipient_address" : "受信者のアドレス", diff --git a/res/values/strings_ko.arb b/res/values/strings_ko.arb index cd6712288..db099be63 100644 --- a/res/values/strings_ko.arb +++ b/res/values/strings_ko.arb @@ -443,6 +443,8 @@ "enter_your_note" : "메모를 입력하세요…", "note_optional" : "참고 (선택 사항)", "note_tap_to_change" : "메모 (변경하려면 탭하세요)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "거래 키", "confirmations" : "확인", "recipient_address" : "받는 사람 주소", diff --git a/res/values/strings_nl.arb b/res/values/strings_nl.arb index 365858b8b..207979462 100644 --- a/res/values/strings_nl.arb +++ b/res/values/strings_nl.arb @@ -443,6 +443,8 @@ "enter_your_note" : "Voer uw notitie in ...", "note_optional" : "Opmerking (optioneel)", "note_tap_to_change" : "Opmerking (tik om te wijzigen)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "Transactiesleutel", "confirmations" : "Bevestigingen", "recipient_address" : "Adres ontvanger", diff --git a/res/values/strings_pl.arb b/res/values/strings_pl.arb index 97101bfd7..3da2cc94d 100644 --- a/res/values/strings_pl.arb +++ b/res/values/strings_pl.arb @@ -446,6 +446,8 @@ "enter_your_note" : "Wpisz notatkę…", "note_optional" : "Notatka (opcjonalnie)", "note_tap_to_change" : "Notatka (dotknij, aby zmienić)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "Klucz transakcji", "confirmations" : "Potwierdzenia", "recipient_address" : "Adres odbiorcy", diff --git a/res/values/strings_pt.arb b/res/values/strings_pt.arb index db7369e56..d32e47bd0 100644 --- a/res/values/strings_pt.arb +++ b/res/values/strings_pt.arb @@ -443,6 +443,8 @@ "enter_your_note" : "Insira sua nota ...", "note_optional" : "Nota (opcional)", "note_tap_to_change" : "Nota (toque para alterar)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "Chave de transação", "confirmations" : "Confirmações", "recipient_address" : "Endereço do destinatário", diff --git a/res/values/strings_ru.arb b/res/values/strings_ru.arb index 2d685b801..78c67943a 100644 --- a/res/values/strings_ru.arb +++ b/res/values/strings_ru.arb @@ -443,6 +443,8 @@ "enter_your_note" : "Введите примечание…", "note_optional" : "Примечание (необязательно)", "note_tap_to_change" : "Примечание (нажмите для изменения)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "Ключ транзакции", "confirmations" : "Подтверждения", "recipient_address" : "Адрес получателя", diff --git a/res/values/strings_uk.arb b/res/values/strings_uk.arb index 9bf2d85c7..c2a96ab49 100644 --- a/res/values/strings_uk.arb +++ b/res/values/strings_uk.arb @@ -442,6 +442,8 @@ "enter_your_note" : "Введіть примітку…", "note_optional" : "Примітка (необов’язково)", "note_tap_to_change" : "Примітка (натисніть для зміни)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "Ключ транзакції", "confirmations" : "Підтвердження", "recipient_address" : "Адреса одержувача", diff --git a/res/values/strings_zh.arb b/res/values/strings_zh.arb index c55b7147d..43132041a 100644 --- a/res/values/strings_zh.arb +++ b/res/values/strings_zh.arb @@ -442,6 +442,8 @@ "enter_your_note" : "输入您的笔记...", "note_optional" : "注释(可选)", "note_tap_to_change" : "注释(轻按即可更改)", + "view_in_block_explorer" : "View in Block Explorer", + "view_transaction_on" : "View Transaction on ", "transaction_key" : "交易密码", "confirmations" : "确认", "recipient_address" : "收件人地址",