@everymatrix/player-profile-info 1.43.4 → 1.45.0
Sign up to get free protection for your applications and to get access to all the features.
- package/components/PlayerProfileInfo-BuJ_HB6j.cjs +5 -0
- package/components/PlayerProfileInfo-DiDCqeku.js +5908 -0
- package/es2015/player-profile-info.cjs +1 -0
- package/es2015/player-profile-info.js +16 -0
- package/package.json +15 -33
- package/CHANGELOG.md +0 -9
- package/README.md +0 -30
- package/dist/player-profile-info.js +0 -2
- package/dist/player-profile-info.js.map +0 -1
- package/index.html +0 -37
- package/index.js +0 -1
- package/public/favicon.png +0 -0
- package/public/reset.css +0 -48
- package/rollup.config.js +0 -67
- package/src/PlayerProfileInfo.svelte +0 -992
- package/src/i18n.js +0 -27
- package/src/index.ts +0 -4
- package/src/translations.js +0 -366
- package/stories/PlayerProfileInfo.stories.js +0 -13
- package/tsconfig.json +0 -6
package/src/i18n.js
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
import {
|
2
|
-
dictionary,
|
3
|
-
locale,
|
4
|
-
addMessages,
|
5
|
-
_
|
6
|
-
} from 'svelte-i18n';
|
7
|
-
|
8
|
-
function setupI18n({ withLocale: _locale, translations }) {
|
9
|
-
locale.subscribe((data) => {
|
10
|
-
if (data == null) {
|
11
|
-
dictionary.set(translations);
|
12
|
-
locale.set(_locale);
|
13
|
-
}
|
14
|
-
}); // maybe we will need this to make sure that the i18n is set up only once
|
15
|
-
/*dictionary.set(translations);
|
16
|
-
locale.set(_locale);*/
|
17
|
-
}
|
18
|
-
|
19
|
-
function addNewMessages(lang, dict) {
|
20
|
-
addMessages(lang, dict);
|
21
|
-
}
|
22
|
-
|
23
|
-
function setLocale(_locale) {
|
24
|
-
locale.set(_locale);
|
25
|
-
}
|
26
|
-
|
27
|
-
export { _, setupI18n, addNewMessages, setLocale };
|
package/src/index.ts
DELETED
package/src/translations.js
DELETED
@@ -1,366 +0,0 @@
|
|
1
|
-
export const TRANSLATIONS = {
|
2
|
-
"en": {
|
3
|
-
"titleProfileInfo": "Profile Info",
|
4
|
-
"personalDetails": "Personal Details",
|
5
|
-
"userName": "Username:",
|
6
|
-
"userPhone": "Phone:",
|
7
|
-
"userPhoneError": "Mobile must be at least 5 character long and 12 characters maximum.",
|
8
|
-
"userEmail": "Email:",
|
9
|
-
"profileSecurityQuestion": "Security Question",
|
10
|
-
"profileSecurityQuestion2": "Document Type (DNI, Foreign ID Card, Passport)",
|
11
|
-
"profileSecurityQuestionError": "Security question must be at least 1 character long and maximum 120 characters.",
|
12
|
-
"profileSecurityQuestionError2": "Only letters and numbers are accepted.",
|
13
|
-
"firstName": "First Name:",
|
14
|
-
"profileSecurityAnswer": "Security Answer",
|
15
|
-
"profileSecurityAnswer2": "Document Number:",
|
16
|
-
"profileSecurityAnswerError": "Security answer must be at least 1 character long and maximum 120 characters.",
|
17
|
-
"profileSecurityAnswerError2": "Only letters and numbers are accepted.",
|
18
|
-
"lastName": "Last Name:",
|
19
|
-
"dateOfBirth": "Date of Birth:",
|
20
|
-
"currency": "Currency:",
|
21
|
-
"iban": "IBAN:",
|
22
|
-
"userTitle": "Title:",
|
23
|
-
"locationDetails": "Location Details",
|
24
|
-
"userCountry": "Country:",
|
25
|
-
"userCity": "City:",
|
26
|
-
"userCityError": "City must be at least 1 character long and 50 characters maximum.",
|
27
|
-
"userAddress": "Address:",
|
28
|
-
"userAddressError": "Address must be at least 1 character long and 100 characters maximum.",
|
29
|
-
"userPostalCode": "Postal Code:",
|
30
|
-
"userPostalCodeError": "Postal Code must be at least 1 character long and 20 characters maximum.",
|
31
|
-
"userNotifications": "Notifications",
|
32
|
-
"userSMSNotification": "Enable SMS notifications",
|
33
|
-
"userEmailNotification": "Enable Emails",
|
34
|
-
"userProfileSaveChanges": "Save Changes",
|
35
|
-
"userProfileConfirmationMessage": "Your changes have been saved!",
|
36
|
-
"userProfileUpdateError": "An error has occured when attempting to update the profile information"
|
37
|
-
},
|
38
|
-
"zh-hk": {
|
39
|
-
"titleProfileInfo": "資料信息",
|
40
|
-
"personalDetails": "個人資料",
|
41
|
-
"userName": "用戶名:",
|
42
|
-
"userPhone": "電話:",
|
43
|
-
"userPhoneError": "移動設備的長度必須至少為 5 個字符,最多 12 個字符。",
|
44
|
-
"userEmail": "電子郵件:",
|
45
|
-
"profileSecurityQuestion": "安全問題",
|
46
|
-
"profileSecurityQuestion2": "文檔類型(DNI、外國身份證、護照)",
|
47
|
-
"profileSecurityQuestionError": "安全問題長度必須至少1個字符,最多120個字符。",
|
48
|
-
"profileSecurityQuestionError2": "僅接受字母和數字。",
|
49
|
-
"firstName": "名:",
|
50
|
-
"profileSecurityAnswer": "安全答案",
|
51
|
-
"profileSecurityAnswer2": "文件號碼:",
|
52
|
-
"profileSecurityAnswerError": "安全答案長度必須至少1個字符,最多120個字符。",
|
53
|
-
"profileSecurityAnswerError2": "僅接受字母和數字。",
|
54
|
-
"lastName": "姓:",
|
55
|
-
"dateOfBirth": "出生日期:",
|
56
|
-
"currency": "貨幣:",
|
57
|
-
"iban": "銀行網",
|
58
|
-
"userTitle": "標題:",
|
59
|
-
"locationDetails": "位置詳情",
|
60
|
-
"userCountry": "國家:",
|
61
|
-
"userCity": "城市:",
|
62
|
-
"userCityError": "城市必須至少 1 個字符長,最多 50 個字符。",
|
63
|
-
"userAddress": "地址:",
|
64
|
-
"userAddressError": "地址必須至少 1 個字符長,最多 100 個字符。",
|
65
|
-
"userPostalCode": "郵政編碼:",
|
66
|
-
"userPostalCodeError": "郵政編碼必須至少 1 個字符長,最多 20 個字符。",
|
67
|
-
"userNotifications": "通知",
|
68
|
-
"userSMSNotification": "啟用短信通知",
|
69
|
-
"userEmailNotification": "啟用電子郵件",
|
70
|
-
"userProfileSaveChanges": "保存更改",
|
71
|
-
"userProfileConfirmationMessage": "你的修改已被保存!",
|
72
|
-
"userProfileUpdateError": "嘗試更新個人資料時出現錯誤"
|
73
|
-
},
|
74
|
-
"fr": {
|
75
|
-
"titleProfileInfo": "Information sur le profil",
|
76
|
-
"personalDetails": "Détail personnel",
|
77
|
-
"userName": "Nom d'utilisateur:",
|
78
|
-
"userPhone": "Téléphone:",
|
79
|
-
"userPhoneError": "Le mobile doit comporter au moins 5 caractères et 12 caractères maximum.",
|
80
|
-
"userEmail": "Email:",
|
81
|
-
"profileSecurityQuestion": "Question de sécurité",
|
82
|
-
"profileSecurityQuestion2": "Type de document (DNI, carte d'identité étrangère, passeport)",
|
83
|
-
"profileSecurityQuestionError": "La question de sécurité doit comporter au moins 1 caractère et au maximum 120 caractères.",
|
84
|
-
"profileSecurityQuestionError2": "Seuls les lettres et les chiffres sont acceptés.",
|
85
|
-
"firstName": "Prénom:",
|
86
|
-
"profileSecurityAnswer": "Réponse de sécurité",
|
87
|
-
"profileSecurityAnswer2": "Numéro de document :",
|
88
|
-
"profileSecurityAnswerError": "La réponse de sécurité doit comporter au moins 1 caractère et au maximum 120 caractères.",
|
89
|
-
"profileSecurityAnswerError2": "Seuls les lettres et les chiffres sont acceptés.",
|
90
|
-
"lastName": "Nom de famille:",
|
91
|
-
"dateOfBirth": "Date de naissance:",
|
92
|
-
"currency": "Monnaie:",
|
93
|
-
"iban": "IBAN:",
|
94
|
-
"userTitle": "Titre:",
|
95
|
-
"locationDetails": "Détails de l'emplacement",
|
96
|
-
"userCountry": "Pays:",
|
97
|
-
"userCity": "Ville:",
|
98
|
-
"userCityError": "La ville doit comporter au moins 1 caractère et 50 caractères au maximum.",
|
99
|
-
"userAddress": "Adresse:",
|
100
|
-
"userAddressError": "L'adresse doit comporter au moins 1 caractère et 100 caractères au maximum.",
|
101
|
-
"userPostalCode": "Code postal:",
|
102
|
-
"userPostalCodeError": "Le code postal doit comporter au moins 1 caractère et 20 caractères au maximum.",
|
103
|
-
"userNotifications": "Notifications",
|
104
|
-
"userSMSNotification": "Activer les notifications par sms",
|
105
|
-
"userEmailNotification": "Activer les e-mails",
|
106
|
-
"userProfileSaveChanges": "Sauvegarder les changements",
|
107
|
-
"userProfileConfirmationMessage": "Vos modifications ont été enregistrées!",
|
108
|
-
"userProfileUpdateError": "Une erreur s'est produite lors de la tentative de mise à jour des informations du profil"
|
109
|
-
},
|
110
|
-
"ro": {
|
111
|
-
"titleProfileInfo": "Informații profil",
|
112
|
-
"personalDetails": "Detalii Personale",
|
113
|
-
"userName": "Nume utilizator:",
|
114
|
-
"userPhone": "Telefon:",
|
115
|
-
"userPhoneError": "Telefon-ul trebuie să aibă cel puțin 5 caractere și maximum 12 de caractere.",
|
116
|
-
"userEmail": "E-mail:",
|
117
|
-
"profileSecurityQuestion": "Întrebare de securitate",
|
118
|
-
"profileSecurityQuestion2": "Tip de document (DNI, carte de identitate străină, pașaport)",
|
119
|
-
"profileSecurityQuestionError": "Întrebarea de securitate trebuie să aibă cel puțin 1 caracter și maximum 120 de caractere.",
|
120
|
-
"profileSecurityQuestionError2": "Sunt acceptate doar litere și cifre.",
|
121
|
-
"firstName": "Prenume:",
|
122
|
-
"profileSecurityAnswer": "Răspuns de securitate",
|
123
|
-
"profileSecurityAnswer2": "Număr document:",
|
124
|
-
"profileSecurityAnswerError": "Răspunsul de securitate trebuie să aibă cel puțin 1 caracter și maximum 120 de caractere.",
|
125
|
-
"profileSecurityAnswerError2": "Sunt acceptate doar litere și cifre.",
|
126
|
-
"lastName": "Nume:",
|
127
|
-
"dateOfBirth": "Data nașterii:",
|
128
|
-
"currency": "Monedă:",
|
129
|
-
"iban": "IBAN:",
|
130
|
-
"userTitle": "Titlu:",
|
131
|
-
"locationDetails": "Detalii de Localizare",
|
132
|
-
"userCountry": "Țară:",
|
133
|
-
"userCity": "Oraș:",
|
134
|
-
"userCityError": "Orașul trebuie să aibă cel puțin 1 caracter și maximum 50 de caractere.",
|
135
|
-
"userAddress": "Adresă:",
|
136
|
-
"userAddressError": "Adresa trebuie sa fie cuprinsa intre 1 si 100 de caractere.",
|
137
|
-
"userPostalCode": "Cod poștal:",
|
138
|
-
"userPostalCodeError": "Codul poștal trebuie să aibă cel puțin 1 caracter și maximum 20 de caractere.",
|
139
|
-
"userNotifications": "Notificări",
|
140
|
-
"userSMSNotification": "Activează notificări prin SMS",
|
141
|
-
"userEmailNotification": "Activează notificări prin E-mail",
|
142
|
-
"userProfileSaveChanges": "Salvează",
|
143
|
-
"userProfileConfirmationMessage": "Modificările au fost salvate!",
|
144
|
-
"userProfileUpdateError": "A apărut o eroare la încercarea de a actualiza informațiile profilului"
|
145
|
-
},
|
146
|
-
"tr": {
|
147
|
-
"titleProfileInfo": "Profil bilgisi",
|
148
|
-
"personalDetails": "Kişisel detaylar",
|
149
|
-
"userName": "Kullanıcı adı:",
|
150
|
-
"userPhone": "Telefon:",
|
151
|
-
"userPhoneError": "Mobil en az 5 karakter uzunluğunda ve maksimum 12 karakter olmalıdır.",
|
152
|
-
"userEmail": "E-posta:",
|
153
|
-
"profileSecurityQuestion": "Güvenlik Sorusu",
|
154
|
-
"profileSecurityQuestion2": "Belge Türü (DNI, Yabancı Kimlik Kartı, Pasaport)",
|
155
|
-
"profileSecurityQuestionError": "Güvenlik sorusu en az 1 karakter uzunluğunda, en fazla 120 karakter uzunluğunda olmalıdır.",
|
156
|
-
"profileSecurityQuestionError2": "Yalnızca harf ve rakamlar kabul edilir.",
|
157
|
-
"firstName": "İlk adı:",
|
158
|
-
"profileSecurityAnswer": "Güvenlik cevabı",
|
159
|
-
"profileSecurityAnswer2": "Belge Numarası:",
|
160
|
-
"profileSecurityAnswerError": "Güvenlik cevabı en az 1 karakter uzunluğunda ve en fazla 120 karakter olmalıdır.",
|
161
|
-
"profileSecurityAnswerError2": "Yalnızca harf ve rakamlar kabul edilir.",
|
162
|
-
"lastName": "Soy isim:",
|
163
|
-
"dateOfBirth": "Doğum tarihi:",
|
164
|
-
"currency": "Para birimi:",
|
165
|
-
"iban": "IBAN:",
|
166
|
-
"userTitle": "Başlık:",
|
167
|
-
"locationDetails": "Konum Detayları",
|
168
|
-
"userCountry": "Ülke:",
|
169
|
-
"userCity": "Şehir:",
|
170
|
-
"userCityError": "Şehir en az 1 karakter, maksimum 50 karakter uzunluğunda olmalıdır.",
|
171
|
-
"userAddress": "Adres:",
|
172
|
-
"userAddressError": "Adres en az 1 karakter uzunluğunda ve maksimum 100 karakter olmalıdır.",
|
173
|
-
"userPostalCode": "Posta Kodu:",
|
174
|
-
"userPostalCodeError": "Posta Kodu en az 1 karakter uzunluğunda ve maksimum 20 karakter uzunluğunda olmalıdır.",
|
175
|
-
"userNotifications": "Bildirimler",
|
176
|
-
"userSMSNotification": "SMS bildirimlerini etkinleştir",
|
177
|
-
"userEmailNotification": "E-postaları Etkinleştir",
|
178
|
-
"userProfileSaveChanges": "Değişiklikleri Kaydet",
|
179
|
-
"userProfileConfirmationMessage": "Değişiklikleriniz kaydedildi!",
|
180
|
-
"securityQuestion": "Güvenlik Sorusu:",
|
181
|
-
"securityQuestionError": "Güvenlik sorusu en az 1, en fazla 120 karakter uzunluğunda olmalıdır.",
|
182
|
-
"securityAnswer": "Güvenlik cevabı",
|
183
|
-
"securityAnswerError": "Güvenlik cevabı en az 1 karakter uzunluğunda ve en fazla 120 karakter olmalıdır.",
|
184
|
-
"userProfileUpdateError": "Profil bilgilerini güncellemeye çalışırken bir hata oluştu"
|
185
|
-
},
|
186
|
-
"es": {
|
187
|
-
"titleProfileInfo": "Información de Perfil",
|
188
|
-
"personalDetails": "Detalles Personales",
|
189
|
-
"userName": "Usuario",
|
190
|
-
"userPhone": "Celular / Número / Número Celular",
|
191
|
-
"userPhoneError": "Número celular debe tener al menos 5 caracteres y un máximo de 20 caracteres",
|
192
|
-
"userEmail": "Email:",
|
193
|
-
"profileSecurityQuestion": "Pregunta de Seguridad",
|
194
|
-
"profileSecurityQuestion2": "Tipo de Documento (DNI, Carnet de identidad extranjero, Pasaporte)",
|
195
|
-
"profileSecurityQuestionError": "La pregunta de seguridad debe tener al menos 1 caracter y como máximo 120 caracteres.",
|
196
|
-
"profileSecurityQuestionError2": "Solo se aceptan letras y números.",
|
197
|
-
"firstName": "Nombre",
|
198
|
-
"profileSecurityAnswer": "Respuesta de Seguridad",
|
199
|
-
"profileSecurityAnswer2": "Número de Documento:",
|
200
|
-
"profileSecurityAnswerError": "La respuesta de seguridad debe tener al menos 1 caracter y como máximo 120 caracteres.",
|
201
|
-
"profileSecurityAnswerError2": "Solo se aceptan letras y números.",
|
202
|
-
"lastName": "Apellido",
|
203
|
-
"dateOfBirth": "Fecha de nacimiento:",
|
204
|
-
"currency": "Moneda:",
|
205
|
-
"iban": "IBAN:",
|
206
|
-
"userTitle": "Título:",
|
207
|
-
"locationDetails": "Detalles de ubicación",
|
208
|
-
"userCountry": "País:",
|
209
|
-
"userCity": "Ciudad:",
|
210
|
-
"userCityError": "La ciudad debe tener al menos 1 carácter y un máximo de 50 caracteres.",
|
211
|
-
"userAddress": "Dirección:",
|
212
|
-
"userAddressError": "La dirección debe tener al menos 1 carácter y un máximo de 100 caracteres.",
|
213
|
-
"userPostalCode": "Código Postal:",
|
214
|
-
"userPostalCodeError": "El código postal debe tener al menos 1 carácter y un máximo de 20 caracteres.",
|
215
|
-
"userNotifications": "Notificaciones",
|
216
|
-
"userSMSNotification": "Habilitar notificaciones SMS",
|
217
|
-
"userEmailNotification": "Habilitar Emails",
|
218
|
-
"userProfileSaveChanges": "Cambios Guardados",
|
219
|
-
"userProfileConfirmationMessage": "Sus cambios han sido guardados!",
|
220
|
-
"userProfileUpdateError": "Se ha producido un error al intentar actualizar la información del perfil"
|
221
|
-
},
|
222
|
-
"pt": {
|
223
|
-
"titleProfileInfo": "Informações do perfil",
|
224
|
-
"personalDetails": "Detalhes pessoais",
|
225
|
-
"userName": "Nome do usuário:",
|
226
|
-
"userPhone": "Celular:",
|
227
|
-
"userPhoneError": "O celular deve ter pelo menos 5 caracteres e no máximo 12 caracteres.",
|
228
|
-
"userEmail": "E-mail:",
|
229
|
-
"profileSecurityQuestion": "Pergunta de Segurança",
|
230
|
-
"profileSecurityQuestion2": "Tipo de Documento (DNI, Cartão de Identificação Estrangeiro, Passaporte)",
|
231
|
-
"profileSecurityQuestionError": "A pergunta de segurança deve ter pelo menos 1 caractere e no máximo 120 caracteres.",
|
232
|
-
"profileSecurityQuestionError2": "Somente letras e números são aceitos.",
|
233
|
-
"firstName": "Primeiro nome:",
|
234
|
-
"profileSecurityAnswer": "Resposta de Segurança",
|
235
|
-
"profileSecurityAnswer2": "Número do Documento:",
|
236
|
-
"profileSecurityAnswerError": "A resposta de segurança deve ter pelo menos 1 caractere e no máximo 120 caracteres.",
|
237
|
-
"profileSecurityAnswerError2": "Somente letras e números são aceitos.",
|
238
|
-
"lastName": "Último nome:",
|
239
|
-
"dateOfBirth": "Data de nascimento:",
|
240
|
-
"currency": "Moeda:",
|
241
|
-
"iban": "IBAN:",
|
242
|
-
"userTitle": "Título:",
|
243
|
-
"locationDetails": "Detalhes do local",
|
244
|
-
"userCountry": "País:",
|
245
|
-
"userCity": "Cidade:",
|
246
|
-
"userCityError": "A cidade deve ter pelo menos 1 caractere e no máximo 50 caracteres.",
|
247
|
-
"userAddress": "Endereço:",
|
248
|
-
"userAddressError": "Address must be at least 1 character long and 100 characters maximum.",
|
249
|
-
"userPostalCode": "CEP:",
|
250
|
-
"userPostalCodeError": "O código postal deve ter pelo menos 1 caractere e no máximo 20 caracteres.",
|
251
|
-
"userNotifications": "Notificações",
|
252
|
-
"userSMSNotification": "Ativar notificações por SMS",
|
253
|
-
"userEmailNotification": "Ativar notificações por e-mail",
|
254
|
-
"userProfileSaveChanges": "Salvar alterações",
|
255
|
-
"userProfileConfirmationMessage": "Suas alterações foram salvas!",
|
256
|
-
"userProfileUpdateError": "Ocorreu um erro ao tentar atualizar as informações do perfil"
|
257
|
-
},
|
258
|
-
"hr": {
|
259
|
-
"titleProfileInfo": "Informacije o profilu",
|
260
|
-
"personalDetails": "Osobni podatci",
|
261
|
-
"userName": "Korisničko ime:",
|
262
|
-
"userPhone": "Telefon:",
|
263
|
-
"userPhoneError": "Broj telefona mora imati najmanje 5 znakova i najviše 12 znakova.",
|
264
|
-
"userEmail": "E-mail:",
|
265
|
-
"profileSecurityQuestion": "Sigurnosno pitanje",
|
266
|
-
"profileSecurityQuestion2": "Vrsta dokumenta",
|
267
|
-
"profileSecurityQuestionError": "Sigurnosno pitanje mora imati najmanje 1 znak i najviše 120 znakova.",
|
268
|
-
"profileSecurityQuestionError2": "Prihvaćaju se samo slova i brojke.",
|
269
|
-
"firstName": "Ime",
|
270
|
-
"profileSecurityAnswer": "Sigurnosni odgovor",
|
271
|
-
"profileSecurityAnswer2": "Broj dokumenta:",
|
272
|
-
"profileSecurityAnswerError": "Sigurnosni odgovor mora imati najmanje 1 znak i najviše 120 znakova.",
|
273
|
-
"profileSecurityAnswerError2": "Prihvaćaju se samo slova i brojke.",
|
274
|
-
"lastName": "Prezime",
|
275
|
-
"dateOfBirth": "Datum rođenja:",
|
276
|
-
"currency": "Valuta:",
|
277
|
-
"iban": "IBAN:",
|
278
|
-
"userTitle": "Titula:",
|
279
|
-
"locationDetails": "Detalji lokacije",
|
280
|
-
"userCountry": "Zemlja:",
|
281
|
-
"userCity": "Grad:",
|
282
|
-
"userCityError": "Grad mora imati najmanje 1 znak i najviše 50 znakova.",
|
283
|
-
"userAddress": "Adresa:",
|
284
|
-
"userAddressError": "Adresa mora imati najmanje 1 znak i najviše 100 znakova.",
|
285
|
-
"userPostalCode": "Poštanski broj:",
|
286
|
-
"userPostalCodeError": "Poštanski broj mora imati najmanje 1 znak i najviše 20 znakova.",
|
287
|
-
"userNotifications": "Obavijesti",
|
288
|
-
"userSMSNotification": "Omogućite SMS obavijesti",
|
289
|
-
"userEmailNotification": "Omogući e-mail",
|
290
|
-
"userProfileSaveChanges": "Spremi promjene",
|
291
|
-
"userProfileConfirmationMessage": "Vaše izmjene su spremljene!",
|
292
|
-
"userProfileUpdateError": "Došlo je do pogreške prilikom pokušaja ažuriranja podataka profila"
|
293
|
-
},
|
294
|
-
"pt-br": {
|
295
|
-
"titleProfileInfo": "Informação do Perfil",
|
296
|
-
"personalDetails": "Detalhes pessoais",
|
297
|
-
"userName": "Do utilizador:",
|
298
|
-
"userPhone": "Telefone:",
|
299
|
-
"userPhoneError": "O número do celular deve ter pelo menos 5 caracteres e no máximo 12 caracteres",
|
300
|
-
"userEmail": "Correio eletrônico:",
|
301
|
-
"profileSecurityQuestion": "Pergunta de segurança:",
|
302
|
-
"profileSecurityQuestion2": "Tipo de documento de identidade (Documento de identidade nacional,identidade estrangeira, Pasaporte)",
|
303
|
-
"profileSecurityQuestionError": "A pergunta de segurança deve ter pelo menos 1 caractere e no máximo 120 caracteres",
|
304
|
-
"profileSecurityQuestionError2": "Somente letras e números são aceitos",
|
305
|
-
"firstName": "Nome:",
|
306
|
-
"profileSecurityAnswer": "Pergunta de segurança:",
|
307
|
-
"profileSecurityAnswer2": "Número do documento:",
|
308
|
-
"profileSecurityAnswerError": "A resposta de segurança deve ter pelo menos 1 caractere e no máximo 120 caracteres.",
|
309
|
-
"profileSecurityAnswerError2": "Somente letras e números são aceitos",
|
310
|
-
"lastName": "Sobrenome:",
|
311
|
-
"dateOfBirth": "Data de nascimento:",
|
312
|
-
"currency": "Moeda:",
|
313
|
-
"iban": "IBAN:",
|
314
|
-
"userTitle": "Qualificação:",
|
315
|
-
"locationDetails": "Detalhes da localização:",
|
316
|
-
"userCountry": "País:",
|
317
|
-
"userCity": "Cidade:",
|
318
|
-
"userCityError": "A cidade deve ter pelo menos 1 caractere e no máximo 50 caracteres",
|
319
|
-
"userAddress": "Endereço:",
|
320
|
-
"userAddressError": "O endereço deve ter pelo menos 1 caractere e no máximo 100 caracteres",
|
321
|
-
"userPostalCode": "Código postal:",
|
322
|
-
"userPostalCodeError": "O código postal deve ter pelo menos 1 caractere e no máximo 20 caracteres",
|
323
|
-
"userNotifications": "Notificações",
|
324
|
-
"userSMSNotification": "Habilitar notificações por SMS",
|
325
|
-
"userEmailNotification": "Ativar e-mail",
|
326
|
-
"userProfileSaveChanges": "Guardar mudanças",
|
327
|
-
"userProfileConfirmationMessage": "Suas alterações foram salvas!",
|
328
|
-
"userProfileUpdateError": "Ocorreu um erro ao tentar atualizar as informações do perfil"
|
329
|
-
},
|
330
|
-
"es-mx": {
|
331
|
-
"titleProfileInfo": "Información de Perfil",
|
332
|
-
"personalDetails": "Detalles personales",
|
333
|
-
"userName": "Usuario:",
|
334
|
-
"userPhone": "Teléfono:",
|
335
|
-
"userPhoneError": "Número de Móvl debe tener al menos 5 caracteres de largo y 12 caracteres máximo",
|
336
|
-
"userEmail": "Correo electrónico:",
|
337
|
-
"profileSecurityQuestion": "Pregunta de Seguridad:",
|
338
|
-
"profileSecurityQuestion2": "Tipo de documento de identificación (Documento de identidad nacional, Identificación extranjera, Pasaporte)",
|
339
|
-
"profileSecurityQuestionError": "La pregunta de seguridad debe tener al menos 1 caracter de largo y máximo 120 caracteres",
|
340
|
-
"profileSecurityQuestionError2": "Solo letras y números son aceptados",
|
341
|
-
"firstName": "Nombre:",
|
342
|
-
"profileSecurityAnswer": "Pregunta de seguridad:",
|
343
|
-
"profileSecurityAnswer2": "Número de documento:",
|
344
|
-
"profileSecurityAnswerError": "La respuesta de seguridad debe tener al menos 1 carácter de largo y máximo 120 caracteres.",
|
345
|
-
"profileSecurityAnswerError2": "Solo letras y números son aceptados",
|
346
|
-
"lastName": "Apellido:",
|
347
|
-
"dateOfBirth": "Fecha de nacimiento:",
|
348
|
-
"currency": "Moneda:",
|
349
|
-
"iban": "IBAN:",
|
350
|
-
"userTitle": "Título:",
|
351
|
-
"locationDetails": "Detalles de ubicación:",
|
352
|
-
"userCountry": "País:",
|
353
|
-
"userCity": "Ciudad:",
|
354
|
-
"userCityError": "Ciudad debe tener al menos 1 carácter de largo y 50 caracteres máximo",
|
355
|
-
"userAddress": "Dirección:",
|
356
|
-
"userAddressError": "Dirección debe tener al menos 1 carácter de largo y 100 caracteres máximo",
|
357
|
-
"userPostalCode": "Código Postal:",
|
358
|
-
"userPostalCodeError": "Código Postal debe tener al menos 1 carácter de largo y 20 caracteres máximo",
|
359
|
-
"userNotifications": "Notificaciones",
|
360
|
-
"userSMSNotification": "Habilitar notificaciones de SMS",
|
361
|
-
"userEmailNotification": "Habilitar correo electrónico",
|
362
|
-
"userProfileSaveChanges": "Guardar cambios",
|
363
|
-
"userProfileConfirmationMessage": "¡Sus cambios han sido guardados!",
|
364
|
-
"userProfileUpdateError": "Se ha producido un error al intentar actualizar la información del perfil"
|
365
|
-
}
|
366
|
-
}
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import { html } from 'lit-element';
|
2
|
-
|
3
|
-
import PlayerProfileInfo from '../src/PlayerProfileInfo';
|
4
|
-
|
5
|
-
// This default export determines where your story goes in the story list
|
6
|
-
export default {
|
7
|
-
title: 'PlayerProfileInfo',
|
8
|
-
};
|
9
|
-
|
10
|
-
// 👇 We create a “template” of how args map to rendering
|
11
|
-
const PlayerProfileInfo = ({ aProperty }) => html`<player-profile-info></player-profile-info>`;
|
12
|
-
|
13
|
-
export const FirstStory = PlayerProfileInfo.bind({});
|