Skip to content

Commit 96e9809

Browse files
1 parent 8c44916 commit 96e9809

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,16 +130,16 @@ 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"),
140140
),
141141
warning: Some(gettext("This operation cannot be reverted")),
142-
password_new: None,
142+
password_new: Some(true),
143143
password_strength: None,
144144
choice_label: None,
145145
choice_chosen: None,

0 commit comments

Comments
 (0)