extensionPrefs: Initialize gettext
I misremembered that imports.package.start() would set up the correct gettext domain, but the module only provides a convenience method for doing that. Use it to bring back translations in the Extensions app, whoops. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1108
This commit is contained in:
parent
3bf0511f1b
commit
f8886468ce
@ -2,12 +2,11 @@
|
||||
imports.gi.versions.Gdk = '3.0';
|
||||
imports.gi.versions.Gtk = '3.0';
|
||||
|
||||
imports.package.initFormat();
|
||||
|
||||
const Gettext = imports.gettext;
|
||||
const Package = imports.package;
|
||||
const { Gdk, GLib, Gio, GObject, Gtk } = imports.gi;
|
||||
|
||||
const _ = Gettext.gettext;
|
||||
Package.initFormat();
|
||||
|
||||
const ExtensionUtils = imports.misc.extensionUtils;
|
||||
|
||||
@ -782,6 +781,7 @@ function initEnvironment() {
|
||||
|
||||
function main(argv) {
|
||||
initEnvironment();
|
||||
Package.initGettext();
|
||||
|
||||
new Application().run(argv);
|
||||
}
|
||||
|
@ -17,7 +17,6 @@ rules:
|
||||
overrides:
|
||||
- files: js/**
|
||||
excludedFiles:
|
||||
- js/extensionPrefs/**
|
||||
- js/portalHelper/*
|
||||
globals:
|
||||
global: readonly
|
||||
|
Loading…
Reference in New Issue
Block a user