From 495fde3f93d2aa9c8bb3adbf328e090de75fdea1 Mon Sep 17 00:00:00 2001 From: Maximiliano Sandoval R Date: Sat, 23 Jan 2021 17:36:10 +0100 Subject: [PATCH 1/3] POTFILES: Add algorithm.rs --- po/POTFILES.in | 1 + 1 file changed, 1 insertion(+) diff --git a/po/POTFILES.in b/po/POTFILES.in index bb60a58..e5d6c69 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -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 From 9f10e290994d67612b4fd8f92db0d7448a1c0836 Mon Sep 17 00:00:00 2001 From: Maximiliano Sandoval R Date: Sat, 23 Jan 2021 17:36:44 +0100 Subject: [PATCH 2/3] algorithm.rs: Add translators note. --- src/models/algorithm.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models/algorithm.rs b/src/models/algorithm.rs index 6efa365..5f37955 100644 --- a/src/models/algorithm.rs +++ b/src/models/algorithm.rs @@ -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"), } } From 015c28a2e9fbc8192fb9f5bae3cbe44d0cd5da5d Mon Sep 17 00:00:00 2001 From: Maximiliano Sandoval R Date: Sat, 23 Jan 2021 17:38:57 +0100 Subject: [PATCH 3/3] andotp: Add translators notes --- src/backup/andotp.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/backup/andotp.rs b/src/backup/andotp.rs index 3ce05a7..9181a56 100644 --- a/src/backup/andotp.rs +++ b/src/backup/andotp.rs @@ -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") }