@quenty/clienttranslator 8.3.1 → 8.3.2-canary.64cf21a.0
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/CHANGELOG.md +8 -0
- package/package.json +10 -10
- package/src/Client/JSONTranslator.lua +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [8.3.2-canary.64cf21a.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@8.3.1...@quenty/clienttranslator@8.3.2-canary.64cf21a.0) (2022-11-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/clienttranslator
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [8.3.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@8.3.0...@quenty/clienttranslator@8.3.1) (2022-11-04)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/clienttranslator
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/clienttranslator",
|
|
3
|
-
"version": "8.3.
|
|
3
|
+
"version": "8.3.2-canary.64cf21a.0",
|
|
4
4
|
"description": "Gets local translator for player",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/blend": "
|
|
29
|
-
"@quenty/instanceutils": "
|
|
30
|
-
"@quenty/loader": "
|
|
31
|
-
"@quenty/maid": "
|
|
32
|
-
"@quenty/promise": "
|
|
33
|
-
"@quenty/pseudolocalize": "
|
|
34
|
-
"@quenty/rx": "
|
|
35
|
-
"@quenty/table": "
|
|
28
|
+
"@quenty/blend": "6.3.1",
|
|
29
|
+
"@quenty/instanceutils": "7.1.1",
|
|
30
|
+
"@quenty/loader": "6.0.1",
|
|
31
|
+
"@quenty/maid": "2.4.0",
|
|
32
|
+
"@quenty/promise": "6.0.1",
|
|
33
|
+
"@quenty/pseudolocalize": "3.0.0",
|
|
34
|
+
"@quenty/rx": "7.1.1",
|
|
35
|
+
"@quenty/table": "3.1.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "64cf21a52bc3d4b5b0a9c5cc239811dcd4f085e2"
|
|
41
41
|
}
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
--[=[
|
|
2
2
|
Utility function that loads a translator from a folder or a table.
|
|
3
|
+
|
|
4
|
+
To get translations uploaded.
|
|
5
|
+
|
|
6
|
+
1. Run the game
|
|
7
|
+
2. On the client, check LocalizationService.GeneratedJSONTable
|
|
8
|
+
3. Right click > Save as CSV
|
|
9
|
+
4. Stop the game
|
|
10
|
+
5. In Studio, go to plugins > "Localization Tools"
|
|
11
|
+
6. Upload the CSV (update)
|
|
12
|
+
|
|
3
13
|
@class JSONTranslator
|
|
4
14
|
]=]
|
|
5
15
|
|