mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 06:11:45 +00:00
11 lines
370 B
TypeScript
11 lines
370 B
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const pdf: TranslationStrings = {
|
|
'pdf.travelPlan': 'Ταξιδιωτικό Πρόγραμμα',
|
|
'pdf.planned': 'Προγραμματισμένο',
|
|
'pdf.costLabel': 'Κόστος EUR',
|
|
'pdf.preview': 'Προεπισκόπηση PDF',
|
|
'pdf.saveAsPdf': 'Αποθήκευση ως PDF',
|
|
};
|
|
export default pdf;
|