Skip to content

Commit

Permalink
fix(search): add missing translation
Browse files Browse the repository at this point in the history
  • Loading branch information
anehx committed Nov 16, 2023
1 parent 9138676 commit 5ceaa42
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon/components/search.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<input
type="search"
class="uk-search-input uk-background-default"
placeholder="Search..."
placeholder={{t "alexandria.search"}}
value={{@search}}
aria-label="Search input"
aria-label={{t "alexandria.search"}}
data-test-search-input
{{on "input" (perform this.updateSearch)}}
/>
Expand Down
1 change: 1 addition & 0 deletions translations/de.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
alexandria:
loading: "Lädt..."
search: "Suchen..."
nothing-found: "Wir haben nichts gefunden..."
delete: "Löschen"
upload-file: "Datei hochladen"
Expand Down
1 change: 1 addition & 0 deletions translations/en.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
alexandria:
loading: "Loading..."
search: "Search..."
nothing-found: "We found nothing..."
delete: "Delete"
upload-file: "Upload file"
Expand Down

0 comments on commit 5ceaa42

Please sign in to comment.