@quenty/clienttranslator 14.6.2-canary.497.496fc5b.0 → 14.6.2

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 CHANGED
@@ -3,7 +3,7 @@
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
- ## [14.6.2-canary.497.496fc5b.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@14.6.1...@quenty/clienttranslator@14.6.2-canary.497.496fc5b.0) (2024-09-20)
6
+ ## [14.6.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@14.6.1...@quenty/clienttranslator@14.6.2) (2024-09-22)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/clienttranslator
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/clienttranslator",
3
- "version": "14.6.2-canary.497.496fc5b.0",
3
+ "version": "14.6.2",
4
4
  "description": "Gets local translator for player",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,20 +25,20 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/blend": "12.5.2-canary.497.496fc5b.0",
29
- "@quenty/instanceutils": "13.5.1-canary.497.496fc5b.0",
30
- "@quenty/loader": "10.4.1-canary.497.496fc5b.0",
31
- "@quenty/maid": "3.3.0",
32
- "@quenty/promise": "10.4.1-canary.497.496fc5b.0",
33
- "@quenty/promisemaid": "5.4.1-canary.497.496fc5b.0",
34
- "@quenty/pseudolocalize": "3.3.1-canary.497.496fc5b.0",
35
- "@quenty/rx": "13.5.1-canary.497.496fc5b.0",
36
- "@quenty/string": "3.2.0",
37
- "@quenty/table": "3.5.0",
38
- "@quenty/valueobject": "13.5.1-canary.497.496fc5b.0"
28
+ "@quenty/blend": "^12.5.2",
29
+ "@quenty/instanceutils": "^13.5.0",
30
+ "@quenty/loader": "^10.4.0",
31
+ "@quenty/maid": "^3.3.0",
32
+ "@quenty/promise": "^10.4.0",
33
+ "@quenty/promisemaid": "^5.4.0",
34
+ "@quenty/pseudolocalize": "^3.3.0",
35
+ "@quenty/rx": "^13.5.0",
36
+ "@quenty/string": "^3.2.0",
37
+ "@quenty/table": "^3.5.0",
38
+ "@quenty/valueobject": "^13.5.0"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "496fc5bb230a226ec6c86a8dfd025b8e326d92d8"
43
+ "gitHead": "1cd1ee70499c9c4a52465d2e5125732b8a10cb27"
44
44
  }
@@ -226,7 +226,7 @@ function JSONTranslator:ToTranslationKey(prefix, text)
226
226
  assert(type(text) == "string", "Bad text")
227
227
 
228
228
  local translationKey = TranslationKeyUtils.getTranslationKey(prefix, text)
229
- local context = string.format("automatic.%s", translationKey)
229
+ local context = ("automatic.%s"):format(translationKey)
230
230
 
231
231
  -- TODO: Only set if we don't need it
232
232
  self:SetEntryValue(translationKey, text, context, "en", text)