@everymatrix/casino-tournaments-controller 0.0.163 → 0.0.167

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.163",
3
+ "version": "0.0.167",
4
4
  "main": "dist/casino-tournaments-controller.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -29,11 +29,11 @@
29
29
  "typescript": "^3.9.3"
30
30
  },
31
31
  "dependencies": {
32
- "@everymatrix/casino-tournaments-details": "^0.0.163",
33
- "@everymatrix/casino-tournaments-filter-controller": "^0.0.163",
34
- "@everymatrix/casino-tournaments-list-controller": "^0.0.163",
35
- "@everymatrix/casino-tournaments-page-controller": "^0.0.163",
36
- "@everymatrix/casino-tournaments-thumbnail-controller": "^0.0.163",
32
+ "@everymatrix/casino-tournaments-details": "^0.0.167",
33
+ "@everymatrix/casino-tournaments-filter-controller": "^0.0.167",
34
+ "@everymatrix/casino-tournaments-list-controller": "^0.0.167",
35
+ "@everymatrix/casino-tournaments-page-controller": "^0.0.167",
36
+ "@everymatrix/casino-tournaments-thumbnail-controller": "^0.0.167",
37
37
  "cross-env": "^7.0.3",
38
38
  "sirv-cli": "^1.0.0",
39
39
  "svelte": "^3.0.0"
@@ -41,5 +41,5 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "0987227fd54b268a6dedfb7687bc94ba10d87ea7"
44
+ "gitHead": "a98fcd6786deb9d9c802df1b69ad386603eac005"
45
45
  }
@@ -231,7 +231,7 @@
231
231
  <div class="SecondRow">
232
232
  {#if tournamentsNumber == 0}
233
233
  {#if isLoading}
234
- <p>Loading, please wait ...</p>
234
+ <p>{$_('tournamentsController.loading')}</p>
235
235
  {:else}
236
236
  <p>No tournaments found</p>
237
237
  {/if}
@@ -5,7 +5,9 @@ export const TournamentsControllerTranslations = {
5
5
  showMore: 'Show more',
6
6
  Scheduled: 'Scheduled',
7
7
  Ongoing: 'OnGoing',
8
- Finished: 'Finished'
8
+ Finished: 'Finished',
9
+ loading: 'Loading, please wait ...',
10
+ noTournaments: 'No tournaments found'
9
11
  }
10
12
  },
11
13
  tr: {
@@ -14,7 +16,9 @@ export const TournamentsControllerTranslations = {
14
16
  showMore: 'Daha fazla',
15
17
  Scheduled: 'Scheduledddddd',
16
18
  Ongoing: 'OnGoingggggg',
17
- Finished: 'Finisheddddddd'
19
+ Finished: 'Finisheddddddd',
20
+ loading: 'Yükelniyor, lütfen bekleyin ...',
21
+ noTournaments: 'Herhangi bir turnuva bulunamadı.'
18
22
  }
19
23
  },
20
24
  el: {
@@ -23,7 +27,9 @@ export const TournamentsControllerTranslations = {
23
27
  showMore: 'Περισσότερα',
24
28
  Scheduled: 'ΠΡΟΓΡΑΜΜΑΤΙΣΜΕΝΑ',
25
29
  Ongoing: 'ΤΡΕΧΟΝΤΑ',
26
- Finished: 'ΟΛΟΚΛΗΡΩΜΕΝΑ'
30
+ Finished: 'ΟΛΟΚΛΗΡΩΜΕΝΑ',
31
+ loading: 'Φορτώνει, παρακαλούμε περιμένετε ...',
32
+ noTournaments: 'Δεν βρέθηκαν τουρνουά'
27
33
  }
28
34
  },
29
35
  };