File size: 1,492 Bytes
48f8f0c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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': 'Paklijst',
  'todo.subtab.todo': 'Taken',
  'todo.completed': 'voltooid',
  'todo.filter.all': 'Alles',
  'todo.filter.open': 'Openstaand',
  'todo.filter.done': 'Klaar',
  'todo.uncategorized': 'Zonder categorie',
  'todo.namePlaceholder': 'Taaknaam',
  'todo.descriptionPlaceholder': 'Beschrijving (optioneel)',
  'todo.unassigned': 'Niet toegewezen',
  'todo.noCategory': 'Geen categorie',
  'todo.hasDescription': 'Heeft beschrijving',
  'todo.addItem': 'Nieuwe taak',
  'todo.sidebar.sortBy': 'Sorteren op',
  'todo.priority': 'Prioriteit',
  'todo.newCategoryLabel': 'nieuw',
  'todo.newCategory': 'Categorienaam',
  'todo.addCategory': 'Categorie toevoegen',
  'todo.newItem': 'Nieuwe taak',
  'todo.empty': 'Nog geen taken. Voeg een taak toe om te beginnen!',
  'todo.filter.my': 'Mijn taken',
  'todo.filter.overdue': 'Verlopen',
  'todo.sidebar.tasks': 'Taken',
  'todo.sidebar.categories': 'Categorieën',
  'todo.detail.title': 'Taak',
  'todo.detail.description': 'Beschrijving',
  'todo.detail.category': 'Categorie',
  'todo.detail.dueDate': 'Vervaldatum',
  'todo.detail.assignedTo': 'Toegewezen aan',
  'todo.detail.delete': 'Verwijderen',
  'todo.detail.save': 'Wijzigingen opslaan',
  'todo.detail.create': 'Taak aanmaken',
  'todo.detail.priority': 'Prioriteit',
  'todo.detail.noPriority': 'Geen',
  'todo.sortByPrio': 'Prioriteit',
};
export default todo;