-
-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathapp.php
More file actions
506 lines (502 loc) · 23.5 KB
/
Copy pathapp.php
File metadata and controls
506 lines (502 loc) · 23.5 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
<?php
/*
Asatru PHP - English language file
Extend this with your phrases
Set variables with {variable-name}
*/
return [
'workspace_title' => '{name} (' . env('APP_NAME') . ' v' . env('APP_VERSION') . ')',
'enter_email' => 'Enter your e-mail',
'enter_password' => 'Enter your password',
'enter_password_confirmation' => 'Confirm your password',
'login' => 'Login',
'logout' => 'Logout',
'user_not_found' => 'User not found: {email}',
'password_mismatch' => 'The passwords do not match',
'password' => 'Password',
'password_confirmation' => 'Password (confirmation)',
'restore_password' => 'Restore password',
'restore_password_info' => 'Please follow the instructions that were sent to your E-Mail account.',
'reset_password' => 'Reset password',
'reset_password_hint' => 'Please navigate to the following link in order to reset your password for your access to {workspace}: <a href="{url}">Reset password</a>',
'dashboard' => 'Dashboard',
'welcome_message' => 'Hi {name}, welcome back!',
'locations' => 'Locations',
'select_location_to_proceed' => 'Select a location to view the associated plants',
'plants' => 'Plants',
'add_plant' => 'Add Plant',
'add_plant_short' => 'Add',
'edit_plant' => 'Edit Plant',
'attribute' => 'Attribute',
'value' => 'Value',
'location' => 'Location',
'last_watered' => 'Last watered',
'last_repotted' => 'Last repotted',
'last_fertilised' => 'Last fertilised',
'perennial' => 'Perennial',
'annual' => 'Annual',
'cutting_month' => 'Cutting month',
'date_of_purchase' => 'Date of purchase',
'humidity' => 'Humidity',
'light_level' => 'Light level',
'health_state' => 'Health state',
'in_good_standing' => 'In Good Standing',
'overwatered' => 'Overwatered',
'withering' => 'Withering',
'infected' => 'Infected',
'pest_infestation' => 'Pest Infestation',
'transplant_shock' => 'Transplant Shock',
'nutritional_deficiency' => 'Nutritional Deficiency',
'sunburn' => 'Sunburn',
'frostbite' => 'Frostbite',
'root_rot' => 'Root Rot',
'plant_warning' => 'Warning: This plant requires special monitoring. Reason: {reason}',
'notes' => 'Notes',
'no_notes_specified' => 'No notes specified yet',
'select_month' => '- Select month -',
'select_light_level' => '- Select light level -',
'january' => 'January',
'february' => 'February',
'march' => 'March',
'april' => 'April',
'may' => 'May',
'june' => 'June',
'july' => 'July',
'august' => 'August',
'september' => 'September',
'october' => 'October',
'november' => 'November',
'december' => 'December',
'yes' => 'Yes',
'no' => 'No',
'back_to_list' => 'Back to list',
'back_to_dashboard' => 'Back to dashboard',
'name' => 'Name',
'email' => 'E-Mail',
'photo' => 'Photo',
'add' => 'Add',
'cancel' => 'Cancel',
'last_edited_by' => 'Last edited: {when} (by {name})',
'edit_property' => 'Edit property',
'save' => 'Save',
'light_level_sunny' => 'Sunny',
'light_level_half_shade' => 'Half-Shade',
'light_level_filtered_light' => 'Filtered light',
'light_level_indirect_light' => 'Indirect light',
'light_level_full_shade' => 'Full Shade',
'light_level_darkness' => 'Darkness',
'warning_plants_title' => 'The following plants need special attention',
'warning_plants_all_ok' => 'Hurray! No plants are currently endangered',
'view_plant_details' => 'View plant details',
'log_title' => 'Log',
'loading_please_wait' => 'Please wait...',
'error' => 'Error',
'photos' => 'Photos',
'no_photos_yet' => 'There are currently no additional photos uploaded',
'upload' => 'Upload',
'upload_photo' => 'Upload photo',
'label' => 'Label',
'confirmPhotoRemoval' => 'Are you sure you want to remove this photo?',
'users' => 'Users',
'photo_uploaded_successfully' => 'Photo was uploaded successfully',
'success' => 'Success',
'profile' => 'Profile',
'last_authored_plants' => 'Last authored plants',
'search' => 'Search',
'search_hint' => 'Search through the database',
'input_search' => 'Enter text to search for',
'search_name' => 'Include names in search',
'search_scientific_name' => 'Include scientific names in search',
'search_tags' => 'Include tags in search',
'search_notes' => 'Include notes in search',
'no_tags_specified' => 'No tags specified yet',
'remove_plant' => 'Remove plant',
'confirmPlantRemoval' => 'Are you sure you want to remove this plant?',
'tasks' => 'Tasks',
'tasks_hint' => 'Here you can manage required tasks for your plant care',
'create_task' => 'Create task',
'create_new' => 'Create new',
'title' => 'Title',
'description' => 'Description',
'task_created_successfully' => 'Task was created successfully',
'tasks_todo' => 'To-Do',
'tasks_done' => 'Done',
'done' => 'Done',
'edit_task' => 'Edit task',
'task_edited_successfully' => 'Task was successfully edited',
'scientific_name' => 'Scientific name',
'text' => 'Text',
'link' => 'Link',
'preferences' => 'Preferences',
'edit_preferences' => 'Edit preferences',
'language' => 'Language',
'show_log' => 'Show log',
'preferences_saved_successfully' => 'Preferences were saved successfully',
'set_watered' => 'Set watered',
'bulk_set_watered' => 'Set plants to watered',
'all_plants_watered' => 'Last watered status has been updated for these plants',
'confirmSetAllWatered' => 'Are you sure you want to update the last watered date of all these plants?',
'no_plants_found' => 'There were no plants found using your search query',
'inventory' => 'Inventory',
'inventory_hint' => 'Manage your inventory here',
'group' => 'Group',
'confirmInventoryItemRemoval' => 'Are you sure you want to remove this item?',
'add_inventory_item' => 'Add inventory item',
'edit_inventory_item' => 'Edit inventory item',
'manage_groups' => 'Manage groups',
'token' => 'Token',
'close' => 'Close',
'chat' => 'Chat',
'chat_hint' => 'This is the group chat of the workspace',
'send' => 'send',
'new' => 'New',
'chatcolor' => 'Username chat color',
'currentlyOnline' => 'Currently online: ',
'no_photo_available' => 'No photo available',
'due' => 'Due',
'overdue_tasks' => 'Overdue tasks',
'view_task_details' => 'View task details',
'admin_area' => 'Admin area',
'environment' => 'Environment',
'workspace' => 'Workspace',
'enable_scroller' => 'Enable scroller',
'online_time_limit' => 'Online status time limit',
'show_chat_onlineusers' => 'Show users that are currently online',
'show_chat_typingindicator' => 'Show chat typing indicator',
'admin' => 'Admin',
'create' => 'Create',
'update' => 'Update',
'remove' => 'Remove',
'create_user' => 'Create user',
'account_created' => 'Account created',
'account_created_hint' => 'Your account for {workspace} was just created. Please <a href="{url}">login</a> with your e-mail and the password <strong>{password}</strong>. It is strongly recommended to change your password after logging in.',
'environment_settings_saved' => 'Saved environment settings successfully',
'user_created_successfully' => 'New user was created successfully',
'user_updated_successfully' => 'User data successfully updated',
'user_removed_successfully' => 'The user account was removed successfully',
'confirm_user_removal' => 'Do you really want to remove this user account?',
'sorting_type_name' => 'Alphabetically',
'sorting_type_last_watered' => 'Last time watered',
'sorting_type_last_repotted' => 'Last time repotted',
'sorting_type_last_fertilised' => 'Last time fertilised',
'sorting_type_health_state' => 'Health state',
'sorting_type_perennial' => 'Perennial',
'sorting_type_annual' => 'Annual',
'sorting_type_light_level' => 'Light Level',
'sorting_type_humidity' => 'Humidity',
'sorting_dir_asc' => 'Ascending',
'sorting_dir_desc' => 'Descending',
'filter_by_text' => 'Filter by text',
'mail_info_task_overdue' => 'Task is overdue',
'mail_info_task_overdue_hint' => 'The task <strong>{name}</strong> is overdue! Due date: {date}. Go to tasks: <a href="{url}">{url}</a>',
'notify_tasks_overdue' => 'Notify me about overdue tasks',
'mail_info_task_tomorrow' => 'Task is due tomorrow',
'mail_info_task_tomorrow_hint' => 'The task <strong>{name}</strong> is due tomorrow. Due date: {date}. Go to tasks: <a href="{url}">{url}</a>',
'notify_tasks_tomorrow' => 'Notify me about tasks that are due tomorrow',
'mail_info_calendar_reminder' => 'Calendar reminder information',
'mail_info_calendar_reminder_hint' => 'The calendar item <strong>{name}</strong> is due: {date_from} - {date_till}. Go to calendar: <a href="{url}">{url}</a>',
'notify_calendar_reminder' => 'Remind me about due calendar dates',
'cronpw' => 'Cronjob authentication token',
'custom_head_code' => 'Custom code for head section',
'custom_head_code_hint' => 'WARNING: Corrupted code can break the document. Be sure you know what you are doing',
'enable_tasks' => 'Enable Tasks',
'enable_inventory' => 'Enable Inventory',
'enable_calendar' => 'Enable Calendar',
'enable_chat' => 'Enable Chat',
'add_location' => 'Add location',
'icon' => 'Icon',
'active' => 'Active',
'location_added_successfully' => 'Location was added successfully',
'location_updated_successfully' => 'Location was updated successfully',
'location_migration' => 'Location to move plants to',
'remove_location' => 'Remove location',
'location_removed_successfully' => 'Location was successfully removed',
'check_for_new_version' => 'Check for new version',
'new_version_available' => 'Version {new_version} is available. Get it <a href="{url}">here</a>.',
'no_new_version_available' => 'You are using the latest version.',
'admin_media' => 'Media',
'media_logo' => 'Workspace logo (.png image)',
'media_banner' => 'Workspace banner image (.jpg)',
'media_background' => 'Workspace background image (.jpg)',
'media_saved' => 'Media was saved successfully',
'enable_history' => 'Enable history',
'history_name' => 'History name',
'confirmPlantAddHistory' => 'Do you want to perform this action?',
'confirmPlantRemoveHistory' => 'Do you want to perform this action?',
'sorting_type_history_date' => 'History date',
'restore_from_history' => 'Restore',
'content_empty' => 'It is looking rather empty in here...',
'last_added_plants' => 'Last added plants',
'info' => 'Info',
'hortusfox_version' => 'HortusFox v{version}',
'php_version' => 'PHP Version: {version}',
'mysql_version' => 'MySQL Version: {version}',
'server_system_info' => 'Server: {osn} {osv} on {mt}',
'server_timezone' => 'Timezone: {time}',
'render_time' => 'Render time: {time}s',
'background_overlay_alpha' => 'Overlay alpha value',
'all_tasks_done' => 'There are currently no open tasks',
'last_added_or_updated_plants_hint' => 'Select recent plants mode',
'show_plants_aoru_added' => 'Show last added plants',
'show_plants_aoru_updated' => 'Show last authored plants',
'mail' => 'Mail',
'smtp_fromname' => 'E-Mail sender name',
'smtp_fromaddress' => 'E-Mail sender address',
'smtp_host' => 'SMTP Host',
'smtp_port' => 'SMTP Port',
'smtp_username' => 'SMTP Username',
'smtp_password' => 'SMTP Password',
'smtp_encryption' => 'SMTP Encryption',
'personal_notes' => 'Personal notes',
'personal_notes_saved_successfully' => 'Your personal notes were successfully updated',
'share_photo' => 'Share Photo',
'share_photo_input' => 'Photo to share',
'share_photo_title' => 'Title',
'share_photo_hint' => 'This will submit your photo on {url}, so you can share it with others. You will get a confirmation e-mail once sharing succeeded.',
'share' => 'Share',
'copy_to_clipboard' => 'Copy',
'copied_to_clipboard' => 'Content has been copied to clipboard.',
'mail_share_photo' => 'Notes on your shared photo',
'mail_share_photo_title' => 'Your photo was shared',
'mail_share_photo_hint' => 'Your photo has been successfully shared!<br/><br/>Link to photo: {url_photo}<br/>Removal link: {url_removal}',
'enable_photo_share' => 'Enable photo sharing',
'restore_password_email_placeholder' => 'Enter your E-Mail address',
'upcoming_tasks_overview' => 'Upcoming tasks',
'view_more' => 'View more',
'generate' => 'Generate',
'generate_cronpw_hint' => 'Note: Generating a new token will invalidate the current one',
'confirmSetAllRepotted' => 'Are you sure you want to update the last repotted date of all these plants?',
'all_plants_repotted' => 'Last repotted status has been updated for these plants',
'set_repotted' => 'Set repotted',
'bulk_set_repotted' => 'Set plants to repotted',
'backup' => 'Backup',
'gallery' => 'Gallery',
'export' => 'Export',
'import' => 'Import',
'import_successful' => 'Import succeeded!',
'pwa_enable' => 'Enable PWA support',
'home' => 'Home',
'enable_system_messages' => 'Enable system messages',
'plant_count' => '{count} plants',
'danger_count' => '{count} in danger',
'all_in_good_standing' => 'All fine',
'theme' => 'Theme',
'toggle_theme' => 'Toggle theme',
'light_mode' => 'Light Mode',
'dark_mode' => 'Dark Mode',
'auto_mode' => 'Auto Mode',
'themes' => 'Themes',
'confirm_generate_new_token' => 'Generating a new token will invalidate the previous one. Do you want to proceed?',
'themes_hint' => 'Here you can import themes. Select a zip-file of your theme you want to import and once import succeeded, the theme will be available to all users. Note: If the zip-archive contains multiple themes, then the system will try to import all of them.',
'theme_import_successful' => 'The import was successful. Imported themes: {count}',
'theme_list' => 'List of installed themes',
'confirm_theme_removal' => 'Are you sure that you want to remove this theme?',
'send_confirmation_email' => 'Send confirmation E-Mail',
'create_your_first_location' => 'There are no locations added yet. Please <a href="{url}">create your first location</a> in order to add plants.',
'error_room_not_empty' => 'The location is not empty. You must either create another location to migrate the plants to, or delete all plants in the location before you can delete this location.',
'extensions' => 'Extensions',
'expand' => 'Expand',
'collapse' => 'Collapse',
'theme_name' => 'Name',
'theme_version' => 'Version',
'theme_author' => 'Author',
'theme_contact' => 'Contact',
'all' => 'All',
'user_created_password' => 'User password: <strong>{pw}</strong>. Please forward this password to the user and inform them to change it after logging in.',
'calendar' => 'Calendar',
'calendar_hint' => 'Here you can manage important dates',
'range' => 'Range',
'go' => 'Go',
'add_calendar_item' => 'Add item',
'date_from' => 'Date from',
'date_till' => 'Date till',
'calendar_item_added' => 'The item was added successfully',
'calendar_class' => 'Class',
'calendar_class_water' => 'Watering',
'calendar_class_repot' => 'Repotting',
'calendar_class_fertilise' => 'Fertilising',
'calendar_class_purchase' => 'Purchase',
'calendar_class_cut' => 'Cutting',
'calendar_class_treat' => 'Treatment',
'calendar_class_harvest' => 'Harvest',
'calendar_class_other' => 'Other',
'edit_calendar_item' => 'Edit item',
'calendar_item_edited' => 'The item was edited successfully',
'timespan_select' => '- Select Range -',
'timespan_one_week' => 'One Week',
'timespan_two_weeks' => 'Two Weeks',
'timespan_one_month' => 'One Month',
'timespan_three_months' => 'Three Months',
'timespan_half_a_year' => 'Half a year',
'remove_calendar_item' => 'Remove item',
'confirm_remove_calendar_item' => 'Are you sure that you want to remove this item?',
'calendar_overview' => 'Dates of next week',
'show_calendar_view' => 'Show calendar view in dashboard',
'show_plant_id' => 'Show plant IDs in lists',
'unknown_calendar_class' => 'Unknown',
'add_calendar_class' => 'Add calendar class',
'calendar_class_ident' => 'Ident',
'calendar_class_name' => 'Name',
'calendar_class_color_background' => 'Background color',
'calendar_class_color_border' => 'Border color',
'calendar_class_added_successfully' => 'Calendar class was successfully added',
'calendar_class_edited_successfully' => 'Calendar class was successfully edited',
'confirm_remove_calendar_class' => 'Are you sure you want to remove this calendar class?',
'clone_plant' => 'Clone plant',
'show_qr_code' => 'Show QR-Code',
'qr_code' => 'QR-Code',
'print' => 'Print',
'bulk_print_qr_codes' => 'Print QR Codes',
'bulk_qrcodes' => 'Bulk QR-Code printing',
'select_all' => 'Select all',
'unselect_all' => 'Unselect all',
'noListItemsSelected' => 'No items selected',
'set_fertilised' => 'Set fertilised',
'bulk_set_fertilised' => 'Set plants to fertilised',
'confirmSetAllFertilised' => 'Are you sure you want to update the last fertilised date of all these plants?',
'all_plants_fertilised' => 'Last fertilised status has been updated for these plants',
'media_sound_message' => 'New-Message sound',
'location_fmt' => 'Location: <span>{loc}</span>',
'weather' => 'Weather',
'enable_weather' => 'Enable OpenWeatherMap',
'weather_api_key' => 'API Key',
'weather_latitude' => 'Latitude',
'weather_longitude' => 'Longitude',
'weather_autodetect_latlong' => 'Detect Geolocation',
'weather_hint' => 'View the current weather forecast for {region}',
'weather_unittype' => 'Unit type',
'weather_cache' => 'Cache duration (seconds)',
'monday' => 'Monday',
'tuesday' => 'Tuesday',
'wednesday' => 'Wednesday',
'thursday' => 'Thursday',
'friday' => 'Friday',
'saturday' => 'Saturday',
'sunday' => 'Sunday',
'api' => 'API',
'api_key_added' => 'New API key was successfully added',
'api_key_removed' => 'API key was successfully removed',
'toggle' => 'Toggle',
'confirm_remove_api_key' => 'Do you really want to remove this API key?',
'add_custom_attribute' => 'Add custom attribute',
'datatype' => 'Datatype',
'content' => 'Content',
'edit_custom_attribute' => 'Edit custom attribute',
'remove_custom_attribute' => 'Remove attribute',
'confirm_remove_custom_attribute' => 'Do you really want to remove this attribute?',
'timezone' => 'Timezone',
'attributes' => 'Attributes',
'attributes_visibility_hint' => 'Here you can choose which default plant attributes shall be available.',
'confirm_remove_task' => 'Do you really want to remove this task?',
'plant_photo_orientation_hint' => 'Please use portrait orientation for the main photo.',
'select' => 'Select',
'custom_attribute_datatype_bool' => 'Yes/No Value',
'custom_attribute_datatype_int' => 'Integer',
'custom_attribute_datatype_double' => 'Floating-Point Number',
'custom_attribute_datatype_string' => 'Text',
'custom_attribute_datatype_datetime' => 'Date',
'attributes_schema_hint' => 'Here you can manage plant attributes that are globally available to all plants',
'attribute_schema_added_successfully' => 'Global plant attribute was added successfully',
'attribute_schema_edited_successfully' => 'Global plant attribute was updated successfully',
'attribute_schema_removed_successfully' => 'Global plant attribute was removed successfully',
'confirm_remove_attribute_schema' => 'Do you really want to remove this item?',
'allow_custom_attributes' => 'Allow users to manage custom plant specific attributes',
'admin_api_hint' => 'Here you can manage API keys for your workspace. API keys are required to perform REST API requests on your workspace.',
'plant_log' => 'Plant Log',
'plant_log_content' => 'Content',
'plant_log_date' => 'Created / Updated',
'plant_log_actions' => 'Actions',
'no_plant_log_entries_yet' => 'There are no plant log entries yet.',
'add_plant_log_entry' => 'Add entry',
'edit_plant_log_entry' => 'Edit entry',
'confirm_remove_plant_log_entry' => 'Do you really want to remove this entry?',
'system_message_plant_log' => 'Add system messages of plants to log',
'load_more' => 'Load more',
'operationSucceeded' => 'Operation succeeded',
'admin_support' => 'Support',
'mail_rp_address' => 'Reverse Proxy',
'photo_edit_specify_url' => 'Specify URL to external resource',
'photo_edit_specify_file' => 'Select a file to upload',
'photo_edit_url_placeholder' => 'Enter URL...',
'github_repository' => 'GitHub Repository',
'donation_sponsoring' => 'GitHub Sponsoring',
'donation_kofi' => 'Buy Me a Coffee',
'link_discord' => 'Discord',
'link_bluesky' => 'Bluesky',
'link_videos' => 'Videos',
'auto_backup' => 'Enable Auto-Backup',
'auto_backup_cronjob_url' => 'Cronjob URL',
'backup_path' => 'Optional path to store backup files',
'backup_settings_stored' => 'Backup cronjob settings were saved succesfully',
'auto_backup_not_active' => 'The auto-backup feature has not been activated yet',
'shared_photos' => 'Shared Photos',
'confirm_remove_shared_photo' => 'Do you really want to remove this item?',
'share_photo_public' => 'Share this photo publicly',
'share_photo_description' => 'Description',
'share_photo_keywords' => 'Keywords',
'auth' => 'Auth',
'auth_proxy_enable' => 'Enable Proxy Authentication',
'auth_proxy_header_email' => 'HTTP Header for E-mail',
'auth_proxy_header_username' => 'HTTP Header for Username',
'auth_proxy_sign_up' => 'Automatically register unknown users',
'auth_proxy_whitelist' => 'Proxy Address Whitelist',
'auth_proxy_hide_logout' => 'Hide logout button',
'proxy_auth_settings_saved_successfully' => 'Proxy authentication settings saved successfully',
'auth_proxy_warning' => 'Warning: Be sure that your workspace instance is protected behind a proxy before enabling this feature',
'auth_proxy_no_https_detected' => 'Caution: No HTTPS detected. Please ensure that communication to your workspace is protected',
'location_log' => 'Location Log',
'location_log_content' => 'Content',
'location_log_date' => 'Created / Updated',
'location_log_actions' => 'Actions',
'add_location_log_entry' => 'Add entry',
'edit_location_log_entry' => 'Edit entry',
'confirm_remove_location_log_entry' => 'Do you really want to remove this entry?',
'no_location_log_entries_yet' => 'No entries yet.',
'share_api_host' => 'Host to share images on',
'search_custom' => 'Search in custom attributes',
'custom_bulk_commands' => 'Custom bulk commands',
'add_bulk_cmd' => 'Add bulk command',
'styles' => 'Styles',
'confirm_remove_bulk_cmd' => 'Do you really want to remove this item?',
'bulk_cmd_added_successfully' => 'Bulk command was successfully added',
'bulk_cmd_updated_successfully' => 'Bulk command was successfully updated',
'bulk_cmd_removed_successfully' => 'Bulk command was successfully removed',
'plantrec_enable_label' => 'Enable Plant Recognition via Pl@ntNet',
'plantrec_apikey_label' => 'Pl@ntNet API Key',
'save_all' => 'Save all',
'date_select_today' => 'Use today\'s date',
'plant_sorting_view_cards' => 'View as cards',
'plant_sorting_view_list' => 'View as list',
'amount' => 'Amount',
'confirm_remove_preview_photo' => 'Do you really want to remove this photo?',
'move_current_photo_to_gallery' => 'Move current photo to gallery',
'created_at' => 'Created at',
'updated_at' => 'Updated at',
'tags' => 'Tags',
'recurring' => 'Recurring',
'recurring_time' => 'Repetition',
'mail_info_task_recurring' => 'Recurring task',
'mail_info_task_recurring_hint' => 'The task <strong>{name}</strong> is due now and will recur in {time} hours. Due date: {date}. Go to tasks: <a href="{url}">{url}</a>',
'notify_tasks_recurring' => 'Notify me about recurring tasks',
'species' => 'Species',
'list_of_species' => 'List of species',
'plantrec_quickscan_label' => 'Enable quick-scan widget',
'move_plants' => 'Move plants',
'bulk_move_plants' => 'Move plants to a different location',
'hardy' => 'Hardy',
'sorting_type_hardy' => 'Hardy',
'confirm_set_gallery_photo_as_main' => 'Do you want to replace the main photo with this one?',
'enable_quick_add' => 'Enable Quick-Add widget',
'clear_cache' => 'Clear cache',
'schema_attribute_already_exists' => 'There is already an attribute with the given label',
'send_test_mail' => 'Send test mail',
'confirm_test_mail' => 'Do you want to send a test e-mail to {mail}?',
'none' => 'None',
'sorting_type_last_edited_date' => 'Last edited',
'hours' => 'Hours',
'days' => 'Days',
'weeks' => 'Weeks',
'months' => 'Months',
'years' => 'Years',
'recurring_time_with_scope' => '{time} {scope}'
];