mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
thunderbolt: ensure failure msg is translatable
Swap the gettext() and format() calls to ensure that the message is translatable.
This commit is contained in:
parent
d8593c5b4a
commit
345a8fe748
1 changed files with 1 additions and 1 deletions
|
|
@ -334,7 +334,7 @@ var Indicator = class extends PanelMenu.SystemIndicator {
|
|||
|
||||
_onEnrollFailed(obj, device, error) {
|
||||
const title = _("Thunderbolt authorization error");
|
||||
const body = _("Could not authorize the Thunderbolt device: %s".format(error.message));
|
||||
const body = _("Could not authorize the Thunderbolt device: %s").format(error.message);
|
||||
this._notify(title, body);
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue