@everymatrix/casino-search 0.0.408 → 0.0.409
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/dist/casino-search.js +28 -21
- package/dist/casino-search.js.map +1 -1
- package/package.json +2 -2
- package/src/CasinoSearch.svelte +1 -1
- package/src/translations.js +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-search",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.409",
|
|
4
4
|
"main": "index.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": "9c1c3fb8c2942cecd4325eb5d4c8918496160976"
|
|
40
40
|
}
|
package/src/CasinoSearch.svelte
CHANGED
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
</svg>
|
|
240
240
|
</div>
|
|
241
241
|
<div class="SearchContainer">
|
|
242
|
-
<input class="SearchInput" type="search" placeholder="
|
|
242
|
+
<input class="SearchInput" type="search" placeholder="{$_('Translations.placeHolderSearchGames')}" bind:value={searchValue} on:focus={onFocus} bind:this={searchElement}>
|
|
243
243
|
<span on:click={() => clearSearch()} class="SearchClearButton { searchValue.length != 0 ? '' : 'NotVisible'}">
|
|
244
244
|
<svg width="11" height="11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
245
245
|
<path d="m1.45 1.5 8.1 8M1.45 9.5l8.1-8" stroke="#717171" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
package/src/translations.js
CHANGED
|
@@ -2,6 +2,7 @@ export const Translations = {
|
|
|
2
2
|
en: {
|
|
3
3
|
Translations: {
|
|
4
4
|
recentSearch: "Recent search",
|
|
5
|
+
placeHolderSearchGames: "Search for Games",
|
|
5
6
|
loading: "Loading, please wait",
|
|
6
7
|
searchResult: "Search result",
|
|
7
8
|
cancel: "Cancel",
|
|
@@ -25,14 +26,15 @@ export const Translations = {
|
|
|
25
26
|
},
|
|
26
27
|
de: {
|
|
27
28
|
Translations: {
|
|
28
|
-
recentSearch: "
|
|
29
|
+
recentSearch: "Letzte Suche",
|
|
30
|
+
placeHolderSearchGames: "Hier nach Spielen suchen",
|
|
29
31
|
loading: "Es lädt, bitte warten...",
|
|
30
|
-
searchResult: "
|
|
31
|
-
cancel: "
|
|
32
|
+
searchResult: "Ergebnis suchen",
|
|
33
|
+
cancel: "Abbrechen",
|
|
32
34
|
notFound: "Spiel wurde nicht gefunden!",
|
|
33
|
-
notFoundText: "Bitte den
|
|
35
|
+
notFoundText: "Spiel nicht gefunden! Bitte verwende den richtigen Spielnamen um es zu starten.",
|
|
34
36
|
noRecentSearches:
|
|
35
|
-
"
|
|
37
|
+
"Keine vorherige Suche vorhanden! Suche nach einem beliebigen Spiel",
|
|
36
38
|
},
|
|
37
39
|
},
|
|
38
40
|
it: {
|