@quenty/clienttranslator 8.6.0 → 8.7.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 +2 -2
- package/src/Client/JSONTranslator.lua +12 -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.7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@8.6.0...@quenty/clienttranslator@8.7.0) (2022-12-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/clienttranslator
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [8.6.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@8.5.0...@quenty/clienttranslator@8.6.0) (2022-12-05)
|
|
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
|
+
"version": "8.7.0",
|
|
4
4
|
"description": "Gets local translator for player",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "d9b0d10faa443cc42a6c2ac966f2f56d124bbde5"
|
|
41
41
|
}
|
|
@@ -140,6 +140,12 @@ end
|
|
|
140
140
|
|
|
141
141
|
--[=[
|
|
142
142
|
Formats the resulting entry by args.
|
|
143
|
+
|
|
144
|
+
:::tip
|
|
145
|
+
You should use [JSONTranslator.ObserveFormatByKey] instead of this to respond
|
|
146
|
+
to locale changing.
|
|
147
|
+
:::
|
|
148
|
+
|
|
143
149
|
@param key string
|
|
144
150
|
@param args table?
|
|
145
151
|
@return Promise<string>
|
|
@@ -194,6 +200,12 @@ end
|
|
|
194
200
|
|
|
195
201
|
--[=[
|
|
196
202
|
Formats or errors if the cloud translations are not loaded.
|
|
203
|
+
|
|
204
|
+
:::tip
|
|
205
|
+
You should use [JSONTranslator.ObserveFormatByKey] instead of this to respond
|
|
206
|
+
to locale changing.
|
|
207
|
+
:::
|
|
208
|
+
|
|
197
209
|
@param key string
|
|
198
210
|
@param args table?
|
|
199
211
|
@return string
|