mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-23 23:31:47 +00:00
126f2df21b
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
11 lines
296 B
TypeScript
11 lines
296 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;
|