@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.201",
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": "71051531499cfea745b53a0f7c0a77a252990ae7"
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">
@@ -2,7 +2,7 @@ export const PlayerTimeoutTranslations = {
2
2
  en: {
3
3
  timeout: {
4
4
  title: `Timeout`,
5
- timeoutTextFirst: `Everymatrix 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.`,
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: `Everymatrix 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.`,
22
- timeoutTextSecondary: `Please note that the “Time-out facilitydoes 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.`,
23
- save: `Save`,
24
- cooloff24: `CoolOffFor24Hours`,
25
- cooloff7: `CoolOffFor7Days`,
26
- cooloff30: `CoolOffFor30Days`,
27
- cooloff3: `CoolOffFor3Months`,
28
- cooloff24Text: `24 hours`,
29
- cooloff7Text: `7 days`,
30
- cooloff30Text: `30 days`,
31
- cooloff3Text: `3 months`,
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 reții că „Facilitatea de time-out” nu înlocuiește în niciun caz „Auto-excluderea”. Dacă crezi te confrunți cu o problemă de dependență de jocuri de noroc, te rugăm accesezi secțiunea de „Joc responsabil” și utilizezi „Serviciul de auto-excludere” sau 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
  };