mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-24 15:51:46 +00:00
17264ef745
* feat(i18n): add Greek translation (#1061) * i18n: complete Turkish (tr) translation (#1075) Fill in the remaining ~2100 UI strings in shared/src/i18n/tr so Turkish matches the English catalog. Brand names, URLs, and technical placeholders are left untranslated by design. * chore: prettier + lint * chore: enforce prettier & lint on shared package --------- Co-authored-by: Dimitris Kafetzis <39215021+Dkafetzis@users.noreply.github.com> Co-authored-by: Ahmet Yılmaz <70577707+sharkpaw@users.noreply.github.com>
41 lines
2.0 KiB
TypeScript
41 lines
2.0 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const todo: TranslationStrings = {
|
|
'todo.subtab.packing': 'Λίστα Αποσκευών',
|
|
'todo.subtab.todo': 'Εργασίες',
|
|
'todo.completed': 'ολοκληρώθηκαν',
|
|
'todo.filter.all': 'Όλα',
|
|
'todo.filter.open': 'Ανοιχτά',
|
|
'todo.filter.done': 'Ολοκληρωμένα',
|
|
'todo.uncategorized': 'Χωρίς κατηγορία',
|
|
'todo.namePlaceholder': 'Όνομα εργασίας',
|
|
'todo.descriptionPlaceholder': 'Περιγραφή (προαιρετικό)',
|
|
'todo.unassigned': 'Χωρίς ανάθεση',
|
|
'todo.noCategory': 'Χωρίς κατηγορία',
|
|
'todo.hasDescription': 'Έχει περιγραφή',
|
|
'todo.addItem': 'Προσθήκη νέας εργασίας',
|
|
'todo.sidebar.sortBy': 'Ταξινόμηση κατά',
|
|
'todo.priority': 'Προτεραιότητα',
|
|
'todo.newCategoryLabel': 'νέο',
|
|
'todo.newCategory': 'Όνομα κατηγορίας',
|
|
'todo.addCategory': 'Προσθήκη κατηγορίας',
|
|
'todo.newItem': 'Νέα εργασία',
|
|
'todo.empty': 'Δεν υπάρχουν εργασίες ακόμα. Προσθέστε μία για να ξεκινήσετε!',
|
|
'todo.filter.my': 'Οι Εργασίες μου',
|
|
'todo.filter.overdue': 'Εκπρόθεσμα',
|
|
'todo.sidebar.tasks': 'Εργασίες',
|
|
'todo.sidebar.categories': 'Κατηγορίες',
|
|
'todo.detail.title': 'Εργασία',
|
|
'todo.detail.description': 'Περιγραφή',
|
|
'todo.detail.category': 'Κατηγορία',
|
|
'todo.detail.dueDate': 'Ημερομηνία λήξης',
|
|
'todo.detail.assignedTo': 'Ανατεθειμένο σε',
|
|
'todo.detail.delete': 'Διαγραφή',
|
|
'todo.detail.save': 'Αποθήκευση αλλαγών',
|
|
'todo.sortByPrio': 'Προτεραιότητα',
|
|
'todo.detail.priority': 'Προτεραιότητα',
|
|
'todo.detail.noPriority': 'Καμία',
|
|
'todo.detail.create': 'Δημιουργία εργασίας',
|
|
};
|
|
export default todo;
|