1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-03-12 14:16:06 +00:00

chore(eckhart): Fix translation pattern

This commit is contained in:
Lukas Bielesch 2025-03-04 08:03:29 +01:00 committed by obrusvit
parent 1a755fb70c
commit 0387c00efb
2 changed files with 3 additions and 3 deletions

View File

@ -851,7 +851,7 @@ pub enum TranslatedString {
reset__recovery_share_title_template = 567, // "Recovery share #{0}" reset__recovery_share_title_template = 567, // "Recovery share #{0}"
reset__required_number_of_groups = 568, // "The required number of groups for recovery." reset__required_number_of_groups = 568, // "The required number of groups for recovery."
reset__select_correct_word = 569, // "Select the correct word for each position." reset__select_correct_word = 569, // "Select the correct word for each position."
reset__select_word_template = 570, // {"Bolt": "Select {0} word", "Caesar": "Select {0} word", "Delizia": "Select {0} word", "Eckhart": "Select word no. {0} from your wallet backup"} reset__select_word_template = 570, // {"Bolt": "Select {0} word", "Caesar": "Select {0} word", "Delizia": "Select {0} word", "Eckhart": "Select word #{0} from your wallet backup"}
reset__select_word_x_of_y_template = 571, // "Select word {0} of {1}:" reset__select_word_x_of_y_template = 571, // "Select word {0} of {1}:"
reset__set_it_to_count_template = 572, // "Set it to {0} and you will need " reset__set_it_to_count_template = 572, // "Set it to {0} and you will need "
reset__share_checked_successfully_template = 573, // "Share #{0} checked successfully." reset__share_checked_successfully_template = 573, // "Share #{0} checked successfully."
@ -2275,7 +2275,7 @@ impl TranslatedString {
#[cfg(feature = "layout_delizia")] #[cfg(feature = "layout_delizia")]
Self::reset__select_word_template => "Select {0} word", Self::reset__select_word_template => "Select {0} word",
#[cfg(feature = "layout_eckhart")] #[cfg(feature = "layout_eckhart")]
Self::reset__select_word_template => "Select word no. {0} from your wallet backup", Self::reset__select_word_template => "Select word #{0} from your wallet backup",
Self::reset__select_word_x_of_y_template => "Select word {0} of {1}:", Self::reset__select_word_x_of_y_template => "Select word {0} of {1}:",
Self::reset__set_it_to_count_template => "Set it to {0} and you will need ", Self::reset__set_it_to_count_template => "Set it to {0} and you will need ",
Self::reset__share_checked_successfully_template => "Share #{0} checked successfully.", Self::reset__share_checked_successfully_template => "Share #{0} checked successfully.",

View File

@ -692,7 +692,7 @@
"Bolt": "Select {0} word", "Bolt": "Select {0} word",
"Caesar": "Select {0} word", "Caesar": "Select {0} word",
"Delizia": "Select {0} word", "Delizia": "Select {0} word",
"Eckhart": "Select word no. {0} from your wallet backup" "Eckhart": "Select word #{0} from your wallet backup"
}, },
"reset__select_word_x_of_y_template": "Select word {0} of {1}:", "reset__select_word_x_of_y_template": "Select word {0} of {1}:",
"reset__set_it_to_count_template": "Set it to {0} and you will need ", "reset__set_it_to_count_template": "Set it to {0} and you will need ",