mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-22 06:41:46 +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
401 B
TypeScript
11 lines
401 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;
|