|
| 1 | +<?php |
| 2 | +/** |
| 3 | + * Common elements found throughout many areas of BookStack. |
| 4 | + */ |
| 5 | +return [ |
| 6 | + |
| 7 | + // Buttons |
| 8 | + 'cancel' => 'Cancel', |
| 9 | + 'close' => 'Close', |
| 10 | + 'confirm' => 'Confirm', |
| 11 | + 'back' => 'Back', |
| 12 | + 'save' => 'Save', |
| 13 | + 'continue' => 'Continue', |
| 14 | + 'select' => 'Select', |
| 15 | + 'toggle_all' => 'Toggle All', |
| 16 | + 'more' => 'More', |
| 17 | + |
| 18 | + // Form Labels |
| 19 | + 'name' => 'Name', |
| 20 | + 'description' => 'Description', |
| 21 | + 'role' => 'Role', |
| 22 | + 'cover_image' => 'Cover image', |
| 23 | + 'cover_image_description' => 'This image should be approximately 440x250px although it will be flexibly scaled & cropped to fit the user interface in different scenarios as required, so actual dimensions for display will differ.', |
| 24 | + |
| 25 | + // Actions |
| 26 | + 'actions' => 'Actions', |
| 27 | + 'view' => 'View', |
| 28 | + 'view_all' => 'View All', |
| 29 | + 'new' => 'New', |
| 30 | + 'create' => 'Create', |
| 31 | + 'update' => 'Update', |
| 32 | + 'edit' => 'Edit', |
| 33 | + 'archive' => 'Archive', |
| 34 | + 'unarchive' => 'Un-Archive', |
| 35 | + 'sort' => 'Sort', |
| 36 | + 'move' => 'Move', |
| 37 | + 'copy' => 'Copy', |
| 38 | + 'reply' => 'Reply', |
| 39 | + 'delete' => 'Delete', |
| 40 | + 'delete_confirm' => 'Confirm Deletion', |
| 41 | + 'search' => 'Search', |
| 42 | + 'search_clear' => 'Clear Search', |
| 43 | + 'reset' => 'Reset', |
| 44 | + 'remove' => 'Remove', |
| 45 | + 'add' => 'Add', |
| 46 | + 'configure' => 'Configure', |
| 47 | + 'manage' => 'Manage', |
| 48 | + 'fullscreen' => 'Fullscreen', |
| 49 | + 'favourite' => 'Favourite', |
| 50 | + 'unfavourite' => 'Unfavourite', |
| 51 | + 'next' => 'Next', |
| 52 | + 'previous' => 'Previous', |
| 53 | + 'filter_active' => 'Active Filter:', |
| 54 | + 'filter_clear' => 'Clear Filter', |
| 55 | + 'download' => 'Download', |
| 56 | + 'open_in_tab' => 'Open in Tab', |
| 57 | + 'open' => 'Open', |
| 58 | + |
| 59 | + // Sort Options |
| 60 | + 'sort_options' => 'Sort Options', |
| 61 | + 'sort_direction_toggle' => 'Sort Direction Toggle', |
| 62 | + 'sort_ascending' => 'Sort Ascending', |
| 63 | + 'sort_descending' => 'Sort Descending', |
| 64 | + 'sort_name' => 'Name', |
| 65 | + 'sort_default' => 'Default', |
| 66 | + 'sort_created_at' => 'Created Date', |
| 67 | + 'sort_updated_at' => 'Updated Date', |
| 68 | + |
| 69 | + // Misc |
| 70 | + 'deleted_user' => 'Deleted User', |
| 71 | + 'no_activity' => 'No activity to show', |
| 72 | + 'no_items' => 'No items available', |
| 73 | + 'back_to_top' => 'Back to top', |
| 74 | + 'skip_to_main_content' => 'Skip to main content', |
| 75 | + 'toggle_details' => 'Toggle Details', |
| 76 | + 'toggle_thumbnails' => 'Toggle Thumbnails', |
| 77 | + 'details' => 'Details', |
| 78 | + 'grid_view' => 'Grid View', |
| 79 | + 'list_view' => 'List View', |
| 80 | + 'default' => 'Default', |
| 81 | + 'breadcrumb' => 'Breadcrumb', |
| 82 | + 'status' => 'Status', |
| 83 | + 'status_active' => 'Active', |
| 84 | + 'status_inactive' => 'Inactive', |
| 85 | + 'never' => 'Never', |
| 86 | + 'none' => 'None', |
| 87 | + |
| 88 | + // Header |
| 89 | + 'homepage' => 'Homepage', |
| 90 | + 'header_menu_expand' => 'Expand Header Menu', |
| 91 | + 'profile_menu' => 'Profile Menu', |
| 92 | + 'view_profile' => 'View Profile', |
| 93 | + 'edit_profile' => 'Edit Profile', |
| 94 | + 'dark_mode' => 'Dark Mode', |
| 95 | + 'light_mode' => 'Light Mode', |
| 96 | + 'global_search' => 'Global Search', |
| 97 | + |
| 98 | + // Layout tabs |
| 99 | + 'tab_info' => 'Info', |
| 100 | + 'tab_info_label' => 'Tab: Show Secondary Information', |
| 101 | + 'tab_content' => 'Content', |
| 102 | + 'tab_content_label' => 'Tab: Show Primary Content', |
| 103 | + |
| 104 | + // Email Content |
| 105 | + 'email_action_help' => 'If you’re having trouble clicking the ":actionText" button, copy and paste the URL below into your web browser:', |
| 106 | + 'email_rights' => 'All rights reserved', |
| 107 | + |
| 108 | + // Footer Link Options |
| 109 | + // Not directly used but available for convenience to users. |
| 110 | + 'privacy_policy' => 'Privacy Policy', |
| 111 | + 'terms_of_service' => 'Terms of Service', |
| 112 | + |
| 113 | + // OpenSearch |
| 114 | + 'opensearch_description' => 'Search :appName', |
| 115 | +]; |
0 commit comments