@everymatrix/casino-tournaments-controller 0.0.359 → 0.0.361
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/casino-tournaments-controller",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.361",
|
|
4
4
|
"main": "dist/casino-tournaments-controller.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": "0fe9249cd4a3ea07ecc6ea0f11bee32a4d259c7b"
|
|
40
40
|
}
|
|
@@ -280,6 +280,7 @@
|
|
|
280
280
|
|
|
281
281
|
$: session && setSession();
|
|
282
282
|
$: userid && setPlayerID();
|
|
283
|
+
$: lang && setLocale(lang);
|
|
283
284
|
$: filters && setActiveFilters();
|
|
284
285
|
$: lang && setActiveLanguage();
|
|
285
286
|
$: initialParameters = endpoint && numberoftournaments && showmorestep && lang;
|
package/src/translations.js
CHANGED
|
@@ -37,9 +37,9 @@ export const TournamentsControllerTranslations = {
|
|
|
37
37
|
500: '500 - Internal server error',
|
|
38
38
|
showMore: 'Mai mult',
|
|
39
39
|
Scheduled: 'Programate',
|
|
40
|
-
Ongoing: '
|
|
41
|
-
Finished: '
|
|
42
|
-
loading: 'Se
|
|
40
|
+
Ongoing: 'În desfășurare',
|
|
41
|
+
Finished: 'Finalizat',
|
|
42
|
+
loading: 'Se încarcă, asteptati ...',
|
|
43
43
|
noTournaments: 'Niciun turneu gasit'
|
|
44
44
|
}
|
|
45
45
|
},
|
|
@@ -47,9 +47,9 @@ export const TournamentsControllerTranslations = {
|
|
|
47
47
|
tournamentsController: {
|
|
48
48
|
500: '500 - Dahili sunucu hatası',
|
|
49
49
|
showMore: 'Daha fazla',
|
|
50
|
-
Scheduled: '
|
|
51
|
-
Ongoing: '
|
|
52
|
-
Finished: '
|
|
50
|
+
Scheduled: 'Planlanmış',
|
|
51
|
+
Ongoing: 'Devam Eden',
|
|
52
|
+
Finished: 'Sona Ermiş',
|
|
53
53
|
loading: 'Yükelniyor, lütfen bekleyin ...',
|
|
54
54
|
noTournaments: 'Herhangi bir turnuva bulunamadı.'
|
|
55
55
|
}
|
|
@@ -67,13 +67,24 @@ export const TournamentsControllerTranslations = {
|
|
|
67
67
|
},
|
|
68
68
|
es: {
|
|
69
69
|
tournamentsController: {
|
|
70
|
-
500: '
|
|
71
|
-
showMore: '
|
|
72
|
-
Scheduled: '
|
|
73
|
-
Ongoing: 'En
|
|
74
|
-
Finished: '
|
|
75
|
-
loading: '
|
|
76
|
-
noTournaments: 'No se
|
|
70
|
+
500: '500 - Error interno del servidor',
|
|
71
|
+
showMore: 'Mostrar más',
|
|
72
|
+
Scheduled: 'Programado',
|
|
73
|
+
Ongoing: 'En marcha',
|
|
74
|
+
Finished: 'Terminado',
|
|
75
|
+
loading: 'cargando, por favor espere…',
|
|
76
|
+
noTournaments: 'No se han encontrado torneos',
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
hu: {
|
|
80
|
+
tournamentsController: {
|
|
81
|
+
500: '500 - Belső szerver hiba',
|
|
82
|
+
showMore: 'Mutass többet',
|
|
83
|
+
Scheduled: 'Ütemezés',
|
|
84
|
+
Ongoing: 'Folyamatban',
|
|
85
|
+
Finished: 'Befejezett',
|
|
86
|
+
loading: 'Betöltés, kérjük várjon...',
|
|
87
|
+
noTournaments: 'Verseny nem található',
|
|
77
88
|
}
|
|
78
89
|
},
|
|
79
90
|
pt: {
|
|
@@ -86,5 +97,5 @@ export const TournamentsControllerTranslations = {
|
|
|
86
97
|
loading: 'Carregando, por favor espere ...',
|
|
87
98
|
noTournaments: 'Nenhum torneio encontrado'
|
|
88
99
|
}
|
|
89
|
-
}
|
|
100
|
+
}
|
|
90
101
|
};
|