mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 10:45:56 +00:00
pass translations to frontend as a json object
This commit is contained in:
16
js/App.js
16
js/App.js
@@ -17,6 +17,15 @@ const App = {
|
||||
hotkey_actions: {},
|
||||
is_prefs: false,
|
||||
LABEL_BASE_INDEX: -1024,
|
||||
_translations: {},
|
||||
l10n: {
|
||||
ngettext: function(msg1, msg2, n) {
|
||||
return self.__((parseInt(n) > 1) ? msg2 : msg1);
|
||||
},
|
||||
__: function(msg) {
|
||||
return App._translations[msg] ? App._translations[msg] : msg;
|
||||
}
|
||||
},
|
||||
FormFields: {
|
||||
attributes_to_string: function(attributes) {
|
||||
return Object.keys(attributes).map((k) =>
|
||||
@@ -525,6 +534,13 @@ const App = {
|
||||
PluginHost.run(PluginHost.HOOK_PARAMS_LOADED, this._initParams);
|
||||
}
|
||||
|
||||
const translations = reply['translations'];
|
||||
|
||||
if (translations) {
|
||||
console.log('reading translations...');
|
||||
App._translations = translations;
|
||||
}
|
||||
|
||||
this.initSecondStage();
|
||||
},
|
||||
Error: {
|
||||
|
||||
Reference in New Issue
Block a user