Spaces:
Sleeping
Sleeping
File size: 2,103 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 | import type { TranslationStrings } from '../types';
const notifications: TranslationStrings = {
'notifications.title': 'μλ¦Ό',
'notifications.markAllRead': 'λͺ¨λ μ½μμΌλ‘ νμ',
'notifications.deleteAll': 'λͺ¨λ μμ ',
'notifications.showAll': 'λͺ¨λ μλ¦Ό 보기',
'notifications.empty': 'μλ¦Ό μμ',
'notifications.emptyDescription': 'λͺ¨λ νμΈνμ΅λλ€!',
'notifications.all': 'μ 체',
'notifications.unreadOnly': 'μ½μ§ μμ',
'notifications.markRead': 'μ½μμΌλ‘ νμ',
'notifications.markUnread': 'μ½μ§ μμμΌλ‘ νμ',
'notifications.delete': 'μμ ',
'notifications.system': 'μμ€ν
',
'notifications.synologySessionCleared.title': 'Synology Photos μ°κ²° ν΄μ λ¨',
'notifications.synologySessionCleared.text':
'μλ² λλ κ³μ μ΄ λ³κ²½λμμ΅λλ€ β μ€μ μμ μ°κ²°μ λ€μ ν
μ€νΈνμΈμ.',
'notifications.versionAvailable.title': 'μ
λ°μ΄νΈ μ¬μ© κ°λ₯',
'notifications.versionAvailable.text':
'TREK {version}μ΄(κ°) μ¬μ© κ°λ₯ν©λλ€.',
'notifications.versionAvailable.button': 'μμΈ λ³΄κΈ°',
'notifications.test.title': '{actor}μ ν
μ€νΈ μλ¦Ό',
'notifications.test.text': 'κ°λ¨ν ν
μ€νΈ μλ¦Όμ
λλ€.',
'notifications.test.booleanTitle': '{actor}μ΄(κ°) μΉμΈμ μμ²ν©λλ€',
'notifications.test.booleanText':
'ν
μ€νΈ boolean μλ¦Όμ
λλ€. μλμμ μμ
μ μ ννμΈμ.',
'notifications.test.accept': 'μΉμΈ',
'notifications.test.decline': 'κ±°μ ',
'notifications.test.navigateTitle': 'νμΈν νλͺ©μ΄ μμ΅λλ€',
'notifications.test.navigateText': 'ν
μ€νΈ navigate μλ¦Όμ
λλ€.',
'notifications.test.goThere': 'μ΄λ',
'notifications.test.adminTitle': 'κ΄λ¦¬μ λ°©μ‘',
'notifications.test.adminText':
'{actor}μ΄(κ°) λͺ¨λ κ΄λ¦¬μμκ² ν
μ€νΈ μλ¦Όμ 보λμ΅λλ€.',
'notifications.test.tripTitle': '{actor}μ΄(κ°) μ¬νμ κ²μνμ΅λλ€',
'notifications.test.tripText': 'μ¬ν "{trip}"μ ν
μ€νΈ μλ¦Όμ
λλ€.',
};
export default notifications;
|