@sap-ux/adp-flp-config-sub-generator 0.1.38 → 0.1.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/generators/utils/i18n.js
CHANGED
|
@@ -3,6 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.i18n = void 0;
|
|
6
7
|
exports.initI18n = initI18n;
|
|
7
8
|
exports.t = t;
|
|
8
9
|
const i18next_1 = __importDefault(require("i18next"));
|
|
@@ -10,11 +11,16 @@ const adp_flp_config_sub_generator_i18n_json_1 = __importDefault(require("../tra
|
|
|
10
11
|
const inquirer_common_1 = require("@sap-ux/inquirer-common");
|
|
11
12
|
const flp_config_inquirer_1 = require("@sap-ux/flp-config-inquirer");
|
|
12
13
|
const adpFlpConfigI18nNamespace = 'adp-flp-config-sub-generator';
|
|
14
|
+
exports.i18n = i18next_1.default.createInstance();
|
|
13
15
|
/**
|
|
14
16
|
* Initialize i18next with the translations for this module.
|
|
15
17
|
*/
|
|
16
18
|
async function initI18n() {
|
|
17
|
-
await
|
|
19
|
+
await exports.i18n.init({
|
|
20
|
+
lng: 'en',
|
|
21
|
+
fallbackLng: 'en'
|
|
22
|
+
});
|
|
23
|
+
exports.i18n.addResourceBundle('en', adpFlpConfigI18nNamespace, adp_flp_config_sub_generator_i18n_json_1.default);
|
|
18
24
|
(0, inquirer_common_1.addi18nResourceBundle)();
|
|
19
25
|
(0, flp_config_inquirer_1.addi18nResourceBundle)();
|
|
20
26
|
}
|
|
@@ -29,7 +35,7 @@ function t(key, options) {
|
|
|
29
35
|
if (!options?.ns) {
|
|
30
36
|
options = Object.assign(options ?? {}, { ns: adpFlpConfigI18nNamespace });
|
|
31
37
|
}
|
|
32
|
-
return
|
|
38
|
+
return exports.i18n.t(key, options);
|
|
33
39
|
}
|
|
34
40
|
initI18n().catch(() => {
|
|
35
41
|
// Needed for lint
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/adp-flp-config-sub-generator",
|
|
3
3
|
"description": "Generator for adding FLP configuration to an Adaptation Project",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.40",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@sap-devx/yeoman-ui-types": "1.14.4",
|
|
23
|
-
"i18next": "
|
|
23
|
+
"i18next": "25.3.0",
|
|
24
24
|
"yeoman-generator": "5.10.0",
|
|
25
|
-
"@sap-ux/adp-tooling": "0.14.
|
|
25
|
+
"@sap-ux/adp-tooling": "0.14.40",
|
|
26
26
|
"@sap-ux/axios-extension": "1.22.3",
|
|
27
27
|
"@sap-ux/btp-utils": "1.1.0",
|
|
28
28
|
"@sap-ux/feature-toggle": "0.3.0",
|
|
29
|
-
"@sap-ux/fiori-generator-shared": "0.
|
|
30
|
-
"@sap-ux/flp-config-inquirer": "0.3.
|
|
31
|
-
"@sap-ux/inquirer-common": "0.7.
|
|
29
|
+
"@sap-ux/fiori-generator-shared": "0.13.0",
|
|
30
|
+
"@sap-ux/flp-config-inquirer": "0.3.40",
|
|
31
|
+
"@sap-ux/inquirer-common": "0.7.22",
|
|
32
32
|
"@sap-ux/logger": "0.7.0",
|
|
33
33
|
"@sap-ux/project-access": "1.30.6",
|
|
34
|
-
"@sap-ux/store": "1.1.
|
|
35
|
-
"@sap-ux/system-access": "0.6.
|
|
34
|
+
"@sap-ux/store": "1.1.2",
|
|
35
|
+
"@sap-ux/system-access": "0.6.10"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@jest/types": "29.6.3",
|