1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-19 05:58:09 +00:00

fix(core/translations): fix string order

[no changelog]

(cherry picked from commit 93fb415fe0)
This commit is contained in:
Ioan Bizău 2024-11-01 13:05:57 +01:00 committed by Martin Milata
parent 217239954d
commit f969ba72f0
2 changed files with 8 additions and 8 deletions

View File

@ -1374,11 +1374,11 @@ pub enum TranslatedString {
#[cfg(feature = "universal_fw")] #[cfg(feature = "universal_fw")]
ethereum__unknown_contract_address = 968, // "Unknown contract address. Continue only if you know what you are doing." ethereum__unknown_contract_address = 968, // "Unknown contract address. Continue only if you know what you are doing."
#[cfg(feature = "universal_fw")] #[cfg(feature = "universal_fw")]
ethereum__token_contract = 970, // "Token contract" ethereum__token_contract = 969, // "Token contract"
buttons__view_all_data = 971, // "View all data" buttons__view_all_data = 970, // "View all data"
instructions__view_all_data = 972, // "View all data in the menu." instructions__view_all_data = 971, // "View all data in the menu."
#[cfg(feature = "universal_fw")] #[cfg(feature = "universal_fw")]
ethereum__interaction_contract = 973, // "Interaction contract" ethereum__interaction_contract = 972, // "Interaction contract"
} }
impl TranslatedString { impl TranslatedString {

View File

@ -968,8 +968,8 @@
"966": "address__public_key_confirmed", "966": "address__public_key_confirmed",
"967": "words__continue_anyway", "967": "words__continue_anyway",
"968": "ethereum__unknown_contract_address", "968": "ethereum__unknown_contract_address",
"970": "ethereum__token_contract", "969": "ethereum__token_contract",
"971": "buttons__view_all_data", "970": "buttons__view_all_data",
"972": "instructions__view_all_data", "971": "instructions__view_all_data",
"973": "ethereum__interaction_contract" "972": "ethereum__interaction_contract"
} }