Spaces:
Sleeping
Sleeping
File size: 841 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 inspector: TranslationStrings = {
'inspector.opened': '์์
์ค',
'inspector.closed': '์์
์ข
๋ฃ',
'inspector.openingHours': '์์
์๊ฐ',
'inspector.showHours': '์์
์๊ฐ ๋ณด๊ธฐ',
'inspector.files': 'ํ์ผ',
'inspector.filesCount': '{count}๊ฐ ํ์ผ',
'inspector.remove': '์ ๊ฑฐ',
'inspector.removeFromDay': '๋ ์์ ์ ๊ฑฐ',
'inspector.addToDay': '๋ ์ ์ถ๊ฐ',
'inspector.confirmedRes': 'ํ์ ๋ ์์ฝ',
'inspector.pendingRes': '๋๊ธฐ ์ค์ธ ์์ฝ',
'inspector.google': 'Google Maps์์ ์ด๊ธฐ',
'inspector.website': '์น์ฌ์ดํธ ์ด๊ธฐ',
'inspector.addRes': '์์ฝ',
'inspector.editRes': '์์ฝ ํธ์ง',
'inspector.participants': '์ฐธ๊ฐ์',
'inspector.trackStats': 'ํธ๋ ํต๊ณ',
};
export default inspector;
|