@quenty/clienttranslator 14.23.6 → 14.23.7-canary.90de6eb.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 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
+ ## [14.23.7-canary.90de6eb.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@14.23.6...@quenty/clienttranslator@14.23.7-canary.90de6eb.0) (2026-01-03)
7
+
8
+ **Note:** Version bump only for package @quenty/clienttranslator
9
+
10
+
11
+
12
+
13
+
6
14
  ## [14.23.6](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@14.23.5...@quenty/clienttranslator@14.23.6) (2025-12-31)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/clienttranslator",
3
- "version": "14.23.6",
3
+ "version": "14.23.7-canary.90de6eb.0",
4
4
  "description": "Gets local translator for player",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,21 +25,21 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/blend": "^12.22.6",
29
- "@quenty/instanceutils": "^13.20.5",
30
- "@quenty/loader": "^10.9.0",
31
- "@quenty/maid": "^3.5.0",
32
- "@quenty/promise": "^10.12.3",
33
- "@quenty/promisemaid": "^5.12.3",
34
- "@quenty/pseudolocalize": "^3.5.0",
35
- "@quenty/rx": "^13.20.3",
36
- "@quenty/servicebag": "^11.13.3",
37
- "@quenty/string": "^3.3.3",
38
- "@quenty/table": "^3.8.0",
39
- "@quenty/valueobject": "^13.21.6"
28
+ "@quenty/blend": "12.22.7-canary.90de6eb.0",
29
+ "@quenty/instanceutils": "13.20.6-canary.90de6eb.0",
30
+ "@quenty/loader": "10.9.1-canary.90de6eb.0",
31
+ "@quenty/maid": "3.5.1-canary.90de6eb.0",
32
+ "@quenty/promise": "10.12.4-canary.90de6eb.0",
33
+ "@quenty/promisemaid": "5.12.4-canary.90de6eb.0",
34
+ "@quenty/pseudolocalize": "3.5.0",
35
+ "@quenty/rx": "13.20.4-canary.90de6eb.0",
36
+ "@quenty/servicebag": "11.13.4-canary.90de6eb.0",
37
+ "@quenty/string": "3.3.4-canary.90de6eb.0",
38
+ "@quenty/table": "3.8.0",
39
+ "@quenty/valueobject": "13.21.7-canary.90de6eb.0"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "ed3284dd547d8f9922043ca68ed16bf3769806bb"
44
+ "gitHead": "90de6ebb6e0cb5e6798e08b312cb1864c1d3354c"
45
45
  }
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  Utility to build a localization table from json, intended to be used with rojo. Can also handle Rojo json
3
4
  objects turned into tables!
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  NumberLocalizationUtils script from Roblox's player scripts in handling the leaderboard.
3
4
 
@@ -1,5 +1,7 @@
1
- local require =
2
- require(game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent).bootstrapStory(script)
1
+ --!nonstrict
2
+ local require = (require :: any)(
3
+ game:GetService("ServerScriptService"):FindFirstChild("LoaderUtils", true).Parent
4
+ ).bootstrapStory(script) :: typeof(require(script.Parent.loader).load(script))
3
5
 
4
6
  local Jest = require("Jest")
5
7
  local NumberLocalizationUtils = require("NumberLocalizationUtils")
@@ -1,3 +1,4 @@
1
+ --!nonstrict
1
2
  --[=[
2
3
  @class LocalizationServiceUtils
3
4
  ]=]