Spaces:
Sleeping
Sleeping
File size: 1,050 Bytes
48f8f0c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import type { TranslationStrings } from '../types';
const undo: TranslationStrings = {
'undo.button': 'μ€ν μ·¨μ',
'undo.tooltip': 'μ€ν μ·¨μ: {action}',
'undo.assignPlace': 'μ₯μκ° λ μ λ°°μ λμμ΅λλ€',
'undo.removeAssignment': 'μ₯μκ° λ μμ μ κ±°λμμ΅λλ€',
'undo.reorder': 'μ₯μ μμκ° λ³κ²½λμμ΅λλ€',
'undo.optimize': 'κ²½λ‘κ° μ΅μ νλμμ΅λλ€',
'undo.deletePlace': 'μ₯μκ° μμ λμμ΅λλ€',
'undo.deletePlaces': 'μ₯μλ€μ΄ μμ λμμ΅λλ€',
'undo.moveDay': 'μ₯μκ° λ€λ₯Έ λ λ‘ μ΄λλμμ΅λλ€',
'undo.lock': 'μ₯μ μ κΈμ΄ λ³κ²½λμμ΅λλ€',
'undo.importGpx': 'GPX κ°μ Έμ€κΈ°',
'undo.importKeyholeMarkup': 'KMZ/KML κ°μ Έμ€κΈ°',
'undo.importGoogleList': 'Google Maps κ°μ Έμ€κΈ°',
'undo.importNaverList': 'λ€μ΄λ² μ§λ κ°μ Έμ€κΈ°',
'undo.addPlace': 'μ₯μκ° μΆκ°λμμ΅λλ€',
'undo.done': 'μ€ν μ·¨μλ¨: {action}',
'undo.importBooking': 'μμ½ νμΈμ κ°μ Έμ€κΈ°',
};
export default undo;
|