Spaces:
Sleeping
Sleeping
File size: 763 Bytes
48f8f0c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import type { TranslationStrings } from '../types';
const shared: TranslationStrings = {
'shared.expired': 'λ§ν¬κ° λ§λ£λμκ±°λ μ ν¨νμ§ μμ΅λλ€',
'shared.expiredHint': 'μ΄ κ³΅μ μ¬ν λ§ν¬λ λ μ΄μ μ ν¨νμ§ μμ΅λλ€.',
'shared.readOnly': 'μ½κΈ° μ μ© κ³΅μ 보기',
'shared.tabPlan': 'κ³ν',
'shared.tabBookings': 'μμ½',
'shared.tabPacking': 'μ§ λͺ©λ‘',
'shared.tabBudget': 'μμ°',
'shared.tabChat': 'μ±ν
',
'shared.days': 'μΌ',
'shared.places': 'μ₯μ',
'shared.other': 'κΈ°ν',
'shared.totalBudget': 'μ΄ μμ°',
'shared.messages': 'λ©μμ§',
'shared.sharedVia': '곡μ κ²½λ‘',
'shared.confirmed': 'νμ λ¨',
'shared.pending': 'λκΈ° μ€',
};
export default shared;
|