mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-07-02 11:35:59 +00:00
41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const todo: TranslationStrings = {
|
|
'todo.subtab.packing': 'Inpaklijst',
|
|
'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;
|