@everymatrix/casino-games-category-section 1.12.0 → 1.12.1

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-games-category-section",
3
- "version": "1.12.0",
3
+ "version": "1.12.1",
4
4
  "main": "dist/casino-games-category-section.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "5ba32db088ec6ebf8eb6110b6172d8c9409b9f70"
38
+ "gitHead": "b07d8c9aee6584ea4b4d1718d7d928d4f2dfb523"
39
39
  }
@@ -5,7 +5,7 @@
5
5
  import { platformFavorite, getDevice, isMobile } from 'rvhelper';
6
6
  import { _, addNewMessages } from './i18n';
7
7
  import type { CategoryData } from './CasinoGamesCategorySection.type';
8
- import { GamesCategorySectionTranslations } from './translations';
8
+ import { TRANSLATIONS } from './translations';
9
9
  import moment from 'moment';
10
10
 
11
11
  import '@everymatrix/casino-game-thumbnail';
@@ -110,8 +110,8 @@
110
110
  });
111
111
  }
112
112
 
113
- Object.keys(GamesCategorySectionTranslations).forEach((item) => {
114
- addNewMessages(item, GamesCategorySectionTranslations[item]);
113
+ Object.keys(TRANSLATIONS).forEach((item) => {
114
+ addNewMessages(item, TRANSLATIONS[item]);
115
115
  });
116
116
 
117
117
  if (typeof document.hidden !== 'undefined') { // Opera 12.10 and Firefox 18 and later support
@@ -645,23 +645,23 @@
645
645
  <div class="CasinoGamesHeader Searched {isMobile(userAgent) ? 'CasinoGamesHeaderMobile' : ''}" part="CasinoGamesHeader Searched {isMobile(userAgent) ? 'CasinoGamesHeaderMobile' : ''}">
646
646
  {#if recentSearched}
647
647
  <h3 class="StatusText" part="StatusText">
648
- {$_('gamesCategorySection.recentSearchedItems')}
648
+ {$_('recentSearchedItems')}
649
649
  </h3>
650
650
  {:else}
651
651
  {#if !shownCategoryData.length}
652
652
  <h3 class="StatusText" part="StatusText">
653
- {$_('gamesCategorySection.noResults')}
653
+ {$_('noResults')}
654
654
  </h3>
655
655
  {:else}
656
656
  <h3 class="StatusText" part="StatusText">
657
- {$_('gamesCategorySection.searchedItems')}
657
+ {$_('searchedItems')}
658
658
  </h3>
659
659
  {/if}
660
660
  {/if}
661
661
  </div>
662
662
  {#if shownCategoryData}
663
663
  {#if !showItems}
664
- <p class="NoSearchResults NoRecentSearches NoRecentSearchesCenter {isMobile(userAgent) ? 'NoRecentSearchesMobile' : ''}" part="NoSearchResults NoRecentSearches NoRecentSearchesCenter {isMobile(userAgent) ? 'NoRecentSearchesMobile' : ''}">{$_('gamesCategorySection.noRecentSearch')}</p>
664
+ <p class="NoSearchResults NoRecentSearches NoRecentSearchesCenter {isMobile(userAgent) ? 'NoRecentSearchesMobile' : ''}" part="NoSearchResults NoRecentSearches NoRecentSearchesCenter {isMobile(userAgent) ? 'NoRecentSearchesMobile' : ''}">{$_('noRecentSearch')}</p>
665
665
  {/if}
666
666
  <ul class="CasinoGamesGrid SearchedGamesGrid GamesListIncreasedGap" part="CasinoGamesGrid SearchedGamesGrid GamesListIncreasedGap">
667
667
  {#each shownCategoryData as gameprops, index}
@@ -711,7 +711,7 @@
711
711
  <!-- svelte-ignore a11y-missing-attribute -->
712
712
  <a class="CategoryNameLink" part="CategoryNameLink" on:click="{e => showCategory(categoryData.id, categoryData)}">
713
713
  <span class="CategoryLoadMore" part="CategoryLoadMore">
714
- {$_('gamesCategorySection.viewAll')} ({categoryData.games.total})
714
+ {$_('viewAll')} ({categoryData.games.total})
715
715
  </span>
716
716
  </a>
717
717
  {:else}
@@ -791,7 +791,7 @@
791
791
  {#if casinomygames !== 'true'}
792
792
  <div class="CasinoGamesHeader" part="CasinoGamesHeader">
793
793
  <h3 class="CategoryName" part="CategoryName" bind:this={categoryName}>
794
- {$_('gamesCategorySection.favorites')}
794
+ {$_('favorites')}
795
795
  <span class="CategoryFavName">({favoriteGamesData.items.length})</span>
796
796
  </h3>
797
797
  </div>
@@ -883,16 +883,16 @@
883
883
  <path d="m180 65 2.021 6.219h6.539l-5.291 3.843 2.021 6.22-5.29-3.844-5.29 3.843 2.021-6.219-5.291-3.843h6.539L180 65z" fill="var(--emfe-w-color-primary, #D0046C)" stroke="var(--emfe-w-color-primary, #D0046C)" stroke-linecap="round" stroke-linejoin="round"/>
884
884
  <path d="m74 27 2.02 6.219h6.54l-5.29 3.843 2.02 6.22L74 39.437l-5.29 3.843 2.02-6.219-5.29-3.843h6.54L74 27z" stroke="var(--emfe-w-color-primary, #D0046C)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
885
885
  </svg>
886
- <span class="NoFavoriteText NoFavoriteTextHighlight" part="NoFavoriteText NoFavoriteTextHighlight">{$_('gamesCategorySection.noFavoritesTitle')}</span>
886
+ <span class="NoFavoriteText NoFavoriteTextHighlight" part="NoFavoriteText NoFavoriteTextHighlight">{$_('noFavoritesTitle')}</span>
887
887
  {#if isMobile(userAgent)}
888
- <span class="NoFavoriteText" part="NoFavoriteText">{$_('gamesCategorySection.noFavoritesMobile')}</span>
888
+ <span class="NoFavoriteText" part="NoFavoriteText">{$_('noFavoritesMobile')}</span>
889
889
  {:else}
890
- <span class="NoFavoriteText" part="NoFavoriteText">{$_('gamesCategorySection.noFavorites')}</span>
890
+ <span class="NoFavoriteText" part="NoFavoriteText">{$_('noFavorites')}</span>
891
891
  {/if}
892
892
  </p>
893
893
  {/each}
894
894
  {:else}
895
- <p>{$_('gamesCategorySection.waiting')}</p>
895
+ <p>{$_('waiting')}</p>
896
896
  {/if}
897
897
  {/if}
898
898
  </ul>
@@ -1,187 +1,156 @@
1
- export const GamesCategorySectionTranslations = {
2
- en: {
3
- gamesCategorySection: {
4
- showMore: 'More',
5
- viewAll: 'Show all',
6
- searchedItems: 'Search result',
7
- recentSearchedItems: 'Recently searched',
8
- favorites: 'Favorites',
9
- noRecentSearch: 'No search started yet. Simply search for a game.',
10
- noResults: 'Sorry, no results found. Please try again.',
11
- noFavoritesMobile: 'Click on the star icon at the top right corner of a game to save it as favorite.',
12
- noFavorites: 'Click on the star icon at the top right corner of a game to save it as favorite.',
13
- noFavoritesTitle: 'You do not have any favored games yet.',
14
- waiting: 'Waiting',
15
- }
1
+ export const TRANSLATIONS = {
2
+ "en": {
3
+ "showMore": "More",
4
+ "viewAll": "Show all",
5
+ "searchedItems": "Search result",
6
+ "recentSearchedItems": "Recently searched",
7
+ "favorites": "Favorites",
8
+ "noRecentSearch": "No search started yet. Simply search for a game.",
9
+ "noResults": "Sorry, no results found. Please try again.",
10
+ "noFavoritesMobile": "Click on the star icon at the top right corner of a game to save it as favorite.",
11
+ "noFavorites": "Click on the star icon at the top right corner of a game to save it as favorite.",
12
+ "noFavoritesTitle": "You do not have any favored games yet.",
13
+ "waiting": "Waiting"
16
14
  },
17
- 'zh-hk': {
18
- gamesCategorySection: {
19
- showMore: '更多的',
20
- viewAll: '顯示所有',
21
- searchedItems: '搜索結果',
22
- recentSearchedItems: '最近搜索過',
23
- favorites: '收藏夹',
24
- noRecentSearch: '尚未開始搜索。 只需搜索遊戲。',
25
- noResults: '抱歉,沒有找到結果。 請再試一次。',
26
- noFavoritesMobile: '您現在可以通過點擊遊戲頁面上的星形圖標將游戲添加到收藏夾。',
27
- noFavorites: '您現在可以通過單擊遊戲縮略圖上的星形圖標將游戲添加到收藏夾。',
28
- noFavoritesTitle: '您還沒有任何喜歡的遊戲。',
29
- waiting: '等待',
30
- }
15
+ "zh-hk": {
16
+ "showMore": "更多的",
17
+ "viewAll": "顯示所有",
18
+ "searchedItems": "搜索結果",
19
+ "recentSearchedItems": "最近搜索過",
20
+ "favorites": "收藏夹",
21
+ "noRecentSearch": "尚未開始搜索。 只需搜索遊戲。",
22
+ "noResults": "抱歉,沒有找到結果。 請再試一次。",
23
+ "noFavoritesMobile": "您現在可以通過點擊遊戲頁面上的星形圖標將游戲添加到收藏夾。",
24
+ "noFavorites": "您現在可以通過單擊遊戲縮略圖上的星形圖標將游戲添加到收藏夾。",
25
+ "noFavoritesTitle": "您還沒有任何喜歡的遊戲。",
26
+ "waiting": "等待"
31
27
  },
32
- de: {
33
- gamesCategorySection: {
34
- showMore: 'Mehr',
35
- viewAll: 'Alle anzeigen',
36
- searchedItems: 'Ergebnis suchen',
37
- recentSearchedItems: 'Zuletzt gesucht',
38
- noRecentSearch: 'Noch keine Suche gestartet. Einfach nach einem Spiel suchen.',
39
- noResults: 'Sorry, kein Treffer. Bitte erneut versuchen.',
40
- noResults: 'Sorry, no results found. Please try again.',
41
- noFavoritesMobile: 'Klicke auf das Sternsymbol in der oberen rechten Ecke eines Spiels, um es als Favorit zu speichern.',
42
- noFavorites: 'Klicke auf das Sternsymbol in der oberen rechten Ecke eines Spiels, um es als Favorit zu speichern.',
43
- noFavoritesTitle: 'You do not have any favored games yet.',
44
- waiting: 'Waiting',
45
- }
28
+ "de": {
29
+ "showMore": "Mehr",
30
+ "viewAll": "Alle anzeigen",
31
+ "searchedItems": "Ergebnis suchen",
32
+ "recentSearchedItems": "Zuletzt gesucht",
33
+ "noRecentSearch": "Noch keine Suche gestartet. Einfach nach einem Spiel suchen.",
34
+ "noResults": "Sorry, no results found. Please try again.",
35
+ "noFavoritesMobile": "Klicke auf das Sternsymbol in der oberen rechten Ecke eines Spiels, um es als Favorit zu speichern.",
36
+ "noFavorites": "Klicke auf das Sternsymbol in der oberen rechten Ecke eines Spiels, um es als Favorit zu speichern.",
37
+ "noFavoritesTitle": "You do not have any favored games yet.",
38
+ "waiting": "Waiting"
46
39
  },
47
- it: {
48
- gamesCategorySection: {
49
- showMore: 'Altro',
50
- viewAll: 'Mostra tutto',
51
- searchedItems: 'risultato',
52
- recentSearchedItems: 'Ricerche recenti',
53
- noRecentSearch: 'Non sono ancora state avviate ricerche. Esegui semplicemente la ricerca per un gioco.',
54
- noResults: 'Spiacenti, nessun risultato. Si prega di riprovare.'
55
- }
40
+ "it": {
41
+ "showMore": "Altro",
42
+ "viewAll": "Mostra tutto",
43
+ "searchedItems": "risultato",
44
+ "recentSearchedItems": "Ricerche recenti",
45
+ "noRecentSearch": "Non sono ancora state avviate ricerche. Esegui semplicemente la ricerca per un gioco.",
46
+ "noResults": "Spiacenti, nessun risultato. Si prega di riprovare."
56
47
  },
57
- fr: {
58
- gamesCategorySection: {
59
- showMore: 'Plus de',
60
- viewAll: 'Afficher tous',
61
- searchedItems: 'Recherche du resultat',
62
- recentSearchedItems: 'Recherches récentes',
63
- favorites: 'Favoris',
64
- noRecentSearch: 'Aucune recherche n\'a encore été lancée . il suffit de chercher un jeu.',
65
- noResults: 'Désolé , aucun résultat trouvé.veuillez réessayer.',
66
- noFavoritesMobile: 'Vous pouvez désormais ajouter des jeux à vos favoris en cliquant sur l\'icone étoile située sur la page du jeu.',
67
- noFavorites: 'Vous pouvez désormais ajouter des jeux à vos favoris en cliquant sur l\'icone en forme d\'etoile située sur la vignette du jeu',
68
- noFavoritesTitle: 'Vous n\'avez pas encore de jeux favoris.',
69
- waiting: 'Attente',
70
- }
48
+ "fr": {
49
+ "showMore": "Plus de",
50
+ "viewAll": "Afficher tous",
51
+ "searchedItems": "Recherche du resultat",
52
+ "recentSearchedItems": "Recherches récentes",
53
+ "favorites": "Favoris",
54
+ "noRecentSearch": "Aucune recherche n'a encore été lancée . il suffit de chercher un jeu.",
55
+ "noResults": "Désolé , aucun résultat trouvé.veuillez réessayer.",
56
+ "noFavoritesMobile": "Vous pouvez désormais ajouter des jeux à vos favoris en cliquant sur l'icone étoile située sur la page du jeu.",
57
+ "noFavorites": "Vous pouvez désormais ajouter des jeux à vos favoris en cliquant sur l'icone en forme d'etoile située sur la vignette du jeu",
58
+ "noFavoritesTitle": "Vous n'avez pas encore de jeux favoris.",
59
+ "waiting": "Attente"
71
60
  },
72
- es: {
73
- gamesCategorySection: {
74
- showMore: 'Más',
75
- viewAll: 'Mostrar todas',
76
- searchedItems: 'Resultado de busqueda',
77
- recentSearchedItems: 'Buscado recientemente',
78
- favorites: 'Favoritos',
79
- noRecentSearch: 'Aún no inicia busqueda. Solo busque un juego',
80
- noResults: 'Disculpe',
81
- noFavoritesMobile: 'Ahora puede agregar juegos a sus Favoritos dando clic al ícono de estrella en esta página',
82
- noFavorites: 'Ahora puede agregar juegos a sus Favoritos dando click al ícono de la miniatura del juego.',
83
- noFavoritesTitle: 'No tiene juegos Favoritos aún',
84
- waiting: 'Cargando',
85
- }
61
+ "es": {
62
+ "showMore": "Más",
63
+ "viewAll": "Mostrar todas",
64
+ "searchedItems": "Resultado de busqueda",
65
+ "recentSearchedItems": "Buscado recientemente",
66
+ "favorites": "Favoritos",
67
+ "noRecentSearch": "Aún no inicia busqueda. Solo busque un juego",
68
+ "noResults": "Disculpe",
69
+ "noFavoritesMobile": "Ahora puede agregar juegos a sus Favoritos dando clic al ícono de estrella en esta página",
70
+ "noFavorites": "Ahora puede agregar juegos a sus Favoritos dando click al ícono de la miniatura del juego.",
71
+ "noFavoritesTitle": "No tiene juegos Favoritos aún",
72
+ "waiting": "Cargando"
86
73
  },
87
- tr: {
88
- gamesCategorySection: {
89
- showMore: 'Daha fazla göster',
90
- viewAll: 'Hepsini gör',
91
- searchedItems: 'Aranan öğeler',
92
- recentSearchedItems: 'Son Aranan Öğeler',
93
- noRecentSearch: 'Henüz arama başlamadı. Sadece bir oyun arayın.',
94
- noResults: 'Üzgünüz, sonuç bulunamadı. Lütfen tekrar deneyin'
95
- }
74
+ "tr": {
75
+ "showMore": "Daha fazla göster",
76
+ "viewAll": "Hepsini gör",
77
+ "searchedItems": "Aranan öğeler",
78
+ "recentSearchedItems": "Son Aranan Öğeler",
79
+ "noRecentSearch": "Henüz arama başlamadı. Sadece bir oyun arayın.",
80
+ "noResults": "Üzgünüz, sonuç bulunamadı. Lütfen tekrar deneyin"
96
81
  },
97
- ru: {
98
- gamesCategorySection: {
99
- showMore: 'Показать больше',
100
- viewAll: 'Посмотреть все',
101
- searchedItems: 'Искомые товары',
102
- recentSearchedItems: 'Недавние поисковые запросы',
103
- noRecentSearch: 'Поиск еще не начался. Просто найдите игру.',
104
- noResults: 'Извините, результатов не найдено. Пожалуйста, попробуйте еще раз'
105
- }
82
+ "ru": {
83
+ "showMore": "Показать больше",
84
+ "viewAll": "Посмотреть все",
85
+ "searchedItems": "Искомые товары",
86
+ "recentSearchedItems": "Недавние поисковые запросы",
87
+ "noRecentSearch": "Поиск еще не начался. Просто найдите игру.",
88
+ "noResults": "Извините, результатов не найдено. Пожалуйста, попробуйте еще раз"
106
89
  },
107
- ro: {
108
- gamesCategorySection: {
109
- showMore: 'Arata mai mult',
110
- viewAll: 'Vezi toate',
111
- searchedItems: 'Rezultatele cautarii',
112
- recentSearchedItems: 'Cautari recente',
113
- favorites: 'Favorite',
114
- noRecentSearch: 'Nici o căutare nu a început încă. Pur și simplu căutați un joc.',
115
- noResults: 'Ne pare rau, nu s-au gasit rezultate. Va rugam sa incercati din nou',
116
- noFavoritesMobile: 'Acum puteți adăuga jocuri la favorite atingând pictograma stea situată pe pagina jocului.',
117
- noFavorites: 'Acum puteți adăuga jocuri la favorite făcând clic pe pictograma stea situată pe miniatura jocului.',
118
- noFavoritesTitle: 'Nu aveți încă niciun joc preferat.',
119
- waiting: 'Aşteptare',
120
- }
90
+ "ro": {
91
+ "showMore": "Arata mai mult",
92
+ "viewAll": "Vezi toate",
93
+ "searchedItems": "Rezultatele cautarii",
94
+ "recentSearchedItems": "Cautari recente",
95
+ "favorites": "Favorite",
96
+ "noRecentSearch": "Nici o căutare nu a început încă. Pur și simplu căutați un joc.",
97
+ "noResults": "Ne pare rau, nu s-au gasit rezultate. Va rugam sa incercati din nou",
98
+ "noFavoritesMobile": "Acum puteți adăuga jocuri la favorite atingând pictograma stea situată pe pagina jocului.",
99
+ "noFavorites": "Acum puteți adăuga jocuri la favorite făcând clic pe pictograma stea situată pe miniatura jocului.",
100
+ "noFavoritesTitle": "Nu aveți încă niciun joc preferat.",
101
+ "waiting": "Aşteptare"
121
102
  },
122
- hr: {
123
- gamesCategorySection: {
124
- showMore: 'Više',
125
- viewAll: 'Pokaži sve',
126
- searchedItems: 'Pretraži rezultat',
127
- recentSearchedItems: 'Zadnje pretrage',
128
- noRecentSearch: 'Pretraživanje nije pokrenuto. Jednostavno potražite željenu igru.',
129
- noResults: 'Žao nam je, nema rezultata. Molimo pokušajte ponovno.'
130
- }
103
+ "hr": {
104
+ "showMore": "Više",
105
+ "viewAll": "Pokaži sve",
106
+ "searchedItems": "Pretraži rezultat",
107
+ "recentSearchedItems": "Zadnje pretrage",
108
+ "noRecentSearch": "Pretraživanje nije pokrenuto. Jednostavno potražite željenu igru.",
109
+ "noResults": "Žao nam je, nema rezultata. Molimo pokušajte ponovno."
131
110
  },
132
- hu: {
133
- gamesCategorySection: {
134
- showMore: 'Több',
135
- viewAll: 'Az összes megjelenítése',
136
- searchedItems: 'Keresés eredménye',
137
- recentSearchedItems: 'Legutóbb keresett',
138
- noRecentSearch: 'A keresés még nem kezdődött el. Egyszerűen keressen egy játékot.',
139
- noResults: 'Sajnos nincs találat. Kérjük próbálja újra.'
140
- }
111
+ "hu": {
112
+ "showMore": "Több",
113
+ "viewAll": "Az összes megjelenítése",
114
+ "searchedItems": "Keresés eredménye",
115
+ "recentSearchedItems": "Legutóbb keresett",
116
+ "noRecentSearch": "A keresés még nem kezdődött el. Egyszerűen keressen egy játékot.",
117
+ "noResults": "Sajnos nincs találat. Kérjük próbálja újra."
141
118
  },
142
- pl: {
143
- gamesCategorySection: {
144
- showMore: 'Więcej',
145
- viewAll: 'Pokaż wszystkie',
146
- searchedItems: 'Wynik wyszukiwania',
147
- recentSearchedItems: 'Ostatnio wyszukiwane',
148
- noRecentSearch: 'Nie rozpoczęto wyszukiwania. W prosty sposób wyszukaj grę.',
149
- noResults: 'Przepraszamy, brak wyników. Prosimy spróbować ponownie.'
150
- }
119
+ "pl": {
120
+ "showMore": "Więcej",
121
+ "viewAll": "Pokaż wszystkie",
122
+ "searchedItems": "Wynik wyszukiwania",
123
+ "recentSearchedItems": "Ostatnio wyszukiwane",
124
+ "noRecentSearch": "Nie rozpoczęto wyszukiwania. W prosty sposób wyszukaj grę.",
125
+ "noResults": "Przepraszamy, brak wyników. Prosimy spróbować ponownie."
151
126
  },
152
- pt: {
153
- gamesCategorySection: {
154
- showMore: 'Mais',
155
- viewAll: 'Mostre tudo',
156
- searchedItems: 'Resultado da pesquisa',
157
- recentSearchedItems: 'Pesquisado recentemente',
158
- favorites: 'Favorito',
159
- noRecentSearch: 'Nenhuma pesquisa foi iniciada ainda. Simplesmente procure por um jogo.',
160
- noResults: 'Desculpe, nenhum resultado encontrado. Por favor, tente novamente.',
161
- noFavoritesMobile: 'Agora você pode adicionar jogos aos favoritos tocando no ícone da estrela localizado na página do jogo.',
162
- noFavorites: 'Agora você pode adicionar jogos aos favoritos clicando no ícone da estrela localizado na miniatura do jogo.',
163
- noFavoritesTitle: 'Você ainda não tem nenhum jogo favorito.',
164
- waiting: 'Aguardando',
165
- }
127
+ "pt": {
128
+ "showMore": "Mais",
129
+ "viewAll": "Mostre tudo",
130
+ "searchedItems": "Resultado da pesquisa",
131
+ "recentSearchedItems": "Pesquisado recentemente",
132
+ "favorites": "Favorito",
133
+ "noRecentSearch": "Nenhuma pesquisa foi iniciada ainda. Simplesmente procure por um jogo.",
134
+ "noResults": "Desculpe, nenhum resultado encontrado. Por favor, tente novamente.",
135
+ "noFavoritesMobile": "Agora você pode adicionar jogos aos favoritos tocando no ícone da estrela localizado na página do jogo.",
136
+ "noFavorites": "Agora você pode adicionar jogos aos favoritos clicando no ícone da estrela localizado na miniatura do jogo.",
137
+ "noFavoritesTitle": "Você ainda não tem nenhum jogo favorito.",
138
+ "waiting": "Aguardando"
166
139
  },
167
- sl: {
168
- gamesCategorySection: {
169
- showMore: 'Več',
170
- viewAll: 'Prikaži vse',
171
- searchedItems: 'Rezultati iskanja',
172
- recentSearchedItems: 'Nedavno iskanje',
173
- noRecentSearch: 'Niste še začeli z iskanjem. Enostavno poiščite želeno igro.',
174
- noResults: 'Oprostite, ni rezultata. Prosimo poizkusite ponovno.'
175
- }
140
+ "sl": {
141
+ "showMore": "Več",
142
+ "viewAll": "Prikaži vse",
143
+ "searchedItems": "Rezultati iskanja",
144
+ "recentSearchedItems": "Nedavno iskanje",
145
+ "noRecentSearch": "Niste še začeli z iskanjem. Enostavno poiščite želeno igro.",
146
+ "noResults": "Oprostite, ni rezultata. Prosimo poizkusite ponovno."
176
147
  },
177
- sr: {
178
- gamesCategorySection: {
179
- showMore: 'Više',
180
- viewAll: 'Prikaži sve',
181
- searchedItems: 'Pretraži rezultat',
182
- recentSearchedItems: 'Zadnja pretraga',
183
- noRecentSearch: 'Još nije pokrenuta pretraga. Jednostavno pretraži igre.',
184
- noResults: 'Žao nam je, nema pogodaka. Pokušaj ponovo.'
185
- }
148
+ "sr": {
149
+ "showMore": "Više",
150
+ "viewAll": "Prikaži sve",
151
+ "searchedItems": "Pretraži rezultat",
152
+ "recentSearchedItems": "Zadnja pretraga",
153
+ "noRecentSearch": "Još nije pokrenuta pretraga. Jednostavno pretraži igre.",
154
+ "noResults": "Žao nam je, nema pogodaka. Pokušaj ponovo."
186
155
  }
187
- };
156
+ }