- Introduce a new 'more' translation key in various language files to improve internationalization support. - Update SearchBar component to include an IconButton for additional actions, enhancing user interaction. - Ensure consistency in language context by adding the 'more' key in Arabic, Bulgarian, Czech, German, Greek, English, Spanish, French, Croatian, Hungarian, Italian, Polish, Romanian, Russian, Slovak, Slovenian, Albanian, Serbian, Swedish, Turkish, Ukrainian, and Chinese.
21 lines
566 B
JavaScript
21 lines
566 B
JavaScript
export default {
|
|
"loading": "Loading...", // Lädt...
|
|
"error": "Error", // Fehler
|
|
"close": "Close", // Schließen
|
|
"save": "Save", // Speichern
|
|
"cancel": "Cancel", // Abbrechen
|
|
"ok": "OK", // OK
|
|
"yes": "Yes", // Ja
|
|
"no": "No", // Nein
|
|
"next": "Next", // Weiter
|
|
"back": "Back", // Zurück
|
|
"edit": "Edit", // Bearbeiten
|
|
"delete": "Delete", // Löschen
|
|
"add": "Add", // Hinzufügen
|
|
"remove": "Remove", // Entfernen
|
|
"products": "Products", // Produkte
|
|
"product": "Product", // Produkt
|
|
"days": "Days", // Tage
|
|
"more": "more" // mehr
|
|
};
|