mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-23 07:11:46 +00:00
chore: move i18n to shared package (#1066)
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import type { TranslationStrings } from '../types';
|
||||
|
||||
const undo: TranslationStrings = {
|
||||
'undo.button': 'Annuler',
|
||||
'undo.tooltip': 'Annuler : {action}',
|
||||
'undo.assignPlace': 'Lieu ajouté au jour',
|
||||
'undo.removeAssignment': 'Lieu retiré du jour',
|
||||
'undo.reorder': 'Lieux réorganisés',
|
||||
'undo.optimize': 'Itinéraire optimisé',
|
||||
'undo.deletePlace': 'Lieu supprimé',
|
||||
'undo.deletePlaces': 'Lieux supprimés',
|
||||
'undo.moveDay': 'Lieu déplacé vers un autre jour',
|
||||
'undo.lock': 'Verrouillage du lieu modifié',
|
||||
'undo.importGpx': 'Import GPX',
|
||||
'undo.importKeyholeMarkup': 'Import KMZ/KML',
|
||||
'undo.importGoogleList': 'Import Google Maps',
|
||||
'undo.importNaverList': 'Import Naver Maps',
|
||||
'undo.addPlace': 'Lieu ajouté',
|
||||
'undo.done': 'Annulé : {action}',
|
||||
};
|
||||
export default undo;
|
||||
Reference in New Issue
Block a user