@everymatrix/casino-tournaments-table 0.0.149 → 0.0.154

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-table",
3
- "version": "0.0.149",
3
+ "version": "0.0.154",
4
4
  "main": "dist/casino-tournaments-table.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": "cd3223e376363bec18ee6389e23ae064e8f76f19"
39
+ "gitHead": "77e179d783f4fc36369d90044b362a9e614c23c6"
40
40
  }
@@ -181,10 +181,10 @@
181
181
  <th>
182
182
  {#if sortable == 'true'}
183
183
  <button on:click={() => sortBy(column)} data-sort={sort}>
184
- {column}
184
+ {$_(`tournamentsTable.${column}`)}
185
185
  </button>
186
186
  {:else}
187
- <p data-sort={sort}>{column}</p>
187
+ <p data-sort={sort}>{$_(`tournamentsTable.${column}`)}</p>
188
188
  {/if}
189
189
  </th>
190
190
  {/each}
@@ -5,7 +5,10 @@ export const TournamentsTableTranslations = {
5
5
  score: 'Score',
6
6
  betcounts: 'Bet Counts',
7
7
  qualified: 'Qualified',
8
- nowinners: 'No winners for the time being. Be one of them!'
8
+ nowinners: 'No winners for the time being. Be one of them!',
9
+ Position: 'Position',
10
+ Name: 'Name',
11
+ Score: 'Score',
9
12
  }
10
13
  },
11
14
  tr: {
@@ -14,7 +17,22 @@ export const TournamentsTableTranslations = {
14
17
  score: 'Skor',
15
18
  betcounts: 'Bahis Sayısı',
16
19
  qualified: 'Tur atlamış',
17
- nowinners: 'Kazanan yok. Kazananlardan birisi ol!'
20
+ nowinners: 'Kazanan yok. Kazananlardan birisi ol!',
21
+ Position: 'Pozisyon',
22
+ Name: 'İsim',
23
+ Score: 'Skor',
24
+ }
25
+ },
26
+ el: {
27
+ tournamentsTable: {
28
+ leaderboard: 'Βαθμολογία',
29
+ score: 'Σκορ',
30
+ betcounts: 'Αριθμός Πονταρισμάτων',
31
+ qualified: 'Προκρίθηκε',
32
+ nowinners: 'Δεν υπάρχουν νικητές ακόμα.',
33
+ Position: 'Θέση',
34
+ Name: 'Ονομα',
35
+ Score: 'Σκορ',
18
36
  }
19
37
  },
20
38
  };