Merge branch 'potfiles' into 'master'

Update Potfiles & other translator goodies

See merge request World/Authenticator!176
This commit is contained in:
Bilal Elmoussaoui 2021-01-23 19:14:48 +00:00
commit f8a8158f8b
3 changed files with 4 additions and 0 deletions

View file

@ -17,4 +17,5 @@ src/backup/andotp.rs
src/backup/bitwarden.rs
src/backup/freeotp.rs
src/backup/legacy.rs
src/models/algorithm.rs
src/widgets/preferences/window.rs

View file

@ -28,6 +28,7 @@ impl Backupable for AndOTP {
}
fn title() -> String {
// Translators: This is for making a backup for the andOTP Android app.
gettext("a_ndOTP")
}
@ -89,6 +90,7 @@ impl Restorable for AndOTP {
}
fn title() -> String {
// Translators: This is for restoring a backup from the andOTP Android app.
gettext("an_dOTP")
}

View file

@ -54,6 +54,7 @@ impl OTPMethod {
match *self {
OTPMethod::HOTP => gettext("Counter-based"),
OTPMethod::TOTP => gettext("Time-based"),
// Translators: Steam refers to the gaming application by Valve.
OTPMethod::Steam => gettext("Steam"),
}
}