@openshift-assisted/locales 2.8.2-cim
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/README.md +38 -0
- package/lib/en/translation.json +796 -0
- package/lib/ja/translation.json +794 -0
- package/lib/ko/translation.json +794 -0
- package/lib/zh/translation.json +794 -0
- package/package.json +33 -0
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"author": "Red Hat",
|
|
3
|
+
"description": "Locales for the Assisted Installer UI library",
|
|
4
|
+
"devDependencies": {
|
|
5
|
+
"i18next-parser": "^3.3.0"
|
|
6
|
+
},
|
|
7
|
+
"exports": {
|
|
8
|
+
"./en/translation.json": "./lib/en/translation.json",
|
|
9
|
+
"./ja/translation.json": "./lib/ja/translation.json",
|
|
10
|
+
"./ko/translation.json": "./lib/ko/translation.json",
|
|
11
|
+
"./zh/translation.json": "./lib/zh/translation.json"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"lib"
|
|
15
|
+
],
|
|
16
|
+
"license": "Apache-2.0",
|
|
17
|
+
"name": "@openshift-assisted/locales",
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"access": "public"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"directory": "libs/locales",
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "https://github.com/openshift-assisted/assisted-installer-ui.git"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"watch": "yarn run -T toolbox watch --dir=lib 'yalc push --changed'",
|
|
28
|
+
"process_new_strings": "scripts/process-new-strings.sh",
|
|
29
|
+
"validate_translation_files": "scripts/validate-translation-files.sh"
|
|
30
|
+
},
|
|
31
|
+
"type": "module",
|
|
32
|
+
"version": "2.8.2-cim"
|
|
33
|
+
}
|