Spaces:
Sleeping
Sleeping
File size: 2,020 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 | 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': 'ใในใ็จใฎๆฟ่ช้็ฅใงใใ',
'notifications.test.accept': 'ๆฟ่ช',
'notifications.test.decline': 'ๅดไธ',
'notifications.test.navigateTitle': '็ขบ่ชใใฆใใ ใใ',
'notifications.test.navigateText': 'ใในใ็จใฎ้ท็งป้็ฅใงใใ',
'notifications.test.goThere': '็งปๅ',
'notifications.test.adminTitle': '็ฎก็่
้็ฅ',
'notifications.test.adminText': '{actor} ใ็ฎก็่
ๅ
จๅกใซ้็ฅใ้ใใพใใใ',
'notifications.test.tripTitle': '{actor} ใๆ
่กใซๆ็จฟใใพใใ',
'notifications.test.tripText': 'ๆ
่กใ{trip}ใใฎใในใ้็ฅใงใใ',
};
export default notifications;
|