Spaces:
Sleeping
Sleeping
File size: 1,784 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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | import type { TranslationStrings } from '../types';
const common: TranslationStrings = {
'common.save': '์ ์ฅ',
'common.showMore': '๋ ๋ณด๊ธฐ',
'common.showLess': '์ ๊ธฐ',
'common.cancel': '์ทจ์',
'common.clear': '์ง์ฐ๊ธฐ',
'common.delete': '์ญ์ ',
'common.edit': 'ํธ์ง',
'common.add': '์ถ๊ฐ',
'common.loading': '๋ก๋ฉ ์ค...',
'common.import': '๊ฐ์ ธ์ค๊ธฐ',
'common.select': '์ ํ',
'common.selectAll': '์ ์ฒด ์ ํ',
'common.deselectAll': '์ ์ฒด ํด์ ',
'common.error': '์ค๋ฅ',
'common.unknownError': '์ ์ ์๋ ์ค๋ฅ',
'common.tooManyAttempts':
'์๋ ํ์๊ฐ ๋๋ฌด ๋ง์ต๋๋ค. ์ ์ ํ ๋ค์ ์๋ํด ์ฃผ์ธ์.',
'common.back': '๋ค๋ก',
'common.all': '์ ์ฒด',
'common.close': '๋ซ๊ธฐ',
'common.open': '์ด๊ธฐ',
'common.upload': '์
๋ก๋',
'common.search': '๊ฒ์',
'common.confirm': 'ํ์ธ',
'common.ok': 'ํ์ธ',
'common.yes': '์',
'common.no': '์๋์ค',
'common.or': '๋๋',
'common.none': '์์',
'common.date': '๋ ์ง',
'common.rename': '์ด๋ฆ ๋ณ๊ฒฝ',
'common.discardChanges': '๋ณ๊ฒฝ ์ฌํญ ์ทจ์',
'common.discard': '์ทจ์',
'common.name': '์ด๋ฆ',
'common.email': '์ด๋ฉ์ผ',
'common.password': '๋น๋ฐ๋ฒํธ',
'common.saving': '์ ์ฅ ์ค...',
'common.justNow': '๋ฐฉ๊ธ ์ ',
'common.hoursAgo': '{count}์๊ฐ ์ ',
'common.daysAgo': '{count}์ผ ์ ',
'common.saved': '์ ์ฅ๋จ',
'common.update': '์
๋ฐ์ดํธ',
'common.change': '๋ณ๊ฒฝ',
'common.uploading': '์
๋ก๋ ์คโฆ',
'common.backToPlanning': '๊ณํ์ผ๋ก ๋์๊ฐ๊ธฐ',
'common.reset': '์ด๊ธฐํ',
'common.expand': 'ํผ์น๊ธฐ',
'common.collapse': '์ ๊ธฐ',
'common.copy': '๋ณต์ฌ',
'common.copied': '๋ณต์ฌ๋จ',
};
export default common;
|