Simplify translation template
`this.po` is not being used anywhere, so drop the whole `!loaded` code path. There is no defer mechanism, so `po.js` *must* be loaded after cockpit.js. Let's trigger a crash instead of silently dropping translations, to make such a bug obvious in manual and automatic tests.
This commit is contained in:
parent
bb15952fc4
commit
88fe99361b
1 changed files with 2 additions and 14 deletions
|
|
@ -1,14 +1,2 @@
|
|||
(function (root, data) {
|
||||
var loaded, module;
|
||||
|
||||
/* Load into Cockpit locale */
|
||||
if (typeof cockpit === 'object') {
|
||||
cockpit.locale(data)
|
||||
loaded = true;
|
||||
}
|
||||
|
||||
if (!loaded)
|
||||
root.po = data;
|
||||
|
||||
/* The syntax of this line is important by po2json */
|
||||
}(this, {"":{"language":"en"}}));
|
||||
/* The syntax of this line is important for po2json */
|
||||
cockpit.locale({"":{"language":"en"}});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue