mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 22:31:46 +00:00
11 lines
448 B
TypeScript
11 lines
448 B
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const transport: TranslationStrings = {
|
|
'transport.addTransport': 'Προσθήκη μεταφοράς',
|
|
'transport.modalTitle.create': 'Προσθήκη μεταφοράς',
|
|
'transport.modalTitle.edit': 'Επεξεργασία μεταφοράς',
|
|
'transport.title': 'Μεταφορές',
|
|
'transport.addManual': 'Χειροκίνητη Μεταφορά',
|
|
};
|
|
export default transport;
|