Spaces:
Sleeping
Sleeping
File size: 2,352 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 | import type { TranslationStrings } from '../types';
const notif: TranslationStrings = {
'notif.test.title': '[ν
μ€νΈ] μλ¦Ό',
'notif.test.simple.text': 'κ°λ¨ν ν
μ€νΈ μλ¦Όμ
λλ€.',
'notif.test.boolean.text': 'μ΄ ν
μ€νΈ μλ¦Όμ μλ½νμκ² μ΅λκΉ?',
'notif.test.navigate.text': 'μλλ₯Ό ν΄λ¦νμ¬ λμ보λλ‘ μ΄λνμΈμ.',
'notif.trip_invite.title': 'μ¬ν μ΄λ',
'notif.trip_invite.text': '{actor}μ΄(κ°) {trip}μ μ΄λνμ΅λλ€',
'notif.booking_change.title': 'μμ½ μ
λ°μ΄νΈλ¨',
'notif.booking_change.text': '{actor}μ΄(κ°) {trip}μ μμ½μ μ
λ°μ΄νΈνμ΅λλ€',
'notif.trip_reminder.title': 'μ¬ν 리λ§μΈλ',
'notif.trip_reminder.text': 'μ¬ν {trip}μ΄(κ°) κ³§ μμλ©λλ€!',
'notif.todo_due.title': 'ν μΌ λ§κ°',
'notif.todo_due.text': '{trip}μ {todo}μ΄(κ°) {due}μ λ§κ°λ©λλ€',
'notif.vacay_invite.title': 'Vacay ν¨μ μ΄λ',
'notif.vacay_invite.text': '{actor}μ΄(κ°) ν΄κ° κ³ν 곡μ μ μ΄λνμ΅λλ€',
'notif.photos_shared.title': 'μ¬μ§ 곡μ λ¨',
'notif.photos_shared.text':
'{actor}μ΄(κ°) {trip}μμ {count}μ₯μ μ¬μ§μ 곡μ νμ΅λλ€',
'notif.collab_message.title': 'μ λ©μμ§',
'notif.collab_message.text': '{actor}μ΄(κ°) {trip}μμ λ©μμ§λ₯Ό 보λμ΅λλ€',
'notif.packing_tagged.title': 'μ§ λͺ©λ‘ λ°°μ ',
'notif.packing_tagged.text':
'{actor}μ΄(κ°) {trip}μ {category}μ λ°°μ νμ΅λλ€',
'notif.version_available.title': 'μ λ²μ μ¬μ© κ°λ₯',
'notif.version_available.text': 'TREK {version}μ΄(κ°) μ¬μ© κ°λ₯ν©λλ€',
'notif.action.view_trip': 'μ¬ν 보기',
'notif.action.view_collab': 'λ©μμ§ λ³΄κΈ°',
'notif.action.view_packing': 'μ§ λͺ©λ‘ 보기',
'notif.action.view_photos': 'μ¬μ§ 보기',
'notif.action.view_vacay': 'Vacay 보기',
'notif.action.view_admin': 'κ΄λ¦¬μλ‘ μ΄λ',
'notif.action.view': '보기',
'notif.action.accept': 'μλ½',
'notif.action.decline': 'κ±°μ ',
'notif.generic.title': 'μλ¦Ό',
'notif.generic.text': 'μ μλ¦Όμ΄ μμ΅λλ€',
'notif.dev.unknown_event.title': '[DEV] μ μ μλ μ΄λ²€νΈ',
'notif.dev.unknown_event.text':
'μ΄λ²€νΈ μ ν "{event}"μ΄(κ°) EVENT_NOTIFICATION_CONFIGμ λ±λ‘λμ§ μμμ΅λλ€',
};
export default notif;
|