Spaces:
Sleeping
Sleeping
| import type { TranslationStrings } from '../types'; | |
| const todo: TranslationStrings = { | |
| 'todo.subtab.packing': 'Csomagolási lista', | |
| 'todo.subtab.todo': 'Teendők', | |
| 'todo.completed': 'kész', | |
| 'todo.filter.all': 'Mind', | |
| 'todo.filter.open': 'Nyitott', | |
| 'todo.filter.done': 'Kész', | |
| 'todo.uncategorized': 'Kategória nélküli', | |
| 'todo.namePlaceholder': 'Feladat neve', | |
| 'todo.descriptionPlaceholder': 'Leírás (opcionális)', | |
| 'todo.unassigned': 'Nem hozzárendelt', | |
| 'todo.noCategory': 'Nincs kategória', | |
| 'todo.hasDescription': 'Van leírás', | |
| 'todo.addItem': 'Új feladat', | |
| 'todo.sidebar.sortBy': 'Rendezés', | |
| 'todo.priority': 'Prioritás', | |
| 'todo.newCategoryLabel': 'új', | |
| 'todo.newCategory': 'Kategória neve', | |
| 'todo.addCategory': 'Kategória hozzáadása', | |
| 'todo.newItem': 'Új feladat', | |
| 'todo.empty': 'Még nincsenek feladatok. Adj hozzá egyet a kezdéshez!', | |
| 'todo.filter.my': 'Saját feladataim', | |
| 'todo.filter.overdue': 'Lejárt', | |
| 'todo.sidebar.tasks': 'Feladatok', | |
| 'todo.sidebar.categories': 'Kategóriák', | |
| 'todo.detail.title': 'Feladat', | |
| 'todo.detail.description': 'Leírás', | |
| 'todo.detail.category': 'Kategória', | |
| 'todo.detail.dueDate': 'Határidő', | |
| 'todo.detail.assignedTo': 'Hozzárendelve', | |
| 'todo.detail.delete': 'Törlés', | |
| 'todo.detail.save': 'Módosítások mentése', | |
| 'todo.detail.create': 'Feladat létrehozása', | |
| 'todo.detail.priority': 'Prioritás', | |
| 'todo.detail.noPriority': 'Nincs', | |
| 'todo.sortByPrio': 'Prioritás', | |
| }; | |
| export default todo; | |