@everymatrix/general-player-register-form 0.0.281 → 0.0.284

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/general-player-register-form",
3
- "version": "0.0.281",
3
+ "version": "0.0.284",
4
4
  "main": "dist/general-player-register-form.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": "335d6854670506055ce9c6cc5dcbc1a0172a0c70"
39
+ "gitHead": "3ac9350aedecfd71862267436a50699f50fc6a01"
40
40
  }
@@ -23,6 +23,8 @@
23
23
  export let captchakey:string = '';
24
24
  export let lang:string = '';
25
25
  export let licenseyears:string = '';
26
+ export let disabledfields:string = '';
27
+ export let dummydata:string = '';
26
28
 
27
29
  let isLoading:boolean = false;
28
30
 
@@ -14,4 +14,14 @@ export const RegisterFormTranslations = {
14
14
  goToLoginButton: 'Catre Autentificare',
15
15
  }
16
16
  },
17
+ es: {
18
+ registerForm: {
19
+ goToLoginButton: 'Ir a Iniciar sesión',
20
+ }
21
+ },
22
+ pt: {
23
+ registerForm: {
24
+ goToLoginButton: 'Ir para o Login',
25
+ }
26
+ },
17
27
  };