update i18n comments for source client options

Co-authored-by: Terry Yiu <963907+tyiu@users.noreply.github.com>
This commit is contained in:
Fernando López Guevara
2025-07-29 21:31:36 -03:00
parent f2153f53dc
commit 692f4889cf

View File

@@ -75,21 +75,9 @@ impl ShowSourceClientOption {
fn label<'a>(&self, i18n: &'a mut Localization) -> String { fn label<'a>(&self, i18n: &'a mut Localization) -> String {
match self { match self {
ShowSourceClientOption::Hide => tr!( Self::Hide => tr!(i18n, "Hide", "Option in settings section to hide the source client label in note display"),
i18n, Self::Top => tr!(i18n, "Top", "Option in settings section to show the source client label at the top of the note"),
"Hide", Self::Bottom => tr!(i18n, "Bottom", "Option in settings section to show the source client label at the bottom of the note"),
"Option in settings section to hide the source client label in note display"
),
ShowSourceClientOption::Top => tr!(
i18n,
"Top",
"Option in settings section to show the source client label at the top of the note"
),
ShowSourceClientOption::Bottom => tr!(
i18n,
"Bottom",
"Option in settings section to show the source client label at the bottom of the note"
),
} }
} }
} }