Skip to content

Commit

Permalink
l10n: Update msgids in new clutter dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
clefebvre committed Oct 20, 2024
1 parent 714662e commit 79abe5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions js/ui/windowManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ class DisplayChangeDialog extends ModalDialog.ModalDialog {
/* Translators: this and the following message should be limited in length,
to avoid ellipsizing the labels.
*/
this._cancelButton = this.addButton({ label: _("Revert Settings"),
this._cancelButton = this.addButton({ label: _("Revert"),
action: this._onFailure.bind(this),
key: Clutter.KEY_Escape });
this._okButton = this.addButton({ label: _("Keep Changes"),
this._okButton = this.addButton({ label: _("Keep changes"),
action: this._onSuccess.bind(this),
default: true });

Expand All @@ -104,8 +104,8 @@ class DisplayChangeDialog extends ModalDialog.ModalDialog {
}

_formatCountDown() {
let fmt = ngettext("Settings changes will revert in %d second",
"Settings changes will revert in %d seconds");
let fmt = ngettext("Reverting to previous display settings in %d second.",
"Reverting to previous display settings in %d seconds.");
return fmt.format(this._countDown);
}

Expand Down

0 comments on commit 79abe5e

Please sign in to comment.