126 lines
4.7 KiB
PHP
126 lines
4.7 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Calendar Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used throughout the calendar app,
|
|
| including calendar settings and events.
|
|
|
|
|
*/
|
|
|
|
'color' => 'Color',
|
|
'create' => 'Create calendar',
|
|
'description' => 'Description',
|
|
'ics' => [
|
|
'share' => 'Share this calendar publicly',
|
|
'share_help' => 'Anyone with this link can subscribe to your calendar.',
|
|
'public_url' => 'Public subscription URL',
|
|
'public_url_help' => 'Copy this URL into a third-party calendar app to subscribe.',
|
|
'url' => 'ICS URL',
|
|
'url_help' => 'You can\'t edit a public calendar URL. If you need to make a change, unsubscribe and add it again.',
|
|
],
|
|
'mine' => 'My calendars',
|
|
'name' => 'Calendar name',
|
|
'settings' => [
|
|
'calendar' => [
|
|
'title' => 'Calendar settings',
|
|
'subtitle' => 'Details and settings for <strong>:calendar</strong>.'
|
|
],
|
|
'create' => [
|
|
'title' => 'Create a calendar',
|
|
'subtitle' => 'Create a new local calendar.',
|
|
],
|
|
'display' => [
|
|
'title' => 'Display preferences',
|
|
'subtitle' => 'Adjust the look and feel of your calendars.'
|
|
],
|
|
'language_region' => [
|
|
'title' => 'Language and region',
|
|
'subtitle' => 'Choose your default language, region, and formatting preferences. These affect how dates and times are displayed in your calendars and events.',
|
|
],
|
|
'my_calendars' => 'Settings for my calendars',
|
|
'subscribe' => [
|
|
'title' => 'Subscribe to a calendar',
|
|
'subtitle' => 'Add an `.ics` calendar from another service',
|
|
],
|
|
'saved' => 'Your calendar settings have been saved!',
|
|
'title' => 'Calendar settings',
|
|
],
|
|
'timezone_help' => 'You can override your default time zone here.',
|
|
'toggle_sidebar' => 'Toggle calendar sidebar',
|
|
'event' => [
|
|
'when' => 'When',
|
|
'all_day' => 'All day',
|
|
'location' => 'Location',
|
|
'map_coming' => 'Map preview coming soon.',
|
|
'map_needs_key' => 'Map preview requires an ArcGIS basemap API key.',
|
|
'map_attribution' => 'Basemap tiles © Esri and the GIS User Community.',
|
|
'no_location' => 'No location set.',
|
|
'details' => 'Details',
|
|
'repeats' => 'Repeats',
|
|
'does_not_repeat' => 'Does not repeat',
|
|
'category' => 'Category',
|
|
'none' => 'None',
|
|
'visibility' => 'Visibility',
|
|
'private' => 'Private',
|
|
'default' => 'Default',
|
|
'all_day_handling' => 'All-day handling',
|
|
'timed' => 'Timed',
|
|
'all_day_coming' => 'Multi-day all-day UI coming soon',
|
|
'alerts' => 'Alerts',
|
|
'reminder' => 'Reminder',
|
|
'minutes_before' => 'minutes before',
|
|
'alerts_coming' => 'No alerts set. (Coming soon)',
|
|
'invitees' => 'Invitees',
|
|
'invitees_coming' => 'Invitees and RSVP tracking coming soon.',
|
|
'attachments' => 'Attachments',
|
|
'attachments_coming' => 'Attachment support coming soon.',
|
|
'notes' => 'Notes',
|
|
'no_description' => 'No description yet.',
|
|
'all_day_events' => 'All-day events',
|
|
'show_more' => ':count more',
|
|
'recurrence' => [
|
|
'label' => 'Repeat',
|
|
'frequency' => 'Frequency',
|
|
'none' => 'Does not repeat',
|
|
'every' => 'Every',
|
|
'daily' => 'Daily',
|
|
'weekly' => 'Weekly',
|
|
'monthly' => 'Monthly',
|
|
'yearly' => 'Yearly',
|
|
'on_days' => 'On days',
|
|
'on_the' => 'On the',
|
|
'yearly_hint' => 'Repeats on the same date each year.',
|
|
'invalid_frequency' => 'Please choose a valid repeat frequency.',
|
|
'weekdays' => [
|
|
'sun' => 'Sunday',
|
|
'mon' => 'Monday',
|
|
'tue' => 'Tuesday',
|
|
'wed' => 'Wednesday',
|
|
'thu' => 'Thursday',
|
|
'fri' => 'Friday',
|
|
'sat' => 'Saturday',
|
|
'sun_short' => 'S',
|
|
'mon_short' => 'M',
|
|
'tue_short' => 'T',
|
|
'wed_short' => 'W',
|
|
'thu_short' => 'T',
|
|
'fri_short' => 'F',
|
|
'sat_short' => 'S',
|
|
],
|
|
'week_order' => [
|
|
'first' => 'First',
|
|
'second' => 'Second',
|
|
'third' => 'Third',
|
|
'fourth' => 'Fourth',
|
|
'last' => 'Last',
|
|
],
|
|
],
|
|
],
|
|
|
|
];
|