Spaces:
Sleeping
Sleeping
| import type { TranslationStrings } from '../types'; | |
| const todo: TranslationStrings = { | |
| 'todo.subtab.packing': 'Packliste', | |
| 'todo.subtab.todo': 'Aufgaben', | |
| 'todo.completed': 'erledigt', | |
| 'todo.filter.all': 'Alle', | |
| 'todo.filter.open': 'Offen', | |
| 'todo.filter.done': 'Erledigt', | |
| 'todo.uncategorized': 'Ohne Kategorie', | |
| 'todo.namePlaceholder': 'Aufgabenname', | |
| 'todo.descriptionPlaceholder': 'Beschreibung (optional)', | |
| 'todo.unassigned': 'Nicht zugewiesen', | |
| 'todo.noCategory': 'Keine Kategorie', | |
| 'todo.hasDescription': 'Hat Beschreibung', | |
| 'todo.addItem': 'Neue Aufgabe hinzufügen', | |
| 'todo.sidebar.sortBy': 'Sortieren nach', | |
| 'todo.priority': 'Priorität', | |
| 'todo.newCategoryLabel': 'neu', | |
| 'todo.newCategory': 'Kategoriename', | |
| 'todo.addCategory': 'Kategorie hinzufügen', | |
| 'todo.newItem': 'Neue Aufgabe', | |
| 'todo.empty': 'Noch keine Aufgaben. Erstelle eine Aufgabe um loszulegen!', | |
| 'todo.filter.my': 'Meine Aufgaben', | |
| 'todo.filter.overdue': 'Überfällig', | |
| 'todo.sidebar.tasks': 'Aufgaben', | |
| 'todo.sidebar.categories': 'Kategorien', | |
| 'todo.detail.title': 'Aufgabe', | |
| 'todo.detail.description': 'Beschreibung', | |
| 'todo.detail.category': 'Kategorie', | |
| 'todo.detail.dueDate': 'Fällig am', | |
| 'todo.detail.assignedTo': 'Zuständig', | |
| 'todo.detail.delete': 'Löschen', | |
| 'todo.detail.save': 'Speichern', | |
| 'todo.sortByPrio': 'Priorität', | |
| 'todo.detail.priority': 'Priorität', | |
| 'todo.detail.noPriority': 'Keine', | |
| 'todo.detail.create': 'Aufgabe erstellen', | |
| }; | |
| export default todo; | |