42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
const dict = {
|
|
close: 'close',
|
|
|
|
chooseYourMap: 'Choose your map',
|
|
|
|
nearby: 'Nearby',
|
|
|
|
wpt: 'place',
|
|
trk: 'track',
|
|
trkseg: 'track segment',
|
|
'trkseg-start': 'start of track segment',
|
|
'trkseg-finish': 'end of track segment',
|
|
rte: 'route',
|
|
'rte-start': 'start of route',
|
|
'rte-finish': 'end of route',
|
|
|
|
name: 'Name',
|
|
sym: 'Symbol',
|
|
minZoom: 'Minimum zoom level',
|
|
|
|
save: 'SAVE',
|
|
cancel: 'CANCEL',
|
|
|
|
gpxImport: 'GPX import',
|
|
file: 'File: ',
|
|
gpxStats:
|
|
'This file has been created with "{{creator}}" and includes {{nbWpts}} place(s), {{nbRte}} routes(s) et {{nbTrks}} track(s).',
|
|
gpxStartTime: 'It starts on {{startTime}}.',
|
|
gpxNoStartTime: 'It contains no date.',
|
|
trkMaybeRte:
|
|
'The first point of the first track has no timestamp which means that it is most likely a route saved as a track. ',
|
|
importTrk: 'Track import',
|
|
importAllTrksAsRtes: 'Import all tracks as routes',
|
|
importNonTimedTrksAsRtes: 'Import non timestamped tracks as routes',
|
|
importTrksAsTrks: 'Import all tracks (even non timestamped) as tracks',
|
|
|
|
gpxDialog: 'Current journey',
|
|
gpxChooser: 'Journey',
|
|
};
|
|
|
|
export default dict;
|