Skip to content

Commit ef094d0

Browse files
1 parent 1706290 commit ef094d0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

server/src/gnome/prompter.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,10 @@ impl Properties {
130130
fn for_change_password(keyring: &str, window_id: Option<&WindowIdentifierType>) -> Self {
131131
Self {
132132
title: Some(gettext("Change Keyring Password")),
133-
message: Some(gettext("Authentication required")),
133+
message: Some(formatx!(gettext("Choose a new password for the “{}” keyring"), keyring).expect("Wrong format in translatable string")),
134134
description: Some(
135135
formatx!(
136-
gettext("An application wants to change the keyring password '{}'"),
136+
gettext("An application wants to change the password for the “{}” keyring. Choose the new password you want to use for it."),
137137
keyring,
138138
)
139139
.expect("Wrong format in translatable string"),
@@ -181,7 +181,7 @@ impl Properties {
181181
message: Some(gettext("Choose password for new keyring")),
182182
description: Some(
183183
formatx!(
184-
gettext("An application wants to create a new keyring called '{}'. Choose the password you want to use for it."),
184+
gettext("An application wants to create a new keyring called “{}”. Choose the password you want to use for it."),
185185
&label
186186
)
187187
.expect("Wrong format in translatable string")

0 commit comments

Comments
 (0)