@quenty/clienttranslator 14.19.2 → 14.19.3
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.19.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@14.19.2...@quenty/clienttranslator@14.19.3) (2025-04-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/clienttranslator
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [14.19.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/clienttranslator@14.19.0...@quenty/clienttranslator@14.19.2) (2025-04-07)
|
|
7
15
|
|
|
8
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/clienttranslator",
|
|
3
|
-
"version": "14.19.
|
|
3
|
+
"version": "14.19.3",
|
|
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.18.
|
|
29
|
-
"@quenty/instanceutils": "^13.17.
|
|
30
|
-
"@quenty/loader": "^10.8.
|
|
31
|
-
"@quenty/maid": "^3.4.
|
|
32
|
-
"@quenty/promise": "^10.10.
|
|
33
|
-
"@quenty/promisemaid": "^5.10.
|
|
28
|
+
"@quenty/blend": "^12.18.3",
|
|
29
|
+
"@quenty/instanceutils": "^13.17.3",
|
|
30
|
+
"@quenty/loader": "^10.8.3",
|
|
31
|
+
"@quenty/maid": "^3.4.3",
|
|
32
|
+
"@quenty/promise": "^10.10.4",
|
|
33
|
+
"@quenty/promisemaid": "^5.10.4",
|
|
34
34
|
"@quenty/pseudolocalize": "^3.4.2",
|
|
35
|
-
"@quenty/rx": "^13.17.
|
|
35
|
+
"@quenty/rx": "^13.17.3",
|
|
36
36
|
"@quenty/string": "^3.3.3",
|
|
37
|
-
"@quenty/table": "^3.7.
|
|
38
|
-
"@quenty/valueobject": "^13.17.
|
|
37
|
+
"@quenty/table": "^3.7.4",
|
|
38
|
+
"@quenty/valueobject": "^13.17.3"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
|
|
44
44
|
}
|
|
@@ -34,7 +34,7 @@ export type TranslatorService = typeof(setmetatable(
|
|
|
34
34
|
_loadedPlayerObservable: _Observable.Observable<Player>?,
|
|
35
35
|
_loadedPlayer: Player?,
|
|
36
36
|
},
|
|
37
|
-
{ __index = TranslatorService }
|
|
37
|
+
{} :: typeof({ __index = TranslatorService })
|
|
38
38
|
))
|
|
39
39
|
|
|
40
40
|
function TranslatorService.Init(self: TranslatorService, serviceBag: _ServiceBag.ServiceBag)
|
|
@@ -159,8 +159,8 @@ function TranslatorService.ObserveLocaleId(self: TranslatorService): _Observable
|
|
|
159
159
|
})
|
|
160
160
|
end
|
|
161
161
|
end) :: any,
|
|
162
|
-
Rx.distinct(),
|
|
163
|
-
}))
|
|
162
|
+
Rx.distinct() :: any,
|
|
163
|
+
}) :: any)
|
|
164
164
|
self._localeIdValue = valueObject
|
|
165
165
|
return valueObject:Observe()
|
|
166
166
|
end
|