2014-05-14 23:24:20 +10:00
< ? php
return [
'cms_object' => [
'invalid_file' => 'Invalid file name: :name. File names can contain only alphanumeric symbols, underscores, dashes and dots. Some examples of correct file names: page.htm, page, subdirectory/page' ,
2014-12-19 10:28:27 +01:00
'invalid_property' => " The property ':name' cannot be set " ,
'file_already_exists' => " File ':name' already exists. " ,
'error_saving' => " Error saving file ':name'. Please check write permissions. " ,
2014-08-03 10:52:46 +10:00
'error_creating_directory' => 'Error creating directory :name. Please check write permissions.' ,
2014-05-14 23:24:20 +10:00
'invalid_file_extension' => 'Invalid file extension: :invalid. Allowed extensions are: :allowed.' ,
2014-12-19 10:28:27 +01:00
'error_deleting' => " Error deleting the template file ':name'. Please check write permissions. " ,
2014-05-14 23:24:20 +10:00
'delete_success' => 'Templates were successfully deleted: :count.' ,
'file_name_required' => 'The File Name field is required.'
],
'theme' => [
2015-03-14 18:09:54 +11:00
'not_found_name' => " The theme ':name' is not found. " ,
2014-05-14 23:24:20 +10:00
'active' => [
2014-12-19 10:28:27 +01:00
'not_set' => 'The active theme is not set.' ,
'not_found' => 'The active theme is not found.'
2014-05-14 23:24:20 +10:00
],
'edit' => [
2014-12-19 10:28:27 +01:00
'not_set' => 'The edit theme is not set.' ,
'not_found' => 'The edit theme is not found.' ,
2014-05-14 23:24:20 +10:00
'not_match' => " The object you're trying to access doesn't belong to the theme being edited. Please reload the page. "
2014-07-19 13:05:50 +11:00
],
'settings_menu' => 'Front-end theme' ,
'settings_menu_description' => 'Preview the list of installed themes and select an active theme.' ,
2015-03-16 19:33:58 +11:00
'name_label' => 'Name' ,
'name_create_placeholder' => 'New theme name' ,
'author_label' => 'Author' ,
'author_placeholder' => 'Person or company name' ,
'description_label' => 'Description' ,
'description_placeholder' => 'Theme description' ,
'homepage_label' => 'Homepage' ,
'homepage_placeholder' => 'Website URL' ,
'code_label' => 'Code' ,
'code_placeholder' => 'A unique code for this theme used for distribution' ,
'dir_name_label' => 'Directory name' ,
'dir_name_create_label' => 'The destination theme directory' ,
'theme_label' => 'Theme' ,
2014-07-19 15:54:09 +10:00
'activate_button' => 'Activate' ,
'active_button' => 'Activate' ,
2015-03-16 19:33:58 +11:00
'customize_button' => 'Customize' ,
'duplicate_button' => 'Duplicate' ,
'duplicate_title' => 'Duplicate theme' ,
'duplicate_theme_success' => 'Duplicated theme successfully!' ,
'manage_button' => 'Manage' ,
'manage_title' => 'Manage theme' ,
'edit_properties_title' => 'Theme' ,
'edit_properties_button' => 'Edit properties' ,
'save_properties' => 'Save properties' ,
'import_button' => 'Import' ,
'import_title' => 'Import theme' ,
'import_theme_success' => 'Imported theme successfully!' ,
'import_uploaded_file' => 'Theme archive file' ,
'import_overwrite_label' => 'Overwrite existing files' ,
'import_overwrite_comment' => 'Untick this box to only import new files' ,
'import_folders_label' => 'Folders' ,
'import_folders_comment' => 'Please select the theme folders you would like to import' ,
'export_button' => 'Export' ,
'export_title' => 'Export theme' ,
'export_folders_label' => 'Folders' ,
'export_folders_comment' => 'Please select the theme folders you would like to import' ,
'delete_button' => 'Delete' ,
'delete_confirm' => 'Are you sure you want to delete this theme? It cannot be undone!' ,
'delete_active_theme_failed' => 'Cannot delete the active theme, try making another theme active first.' ,
'delete_theme_success' => 'Deleted theme successfully!' ,
'create_title' => 'Create theme' ,
'create_button' => 'Create' ,
'create_new_blank_theme' => 'Create a new blank theme' ,
'create_theme_success' => 'Created theme successfully!' ,
'create_theme_required_name' => 'Please specify a name for the theme.' ,
'new_directory_name_label' => 'Theme directory' ,
'new_directory_name_comment' => 'Provide a new directory name for the duplicated theme.' ,
'dir_name_invalid' => 'Name can contain only digits, Latin letters and the following symbols: _-' ,
'dir_name_taken' => 'Desired theme directory already exists.' ,
'find_more_themes' => 'Find more themes on OctoberCMS Theme Marketplace' ,
'return' => 'Return to themes list' ,
2014-05-14 23:24:20 +10:00
],
2014-11-10 20:35:20 +11:00
'maintenance' => [
'settings_menu' => 'Maintenance mode' ,
'settings_menu_description' => 'Configure the maintenance mode page and toggle the setting.' ,
'is_enabled' => 'Enable maintenance mode' ,
2014-12-19 10:28:27 +01:00
'is_enabled_comment' => 'When activated website visitors will see the page chosen below.'
2014-11-10 20:35:20 +11:00
],
2014-05-14 23:24:20 +10:00
'page' => [
2015-03-12 20:50:16 +11:00
'not_found_name' => " The page ':name' is not found " ,
2014-05-14 23:24:20 +10:00
'not_found' => [
2014-12-19 10:28:27 +01:00
'label' => 'Page not found' ,
'help' => 'The requested page cannot be found.'
2014-05-14 23:24:20 +10:00
],
'custom_error' => [
2014-12-19 10:28:27 +01:00
'label' => 'Page error' ,
'help' => " We're sorry, but something went wrong and the page cannot be displayed. "
2014-05-14 23:24:20 +10:00
],
'menu_label' => 'Pages' ,
2014-11-10 20:35:20 +11:00
'unsaved_label' => 'Unsaved page(s)' ,
2014-05-14 23:24:20 +10:00
'no_list_records' => 'No pages found' ,
'new' => 'New page' ,
2014-11-19 12:04:55 +04:00
'invalid_url' => 'Invalid URL format. The URL should start with the forward slash symbol and can contain digits, Latin letters and the following symbols: ._-[]:?|/+*^$' ,
2014-05-14 23:24:20 +10:00
'delete_confirm_multiple' => 'Do you really want to delete selected pages?' ,
'delete_confirm_single' => 'Do you really want delete this page?' ,
'no_layout' => '-- no layout --'
],
'layout' => [
2015-03-12 20:50:16 +11:00
'not_found_name' => " The layout ':name' is not found " ,
2014-05-14 23:24:20 +10:00
'menu_label' => 'Layouts' ,
2014-11-10 20:35:20 +11:00
'unsaved_label' => 'Unsaved layout(s)' ,
2014-05-14 23:24:20 +10:00
'no_list_records' => 'No layouts found' ,
'new' => 'New layout' ,
'delete_confirm_multiple' => 'Do you really want to delete selected layouts?' ,
'delete_confirm_single' => 'Do you really want delete this layout?'
],
'partial' => [
2015-03-12 20:50:16 +11:00
'not_found_name' => " The partial ':name' is not found. " ,
2014-12-19 10:28:27 +01:00
'invalid_name' => 'Invalid partial name: :name.' ,
2014-05-14 23:24:20 +10:00
'menu_label' => 'Partials' ,
2014-11-10 20:35:20 +11:00
'unsaved_label' => 'Unsaved partial(s)' ,
2014-05-14 23:24:20 +10:00
'no_list_records' => 'No partials found' ,
'delete_confirm_multiple' => 'Do you really want to delete selected partials?' ,
'delete_confirm_single' => 'Do you really want delete this partial?' ,
'new' => 'New partial'
],
'content' => [
2015-03-12 20:50:16 +11:00
'not_found_name' => " The content file ':name' is not found. " ,
2014-05-14 23:24:20 +10:00
'menu_label' => 'Content' ,
2014-11-10 20:35:20 +11:00
'unsaved_label' => 'Unsaved content' ,
2014-05-14 23:24:20 +10:00
'no_list_records' => 'No content files found' ,
'delete_confirm_multiple' => 'Do you really want to delete selected content files or directories?' ,
'delete_confirm_single' => 'Do you really want delete this content file?' ,
'new' => 'New content file'
],
'ajax_handler' => [
2014-12-19 10:28:27 +01:00
'invalid_name' => 'Invalid AJAX handler name: :name.' ,
'not_found' => " AJAX handler ':name' was not found. "
2014-05-14 23:24:20 +10:00
],
'cms' => [
2014-12-19 10:28:27 +01:00
'menu_label' => 'CMS'
2014-05-14 23:24:20 +10:00
],
2014-05-16 01:04:40 +02:00
'sidebar' => [
'add' => 'Add' ,
'search' => 'Search...'
],
'editor' => [
'settings' => 'Settings' ,
'title' => 'Title' ,
2014-05-16 11:29:44 +10:00
'new_title' => 'New page title' ,
2014-05-16 01:04:40 +02:00
'url' => 'URL' ,
'filename' => 'File Name' ,
'layout' => 'Layout' ,
'description' => 'Description' ,
'preview' => 'Preview' ,
'meta' => 'Meta' ,
'meta_title' => 'Meta Title' ,
'meta_description' => 'Meta Description' ,
'markup' => 'Markup' ,
'code' => 'Code' ,
'content' => 'Content' ,
2014-07-03 17:40:44 +11:00
'hidden' => 'Hidden' ,
2014-08-09 03:02:15 +01:00
'hidden_comment' => 'Hidden pages are accessible only by logged-in back-end users.' ,
'enter_fullscreen' => 'Enter fullscreen mode' ,
'exit_fullscreen' => 'Exit fullscreen mode'
2014-05-16 01:04:40 +02:00
],
2014-05-14 23:24:20 +10:00
'asset' => [
2014-12-19 10:28:27 +01:00
'menu_label' => 'Assets' ,
2014-11-10 20:35:20 +11:00
'unsaved_label' => 'Unsaved asset(s)' ,
2014-05-14 23:24:20 +10:00
'drop_down_add_title' => 'Add...' ,
'drop_down_operation_title' => 'Action...' ,
'upload_files' => 'Upload file(s)' ,
'create_file' => 'Create file' ,
'create_directory' => 'Create directory' ,
2014-08-12 01:15:38 +01:00
'directory_popup_title' => 'New directory' ,
'directory_name' => 'Directory name' ,
2014-05-14 23:24:20 +10:00
'rename' => 'Rename' ,
'delete' => 'Delete' ,
'move' => 'Move' ,
2014-08-12 01:15:38 +01:00
'select' => 'Select' ,
2014-05-14 23:24:20 +10:00
'new' => 'New file' ,
'rename_popup_title' => 'Rename' ,
'rename_new_name' => 'New name' ,
'invalid_path' => 'Path can contain only digits, Latin letters, spaces and the following symbols: ._-/' ,
'error_deleting_file' => 'Error deleting file :name.' ,
'error_deleting_dir_not_empty' => 'Error deleting directory :name. The directory is not empty.' ,
'error_deleting_dir' => 'Error deleting file :name.' ,
'invalid_name' => 'Name can contain only digits, Latin letters, spaces and the following symbols: ._-' ,
'original_not_found' => 'Original file or directory not found' ,
'already_exists' => 'File or directory with this name already exists' ,
'error_renaming' => 'Error renaming the file or directory' ,
'name_cant_be_empty' => 'The name cannot be empty' ,
'too_large' => 'The uploaded file is too large. The maximum allowed file size is :max_size' ,
'type_not_allowed' => 'Only the following file types are allowed: :allowed_types' ,
'file_not_valid' => 'File is not valid' ,
2014-12-19 10:28:27 +01:00
'error_uploading_file' => " Error uploading file ':name': :error " ,
2014-05-14 23:24:20 +10:00
'move_please_select' => 'please select' ,
'move_destination' => 'Destination directory' ,
'move_popup_title' => 'Move assets' ,
'move_button' => 'Move' ,
'selected_files_not_found' => 'Selected files not found' ,
'select_destination_dir' => 'Please select a destination directory' ,
'destination_not_found' => 'Destination directory is not found' ,
'error_moving_file' => 'Error moving file :file' ,
'error_moving_directory' => 'Error moving directory :dir' ,
'error_deleting_directory' => 'Error deleting the original directory :dir' ,
'path' => 'Path'
],
'component' => [
2014-12-19 10:28:27 +01:00
'menu_label' => 'Components' ,
'unnamed' => 'Unnamed' ,
'no_description' => 'No description provided' ,
'alias' => 'Alias' ,
'alias_description' => 'A unique name given to this component when using it in the page or layout code.' ,
'validation_message' => 'Component aliases are required and can contain only Latin symbols, digits, and underscores. The aliases should start with a Latin symbol.' ,
'invalid_request' => 'The template cannot be saved because of invalid component data.' ,
2014-05-14 23:24:20 +10:00
'no_records' => 'No components found' ,
'not_found' => " The component ':name' is not found. " ,
2014-12-19 10:28:27 +01:00
'method_not_found' => " The component ':name' does not contain a method ':method'. "
2014-05-14 23:24:20 +10:00
],
'template' => [
2014-12-19 10:28:27 +01:00
'invalid_type' => 'Unknown template type.' ,
'not_found' => 'The requested template was not found.' ,
'saved' => 'The template has been successfully saved.'
2014-08-09 03:02:15 +01:00
],
'permissions' => [
2014-12-19 10:28:27 +01:00
'name' => 'Cms' ,
2014-08-09 12:21:17 +10:00
'manage_content' => 'Manage content' ,
'manage_assets' => 'Manage assets' ,
'manage_pages' => 'Manage pages' ,
'manage_layouts' => 'Manage layouts' ,
'manage_partials' => 'Manage partials' ,
'manage_themes' => 'Manage themes'
2015-02-24 22:02:03 -08:00
],
'media' => [
2015-03-15 12:52:03 -07:00
'invalid_path' => " Invalid file path specified: ':path'. " ,
'menu_label' => 'Media' ,
'upload' => 'Upload' ,
2015-03-18 22:20:53 -07:00
'move' => 'Move' ,
'delete' => 'Delete' ,
2015-03-15 12:52:03 -07:00
'add_folder' => 'Add folder' ,
'search' => 'Search' ,
'filter_everything' => 'Everything' ,
'filter_images' => 'Images' ,
'filter_video' => 'Video' ,
'filter_audio' => 'Audio' ,
'filter_documents' => 'Documents' ,
'library' => 'Library' ,
'folder_size_items' => 'item(s)' ,
'size' => 'Size' ,
'title' => 'Title' ,
'last_modified' => 'Last modified' ,
'public_url' => 'Public URL' ,
'click_here' => 'Click here' ,
'thumbnail_error' => 'Error generating thumbnail.' ,
'return_to_parent' => 'Return to the parent folder' ,
'return_to_parent_label' => 'Go up ..' ,
'nothing_selected' => 'Nothing is selected.' ,
2015-03-15 21:54:32 -07:00
'multiple_selected' => 'Multiple items selected.' ,
'uploading_file_num' => 'Uploading :number file(s)...' ,
2015-03-16 21:49:39 -07:00
'uploading_complete' => 'Upload complete' ,
'order_by' => 'Order by' ,
2015-03-17 22:20:04 -07:00
'search' => 'Search' ,
'folder' => 'Folder' ,
2015-03-18 22:20:53 -07:00
'no_files_found' => 'No files found by your request.' ,
2015-03-22 13:07:37 -07:00
'delete_empty' => 'Please select items to delete.' ,
2015-03-21 23:09:33 -07:00
'delete_confirm' => 'Do you really want to delete the selected item(s)?' ,
2015-03-22 13:07:37 -07:00
'error_renaming_file' => 'Error renaming the item.' ,
2015-03-21 23:09:33 -07:00
'new_folder_title' => 'New folder' ,
'folder_name' => 'Folder name' ,
'error_creating_folder' => 'Error creating folder' ,
2015-03-22 13:07:37 -07:00
'folder_or_file_exist' => 'A folder or file with the specified name already exists.' ,
'move_empty' => 'Please select items to move.' ,
'move_popup_title' => 'Move files or folders' ,
'move_destination' => 'Destination folder' ,
'please_select_move_dest' => 'Please select a destination folder.' ,
'move_dest_src_match' => 'Please select another destination folder.'
2014-05-14 23:24:20 +10:00
]
2014-10-11 01:32:11 +02:00
];