File size: 1,518 Bytes
98fbc6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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;