@everymatrix/player-account-timeout 0.0.201 → 0.0.205
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/player-account-timeout",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.205",
|
|
4
4
|
"main": "dist/player-account-timeout.js",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "6dce99b13a7f9044dfab5b03c11def9ce42cbbe3"
|
|
40
40
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { _, addNewMessages, setLocale } from './i18n';
|
|
6
6
|
import { PlayerTimeoutTranslations } from './translations';
|
|
7
7
|
|
|
8
|
+
export let operator:string = 'Everymatrix';
|
|
8
9
|
export let lang:string = 'en';
|
|
9
10
|
|
|
10
11
|
let userAgent:String = window.navigator.userAgent;
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
{/if}
|
|
51
52
|
<h2 class="TimeoutTitle {isMobile ? 'TimeoutTitleNone' : ''}">{$_('timeout.title')}</h2>
|
|
52
53
|
<div class="TimeoutDescription {isMobile ? 'TimeoutDescriptionMobile' : ''}">
|
|
53
|
-
<p>{$_('timeout.timeoutTextFirst')}</p>
|
|
54
|
+
<p>{$_('timeout.timeoutTextFirst', { values: { operatorname: operator}})}</p>
|
|
54
55
|
<p>{$_('timeout.timeoutTextSecondary')}</p>
|
|
55
56
|
</div>
|
|
56
57
|
<div class="TimeoutSelectWrapper">
|
package/src/translations.js
CHANGED
|
@@ -2,7 +2,7 @@ export const PlayerTimeoutTranslations = {
|
|
|
2
2
|
en: {
|
|
3
3
|
timeout: {
|
|
4
4
|
title: `Timeout`,
|
|
5
|
-
timeoutTextFirst: `
|
|
5
|
+
timeoutTextFirst: `{operatorname} provides you an easy way to take a break from the games. You can request automatic blocking of your account for 24 hours. During the temporary restraint, you will not be able to access your Account.`,
|
|
6
6
|
timeoutTextSecondary: `Please note that the “Time-out facility” does not in any case replace “Self-exclusion”. If you think you are experiencing a gambling addiction problem, please enter the link under "Responsible Gaming" and use the "Self-exclusion service" or contact us as soon as possible.`,
|
|
7
7
|
save: `Save`,
|
|
8
8
|
cooloff24: `CoolOffFor24Hours`,
|
|
@@ -18,17 +18,17 @@ export const PlayerTimeoutTranslations = {
|
|
|
18
18
|
ro: {
|
|
19
19
|
timeout: {
|
|
20
20
|
title: `Timeout`,
|
|
21
|
-
timeoutTextFirst: `
|
|
22
|
-
timeoutTextSecondary: `
|
|
23
|
-
save: `
|
|
24
|
-
cooloff24: `
|
|
25
|
-
cooloff7: `
|
|
26
|
-
cooloff30: `
|
|
27
|
-
cooloff3: `
|
|
28
|
-
cooloff24Text: `24
|
|
29
|
-
cooloff7Text: `7
|
|
30
|
-
cooloff30Text: `30
|
|
31
|
-
cooloff3Text: `3
|
|
21
|
+
timeoutTextFirst: `{operatorname} îți asigură o cale ușoară de a lua o pauză de la jocuri. Poți solicita o blocare automată a contului tău pentru 24 de ore. În timpul restricției temporare, nu vei putea accesa contul.`,
|
|
22
|
+
timeoutTextSecondary: `Te rugăm să reții că „Facilitatea de time-out” nu înlocuiește în niciun caz „Auto-excluderea”. Dacă crezi că te confrunți cu o problemă de dependență de jocuri de noroc, te rugăm să accesezi secțiunea de „Joc responsabil” și să utilizezi „Serviciul de auto-excludere” sau să ne contactezi cât mai curând posibil.`,
|
|
23
|
+
save: `Salvează`,
|
|
24
|
+
cooloff24: `24 ore`,
|
|
25
|
+
cooloff7: `7 zile`,
|
|
26
|
+
cooloff30: `30 zile`,
|
|
27
|
+
cooloff3: `3 luni`,
|
|
28
|
+
cooloff24Text: `24 ore`,
|
|
29
|
+
cooloff7Text: `7 zile`,
|
|
30
|
+
cooloff30Text: `30 zile`,
|
|
31
|
+
cooloff3Text: `3 luni`,
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
};
|