Spaces:
Sleeping
Sleeping
| import type { TranslationStrings } from '../types'; | |
| const vacay: TranslationStrings = { | |
| 'vacay.subtitle': 'Plan and manage vacation days', | |
| 'vacay.settings': 'Settings', | |
| 'vacay.year': 'Year', | |
| 'vacay.addYear': 'Add next year', | |
| 'vacay.addPrevYear': 'Add previous year', | |
| 'vacay.removeYear': 'Remove year', | |
| 'vacay.removeYearConfirm': 'Remove {year}?', | |
| 'vacay.removeYearHint': | |
| 'All vacation entries and company holidays for this year will be permanently deleted.', | |
| 'vacay.remove': 'Remove', | |
| 'vacay.persons': 'Persons', | |
| 'vacay.noPersons': 'No persons added', | |
| 'vacay.addPerson': 'Add Person', | |
| 'vacay.editPerson': 'Edit Person', | |
| 'vacay.removePerson': 'Remove Person', | |
| 'vacay.removePersonConfirm': 'Remove {name}?', | |
| 'vacay.removePersonHint': | |
| 'All vacation entries for this person will be permanently deleted.', | |
| 'vacay.personName': 'Name', | |
| 'vacay.personNamePlaceholder': 'Enter name', | |
| 'vacay.color': 'Color', | |
| 'vacay.add': 'Add', | |
| 'vacay.legend': 'Legend', | |
| 'vacay.publicHoliday': 'Public Holiday', | |
| 'vacay.companyHoliday': 'Company Holiday', | |
| 'vacay.weekend': 'Weekend', | |
| 'vacay.modeVacation': 'Vacation', | |
| 'vacay.modeCompany': 'Company Holiday', | |
| 'vacay.entitlement': 'Entitlement', | |
| 'vacay.entitlementDays': 'Days', | |
| 'vacay.used': 'Used', | |
| 'vacay.remaining': 'Left', | |
| 'vacay.carriedOver': 'from {year}', | |
| 'vacay.blockWeekends': 'Block Weekends', | |
| 'vacay.blockWeekendsHint': 'Prevent vacation entries on weekend days', | |
| 'vacay.weekendDays': 'Weekend days', | |
| 'vacay.mon': 'Mon', | |
| 'vacay.tue': 'Tue', | |
| 'vacay.wed': 'Wed', | |
| 'vacay.thu': 'Thu', | |
| 'vacay.fri': 'Fri', | |
| 'vacay.sat': 'Sat', | |
| 'vacay.sun': 'Sun', | |
| 'vacay.publicHolidays': 'Public Holidays', | |
| 'vacay.publicHolidaysHint': 'Mark public holidays in the calendar', | |
| 'vacay.selectCountry': 'Select country', | |
| 'vacay.selectRegion': 'Select region (optional)', | |
| 'vacay.addCalendar': 'Add calendar', | |
| 'vacay.calendarLabel': 'Label (optional)', | |
| 'vacay.calendarColor': 'Color', | |
| 'vacay.noCalendars': 'No holiday calendars added yet', | |
| 'vacay.companyHolidays': 'Company Holidays', | |
| 'vacay.companyHolidaysHint': 'Allow marking company-wide holiday days', | |
| 'vacay.companyHolidaysNoDeduct': | |
| 'Company holidays do not count towards vacation days.', | |
| 'vacay.weekStart': 'Week starts on', | |
| 'vacay.weekStartHint': | |
| 'Choose whether the calendar week starts on Monday or Sunday', | |
| 'vacay.carryOver': 'Carry Over', | |
| 'vacay.carryOverHint': | |
| 'Automatically carry remaining vacation days into the next year', | |
| 'vacay.sharing': 'Sharing', | |
| 'vacay.sharingHint': 'Share your vacation plan with other TREK users', | |
| 'vacay.owner': 'Owner', | |
| 'vacay.shareEmailPlaceholder': 'Email of TREK user', | |
| 'vacay.shareSuccess': 'Plan shared successfully', | |
| 'vacay.shareError': 'Could not share plan', | |
| 'vacay.dissolve': 'Dissolve Fusion', | |
| 'vacay.dissolveHint': 'Separate calendars again. Your entries will be kept.', | |
| 'vacay.dissolveAction': 'Dissolve', | |
| 'vacay.dissolved': 'Calendar separated', | |
| 'vacay.fusedWith': 'Fused with', | |
| 'vacay.you': 'you', | |
| 'vacay.noData': 'No data', | |
| 'vacay.changeColor': 'Change color', | |
| 'vacay.inviteUser': 'Invite User', | |
| 'vacay.inviteHint': | |
| 'Invite another TREK user to share a combined vacation calendar.', | |
| 'vacay.selectUser': 'Select user', | |
| 'vacay.sendInvite': 'Send Invite', | |
| 'vacay.inviteSent': 'Invite sent', | |
| 'vacay.inviteError': 'Could not send invite', | |
| 'vacay.pending': 'pending', | |
| 'vacay.noUsersAvailable': 'No users available', | |
| 'vacay.accept': 'Accept', | |
| 'vacay.decline': 'Decline', | |
| 'vacay.acceptFusion': 'Accept & Fuse', | |
| 'vacay.inviteTitle': 'Fusion Request', | |
| 'vacay.inviteWantsToFuse': 'wants to share a vacation calendar with you.', | |
| 'vacay.fuseInfo1': | |
| 'Both of you will see all vacation entries in one shared calendar.', | |
| 'vacay.fuseInfo2': 'Both parties can create and edit entries for each other.', | |
| 'vacay.fuseInfo3': | |
| 'Both parties can delete entries and change vacation entitlements.', | |
| 'vacay.fuseInfo4': | |
| 'Settings like public holidays and company holidays are shared.', | |
| 'vacay.fuseInfo5': | |
| 'The fusion can be dissolved at any time by either party. Your entries will be preserved.', | |
| }; | |
| export default vacay; | |