示例#1
0
 /**
  * Updates an existing row or inserts a new row into table vw_users_details.
  *
  * @param string $user_id
  * @param string $email
  * @param string $password
  * @param string $first_name
  * @param string $last_name
  * @param string $org_id
  * @param string $organization_name
  * @param string $role_id
  * @param string $role_name
  * @param bool $do_redirect Determines whether or not to redirect back to the data table view.
  *
  * @return void
  */
 public function save(string $user_id, string $email, string $password, string $first_name, string $last_name, string $org_id, string $organization_name, string $role_id, string $role_name, bool $do_redirect = true)
 {
     #lucid::permission()->requireLogin();
     # lucid::$security->requirePermission([]); # add required permissions to this array
     # This will check the parameters passed to this function, and run them against the rules returned
     # from ->ruleset(). If the data does not pass validation, an error message is sent to the client
     # and the request ends. If the data passes validation, then processing continues. You do not
     # need to check if the data passes or not.
     $this->ruleset('edit')->checkParameters(func_get_args());
     # This loads the table row that you are trying to update. If $user_id === 0, then the model's
     # ->create() method will be called. This does not actually insert a row into the database until the
     # ->save() method is called.
     $data = $this->getOne($user_id);
     $data->email = $email;
     $data->password = $password;
     $data->first_name = $first_name;
     $data->last_name = $last_name;
     $data->org_id = $org_id;
     $data->organization_name = $organization_name;
     $data->role_id = $role_id;
     $data->role_name = $role_name;
     $data->save();
     lucid::response()->message(lucid::$app->i18n()->translate('button:save_response'));
     if ($do_redirect === true) {
         lucid::$app->response()->redirect('vw_users_details', 'table');
     }
 }
示例#2
0
 function edit()
 {
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:contents:title'), 'field' => 'title', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:contents:body'), 'field' => 'body', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'checked', 'label' => lucid::i18n()->translate('model:contents:is_public'), 'field' => 'is_public']);
     $this->addRule(['type' => 'validDate', 'label' => lucid::i18n()->translate('model:contents:creation_date'), 'field' => 'creation_date']);
     return $this;
 }
示例#3
0
 function edit()
 {
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:countries:alpha_3'), 'field' => 'alpha_3', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:countries:name'), 'field' => 'name', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:countries:common_name'), 'field' => 'common_name', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:countries:official_name'), 'field' => 'official_name', 'min' => '2', 'max' => '255']);
     return $this;
 }
示例#4
0
 function edit()
 {
     $this->addRule(['type' => 'anyValue', 'label' => lucid::i18n()->translate('model:organizations:role_id'), 'field' => 'role_id']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:organizations:name'), 'field' => 'name', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'checked', 'label' => lucid::i18n()->translate('model:organizations:is_enabled'), 'field' => 'is_enabled']);
     $this->addRule(['type' => 'validDate', 'label' => lucid::i18n()->translate('model:organizations:created_on'), 'field' => 'created_on']);
     return $this;
 }
示例#5
0
 function edit()
 {
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:vw_users_details:email'), 'field' => 'email', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:vw_users_details:password'), 'field' => 'password', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:vw_users_details:first_name'), 'field' => 'first_name', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:vw_users_details:last_name'), 'field' => 'last_name', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'anyValue', 'label' => lucid::i18n()->translate('model:vw_users_details:org_id'), 'field' => 'org_id']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:vw_users_details:organization_name'), 'field' => 'organization_name', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'anyValue', 'label' => lucid::i18n()->translate('model:vw_users_details:role_id'), 'field' => 'role_id']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:vw_users_details:role_name'), 'field' => 'role_name', 'min' => '2', 'max' => '255']);
     return $this;
 }
示例#6
0
 function edit()
 {
     $this->addRule(['type' => 'anyValue', 'label' => lucid::i18n()->translate('model:addresses:org_id'), 'field' => 'org_id']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:addresses:name'), 'field' => 'name', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:addresses:street_1'), 'field' => 'street_1', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:addresses:street_2'), 'field' => 'street_2', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:addresses:city'), 'field' => 'city', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'anyValue', 'label' => lucid::i18n()->translate('model:addresses:region_id'), 'field' => 'region_id']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:addresses:postal_code'), 'field' => 'postal_code', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'anyValue', 'label' => lucid::i18n()->translate('model:addresses:country_id'), 'field' => 'country_id']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:addresses:phone_number_1'), 'field' => 'phone_number_1', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:addresses:phone_number_2'), 'field' => 'phone_number_2', 'min' => '2', 'max' => '255']);
     return $this;
 }
示例#7
0
文件: users.php 项目: dev-lucid/lucid
 function edit()
 {
     $this->addRule(['type' => 'anyValue', 'label' => lucid::i18n()->translate('model:users:org_id'), 'field' => 'org_id']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:users:email'), 'field' => 'email', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:users:password'), 'field' => 'password', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:users:first_name'), 'field' => 'first_name', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:users:last_name'), 'field' => 'last_name', 'min' => '2', 'max' => '255']);
     $this->addRule(['type' => 'checked', 'label' => lucid::i18n()->translate('model:users:is_enabled'), 'field' => 'is_enabled']);
     $this->addRule(['type' => 'validDate', 'label' => lucid::i18n()->translate('model:users:last_login'), 'field' => 'last_login']);
     $this->addRule(['type' => 'validDate', 'label' => lucid::i18n()->translate('model:users:created_on'), 'field' => 'created_on']);
     $this->addRule(['type' => 'checked', 'label' => lucid::i18n()->translate('model:users:force_password_change'), 'field' => 'force_password_change']);
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:users:register_key'), 'field' => 'register_key', 'min' => '2', 'max' => '255']);
     return $this;
 }
示例#8
0
文件: en.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Date & Time', 'access_log:email' => 'Email', 'access_log:first_name' => 'First name', 'access_log:hint' => 'This log displays a list of successful sign in attempts by administrators. Records are kept for a total of :days days.', 'access_log:ip_address' => 'IP address', 'access_log:last_name' => 'Last name', 'access_log:login' => 'Login', 'access_log:menu_description' => 'View a list of successful back-end user sign ins.', 'access_log:menu_label' => 'Access log', 'account:apply' => 'Apply', 'account:cancel' => 'Cancel', 'account:delete' => 'Delete', 'account:email_placeholder' => 'email', 'account:enter_email' => 'Enter your email', 'account:enter_login' => 'Enter your login', 'account:enter_new_password' => 'Enter a new password', 'account:forgot_password' => 'Forgot your password?', 'account:login' => 'Login', 'account:login_placeholder' => 'login', 'account:ok' => 'OK', 'account:password_placeholder' => 'password', 'account:password_reset' => 'Password Reset', 'account:reset' => 'Reset', 'account:reset_error' => 'Invalid password reset data supplied. Please try again!', 'account:reset_fail' => 'Unable to reset your password!', 'account:reset_success' => 'Your password has been successfully reset. You may now sign in.', 'account:restore' => 'Restore', 'account:restore_error' => 'A user could not be found with a login value of \':login\'', 'account:restore_success' => 'An email has been sent to your email address with password restore instructions.', 'account:sign_out' => 'Sign out', 'ajax_handler:invalid_name' => 'Invalid AJAX handler name: :name.', 'ajax_handler:not_found' => 'AJAX handler \':name\' was not found.', 'alert:cancel_button_text' => 'Cancel', 'alert:confirm_button_text' => 'OK', 'app:name' => 'October CMS', 'app:tagline' => 'Getting back to basics', 'asset:already_exists' => 'File or directory with this name already exists', 'asset:create_directory' => 'Create directory', 'asset:create_file' => 'Create file', 'asset:delete' => 'Delete', 'asset:destination_not_found' => 'Destination directory is not found', 'asset:directory_name' => 'Directory name', 'asset:directory_popup_title' => 'New directory', 'asset:drop_down_add_title' => 'Add...', 'asset:drop_down_operation_title' => 'Action...', 'asset:error_deleting_dir' => 'Error deleting file :name.', 'asset:error_deleting_dir_not_empty' => 'Error deleting directory :name. The directory is not empty.', 'asset:error_deleting_directory' => 'Error deleting the original directory :dir', 'asset:error_deleting_file' => 'Error deleting file :name.', 'asset:error_moving_directory' => 'Error moving directory :dir', 'asset:error_moving_file' => 'Error moving file :file', 'asset:error_renaming' => 'Error renaming the file or directory', 'asset:error_uploading_file' => 'Error uploading file \':name\': :error', 'asset:file_not_valid' => 'File is not valid', 'asset:invalid_name' => 'Name can contain only digits, Latin letters, spaces and the following symbols: ._-', 'asset:invalid_path' => 'Path can contain only digits, Latin letters, spaces and the following symbols: ._-/', 'asset:menu_label' => 'Assets', 'asset:move' => 'Move', 'asset:move_button' => 'Move', 'asset:move_destination' => 'Destination directory', 'asset:move_please_select' => 'please select', 'asset:move_popup_title' => 'Move assets', 'asset:name_cant_be_empty' => 'The name cannot be empty', 'asset:new' => 'New file', 'asset:original_not_found' => 'Original file or directory not found', 'asset:path' => 'Path', 'asset:rename' => 'Rename', 'asset:rename_new_name' => 'New name', 'asset:rename_popup_title' => 'Rename', 'asset:select' => 'Select', 'asset:select_destination_dir' => 'Please select a destination directory', 'asset:selected_files_not_found' => 'Selected files not found', 'asset:too_large' => 'The uploaded file is too large. The maximum allowed file size is :max_size', 'asset:type_not_allowed' => 'Only the following file types are allowed: :allowed_types', 'asset:unsaved_label' => 'Unsaved asset(s)', 'asset:upload_files' => 'Upload file(s)', 'auth:title' => 'Administration Area', 'backend_preferences:locale' => 'Language', 'backend_preferences:locale_comment' => 'Select your desired locale for language use.', 'backend_preferences:menu_description' => 'Manage your account preferences such as desired language.', 'backend_preferences:menu_label' => 'Back-end preferences', 'behavior:missing_property' => 'Class :class must define property $:property used by :behavior behavior.', 'branding:app_name' => 'App Name', 'branding:app_name_description' => 'This name is shown in the title area of the back-end.', 'branding:app_tagline' => 'App Tagline', 'branding:app_tagline_description' => 'This name is shown on the sign in screen for the back-end.', 'branding:brand' => 'Brand', 'branding:colors' => 'Colors', 'branding:custom_stylesheet' => 'Custom stylesheet', 'branding:logo' => 'Logo', 'branding:logo_description' => 'Upload a custom logo to use in the back-end.', 'branding:menu_description' => 'Customize the administration area such as name, colors and logo.', 'branding:menu_label' => 'Customize back-end', 'branding:primary_dark' => 'Primary (Dark)', 'branding:primary_light' => 'Primary (Light)', 'branding:secondary_dark' => 'Secondary (Dark)', 'branding:secondary_light' => 'Secondary (Light)', 'branding:styles' => 'Styles', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Templates were successfully deleted: :count.', 'cms_object:error_creating_directory' => 'Error creating directory :name. Please check write permissions.', 'cms_object:error_deleting' => 'Error deleting the template file \':name\'. Please check write permissions.', 'cms_object:error_saving' => 'Error saving file \':name\'. Please check write permissions.', 'cms_object:file_already_exists' => 'File \':name\' already exists.', 'cms_object:file_name_required' => 'The File Name field is required.', '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', 'cms_object:invalid_file_extension' => 'Invalid file extension: :invalid. Allowed extensions are: :allowed.', 'cms_object:invalid_property' => 'The property \':name\' cannot be set', 'combiner:not_found' => 'The combiner file \':name\' is not found.', 'component:alias' => 'Alias', 'component:alias_description' => 'A unique name given to this component when using it in the page or layout code.', 'component:invalid_request' => 'The template cannot be saved because of invalid component data.', 'component:menu_label' => 'Components', 'component:method_not_found' => 'The component \':name\' does not contain a method \':method\'.', 'component:no_description' => 'No description provided', 'component:no_records' => 'No components found', 'component:not_found' => 'The component \':name\' is not found.', 'component:unnamed' => 'Unnamed', 'component:validation_message' => 'Component aliases are required and can contain only Latin symbols, digits, and underscores. The aliases should start with a Latin symbol.', 'config:not_found' => 'Unable to find configuration file :file defined for :location.', 'config:required' => 'Configuration used in :location must supply a value \':property\'.', 'content:delete_confirm_multiple' => 'Do you really want to delete selected content files or directories?', 'content:delete_confirm_single' => 'Do you really want delete this content file?', 'content:menu_label' => 'Content', 'content:new' => 'New content file', 'content:no_list_records' => 'No content files found', 'content:not_found_name' => 'The content file \':name\' is not found.', 'content:unsaved_label' => 'Unsaved content', 'dashboard:add_widget' => 'Add widget', 'dashboard:columns' => '{1} column|[2,Inf] columns', 'dashboard:full_width' => 'full width', 'dashboard:menu_label' => 'Dashboard', 'dashboard:status:maintenance' => 'in maintenance', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} updates available!|{1} update available!|[2,Inf] updates available!', 'dashboard:status:widget_title_default' => 'System status', 'dashboard:widget_columns_description' => 'The widget width, a number between 1 and 10.', 'dashboard:widget_columns_error' => 'Please enter the widget width as a number between 1 and 10.', 'dashboard:widget_columns_label' => 'Width :columns', 'dashboard:widget_inspector_description' => 'Configure the report widget', 'dashboard:widget_inspector_title' => 'Widget configuration', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'Put the widget in a new row.', 'dashboard:widget_new_row_label' => 'Force new row', 'dashboard:widget_title_error' => 'The Widget Title is required.', 'dashboard:widget_title_label' => 'Widget title', 'dashboard:widget_width' => 'Width', 'directory:create_fail' => 'Cannot create directory: :name', 'editor:auto_closing' => 'Auto close tags and special characters', 'editor:code' => 'Code', 'editor:code_folding' => 'Code folding', 'editor:content' => 'Content', 'editor:description' => 'Description', 'editor:enter_fullscreen' => 'Enter fullscreen mode', 'editor:exit_fullscreen' => 'Exit fullscreen mode', 'editor:filename' => 'File Name', 'editor:font_size' => 'Font size', 'editor:hidden' => 'Hidden', 'editor:hidden_comment' => 'Hidden pages are accessible only by logged-in back-end users.', 'editor:highlight_active_line' => 'Highlight active line', 'editor:layout' => 'Layout', 'editor:markup' => 'Markup', 'editor:menu_description' => 'Customize your code editor preferences, such as font size and color scheme.', 'editor:menu_label' => 'Code editor preferences', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta Description', 'editor:meta_title' => 'Meta Title', 'editor:new_title' => 'New page title', 'editor:preview' => 'Preview', 'editor:settings' => 'Settings', 'editor:show_gutter' => 'Show gutter', 'editor:show_invisibles' => 'Show invisible characters', 'editor:tab_size' => 'Tab size', 'editor:theme' => 'Color scheme', 'editor:title' => 'Title', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Indent using tabs', 'editor:word_wrap' => 'Word wrap', 'event_log:created_at' => 'Date & Time', 'event_log:empty_link' => 'Empty event log', 'event_log:empty_loading' => 'Emptying event log...', 'event_log:empty_success' => 'Successfully emptied the event log.', 'event_log:hint' => 'This log displays a list of potential errors that occur in the application, such as exceptions and debugging information.', 'event_log:id' => 'ID', 'event_log:id_label' => 'Event ID', 'event_log:level' => 'Level', 'event_log:menu_description' => 'View system log messages with their recorded time and details.', 'event_log:menu_label' => 'Event log', 'event_log:message' => 'Message', 'event_log:return_link' => 'Return to event log', 'field:invalid_type' => 'Invalid field type used :type.', 'field:options_method_not_exists' => 'The model class :model must define a method :method() returning options for the \':field\' form field.', 'file:create_fail' => 'Cannot create file: :name', 'fileupload:attachment' => 'Attachment', 'fileupload:attachment_url' => 'Attachment URL', 'fileupload:default_prompt' => 'Click the %s or drag a file here to upload', 'fileupload:description_label' => 'Description', 'fileupload:help' => 'Add a title and description for this attachment.', 'fileupload:remove_confirm' => 'Are you sure?', 'fileupload:remove_file' => 'Remove file', 'fileupload:title_label' => 'Title', 'fileupload:upload_error' => 'Upload error', 'fileupload:upload_file' => 'Upload file', 'filter:all' => 'all', 'form:action_confirm' => 'Are you sure?', 'form:add' => 'Add', 'form:apply' => 'Apply', 'form:behavior_not_ready' => 'Form behavior has not been initialized, check that you have called initForm() in your controller.', 'form:cancel' => 'Cancel', 'form:close' => 'Close', 'form:complete' => 'Complete', 'form:concurrency_file_changed_description' => 'The file you\'re editing has been changed on disk by another user. You can either reload the file and lose your changes or override the file on the disk.', 'form:concurrency_file_changed_title' => 'File was changed', 'form:confirm' => 'Confirm', 'form:confirm_delete' => 'Do you really want to delete this record?', 'form:confirm_delete_multiple' => 'Do you really want to delete the selected records?', 'form:confirm_tab_close' => 'Do you really want to close the tab? Unsaved changes will be lost.', 'form:create' => 'Create', 'form:create_and_close' => 'Create and close', 'form:create_success' => 'The :name has been created successfully', 'form:create_title' => 'New :name', 'form:creating' => 'Creating...', 'form:creating_name' => 'Creating :name...', 'form:delete' => 'Delete', 'form:delete_row' => 'Delete Row', 'form:delete_success' => 'The :name has been deleted successfully', 'form:deleting' => 'Deleting...', 'form:deleting_name' => 'Deleting :name...', 'form:field_off' => 'Off', 'form:field_on' => 'On', 'form:insert_row' => 'Insert Row', 'form:insert_row_below' => 'Insert Row Below', 'form:missing_definition' => 'Form behavior does not contain a field for \':field\'.', 'form:missing_id' => 'Form record ID has not been specified.', 'form:missing_model' => 'Form behavior used in :class does not have a model defined.', 'form:not_found' => 'Form record with an ID of :id could not be found.', 'form:ok' => 'OK', 'form:or' => 'or', 'form:preview_no_files_message' => 'There are no files uploaded.', 'form:preview_no_record_message' => 'There is no record selected.', 'form:preview_title' => 'Preview :name', 'form:reload' => 'Reload', 'form:reset_default' => 'Reset to default', 'form:resetting' => 'Resetting', 'form:resetting_name' => 'Resetting :name', 'form:return_to_list' => 'Return to the list', 'form:save' => 'Save', 'form:save_and_close' => 'Save and close', 'form:saving' => 'Saving...', 'form:saving_name' => 'Saving :name...', 'form:select' => 'Select', 'form:select_all' => 'all', 'form:select_none' => 'none', 'form:select_placeholder' => 'please select', 'form:undefined_tab' => 'Misc', 'form:update_success' => 'The :name has been updated successfully', 'form:update_title' => 'Edit :name', 'import_export:auto_match_columns' => 'Auto match columns', 'import_export:column' => 'Column', 'import_export:column_preview' => 'Column preview', 'import_export:columns' => 'Columns', 'import_export:created' => 'Created', 'import_export:custom_format' => 'Custom format', 'import_export:database_fields' => 'Database fields', 'import_export:delimiter_char' => 'Delimiter character', 'import_export:drop_column_here' => 'Drop column here...', 'import_export:enclosure_char' => 'Enclosure character', 'import_export:errors' => 'Errors', 'import_export:escape_char' => 'Escape character', 'import_export:export_error' => 'Export error', 'import_export:export_output_format' => '1. Export output format', 'import_export:export_progress' => 'Export progress', 'import_export:file_columns' => 'File columns', 'import_export:file_format' => 'File format', 'import_export:first_row_contains_titles' => 'First row contains column titles', 'import_export:first_row_contains_titles_desc' => 'Leave this checked if the first row in the CSV is used as the column titles.', 'import_export:ignore_this_column' => 'Ignore this column', 'import_export:import_error' => 'Import error', 'import_export:import_file' => 'Import file', 'import_export:import_progress' => 'Import progress', 'import_export:match_columns' => '2. Match the file columns to database fields', 'import_export:processing' => 'Processing', 'import_export:processing_successful_line1' => 'File export process has completed successfully!', 'import_export:processing_successful_line2' => 'The browser should now redirect automatically to the file download.', 'import_export:select_columns' => '2. Select columns to export', 'import_export:set_export_options' => '3. Set export options', 'import_export:set_import_options' => '3. Set import options', 'import_export:show_ignored_columns' => 'Show ignored columns', 'import_export:skipped' => 'Skipped', 'import_export:skipped_rows' => 'Skipped Rows', 'import_export:standard_format' => 'Standard format', 'import_export:updated' => 'Updated', 'import_export:upload_csv_file' => '1. Upload a CSV file', 'import_export:upload_valid_csv' => 'Please upload a valid CSV file.', 'import_export:warnings' => 'Warnings', 'install:install_completing' => 'Finishing installation process', 'install:install_success' => 'The plugin has been installed successfully.', 'install:missing_plugin_name' => 'Please specify a Plugin name to install.', 'install:missing_theme_name' => 'Please specify a Theme name to install.', 'install:plugin_label' => 'Install Plugin', 'install:project_label' => 'Attach to Project', 'install:theme_label' => 'Install Theme', 'layout:delete_confirm_multiple' => 'Do you really want to delete selected layouts?', 'layout:delete_confirm_single' => 'Do you really want delete this layout?', 'layout:menu_label' => 'Layouts', 'layout:new' => 'New layout', 'layout:no_list_records' => 'No layouts found', 'layout:not_found_name' => 'The layout \':name\' is not found', 'layout:unsaved_label' => 'Unsaved layout(s)', 'list:behavior_not_ready' => 'List behavior has not been initialized, check that you have called makeLists() in your controller.', 'list:column_switch_false' => 'No', 'list:column_switch_true' => 'Yes', 'list:default_title' => 'List', 'list:delete_selected' => 'Delete selected', 'list:delete_selected_confirm' => 'Delete the selected records?', 'list:delete_selected_empty' => 'There are no selected records to delete.', 'list:delete_selected_success' => 'Successfully deleted the selected records.', 'list:invalid_column_datetime' => 'Column value \':column\' is not a DateTime object, are you missing a $dates reference in the Model?', 'list:loading' => 'Loading...', 'list:missing_column' => 'There are no column definitions for :columns.', 'list:missing_columns' => 'List used in :class has no list columns defined.', 'list:missing_definition' => 'List behavior does not contain a column for \':field\'.', 'list:missing_model' => 'List behavior used in :class does not have a model defined.', 'list:next_page' => 'Next page', 'list:no_records' => 'There are no records in this view.', 'list:pagination' => 'Displayed records: :from-:to of :total', 'list:prev_page' => 'Previous page', 'list:records_per_page' => 'Records per page', 'list:records_per_page_help' => 'Select the number of records per page to display. Please note that high number of records on a single page can reduce performance.', 'list:refresh' => 'Refresh', 'list:search_prompt' => 'Search...', 'list:setup_help' => 'Use checkboxes to select columns you want to see in the list. You can change position of columns by dragging them up or down.', 'list:setup_title' => 'List Setup', 'list:updating' => 'Updating...', 'locale:cs' => 'Czech', 'locale:de' => 'German', 'locale:el' => 'Greek', 'locale:en' => 'English', 'locale:es' => 'Spanish', 'locale:es-ar' => 'Spanish (Argentina)', 'locale:fa' => 'Persian', 'locale:fr' => 'French', 'locale:hu' => 'Hungarian', 'locale:id' => 'Bahasa Indonesia', 'locale:it' => 'Italian', 'locale:ja' => 'Japanese', 'locale:lv' => 'Latvian', 'locale:nb-no' => 'Norwegian (Bokmål)', 'locale:nl' => 'Dutch', 'locale:pl' => 'Polish', 'locale:pt-br' => 'Portuguese (Brazil)', 'locale:ro' => 'Romanian', 'locale:ru' => 'Russian', 'locale:sk' => 'Slovak (Slovakia)', 'locale:sv' => 'Swedish', 'locale:tr' => 'Turkish', 'locale:zh-cn' => 'Chinese (China)', 'locale:zh-tw' => 'Chinese (Taiwan)', 'mail:drivers_hint_content' => 'This mail method requires the plugin \\":plugin\\" be installed before you can send mail.', 'mail:drivers_hint_header' => 'Drivers not installed', 'mail:general' => 'General', 'mail:log_file' => 'Log file', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun domain', 'mail:mailgun_domain_comment' => 'Please specify the Mailgun domain name.', 'mail:mailgun_secret' => 'Mailgun secret', 'mail:mailgun_secret_comment' => 'Enter your Mailgun API key.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill secret', 'mail:mandrill_secret_comment' => 'Enter your Mandrill API key.', 'mail:menu_description' => 'Manage email configuration.', 'mail:menu_label' => 'Mail configuration', 'mail:method' => 'Mail method', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'Sender email', 'mail:sender_name' => 'Sender name', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Sendmail path', 'mail:sendmail_path_comment' => 'Please specify the path of the sendmail program.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'SMTP address', 'mail:smtp_authorization' => 'SMTP authorization required', 'mail:smtp_authorization_comment' => 'Use this checkbox if your SMTP server requires authorization.', 'mail:smtp_encryption' => 'SMTP encryption protocol', 'mail:smtp_encryption_none' => 'No encryption', 'mail:smtp_encryption_ssl' => 'SSL', 'mail:smtp_encryption_tls' => 'TLS', 'mail:smtp_password' => 'Password', 'mail:smtp_port' => 'SMTP port', 'mail:smtp_ssl' => 'SSL connection required', 'mail:smtp_username' => 'Username', 'mail_templates:code' => 'Code', 'mail_templates:code_comment' => 'Unique code used to refer to this template', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Plaintext', 'mail_templates:creating' => 'Creating Template...', 'mail_templates:creating_layout' => 'Creating Layout...', 'mail_templates:delete_confirm' => 'Do you really want to delete this template?', 'mail_templates:delete_layout_confirm' => 'Do you really want to delete this layout?', 'mail_templates:deleting' => 'Deleting Template...', 'mail_templates:deleting_layout' => 'Deleting Layout...', 'mail_templates:description' => 'Description', 'mail_templates:layout' => 'Layout', 'mail_templates:layouts' => 'Layouts', 'mail_templates:menu_description' => 'Modify the mail templates that are sent to users and administrators, manage email layouts.', 'mail_templates:menu_label' => 'Mail templates', 'mail_templates:menu_layouts_label' => 'Mail Layouts', 'mail_templates:name' => 'Name', 'mail_templates:name_comment' => 'Unique name used to refer to this template', 'mail_templates:new_layout' => 'New Layout', 'mail_templates:new_template' => 'New Template', 'mail_templates:no_layout' => '-- No layout --', 'mail_templates:return' => 'Return to template list', 'mail_templates:saving' => 'Saving Template...', 'mail_templates:saving_layout' => 'Saving Layout...', 'mail_templates:sending' => 'Sending test message...', 'mail_templates:subject' => 'Subject', 'mail_templates:subject_comment' => 'Email message subject', 'mail_templates:template' => 'Template', 'mail_templates:templates' => 'Templates', 'mail_templates:test_confirm' => 'A test message will be sent to :email. Continue?', 'mail_templates:test_send' => 'Send test message', 'mail_templates:test_success' => 'The test message has been successfully sent.', 'maintenance:is_enabled' => 'Enable maintenance mode', 'maintenance:is_enabled_comment' => 'When activated website visitors will see the page chosen below.', 'maintenance:settings_menu' => 'Maintenance mode', 'maintenance:settings_menu_description' => 'Configure the maintenance mode page and toggle the setting.', 'markdowneditor:bold' => 'Bold', 'markdowneditor:code' => 'Code', 'markdowneditor:formatting' => 'Formatting', 'markdowneditor:fullscreen' => 'Full screen', 'markdowneditor:header1' => 'Header 1', 'markdowneditor:header2' => 'Header 2', 'markdowneditor:header3' => 'Header 3', 'markdowneditor:header4' => 'Header 4', 'markdowneditor:header5' => 'Header 5', 'markdowneditor:header6' => 'Header 6', 'markdowneditor:horizontalrule' => 'Insert Horizontal Rule', 'markdowneditor:image' => 'Image', 'markdowneditor:italic' => 'Italic', 'markdowneditor:link' => 'Link', 'markdowneditor:orderedlist' => 'Ordered List', 'markdowneditor:preview' => 'Preview', 'markdowneditor:quote' => 'Quote', 'markdowneditor:unorderedlist' => 'Unordered List', 'markdowneditor:video' => 'Video', 'media:add_folder' => 'Add folder', 'media:click_here' => 'Click here', 'media:crop_and_insert' => 'Crop & Insert', 'media:delete' => 'Delete', 'media:delete_confirm' => 'Do you really want to delete the selected item(s)?', 'media:delete_empty' => 'Please select items to delete.', 'media:display' => 'Display', 'media:empty_library' => 'The Media Library is empty. Upload files or create folders to get started.', 'media:error_creating_folder' => 'Error creating folder', 'media:error_renaming_file' => 'Error renaming the item.', 'media:filter_audio' => 'Audio', 'media:filter_documents' => 'Documents', 'media:filter_everything' => 'Everything', 'media:filter_images' => 'Images', 'media:filter_video' => 'Video', 'media:folder' => 'Folder', 'media:folder_name' => 'Folder name', 'media:folder_or_file_exist' => 'A folder or file with the specified name already exists.', 'media:folder_size_items' => 'item(s)', 'media:height' => 'Height', 'media:image_size' => 'Image size:', 'media:insert' => 'Insert', 'media:invalid_path' => 'Invalid file path specified: \':path\'.', 'media:last_modified' => 'Last modified', 'media:library' => 'Library', 'media:menu_label' => 'Media', 'media:move' => 'Move', 'media:move_dest_src_match' => 'Please select another destination folder.', 'media:move_destination' => 'Destination folder', 'media:move_empty' => 'Please select items to move.', 'media:move_popup_title' => 'Move files or folders', 'media:multiple_selected' => 'Multiple items selected.', 'media:new_folder_title' => 'New folder', 'media:no_files_found' => 'No files found by your request.', 'media:nothing_selected' => 'Nothing is selected.', 'media:order_by' => 'Order by', 'media:please_select_move_dest' => 'Please select a destination folder.', 'media:public_url' => 'Public URL', 'media:resize' => 'Resize...', 'media:resize_image' => 'Resize image', 'media:restore' => 'Undo all changes', 'media:return_to_parent' => 'Return to the parent folder', 'media:return_to_parent_label' => 'Go up ..', 'media:search' => 'Search', 'media:select_single_image' => 'Please select a single image.', 'media:selected_size' => 'Selected:', 'media:selection_mode' => 'Selection mode', 'media:selection_mode_fixed_ratio' => 'Fixed ratio', 'media:selection_mode_fixed_size' => 'Fixed size', 'media:selection_mode_normal' => 'Normal', 'media:selection_not_image' => 'The selected item is not an image.', 'media:size' => 'Size', 'media:thumbnail_error' => 'Error generating thumbnail.', 'media:title' => 'Title', 'media:upload' => 'Upload', 'media:uploading_complete' => 'Upload complete', 'media:uploading_error' => 'Upload failed', 'media:uploading_file_num' => 'Uploading :number file(s)...', 'media:width' => 'Width', 'mediafinder:default_prompt' => 'Click the %s button to find a media item', 'mediamanager:insert_audio' => 'Insert Media Audio', 'mediamanager:insert_image' => 'Insert Media Image', 'mediamanager:insert_link' => 'Insert Media Link', 'mediamanager:insert_video' => 'Insert Media Video', 'mediamanager:invalid_audio_empty_insert' => 'Please select an audio file to insert.', 'mediamanager:invalid_file_empty_insert' => 'Please select file to insert a links to.', 'mediamanager:invalid_file_single_insert' => 'Please select a single file.', 'mediamanager:invalid_image_empty_insert' => 'Please select image(s) to insert.', 'mediamanager:invalid_video_empty_insert' => 'Please select a video file to insert.', 'model:invalid_class' => 'Model :model used in :class is not valid, it must inherit the \\Model class.', 'model:mass_assignment_failed' => 'Mass assignment failed for Model attribute \':attribute\'.', 'model:missing_id' => 'There is no ID specified for looking up the model record.', 'model:missing_method' => 'Model \':class\' does not contain a method \':method\'.', 'model:missing_relation' => 'Model \':class\' does not contain a definition for \':relation\'.', 'model:name' => 'Model', 'model:not_found' => 'Model \':class\' with an ID of :id could not be found', 'myaccount:menu_description' => 'Update your account details such as name, email address and password.', 'myaccount:menu_keywords' => 'security login', 'myaccount:menu_label' => 'My account', 'mysettings:menu_description' => 'Settings related to your administration account', 'mysettings:menu_label' => 'My Settings', 'page:access_denied:cms_link' => 'Return to the back-end', 'page:access_denied:help' => 'You don\'t have the required permissions to view this page.', 'page:access_denied:label' => 'Access denied', 'page:custom_error:help' => 'We\'re sorry, but something went wrong and the page cannot be displayed.', 'page:custom_error:label' => 'Page error', 'page:delete_confirm_multiple' => 'Do you really want to delete selected pages?', 'page:delete_confirm_single' => 'Do you really want delete this page?', 'page:invalid_token:label' => 'Invalid security token', 'page:invalid_url' => 'Invalid URL format. The URL should start with the forward slash symbol and can contain digits, Latin letters and the following symbols: ._-[]:?|/+*^$', 'page:menu_label' => 'Pages', 'page:new' => 'New page', 'page:no_layout' => '-- no layout --', 'page:no_list_records' => 'No pages found', 'page:not_found:help' => 'The requested page cannot be found.', 'page:not_found:label' => 'Page not found', 'page:not_found_name' => 'The page \':name\' is not found', 'page:unsaved_label' => 'Unsaved page(s)', 'page:untitled' => 'Untitled', 'partial:delete_confirm_multiple' => 'Do you really want to delete selected partials?', 'partial:delete_confirm_single' => 'Do you really want delete this partial?', 'partial:invalid_name' => 'Invalid partial name: :name.', 'partial:menu_label' => 'Partials', 'partial:new' => 'New partial', 'partial:no_list_records' => 'No partials found', 'partial:not_found_name' => 'The partial \':name\' is not found.', 'partial:unsaved_label' => 'Unsaved partial(s)', 'permissions:access_logs' => 'View system logs', 'permissions:manage_assets' => 'Manage assets', 'permissions:manage_branding' => 'Customize the back-end', 'permissions:manage_content' => 'Manage content', 'permissions:manage_editor' => 'Manage code editor preferences', 'permissions:manage_layouts' => 'Manage layouts', 'permissions:manage_mail_settings' => 'Manage mail settings', 'permissions:manage_mail_templates' => 'Manage mail templates', 'permissions:manage_media' => 'Manage media', 'permissions:manage_other_administrators' => 'Manage other administrators', 'permissions:manage_pages' => 'Manage pages', 'permissions:manage_partials' => 'Manage partials', 'permissions:manage_preferences' => 'Manage backend preferences', 'permissions:manage_software_updates' => 'Manage software updates', 'permissions:manage_system_settings' => 'Manage system settings', 'permissions:manage_themes' => 'Manage themes', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => 'View the dashboard', 'plugin:label' => 'Plugin', 'plugin:name:help' => 'Name the plugin by its unique code. For example, RainLab.Blog', 'plugin:name:label' => 'Plugin Name', 'plugin:unnamed' => 'Unnamed plugin', 'plugins:disable_confirm' => 'Are you sure?', 'plugins:disable_success' => 'Successfully disabled those plugins.', 'plugins:disabled_help' => 'Plugins that are disabled are ignored by the application.', 'plugins:disabled_label' => 'Disabled', 'plugins:enable_or_disable' => 'Enable or disable', 'plugins:enable_or_disable_title' => 'Enable or Disable Plugins', 'plugins:enable_success' => 'Successfully enabled those plugins.', 'plugins:frozen_help' => 'Plugins that are frozen will be ignored by the update process.', 'plugins:frozen_label' => 'Freeze updates', 'plugins:install' => 'Install plugins', 'plugins:install_products' => 'Install products', 'plugins:installed' => 'Installed plugins', 'plugins:manage' => 'Manage plugins', 'plugins:no_plugins' => 'There are no plugins installed from the marketplace.', 'plugins:recommended' => 'Recommended', 'plugins:refresh' => 'Refresh', 'plugins:refresh_confirm' => 'Are you sure?', 'plugins:refresh_success' => 'Successfully refreshed those plugins in the system.', 'plugins:remove' => 'Remove', 'plugins:remove_confirm' => 'Are you sure you want to remove this plugin?', 'plugins:remove_success' => 'Successfully removed those plugins from the system.', 'plugins:search' => 'search plugins to install...', 'plugins:selected_amount' => 'Plugins selected: :amount', 'plugins:unknown_plugin' => 'Plugin has been removed from the file system.', 'project:attach' => 'Attach Project', 'project:detach' => 'Detach Project', 'project:detach_confirm' => 'Are you sure you want to detach this project?', 'project:id:help' => 'How to find your Project ID', 'project:id:label' => 'Project ID', 'project:id:missing' => 'Please specify a Project ID to use.', 'project:name' => 'Project', 'project:none' => 'None', 'project:owner_label' => 'Owner', 'project:unbind_success' => 'Project has been detached successfully.', 'recordfinder:find_record' => 'Find Record', 'relation:add' => 'Add', 'relation:add_a_new' => 'Add a new :name', 'relation:add_name' => 'Add :name', 'relation:add_selected' => 'Add selected', 'relation:cancel' => 'Cancel', 'relation:close' => 'Close', 'relation:create' => 'Create', 'relation:create_name' => 'Create :name', 'relation:delete' => 'Delete', 'relation:delete_confirm' => 'Are you sure?', 'relation:delete_name' => 'Delete :name', 'relation:help' => 'Click on an item to add', 'relation:invalid_action_multi' => 'This action cannot be performed on a multiple relationship.', 'relation:invalid_action_single' => 'This action cannot be performed on a singular relationship.', 'relation:link' => 'Link', 'relation:link_a_new' => 'Link a new :name', 'relation:link_name' => 'Link :name', 'relation:link_selected' => 'Link selected', 'relation:missing_config' => 'Relation behavior does not have any configuration for \':config\'.', 'relation:missing_definition' => 'Relation behavior does not contain a definition for \':field\'.', 'relation:missing_model' => 'Relation behavior used in :class does not have a model defined.', 'relation:preview' => 'Preview', 'relation:preview_name' => 'Preview :name', 'relation:related_data' => 'Related :name data', 'relation:remove' => 'Remove', 'relation:remove_name' => 'Remove :name', 'relation:unlink' => 'Unlink', 'relation:unlink_confirm' => 'Are you sure?', 'relation:unlink_name' => 'Unlink :name', 'relation:update' => 'Update', 'relation:update_name' => 'Update :name', 'reorder:default_title' => 'Reorder records', 'reorder:no_records' => 'There are no records available to sort.', 'request_log:count' => 'Counter', 'request_log:empty_link' => 'Empty request log', 'request_log:empty_loading' => 'Emptying request log...', 'request_log:empty_success' => 'Successfully emptied the request log.', 'request_log:hint' => 'This log displays a list of browser requests that may require attention. For example, if a visitor opens a CMS page that cannot be found, a record is created with the status code 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'Log ID', 'request_log:menu_description' => 'View bad or redirected requests, such as Page not found (404).', 'request_log:menu_label' => 'Request log', 'request_log:referer' => 'Referers', 'request_log:return_link' => 'Return to request log', 'request_log:status_code' => 'Status', 'request_log:url' => 'URL', 'server:connect_error' => 'Error connecting to the server.', 'server:file_corrupt' => 'File from server is corrupt.', 'server:file_error' => 'Server failed to deliver the package.', 'server:response_empty' => 'Empty response from the server.', 'server:response_invalid' => 'Invalid response from the server.', 'server:response_not_found' => 'The update server could not be found.', 'settings:menu_label' => 'Settings', 'settings:missing_model' => 'The settings page is missing a Model definition.', 'settings:not_found' => 'Unable to find the specified settings.', 'settings:return' => 'Return to system settings', 'settings:search' => 'Search', 'settings:update_success' => 'Settings for :name have been updated successfully.', 'sidebar:add' => 'Add', 'sidebar:search' => 'Search...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Customers', 'system:categories:events' => 'Events', 'system:categories:logs' => 'Logs', 'system:categories:mail' => 'Mail', 'system:categories:misc' => 'Misc', 'system:categories:my_settings' => 'My Settings', 'system:categories:shop' => 'Shop', 'system:categories:social' => 'Social', 'system:categories:system' => 'System', 'system:categories:team' => 'Team', 'system:categories:users' => 'Users', 'system:menu_label' => 'System', 'system:name' => 'System', 'template:invalid_type' => 'Unknown template type.', 'template:not_found' => 'The requested template was not found.', 'template:saved' => 'The template has been successfully saved.', 'theme:activate_button' => 'Activate', 'theme:active:not_found' => 'The active theme is not found.', 'theme:active:not_set' => 'The active theme is not set.', 'theme:active_button' => 'Activate', 'theme:author_label' => 'Author', 'theme:author_placeholder' => 'Person or company name', 'theme:code_label' => 'Code', 'theme:code_placeholder' => 'A unique code for this theme used for distribution', 'theme:create_button' => 'Create', 'theme:create_new_blank_theme' => 'Create a new blank theme', 'theme:create_theme_required_name' => 'Please specify a name for the theme.', 'theme:create_theme_success' => 'Created theme successfully!', 'theme:create_title' => 'Create theme', 'theme:customize_button' => 'Customize', 'theme:customize_theme' => 'Customize Theme', 'theme:default_tab' => 'Properties', 'theme:delete_active_theme_failed' => 'Cannot delete the active theme, try making another theme active first.', 'theme:delete_button' => 'Delete', 'theme:delete_confirm' => 'Are you sure you want to delete this theme? It cannot be undone!', 'theme:delete_theme_success' => 'Deleted theme successfully!', 'theme:description_label' => 'Description', 'theme:description_placeholder' => 'Theme description', 'theme:dir_name_create_label' => 'The destination theme directory', 'theme:dir_name_invalid' => 'Name can contain only digits, Latin letters and the following symbols: _-', 'theme:dir_name_label' => 'Directory name', 'theme:dir_name_taken' => 'Desired theme directory already exists.', 'theme:duplicate_button' => 'Duplicate', 'theme:duplicate_theme_success' => 'Duplicated theme successfully!', 'theme:duplicate_title' => 'Duplicate theme', 'theme:edit:not_found' => 'The edit theme is not found.', 'theme:edit:not_match' => 'The object you\'re trying to access doesn\'t belong to the theme being edited. Please reload the page.', 'theme:edit:not_set' => 'The edit theme is not set.', 'theme:edit_properties_button' => 'Edit properties', 'theme:edit_properties_title' => 'Theme', 'theme:export_button' => 'Export', 'theme:export_folders_comment' => 'Please select the theme folders you would like to export', 'theme:export_folders_label' => 'Folders', 'theme:export_title' => 'Export theme', 'theme:find_more_themes' => 'Find more themes', 'theme:homepage_label' => 'Homepage', 'theme:homepage_placeholder' => 'Website URL', 'theme:import_button' => 'Import', 'theme:import_folders_comment' => 'Please select the theme folders you would like to import', 'theme:import_folders_label' => 'Folders', 'theme:import_overwrite_comment' => 'Untick this box to only import new files', 'theme:import_overwrite_label' => 'Overwrite existing files', 'theme:import_theme_success' => 'Imported theme successfully!', 'theme:import_title' => 'Import theme', 'theme:import_uploaded_file' => 'Theme archive file', 'theme:label' => 'Theme', 'theme:manage_button' => 'Manage', 'theme:manage_title' => 'Manage theme', 'theme:name:help' => 'Name the theme by its unique code. For example, RainLab.Vanilla', 'theme:name:label' => 'Theme Name', 'theme:name_create_placeholder' => 'New theme name', 'theme:name_label' => 'Name', 'theme:new_directory_name_comment' => 'Provide a new directory name for the duplicated theme.', 'theme:new_directory_name_label' => 'Theme directory', 'theme:not_found_name' => 'The theme \':name\' is not found.', 'theme:return' => 'Return to themes list', 'theme:save_properties' => 'Save properties', 'theme:saving' => 'Saving theme...', 'theme:settings_menu' => 'Front-end theme', 'theme:settings_menu_description' => 'Preview the list of installed themes and select an active theme.', 'theme:theme_label' => 'Theme', 'theme:theme_title' => 'Themes', 'theme:unnamed' => 'Unnamed theme', 'themes:install' => 'Install themes', 'themes:installed' => 'Installed themes', 'themes:no_themes' => 'There are no themes installed from the marketplace.', 'themes:recommended' => 'Recommended', 'themes:remove_confirm' => 'Are you sure you want to remove this theme?', 'themes:search' => 'search themes to install...', 'tooltips:preview_website' => 'Preview the website', 'updates:check_label' => 'Check for updates', 'updates:core_build' => 'Build :build', 'updates:core_build_help' => 'Latest build is available.', 'updates:core_current_build' => 'Current build', 'updates:core_downloading' => 'Downloading application files', 'updates:core_extracting' => 'Unpacking application files', 'updates:details_author' => 'Author', 'updates:details_current_version' => 'Current version', 'updates:details_readme' => 'Documentation', 'updates:details_readme_missing' => 'There is no documentation provided.', 'updates:details_title' => 'Plugin details', 'updates:details_upgrades' => 'Upgrade Guide', 'updates:details_upgrades_missing' => 'There are no upgrade instructions provided.', 'updates:details_view_homepage' => 'View homepage', 'updates:disabled' => 'Disabled', 'updates:force_label' => 'Force update', 'updates:found:help' => 'Click Update software to begin the update process.', 'updates:found:label' => 'Found new updates!', 'updates:important_action:confirm' => 'Confirm update', 'updates:important_action:empty' => 'Select action', 'updates:important_action:ignore' => 'Skip this plugin (always)', 'updates:important_action:skip' => 'Skip this plugin (once only)', 'updates:important_action_required' => 'Action required', 'updates:important_alert_text' => 'Some updates need your attention.', 'updates:important_view_guide' => 'View upgrade guide', 'updates:menu_description' => 'Update the system, manage and install plugins and themes.', 'updates:menu_label' => 'Updates', 'updates:name' => 'Software update', 'updates:none:help' => 'No new updates were found.', 'updates:none:label' => 'No updates', 'updates:plugin_author' => 'Author', 'updates:plugin_code' => 'Code', 'updates:plugin_current_version' => 'Current version', 'updates:plugin_description' => 'Description', 'updates:plugin_downloading' => 'Downloading plugin: :name', 'updates:plugin_extracting' => 'Unpacking plugin: :name', 'updates:plugin_name' => 'Name', 'updates:plugin_version' => 'Version', 'updates:plugin_version_none' => 'New plugin', 'updates:plugins' => 'Plugins', 'updates:retry_label' => 'Try again', 'updates:return_link' => 'Return to system updates', 'updates:theme_downloading' => 'Downloading theme: :name', 'updates:theme_extracting' => 'Unpacking theme: :name', 'updates:theme_new_install' => 'New theme installation.', 'updates:themes' => 'Themes', 'updates:title' => 'Manage Updates', 'updates:update_completing' => 'Finishing update process', 'updates:update_failed_label' => 'Update failed', 'updates:update_label' => 'Update software', 'updates:update_loading' => 'Loading available updates...', 'updates:update_success' => 'The update process was performed successfully.', 'user:account' => 'Account', 'user:allow' => 'Allow', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Do you really want to delete this administrator?', 'user:deny' => 'Deny', 'user:email' => 'Email', 'user:first_name' => 'First Name', 'user:full_name' => 'Full Name', 'user:group:code_comment' => 'Enter a unique code if you want to access it with the API.', 'user:group:code_field' => 'Code', 'user:group:delete_confirm' => 'Do you really want to delete this administrator group?', 'user:group:description_field' => 'Description', 'user:group:is_new_user_default_field' => 'Add new administrators to this group by default.', 'user:group:list_title' => 'Manage Groups', 'user:group:menu_label' => 'Groups', 'user:group:name' => 'Group', 'user:group:name_field' => 'Name', 'user:group:new' => 'New Group', 'user:group:return' => 'Return to group list', 'user:group:users_count' => 'Users', 'user:groups' => 'Groups', 'user:groups_comment' => 'Specify which groups this account should belong to.', 'user:inherit' => 'Inherit', 'user:last_name' => 'Last Name', 'user:list_title' => 'Manage Administrators', 'user:login' => 'Login', 'user:menu_description' => 'Manage back-end administrator users, groups and permissions.', 'user:menu_label' => 'Administrators', 'user:name' => 'Administrator', 'user:new' => 'New Administrator', 'user:password' => 'Password', 'user:password_confirmation' => 'Confirm Password', 'user:permissions' => 'Permissions', 'user:preferences:not_authenticated' => 'There is no an authenticated user to load or save preferences for.', 'user:return' => 'Return to admin list', 'user:send_invite' => 'Send invitation by email', 'user:send_invite_comment' => 'Sends a welcome message containing login and password information.', 'user:superuser' => 'Super User', 'user:superuser_comment' => 'Grants this account unlimited access to all areas.', 'validation:accepted' => 'The :attribute must be accepted.', 'validation:active_url' => 'The :attribute is not a valid URL.', 'validation:after' => 'The :attribute must be a date after :date.', 'validation:alpha' => 'The :attribute may only contain letters.', 'validation:alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.', 'validation:alpha_num' => 'The :attribute may only contain letters and numbers.', 'validation:array' => 'The :attribute must be an array.', 'validation:before' => 'The :attribute must be a date before :date.', 'validation:between:array' => 'The :attribute must have between :min - :max items.', 'validation:between:file' => 'The :attribute must be between :min - :max kilobytes.', 'validation:between:numeric' => 'The :attribute must be between :min - :max.', 'validation:between:string' => 'The :attribute must be between :min - :max characters.', 'validation:confirmed' => 'The :attribute confirmation does not match.', 'validation:date' => 'The :attribute is not a valid date.', 'validation:date_format' => 'The :attribute does not match the format :format.', 'validation:different' => 'The :attribute and :other must be different.', 'validation:digits' => 'The :attribute must be :digits digits.', 'validation:digits_between' => 'The :attribute must be between :min and :max digits.', 'validation:email' => 'The :attribute format is invalid.', 'validation:exists' => 'The selected :attribute is invalid.', 'validation:extensions' => 'The :attribute must have an extension of: :values.', 'validation:image' => 'The :attribute must be an image.', 'validation:in' => 'The selected :attribute is invalid.', 'validation:integer' => 'The :attribute must be an integer.', 'validation:ip' => 'The :attribute must be a valid IP address.', 'validation:max:array' => 'The :attribute may not have more than :max items.', 'validation:max:file' => 'The :attribute may not be greater than :max kilobytes.', 'validation:max:numeric' => 'The :attribute may not be greater than :max.', 'validation:max:string' => 'The :attribute may not be greater than :max characters.', 'validation:mimes' => 'The :attribute must be a file of type: :values.', 'validation:min:array' => 'The :attribute must have at least :min items.', 'validation:min:file' => 'The :attribute must be at least :min kilobytes.', 'validation:min:numeric' => 'The :attribute must be at least :min.', 'validation:min:string' => 'The :attribute must be at least :min characters.', 'validation:not_in' => 'The selected :attribute is invalid.', 'validation:numeric' => 'The :attribute must be a number.', 'validation:regex' => 'The :attribute format is invalid.', 'validation:required' => 'The :attribute field is required.', 'validation:required_if' => 'The :attribute field is required when :other is :value.', 'validation:required_with' => 'The :attribute field is required when :values is present.', 'validation:required_without' => 'The :attribute field is required when :values is not present.', 'validation:same' => 'The :attribute and :other must match.', 'validation:size:array' => 'The :attribute must contain :size items.', 'validation:size:file' => 'The :attribute must be :size kilobytes.', 'validation:size:numeric' => 'The :attribute must be :size.', 'validation:size:string' => 'The :attribute must be :size characters.', 'validation:unique' => 'The :attribute has already been taken.', 'validation:url' => 'The :attribute format is invalid.', 'warnings:extension' => 'The PHP extension :name is not installed. Please install this library and activate the extension.', 'warnings:permissions' => 'Directory :name or its subdirectories is not writable for PHP. Please set corresponding permissions for the webserver on this directory.', 'warnings:tips' => 'System configuration tips', 'warnings:tips_description' => 'There are issues you need to pay attention to in order to configure the system properly.', 'widget:not_bound' => 'A widget with class name \':name\' has not been bound to the controller', 'widget:not_registered' => 'A widget class name \':name\' has not been registered', 'zip:extract_failed' => 'Unable to extract core file \':file\'.', 'validation:length_range' => ':label must be between :min and :max characters long', 'error:data_not_found' => 'Data could not be found', 'error:permission_denied' => 'Permission denied']);
示例#9
0
文件: ro.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Data & Ora', 'access_log:email' => 'Email', 'access_log:first_name' => 'Prenume', 'access_log:hint' => 'Acest jurnal afiseaza o lista de conectari reusite, realizate de catre administratori. Inregistrarile sunt pastrate pentru un numar total de :days zile.', 'access_log:ip_address' => 'Adresa IP', 'access_log:last_name' => 'Nume', 'access_log:login' => 'Login', 'access_log:menu_description' => 'Vizualizati o lista de conectari reusite, realizate de catre administratori.', 'access_log:menu_label' => 'Jurnal acces', 'account:apply' => 'Aplicare', 'account:cancel' => 'Anulare', 'account:delete' => 'Stergere', 'account:email_placeholder' => 'email', 'account:enter_email' => 'Introduceti email', 'account:enter_login' => 'Introduceti login', 'account:enter_new_password' => 'Introduceti o noua parola', 'account:forgot_password' => 'Ati uitat parola?', 'account:login' => 'Login', 'account:login_placeholder' => 'login', 'account:ok' => 'OK', 'account:password_placeholder' => 'password', 'account:password_reset' => 'Resetare parola', 'account:reset' => 'Resetare', 'account:reset_error' => 'Date invalide pentru resetarea parolei. Va rugam incercati din nou!', 'account:reset_fail' => 'Eroare la resetarea parolei!', 'account:reset_success' => 'Parola a fost resetata cu succes. Va puteti conecta.', 'account:restore' => 'Restaurare', 'account:restore_error' => 'Utilizatorul \':login\' nu a fost gasit in sistem.', 'account:restore_success' => 'Un mesaj a fost trimis catre adresa de email cu instructiuni pentru resetarea parolei.', 'account:sign_out' => 'Deconectare', 'ajax_handler:invalid_name' => 'Nume Functie AJAX invalid: :name.', 'ajax_handler:not_found' => 'Functia AJAX \':name\' nu a fost gasita.', 'alert:cancel_button_text' => 'Anulează', 'alert:confirm_button_text' => 'OK', 'app:name' => 'October CMS', 'app:tagline' => 'Intoarcerea la elementele de baza', 'asset:already_exists' => 'Fisierul sau directorul cu acest nume exista deja', 'asset:create_directory' => 'Creare director', 'asset:create_file' => 'Creare fisier', 'asset:delete' => 'Stergere', 'asset:destination_not_found' => 'Directorul destinatie nu a fost gasit', 'asset:drop_down_add_title' => 'Adaure...', 'asset:drop_down_operation_title' => 'Actiune...', 'asset:error_deleting_dir' => 'Eroare la stergerea fisierului :name.', 'asset:error_deleting_dir_not_empty' => 'Eroare la stergerea directorului :name. Directorul nu este gol.', 'asset:error_deleting_directory' => 'Eroare la stergerea directorului original :dir', 'asset:error_deleting_file' => 'Eroare la stergerea fisierului :name.', 'asset:error_moving_directory' => 'Eroare la mutarea directorului :dir', 'asset:error_moving_file' => 'Eroare la mutarea fisierului :file', 'asset:error_renaming' => 'Eroare la redenumirea fisierului sau directorului', 'asset:error_uploading_file' => 'Eroare la incarcarea fisierului \\":name\\", eroare: :error', 'asset:file_not_valid' => 'Fisierul nu este valid', 'asset:invalid_name' => 'Numele poate sa contina doar cifre, caractere latine si urmatoarele simboluri: ._-', 'asset:invalid_path' => 'Calea poate sa contina doar cifre, caractere latine, spatii si urmatoarele simboluri: ._-/', 'asset:menu_label' => 'Fisiere design', 'asset:move' => 'Mutare', 'asset:move_button' => 'Mutare', 'asset:move_destination' => 'Director destinatie', 'asset:move_please_select' => 'selectati', 'asset:move_popup_title' => 'Mutare fisiere', 'asset:name_cant_be_empty' => 'Numele nu poate fi gol', 'asset:new' => 'Fisier nou', 'asset:original_not_found' => 'Fisierul sau directorul original nu a fost gasit', 'asset:path' => 'Cale', 'asset:rename' => 'Redenumire', 'asset:rename_new_name' => 'Nume nou', 'asset:rename_popup_title' => 'Redenumire', 'asset:select_destination_dir' => 'Selectati un director pentru destinatie', 'asset:selected_files_not_found' => 'Fisierele selectate nu au fost gasite', 'asset:too_large' => 'Fisierul incarcat este prea mare. Dimensiunea maxima permisa este: :max_size', 'asset:type_not_allowed' => 'Doar urmatoarele tipuri de fisiere sunt permise: :allowed_types', 'asset:upload_files' => 'Incarcare fisier(e)', 'backend_preferences:locale' => 'Limba', 'backend_preferences:locale_comment' => 'Selectati limba dorita.', 'backend_preferences:menu_description' => 'Gestionati preferinte limba si setari aspect panou de administrare.', 'backend_preferences:menu_label' => 'Preferinte administrare', 'behavior:missing_property' => 'Clasa :class trebuie sa defineasca proprietatea $:property folosita pentru caracteristica :behavior.', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Sabloanele au fost sterse cu succes, in total: :count.', 'cms_object:error_creating_directory' => 'Eroare la crearea directorului :name. Verificati permisiunile de scriere.', 'cms_object:error_deleting' => 'Eroare la stergerea fisierului sablon \\":name\\". Verificati permisiunile de scriere.', 'cms_object:error_saving' => 'Eroare la salvarea fisierului \\":name\\". Verificati permisiunile de scriere.', 'cms_object:file_already_exists' => 'Fisierul \\":name\\" deja exista.', 'cms_object:file_name_required' => 'Campul nume fisier este necesar.', 'cms_object:invalid_file' => 'Nume de fisier invalid: :name. Numele de fisiere pot sa contina doar caractere alfanumerice, linii si puncte. Unele exemple de nume de fisiere corecte: pagina_1.htm, pagina-2, subdirector/pagina', 'cms_object:invalid_file_extension' => 'Extensie de fisier invalida: :invalid. Extensiile permise sunt: :allowed.', 'cms_object:invalid_property' => 'Proprietatea \\":name\\" nu poate fi setata', 'combiner:not_found' => 'Fisierul compus \':name\' nu a fost gasit.', 'component:alias' => 'Alias', 'component:alias_description' => 'Numele unic dat acestei componente atunci cand este folosita intr-o pagina sau intr-o macheta.', 'component:invalid_request' => 'Sablonul nu a putut fi salvat din cauza datelor invalide ale componentei.', 'component:menu_label' => 'Componente', 'component:method_not_found' => 'Componenta \':name\' nu contine nicio metoda \':method\'.', 'component:no_description' => 'Nicio descriere furnizata', 'component:no_records' => 'Nicio componenta nu a fost gasita', 'component:not_found' => 'Componenta \':name\' nu a fost gasita.', 'component:unnamed' => 'Fara nume', 'component:validation_message' => 'Aliasul componentei este necesar si poate sa contina doar caractere latine, cifre si caractere underscore. Denumirile are trebui sa inceapa cu un caracter latin.', 'config:not_found' => 'Nu a fost gasit fisierul de configurare :file definit pentru :location.', 'config:required' => 'Configuratia folosita in :location trebuie sa furnizeze o valoare \':property\'.', 'content:delete_confirm_multiple' => 'Vreti sa stergeti fisierele si directoarele cu continut?', 'content:delete_confirm_single' => 'Vreti sa stergeti acest fisier cu continut?', 'content:menu_label' => 'Continut', 'content:new' => 'Fisier nou cu continut', 'content:no_list_records' => 'Nu au fost gasite fisiere de continut', 'content:not_found_name' => 'Fisierul de continut \':name\' nu a fost gasit.', 'dashboard:add_widget' => 'Adauga widget', 'dashboard:columns' => '{1} coloana|[2,Inf] coloane', 'dashboard:menu_label' => 'Dashboard', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} actualizari disponibile!|{1} actualizare disponibila!|[2,Inf] actualizari disponibile!', 'dashboard:status:widget_title_default' => 'Status sistem', 'dashboard:widget_columns_description' => 'Latime widget, un numar intre 1 si 10.', 'dashboard:widget_columns_error' => 'Va rugam sa introduceti latimea widget-ului ca un numar intre 1 si 10.', 'dashboard:widget_columns_label' => 'Latime :columns', 'dashboard:widget_inspector_description' => 'Configurare raport widget', 'dashboard:widget_inspector_title' => 'Configurare widget', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'Amplasare widget pe un rand nou.', 'dashboard:widget_new_row_label' => 'Forteaza rand nou', 'dashboard:widget_title_error' => 'Titlul widget-ului este necesar.', 'dashboard:widget_title_label' => 'Titlu widget', 'dashboard:widget_width' => 'Latime', 'directory:create_fail' => 'Nu se poate crea directorul: :name', 'editor:auto_closing' => 'Inchide automat tag-uri si caractere speciale', 'editor:code' => 'Cod', 'editor:code_folding' => 'Code folding', 'editor:content' => 'Continut', 'editor:description' => 'Descriere', 'editor:enter_fullscreen' => 'Intrare in mod ecran complet', 'editor:exit_fullscreen' => 'Iesire din mod ecran complet', 'editor:filename' => 'Nume fisier', 'editor:font_size' => 'Dimensiune font', 'editor:hidden' => 'Ascuns', 'editor:hidden_comment' => 'Fisierele ascunse sunt vizibile doar administratorilor logati in sistem', 'editor:highlight_active_line' => 'Evidentiere linie activa', 'editor:layout' => 'Macheta', 'editor:markup' => 'Markup', 'editor:menu_description' => 'Personalizati preferintele editorului de cod, preferinte precum dimensiunea fontului si culorile folosite.', 'editor:menu_label' => 'Preferinte Editor Cod', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Descriere Meta', 'editor:meta_title' => 'Titlu Meta', 'editor:new_title' => 'Titlu de pagina noua', 'editor:preview' => 'Previzualizare', 'editor:settings' => 'Setari', 'editor:show_gutter' => 'Afiseaza panou', 'editor:show_invisibles' => 'Arata caractere invizibile', 'editor:tab_size' => 'Lungime tab', 'editor:theme' => 'Schema culori', 'editor:title' => 'Titlu', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Indentare folosind tab-uri', 'editor:word_wrap' => 'Word wrap', 'event_log:created_at' => 'Data & Ora', 'event_log:empty_link' => 'Golire jurnal de evenimente', 'event_log:empty_loading' => 'Se goleste jurnalul de evenimente...', 'event_log:empty_success' => 'Jurnalul de evenimente a fost golit cu succes.', 'event_log:hint' => 'Acest jurnal afiseaza o lista de erori potentiale in aplicatie, cum ar fi exceptii sau informatie pentru depanare.', 'event_log:id' => 'ID', 'event_log:id_label' => 'ID eveniment', 'event_log:level' => 'Nivel', 'event_log:menu_description' => 'Vizualizati mesajele jurnalului de sistem cu inregistrarile de timp si detaliile aferente.', 'event_log:menu_label' => 'Jurnal evenimente', 'event_log:message' => 'Mesaj', 'event_log:return_link' => 'Intoarcere la jurnalul de evenimente', 'field:invalid_type' => 'Tipul campului folosit este invalid - :type.', 'field:options_method_not_exists' => 'Clasa model :model trebuie sa defineasca o metoda :method() returnand optiuni pentru campul \\":field\\".', 'file:create_fail' => 'Nu se poate crea fisierul: :name', 'form:add' => 'Adaugare', 'form:apply' => 'Aplicare', 'form:behavior_not_ready' => 'Setarile initiale ale formularului nu au fost definite, verificati existenta functiei initForm() in controller.', 'form:cancel' => 'Anulare', 'form:close' => 'Inchidere', 'form:confirm_tab_close' => 'Sunteti sigur(a) ca doriti sa inchideti acest tab? Modificarile nesalvate vor fi pierdute.', 'form:create' => 'Creare', 'form:create_and_close' => 'Creare si inchidere', 'form:create_success' => ':name a fost creat cu succes', 'form:create_title' => 'Nou :name', 'form:creating' => 'Se creeaza...', 'form:delete' => 'Stergere', 'form:delete_success' => ':name a fost sters cu succes', 'form:deleting' => 'Se sterge...', 'form:field_off' => 'Dezactivat', 'form:field_on' => 'Activat', 'form:missing_definition' => 'Formularul nu contine un camp pentru campul \':field\'.', 'form:missing_id' => 'ID-ul inregistrarii formularului nu a fost specificat.', 'form:missing_model' => 'Formularul folosit in clasa :class nu are un model definit.', 'form:not_found' => 'Inregistrarea formularului cu ID-ul :id nu a putut fi gasita.', 'form:ok' => 'OK', 'form:or' => 'sau', 'form:preview_no_files_message' => 'Fisierele nu au fost incarcate', 'form:preview_title' => 'Previzualizare :name', 'form:save' => 'Salvare', 'form:save_and_close' => 'Salvare si inchidere', 'form:saving' => 'Se salveaza...', 'form:select' => 'Selectare', 'form:select_all' => 'toate', 'form:select_none' => 'niciunul', 'form:undefined_tab' => 'Altele', 'form:update_success' => ':name a fost actualizat cu succes', 'form:update_title' => 'Editare :name', 'install:install_completing' => 'Se finalizeaza procesul de instalare', 'install:install_success' => 'Acest plugin a fost instalat cu succes.', 'install:missing_plugin_name' => 'Va rugam sa specificati un nume de Plugin pentru instalare.', 'install:plugin_label' => 'Instalare Plugin', 'install:project_label' => 'Atasare la Proiect', 'layout:delete_confirm_multiple' => 'Vreti sa stergeti machetele selectate?', 'layout:delete_confirm_single' => 'Vreti sa stergeti macheta selectata?', 'layout:menu_label' => 'Machete', 'layout:new' => 'Macheta noua', 'layout:no_list_records' => 'Nu au fost gasite machete', 'layout:not_found_name' => 'Macheta \':name\' nu a fost gasita', 'list:apply_changes' => 'Aplicare schimbari', 'list:behavior_not_ready' => 'Setarile initiale ale listei nu au fost definite, verificati existenta functiei makeLists() in controller.', 'list:cancel' => 'Anulare', 'list:default_title' => 'Lista', 'list:invalid_column_datetime' => 'Valoarea coloanei \':column\' nu este un obiect de tip DateTime, verificati existenta unei referinte $dates in Model?', 'list:missing_column' => 'Nu exista denifitii pentru coloana :columns.', 'list:missing_columns' => 'Lista folosita in clasa :class nu are coloane definite.', 'list:missing_definition' => 'Lista nu contine o coloana pentru campul \':field\'.', 'list:missing_model' => 'Lista folosita in clasa :class nu are un model definit.', 'list:no_records' => 'Nu exista inregistari pentru aceasta fereastra.', 'list:pagination' => 'Afisare inregistrari: :from-:to din :total', 'list:records_per_page' => 'Inregistari pe pagina', 'list:records_per_page_help' => 'Selectati numarul de inregistari care sa fie afisat pe pagina. Sa tineti cont de faptul ca un numar mare de inregistari pe o singura pagina poate sa reduca performanta.', 'list:search_prompt' => 'Cautare...', 'list:setup_help' => 'Folositi bife pentru a selecta coloanele pe care doriti sa le vedeti in lista. Puteti modifica pozitia coloanelor glisandu-le in sus sau in jos.', 'list:setup_title' => 'Setare lista', 'locale:cs' => 'Czech', 'locale:de' => 'Germana', 'locale:en' => 'Engleza', 'locale:fa' => 'Persian', 'locale:fr' => 'Franceza', 'locale:ja' => 'Japoneza', 'locale:nb-no' => 'Norvegiană (Bokmål)', 'locale:nl' => 'Olandeza', 'locale:pt-br' => 'Portugheza (Brazilia)', 'locale:ro' => 'Romana', 'locale:ru' => 'Rusa', 'locale:sv' => 'Suedeza', 'locale:tr' => 'Turca', 'mail:general' => 'General', 'mail:menu_description' => 'Administrare configuratie email.', 'mail:menu_label' => 'Configuratie Email', 'mail:method' => 'Metoda trimitere email', 'mail:sender_email' => 'Email expeditor', 'mail:sender_name' => 'Nume expeditor', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Cale catre Sendmail', 'mail:sendmail_path_comment' => 'Va rugam sa specificati calea catre programul sendmail.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'Adresa SMTP', 'mail:smtp_authorization' => 'Autorizatie SMTP necesara', 'mail:smtp_authorization_comment' => 'Utilizati aceasta bifa daca serverul SMTP necesita autorizatie.', 'mail:smtp_password' => 'Parola', 'mail:smtp_port' => 'Port SMTP', 'mail:smtp_ssl' => 'Conexiune SSL necesara', 'mail:smtp_username' => 'Utilizator', 'mail_templates:code' => 'Cod', 'mail_templates:code_comment' => 'Cod unic folosit ca referinta la acest sablon', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Text simplu', 'mail_templates:description' => 'Descriere', 'mail_templates:layout' => 'Macheta', 'mail_templates:layouts' => 'Machete', 'mail_templates:menu_description' => 'Modificati sabloanele de email care sunt trimise catre utilizatori si administratori, administrati aspectul email-urilor.', 'mail_templates:menu_label' => 'Sabloane email', 'mail_templates:menu_layouts_label' => 'Machete email', 'mail_templates:name' => 'Nume', 'mail_templates:name_comment' => 'Nume unic folosit ca referinta la acest sablon', 'mail_templates:new_layout' => 'Macheta noua', 'mail_templates:new_template' => 'Sablon nou', 'mail_templates:return' => 'Intoarcere la lista de sabloane', 'mail_templates:subject' => 'Subiect', 'mail_templates:subject_comment' => 'Subiect mesaj Email', 'mail_templates:template' => 'Sablon', 'mail_templates:templates' => 'Sabloane', 'mail_templates:test_send' => 'Trimitere mesaj de test', 'mail_templates:test_success' => 'Mesajul de test a fost trimis cu succes.', 'markdowneditor:bold' => 'Îngroșat', 'markdowneditor:code' => 'Cod', 'markdowneditor:formatting' => 'Formatare', 'markdowneditor:fullscreen' => 'Umple ecranul', 'markdowneditor:header1' => 'Antet 1', 'markdowneditor:header2' => 'Antet 2', 'markdowneditor:header3' => 'Antet 3', 'markdowneditor:header4' => 'Antet 4', 'markdowneditor:header5' => 'Antet 5', 'markdowneditor:header6' => 'Antet 6', 'markdowneditor:horizontalrule' => 'Introdu linie orizontală', 'markdowneditor:image' => 'Imagine', 'markdowneditor:italic' => 'Italic', 'markdowneditor:link' => 'Link', 'markdowneditor:orderedlist' => 'Listă ordonată', 'markdowneditor:preview' => 'Previzualizează', 'markdowneditor:quote' => 'Citat', 'markdowneditor:unorderedlist' => 'Listă neordonată', 'markdowneditor:video' => 'Video', 'mediamanager:insert_audio' => 'Introdu audio', 'mediamanager:insert_image' => 'Introdu image', 'mediamanager:insert_link' => 'Introdu link', 'mediamanager:insert_video' => 'Introdu video', 'mediamanager:invalid_audio_empty_insert' => 'Alege un fișier video pentru a fi introdus.', 'mediamanager:invalid_file_empty_insert' => 'Selectează un fișier către care să se facă legătura.', 'mediamanager:invalid_file_single_insert' => 'Selectează un singur fișier.', 'mediamanager:invalid_image_empty_insert' => 'Alege imaginile pentru a fi introduse.', 'mediamanager:invalid_video_empty_insert' => 'Alege un fișier video pentru a fi introdus.', 'model:invalid_class' => 'Modelul :model folosit in clasa :class nu este valid, trebuie sa mosteneasca clasa \\Model.', 'model:mass_assignment_failed' => 'Atribuirea in masa a esuat pentru atributul modelului \':attribute\'.', 'model:missing_id' => 'Nu exista niciun ID specificat pentru care sa se realizeze cautarea inregistrarii modelului.', 'model:missing_relation' => 'Modelul \':class\' nu contine o definitie pentru relatia \':relation\'.', 'model:name' => 'Model', 'model:not_found' => 'Modelul \':class\' cu ID-ul :id nu a putut fi gasit', 'myaccount:menu_description' => 'Actualizati datele contului, precum nume, adresa de email si parola.', 'myaccount:menu_keywords' => 'securitate login', 'myaccount:menu_label' => 'Contul meu', 'mysettings:menu_description' => 'Setarile in legatura cu contul de administrare', 'mysettings:menu_label' => 'Setarile mele', 'page:access_denied:cms_link' => 'Inapoi in panoul de administrare', 'page:access_denied:help' => 'Nu aveti permisiuni pentru a vizualiza aceasta pagina.', 'page:access_denied:label' => 'Acces restrictionat', 'page:custom_error:help' => 'Ne cerem scuze, dar a aparut o problema si pagina nu poate fi afisata.', 'page:custom_error:label' => 'Eroare pagina', 'page:delete_confirm_multiple' => 'Vreti sa stergeti paginile selectate?', 'page:delete_confirm_single' => 'Vreti sa stergeti aceasta pagina?', 'page:invalid_url' => 'Format URL invalid. URL-ul ar trebui sa inceapa cu un slash ( / ) si poate sa contina cifre, caractere latine si urmatoarele simboluri: ._-[]:?|/+*^$', 'page:menu_label' => 'Pagini', 'page:new' => 'Pagina noua', 'page:no_layout' => '-- fara macheta --', 'page:no_list_records' => 'Nu au fost gasite pagini', 'page:not_found:help' => 'Pagina cautata nu a putut fi gasita.', 'page:not_found:label' => 'Pagina negasita', 'page:untitled' => 'Fara titlu', 'partial:delete_confirm_multiple' => 'Vreti sa stergeti componentele partiale selectate?', 'partial:delete_confirm_single' => 'Vreti sa stergeti aceasta componenta partiala?', 'partial:invalid_name' => 'Nume invalid pentru componenta partiala: :name.', 'partial:menu_label' => 'Componente partiale', 'partial:new' => 'Componenta partiala noua', 'partial:no_list_records' => 'Nu au fost gasite componente partiale', 'partial:not_found_name' => 'Partialul \':name\' nu a fost gasit.', 'permissions:manage_assets' => 'Gestioneaza fisiere design', 'permissions:manage_content' => 'Gestioneaza continut', 'permissions:manage_layouts' => 'Gestioneaza machete', 'permissions:manage_mail_templates' => 'Gestioneaza sabloanele de email', 'permissions:manage_other_administrators' => 'Gestioneaza alti administratori', 'permissions:manage_pages' => 'Gestioneaza pagini', 'permissions:manage_partials' => 'Gestioneaza componente partiale', 'permissions:manage_software_updates' => 'Gestioneaza actualizarile software', 'permissions:manage_system_settings' => 'Gestioneaza setarile sistemului', 'permissions:manage_themes' => 'Gestioneaza teme', 'permissions:view_the_dashboard' => 'Vizualizare panou de control', 'plugin:name:help' => 'Denumiti plugin-ul dupa codul sau unic. De exemplu, RainLab.Blog', 'plugin:name:label' => 'Nume Plugin', 'plugin:unnamed' => 'Plugin fara nume', 'plugins:disable_success' => 'Plugin-urile respective au fost dezactivate cu succes.', 'plugins:disabled_help' => 'Plugin-urile care sunt dezactivate sunt ignorate de catre aplicatie.', 'plugins:disabled_label' => 'Dezactivat', 'plugins:enable_or_disable' => 'Activare sau dezactivare', 'plugins:enable_or_disable_title' => 'Activare sau dezactivare plugin-uri', 'plugins:enable_success' => 'Plugin-urile respective au fost activate cu succes.', 'plugins:manage' => 'Gestionare plugin-uri', 'plugins:refresh' => 'Reimprospatare', 'plugins:refresh_success' => 'Plugin-urile respective au fost actualizate cu succes.', 'plugins:remove' => 'Inlaturare', 'plugins:remove_success' => 'Plugin-urile respective au fost inlaturate cu succes din sistem.', 'plugins:selected_amount' => 'Plugin-uri selectate: :amount', 'plugins:unknown_plugin' => 'Plugin-ul a fost inlaturat din sistemul de fisiere.', 'project:attach' => 'Atasare Proiect', 'project:detach' => 'Detasare Proiect', 'project:detach_confirm' => 'Sunteti sigur(a) ca doriti sa detasati acest proiect?', 'project:id:help' => 'Cum sa gasiti ID-ul Proiectului', 'project:id:label' => 'ID Proiect', 'project:id:missing' => 'Va rugam sa specificati un ID de Proiect.', 'project:name' => 'Proiect', 'project:none' => 'Niciunul', 'project:owner_label' => 'Proprietar', 'project:unbind_success' => 'Proiectul a fost detasat cu succes.', 'relation:add' => 'Adaugare', 'relation:add_name' => 'Adaugare :name', 'relation:create' => 'Creare', 'relation:create_name' => 'Creare :name', 'relation:delete' => 'Stergere', 'relation:delete_name' => 'Stergere :name', 'relation:invalid_action_multi' => 'Aceasta actiune nu poate fi realizata pentru o relatie multipla.', 'relation:invalid_action_single' => 'Aceasta actiune nu poate fi realizata pentru o relatie singulara.', 'relation:missing_definition' => 'Relatia nu contine definitii pentru campul \':field\'.', 'relation:missing_model' => 'Relatia folosita in clasa :class nu are un model definit.', 'relation:remove' => 'Inlaturare', 'relation:remove_name' => 'Inlaturare :name', 'relation:update' => 'Actualizare', 'relation:update_name' => 'Actualizare :name', 'request_log:count' => 'Contor', 'request_log:empty_link' => 'Golire jurnal de cereri', 'request_log:empty_loading' => 'Se goleste jurnalul de cereri...', 'request_log:empty_success' => 'Jurnalul cu cereri a fost golit cu succes.', 'request_log:hint' => 'Acest jurnal afiseaza o lista de cereri efectuate de browser care pot sa necesite atentie. De exemplu, daca un vizitator deschide o pagina in CMS care nu poate fi gasita, o inregistrare va fi creata cu un cod de status 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'ID Jurnal', 'request_log:menu_description' => 'Vizualizare cereri esuate sau redirectate, precum Pagini care nu au fost gasite (404).', 'request_log:menu_label' => 'Jurnal cereri', 'request_log:referer' => 'Refereri', 'request_log:return_link' => 'Intoarcere la jurnal de cereri', 'request_log:status_code' => 'Status', 'request_log:url' => 'URL', 'server:connect_error' => 'Eroare la conectarea la server.', 'server:file_corrupt' => 'Fisierul de pe server este corupt.', 'server:file_error' => 'Serverul a esuat sa livreze pachetul software.', 'server:response_empty' => 'Raspuns gol de la server.', 'server:response_invalid' => 'Raspuns invalid de la server.', 'server:response_not_found' => 'Serverul de actualizari nu a putut fi contactat.', 'settings:menu_label' => 'Setari', 'settings:missing_model' => 'Paginii de setari ii lipseste o definitie de Model.', 'settings:return' => 'Intoarcere la setarile sistemului.', 'settings:search' => 'Cautare', 'settings:update_success' => 'Setarile pentru :name au fost actualizate cu succes.', 'sidebar:add' => 'Adaugare', 'sidebar:search' => 'Cautare...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Clienti', 'system:categories:events' => 'Evenimente', 'system:categories:logs' => 'Jurnal', 'system:categories:mail' => 'Mail', 'system:categories:misc' => 'Altele', 'system:categories:my_settings' => 'Setarile mele', 'system:categories:shop' => 'Magazin', 'system:categories:social' => 'Social', 'system:categories:system' => 'Sistem', 'system:categories:team' => 'Echipa', 'system:categories:users' => 'Utilizatori', 'system:menu_label' => 'Sistem', 'system:name' => 'Sistem', 'template:invalid_type' => 'Tip de sablon necunoscut.', 'template:not_found' => 'Sablonul solicitat nu a fost gasit.', 'template:saved' => 'Sablonul a fost salvat cu succes.', 'theme:activate_button' => 'Activare', 'theme:active:not_found' => 'Tema activa nu a fost gasita.', 'theme:active:not_set' => 'Tema activa nu este setata.', 'theme:active_button' => 'Activare', 'theme:edit:not_found' => 'Tema de editare nu a fost gasita.', 'theme:edit:not_match' => 'Obiectul pe care incercati sa-l accesati nu apartine temei care este in curs de editare. Va rugam reincarcati pagina.', 'theme:edit:not_set' => 'Tema de editare nu este setata.', 'theme:find_more_themes' => 'Gasiti mai multe teme in \\"Piata OctoberCMS\\".', 'theme:settings_menu' => 'Tema Front-end', 'theme:settings_menu_description' => 'Previzualizati lista de teme instalate si selectati o tema activa.', 'tooltips:preview_website' => 'Previzualizare site', 'updates:check_label' => 'Cauta actualizari disponibile', 'updates:core_build' => 'Versiune :build', 'updates:core_build_help' => 'Ultima versiune este disponibila.', 'updates:core_current_build' => 'Versiune curenta', 'updates:core_downloading' => 'Se descarca fisierele aplicatiei', 'updates:core_extracting' => 'Se dezarhiveaza fisierele aplicatiei', 'updates:force_label' => 'Forteaza actualizarea', 'updates:found:help' => 'Apasati pe \\"Actualizare software\\" pentru a incepe procesul de actualizare.', 'updates:found:label' => 'Au fost gasite noi actualizari!', 'updates:menu_description' => 'Actualizati sistemul, gestionati si instalati plugin-uri si teme.', 'updates:menu_label' => 'Actualizari', 'updates:name' => 'Actualizare Software', 'updates:none:help' => 'Nu au fost gasite actualizari disponibile.', 'updates:none:label' => 'Nu exista actualizari', 'updates:plugin_author' => 'Autor', 'updates:plugin_description' => 'Descriere', 'updates:plugin_downloading' => 'Se descarca plugin-ul: :name', 'updates:plugin_extracting' => 'Se dezarhiveaza plugin-ul: :name', 'updates:plugin_name' => 'Nume', 'updates:plugin_version' => 'Versiune', 'updates:plugin_version_none' => 'Plugin nou', 'updates:retry_label' => 'Incercati din nou', 'updates:theme_downloading' => 'Se descarca tema: :name', 'updates:theme_extracting' => 'Se dezarhiveaza tema: :name', 'updates:theme_new_install' => 'Instalare tema noua.', 'updates:title' => 'Gestioneaza Actualizari', 'updates:update_completing' => 'Se finalizeaza procesul de actualizare', 'updates:update_failed_label' => 'Actualizarea a esuat', 'updates:update_label' => 'Actualizare software', 'updates:update_loading' => 'Se incarca actualizarile disponibile...', 'updates:update_success' => 'Procesul de actualizare a fost finalizat cu succes.', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Sunteti sigur(a) ca vreti sa stergeti acest administrator?', 'user:email' => 'Email', 'user:first_name' => 'Prenume', 'user:full_name' => 'Nume complet', 'user:group:delete_confirm' => 'Sunteti sigur(a) ca vreti sa stergeti acest grup de administratori?', 'user:group:list_title' => 'Gestionare Grupuri', 'user:group:menu_label' => 'Grupuri', 'user:group:name' => 'Grup', 'user:group:name_field' => 'Nume', 'user:group:new' => 'Grup Nou de Administratori', 'user:group:return' => 'Intoarcere la lista de grupuri', 'user:groups' => 'Grupuri', 'user:groups_comment' => 'Specificati grupurile aferente acestei persoane.', 'user:last_name' => 'Nume', 'user:list_title' => 'Gestionare Administratori', 'user:login' => 'Login', 'user:menu_description' => 'Gestionare administratori, grupuri si permisiuni.', 'user:menu_label' => 'Administratori', 'user:name' => 'Administrator', 'user:new' => 'Administrator nou', 'user:password' => 'Parola', 'user:password_confirmation' => 'Confirmare Parola', 'user:preferences:not_authenticated' => 'Nu exista niciun utilizator autentificat pentru care sa se incarce sau salveze preferinte.', 'user:return' => 'Intoarcere la lista de administratori', 'user:send_invite' => 'Trimitere invitatie prin email', 'user:send_invite_comment' => 'Folositi aceasta bifa pentru a trimite o invitatie prin email catre utilizator', 'user:superuser' => 'Super Utilizator', 'user:superuser_comment' => 'Bifati aceasta bifa pentru a permite acestei persoane sa aiba acces deplin.', 'validation:accepted' => 'Atributul :attribute trebuie sa fie acceptat.', 'validation:active_url' => 'Atributul :attribute nu este un URL valid.', 'validation:after' => 'Atributul :attribute trebuie sa fie o data dupa data de :date.', 'validation:alpha' => 'Atributul :attribute poate sa contina doar litere.', 'validation:alpha_dash' => 'Atributul :attribute poate sa contina doar litere, numere, si liniute.', 'validation:alpha_num' => 'Atributul :attribute poate sa contina doar litere si numere.', 'validation:array' => 'Atributul :attribute trebuie sa fie de tip array.', 'validation:before' => 'Atributul :attribute trebuie sa fie o data inainte de data de :date.', 'validation:between:array' => 'Atributul :attribute trebuie sa aiba intre :min - :max elemente.', 'validation:between:file' => 'Atributul :attribute trebuie sa fie intre :min - :max kilobytes.', 'validation:between:numeric' => 'Atributul :attribute trebuie sa fie intre :min - :max.', 'validation:between:string' => 'Atributul :attribute trebuie sa fie intre :min - :max caractere.', 'validation:confirmed' => 'Atributul :attribute de confirmare nu se potriveste.', 'validation:date' => 'Atributul :attribute nu este o data valida.', 'validation:date_format' => 'Atributul :attribute nu se potriveste cu formatul :format.', 'validation:different' => 'Atributele :attribute si :other trebuie sa fie diferite.', 'validation:digits' => 'Atributul :attribute trebuie sa aiba :digits cifre.', 'validation:digits_between' => 'Atributul :attribute trebuie sa fie intre :min si :max cifre.', 'validation:email' => 'Formatul atributului :attribute este invalid.', 'validation:exists' => 'Atributul selectat :attribute este invalid.', 'validation:image' => 'Atributul :attribute trebuie sa fie o imagine.', 'validation:in' => 'Atributul selectat :attribute este invalid.', 'validation:integer' => 'Atributul :attribute trebuie sa fie un numar.', 'validation:ip' => 'Atributul :attribute trebuie sa fie o adresa IP valida.', 'validation:max:array' => 'Atributul :attribute nu poate avea mai mult de :max elemente.', 'validation:max:file' => 'Atributul :attribute nu poate fi mai mare de :max kilobytes.', 'validation:max:numeric' => 'Atributul :attribute nu poate fi mai mare de :max.', 'validation:max:string' => 'Atributul :attribute nu poate fi mai mare de :max caractere.', 'validation:mimes' => 'Atributul :attribute trebuie sa fie un fisier de tipul: :values.', 'validation:min:array' => 'Atributul :attribute trebuie sa aiba cel putin :min elemente.', 'validation:min:file' => 'Atributul :attribute trebuie sa aiba cel putin :min kilobytes.', 'validation:min:numeric' => 'Atributul :attribute trebuie sa aiba cel putin :min caractere', 'validation:min:string' => 'Atributul :attribute trebuie sa aiba cel putin :min caractere.', 'validation:not_in' => 'Atributul selectat :attribute este invalid.', 'validation:numeric' => 'Atributul :attribute trebuie sa fie un numar.', 'validation:regex' => 'Formatul atributului :attribute este invalid.', 'validation:required' => 'Campul atributului :attribute este necesar.', 'validation:required_if' => 'Campul atributului :attribute este necesar cand atributul :other are valoarea :value.', 'validation:required_with' => 'Campul atributului :attribute este necesar cand valorea :values este prezenta.', 'validation:required_without' => 'Campul atributului :attribute este necesar cand valoarea :values nu este prezenta.', 'validation:same' => 'Atributele :attribute si :other trebuie sa corespunda.', 'validation:size:array' => 'Atributul :attribute trebuie sa contina :size elemente.', 'validation:size:file' => 'Atributul :attribute trebuie sa aiba dimensiunea :size kilobytes.', 'validation:size:numeric' => 'Atributul :attribute trebuie sa aiba dimensiunea :size.', 'validation:size:string' => 'Atributul :attribute trebuie sa aiba :size caractere.', 'validation:unique' => 'Atributul :attribute exista deja.', 'validation:url' => 'Formatul atributului :attribute este invalid.', 'warnings:extension' => 'Libraria PHP :name nu este instalata. Va rugam sa instalati aceasta librarie si apoi sa activati extensia.', 'warnings:permissions' => 'Directorul :name si subdirectoarele sale nu au permisiuni de scriere pentru PHP. Va rugam sa setati permisiunile corespunzatoare pentru acest director.', 'warnings:tips' => 'Sfaturi pentru configurarea sistemului', 'warnings:tips_description' => 'Exista anumite conditii care necesita atentie pentru a configura sistemul corect.', 'widget:not_bound' => 'Un widget cu numele de clasa \':name\' nu a fost mapat la controller', 'widget:not_registered' => 'Un nume de clasa de widget \':name\' nu a fost inregistrat', 'zip:extract_failed' => 'Nu s-a putut extrage fisierul de baza \':file\'.']);
示例#10
0
文件: ru.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Дата & Время', 'access_log:email' => 'Почта', 'access_log:first_name' => 'Имя', 'access_log:hint' => 'В этом журнале отображается список успешных попыток авторизаций администраторов. Записи хранятся :days дней.', 'access_log:ip_address' => 'IP адрес', 'access_log:last_name' => 'Фамилия', 'access_log:login' => 'Логин', 'access_log:menu_description' => 'Просмотр списка успешных авторизаций администраторов.', 'access_log:menu_label' => 'Журнал доступа', 'account:apply' => 'Применить', 'account:cancel' => 'Отменить', 'account:delete' => 'Удалить', 'account:email_placeholder' => 'почта', 'account:enter_email' => 'Введите вашу почту', 'account:enter_login' => 'Введите ваш Логин', 'account:enter_new_password' => 'Введите новый пароль', 'account:forgot_password' => 'Забыли пароль?', 'account:login' => 'Вход', 'account:login_placeholder' => 'пользователь', 'account:ok' => 'OK', 'account:password_placeholder' => 'пароль', 'account:password_reset' => 'Сбросить пароль', 'account:reset' => 'Сбросить', 'account:reset_error' => 'Недействительные данные для изменения пароля. Пожалуйста, попробуйте еще раз!', 'account:reset_fail' => 'Невозможно изменить пароль!', 'account:reset_success' => 'Ваш пароль был успешно изменен. Теперь вы можете войти на сайт.', 'account:restore' => 'Восстановить', 'account:restore_error' => 'Пользователь с логином \':login\' не найден.', 'account:restore_success' => 'На вашу электронную почту отправлено сообщение с инструкциями для восстановления пароля.', 'account:sign_out' => 'Выйти', 'ajax_handler:invalid_name' => 'Ошибка в имени обработчика AJAX: :name.', 'ajax_handler:not_found' => 'Обработчик AJAX не найден: \':name\'.', 'alert:cancel_button_text' => 'Отмена', 'alert:confirm_button_text' => 'Ок', 'app:name' => 'October CMS', 'app:tagline' => 'Возвращение к истокам', 'asset:already_exists' => 'Файл или директория с таким именем уже существует', 'asset:create_directory' => 'Создать директорию', 'asset:create_file' => 'Создать файл', 'asset:delete' => 'Удалить', 'asset:destination_not_found' => 'Конечная директория не найдена', 'asset:directory_name' => 'Имя директории', 'asset:directory_popup_title' => 'Новая директория', 'asset:drop_down_add_title' => 'Добавить...', 'asset:drop_down_operation_title' => 'Действие...', 'asset:error_deleting_dir' => 'Ошибка удаления директории :name.', 'asset:error_deleting_dir_not_empty' => 'Невозможно удалить директорию :name. Директория содержит файлы или поддиректории.', 'asset:error_deleting_directory' => 'Не удалось удалить директорию :dir', 'asset:error_deleting_file' => 'Ошибка удаления файла :name.', 'asset:error_moving_directory' => 'Не удалось переместить директорию :dir', 'asset:error_moving_file' => 'Не удалось переместить файл :file', 'asset:error_renaming' => 'Невозможно переименовать файл или директорию', 'asset:error_uploading_file' => 'Ошибка загрузки файла \':name\': :error', 'asset:file_not_valid' => 'Файл не может быть сохранен', 'asset:invalid_name' => 'Имя может содержать только цифры, латинские буквы, пробелы и следующие символы: ._-', 'asset:invalid_path' => 'Путь может содержать только цифры, латинские буквы, пробелы и следующие символы: ._-/', 'asset:menu_label' => 'Ресурсы', 'asset:move' => 'Переместить', 'asset:move_button' => 'Переместить', 'asset:move_destination' => 'Новая директория', 'asset:move_please_select' => 'пожалуйста, выберите директорию', 'asset:move_popup_title' => 'Переместить файлы', 'asset:name_cant_be_empty' => 'Имя не может быть пустым', 'asset:new' => 'Новый файл', 'asset:original_not_found' => 'Оригинальный файл или директория не найдена', 'asset:path' => 'Путь', 'asset:rename' => 'Переименовать', 'asset:rename_new_name' => 'Новое имя', 'asset:rename_popup_title' => 'Переименовать', 'asset:select' => 'Выбрать', 'asset:select_destination_dir' => 'Пожалуйста, выберите директорию', 'asset:selected_files_not_found' => 'Выбранные файлы не найдены', 'asset:too_large' => 'Загруженный файл слишком велик. Максимальный допустимый размер файла составляет :max_size', 'asset:type_not_allowed' => 'Разрешены только файлы следующих типов: :allowed_types', 'asset:unsaved_label' => 'Несохранённый(е) файл(ы)', 'asset:upload_files' => 'Загрузить файл(ы)', 'auth:title' => 'Панель управления', 'backend_preferences:locale' => 'Язык', 'backend_preferences:locale_comment' => 'Выберите желаемый язык панели управления.', 'backend_preferences:menu_description' => 'Управление языком и внешним видом панели управления.', 'backend_preferences:menu_label' => 'Настройки панели управления', 'behavior:missing_property' => 'Класс :class должен содержать свойство $:property, используемое расширением :behavior.', 'branding:app_name' => 'Название приложения', 'branding:app_name_description' => 'Это имя отображается в заголовке панели управления', 'branding:app_tagline' => 'Слоган приложения', 'branding:app_tagline_description' => 'Слоган будет отображаться на экране входа в панель управления.', 'branding:brand' => 'Бренд', 'branding:colors' => 'Цвета', 'branding:custom_stylesheet' => 'Пользовательские стили', 'branding:logo' => 'Логотип', 'branding:logo_description' => 'Загрузите логотип для панели управления', 'branding:menu_description' => 'Управление внешним видом панели управления (название, цвет, логотип)', 'branding:menu_label' => 'Персонализация панели управления', 'branding:primary_dark' => 'Первичный (Тёмный)', 'branding:primary_light' => 'Первичный (Светлый)', 'branding:secondary_dark' => 'Вторичный (Тёмный)', 'branding:secondary_light' => 'Вторичный (Светлый)', 'branding:styles' => 'Стили', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Шаблоны были успешно удалены: :count.', 'cms_object:error_creating_directory' => 'Ошибка создания директории :name. Пожалуйста, проверьте права на запись.', 'cms_object:error_deleting' => 'Невозможно удалить файл шаблона \':name\'. Пожалуйста, проверьте права на запись.', 'cms_object:error_saving' => 'Ошибка сохранения файла \':name\'. Пожалуйста, проверьте права на запись.', 'cms_object:file_already_exists' => 'Файл \':name\' уже существует.', 'cms_object:file_name_required' => 'Пожалуйста, укажите имя файла шаблона.', 'cms_object:invalid_file' => 'Ошибка в имени файла: :name. Имена файлов могут содержать только латинские буквы, цифры, знаки подчеркивания и точки. Пример правильных имен файлов: page.htm, page, subdirectory/page', 'cms_object:invalid_file_extension' => 'Указано неправильное расширение файла: :invalid. Разрешенные расширения: :allowed.', 'cms_object:invalid_property' => 'Параметр \':name\' нельзя изменить.', 'combiner:not_found' => 'Сборщик ресурсов не может найти файл \':name\'.', 'component:alias' => 'Псевдоним', 'component:alias_description' => 'Псевдоним компонента определяет его имя, под которым он доступен в коде страницы или шаблона.', 'component:invalid_request' => 'Шаблон не может быть сохранен, так как запрос содержит поврежденную информацию о компонентах.', 'component:menu_label' => 'Компоненты', 'component:method_not_found' => 'Компонент \':name\' не содержит метод \':method\'.', 'component:no_description' => 'Без описания', 'component:no_records' => 'Компоненты не найдены', 'component:not_found' => 'Компонент \':name\' не найден.', 'component:unnamed' => 'Безымянный', 'component:validation_message' => 'Псевдонимы обязательны и могут содержать только латинские буквы, цифры и знаки подчеркивания. Псевдонимы должны начинаться с латинской буквы.', 'config:not_found' => 'Не удалось найти конфигурационный файл :file, ожидаемый для :location.', 'config:required' => 'Для конфигурации, используемой в :location не указано свойство \':property\'.', 'content:delete_confirm_multiple' => 'Вы действительно хотите удалить выделенные файлы?', 'content:delete_confirm_single' => 'Вы действительно хотите удалить этот файл?', 'content:menu_label' => 'Содержимое', 'content:new' => 'Новый файл содержимого', 'content:no_list_records' => 'Файлы с содержимым не найдены', 'content:not_found_name' => 'Не удалось найти файл содержимого (content file): \':name\'.', 'content:unsaved_label' => 'Несохранённое содержимое', 'dashboard:add_widget' => 'Добавить виджет', 'dashboard:columns' => '{1} колонка|[2,4] колонки|[5,Inf] колонок', 'dashboard:full_width' => 'полная ширина', 'dashboard:menu_label' => 'Панель управления', 'dashboard:status:maintenance' => 'в разработке', 'dashboard:status:online' => 'Онлайн', 'dashboard:status:update_available' => '{0} нет новый обновлений!|{1} доступно новое обновление!|[2,Inf] доступны новые обновления!', 'dashboard:status:widget_title_default' => 'Статус системы', 'dashboard:widget_columns_description' => 'Ширина виджета может варьироваться от 1 до 10.', 'dashboard:widget_columns_error' => 'Пожалуйста, выберите ширину виджета.', 'dashboard:widget_columns_label' => 'Ширина :columns', 'dashboard:widget_inspector_description' => 'Настройка отображения виджета', 'dashboard:widget_inspector_title' => 'Конфигурации виджета', 'dashboard:widget_label' => 'Виджет', 'dashboard:widget_new_row_description' => 'Поставить виджет с новой строки.', 'dashboard:widget_new_row_label' => 'Новая строка', 'dashboard:widget_title_error' => 'Заголовок виджета обязателен.', 'dashboard:widget_title_label' => 'Заголовок', 'dashboard:widget_width' => 'Ширина', 'directory:create_fail' => 'Невозможно создать директорию: :name', 'editor:auto_closing' => 'Автоматическое закрытие тегов и специальных символов', 'editor:code' => 'Код', 'editor:code_folding' => 'Свертывание кода', 'editor:content' => 'Содержание', 'editor:description' => 'Описание', 'editor:enter_fullscreen' => 'Войти в полноэкранный режим', 'editor:exit_fullscreen' => 'Выйти из полноэкранного режима', 'editor:filename' => 'Имя файла', 'editor:font_size' => 'Размер шрифта', 'editor:hidden' => 'Скрытая страница', 'editor:hidden_comment' => 'Скрытые страницы доступны только для вошедших в систему пользователей.', 'editor:highlight_active_line' => 'Подсвечивать активную строку', 'editor:layout' => 'Шаблон', 'editor:markup' => 'Разметка', 'editor:menu_description' => 'Управление настройками редактора кода.', 'editor:menu_label' => 'Настройки редактора', 'editor:meta' => 'Метатеги', 'editor:meta_description' => 'Описание (meta)', 'editor:meta_title' => 'Заголовок (meta)', 'editor:new_title' => 'Заголовок страницы', 'editor:preview' => 'Предпросмотр', 'editor:settings' => 'Настройки', 'editor:show_gutter' => 'Показывать нумерацию строк', 'editor:show_invisibles' => 'Показывать невидимые символы', 'editor:tab_size' => 'Размер табуляции', 'editor:theme' => 'Цветовая схема', 'editor:title' => 'Заголовок', 'editor:url' => 'Адрес', 'editor:use_hard_tabs' => 'Использовать табуляцию для индентации', 'editor:word_wrap' => 'Перенос слов', 'event_log:created_at' => 'Дата & Время', 'event_log:empty_link' => 'Очистить журнал событий', 'event_log:empty_loading' => 'Очищение журнала событий...', 'event_log:empty_success' => 'Успешное очищение журнала событий.', 'event_log:hint' => 'В этом журнале отображается список возможных ошибок, которые возникают в работе приложения, таких как исключения и отладочная информация.', 'event_log:id' => 'ID', 'event_log:id_label' => 'ID события', 'event_log:level' => 'Уровень', 'event_log:menu_description' => 'Просмотр системного журнала событий.', 'event_log:menu_label' => 'Журнал событий', 'event_log:message' => 'Сообщение', 'event_log:return_link' => 'Вернуться в журнал событий', 'field:invalid_type' => 'Использован неверный тип поля: :type.', 'field:options_method_not_exists' => 'Класс модели :model должен содержать метод :method(), возвращающий опции для поля формы \':field\'.', 'file:create_fail' => 'Невозможно создать файл: :name', 'fileupload:attachment' => 'Приложение', 'fileupload:attachment_url' => 'Привязать URL', 'fileupload:default_prompt' => 'Кликните по %s или перетащите файл сюда для загрузки', 'fileupload:description_label' => 'Описание', 'fileupload:help' => 'Добавьте заголовок и описание для этого вложения.', 'fileupload:remove_confirm' => 'Вы уверены?', 'fileupload:remove_file' => 'Удалить файл', 'fileupload:title_label' => 'Название', 'fileupload:upload_error' => 'Ошибка загрузки', 'fileupload:upload_file' => 'Загрузить файл', 'filter:all' => 'все', 'form:action_confirm' => 'Вы уверены, что хотите сделать это?', 'form:add' => 'Добавить', 'form:apply' => 'Применить', 'form:behavior_not_ready' => 'Поведение формы не было инициализировано, проверьте вызов initForm() в вашем контроллере.', 'form:cancel' => 'Отмена', 'form:close' => 'Закрыть', 'form:complete' => 'Завершить', 'form:concurrency_file_changed_description' => 'Файл, который вы редактируете был изменен другим пользователем. Вы можете либо перезагрузить файл и потерять ваши изменения или перезаписать его', 'form:concurrency_file_changed_title' => 'Файл был изменен', 'form:confirm' => 'Подтвердить', 'form:confirm_tab_close' => 'Закрыть вкладку? Несохраненные изменения будут потеряны.', 'form:create' => 'Создать', 'form:create_and_close' => 'Создать и закрыть', 'form:create_success' => ':name был успешно создан', 'form:create_title' => 'Создание :name', 'form:creating' => 'Создание...', 'form:creating_name' => 'Создание :name...', 'form:delete' => 'Удалить', 'form:delete_row' => 'Удалить строку', 'form:delete_success' => ':name был успешно удален', 'form:deleting' => 'Удаление...', 'form:deleting_name' => 'Удаление :name...', 'form:field_off' => 'Выкл', 'form:field_on' => 'Вкл', 'form:insert_row' => 'Вставить строку', 'form:insert_row_below' => 'Вставить строку ниже', 'form:missing_definition' => 'Поведение формы не содержит поле для\':field\'.', 'form:missing_id' => 'Идентификатор формы записи не указан.', 'form:missing_model' => 'Для формы используемой в :class не определена модель.', 'form:not_found' => 'Форма записи с идентификатором :ID не найдена.', 'form:ok' => 'OK', 'form:or' => 'или', 'form:preview_no_files_message' => 'Нет загруженных файлов.', 'form:preview_no_record_message' => 'Нет выбранных записей.', 'form:preview_title' => 'Предпросмотр :name', 'form:reload' => 'Обновить', 'form:reset_default' => 'Сбросить настройки', 'form:resetting' => 'Сброс', 'form:resetting_name' => 'Сброс :name', 'form:save' => 'Сохранить', 'form:save_and_close' => 'Сохранить и закрыть', 'form:saving' => 'Сохранение...', 'form:saving_name' => 'Сохранение :name...', 'form:select' => 'Выбрать', 'form:select_all' => 'все', 'form:select_none' => 'ничего', 'form:select_placeholder' => 'Пожалуйста, выберите', 'form:undefined_tab' => 'Разное', 'form:update_success' => ':name был успешно сохранен', 'form:update_title' => 'Редактирование :name', 'install:install_completing' => 'Завершение процесса установки', 'install:install_success' => 'Плагин был успешно установлен.', 'install:missing_plugin_name' => 'Пожалуйста, укажите название плагина для установки.', 'install:missing_theme_name' => 'Пожалуйста, укажите название темы для установки.', 'install:plugin_label' => 'Установить плагин', 'install:project_label' => 'Присоединить к проекту', 'install:theme_label' => 'Установить тему', 'layout:delete_confirm_multiple' => 'Вы действительно хотите удалить выделенные шаблоны?', 'layout:delete_confirm_single' => 'Вы действительно хотите удалить этот шаблон?', 'layout:menu_label' => 'Шаблоны', 'layout:new' => 'Новый шаблон', 'layout:no_list_records' => 'Шаблоны не найдены', 'layout:not_found_name' => 'Не удалось найти шаблон (layout) с именем :name.', 'layout:unsaved_label' => 'Несохранённый(е) макет(ы)', 'list:behavior_not_ready' => 'Поведение списка не было инициализировано, проверьте вызов makeLists() в вашем контроллере.', 'list:column_switch_false' => 'Нет', 'list:column_switch_true' => 'Да', 'list:default_title' => 'Список', 'list:delete_selected' => 'Удалить выбранное', 'list:delete_selected_confirm' => 'Удалить выбранные записи?', 'list:delete_selected_empty' => 'Нет выбранных записей для удаления.', 'list:delete_selected_success' => 'Выбранные записи успешно удалены.', 'list:invalid_column_datetime' => 'Значение столбца \':column\' не является объектом DateTime. Отсутствует $dates ссылка в модели?', 'list:loading' => 'Загрузка...', 'list:missing_column' => 'Нет никаких определений столбца для :columns.', 'list:missing_columns' => 'Список используемый в :class не имеет никаких столбцов.', 'list:missing_definition' => 'Поведение списка не содержит столбец для \':field\'.', 'list:missing_model' => 'Для списка используемого в :class не определена модель.', 'list:next_page' => 'Следующая страница', 'list:no_records' => 'По вашему запросу ничего не найдено.', 'list:pagination' => 'Отображено записей: :from-:to из :total', 'list:prev_page' => 'Предыдущая страница', 'list:records_per_page' => 'Записей на странице', 'list:records_per_page_help' => 'Выберите количество записей на странице для отображения. Обратите внимание, что большое количество записей на одной странице может привести к снижению производительности.', 'list:search_prompt' => 'Поиск...', 'list:setup_help' => 'Используйте флажки для выбора колонок, которые вы хотите видеть в списке. Вы можете изменить положение столбцов, перетаскивая их вверх или вниз.', 'list:setup_title' => 'Настройка списка', 'locale:cs' => 'Czech', 'locale:de' => 'German', 'locale:el' => 'Greek', 'locale:en' => 'English', 'locale:es' => 'Spanish', 'locale:es-ar' => 'Spanish (Argentina)', 'locale:fa' => 'Persian', 'locale:fr' => 'French', 'locale:hu' => 'Hungarian', 'locale:id' => 'Bahasa Indonesia', 'locale:it' => 'Italian', 'locale:ja' => 'Japanese', 'locale:lv' => 'Latvian', 'locale:nb-no' => 'Norwegian (Bokmål)', 'locale:nl' => 'Dutch', 'locale:pl' => 'Polish', 'locale:pt-br' => 'Portuguese (Brazil)', 'locale:ro' => 'Romanian', 'locale:ru' => 'Russian', 'locale:sk' => 'Slovak (Slovakia)', 'locale:sv' => 'Swedish', 'locale:tr' => 'Turkish', 'locale:zh-cn' => 'Chinese (China)', 'locale:zh-tw' => 'Chinese (Taiwan)', 'mail:drivers_hint_content' => 'Этот почтовый метод требует плагин \\":plugin\\", установленный прежде, чем можно будет отправлять почту.', 'mail:drivers_hint_header' => 'Драйвера не установлены', 'mail:general' => 'Общее', 'mail:log_file' => 'Файл журнала', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun домен', 'mail:mailgun_domain_comment' => 'Пожалуйста, укажите Mailgun домен.', 'mail:mailgun_secret' => 'Секретный API-ключ', 'mail:mailgun_secret_comment' => 'Введите ваш Mailgun API-ключ.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Секретный ключ Mandrill', 'mail:mandrill_secret_comment' => 'Введите ваш Mandrill API-ключ.', 'mail:menu_description' => 'Управление настройками электронной почты.', 'mail:menu_label' => 'Настройки почты', 'mail:method' => 'Метод', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'Адрес отправителя', 'mail:sender_name' => 'Имя отправителя', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Sendmail Путь', 'mail:sendmail_path_comment' => 'Пожалуйста, укажите путь к sendmail.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'Сервер исходящей почты', 'mail:smtp_authorization' => 'Использовать SMTP авторизацию', 'mail:smtp_authorization_comment' => 'Активируйте эту опцию, если ваш SMTP-сервер требует авторизацию.', 'mail:smtp_encryption' => 'Протокол шифрования для SMTP', 'mail:smtp_encryption_none' => 'Без шифрования', 'mail:smtp_encryption_ssl' => 'SSL', 'mail:smtp_encryption_tls' => 'TLS', 'mail:smtp_password' => 'SMTP пароль', 'mail:smtp_port' => 'SMTP порт', 'mail:smtp_ssl' => 'Использовать SSL', 'mail:smtp_username' => 'SMTP логин', 'mail_templates:code' => 'Код', 'mail_templates:code_comment' => 'Уникальный код, используемый для обозначения этого шаблона', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Plaintext', 'mail_templates:description' => 'Описание', 'mail_templates:layout' => 'Макет', 'mail_templates:layouts' => 'Макеты', 'mail_templates:menu_description' => 'Изменение шаблонов писем, отправляемых пользователям и администраторам.', 'mail_templates:menu_label' => 'Шаблоны почты', 'mail_templates:menu_layouts_label' => 'Макеты почты', 'mail_templates:name' => 'Название', 'mail_templates:name_comment' => 'Уникальное имя, используемое для обозначения этого шаблона', 'mail_templates:new_layout' => 'Новый макет', 'mail_templates:new_template' => 'Новый шаблон', 'mail_templates:no_layout' => '-- Нет макета --', 'mail_templates:return' => 'Вернуться к списку шаблонов', 'mail_templates:saving' => 'Сохранение шаблона...', 'mail_templates:sending' => 'Отправка тестового сообщения...', 'mail_templates:subject' => 'Тема', 'mail_templates:subject_comment' => 'Тема сообщения', 'mail_templates:template' => 'Шаблон', 'mail_templates:templates' => 'Шаблоны', 'mail_templates:test_confirm' => 'Тестовое сообщение будет отправлено на :email. Продолжить?', 'mail_templates:test_send' => 'Отправить тестовое сообщение', 'mail_templates:test_success' => 'Тестовое сообщение было успешно отправлено.', 'maintenance:is_enabled' => 'Включить режим обслуживания', 'maintenance:is_enabled_comment' => 'При активации этого режима посетители сайта увидят страницу выбранную ниже.', 'maintenance:settings_menu' => 'Режим обслуживания', 'maintenance:settings_menu_description' => 'Управление режимом обслуживания сайта.', 'markdowneditor:bold' => 'Жирный шрифт', 'markdowneditor:code' => 'Код', 'markdowneditor:formatting' => 'Форматирование', 'markdowneditor:fullscreen' => 'Полный экран', 'markdowneditor:header1' => 'Заголовок 1', 'markdowneditor:header2' => 'Заголовок 2', 'markdowneditor:header3' => 'Заголовок 3', 'markdowneditor:header4' => 'Заголовок 4', 'markdowneditor:header5' => 'Заголовок 5', 'markdowneditor:header6' => 'Заголовок 6', 'markdowneditor:horizontalrule' => 'Вставить горизонтальную черту', 'markdowneditor:image' => 'Изображение', 'markdowneditor:italic' => 'Курсив', 'markdowneditor:link' => 'Ссылка', 'markdowneditor:orderedlist' => 'Нумированный список', 'markdowneditor:preview' => 'Предпросмотр', 'markdowneditor:quote' => 'Цитата', 'markdowneditor:unorderedlist' => 'Ненумерованный список', 'markdowneditor:video' => 'Видео', 'media:add_folder' => 'Создать папку', 'media:click_here' => 'Нажмите здесь', 'media:crop_and_insert' => 'Обрезать и вставить', 'media:delete' => 'Удалить', 'media:delete_confirm' => 'Вы действительно хотите удалить выбранные объекты?', 'media:delete_empty' => 'Пожалуйста, выберите объекты для удаления.', 'media:display' => 'Отобразить', 'media:empty_library' => 'Библиотека медиафайлов пуста. Для начала загрузите файлы или создайте папки.', 'media:error_creating_folder' => 'Ошибка создания папки', 'media:error_renaming_file' => 'Ошибка изменения имени файла.', 'media:filter_audio' => 'Музыка', 'media:filter_documents' => 'Документы', 'media:filter_everything' => 'Все файлы', 'media:filter_images' => 'Изображения', 'media:filter_video' => 'Видео', 'media:folder' => 'Папка', 'media:folder_name' => 'Название папки', 'media:folder_or_file_exist' => 'Папка или файл с таким именем уже существует.', 'media:folder_size_items' => 'объектов', 'media:height' => 'Высота', 'media:image_size' => 'Размер изображения:', 'media:insert' => 'Вставить', 'media:invalid_path' => 'Указан недопустимый путь к файлу: \':path\'.', 'media:last_modified' => 'Последнее изменение', 'media:library' => 'Библиотека', 'media:menu_label' => 'Медиафайлы', 'media:move' => 'Переместить', 'media:move_dest_src_match' => 'Пожалуйста, выберите другую папку.', 'media:move_destination' => 'Папка назначения', 'media:move_empty' => 'Пожалуйста, выберите объекты для перемещения.', 'media:move_popup_title' => 'Перемещение файлов или папок', 'media:multiple_selected' => 'Выбрано несколько объектов.', 'media:new_folder_title' => 'Новая папка', 'media:no_files_found' => 'Ни один из файлов не удовлетворяет вашему запросу.', 'media:nothing_selected' => 'Ничего не выбрано.', 'media:order_by' => 'Сортировать по', 'media:please_select_move_dest' => 'Пожалуйста, выберите папку назначения для перемещения.', 'media:public_url' => 'Публичный адрес', 'media:resize' => 'Изменение размера...', 'media:resize_image' => 'Изменение размера изображения', 'media:restore' => 'Отменить все изменения', 'media:return_to_parent' => 'Вернуться в родительскую папку', 'media:return_to_parent_label' => 'Подняться на уровень выше ..', 'media:search' => 'Поиск', 'media:select_single_image' => 'Пожалуйста, выберите одно изображение.', 'media:selected_size' => 'Выбрано:', 'media:selection_mode' => 'Режим выделения', 'media:selection_mode_fixed_ratio' => 'Фиксированное соотношение', 'media:selection_mode_fixed_size' => 'Фиксированный размер', 'media:selection_mode_normal' => 'Нормальный', 'media:selection_not_image' => 'Выбранный элемент не является изображением.', 'media:size' => 'Размер', 'media:thumbnail_error' => 'Ошибка создания миниатюры.', 'media:title' => 'Имя', 'media:upload' => 'Загрузить', 'media:uploading_complete' => 'Загрузка файлов завершена!', 'media:uploading_error' => 'Ошибка загрузки', 'media:uploading_file_num' => 'Загрузка файлов: :number', 'media:width' => 'Ширина', 'mediafinder:default_prompt' => 'Кликните на %s кнопку, чтобы найти медиафайл', 'mediamanager:insert_audio' => 'Вставить медиа-аудио', 'mediamanager:insert_image' => 'Вставить медиа-изображение', 'mediamanager:insert_link' => 'Вставить медиа-ссылку', 'mediamanager:insert_video' => 'Вставить медиа-видео', 'mediamanager:invalid_audio_empty_insert' => 'Пожалуйста, выберите аудио для вставки.', 'mediamanager:invalid_file_empty_insert' => 'Пожалуйста, выберите файл для вставки ссылки.', 'mediamanager:invalid_file_single_insert' => 'Пожалуйста, выберите один файл.', 'mediamanager:invalid_image_empty_insert' => 'Пожалуйста, выберите изображения для вставки.', 'mediamanager:invalid_video_empty_insert' => 'Пожалуйста, выберите видео для вставки.', 'model:invalid_class' => 'Модель :model используемая в :class не допустима, она должна наследовать класс \\Model.', 'model:mass_assignment_failed' => 'Массовое заполнение недоступно для атрибута модели \':attribute\'.', 'model:missing_id' => 'Нет идентификатора для поиска модели записи.', 'model:missing_method' => 'Модель \':class\' не содержит метод \':method\'.', 'model:missing_relation' => 'Модель \':class\' не содержит определения для \':relation\'', 'model:name' => 'Модель', 'model:not_found' => 'Модель \':class\' с идентификатором :id не найдена', 'myaccount:menu_description' => 'Управление личной информацией (имя, почта, пароль)', 'myaccount:menu_keywords' => 'безопасность логин', 'myaccount:menu_label' => 'Мой аккаунт', 'mysettings:menu_description' => 'Управление настройками учетной записи администратора.', 'mysettings:menu_label' => 'Мои настройки', 'page:access_denied:cms_link' => 'Перейти к CMS', 'page:access_denied:help' => 'У вас нет необходимых прав для просмотра этой страницы.', 'page:access_denied:label' => 'Доступ запрещен', 'page:custom_error:help' => 'К сожалению, страница не может быть отображена из-за ошибки.', 'page:custom_error:label' => 'Ошибка на странице', 'page:delete_confirm_multiple' => 'Вы действительно хотите удалить выделенные страницы?', 'page:delete_confirm_single' => 'Вы действительно хотите удалить эту страницу?', 'page:invalid_token:label' => 'Неверный токен безопасности', 'page:invalid_url' => 'Неверный формат адреса. Адрес страницы должен начинаться со знака / и может содержать цифры, латинские буквы, и следующие знаки: ._-[]:?|/+*^$', 'page:menu_label' => 'Страницы', 'page:new' => 'Новая страница', 'page:no_layout' => '-- без шаблона --', 'page:no_list_records' => 'Страницы не найдены', 'page:not_found:help' => 'Запрошенная страница не найдена.', 'page:not_found:label' => 'Страница не найдена', 'page:not_found_name' => 'Страница \':name\' не найдена', 'page:unsaved_label' => 'Несохранённая(е) страница(ы)', 'page:untitled' => 'Без названия', 'partial:delete_confirm_multiple' => 'Вы действительно хотите удалить выделенные фрагменты?', 'partial:delete_confirm_single' => 'Вы действительно хотите удалить этот фрагмент?', 'partial:invalid_name' => 'Ошибка в имени шаблона (partial) :name.', 'partial:menu_label' => 'Фрагменты', 'partial:new' => 'Новый фрагмент', 'partial:no_list_records' => 'Фрагменты не найдены', 'partial:not_found_name' => 'Не удалось найти шаблон (partial) с именем :name.', 'partial:unsaved_label' => 'Несохранённый(е) фрагмент(ы)', 'permissions:access_logs' => 'Просмотр системных логов', 'permissions:manage_assets' => 'Управление файлами', 'permissions:manage_branding' => 'Персонализация панели управления', 'permissions:manage_content' => 'Управление контентом', 'permissions:manage_editor' => 'Управление настройками редактора кода', 'permissions:manage_layouts' => 'Управление шаблонами', 'permissions:manage_mail_settings' => 'Управление настройками почты', 'permissions:manage_mail_templates' => 'Управление почтовыми шаблонами', 'permissions:manage_media' => 'Управление медиафайлами', 'permissions:manage_other_administrators' => 'Управление другими администраторами', 'permissions:manage_pages' => 'Управление страницами', 'permissions:manage_partials' => 'Управление фрагментами', 'permissions:manage_preferences' => 'Управление настройками бэкенда', 'permissions:manage_software_updates' => 'Управление обновлениями', 'permissions:manage_system_settings' => 'Настройка системных параметров', 'permissions:manage_themes' => 'Управление темами', 'permissions:name' => 'Управление CMS', 'permissions:view_the_dashboard' => 'Просмотр панели управления', 'plugin:label' => 'Плагин', 'plugin:name:help' => 'Введите название плагина со своим уникальным кодом. Например, RainLab.Blog', 'plugin:name:label' => 'Имя плагина', 'plugin:unnamed' => 'Безымянный плагин', 'plugins:disable_confirm' => 'Вы уверены?', 'plugins:disable_success' => 'Плагин успешно отключен.', 'plugins:disabled_help' => 'Отключенные плагины будут игнорироваться.', 'plugins:disabled_label' => 'Отключить', 'plugins:enable_or_disable' => 'Включить или выключить', 'plugins:enable_or_disable_title' => 'Включение или отключение плагинов', 'plugins:enable_success' => 'Плагин успешно включен.', 'plugins:frozen_help' => 'Плагины, которые были заморожены игнорируются в процессе обновления.', 'plugins:frozen_label' => 'Замораживание обновления', 'plugins:install' => 'Установить плагины', 'plugins:install_products' => 'Установка расширений', 'plugins:installed' => 'Установленные плагины', 'plugins:manage' => 'Управление плагинами', 'plugins:no_plugins' => 'Нет плагинов, установленных из магазина.', 'plugins:recommended' => 'Рекомендуется', 'plugins:refresh' => 'Обновить', 'plugins:refresh_confirm' => 'Вы уверены?', 'plugins:refresh_success' => 'Выбранные плагины успешно обновлены.', 'plugins:remove' => 'Удалить', 'plugins:remove_confirm' => 'Вы уверены, что хотите удалить этот плагин?', 'plugins:remove_success' => 'Выбранные плагины успешно удалены.', 'plugins:search' => 'поиск плагинов для установки...', 'plugins:selected_amount' => 'Выбрано плагинов: :amount', 'plugins:unknown_plugin' => 'Плагин был удален из файловой системы.', 'project:attach' => 'Подключить проект', 'project:detach' => 'Отсоединить проект', 'project:detach_confirm' => 'Вы уверены, что хотите отсоединить этот проект?', 'project:id:help' => 'Как найти идентификатор вашего проекта', 'project:id:label' => 'Идентификатор проекта', 'project:id:missing' => 'Пожалуйста, укажите идентификатор вашего проекта для использования.', 'project:name' => 'Проект', 'project:none' => 'Не обнаружено', 'project:owner_label' => 'Владелец', 'project:unbind_success' => 'Проект был успешно отсоединен.', 'relation:add' => 'Добавить', 'relation:add_a_new' => 'Добавить новый :name', 'relation:add_name' => 'Добавление :name', 'relation:add_selected' => 'Добавить выбранные', 'relation:cancel' => 'Отмена', 'relation:close' => 'Закрыть', 'relation:create' => 'Создать', 'relation:create_name' => 'Создание :name', 'relation:delete' => 'Удалить', 'relation:delete_confirm' => 'Вы уверены?', 'relation:delete_name' => 'Удаление :name', 'relation:help' => 'Нажмите на элемент, который нужно добавить', 'relation:invalid_action_multi' => 'Это действие не может быть выполнено для множественных отношений.', 'relation:invalid_action_single' => 'Это действие не может быть выполнено для особого отношения.', 'relation:link' => 'Ссылка', 'relation:link_a_new' => 'Новая ссылка :name', 'relation:link_name' => 'Соединение :name', 'relation:link_selected' => 'Связать выбранное', 'relation:missing_config' => 'Поведение отношения не имеет конфигурации для \':config\'.', 'relation:missing_definition' => 'Поведение отношения не содержит определения для \':field\'.', 'relation:missing_model' => 'Для поведения отношения, используемого в :class не определена модель.', 'relation:preview' => 'Предпросмотр', 'relation:preview_name' => 'Предпросмотр :name', 'relation:related_data' => 'Связанные :name данные', 'relation:remove' => 'Удалить', 'relation:remove_name' => 'Удаление :name', 'relation:unlink' => 'Отвязать', 'relation:unlink_confirm' => 'Вы уверены?', 'relation:unlink_name' => 'Разъединение :name', 'relation:update' => 'Обновить', 'relation:update_name' => 'Обновление :name', 'reorder:default_title' => 'Сортировать записи', 'reorder:no_records' => 'Нет доступных записей для сортировки.', 'request_log:count' => 'Счетчик', 'request_log:empty_link' => 'Очистить журнал запросов', 'request_log:empty_loading' => 'Очищение журнала запросов...', 'request_log:empty_success' => 'Успешное очищение журнала запросов.', 'request_log:hint' => 'В этом журнале отображается список запросов браузера, которые могут потребовать внимания. Например, если посетитель открывает несуществующую страницу, то в журнале создается запись с кодом статуса 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'ID записи', 'request_log:menu_description' => 'Просмотр неудачных или перенаправленных запросов.', 'request_log:menu_label' => 'Журнал запросов', 'request_log:referer' => 'Источник запроса', 'request_log:return_link' => 'Вернуться к журналу запросов', 'request_log:status_code' => 'Статус', 'request_log:url' => 'Адрес', 'server:connect_error' => 'Ошибка подключения к серверу.', 'server:file_corrupt' => 'Загруженный файл поврежден.', 'server:file_error' => 'Сервер не смог доставить пакет.', 'server:response_empty' => 'Пустой ответ сервера.', 'server:response_invalid' => 'Неверный ответ сервера.', 'server:response_not_found' => 'Сервер обновления не найден.', 'settings:menu_label' => 'Настройки', 'settings:missing_model' => 'На странице настроек отсутствует определение модели.', 'settings:not_found' => 'Не удается найти указанные настройки.', 'settings:return' => 'Вернуться к системным настройкам', 'settings:search' => 'Поиск', 'settings:update_success' => 'Настройки для :name успешно обновлены.', 'sidebar:add' => 'Добавить', 'sidebar:search' => 'Поиск...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Клиентское', 'system:categories:events' => 'События', 'system:categories:logs' => 'Логи', 'system:categories:mail' => 'Почта', 'system:categories:misc' => 'Разное', 'system:categories:my_settings' => 'Мои настройки', 'system:categories:shop' => 'Магазин', 'system:categories:social' => 'Социальное', 'system:categories:system' => 'Система', 'system:categories:team' => 'Команда', 'system:categories:users' => 'Пользователи', 'system:menu_label' => 'Система', 'system:name' => 'Система', 'template:invalid_type' => 'Неизвестный тип шаблона.', 'template:not_found' => 'Запрошенный шаблон не найден.', 'template:saved' => 'Шаблон был успешно сохранен.', 'theme:activate_button' => 'Активировать', 'theme:active:not_found' => 'Активная тема не найдена.', 'theme:active:not_set' => 'Активная тема не установлена.', 'theme:active_button' => 'Активировано', 'theme:author_label' => 'Автор', 'theme:author_placeholder' => 'Человек или название компании', 'theme:code_label' => 'Уникальный код', 'theme:code_placeholder' => 'Уникальный код темы, который используются для её распространения', 'theme:create_button' => 'Создать', 'theme:create_new_blank_theme' => 'Создать новый бланк темы', 'theme:create_theme_required_name' => 'Пожалуйста, укажите имя для темы.', 'theme:create_theme_success' => 'Создание темы успешно завершено!', 'theme:create_title' => 'Создать тему', 'theme:customize_button' => 'Настроить', 'theme:customize_theme' => 'Настройка Темы', 'theme:default_tab' => 'Свойства', 'theme:delete_active_theme_failed' => 'Невозможно удалить активный тему, попробуйте сделать другую тему активной.', 'theme:delete_button' => 'Удалить', 'theme:delete_confirm' => 'Вы уверены, что хотите удалить эту тему? Это действие необратимо!', 'theme:delete_theme_success' => 'Удаление темы успешно завершено!', 'theme:description_label' => 'Описание', 'theme:description_placeholder' => 'Описание темы', 'theme:dir_name_create_label' => 'Директория темы', 'theme:dir_name_invalid' => 'Имя может содержать только цифры, латинские буквы и следующие символы: _ -', 'theme:dir_name_label' => 'Имя директории', 'theme:dir_name_taken' => 'Указанный каталог уже существует.', 'theme:duplicate_button' => 'Дублировать', 'theme:duplicate_theme_success' => 'Дублирование успешно завершено!', 'theme:duplicate_title' => 'Дублировать тему', 'theme:edit:not_found' => 'Тема для редактирования не найдена.', 'theme:edit:not_match' => 'Объект, который вы пытаетесь открыть, не принадлежит редактируемой теме. Пожалуйста, обновите страницу.', 'theme:edit:not_set' => 'Тема для редактирования не установлена.', 'theme:edit_properties_button' => 'Редактирование свойств', 'theme:edit_properties_title' => 'Тема', 'theme:export_button' => 'Экспортировать', 'theme:export_folders_comment' => 'Пожалуйста, выберите директории темы, которые вы хотели бы экспортировать', 'theme:export_folders_label' => 'Директории', 'theme:export_title' => 'Экспортировать тему', 'theme:find_more_themes' => 'Найти еще темы', 'theme:homepage_label' => 'Домашняя страница', 'theme:homepage_placeholder' => 'Адрес сайта', 'theme:import_button' => 'Импортировать', 'theme:import_folders_comment' => 'Пожалуйста, выберите директории темы, которые вы хотели бы импортировать', 'theme:import_folders_label' => 'Директории', 'theme:import_overwrite_comment' => 'Отключите эту опцию, чтобы импортировать только новые файлы', 'theme:import_overwrite_label' => 'Перезаписывать существующие файлы', 'theme:import_theme_success' => 'Импортирование темы успешно завершено!', 'theme:import_title' => 'Импортировать тему', 'theme:import_uploaded_file' => 'Файл архива темы', 'theme:label' => 'Тема', 'theme:manage_button' => 'Управление', 'theme:manage_title' => 'Управление темой', 'theme:name:help' => 'Название темы по ее уникальному коду. Например, RainLab.Vanilla', 'theme:name:label' => 'Название темы', 'theme:name_create_placeholder' => 'Новое название темы', 'theme:name_label' => 'Название', 'theme:new_directory_name_comment' => 'Укажите новое имя каталога для дубликата темы.', 'theme:new_directory_name_label' => 'Директория темы', 'theme:not_found_name' => 'Тема \':name\' не найдена.', 'theme:return' => 'Вернуться к списку тем', 'theme:save_properties' => 'Сохранить свойства', 'theme:saving' => 'Сохранение темы...', 'theme:settings_menu' => 'Фронтенд темы', 'theme:settings_menu_description' => 'Просмотр списка установленных тем и выбор активной темы.', 'theme:theme_label' => 'Тема', 'theme:theme_title' => 'Темы', 'theme:unnamed' => 'Безымянная тема', 'themes:install' => 'Установить темы', 'themes:installed' => 'Установленные темы', 'themes:no_themes' => 'Нет тем, установленных из магазина.', 'themes:recommended' => 'Рекомендуется', 'themes:remove_confirm' => 'Вы уверены, что хотите удалить выбранную тему?', 'themes:search' => 'поиск тем для установки...', 'tooltips:preview_website' => 'Просмотр сайта', 'updates:check_label' => 'Проверить обновления ', 'updates:core_build' => 'Сборка :build', 'updates:core_build_help' => 'Последняя доступная сборка.', 'updates:core_current_build' => 'Текущая сборка', 'updates:core_downloading' => 'Загрузка файлов приложения', 'updates:core_extracting' => 'Распаковка файлов приложения', 'updates:details_author' => 'Автор', 'updates:details_current_version' => 'Текущая версия', 'updates:details_readme' => 'Документация', 'updates:details_readme_missing' => 'Документация не предоставлена.', 'updates:details_title' => 'Информация о плагине', 'updates:details_upgrades' => 'Инструкция по обновлению', 'updates:details_upgrades_missing' => 'Инструкция по обновлению не предоставлена.', 'updates:details_view_homepage' => 'Перейти к домашней странице', 'updates:disabled' => 'Отключено', 'updates:force_label' => 'Принудительно обновить', 'updates:found:help' => 'Выберите «Обновить», чтобы начать процесс обновления.', 'updates:found:label' => 'Доступны новые обновления!', 'updates:important_action:confirm' => 'Подтвердите обновление', 'updates:important_action:empty' => 'Выберите действие', 'updates:important_action:ignore' => 'Пропустить этот плагин (всегда)', 'updates:important_action:skip' => 'Пропустить этот плагин (только один раз)', 'updates:important_action_required' => 'Необходимое действие', 'updates:important_alert_text' => 'Некоторые обновления требуют вашего внимания.', 'updates:important_view_guide' => 'Посмотреть руководство по обновлению', 'updates:menu_description' => 'Обновление системы, управление и установка плагинов и тем.', 'updates:menu_label' => 'Обновления', 'updates:name' => 'Обновление ПО', 'updates:none:help' => 'Новые обновления не найдены.', 'updates:none:label' => 'Нет обновлений', 'updates:plugin_author' => 'Автор', 'updates:plugin_code' => 'Код', 'updates:plugin_current_version' => 'Текущая версия', 'updates:plugin_description' => 'Описание', 'updates:plugin_downloading' => 'Загрузка плагина: :name', 'updates:plugin_extracting' => 'Распаковка плагина: :name', 'updates:plugin_name' => 'Название', 'updates:plugin_version' => 'Версия', 'updates:plugin_version_none' => 'Новый плагин', 'updates:plugins' => 'Плагины', 'updates:retry_label' => 'Попробовать еще раз', 'updates:return_link' => 'Вернуться к системе обновлений', 'updates:theme_downloading' => 'Загрузка темы: :name', 'updates:theme_extracting' => 'Распаковка темы: :name', 'updates:theme_new_install' => 'Новая тема установлена.', 'updates:themes' => 'Темы', 'updates:title' => 'Менеджер обновлений', 'updates:update_completing' => 'Завершение процесса обновления', 'updates:update_failed_label' => 'Не удалось выполнить обновление', 'updates:update_label' => 'Обновить', 'updates:update_loading' => 'Поиск доступных обновлений...', 'updates:update_success' => 'Процесс обновления был успешно завершен.', 'user:account' => 'Аккаунт', 'user:allow' => 'Разрешить', 'user:avatar' => 'Аватар', 'user:delete_confirm' => 'Вы действительно хотите удалить этого администратора?', 'user:deny' => 'Запретить', 'user:email' => 'Почта', 'user:first_name' => 'Имя', 'user:full_name' => 'Полное имя', 'user:group:code_comment' => 'Введите уникальный код, если вы хотите открыть доступ к нему с помощью API.', 'user:group:code_field' => 'Уникальный код', 'user:group:delete_confirm' => 'Вы действительно хотите удалить эту группу администраторов?', 'user:group:description_field' => 'Описание', 'user:group:is_new_user_default_field' => 'Добавлять новых администраторов в эту группу по умолчанию.', 'user:group:list_title' => 'Управление группами', 'user:group:menu_label' => 'Группы', 'user:group:name' => 'Группы', 'user:group:name_field' => 'Название', 'user:group:new' => 'Добавить группу', 'user:group:return' => 'Вернуться к списку групп', 'user:group:users_count' => 'Пользователи', 'user:groups' => 'Группы', 'user:groups_comment' => 'Укажите, к какой группе должен принадлежать этот аккаунт.', 'user:inherit' => 'Наследовать', 'user:last_name' => 'Фамилия', 'user:list_title' => 'Управление администраторами', 'user:login' => 'Логин', 'user:menu_description' => 'Управление группой администраторов, создание групп и разрешений.', 'user:menu_label' => 'Администраторы', 'user:name' => 'Администратора', 'user:new' => 'Добавить администратора', 'user:password' => 'Пароль', 'user:password_confirmation' => 'Подтверждение пароля', 'user:permissions' => 'Полномочия', 'user:preferences:not_authenticated' => 'Невозможно загрузить или сохранить настройки для неавторизованного пользователя.', 'user:return' => 'Вернуться к списку администраторов', 'user:send_invite' => 'Отправить приглашение по электронной почте', 'user:send_invite_comment' => 'Отправляет приветственное сообщение, содержащее информацию о логине и пароле.', 'user:superuser' => 'Суперпользователь', 'user:superuser_comment' => 'Предоставляет этому аккаунту неограниченный доступ ко всем областям.', 'validation:accepted' => 'Вы должны принять :attribute.', 'validation:active_url' => 'Поле :attribute недействительный URL.', 'validation:after' => 'Поле :attribute должно быть датой после :date.', 'validation:alpha' => 'Поле :attribute может содержать только буквы.', 'validation:alpha_dash' => 'Поле :attribute может содержать только буквы, цифры и дефис.', 'validation:alpha_num' => 'Поле :attribute может содержать только буквы и цифры.', 'validation:array' => 'Поле :attribute должно быть массивом.', 'validation:before' => 'Поле :attribute должно быть датой перед :date.', 'validation:between:array' => 'Поле :attribute должно содержать :min - :max элементов.', 'validation:between:file' => 'Размер :attribute должен быть от :min до :max Килобайт.', 'validation:between:numeric' => 'Поле :attribute должно быть между :min и :max.', 'validation:between:string' => 'Длина :attribute должна быть от :min до :max символов.', 'validation:confirmed' => 'Поле :attribute не совпадает с подтверждением.', 'validation:date' => 'Поле :attribute не является датой.', 'validation:date_format' => 'Поле :attribute не соответствует формату :format.', 'validation:different' => 'Поля :attribute и :other должны различаться.', 'validation:digits' => 'Длина цифрового поля :attribute должна быть :digits.', 'validation:digits_between' => 'Длина цифрового поля :attribute должна быть между :min и :max.', 'validation:email' => 'Поле :attribute имеет ошибочный формат.', 'validation:exists' => 'Выбранное значение для :attribute уже существует.', 'validation:extensions' => 'Поле :attribute должно иметь одно из расширений: :values.', 'validation:image' => 'Поле :attribute должно быть изображением.', 'validation:in' => 'Выбранное значение для :attribute ошибочно.', 'validation:integer' => 'Поле :attribute должно быть целым числом.', 'validation:ip' => 'Поле :attribute должно быть действительным IP-адресом.', 'validation:max:array' => 'Поле :attribute должно содержать не более :max элементов.', 'validation:max:file' => 'Поле :attribute должно быть не больше :max Килобайт.', 'validation:max:numeric' => 'Поле :attribute должно быть не больше :max.', 'validation:max:string' => 'Поле :attribute должно быть не длиннее :max символов.', 'validation:mimes' => 'Поле :attribute должно быть файлом одного из типов: :values.', 'validation:min:array' => 'Поле :attribute должно содержать не менее :min элементов.', 'validation:min:file' => 'Поле :attribute должно быть не менее :min Килобайт.', 'validation:min:numeric' => 'Поле :attribute должно быть не менее :min.', 'validation:min:string' => 'Поле :attribute должно быть не короче :min символов.', 'validation:not_in' => 'Выбранное значение для :attribute ошибочно.', 'validation:numeric' => 'Поле :attribute должно быть числом.', 'validation:regex' => 'Поле :attribute имеет ошибочный формат.', 'validation:required' => 'Поле :attribute обязательно для заполнения.', 'validation:required_if' => 'Поле :attribute обязательно для заполнения, когда :other равно :value.', 'validation:required_with' => 'Поле :attribute обязательно для заполнения, когда :values указано.', 'validation:required_without' => 'Поле :attribute обязательно для заполнения, когда :values не указано.', 'validation:same' => 'Значение :attribute должно совпадать с :other.', 'validation:size:array' => 'Количество элементов в поле :attribute должно быть :size.', 'validation:size:file' => 'Поле :attribute должно быть :size Килобайт.', 'validation:size:numeric' => 'Поле :attribute должно быть :size.', 'validation:size:string' => 'Поле :attribute должно быть длиной :size символов.', 'validation:unique' => 'Такое значение поля :attribute уже существует.', 'validation:url' => 'Поле :attribute имеет ошибочный формат.', 'warnings:extension' => 'Расширение PHP :name не установлено. Установите эту библиотеку и активируйте расширение.', 'warnings:permissions' => 'Каталог :name или его подкаталоги недоступны для записи. Укажите соответствующие разрешения для веб-сервера.', 'warnings:tips' => 'Подсказки по конфигурации системы', 'warnings:tips_description' => 'Есть проблемы, на которые стоит обратить внимание, чтобы правильно настроить систему.', 'widget:not_bound' => 'Виджет с именем класса \':name\' не связан с контроллером.', 'widget:not_registered' => 'Класс виджета \':name\' не зарегистрирован.', 'zip:extract_failed' => 'Невозможно извлечь файл \':file\'.']);
示例#11
0
文件: lv.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Datums & Laiks', 'access_log:email' => 'Epasts', 'access_log:first_name' => 'Vārds', 'access_log:hint' => 'Šis žurnāls rāda sarakstu ar vieksmīgajiem ielogošanās mēģinājumiem no administrātoriem. Ieraksti tiek saglabāti :days dienas.', 'access_log:ip_address' => 'IP adrese', 'access_log:last_name' => 'Uzvārds', 'access_log:login' => 'Lietotājvārds', 'access_log:menu_description' => 'Rāda sarakstu ar veiksmīgajiem back-end autorizēšanās mēģinājumiem.', 'access_log:menu_label' => 'Autorizēšanās žurnāls', 'account:apply' => 'Apstiprināt', 'account:cancel' => 'Atcelt', 'account:delete' => 'Dzēst', 'account:email_placeholder' => 'epasts', 'account:enter_email' => 'Ievadiet epastu', 'account:enter_login' => 'Ievadiet lietotājvārdu', 'account:enter_new_password' => 'Ievadiet jauno paroli', 'account:forgot_password' => 'Aizmirsāt paroli?', 'account:login' => 'Login', 'account:login_placeholder' => 'vārds', 'account:ok' => 'OK', 'account:password_placeholder' => 'parole', 'account:password_reset' => 'Paroles attiestatīšana', 'account:reset' => 'Atiestatīt', 'account:reset_error' => 'Nederīgi paroles atiestatīšanas dati. Mēģiniet vēlreiz!', 'account:reset_fail' => 'Nebija iespējams atiestatīt paroli!', 'account:reset_success' => 'Jūsu parole tika veiksmīgi attiestatīta. Varat pieslēgties.', 'account:restore' => 'Atjaunot', 'account:restore_error' => 'Lietotājs ar norādīto lietotājvārdu neeksistē \':login\'', 'account:restore_success' => 'Epasts tika nosūtīts uz norādīto adresi ar paroles atiestatīšanas norādēm.', 'account:sign_out' => 'Izrakstīties', 'ajax_handler:invalid_name' => 'Nederīgs AJAX handler nosaukums: :name.', 'ajax_handler:not_found' => 'AJAX handler \':name\' netika atrasts.', 'app:name' => 'October CMS', 'app:tagline' => 'Atgriežamies pie pamatiem', 'asset:already_exists' => 'Fails vai mape ar šo nosaukumu jau eksistē', 'asset:create_directory' => 'Izveidot mapi', 'asset:create_file' => 'Izveidot failu', 'asset:delete' => 'Dzēst', 'asset:destination_not_found' => 'Mērķdirektorija nav atrasta', 'asset:directory_name' => 'Mapes nosaukums', 'asset:directory_popup_title' => 'Jauna mape', 'asset:drop_down_add_title' => 'Pievienot...', 'asset:drop_down_operation_title' => 'Daarbība...', 'asset:error_deleting_dir' => 'Kļūda dzēšot failu :name.', 'asset:error_deleting_dir_not_empty' => 'Kļūda dzēšot mapi :name. Mape nav tukša.', 'asset:error_deleting_directory' => 'Kļūda dzēšot oriģinālo mapi :dir', 'asset:error_deleting_file' => 'Kļūda dzēšot failu :name.', 'asset:error_moving_directory' => 'Kļūda pārvietojot mapi :dir', 'asset:error_moving_file' => 'Kļūda pārvietojot failu :file', 'asset:error_renaming' => 'Kļūda pārdēvējot failu vai mapi', 'asset:error_uploading_file' => 'Kļūda augšupielādējot failu \':name\': :error', 'asset:file_not_valid' => 'Fails nav derīgs', 'asset:invalid_name' => 'Nosaukums var saturēt tikai skaitļus, Latīņu burtus, atstarpes un sekojošos simbolus: ._-', 'asset:invalid_path' => 'Ceļš var saturēt tikai skaitļus, Latīņu burtus, atstarpes un sekojošos simbolus: ._-/', 'asset:menu_label' => 'Papildinājumi', 'asset:move' => 'Pārvietot', 'asset:move_button' => 'Pārvietot', 'asset:move_destination' => 'Mērķa mape', 'asset:move_please_select' => 'lūdzu izvēlieties', 'asset:move_popup_title' => 'Pārvietot papildinājumus', 'asset:name_cant_be_empty' => 'Nosaukums nevar būt tukšums', 'asset:new' => 'Jauns fails', 'asset:original_not_found' => 'Oriģinālais fails vai mape netika atrasts', 'asset:path' => 'Ceļš', 'asset:rename' => 'Pārsaukt', 'asset:rename_new_name' => 'Jauns nosaukums', 'asset:rename_popup_title' => 'Pārsaukt', 'asset:select' => 'Izvēlēties', 'asset:select_destination_dir' => 'Lūdzu izvēlieties mērķdirektoriju', 'asset:selected_files_not_found' => 'Izvēlētie faili nav atrasti', 'asset:too_large' => 'Augšupielādētais fails ir pārāk liels. Maksimālais atļautais faila izmērs :max_size', 'asset:type_not_allowed' => 'Tikai sekojošie failu tipi ir atļauti: :allowed_types', 'asset:unsaved_label' => 'Nesaglabāts papildinājums(i)', 'asset:upload_files' => 'Augšupielādēt failu(us)', 'auth:title' => 'Administrācijas vide', 'backend_preferences:locale' => 'Valoda', 'backend_preferences:locale_comment' => 'Izvēlieties kādu valodu izmantosiet.', 'backend_preferences:menu_description' => 'Pārvaldiet sava konta iestatījumus, piemēram, valodu.', 'backend_preferences:menu_label' => 'Back-end iestatījumi', 'behavior:missing_property' => 'Klasei :class jābūt definētai īpašumam $:property tiek lietota :behavior rīcībai.', 'branding:app_name' => 'Nosaukums', 'branding:app_name_description' => 'Šis nosaukums tiek rādīts augšpusē iekš back-end.', 'branding:app_tagline' => 'Apraksts', 'branding:app_tagline_description' => 'Šis apraksts tiek rādīts back-end auteintificēšanās lapā.', 'branding:brand' => 'Brends', 'branding:colors' => 'Krāsas', 'branding:custom_stylesheet' => 'Pielāgots css', 'branding:logo' => 'Logo', 'branding:logo_description' => 'Augšupielādējiet pielāgotu logo lai izmantotu back-end.', 'branding:menu_description' => 'Pielāgojiet administratīvo vidi, piemēram nosaukumu, krāsas un logo.', 'branding:menu_label' => 'Back-end pielāgošana', 'branding:primary_dark' => 'Primārā (Tumša)', 'branding:primary_light' => 'Primārā (Gaiša)', 'branding:secondary_dark' => 'Sekundārā (Tumša)', 'branding:secondary_light' => 'Sekundārā (Gaiša)', 'branding:styles' => 'Stili', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Tika veiksmīgi izdzēstas veidnes: :count.', 'cms_object:error_creating_directory' => 'Kļūda izveidojot direktoriju :name. Lūdzu pārbaudiet rakstīšanas tiesības.', 'cms_object:error_deleting' => 'Kūda dzēšot veidnes failu \':name\'. Lūdzu pārbaudiet rakstīšanas tiesības.', 'cms_object:error_saving' => 'Kļūda saglabājot failu \':name\'. Lūdzu pārbaudiet rakstīšanas tiesības.', 'cms_object:file_already_exists' => 'Fails \':name\' jau eksistē.', 'cms_object:file_name_required' => 'Faila nosaukuma lauks ir obligāts.', 'cms_object:invalid_file' => 'Nederīgs faila nosaukums: :name. Failu nosaukumi drīkst sastāvēt tikai no cipariem/burtiem, apakšsvītrām, šķērssvītrām un punktiem. Daži pareizi piemēri: lapa.htm, lapa, direktorija/lapa', 'cms_object:invalid_file_extension' => 'Nederīgs faila tips: :invalid. Atļautie tipi: :allowed.', 'cms_object:invalid_property' => 'Īpašuma nosaukums \':name\' nevar tikt iestatīts', 'combiner:not_found' => 'Kombināciju fails \':name\' netika atrasts.', 'component:alias' => 'Saīsinājums', 'component:alias_description' => 'Unikāls nosaukums šim komponentam kad tas tiek izmantots lapas vai izkārtojuma kodā.', 'component:invalid_request' => 'The template cannot be saved because of invalid component data.', 'component:menu_label' => 'Komponenti', 'component:method_not_found' => 'Komponents \':name\' nesatur metodi \':method\'.', 'component:no_description' => 'Apraksts nav norādīts', 'component:no_records' => 'Nav komponentu', 'component:not_found' => 'Komponents \':name\' netika atrasts.', 'component:unnamed' => 'Nenosaukts', 'component:validation_message' => 'Komponenta saīsinājums ir obligāts un var sastāvēt tikai no Latīņu simboliem, skaitļiem un apakšsvītrām. Saīsinājumiem vajadzētu sākties ar Latīņu simbolu.', 'config:not_found' => 'Nebija iespējams atrast konfigurācijas failu :file definēt iekš :location.', 'config:required' => 'Konfigurācijai, kura tiek lietotat :location ir jānorāda vērtība \':property\'.', 'content:delete_confirm_multiple' => 'Vai tiešām vēlaties izdzēst izbēlētos satura failus vai mapes?', 'content:delete_confirm_single' => 'Vai tiešām vēlaties dzēst šo satura failu?', 'content:menu_label' => 'Saturs', 'content:new' => 'Jauns satura fails', 'content:no_list_records' => 'Nav satura failu', 'content:not_found_name' => 'Satura fails \':name\' netika atrasts.', 'content:unsaved_label' => 'Nesaglabāts saturs', 'dashboard:add_widget' => 'Pievienot logrīku', 'dashboard:columns' => '{1} kolona|[2,Inf] kolonas', 'dashboard:full_width' => 'pilns platums', 'dashboard:menu_label' => 'Mērinstrumentu panelis', 'dashboard:status:maintenance' => 'atkopšana', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} atjauninājumi pieejami!|{1} atjauninājums pieejams!|[2,Inf] atjauninājumi pieejami!', 'dashboard:status:widget_title_default' => 'Sistēmas statuss', 'dashboard:widget_columns_description' => 'Logrīka platums, skaitlis starp 1 un 10.', 'dashboard:widget_columns_error' => 'Lūdzu ievadiet logrīka platumu kā skaitli starp 1 un 10.', 'dashboard:widget_columns_label' => 'Platums :columns', 'dashboard:widget_inspector_description' => 'Konfigurējiet logrīku', 'dashboard:widget_inspector_title' => 'Logrīka konfigurācija', 'dashboard:widget_label' => 'Logrīks', 'dashboard:widget_new_row_description' => 'Novietot logrīku jaunā rindā.', 'dashboard:widget_new_row_label' => 'Piespiedu jauna rinda', 'dashboard:widget_title_error' => 'Logrīka virsraksts ir obligāts.', 'dashboard:widget_title_label' => 'Logrīka virsraksts', 'dashboard:widget_width' => 'Platums', 'directory:create_fail' => 'Nevar izveidot mapi: :name', 'editor:auto_closing' => 'Automātiski aizvērt birkas un īpašos simbolus', 'editor:code' => 'Code', 'editor:code_folding' => 'Koda savilkšana', 'editor:content' => 'Saturs', 'editor:description' => 'Apraksts', 'editor:enter_fullscreen' => 'Pilnkekrāna režīms', 'editor:exit_fullscreen' => 'Iziet no pilnekrāna režīma', 'editor:filename' => 'Faila nosaukums', 'editor:font_size' => 'Fonta izmērs', 'editor:hidden' => 'Paslēpt', 'editor:hidden_comment' => 'Paslēptās lapas ir pieejamas tikai autorizētiem back-end lietotājiem.', 'editor:highlight_active_line' => 'Iekrāsot aktīvo līniju', 'editor:layout' => 'Izkārtojums', 'editor:markup' => 'Markup', 'editor:menu_description' => 'Pielāgojiet sava kodu labotāja iestatījumus, tādus kā fontu izmēru un krāsu shēmu.', 'editor:menu_label' => 'Koda labotāja iestatījumi', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta Apraksts', 'editor:meta_title' => 'Meta Virsraksts', 'editor:new_title' => 'Jauns lapas virsraksts', 'editor:preview' => 'Priekšskatījums', 'editor:settings' => 'Iestatījumi', 'editor:show_gutter' => 'Rādīt līniju numurus', 'editor:show_invisibles' => 'Rādīt slēptos simbolus', 'editor:tab_size' => 'Tabulācijas platums', 'editor:theme' => 'Krāsu shēma', 'editor:title' => 'Virsraksts', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Kārtot lietojot Tab', 'editor:word_wrap' => 'Vārdu aplaušana', 'event_log:created_at' => 'Datums & Laiks', 'event_log:empty_link' => 'Iztukšot notikumu žurnālu', 'event_log:empty_loading' => 'Iztukšojam notikumu žurnālu...', 'event_log:empty_success' => 'Notikumu žurnāls veiksmīgi notīrīts.', 'event_log:hint' => 'Šis žurnāls attēlo sarakstu ar potenciālajām kļūdām, kuras notikušas, tai skaitā izņēmumus un atkļūdošanas informāciju.', 'event_log:id' => 'ID', 'event_log:id_label' => 'Notikuma ID', 'event_log:level' => 'Līmenis', 'event_log:menu_description' => 'Rāda sistēmas žurnāla ziņojumus ar notikuma laiku un detaļām.', 'event_log:menu_label' => 'Notikumu žurnāls', 'event_log:message' => 'Ziņojums', 'event_log:return_link' => 'Atgriezties notikumu žurnālā', 'field:invalid_type' => 'Nederīgs lauka tips :type.', 'field:options_method_not_exists' => 'Moduļa klasei :model jādefinē metodi :method() atgrieztās vērtības \':field\' formas laukam.', 'file:create_fail' => 'Nevar izveidot failu: :name', 'fileupload:attachment' => 'Pielikums', 'fileupload:attachment_url' => 'Pielikuma URL', 'fileupload:default_prompt' => 'Uzklikšķiniet uz %s vai nesiet failu šeit', 'fileupload:description_label' => 'Apraksts', 'fileupload:help' => 'Pievienojiet virsrakstu un aprakstu šim pielikumam.', 'fileupload:remove_confirm' => 'Vai esat pārliecināts?', 'fileupload:remove_file' => 'Noņemt failu', 'fileupload:title_label' => 'Vrisraksts', 'fileupload:upload_error' => 'Augšupielādes kļūda', 'fileupload:upload_file' => 'Augšupielādēt failu', 'filter:all' => 'visi', 'form:action_confirm' => 'Vai esat pārliecināts?', 'form:add' => 'Pievienot', 'form:apply' => 'Apstiprināt', 'form:behavior_not_ready' => 'Forma nav tikusi inicializēta, pārbaudiet vai izsaucāt initForm() savā kontrolierī.', 'form:cancel' => 'Atcelt', 'form:close' => 'Aizvērt', 'form:complete' => 'Pabeigt', 'form:concurrency_file_changed_description' => 'Fails, kuru labojat ir ticis modificēts no cita lietotāja puses. Jūs varat pārlādēt failu un zaudēt savas izmaiņas vai arī pārrakstīt esošo failu uz diska.', 'form:concurrency_file_changed_title' => 'Fails tika modificēts', 'form:confirm' => 'Apstiprināt', 'form:confirm_tab_close' => 'Vai tiešām vēlaties aizvērt šo cilni? Nesaglabātās izmaiņas būs zudušas.', 'form:create' => 'Izveidot', 'form:create_and_close' => 'Izveidot un aizvērt', 'form:create_success' => ':name tika veiksmīgi izveidots', 'form:create_title' => 'Jauns :name', 'form:creating' => 'Izveidojam...', 'form:creating_name' => 'Izveidojam :name...', 'form:delete' => 'Dzēst', 'form:delete_row' => 'Dzēst rindu', 'form:delete_success' => ':name tika veiksmīgi izdzēsts', 'form:deleting' => 'Dzēšam...', 'form:deleting_name' => 'Dzēšam :name...', 'form:field_off' => 'Izsl.', 'form:field_on' => 'Iesl.', 'form:insert_row' => 'Ievietot rindu', 'form:missing_definition' => 'Forma nesatur \':field\'.', 'form:missing_id' => 'Formas ieraksta ID netika norādīts.', 'form:missing_model' => 'Formai iekš :class nav definēts modulis.', 'form:not_found' => 'Formas ieraksts ar ID :id netika atrasts.', 'form:ok' => 'OK', 'form:or' => 'vai', 'form:preview_no_files_message' => 'Faili nav augšupielādēti', 'form:preview_no_record_message' => 'Nav izvēlētu ierakstu.', 'form:preview_title' => 'Priekšskatīt :name', 'form:reload' => 'Pārlādēt', 'form:reset_default' => 'Atiestatīt uz noklusējumu', 'form:resetting' => 'Atiestatam', 'form:resetting_name' => 'Atiestatam :name', 'form:save' => 'Saglabāt', 'form:save_and_close' => 'Saglabāt un aizvērt', 'form:saving' => 'Saglabājam...', 'form:saving_name' => 'Saglabājam :name...', 'form:select' => 'Izvēlēties', 'form:select_all' => 'visus', 'form:select_none' => 'nevienu', 'form:select_placeholder' => 'lūdzu izvēlieties', 'form:undefined_tab' => 'Izvēles', 'form:update_success' => ':name tika veiksmīgi atjaunināts', 'form:update_title' => 'Labot :name', 'install:install_completing' => 'Pabeidzam instalācijas procesu', 'install:install_success' => 'Spraudnis tika veiksmīgi instalēts.', 'install:missing_plugin_name' => 'Lūdzu norādiet Spraudņa nosaukumu, kuru instalēt.', 'install:missing_theme_name' => 'Lūdzu norādiet Tēmas nosaukumu, kuru instalēt.', 'install:plugin_label' => 'Instalēt Spraudni', 'install:project_label' => 'Pievienot projektam', 'install:theme_label' => 'Instalēt Tēmu', 'layout:delete_confirm_multiple' => 'Vai tiešām vēlaties izdzēst izvēlētos izkārtojumus?', 'layout:delete_confirm_single' => 'Vai tiešām vēlaties dzēst šo izkārtojumu?', 'layout:menu_label' => 'Izkārtojumi', 'layout:new' => 'Jauns izkārtojums', 'layout:no_list_records' => 'Nav izkārtojumu', 'layout:not_found_name' => 'Izkārtojums \':name\' netika atrasts', 'layout:unsaved_label' => 'Nesaglabāts izkārtojums(i)', 'list:behavior_not_ready' => 'Saraksts nav inicializēts, pārbaudiet vai saucāt makeLists() jūsu kontrolierī.', 'list:default_title' => 'Saraksts', 'list:delete_selected' => 'Dzēst izvēlētos', 'list:delete_selected_confirm' => 'Dzēst izvēlētos ierakstus?', 'list:delete_selected_empty' => 'Dzēšanai nav izvēlēts neviens ieraksts.', 'list:delete_selected_success' => 'Izvēlētie ieraksti veiksmīgi dzēsti.', 'list:invalid_column_datetime' => 'Kolonas vērtība \':column\' nav DateTime objekts, vai esat definējis $dates savā modulī?', 'list:loading' => 'Ielādējam...', 'list:missing_column' => 'Nav kolonu definīciju :columns.', 'list:missing_columns' => 'Sarakstam definētam :class nav definētas kolonas.', 'list:missing_definition' => 'Sarakstā nav kolonas \':field\'.', 'list:missing_model' => 'Saraksta uzvedībai definētai :class nav definēts modulis.', 'list:next_page' => 'Nākamā lapa', 'list:no_records' => 'Nav ierakstu šajā skatā.', 'list:pagination' => 'Attēloti ieraksti: :from-:to no :total', 'list:prev_page' => 'Iepriekšējā lapa', 'list:records_per_page' => 'Ieraksti uz lapu', 'list:records_per_page_help' => 'Izvēlieties cik ierakstus rādīt vienā lapā. Ņemiet vēra, ka daudz ierakstu var bremzēt lapas ielādi.', 'list:search_prompt' => 'Meklēt...', 'list:setup_help' => 'Izmantojie rūtiņas lai izvēlētos kolonas kuras vēlaties redzēt sarakstā. Varat mainīt kolonu pozīcaijas pārnesot tās augšup vai lejup.', 'list:setup_title' => 'Saraksta iestatīšana', 'locale:cs' => 'Czech', 'locale:de' => 'German', 'locale:en' => 'English', 'locale:es' => 'Spanish', 'locale:es-ar' => 'Spanish (Argentina)', 'locale:fa' => 'Persian', 'locale:fr' => 'French', 'locale:hu' => 'Hungarian', 'locale:id' => 'Bahasa Indonesia', 'locale:it' => 'Italian', 'locale:ja' => 'Japanese', 'locale:lv' => 'Latvian', 'locale:nb-no' => 'Norwegian (Bokmål)', 'locale:nl' => 'Dutch', 'locale:pl' => 'Polish', 'locale:pt-br' => 'Portuguese (Brazil)', 'locale:ro' => 'Romanian', 'locale:ru' => 'Russian', 'locale:sk' => 'Slovak (Slovakia)', 'locale:sv' => 'Swedish', 'locale:tr' => 'Turkish', 'locale:zh-cn' => 'Chinese (China)', 'locale:zh-tw' => 'Chinese (Taiwan)', 'mail:drivers_hint_content' => 'Šai pasta metodei nepieciešams spraudnis \\":plugin\\" instalējiet to pirms pasta sūtīšanas.', 'mail:drivers_hint_header' => 'Dziņi nav instalēti', 'mail:general' => 'Galvenie', 'mail:log_file' => 'Žurnāla fails', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun Domēns', 'mail:mailgun_domain_comment' => 'Lūdzu norādiet Mailgun domēna nosaukumu.', 'mail:mailgun_secret' => 'Mailgun Secret', 'mail:mailgun_secret_comment' => 'Ievadiet savu Mailgun API kodu.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill Secret', 'mail:mandrill_secret_comment' => 'Ievadiet savu Mandrill API kodu.', 'mail:menu_description' => 'Pārvaldīt epasta konfigurāciju.', 'mail:menu_label' => 'Epasta konfigurācija', 'mail:method' => 'Epasta metode', 'mail:php_mail' => 'PHP pasts', 'mail:sender_email' => 'Sūtītāja Epasts', 'mail:sender_name' => 'Sūtītāja vārds', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Sendmail Ceļs', 'mail:sendmail_path_comment' => 'Lūdzu norādiet ceļu uz sendmail programmu.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'SMTP Adrese', 'mail:smtp_authorization' => 'Nepieciešama SMTP autorizācija', 'mail:smtp_authorization_comment' => 'Lietojiet šo aili,ja SMTP serverim nepieciešama autorizācija.', 'mail:smtp_password' => 'Parole', 'mail:smtp_port' => 'SMTP Ports', 'mail:smtp_ssl' => 'Nepieciešams SSL savienojums', 'mail:smtp_username' => 'Lietotājvārds', 'mail_templates:code' => 'Kods', 'mail_templates:code_comment' => 'Unikāls kods, lai identificētu šo veidni', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Tikai teksts', 'mail_templates:description' => 'Apraksts', 'mail_templates:layout' => 'Izkārtojums', 'mail_templates:layouts' => 'Izkārtojumi', 'mail_templates:menu_description' => 'Pielāgojiet Epasta veidnes, kuras tiek sūtītas lietotājiem un administrātoriem, pārvldiet Epastu izkārtojumus.', 'mail_templates:menu_label' => 'Epasta veidnes', 'mail_templates:menu_layouts_label' => 'Epasta izkārtojumi', 'mail_templates:name' => 'Nosaukums', 'mail_templates:name_comment' => 'Unikāls nosaukums, lai identificētu šo veidni', 'mail_templates:new_layout' => 'Jauns Izkārtojumus', 'mail_templates:new_template' => 'Jauna Veidne', 'mail_templates:return' => 'Atgriezties veidņu sarakstā', 'mail_templates:subject' => 'Temats', 'mail_templates:subject_comment' => 'Epasta vēstules temats', 'mail_templates:template' => 'Veidne', 'mail_templates:templates' => 'Veidnes', 'mail_templates:test_send' => 'Sūtīt testa vēstuli', 'mail_templates:test_success' => 'Testa vēstule tika veiksmīgi nosūtīta.', 'maintenance:is_enabled' => 'Iespējot apkopes režīmu', 'maintenance:is_enabled_comment' => 'Kad aktivizēts mājaslapas apmeklētāji redzēs zemāk izvēlēto lapu.', 'maintenance:settings_menu' => 'Apkopes režīms', 'maintenance:settings_menu_description' => 'Konfigurējiet apkopes režīma lapu un pielāgojiet iestatījumus.', 'media:add_folder' => 'Pievienot mapi', 'media:click_here' => 'Spiest šeit', 'media:crop_and_insert' => 'Apgriezt un Ievietot', 'media:delete' => 'Dzēst', 'media:delete_confirm' => 'Vai tiešām vēlaties izdzēst izvēlēto objektu(us)?', 'media:delete_empty' => 'Lūdzu izvēlaties objektus, kurus dzēst.', 'media:display' => 'Attēlot', 'media:empty_library' => 'Multimēdijas bibliotēka ir tukša. Augšupielādējiet failus vai izveidojat mapes, lai sāktu.', 'media:error_creating_folder' => 'Kļūda izveidojot mapi', 'media:error_renaming_file' => 'Kļūda pārdēvējot objektu.', 'media:filter_audio' => 'Audio', 'media:filter_documents' => 'Dokumenti', 'media:filter_everything' => 'Viss', 'media:filter_images' => 'Attēli', 'media:filter_video' => 'Video', 'media:folder' => 'Mape', 'media:folder_name' => 'Mapes nosaukums', 'media:folder_or_file_exist' => 'Mape vai fails ar izvēlēto nosaukumu jau eksistē.', 'media:folder_size_items' => 'objekti(s)', 'media:height' => 'Augstums', 'media:image_size' => 'Attēla izmērs:', 'media:insert' => 'Ievietot', 'media:invalid_path' => 'Norādīts nederīgs ceļš līdz failam: \':path\'.', 'media:last_modified' => 'Pēdējoreiz modificēts', 'media:library' => 'Bibliotēka', 'media:menu_label' => 'Multimēdija', 'media:move' => 'Pārvietot', 'media:move_dest_src_match' => 'Lūdzu izvēlieties citu mērķdirektoriju.', 'media:move_destination' => 'Mērķdirektorija', 'media:move_empty' => 'Izvēlēties objektus, kurus pārvietot.', 'media:move_popup_title' => 'Pārvietot failus vai mapes', 'media:multiple_selected' => 'Vairāki izvēlēti objekti.', 'media:new_folder_title' => 'Jauna mape', 'media:no_files_found' => 'Jūsu pieprasītie faili netika atrasti.', 'media:nothing_selected' => 'Nekas nav izvēlēts.', 'media:order_by' => 'Kārtot pēc', 'media:please_select_move_dest' => 'Lūdzu izvēlieties mērķdirektoriju.', 'media:public_url' => 'Publiskā URL', 'media:resize' => 'Mērogot...', 'media:resize_image' => 'Mērogot attēlu', 'media:restore' => 'Atcelt visas izmaiņas', 'media:return_to_parent' => 'Atgriezties vecākmapē', 'media:return_to_parent_label' => 'Doties augšup ..', 'media:search' => 'Meklēt', 'media:select_single_image' => 'Lūdzu izvēlieties vienu attēlu.', 'media:selected_size' => 'Izvēlēts:', 'media:selection_mode' => 'Iezīmēšanas režīms', 'media:selection_mode_fixed_ratio' => 'Fiksēta attiecība', 'media:selection_mode_fixed_size' => 'Fiksēts izmērs', 'media:selection_mode_normal' => 'Normāls', 'media:selection_not_image' => 'Izvēlētais objekts nav attēls.', 'media:size' => 'Izmērs', 'media:thumbnail_error' => 'Kļūda ģenerējot priekšskatījumu.', 'media:title' => 'Virsraksts', 'media:upload' => 'Augšupielādēt', 'media:uploading_complete' => 'Augšupielāde pabeigta', 'media:uploading_file_num' => 'Augšupielādējam :number failu(us)...', 'media:width' => 'Platums', 'mediafinder:default_prompt' => 'Klikšķiniet uz %s pogas, lai atrastu multividi', 'model:invalid_class' => 'Modulis :model lietots :class ir nederīgs, tam jābūt mantotam no \\Moduļa klases.', 'model:mass_assignment_failed' => 'Masveida saistīšana neizdevās Moduļa atribūtam \':attribute\'.', 'model:missing_id' => 'Nav ticis norādīts ID, lai meklētu ierakstu.', 'model:missing_method' => 'Modulis \':class\' nesatur metodi \':method\'.', 'model:missing_relation' => 'Modulis \':class\' nesniedz informāciju par \':relation\'.', 'model:name' => 'Modulis', 'model:not_found' => 'Modulis \':class\' ar ID :id netika atrasts', 'myaccount:menu_description' => 'Atjaunojiet sava konta detaļas, piemēram, vārdu, epastu un paroli.', 'myaccount:menu_keywords' => 'drošība login', 'myaccount:menu_label' => 'Mans konts', 'mysettings:menu_description' => 'Iestatījumi saistībā ar jūsu administrātora kontu', 'mysettings:menu_label' => 'Mani Iestatījumi', 'page:access_denied:cms_link' => 'Atgriezties back-end', 'page:access_denied:help' => 'Jums nav piekļuves tiesību, lai skatītu šo lapu.', 'page:access_denied:label' => 'Piekļuve liegta', 'page:custom_error:help' => 'Mums žēl, bet kaut kas nogāja greizi un lapa nevar tikt attēlota.', 'page:custom_error:label' => 'Lapas kļūda', 'page:delete_confirm_multiple' => 'Vai tiešām vēlaties idzēst izvēlētās lapas?', 'page:delete_confirm_single' => 'Vai tiešām vēlaties dzēst šo lapu?', 'page:invalid_token:label' => 'Nederīga drošības atslēga', 'page:invalid_url' => 'Nederīgs URL formāts. URL vajadzētu sākties ar šķērssvītras simbolu un tā var saturēt skaitļus, Latīņu burtus un sekojošos simbolus: ._-[]:?|/+*^$', 'page:menu_label' => 'Lapas', 'page:new' => 'Jauna lapa', 'page:no_layout' => '-- bez izkārtojuma --', 'page:no_list_records' => 'Nav lapu', 'page:not_found:help' => 'Pieprasītā lapa nav atrasta.', 'page:not_found:label' => 'Lapa nav atrasta', 'page:not_found_name' => 'Lapa \':name\' netika atrasta', 'page:unsaved_label' => 'Nesaglabāta lapa(s)', 'page:untitled' => 'Bez nosaukuma', 'partial:delete_confirm_multiple' => 'Vai tiešām vēlaties izdzēst izvēlētās daļas?', 'partial:delete_confirm_single' => 'Vai tiešām vēlaties dzēst šo daļu?', 'partial:invalid_name' => 'Nederīgs daļas nosaukums: :name.', 'partial:menu_label' => 'Daļas', 'partial:new' => 'Jauna daļa', 'partial:no_list_records' => 'Daļas nav atrastas', 'partial:not_found_name' => 'Daļa \':name\' nav atrasta.', 'partial:unsaved_label' => 'Nesaglabāta daļa(s)', 'permissions:access_logs' => 'Skatīt sistēmas žurnālus', 'permissions:manage_assets' => 'Pārvaldīt papildinājumus', 'permissions:manage_branding' => 'Pielāgot back-end', 'permissions:manage_content' => 'Pārvaldīt saturu', 'permissions:manage_layouts' => 'Pārvaldīt izkārtojumus', 'permissions:manage_mail_settings' => 'Pārvaldīt epasta iestatījumus', 'permissions:manage_mail_templates' => 'Pārvaldīt epasta veidnes', 'permissions:manage_media' => 'Pārvaldīt multividi', 'permissions:manage_other_administrators' => 'Pārvaldīt citus administrātorus', 'permissions:manage_pages' => 'Pārvaldīt lapas', 'permissions:manage_partials' => 'Pārvaldīt daļas', 'permissions:manage_software_updates' => 'Pārvaldīt programmatūras atjauninājumus', 'permissions:manage_system_settings' => 'Pārvaldīt sistēmas iestatījumus', 'permissions:manage_themes' => 'Pārvaldīt tēmas', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => 'Skatīt mērinstrumentu paneli', 'plugin:label' => 'Spraudnis', 'plugin:name:help' => 'Norādiet spraudņa unikālo kodu. Piemēram, RainLab.Blog', 'plugin:name:label' => 'Spraudņa nosaukums', 'plugin:unnamed' => 'Nenosaukts spraudnis', 'plugins:disable_confirm' => 'Vai esat pārliecināts?', 'plugins:disable_success' => 'Šie spraudņi tika veiksmīgi atspējoti.', 'plugins:disabled_help' => 'Atspējotie spraudņi tiek ignorēti.', 'plugins:disabled_label' => 'Atspējots', 'plugins:enable_or_disable' => 'Iespējot vai atspējot', 'plugins:enable_or_disable_title' => 'Iespējot vai Atspējot Spraudņus', 'plugins:enable_success' => 'Šie spraudņi tika veiksmīgi iespējoti.', 'plugins:frozen_help' => 'Spraudņi, kuri ir iesaldēti tiks ignorēti atjaunināšanas procesā.', 'plugins:frozen_label' => 'Iesaldēt spraudņus', 'plugins:install' => 'Instalēt spraudņus', 'plugins:install_products' => 'Instalēt produktus', 'plugins:installed' => 'Instalētie spraudņi', 'plugins:manage' => 'Pārvaldīt spraudņus', 'plugins:no_plugins' => 'Nav spraudņi, kuri būtu instalēti no tirgus plača.', 'plugins:recommended' => 'Rekomendētie', 'plugins:refresh' => 'Atsvaidzināt', 'plugins:refresh_confirm' => 'Vai esat pārliecināts?', 'plugins:refresh_success' => 'Šie sparudņi tika veiksmīgi atsvaidzināti sistēmā.', 'plugins:remove' => 'Noņemt', 'plugins:remove_confirm' => 'Vai esat pārliecināts, ka vēlaties noņemt šo sparudni?', 'plugins:remove_success' => 'Šie spraudņi tika veiksmīgi noņemti no sistēmas.', 'plugins:search' => 'meklēt spraudņus, lai instalētu...', 'plugins:selected_amount' => 'Izvēlēti spraudņi: :amount', 'plugins:unknown_plugin' => 'Spraudņi tika noņemti no failu sistēmas.', 'project:attach' => 'Pievienot projektu', 'project:detach' => 'Atvienot projektu', 'project:detach_confirm' => 'Vai esat pārliecināts, ka vēlaties atvienot šo projektu?', 'project:id:help' => 'Kā atrast Projekta ID', 'project:id:label' => 'Projekta ID', 'project:id:missing' => 'Lūdzu norādiet Projekta ID, kuru lietot.', 'project:name' => 'Projekts', 'project:none' => 'Nekas', 'project:owner_label' => 'Īpašnieks', 'project:unbind_success' => 'Projekts tika veiksmīgi atvienots.', 'relation:add' => 'Pievienot', 'relation:add_a_new' => 'Pievienot jaunu :name', 'relation:add_name' => 'Pievienot :name', 'relation:add_selected' => 'Pievienot izvēlētos', 'relation:cancel' => 'Atcelt', 'relation:close' => 'Aizvērt', 'relation:create' => 'Izveidot', 'relation:create_name' => 'Izveidot :name', 'relation:delete' => 'Dzēst', 'relation:delete_confirm' => 'Vai esat pārliecināts?', 'relation:delete_name' => 'Dzēst :name', 'relation:help' => 'Spiediet uz vienuma, lai pievienotu', 'relation:invalid_action_multi' => 'Šī darbība nevar tikt veikta ar daudzmoduļu relāciju.', 'relation:invalid_action_single' => 'Šī darbība nevar tikt veikta ar vienmoduļa relāciju.', 'relation:link' => 'Saistīt', 'relation:link_a_new' => 'Saistīt jaunu :name', 'relation:link_name' => 'Saistīt :name', 'relation:link_selected' => 'Saite izvēlēta', 'relation:missing_config' => 'Relācijām nav norādīta nekāda konfigurācija \':config\'.', 'relation:missing_definition' => 'Relācijām nav definēts lauks \':field\'.', 'relation:missing_model' => 'Relācijās izmantotajai klasei :class nav moduļa definīcijas.', 'relation:preview' => 'Priekšskatīt', 'relation:preview_name' => 'Priekšskatīt :name', 'relation:related_data' => 'Saistītie :name dati', 'relation:remove' => 'Noņemt', 'relation:remove_name' => 'Noņemt :name', 'relation:unlink' => 'Atsaistīt', 'relation:unlink_confirm' => 'Vai esat pārliecināts?', 'relation:unlink_name' => 'Atsaistīt :name', 'relation:update' => 'Atjaunot', 'relation:update_name' => 'Atjaunot :name', 'reorder:default_title' => 'Pārkārtot ierakstus', 'reorder:no_records' => 'Nav pieejami ieraksti, ko pārkārtot.', 'request_log:count' => 'Skaits', 'request_log:empty_link' => 'Iztukšot pieprasījumu žurnālu', 'request_log:empty_loading' => 'Iztukšojam pieprasījumu žurnālu...', 'request_log:empty_success' => 'Veiksmīgi notīrījām pieprasījumu žurnālu.', 'request_log:hint' => 'Šis žurnāls attēlo sarakstu ar pārlūkprogrammas pieprasījumiem, kuriem vajadzētu pievērst uzmanību. Piemēram, ja apmeklētājs pieprasa CMS lapu, kura nav pieejama, tiek veikts ieraksts ar kodu 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'Žurnāla ID', 'request_log:menu_description' => 'Rāda sliktus vai pārsūtījuma pieprasījumus, kā Lapa netika atrasta (404).', 'request_log:menu_label' => 'Pieprasījumu žurnāls', 'request_log:referer' => 'Pārsūtītājs', 'request_log:return_link' => 'Atgriezties notikumu žurnālā', 'request_log:status_code' => 'Statuss', 'request_log:url' => 'URL', 'server:connect_error' => 'Kļūda savienojoties ar serveri.', 'server:file_corrupt' => 'Fails no servera ir bojāts.', 'server:file_error' => 'Neizdevās saņemt failus no servera.', 'server:response_empty' => 'Tukša atbilde no autjauninājumu servera.', 'server:response_invalid' => 'Nederīga atbilde no autjauninājumu servera.', 'server:response_not_found' => 'Atjauninājumu serveris netika atrasts.', 'settings:menu_label' => 'Iestatījumi', 'settings:missing_model' => 'Iestatījumu lapa nav norādīta Moduļa definīcijā.', 'settings:not_found' => 'Nebija iespējams atrast norādītos iestatījumus.', 'settings:return' => 'Atgriezties sistēmas iestatījumos', 'settings:search' => 'Meklēt', 'settings:update_success' => 'Iestatījumi priekš :name tika veiksmīgi atjaunināti.', 'sidebar:add' => 'Pievienot', 'sidebar:search' => 'Meklēt...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Klienti', 'system:categories:events' => 'Notikumi', 'system:categories:logs' => 'Žurnāli', 'system:categories:mail' => 'Epasts', 'system:categories:misc' => 'Izvēles', 'system:categories:my_settings' => 'Mani iestatījumi', 'system:categories:shop' => 'Veikals', 'system:categories:social' => 'Sociāli', 'system:categories:system' => 'Sistēma', 'system:categories:team' => 'Komanda', 'system:categories:users' => 'Lietotāji', 'system:menu_label' => 'Sistēma', 'system:name' => 'Sistēma', 'template:invalid_type' => 'Nezināms veidnes tips.', 'template:not_found' => 'Pieprasītā veidne nav atrasta.', 'template:saved' => 'Fails tika veiksmīgi saglabāts.', 'theme:activate_button' => 'Aktivizēt', 'theme:active:not_found' => 'Aktīvā tēma netika atrasta.', 'theme:active:not_set' => 'Aktīvā tēma netika iestatīta.', 'theme:active_button' => 'Aktivizēt', 'theme:author_label' => 'Autors', 'theme:author_placeholder' => 'Personas vai kompānijas nosaukums', 'theme:code_label' => 'Kods', 'theme:code_placeholder' => 'Unikāls kods šai tēmai, tiek lietots pārdošanai', 'theme:create_button' => 'Izveidot', 'theme:create_new_blank_theme' => 'Izveidot jaunu tukšu tēmu', 'theme:create_theme_required_name' => 'Lūdzu norādiet tēmas nosaukumu.', 'theme:create_theme_success' => 'Tēma tika veiksmīgi izveidota!', 'theme:create_title' => 'Izveidot tēmu', 'theme:customize_button' => 'Pielāgot', 'theme:customize_theme' => 'Pielāgot tēmu', 'theme:default_tab' => 'Rekvizīti', 'theme:delete_active_theme_failed' => 'Aktīvo tēmu nevar idzēst, vispirms padariet citu tēmu par aktīvo.', 'theme:delete_button' => 'Dzēst', 'theme:delete_confirm' => 'Vai esat pārliecināts, ka vēlaties dzēst šo tēmu? Izmaiņas nevarēs atcelt!', 'theme:delete_theme_success' => 'Tēma veiksmīgi izdzēsta!', 'theme:description_label' => 'Apraksts', 'theme:description_placeholder' => 'Tēmas apraksts', 'theme:dir_name_create_label' => 'Tēmas mērķdirektorija', 'theme:dir_name_invalid' => 'Nosaukums drīkst saturēt tikai skaitļus, Latīņu burtus un sekojošos simbolus: _-', 'theme:dir_name_label' => 'Direktorijas nosaukums', 'theme:dir_name_taken' => 'Izvēlētā tēmas mape jau pastāv.', 'theme:duplicate_button' => 'Dublēt', 'theme:duplicate_theme_success' => 'Tēmas dublēšana notika veiksmīgi!', 'theme:duplicate_title' => 'Dublēt tēmu', 'theme:edit:not_found' => 'Labotā tēma netika atrasta.', 'theme:edit:not_match' => 'Objekts, kuru mēģinat labot nepieder tēmai, kuru šobrīd labojat. Lūdzu pārlādējiet lapu.', 'theme:edit:not_set' => 'Labotā tēma netika iestatīta.', 'theme:edit_properties_button' => 'Labot iestatījumus', 'theme:edit_properties_title' => 'Tēma', 'theme:export_button' => 'Eksportēt', 'theme:export_folders_comment' => 'Lūdzu izvēlieties tēmas mapes, kuras vēlaties eksportēt', 'theme:export_folders_label' => 'Mapes', 'theme:export_title' => 'Eksportēt tēmu', 'theme:find_more_themes' => 'Atrodast vairāk tēmas', 'theme:homepage_label' => 'Mājaslapa', 'theme:homepage_placeholder' => 'Mājaslapas URL', 'theme:import_button' => 'Importēt', 'theme:import_folders_comment' => 'Lūdzu izvēlieties tēmas mapes, kuras vēlaties importēt', 'theme:import_folders_label' => 'Mapes', 'theme:import_overwrite_comment' => 'Izņemiet ķeksi, lai importētu tikai jaunos failus', 'theme:import_overwrite_label' => 'Pārrakstīt esošos failus', 'theme:import_theme_success' => 'Tēmas importēšanas notika veiksmīgi!', 'theme:import_title' => 'Importēt tēmu', 'theme:import_uploaded_file' => 'Tēmas arhivētais fails', 'theme:label' => 'Tēma', 'theme:manage_button' => 'Pārvaldīt', 'theme:manage_title' => 'Pārvaldīt tēmu', 'theme:name:help' => 'Norādiet tēmas unikālo kodu. Piemēram, RainLab.Vanilla', 'theme:name:label' => 'Tēmas Nosaukums', 'theme:name_create_placeholder' => 'Jaunas tēmas nosaukums', 'theme:name_label' => 'Nosaukums', 'theme:new_directory_name_comment' => 'Norādiet mapi priekš dublētās tēmas.', 'theme:new_directory_name_label' => 'Tēmas mape', 'theme:not_found_name' => 'Tēma \':name\' netika atrasta.', 'theme:return' => 'Atgriezties tēmu sarakstā', 'theme:save_properties' => 'Saglabāt iestatījumus', 'theme:saving' => 'Saglabājam tēmu...', 'theme:settings_menu' => 'Front-end tēma', 'theme:settings_menu_description' => 'Priekšskatiet instalētās tēmas un izvēlieties aktīvo tēmu.', 'theme:theme_label' => 'Tēma', 'theme:theme_title' => 'Tēmas', 'theme:unnamed' => 'Nenosaukta tēma', 'themes:install' => 'Instalēt tēmas', 'themes:installed' => 'Instalētās tēmas', 'themes:no_themes' => 'Nav tēmas, kuras būtu instalētas no tirgus plača.', 'themes:recommended' => 'Ieteiktās', 'themes:remove_confirm' => 'Vai esat pārliecināts, ka vēlaties noņemt šo tēmu?', 'themes:search' => 'meklēt tēmas, kuras instalēt...', 'tooltips:preview_website' => 'Priekšskatīt web lapu', 'updates:check_label' => 'Pārbaudīt atjauninājumus', 'updates:core_build' => 'Versija :build', 'updates:core_build_help' => 'Jaunāka versija ir pieejama.', 'updates:core_current_build' => 'Patreizējā versija', 'updates:core_downloading' => 'Lejupielādējam aplikācijas failus', 'updates:core_extracting' => 'Atpakojam aplikācijas failus', 'updates:details_author' => 'Autors', 'updates:details_current_version' => 'Patreizējā versija', 'updates:details_readme' => 'Dokumentācija', 'updates:details_readme_missing' => 'Dokumentācija nav pievienota.', 'updates:details_title' => 'Spraudņa detaļas', 'updates:details_upgrades' => 'Atjaunināšanas padomi', 'updates:details_upgrades_missing' => 'Atjaunināšanas padomi nav pievienoti.', 'updates:details_view_homepage' => 'Rādīt mājaslapu', 'updates:disabled' => 'Atspējots', 'updates:force_label' => 'Forsēt atjaunināšanu', 'updates:found:help' => 'Spiediet Atjaunināt programmatūru, lai sāktu atjaunināšanas procesu.', 'updates:found:label' => 'Atrasti jauni atjauninājumi!', 'updates:important_action:confirm' => 'Apstiprināt atjauninājumu', 'updates:important_action:empty' => 'Izvēlēties darbību', 'updates:important_action:ignore' => 'Izlaist šo spraudni (vienmēr)', 'updates:important_action:skip' => 'Izlaist šo spraudni (vienreiz)', 'updates:important_action_required' => 'Jāpievērš uzmanība', 'updates:important_alert_text' => 'Daži atjauninājumi ir jāpārskata.', 'updates:important_view_guide' => 'Skatīt atjaunināšanas padomus', 'updates:menu_description' => 'Atjauniniet sistēmu, pārvaldiet un instalējiet spraudņus un tēmas.', 'updates:menu_label' => 'Atjauninājumi', 'updates:name' => 'Programmatūras atjauninājumi', 'updates:none:help' => 'Netika atrasti jauni atjauninājumi.', 'updates:none:label' => 'Nav atjauninājumu', 'updates:plugin_author' => 'Autors', 'updates:plugin_code' => 'Kods', 'updates:plugin_current_version' => 'Patreizējā versija', 'updates:plugin_description' => 'Apraksts', 'updates:plugin_downloading' => 'Lejupielādējam spraudni: :name', 'updates:plugin_extracting' => 'Atpakojam spraudni: :name', 'updates:plugin_name' => 'Nosaukums', 'updates:plugin_version' => 'Versija', 'updates:plugin_version_none' => 'Jauns spraudnis', 'updates:plugins' => 'Spraudņi', 'updates:retry_label' => 'Mēģināt vēlreiz', 'updates:return_link' => 'Atgriezties sistēmas atjauninājumos', 'updates:theme_downloading' => 'Lejupielādējam tēmu: :name', 'updates:theme_extracting' => 'Atpakojam tēmu: :name', 'updates:theme_new_install' => 'Jauna tēmas instalācija.', 'updates:themes' => 'Tēmas', 'updates:title' => 'Pārvaldīt Atjauninājumus', 'updates:update_completing' => 'Pabeidzam atjaunināšanas procesu', 'updates:update_failed_label' => 'Atjauninājums neizdevās', 'updates:update_label' => 'Programmatūras atjaunināšana', 'updates:update_loading' => 'Ielādējam pieejamos atjauninājumus...', 'updates:update_success' => 'Atjaunināšanas process noritēja veiksmīgi.', 'user:account' => 'Konts', 'user:allow' => 'Atļaut', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Vai tiešām vēlaties dzēst šo administrātoru?', 'user:deny' => 'Aizliegt', 'user:email' => 'Epasts', 'user:first_name' => 'Vārds', 'user:full_name' => 'Pilnais vārds', 'user:group:code_comment' => 'Norādiet unikālu piekļuves kodu, ja vēlaties to sasniegt caur API.', 'user:group:code_field' => 'Kods', 'user:group:delete_confirm' => 'Vai tiešām vēlaties dzēst šo administrātoru grupu?', 'user:group:description_field' => 'Apraksts', 'user:group:is_new_user_default_field' => 'Pievienot jaunos administrātorus šai grupai pēc noklusējuma', 'user:group:list_title' => 'Pārvaldīt Grupas', 'user:group:menu_label' => 'Grupas', 'user:group:name' => 'Grupa', 'user:group:name_field' => 'Nosaukums', 'user:group:new' => 'Jauna Administrātoru Grupa', 'user:group:return' => 'Atgriezties grupu sarakstā', 'user:group:users_count' => 'Lietotāji', 'user:groups' => 'Grupas', 'user:groups_comment' => 'Norādiet, kurai grupai šī persona pieder.', 'user:inherit' => 'Pārmantot', 'user:last_name' => 'Uzvārds', 'user:list_title' => 'Pārvaldīt Administrātorus', 'user:login' => 'Lietotājvārds', 'user:menu_description' => 'Pārvaldiet back-end administrēšanas lietotājus, grupas un tiesības.', 'user:menu_label' => 'Administrātori', 'user:name' => 'Administrātors', 'user:new' => 'Jauns Administrātors', 'user:password' => 'Parole', 'user:password_confirmation' => 'Apstiprināt Paroli', 'user:permissions' => 'Tiesības', 'user:preferences:not_authenticated' => 'Nav autentificēts lietotājs, kuram ielādēt vai saglabāt iestatījumus.', 'user:return' => 'Atgriezties administratoru sarakstā', 'user:send_invite' => 'Nosūtīt uzaicinājumu pa Epastu', 'user:send_invite_comment' => 'Atķeksējiet šo aili, lai nosūtītu uzaicinājumu pa Epastu', 'user:superuser' => 'Super Lietotājs', 'user:superuser_comment' => 'Atķeksējiet šo aili, lai atļautu šai personai neierobežotu piekļuvi.', 'validation:accepted' => ':attribute jābūt apstiprinātam.', 'validation:active_url' => ':attribute nav derīga URL.', 'validation:after' => ':attribute jābūt datumam pēc :date.', 'validation:alpha' => ':attribute drīkst saturēt tikai burtus.', 'validation:alpha_dash' => ':attribute drīkst saturēt tikai burtus, skaitļus un šķērssvītras.', 'validation:alpha_num' => ':attribute drīkst saturēt tikai burtus un skaitļus.', 'validation:array' => ':attribute jābūt masīvam.', 'validation:before' => ':attribute jābūt datumam pirms :date.', 'validation:between:array' => ':attribute jābūt no :min - :max objektiem.', 'validation:between:file' => ':attribute jābūt no :min - :max kilobaitiem.', 'validation:between:numeric' => ':attribute jābūt starp :min - :max.', 'validation:between:string' => ':attribute jābūt no :min - :max simboliem.', 'validation:confirmed' => ':attribute apstiprinājums nesakrīt.', 'validation:date' => ':attribute ir nederīgs datums.', 'validation:date_format' => ':attribute nesakrīt ar formātu :format.', 'validation:different' => ':attribute un :other ir jābūt atšķirīgiem.', 'validation:digits' => ':attribute ir jābūt :digits skaitļiem.', 'validation:digits_between' => ':attribute jābūt no :min līdz :max skaitļiem.', 'validation:email' => ':attribute nederīgs formāts.', 'validation:exists' => 'Izvēlētais :attribute ir nederīgs.', 'validation:extensions' => ':attribute jābūt ar paplašinājumu: :values.', 'validation:image' => ':attribute ir jābūt attēlam.', 'validation:in' => 'Izvēlētais :attribute ir nederīgs.', 'validation:integer' => ':attribute ir jābūt skaitlim.', 'validation:ip' => ':attribute ir jābūt derīgai IP adresei.', 'validation:max:array' => ':attribute nedrīkst pārsniegt :max objektus.', 'validation:max:file' => ':attribute nedrīkst pārsniegt :max kilobaitus.', 'validation:max:numeric' => ':attribute nedrīkst pārsniegt :max.', 'validation:max:string' => ':attribute nedrīkst pārsniegt :max simbolus.', 'validation:mimes' => ':attribute jabūt failam ar tipu: :values.', 'validation:min:array' => ':attribute jābūt vismaz :min objektiem.', 'validation:min:file' => ':attribute jabūt vismaz :min kilobaitiem.', 'validation:min:numeric' => ':attribute jābūt vismaz :min.', 'validation:min:string' => ':attribute jābūt vismaz :min simboliem.', 'validation:not_in' => 'Izvēlētais :attribute nav derīgs.', 'validation:numeric' => ':attribute jabūt skaitlim.', 'validation:regex' => ':attribute formāts nav derīgs.', 'validation:required' => ':attribute lauks ir obligāts.', 'validation:required_if' => ':attribute lauks ir obligāts, ja :other ir :value.', 'validation:required_with' => ':attribute lauks ir obligāts, ja :values ir norādītas.', 'validation:required_without' => ':attribute lauks ir obligāts, ja :values nav norādītas.', 'validation:same' => ':attribute un :other ir jāsakrīt.', 'validation:size:array' => ':attribute ir jābūt :size objektiem.', 'validation:size:file' => ':attribute ir jābūt :size kilobaitiem.', 'validation:size:numeric' => ':attribute ir jābūt :size.', 'validation:size:string' => ':attribute ir jābūt :size simboliem.', 'validation:unique' => ':attribute ir jau aizņemts.', 'validation:url' => ':attribute nederīgs formāts.', 'warnings:extension' => 'PHP paplašinājums :name nav instalēts. Lūdzu instalējiet šo papildinājumu un aktivizējiet to.', 'warnings:permissions' => 'Mape :name vai tās apakšmapes nav ierakstāmas ar PHP. Lūdzu iestatiet pareizas tiesības web serverim šajā mapē.', 'warnings:tips' => 'Sistēmas konfigurācijas padomi', 'warnings:tips_description' => 'Ir lietas, kurām vajadzētu pievērst uzmanību, lai konfigurētu sistēmu pareizi.', 'widget:not_bound' => 'Logrīks ar klases nosaukumu \':name\' nav piesaistīts kontrolierim', 'widget:not_registered' => 'Logrīka klases nosaukums \':name\' nav reģistrēts', 'zip:extract_failed' => 'Nebija iespējams atarhivēt failu \':file\'.']);
示例#12
0
文件: zhcn.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => '日期 & 时间', 'access_log:email' => '电子邮箱', 'access_log:first_name' => '名', 'access_log:hint' => '这个日志显示了管理员成功登录的信息. 记录保持 :days 天。', 'access_log:ip_address' => 'IP地址', 'access_log:last_name' => '姓', 'access_log:login' => '登录', 'access_log:menu_description' => '查看成功登陆后台用户日志。', 'access_log:menu_label' => '访问日志', 'account:apply' => '应用', 'account:cancel' => '取消', 'account:delete' => '删除', 'account:email_placeholder' => 'email', 'account:enter_email' => '输入你的email', 'account:enter_login' => '输入账号', 'account:enter_new_password' => '输入新密码', 'account:forgot_password' => '忘记你的密码?', 'account:login' => '登录', 'account:login_placeholder' => '登录', 'account:ok' => 'OK', 'account:password_placeholder' => '密码', 'account:password_reset' => '密码重置', 'account:reset' => '重置', 'account:reset_error' => '密码重置失败. 请重试!', 'account:reset_fail' => '不能重置你的密码!', 'account:reset_success' => '你的密码已经重置成功. 你现在可以登录了.', 'account:restore' => '还原', 'account:restore_error' => '找不到用户 \':login\'', 'account:restore_success' => '密码重置的邮件已发往你的邮箱.', 'account:sign_out' => '登出', 'ajax_handler:invalid_name' => '不合法的 AJAX 处理器: :name.', 'ajax_handler:not_found' => ' AJAX 处理器 \':name\' 找不到.', 'app:name' => 'October CMS', 'app:tagline' => '欢迎使用October CMS!', 'asset:already_exists' => '文件或目录已存在', 'asset:create_directory' => '新建目录', 'asset:create_file' => '新建文件', 'asset:delete' => '删除', 'asset:destination_not_found' => '目标目录找不到', 'asset:directory_name' => '目录名', 'asset:directory_popup_title' => '新目录', 'asset:drop_down_add_title' => '增加...', 'asset:drop_down_operation_title' => '动作...', 'asset:error_deleting_dir' => '删除文件 :name 错误.', 'asset:error_deleting_dir_not_empty' => '删除目录 :name 错误. 目录不为空.', 'asset:error_deleting_directory' => '删除原始目录 :dir 错误', 'asset:error_deleting_file' => '删除文件 :name 错误.', 'asset:error_moving_directory' => '移动目录 :dir 错误', 'asset:error_moving_file' => '移动文件 :file 错误', 'asset:error_renaming' => '重命名文件或目录错误', 'asset:error_uploading_file' => '上传文件错误 \':name\': :error', 'asset:file_not_valid' => '文件不合法', 'asset:invalid_name' => '名称只能包含数字, 拉丁字母, 空格和以下字符: _-', 'asset:invalid_path' => '路径名称只能包含数字, 拉丁字母和以下字符: _-/', 'asset:menu_label' => '资源', 'asset:move' => '移动', 'asset:move_button' => '移动', 'asset:move_destination' => '目标目录', 'asset:move_please_select' => '请选择', 'asset:move_popup_title' => '移动资源', 'asset:name_cant_be_empty' => '名称不能为空', 'asset:new' => '新文件', 'asset:original_not_found' => '原始文件或目录找不到', 'asset:path' => '路径', 'asset:rename' => '重命名', 'asset:rename_new_name' => '新名称', 'asset:rename_popup_title' => '重命名', 'asset:select' => '选择', 'asset:select_destination_dir' => '请选择目标目录', 'asset:selected_files_not_found' => '选择的文件找不到', 'asset:too_large' => '上传的文件太大. 最大文件大小是 :max_size', 'asset:type_not_allowed' => '只有下面的文件类型是允许的: :allowed_types', 'asset:unsaved_label' => '未保存的资源', 'asset:upload_files' => '上传文件', 'auth:title' => '管理区域', 'backend_preferences:locale' => '语言', 'backend_preferences:locale_comment' => '选择你希望使用的本地语言。', 'backend_preferences:menu_description' => '管理你的后台设置, 比如希望使用的语言。', 'backend_preferences:menu_label' => '后台设置', 'behavior:missing_property' => '行为 :behavior 使用的类 :class 必须定义属性 $:property。', 'branding:app_name' => '站点名称', 'branding:app_name_description' => '这个名称显示在后台的标题区域.', 'branding:app_tagline' => '站点标语', 'branding:app_tagline_description' => '标语显示在后台的登录界面.', 'branding:brand' => '品牌', 'branding:colors' => '颜色', 'branding:custom_stylesheet' => '自定义样式', 'branding:logo' => 'Logo', 'branding:logo_description' => '上传自定义logo到后台.', 'branding:menu_description' => '自定义管理区域, 比如名字, 颜色和logo.', 'branding:menu_label' => '自定义后台', 'branding:primary_dark' => '主要 (Dark)', 'branding:primary_light' => '主要 (Light)', 'branding:secondary_dark' => '次要 (Dark)', 'branding:secondary_light' => '次要 (Light)', 'branding:styles' => '样式', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => '模板成功删除: :count.', 'cms_object:error_creating_directory' => '创建文件夹 :name 错误. 请检查写权限.', 'cms_object:error_deleting' => '删除模板文件 \':name\' 错误. 请检查写权限.', 'cms_object:error_saving' => '保存文件 \':name\' 错误. 请检查写权限.', 'cms_object:file_already_exists' => '文件 \':name\' 已经存在.', 'cms_object:file_name_required' => '需要文件名字段.', 'cms_object:invalid_file' => '不合法的文件名: :name. 文件名只能包括字母或数字, _, - 和 .. 一些正确的文件名: page.htm, page, subdirectory/page', 'cms_object:invalid_file_extension' => '不合法的文件扩展: :invalid. 允许的扩展: :allowed.', 'cms_object:invalid_property' => '属性 \':name\' 不能设置', 'combiner:not_found' => '组合文件 \':name\' 没找到.', 'component:alias' => '别名', 'component:alias_description' => '这个组件的唯一名称, 在页面或者布局代码中.', 'component:invalid_request' => '模板不能保存, 因为非法组件数据.', 'component:menu_label' => '组件', 'component:method_not_found' => '组件 \':name\' 不包含方法 \':method\'.', 'component:no_description' => '没有描述', 'component:no_records' => '找不到组件', 'component:not_found' => '组件 \':name\' 找不到.', 'component:unnamed' => '未命名的', 'component:validation_message' => '需要组件别名, 且只能包含拉丁字符, 数字和下划线. 别名必须以拉丁字符开头.', 'config:not_found' => '无法找到定义 :location 的配置文件 :file。', 'config:required' => '配置 :location 必须有 \':property\'。', 'content:delete_confirm_multiple' => '你真的想要删除选中的文件或目录吗?', 'content:delete_confirm_single' => '你真的想要删除这个内容文件?', 'content:menu_label' => '内容', 'content:new' => '新内容文件', 'content:no_list_records' => '找不到内容文件', 'content:not_found_name' => '内容文件 \':name\' 找不到.', 'content:unsaved_label' => '未保存内容', 'dashboard:add_widget' => '添加小工具', 'dashboard:columns' => '{1} 栏|[2,Inf] 栏', 'dashboard:full_width' => '全部宽度', 'dashboard:menu_label' => '仪表盘', 'dashboard:status:maintenance' => '维护中', 'dashboard:status:online' => '在线', 'dashboard:status:update_available' => '{0} 更新可用!|{1} 更新可用!|[2,Inf] 更新可用!', 'dashboard:status:widget_title_default' => '系统状态', 'dashboard:widget_columns_description' => '小工具宽度, 1 到 10.', 'dashboard:widget_columns_error' => '请输入小工具宽度, 1 到 10.', 'dashboard:widget_columns_label' => '宽度 :columns', 'dashboard:widget_inspector_description' => '配置报表小工具', 'dashboard:widget_inspector_title' => '小工具配置', 'dashboard:widget_label' => '小工具', 'dashboard:widget_new_row_description' => '把小工具放到新列.', 'dashboard:widget_new_row_label' => '强制新列', 'dashboard:widget_title_error' => '需要小工具标题.', 'dashboard:widget_title_label' => '小工具标题', 'dashboard:widget_width' => '宽度', 'directory:create_fail' => '不能创建目录: :name', 'editor:code' => '代码', 'editor:code_folding' => '代码折叠', 'editor:content' => '内容', 'editor:description' => '描述', 'editor:enter_fullscreen' => '进入全屏模式', 'editor:exit_fullscreen' => '退出全屏模式', 'editor:filename' => '文件名', 'editor:font_size' => '字体大小', 'editor:hidden' => '隐藏', 'editor:hidden_comment' => '隐藏页面只能被登录的后台用户访问.', 'editor:highlight_active_line' => '高亮活动的行', 'editor:layout' => '布局', 'editor:markup' => '标记', 'editor:menu_description' => '自定义代码编辑器选项, 比如字体大小和颜色主题.', 'editor:menu_label' => '代码编辑器选项', 'editor:meta' => '元素', 'editor:meta_description' => '元素描述', 'editor:meta_title' => '元素标题', 'editor:new_title' => '新文件标题', 'editor:preview' => '预览', 'editor:settings' => '设置', 'editor:show_gutter' => '显示侧边栏', 'editor:show_invisibles' => '显示隐藏字符', 'editor:tab_size' => '标签大小', 'editor:theme' => '色彩主题', 'editor:title' => '标题', 'editor:url' => 'URL', 'editor:use_hard_tabs' => '使用tabs缩进', 'editor:word_wrap' => '自动换行', 'event_log:created_at' => '时间和日期', 'event_log:empty_link' => '清空事件日志', 'event_log:empty_loading' => '清空事件日志...', 'event_log:empty_success' => '成功清空时间日志.', 'event_log:hint' => '日志显示了程序中的潜在错误, 比如异常和调试信息。', 'event_log:id' => 'ID', 'event_log:id_label' => '事件 ID', 'event_log:level' => '级别', 'event_log:menu_description' => '查看系统日志信息, 包括时间和详细信息。', 'event_log:menu_label' => '事件日志', 'event_log:message' => '消息', 'event_log:return_link' => '返回时间日志', 'field:invalid_type' => '不合法的字段类型 :type.', 'field:options_method_not_exists' => '模型 :model 必须定义一个返回 \':field\' 表单字段选项的方法 :method()。', 'file:create_fail' => '不能创建文件: :name', 'fileupload:attachment' => '附件', 'fileupload:attachment_url' => '附件地址', 'fileupload:default_prompt' => '点击 %s 或者拖动一个文件到这里来上传', 'fileupload:description_label' => '描述', 'fileupload:help' => '给附件添加标题和描述.', 'fileupload:remove_confirm' => '你确定吗?', 'fileupload:remove_file' => '删除文件', 'fileupload:title_label' => '标题', 'fileupload:upload_error' => '上传错误', 'fileupload:upload_file' => '上传文件', 'filter:all' => '全部', 'form:action_confirm' => '你确定?', 'form:add' => '增加', 'form:apply' => '应用', 'form:behavior_not_ready' => '表单还没初始化, 确保你调用了控制器中的 initForm().', 'form:cancel' => '取消', 'form:close' => '关闭', 'form:concurrency_file_changed_description' => '你正在编辑的文件正在被其他用户修改. 你可以重载或覆盖磁盘上的文件.', 'form:concurrency_file_changed_title' => '文件改动', 'form:confirm' => '确认', 'form:confirm_tab_close' => '你真的想要关闭这个标签吗? 未保存的改变会丢失.', 'form:create' => '创建', 'form:create_and_close' => '创建和关闭', 'form:create_success' => ':name 创建成功', 'form:create_title' => '新 :name', 'form:creating' => '创建中...', 'form:creating_name' => '创建 :name...', 'form:delete' => '删除', 'form:delete_row' => '删除行', 'form:delete_success' => ':name 删除成功', 'form:deleting' => '删除中...', 'form:deleting_name' => '删除 :name...', 'form:field_off' => '关', 'form:field_on' => '开', 'form:insert_row' => '插入行', 'form:missing_definition' => '表单不包含字段 \':field\'.', 'form:missing_id' => '表单记录ID没有指定.', 'form:missing_model' => ':class 中使用的表单没有定义的model.', 'form:not_found' => '表单 ID :id 找不到.', 'form:ok' => 'OK', 'form:or' => '或', 'form:preview_no_files_message' => '文件没有上传。', 'form:preview_no_record_message' => '没有选择记录。', 'form:preview_title' => '预览 :name', 'form:reload' => '重载', 'form:reset_default' => '重置到默认', 'form:resetting' => '重置', 'form:resetting_name' => '重置 :name', 'form:save' => '保存', 'form:save_and_close' => '保存和关闭', 'form:saving' => '保存...', 'form:saving_name' => '保存 :name...', 'form:select' => '选择', 'form:select_all' => '全部', 'form:select_none' => '无', 'form:select_placeholder' => '请选择', 'form:undefined_tab' => '杂项', 'form:update_success' => ':name 更新成功', 'form:update_title' => '编辑 :name', 'install:install_completing' => '完成安装过程', 'install:install_success' => '插件安装成功。', 'install:missing_plugin_name' => '请输入要安装的插件名称。', 'install:missing_theme_name' => '请输入要安装的主题名称。', 'install:plugin_label' => '安装插件', 'install:project_label' => '加入项目', 'install:theme_label' => '安装主题', 'layout:delete_confirm_multiple' => '你真的想要删除选中的布局?', 'layout:delete_confirm_single' => '你真的想要删除这个布局?', 'layout:menu_label' => '布局', 'layout:new' => '新布局', 'layout:no_list_records' => '找不到布局', 'layout:not_found_name' => '布局 \':name\' 找不到', 'layout:unsaved_label' => '未保存布局', 'list:behavior_not_ready' => '列表没有初始化, 确认你的控制器中调用了makeLists().', 'list:default_title' => '列表', 'list:delete_selected' => '删除选择的', 'list:delete_selected_confirm' => '删除选中的记录?', 'list:delete_selected_empty' => '没有需要删除的记录.', 'list:delete_selected_success' => '成功删除选择的记录.', 'list:invalid_column_datetime' => '栏值 \':column\' 不是时间对象, 缺少了 $dates 在模型中的引用吗?', 'list:loading' => '加载中...', 'list:missing_column' => '没有 :columns 的栏定义.', 'list:missing_columns' => ':class 中使用的列表没有定义好的栏.', 'list:missing_definition' => '列表不包含 \':field\' 栏.', 'list:missing_model' => ':class 中的列表没有定义好的模型。', 'list:next_page' => '下一页', 'list:no_records' => '当前视图中没有记录.', 'list:pagination' => '显示记录: :from-:to :total', 'list:prev_page' => '上一页', 'list:records_per_page' => '每页的记录', 'list:records_per_page_help' => '选择每页想显示的记录数量. 请注意一页中太多记录可能会降低性能.', 'list:search_prompt' => '搜索...', 'list:setup_help' => '使用多选框选择你想在列表中看到的栏. 你可以通过拖拽调整栏的位置.', 'list:setup_title' => '建立列表', 'locale:cs' => 'Czech', 'locale:de' => 'German', 'locale:el' => 'Greek', 'locale:en' => 'English', 'locale:es' => 'Spanish', 'locale:es-ar' => 'Spanish (Argentina)', 'locale:fa' => 'Persian', 'locale:fr' => 'French', 'locale:hu' => 'Hungarian', 'locale:id' => 'Bahasa Indonesia', 'locale:it' => 'Italian', 'locale:ja' => 'Japanese', 'locale:lv' => 'Latvian', 'locale:nb-no' => 'Norwegian (Bokmål)', 'locale:nl' => 'Dutch', 'locale:pl' => 'Polish', 'locale:pt-br' => 'Portuguese (Brazil)', 'locale:ro' => 'Romanian', 'locale:ru' => 'Russian', 'locale:sk' => 'Slovak (Slovakia)', 'locale:sv' => 'Swedish', 'locale:tr' => 'Turkish', 'locale:zh-cn' => '简体中文', 'locale:zh-tw' => 'Chinese (Taiwan)', 'mail:drivers_hint_content' => '这个邮件发送方法需要安装插件\\":plugin\\"。', 'mail:drivers_hint_header' => '驱动未安装', 'mail:general' => '常规', 'mail:log_file' => '日志文件', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun 域名', 'mail:mailgun_domain_comment' => '请确认 Mailgun 域名.', 'mail:mailgun_secret' => 'Mailgun Secret', 'mail:mailgun_secret_comment' => '输入你的 Mailgun API key.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill Secret', 'mail:mandrill_secret_comment' => '输入你的 Mandrill API key.', 'mail:menu_description' => '管理邮件配置.', 'mail:menu_label' => '邮件配置', 'mail:method' => '邮件方法', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => '发送者邮件', 'mail:sender_name' => '发送者名称', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Sendmail 路径', 'mail:sendmail_path_comment' => '请确认 Sendmail 路径.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'SMTP 地址', 'mail:smtp_authorization' => '需要 SMTP 认证', 'mail:smtp_authorization_comment' => '勾选这个多选框如果你的SMTP服务器需要认证.', 'mail:smtp_password' => '密码', 'mail:smtp_port' => 'SMTP 端口', 'mail:smtp_ssl' => '需要SSL连接', 'mail:smtp_username' => '用户名', 'mail_templates:code' => '代码', 'mail_templates:code_comment' => '指向这个模板的唯一代码', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => '纯文本', 'mail_templates:description' => '描述', 'mail_templates:layout' => '布局', 'mail_templates:layouts' => '布局', 'mail_templates:menu_description' => '编辑发送到用户和管理员的邮件模板, 管理邮件布局.', 'mail_templates:menu_label' => '邮件模板', 'mail_templates:menu_layouts_label' => '邮件布局', 'mail_templates:name' => '名称', 'mail_templates:name_comment' => '指向这个模板的唯一名称', 'mail_templates:new_layout' => '新布局', 'mail_templates:new_template' => '新模板', 'mail_templates:return' => '返回模板列表', 'mail_templates:subject' => '标题', 'mail_templates:subject_comment' => '邮箱消息标题', 'mail_templates:template' => '模板', 'mail_templates:templates' => '模板', 'mail_templates:test_send' => '发送测试消息', 'mail_templates:test_success' => '测试消息已经成功发送.', 'maintenance:is_enabled' => '启用维护模式', 'maintenance:is_enabled_comment' => '当启用时, 网站访问者会看到下述页面.', 'maintenance:settings_menu' => '维护模式', 'maintenance:settings_menu_description' => '配置维护模式页面和开关设置.', 'media:add_folder' => '增加文件夹', 'media:click_here' => '点击这里', 'media:crop_and_insert' => '裁剪并插入', 'media:delete' => '删除', 'media:delete_confirm' => '你是否想要删除选中项?', 'media:delete_empty' => '请选择删除项.', 'media:display' => '显示', 'media:empty_library' => '媒体库是空的. 从上传文件或创建文件夹开始.', 'media:error_creating_folder' => '新建文件夹错误', 'media:error_renaming_file' => '重命名错误.', 'media:filter_audio' => '音频', 'media:filter_documents' => '文档', 'media:filter_everything' => '所有', 'media:filter_images' => '图片', 'media:filter_video' => '视频', 'media:folder' => '文件夹', 'media:folder_name' => '文件夹名', 'media:folder_or_file_exist' => '文件夹或文件已经存在.', 'media:folder_size_items' => '个数', 'media:height' => '高度', 'media:image_size' => '图片大小:', 'media:insert' => '插入', 'media:invalid_path' => '不合法的路径: \':path\'.', 'media:last_modified' => '最近修改', 'media:library' => '库', 'media:menu_label' => '媒体', 'media:move' => '移动', 'media:move_dest_src_match' => '请选择另一个目标文件夹.', 'media:move_destination' => '目标文件夹', 'media:move_empty' => '请选择移动项.', 'media:move_popup_title' => '移动文件或文件夹', 'media:multiple_selected' => '多选.', 'media:new_folder_title' => '新文件', 'media:no_files_found' => '没找到你请求的文件.', 'media:nothing_selected' => '没有选中.', 'media:order_by' => '排序', 'media:please_select_move_dest' => '请选择目标文件夹.', 'media:public_url' => '公开URL', 'media:resize' => '调整大小...', 'media:resize_image' => '调整图片', 'media:restore' => '取消所有更改', 'media:return_to_parent' => '返回上层文件夹', 'media:return_to_parent_label' => '返回 ..', 'media:search' => '搜索', 'media:select_single_image' => '请选择一张图片.', 'media:selected_size' => '选中:', 'media:selection_mode' => '选择模式', 'media:selection_mode_fixed_ratio' => '固定比例', 'media:selection_mode_fixed_size' => '固定大小', 'media:selection_mode_normal' => '正常', 'media:selection_not_image' => '选择的不是一张图片.', 'media:size' => '大小', 'media:thumbnail_error' => '生产缩略图错误.', 'media:title' => '标题', 'media:upload' => '上传', 'media:uploading_complete' => '上传完毕', 'media:uploading_file_num' => '上传 :number 文件...', 'media:width' => '宽度', 'model:invalid_class' => '模型 :model 在 :class 中是不合法的, 它必须继承 \\Model 类.', 'model:mass_assignment_failed' => '为Model属性\':attribute\'赋值失败.', 'model:missing_id' => '没有找到指定ID的模型记录.', 'model:missing_method' => '模型 \':class\' 不包含 \':method\'.', 'model:missing_relation' => '模型 \':class\' 不包含 \':relation\'.', 'model:name' => '模型', 'model:not_found' => 'ID为 :id 的 模型 \':class\' 找不到', 'myaccount:menu_description' => '更新你的账户细节, 比如名字, 邮件地址和密码.', 'myaccount:menu_keywords' => '安全登录', 'myaccount:menu_label' => '我的账户', 'mysettings:menu_description' => '设置涉及到你的管理帐号', 'mysettings:menu_label' => '我的设置', 'page:access_denied:cms_link' => '返回后台', 'page:access_denied:help' => '你没有访问这个页面需要的权限.', 'page:access_denied:label' => '访问拒绝', 'page:custom_error:help' => '很抱歉, 有一些地方发生了错误导致页面不能显示.', 'page:custom_error:label' => '页面错误', 'page:delete_confirm_multiple' => '真的想要删除选择的页面吗?', 'page:delete_confirm_single' => '真的想要删除这个页面吗?', 'page:invalid_token:label' => '非法的security token', 'page:invalid_url' => '不合法的URL格式. URL可以正斜杠开头, 包含数字, 拉丁字母和下面的字符: ._-[]:?|/+*^$', 'page:menu_label' => '页面', 'page:new' => '新页面', 'page:no_layout' => '-- 没有布局 --', 'page:no_list_records' => '找不到页面', 'page:not_found:help' => '请求的页面找不到.', 'page:not_found:label' => '页面找不到', 'page:not_found_name' => '页面 \':name\' 找不到', 'page:unsaved_label' => '未保存页面', 'page:untitled' => '未命名', 'partial:delete_confirm_multiple' => '你真的想要删除选择的部件?', 'partial:delete_confirm_single' => '你真的想要删除这个部件?', 'partial:invalid_name' => '不合法的部件名: :name.', 'partial:menu_label' => '部件', 'partial:new' => '新部件', 'partial:no_list_records' => '找不到部件', 'partial:not_found_name' => '部件 \':name\' 没找到.', 'partial:unsaved_label' => '未保存的部件', 'permissions:access_logs' => '查看访问日志', 'permissions:manage_assets' => '管理资源', 'permissions:manage_branding' => '自定义后台', 'permissions:manage_content' => '管理内容', 'permissions:manage_layouts' => '管理布局', 'permissions:manage_mail_settings' => '管理邮件设置', 'permissions:manage_mail_templates' => '管理邮件模板', 'permissions:manage_other_administrators' => '管理其他管理员', 'permissions:manage_pages' => '管理页面', 'permissions:manage_partials' => '管理部件', 'permissions:manage_software_updates' => '管理软件更新', 'permissions:manage_system_settings' => '管理系统设置', 'permissions:manage_themes' => '管理主题', 'permissions:name' => 'CMS', 'permissions:view_the_dashboard' => '查看仪表盘', 'plugin:label' => '插件', 'plugin:name:help' => '插件的唯一名称,例如:RainLab.Blog', 'plugin:name:label' => '插件名称', 'plugin:unnamed' => '未命名的插件', 'plugins:disable_confirm' => '你确定吗?', 'plugins:disable_success' => '成功禁用了这些插件.', 'plugins:disabled_help' => '被禁用的插件被应用程序忽略了.', 'plugins:disabled_label' => '禁用', 'plugins:enable_or_disable' => '启用或禁用', 'plugins:enable_or_disable_title' => '启用或禁用插件', 'plugins:enable_success' => '成功启用了这些插件', 'plugins:frozen_help' => '在线更新时将不再更新这个插件。', 'plugins:frozen_label' => '不使用在线更新', 'plugins:install' => '安装插件', 'plugins:install_products' => '安装产品', 'plugins:installed' => '已安装插件', 'plugins:manage' => '管理插件', 'plugins:no_plugins' => '市场中没有已安装的插件。', 'plugins:recommended' => '推荐', 'plugins:refresh' => '刷新', 'plugins:refresh_confirm' => '你确定吗?', 'plugins:refresh_success' => '成功刷新了系统中的插件.', 'plugins:remove' => '移除', 'plugins:remove_confirm' => '你确定吗?', 'plugins:remove_success' => '成功从系统移除这些插件.', 'plugins:search' => '搜索插件...', 'plugins:selected_amount' => '选中的插件: :数目', 'plugins:unknown_plugin' => '插件从文件系统中移除了.', 'project:attach' => '增加项目', 'project:detach' => '删除项目', 'project:detach_confirm' => '你确定要删除这个项目吗?', 'project:id:help' => '如何找到您的项目ID', 'project:id:label' => '项目ID', 'project:id:missing' => '请确认你想使用的项目ID。', 'project:name' => '项目', 'project:none' => '没有', 'project:owner_label' => '拥有者', 'project:unbind_success' => '项目删除成功。', 'relation:add' => '增加', 'relation:add_a_new' => '增加一个新的 :name', 'relation:add_name' => '增加 :name', 'relation:add_selected' => '增加选中的', 'relation:cancel' => '取消', 'relation:close' => '关闭', 'relation:create' => '创建', 'relation:create_name' => '创建 :name', 'relation:delete' => '删除', 'relation:delete_confirm' => '你确定?', 'relation:delete_name' => '删除 :name', 'relation:help' => '点击增加', 'relation:invalid_action_multi' => '这个操作不能在多重关系上执行.', 'relation:invalid_action_single' => '这个操作不能在单一关系上执行.', 'relation:link' => '关联', 'relation:link_a_new' => '关联一个新的 :name', 'relation:link_name' => '关联 :name', 'relation:link_selected' => '关联选中', 'relation:missing_config' => '关系没有\':config\'的配置文件.', 'relation:missing_definition' => '关系不包含 \':field\' 的定义.', 'relation:missing_model' => '用于 :class 的关系没有定义好的model.', 'relation:preview' => '预览', 'relation:preview_name' => '预览 :name', 'relation:related_data' => '相关的 :name', 'relation:remove' => '移除', 'relation:remove_name' => '移除 :name', 'relation:unlink' => '取消关联', 'relation:unlink_confirm' => '你确定?', 'relation:unlink_name' => '取消关联 :name', 'relation:update' => '更新', 'relation:update_name' => '更新 :name', 'request_log:count' => '次数', 'request_log:empty_link' => '清空请求日志', 'request_log:empty_loading' => '清空请求日志...', 'request_log:empty_success' => '成功清空请求日志.', 'request_log:hint' => '这个日志显示了需要注意的浏览器请求. 比如如果一个访问者打开一个没有的CMS页面, 一条返回状态404的记录被创建。', 'request_log:id' => 'ID', 'request_log:id_label' => '登录ID', 'request_log:menu_description' => '查看坏的或者重定向的请求, 比如页面找不到(404).', 'request_log:menu_label' => '请求日志', 'request_log:referer' => '来源', 'request_log:return_link' => '返回请求日志', 'request_log:status_code' => '状态', 'request_log:url' => 'URL', 'server:connect_error' => '连接服务器失败.', 'server:file_corrupt' => '服务器下载文件校验失败.', 'server:file_error' => '服务器下载文件失败.', 'server:response_empty' => '服务器返回为空.', 'server:response_invalid' => '服务器返回异常.', 'server:response_not_found' => '找不到更新服务器.', 'settings:menu_label' => '设置', 'settings:missing_model' => '设置页缺少模型定义.', 'settings:not_found' => '不能找到特定的设置.', 'settings:return' => '返回系统设置', 'settings:search' => '搜索', 'settings:update_success' => ':name 的设置更新成功了.', 'sidebar:add' => '增加', 'sidebar:search' => '搜索...', 'system:categories:articles' => '用户', 'system:categories:cms' => '内容管理', 'system:categories:customers' => '自定义', 'system:categories:events' => '事件', 'system:categories:logs' => '日志', 'system:categories:mail' => '邮件', 'system:categories:misc' => '杂项', 'system:categories:my_settings' => '我的设置', 'system:categories:shop' => '商铺', 'system:categories:social' => '社交', 'system:categories:system' => '系统', 'system:categories:team' => '团队', 'system:menu_label' => '系统', 'system:name' => '系统', 'template:invalid_type' => '未知模板类型.', 'template:not_found' => '请求模板找不到.', 'template:saved' => '模板保存成功.', 'theme:activate_button' => '激活', 'theme:active:not_found' => '活动主题找不到.', 'theme:active:not_set' => '活动主题没设置.', 'theme:active_button' => '激活', 'theme:author_label' => '作者', 'theme:author_placeholder' => '人或公司名', 'theme:code_label' => '代码', 'theme:code_placeholder' => '发行主题的唯一码', 'theme:create_button' => '创建', 'theme:create_new_blank_theme' => '创建新的空白主题', 'theme:create_theme_required_name' => '请指点主题名.', 'theme:create_theme_success' => '创建主题成功!', 'theme:create_title' => '创建主题', 'theme:customize_button' => '自定义', 'theme:customize_theme' => '自定义主题', 'theme:default_tab' => '属性', 'theme:delete_active_theme_failed' => '不能删除活动主题, 请先尝试另外一个主题.', 'theme:delete_button' => '删除', 'theme:delete_confirm' => '你确定删除这个主题吗? 这个操作不能撤销!', 'theme:delete_theme_success' => '删除主题成功!', 'theme:description_label' => '描述', 'theme:description_placeholder' => '主题描述', 'theme:dir_name_create_label' => '目标主题目录', 'theme:dir_name_invalid' => '名称只能包含数字, 拉丁字母和以下字符: _-', 'theme:dir_name_label' => '目录名', 'theme:dir_name_taken' => '主题目录已存在.', 'theme:duplicate_button' => '复制', 'theme:duplicate_theme_success' => '复制主题成功!', 'theme:duplicate_title' => '复制主题', 'theme:edit:not_found' => '编辑主题没找到.', 'theme:edit:not_match' => '你尝试访问的对象不属于正在编辑的主题. 请重载页面.', 'theme:edit:not_set' => '编辑主题没设置.', 'theme:edit_properties_button' => '编辑属性', 'theme:edit_properties_title' => '主题', 'theme:export_button' => '导出', 'theme:export_folders_comment' => '请选择你想要导入的主题文件夹', 'theme:export_folders_label' => '文件夹', 'theme:export_title' => '导出主题', 'theme:find_more_themes' => '在 OctoberCMS 主题商店中查找更多主题', 'theme:homepage_label' => '主页', 'theme:homepage_placeholder' => '网站地址', 'theme:import_button' => '导入', 'theme:import_folders_comment' => '请选择你想要导入的主题文件夹', 'theme:import_folders_label' => '文件夹', 'theme:import_overwrite_comment' => '取消勾选, 只导入新文件', 'theme:import_overwrite_label' => '覆盖已经存在的文件', 'theme:import_theme_success' => '成功导入主题!', 'theme:import_title' => '导入主题', 'theme:import_uploaded_file' => '主题存档文件', 'theme:label' => '主题', 'theme:manage_button' => '管理', 'theme:manage_title' => '管理主题', 'theme:name:help' => '主题的唯一名称,例如:RainLab.Vanilla', 'theme:name:label' => '主题名称', 'theme:name_create_placeholder' => '新主题名称', 'theme:name_label' => '名称', 'theme:new_directory_name_comment' => '提供复制主题的新闻目录名.', 'theme:new_directory_name_label' => '主题目录', 'theme:not_found_name' => '主题 \':name\' 没找到.', 'theme:return' => '返回主题列表', 'theme:save_properties' => '保存属性', 'theme:saving' => '保存主题...', 'theme:settings_menu' => '前端主题', 'theme:settings_menu_description' => '预览安装的主题, 选择一个活动主题.', 'theme:theme_label' => '主题', 'theme:theme_title' => '主题', 'theme:unnamed' => '未命名主题', 'themes:install' => '安装主题', 'themes:installed' => '已安装主题', 'themes:no_themes' => '市场上没有已安装的主题。', 'themes:recommended' => '推荐', 'themes:remove_confirm' => '你确定要删除这些主题吗?', 'themes:search' => '搜索主题...', 'tooltips:preview_website' => '预览网站', 'updates:check_label' => '检查更新', 'updates:core_build' => '当前版本', 'updates:core_build_new' => '版本 :build', 'updates:core_build_new_help' => '新的版本可用.', 'updates:core_build_old' => '当前版本 :build', 'updates:core_downloading' => '下载应用程序', 'updates:core_extracting' => '解压应用程序', 'updates:details_author' => '作者', 'updates:details_current_version' => '当前版本', 'updates:details_readme' => '文档', 'updates:details_readme_missing' => '没有提供文档', 'updates:details_title' => '插件详情', 'updates:details_upgrades' => '升级指引', 'updates:details_upgrades_missing' => '没有提供升级指引。', 'updates:details_view_homepage' => '查看主页', 'updates:disabled' => '禁用', 'updates:force_label' => '强制更新', 'updates:found:help' => '点击更新.', 'updates:found:label' => '发现新的更新!', 'updates:important_action:confirm' => '确认更新', 'updates:important_action:empty' => '选择操作', 'updates:important_action:ignore' => '跳过这个插件(总是)', 'updates:important_action:skip' => '跳过这个插件(仅本次)', 'updates:important_action_required' => '需要选择操作', 'updates:important_alert_text' => '一些更新注意事项', 'updates:important_view_guide' => '查看升级指引', 'updates:menu_description' => '更新系统, 管理并安装插件和主题.', 'updates:menu_label' => '更新', 'updates:name' => '软件更新', 'updates:none:help' => '没有发现新的更新.', 'updates:none:label' => '没有更新', 'updates:plugin_author' => '作者', 'updates:plugin_current_version' => '当前版本', 'updates:plugin_description' => '描述', 'updates:plugin_downloading' => '下载插件: :name', 'updates:plugin_extracting' => '解压插件: :name', 'updates:plugin_name' => '名字', 'updates:plugin_version' => '版本', 'updates:plugin_version_none' => '新插件', 'updates:plugins' => '插件', 'updates:retry_label' => '重试', 'updates:return_link' => '返回系统更新', 'updates:theme_downloading' => '下载主题: :name', 'updates:theme_extracting' => '解压主题: :name', 'updates:theme_new_install' => '新主题安装.', 'updates:themes' => '主题', 'updates:title' => '管理更新', 'updates:update_completing' => '完成更新过程', 'updates:update_failed_label' => '更新失败', 'updates:update_label' => '更新软件', 'updates:update_loading' => '正在检查可用更新...', 'updates:update_success' => '更新完成.', 'user:account' => '帐号', 'user:allow' => '允许', 'user:avatar' => '头像', 'user:delete_confirm' => '你真的想要删除这个管理员?', 'user:deny' => '拒绝', 'user:email' => '邮件', 'user:first_name' => '名', 'user:full_name' => '全民', 'user:group:code_comment' => '如果你想访问 API, 请输入唯一码.', 'user:group:code_field' => '代码', 'user:group:delete_confirm' => '你真的想要删除这个管理组?', 'user:group:description_field' => '描述', 'user:group:is_new_user_default_field' => '默认增加新管理员到这个组', 'user:group:list_title' => '管理群组', 'user:group:menu_label' => '群组', 'user:group:name' => '组', 'user:group:name_field' => '名字', 'user:group:new' => '新管理组', 'user:group:return' => '返回组列表', 'user:group:users_count' => '用户', 'user:groups' => '团队', 'user:groups_comment' => '指明这个人属于哪个组.', 'user:inherit' => '继承', 'user:last_name' => '姓', 'user:list_title' => '管理', 'user:login' => '登录', 'user:menu_description' => '管理后台管理员用户, 组和权限.', 'user:menu_label' => '管理员', 'user:name' => '管理员', 'user:new' => '新管理员', 'user:password' => '密码', 'user:password_confirmation' => '确认密码', 'user:permissions' => '权限', 'user:preferences:not_authenticated' => '没有认证用户加载或保存设置.', 'user:return' => '返回管理员列表', 'user:send_invite' => '发送邀请邮件', 'user:send_invite_comment' => '发送一封包含用户名和密码的欢迎邮件', 'user:superuser' => '超级用户', 'user:superuser_comment' => '选中并允许这个人访问全部区域.', 'validation:accepted' => ':attribute 必须被接受.', 'validation:active_url' => ':attribute 不是一个有效的URL.', 'validation:after' => ':attribute 必须是 :date 之后的一个日期.', 'validation:alpha' => ':attribute 只能包含字母.', 'validation:alpha_dash' => ':attribute 只能包含字母, 数字和-.', 'validation:alpha_num' => ':attribute 只能包含字母和数字.', 'validation:array' => ':attribute 只能是一个数组.', 'validation:before' => ':attribute 必须是 :date 之前的一个日期.', 'validation:between:array' => ':attribute 在 :min - :max 个之间.', 'validation:between:file' => ':attribute 在 :min - :max kilobytes之间.', 'validation:between:numeric' => ':attribute 在 :min - :max 之间.', 'validation:between:string' => ':attribute 在 :min - :max 字符之间.', 'validation:confirmed' => ':attribute 的确认不满足.', 'validation:date' => ':attribute 不是一个合法的日期.', 'validation:date_format' => ':attribute 不符合 :format 格式.', 'validation:different' => ':attribute 和 :other 必须不同.', 'validation:digits' => ':attribute 必须是 :digits.', 'validation:digits_between' => ':attribute 必须在 :min :max 之间.', 'validation:email' => ':attribute 格式无效.', 'validation:exists' => '选中的 :attribute 无效.', 'validation:extensions' => ':attribute 必须有一个扩展: :values.', 'validation:image' => ':attribute 必须是图片.', 'validation:in' => '选中的 :attribute 无效.', 'validation:integer' => ':attribute 必须是数字.', 'validation:ip' => ':attribute 必须是一个有效的IP地址.', 'validation:max:array' => ':attribute 不能超过 :max 个.', 'validation:max:file' => ':attribute 不能大于 :max kilobytes.', 'validation:max:numeric' => ':attribute 不能大于 :max.', 'validation:max:string' => ':attribute 不能超过 :max 字符.', 'validation:mimes' => ':attribute 必须是一个: :values 类型的文件.', 'validation:min:array' => ':attribute 必须至少 :min 个.', 'validation:min:file' => ':attribute 必须至少 :min kilobytes.', 'validation:min:numeric' => ':attribute 必须至少 :min.', 'validation:min:string' => ':attribute 必须至少 :min 字符.', 'validation:not_in' => '选中的 :attribute 无效.', 'validation:numeric' => ':attribute 必须是一个数字.', 'validation:regex' => ':attribute 格式无效.', 'validation:required' => '需要 :attribute 字段.', 'validation:required_if' => '需要 :attribute 字段, 当 :other 是 :value.', 'validation:required_with' => '需要 :attribute 字段, 当 :values 是当前值.', 'validation:required_without' => '需要 :attribute 字段, 当 :values 不是当前值.', 'validation:same' => ':attribute 和 :other 必须匹配.', 'validation:size:array' => ':attribute 必须是 :size 个.', 'validation:size:file' => ':attribute 必须是 :size kilobytes.', 'validation:size:numeric' => ':attribute 必须是 :size.', 'validation:size:string' => ':attribute 必须是 :size 字符.', 'validation:unique' => ':attribute 已占用.', 'validation:url' => ':attribute 格式无效.', 'warnings:extension' => 'PHP扩展 :name 没安装,请安装这个库并且激活扩展.', 'warnings:permissions' => '目录 :name 或子目录对PHP不可写. 请在服务器上对这个目录设置正确的权限.', 'warnings:tips' => '系统配置技巧', 'warnings:tips_description' => '你需要注意下面的问题, 以使系统更好的工作。', 'widget:not_bound' => '部件 \':name\' 没绑到控制器', 'widget:not_registered' => '部件 \':name\' 还没注册', 'zip:extract_failed' => '不能解压文件 \':file\'。']);
示例#13
0
文件: cs.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Datum & čas', 'access_log:email' => 'E-mail', 'access_log:first_name' => 'Jméno', 'access_log:hint' => 'Tento záznam zobrazuje seznam úspěšných přihlášení do administrace. Záznamy jsou uchovávány :days dní.', 'access_log:ip_address' => 'IP adresa', 'access_log:last_name' => 'Příjmení', 'access_log:login' => 'Login', 'access_log:menu_description' => 'Zobrazit seznam úspěšných přihlášení do administrace.', 'access_log:menu_label' => 'Log přístupů', 'account:apply' => 'Použít', 'account:cancel' => 'Zrušit', 'account:delete' => 'Smazat', 'account:email_placeholder' => 'e-mail', 'account:enter_email' => 'Zadejte váš e-mail', 'account:enter_login' => 'Zadejte váš login', 'account:enter_new_password' => 'Zadejte nové heslo', 'account:forgot_password' => 'Zapomněli jste heslo?', 'account:login' => 'Přihlásit se', 'account:login_placeholder' => 'login', 'account:ok' => 'OK', 'account:password_placeholder' => 'heslo', 'account:password_reset' => 'Obnova hesla', 'account:reset' => 'Resetovat', 'account:reset_error' => 'Data pro obnovu hesla nejsou správná. Prosím zkuste to znovu!', 'account:reset_fail' => 'Obnova hesla selhala!', 'account:reset_success' => 'Vaše heslo bylo úspěšně obnoveno. Nyní se můžete přihlásit.', 'account:restore' => 'Obnovit', 'account:restore_error' => 'Uživatel s přihlašovacím jménem \':login\' nebyl nalezen', 'account:restore_success' => 'E-mail byl zaslán na vaší e-mailovou adresu s heslem a instrukcemi k obnově.', 'account:sign_out' => 'Odhlásit', 'ajax_handler:invalid_name' => 'Invalid AJAX handler name: :name.', 'ajax_handler:not_found' => 'AJAX handler \':name\' was not found.', 'alert:cancel_button_text' => 'Zrušit', 'alert:confirm_button_text' => 'OK', 'app:name' => 'October CMS', 'app:tagline' => 'Getting back to basics', 'asset:already_exists' => 'Soubor nebo složka s tímto názvem již existují', 'asset:create_directory' => 'Vytvořit složku', 'asset:create_file' => 'Vytvořit soubor', 'asset:delete' => 'Smazat', 'asset:destination_not_found' => 'Cílová složka nebyla nalezena', 'asset:directory_name' => 'Název složky', 'asset:directory_popup_title' => 'Vytvoření nové složky', 'asset:drop_down_add_title' => 'Přidat...', 'asset:drop_down_operation_title' => 'Akce...', 'asset:error_deleting_dir' => 'Chyba mazání souboru :name.', 'asset:error_deleting_dir_not_empty' => 'Chyba mazání složky :name. Složka není prázdná.', 'asset:error_deleting_directory' => 'Chyba přesunu původní složky :dir', 'asset:error_deleting_file' => 'Chyba mazání souboru :name.', 'asset:error_moving_directory' => 'Chyba přesunu složky :dir', 'asset:error_moving_file' => 'Chyba přesunu souboru :file', 'asset:error_renaming' => 'Chyba přejmenovávání souboru nebo složky', 'asset:error_uploading_file' => 'Chyba nahrávání souboru \':name\': :error', 'asset:file_not_valid' => 'Soubor není validní', 'asset:invalid_name' => 'Název může obsahovat pouze číslice, písmena, mezery a následující soubory: ._-', 'asset:invalid_path' => 'Cesta může obsahovat pouze číslice, písmena, mezery nebo následující znaky: ._-/', 'asset:menu_label' => 'Soubory', 'asset:move' => 'Přesunout', 'asset:move_button' => 'Přesunout', 'asset:move_destination' => 'Cílová složka', 'asset:move_please_select' => 'prosím vyberte', 'asset:move_popup_title' => 'Přesunutí souborů', 'asset:name_cant_be_empty' => 'Název nemůže být prázdný', 'asset:new' => 'Nový soubor', 'asset:original_not_found' => 'Původní soubor nebo složka neexistují', 'asset:path' => 'Cesta', 'asset:rename' => 'Přejmenovat', 'asset:rename_new_name' => 'Nový název', 'asset:rename_popup_title' => 'Přejmenovat', 'asset:select' => 'Vybrat', 'asset:select_destination_dir' => 'Vyberte cílovou složku', 'asset:selected_files_not_found' => 'Vybrané soubory nebyly nalezeny', 'asset:too_large' => 'Nahrávaný soubor je příliš veliký. Maximální povolená velikost je :max_size', 'asset:type_not_allowed' => 'Je možno nahrávat pouze tyto typy souborů: :allowed_types', 'asset:unsaved_label' => 'Neuložené soubory', 'asset:upload_files' => 'Nahrát soubor(y)', 'auth:title' => 'Administrace', 'backend_preferences:locale' => 'Jazyk', 'backend_preferences:locale_comment' => 'Vyberte si jazyk administrace, který chcete používat.', 'backend_preferences:menu_description' => 'Nastavte si svůj účet, jako třeba jazyk.', 'backend_preferences:menu_label' => 'Nastavení administrace', 'behavior:missing_property' => 'Třída :class musí definovat parametr $:property použitý v třídě chování :behavior.', 'branding:app_name' => 'Jméno aplikace', 'branding:app_name_description' => 'Toto jméno se zobrazí v titulní liště stránek.', 'branding:app_tagline' => 'Motto aplikace', 'branding:app_tagline_description' => 'Toto motto se zobrazí na přihlašovací stránce administrace.', 'branding:brand' => 'Značka', 'branding:colors' => 'Barvy', 'branding:custom_stylesheet' => 'Vlastní kaskádové styly', 'branding:logo' => 'Logo', 'branding:logo_description' => 'Nahrajte vlastní logo, které bude použité v administraci.', 'branding:menu_description' => 'Nastavte si název, logo a barvy použité v administraci.', 'branding:menu_label' => 'Nastavení administrace', 'branding:primary_dark' => 'Primární (tmavá)', 'branding:primary_light' => 'Primární (světlá)', 'branding:secondary_dark' => 'Sekundární (tmavá)', 'branding:secondary_light' => 'Sekundární (světlá)', 'branding:styles' => 'Styly', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Šablony úspěšně smazány: :count.', 'cms_object:error_creating_directory' => 'Chyba vytváření složky :name. Zkontrolujte práva k zápisu.', 'cms_object:error_deleting' => 'Chyba mazání souboru s šablonou \':name\'. Zkontrolujte práva k zápisu.', 'cms_object:error_saving' => 'Chyba ukládání souboru \':name\'. Zkontrolujte práva k zápisu.', 'cms_object:file_already_exists' => 'Soubor \':name\' již existuje.', 'cms_object:file_name_required' => 'Je nutno vyplnit Název souboru.', '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', 'cms_object:invalid_file_extension' => 'Chybná přípona souboru: :invalid. Povolené přípony jsou: :allowed.', 'cms_object:invalid_property' => 'Parametr \':name\' není možno nastavit', 'combiner:not_found' => 'Slučující soubor \':name\' nebyl nalezen.', 'component:alias' => 'Alias', 'component:alias_description' => 'Unikátní název komponenty pro použití ve stránkách, nebo kodéch layoutu.', 'component:invalid_request' => 'Šablona nemohla být uložena, protože jedna z komponent nemá správně vyplněná data.', 'component:menu_label' => 'Komponenty', 'component:method_not_found' => 'Komponenta \':name\' nemá metodu \':method\'.', 'component:no_description' => 'Popis nevyplněn', 'component:no_records' => 'Žádná komponenta', 'component:not_found' => 'Komponenta \':name\' nebyla nalezena.', 'component:unnamed' => 'Bez jména', 'component:validation_message' => 'Alias komponenty je povinný a může obsahovat pouze písmena, čísla a podtržítka. Alias by měl začínat písmenem.', 'config:not_found' => 'Nepovedlo se najít konfigurační soubor :file, který je definován pro :location.', 'config:required' => 'Konfigurace použitá v :location musí obsahovat hodnotu \':property\'.', 'content:delete_confirm_multiple' => 'Opravdu chcete smazat tyto obsahové soubory nebo složky?', 'content:delete_confirm_single' => 'Opravdu chcete smazat tento obsahový soubor?', 'content:menu_label' => 'Obsahy', 'content:new' => 'Žádný obsahový soubor', 'content:no_list_records' => 'Žádné obsahové soubory', 'content:not_found_name' => 'Obsahový soubor \':name\' nebyl nalezen.', 'content:unsaved_label' => 'Neuložený obsah', 'dashboard:add_widget' => 'Přidat widget', 'dashboard:columns' => '{1} sloupec|[2,Inf] sloupce', 'dashboard:full_width' => 'plná šířka', 'dashboard:menu_label' => 'Plocha', 'dashboard:status:maintenance' => 'v údržbě', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} dostupných aktualizací!|{1} dostupná aktualizace!|[2,Inf] dostupných aktualizací!', 'dashboard:status:widget_title_default' => 'Status systému', 'dashboard:widget_columns_description' => 'Šířka widgetu, zadejte číslo mezi 1 a 10.', 'dashboard:widget_columns_error' => 'Zadejte prosím šířku widgetu jako číslo mezi 1 a 10.', 'dashboard:widget_columns_label' => 'Šířka :columns', 'dashboard:widget_inspector_description' => 'Zde si upravte všechna nastavení widgetu', 'dashboard:widget_inspector_title' => 'Nastavení widgetu', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'Vloží widget do nového řádku.', 'dashboard:widget_new_row_label' => 'Vždy na novém řádku', 'dashboard:widget_title_error' => 'Musíte zadat název widgetu', 'dashboard:widget_title_label' => 'Název widgetu', 'dashboard:widget_width' => 'Šířka', 'directory:create_fail' => 'Nelze vytvořit složku: :name', 'editor:auto_closing' => 'Automatické doplňování tagů a speciálních znaků', 'editor:code' => 'PHP kód', 'editor:code_folding' => 'Skládání kódu', 'editor:content' => 'Obsah', 'editor:description' => 'Popisek', 'editor:enter_fullscreen' => 'Zapnout režim celé obrazovky', 'editor:exit_fullscreen' => 'Opustit režim celé obrazovky', 'editor:filename' => 'Název souboru', 'editor:font_size' => 'Velikost písma', 'editor:hidden' => 'Skrytý', 'editor:hidden_comment' => 'Skryté stránky jsou dostupné pouze přihlášeným administrátorům pro náhled.', 'editor:highlight_active_line' => 'Zvýraznění aktivního řádku', 'editor:layout' => 'Layout', 'editor:markup' => 'Markup', 'editor:menu_description' => 'Nastavení editoru kódu, velikosti písma a barevného schématu.', 'editor:menu_label' => 'Nastavení editoru kódu', 'editor:meta' => 'Meta údaje', 'editor:meta_description' => 'Meta Description', 'editor:meta_title' => 'Meta Title', 'editor:new_title' => 'Nový název souboru', 'editor:preview' => 'Náhled', 'editor:settings' => 'Nastavení', 'editor:show_gutter' => 'Zobrazit číslování řádků', 'editor:show_invisibles' => 'Zobrazit neviditelné znaky', 'editor:tab_size' => 'Počet znaků odsazení', 'editor:theme' => 'Barevné schéma', 'editor:title' => 'Název souboru', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Odsazení tabulátory', 'editor:word_wrap' => 'Zalamování řádek', 'event_log:created_at' => 'Datum & Čas', 'event_log:empty_link' => 'Smazat záznam událostí', 'event_log:empty_loading' => 'Mazání záznamu událostí...', 'event_log:empty_success' => 'Záznam událostí úspěšně vymazán.', 'event_log:hint' => 'Záznam potencionálních chyb v aplikaci, jako třeba vyjímky, nebo ladící informace.', 'event_log:id' => 'ID', 'event_log:id_label' => 'ID události', 'event_log:level' => 'Úroveň', 'event_log:menu_description' => 'Zobrazení záznamu události s časem a detaily.', 'event_log:menu_label' => 'Záznam událostí', 'event_log:message' => 'Zpráva', 'event_log:return_link' => 'Zpět na záznam událostí', 'field:invalid_type' => 'Byl použitý špatný typ :type.', 'field:options_method_not_exists' => 'Modelová třída :model musí implementovat metodu :method(), která vrací volby pro formulářové pole \':field\'', 'file:create_fail' => 'Nelze vytvořit soubor: :name', 'fileupload:attachment' => 'Příloha', 'fileupload:attachment_url' => 'URL přílohy', 'fileupload:default_prompt' => 'Click the %s or drag a file here to upload', 'fileupload:description_label' => 'Popis', 'fileupload:help' => 'Přidat název a popisek k příloze.', 'fileupload:remove_confirm' => 'Jste si jistí?', 'fileupload:remove_file' => 'Odstranit soubor', 'fileupload:title_label' => 'Název', 'fileupload:upload_error' => 'Chyba nahrávání', 'fileupload:upload_file' => 'Nahrát soubor', 'filter:all' => 'vše', 'form:action_confirm' => 'Jste si jistí?', 'form:add' => 'Přidat', 'form:apply' => 'Použít', 'form:behavior_not_ready' => 'Chování formuláře není inicializováno, zkontrolujte jestli voláte metodu initForm() ve vašem kontroléru.', 'form:cancel' => 'Zrušit', 'form:close' => 'Zavřít', 'form:complete' => 'Kompletní', 'form:concurrency_file_changed_description' => 'Soubor který upravujete byl na disku změněn jiným uživatelem. Můžete buď obnovit soubor a ztratit svoje změny, nebo přepsat soubor na disku.', 'form:concurrency_file_changed_title' => 'Soubor byl změněn', 'form:confirm' => 'Potvrdit', 'form:confirm_tab_close' => 'Opravdu chcete zavřít záložku? Neuložené změny budou ztraceny.', 'form:create' => 'Vytvořit', 'form:create_and_close' => 'Vytvořit a zavřít', 'form:create_success' => ':name byl úspěšně vytvořen', 'form:create_title' => 'Nový :name', 'form:creating' => 'Vytváření...', 'form:creating_name' => 'Vytváření :name...', 'form:delete' => 'Smazat', 'form:delete_row' => 'Smazat řádek', 'form:delete_success' => ':name byl úspěšně smazán', 'form:deleting' => 'Mazání...', 'form:deleting_name' => 'Mazání :name...', 'form:field_off' => 'Off', 'form:field_on' => 'On', 'form:insert_row' => 'Vložit řádek', 'form:missing_definition' => 'Form behavior does not contain a field for \':field\'.', 'form:missing_id' => 'Musíte uvést ID záznamu.', 'form:missing_model' => 'Form behavior used in :class does not have a model defined.', 'form:not_found' => 'Form record with an ID of :id could not be found.', 'form:ok' => 'OK', 'form:or' => 'nebo', 'form:preview_no_files_message' => 'Žádný soubor nebyl nahrán.', 'form:preview_no_record_message' => 'Žádný záznam není vybraný.', 'form:preview_title' => 'Náhled :name', 'form:reload' => 'Znovu načíst', 'form:reset_default' => 'Obnovit výchozí', 'form:resetting' => 'Obnovování', 'form:resetting_name' => 'Obnovování :name', 'form:save' => 'Uložit', 'form:save_and_close' => 'Uložit a zavřít', 'form:saving' => 'Ukládání...', 'form:saving_name' => 'Ukládání :name...', 'form:select' => 'Vybrat', 'form:select_all' => 'vše', 'form:select_none' => 'nic', 'form:select_placeholder' => 'prosím vyberte', 'form:undefined_tab' => 'Ostatní', 'form:update_success' => ':name byl úspěšně upraven', 'form:update_title' => 'Upravit :name', 'install:install_completing' => 'Dokončování instalace', 'install:install_success' => 'Plugin byl úspěšně nainstalován.', 'install:missing_plugin_name' => 'Zadejte prosím jméno pluginu které chcete instalovat.', 'install:missing_theme_name' => 'Zadejte prosím jméno téma které chcete instalovat.', 'install:plugin_label' => 'Instalace pluginu', 'install:project_label' => 'Připojit k projektu', 'install:theme_label' => 'Instalace téma', 'layout:delete_confirm_multiple' => 'Opravdu chcete odstranit vybrané layouty?', 'layout:delete_confirm_single' => 'Opravdu chcete odstranit tento layout?', 'layout:menu_label' => 'Layouty', 'layout:new' => 'Nový layout', 'layout:no_list_records' => 'Žádné layouty nebyly nalezeny', 'layout:not_found_name' => 'Layout \':name\' nebyl nalezen', 'layout:unsaved_label' => 'Neuložený layout(y)', 'list:behavior_not_ready' => 'List behavior has not been initialized, check that you have called makeLists() in your controller.', 'list:default_title' => 'Seznam', 'list:delete_selected' => 'Smazat vybrané', 'list:delete_selected_confirm' => 'Smazat vybrané záznamy?', 'list:delete_selected_empty' => 'Nebyl vybrán žádný záznam ke smazání.', 'list:delete_selected_success' => 'Vybrané záznamy byly úspěšně smazány.', 'list:invalid_column_datetime' => 'Column value \':column\' is not a DateTime object, are you missing a $dates reference in the Model?', 'list:loading' => 'Načítám...', 'list:missing_column' => 'There are no column definitions for :columns.', 'list:missing_columns' => 'List used in :class has no list columns defined.', 'list:missing_definition' => 'List behavior does not contain a column for \':field\'.', 'list:missing_model' => 'List behavior used in :class does not have a model defined.', 'list:next_page' => 'Další stránka', 'list:no_records' => 'Žádné záznamy v tomto pohledu.', 'list:pagination' => 'Zobrazuji záznamy: :from-:to z :total', 'list:prev_page' => 'Předchozí stránka', 'list:records_per_page' => 'Záznamů na stránku', 'list:records_per_page_help' => 'Vyberte kolik chcete vidět záznamů na jedné stránce. Vysoký počet záznamů může negativně ovlivnit rychlost stránek.', 'list:search_prompt' => 'Hledat...', 'list:setup_help' => 'Pomocí checkboxů si vyberte, které sloupce chcete ve výpisu vidět. Pozici změníte chytnutím a posunem nahorů, nebo dolů.', 'list:setup_title' => 'Nastavení výpisu', 'locale:cs' => 'Čeština', 'locale:de' => 'Němčina', 'locale:el' => 'Řečtina', 'locale:en' => 'Angličtina', 'locale:es' => 'Španělština', 'locale:es-ar' => 'Španělština (Argentinská)', 'locale:fa' => 'Perština', 'locale:fr' => 'Francouzština', 'locale:hu' => 'Maďarština', 'locale:id' => 'Bahasa Indonesia', 'locale:it' => 'Italština', 'locale:ja' => 'Japonština', 'locale:lv' => 'Litevština', 'locale:nb-no' => 'Norwegian (Bokmål)', 'locale:nl' => 'Holandština', 'locale:pl' => 'Polština', 'locale:pt-br' => 'Portugalština (Brazilská)', 'locale:ro' => 'Rumunština', 'locale:ru' => 'Ruština', 'locale:sk' => 'Slovenština', 'locale:sv' => 'Švédština', 'locale:tr' => 'Turečtina', 'locale:zh-cn' => 'Čínštína (Čína)', 'locale:zh-tw' => 'Čínštína (Tchaj-wan)', 'mail:drivers_hint_content' => 'Tato metoda posílání e-mailů vyžaduje nainstalovaný plugin \\":plugin\\" ještě před odesláním první zprávy.', 'mail:drivers_hint_header' => 'Ovladač není nainstalovaný', 'mail:general' => 'Obecné', 'mail:log_file' => 'Log file', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun doména (domain)', 'mail:mailgun_domain_comment' => 'Zadejte doménové jméno (domain name) pro Mailgun.', 'mail:mailgun_secret' => 'Mailgun tajný klíč (secret)', 'mail:mailgun_secret_comment' => 'Zadejte váš Mailgun API klíč.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill tajný klíč (secret)', 'mail:mandrill_secret_comment' => 'Zadejte váš Mandrill API klíč.', 'mail:menu_description' => 'Konfigurace posílání e-mailových zpráv.', 'mail:menu_label' => 'Nastavení e-mailů', 'mail:method' => 'Metoda posílání zpráv', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'E-mail odesílatele', 'mail:sender_name' => 'Jméno odesílatele', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Sendmail cesta', 'mail:sendmail_path_comment' => 'Zadejte prosím cestu k sendmail programu.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'SMTP adresa', 'mail:smtp_authorization' => 'Vyžadována SMTP autorizace', 'mail:smtp_authorization_comment' => 'Zaškrtněte pokud váš SMTP vyžaduje autorizaci.', 'mail:smtp_encryption' => 'SMTP šifrovací protokol', 'mail:smtp_encryption_none' => 'Bez šifrování', 'mail:smtp_encryption_ssl' => 'SSL', 'mail:smtp_encryption_tls' => 'TLS', 'mail:smtp_password' => 'Heslo', 'mail:smtp_port' => 'SMTP port', 'mail:smtp_ssl' => 'Vyžadováno SSL připojení', 'mail:smtp_username' => 'Uživatelské jméno', 'mail_templates:code' => 'Kód', 'mail_templates:code_comment' => 'Unikátní kód přes který se odkazujeme na šablonu', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Čistý text', 'mail_templates:description' => 'Popis', 'mail_templates:layout' => 'Layout', 'mail_templates:layouts' => 'Layouty', 'mail_templates:menu_description' => 'Úprava e-mailových šablon, které se posílají uživatelům a administrátorům. Úprava e-mailových layoutů.', 'mail_templates:menu_label' => 'E-mailové šablony', 'mail_templates:menu_layouts_label' => 'E-mailové layouty', 'mail_templates:name' => 'Jméno', 'mail_templates:name_comment' => 'Unikátní název přes který se odkazujeme na šablonu', 'mail_templates:new_layout' => 'Nový layout', 'mail_templates:new_template' => 'Nová šablona', 'mail_templates:no_layout' => '-- žádný layout --', 'mail_templates:return' => 'Zpět na seznam šablon', 'mail_templates:saving' => 'Ukládání šablony...', 'mail_templates:sending' => 'Posílání testovací zprávy...', 'mail_templates:subject' => 'Předmět', 'mail_templates:subject_comment' => 'Předmět e-mailové zprávy', 'mail_templates:template' => 'Šablona', 'mail_templates:templates' => 'Šablony', 'mail_templates:test_confirm' => 'Testovací zpráva bude zaslána na :email. Chcete pokračovat?', 'mail_templates:test_send' => 'Poslat testovací zprávu', 'mail_templates:test_success' => 'Testovací zpráva byla úspěšně odeslána.', 'maintenance:is_enabled' => 'Aktivovat režim údržby', 'maintenance:is_enabled_comment' => 'Pokud je režim údržby aktivní, uživatelé uvidí stránku vybranou níže.', 'maintenance:settings_menu' => 'Režim údržby', 'maintenance:settings_menu_description' => 'Nastavte stránku režimu údržby a její nastavení.', 'markdowneditor:bold' => 'Tučně', 'markdowneditor:code' => 'Kód', 'markdowneditor:formatting' => 'Formátování', 'markdowneditor:fullscreen' => 'Celá obrazovka', 'markdowneditor:header1' => 'Nadpis 1', 'markdowneditor:header2' => 'Nadpis 2', 'markdowneditor:header3' => 'Nadpis 3', 'markdowneditor:header4' => 'Nadpis 4', 'markdowneditor:header5' => 'Nadpis 5', 'markdowneditor:header6' => 'Nadpis 6', 'markdowneditor:horizontalrule' => 'Vložit horizontální linku', 'markdowneditor:image' => 'Obrázek', 'markdowneditor:italic' => 'Kurzívou', 'markdowneditor:link' => 'Odkaz', 'markdowneditor:orderedlist' => 'Číslovaný seznam', 'markdowneditor:preview' => 'Náhled', 'markdowneditor:quote' => 'Citace', 'markdowneditor:unorderedlist' => 'Nečíslovaný seznam', 'markdowneditor:video' => 'Video', 'media:add_folder' => 'Přidat složku', 'media:click_here' => 'Klikněte zde', 'media:crop_and_insert' => 'Oříznout & vložit', 'media:delete' => 'Smazat', 'media:delete_confirm' => 'Opravu chcete smazat vybrané položky?', 'media:delete_empty' => 'Vyberte položky ke smazání.', 'media:display' => 'Zobrazit', 'media:empty_library' => 'Knihovna médií je prázdná. Nahrajte prosím soubory, nebo vytvořte složky.', 'media:error_creating_folder' => 'Chyba vytváření složky', 'media:error_renaming_file' => 'Přejmenování se nezdařilo.', 'media:filter_audio' => 'Audio', 'media:filter_documents' => 'Dokumenty', 'media:filter_everything' => 'Vše', 'media:filter_images' => 'Obrázky', 'media:filter_video' => 'Video', 'media:folder' => 'Složka', 'media:folder_name' => 'Název složky', 'media:folder_or_file_exist' => 'A folder or file with the specified name already exists.', 'media:folder_size_items' => 'soubor(ů)', 'media:height' => 'Výška', 'media:image_size' => 'Velikost obrázku:', 'media:insert' => 'Vložit', 'media:invalid_path' => 'Chybně zadaná cesta: \':path\'.', 'media:last_modified' => 'Naposledy upraveno', 'media:library' => 'Knihovna', 'media:menu_label' => 'Media', 'media:move' => 'Přesunout', 'media:move_dest_src_match' => 'Prosím vyberte jinou cílovou složku.', 'media:move_destination' => 'Cílová složka', 'media:move_empty' => 'Vyberte položky k přesunutí.', 'media:move_popup_title' => 'Přesun souborů nebo složek', 'media:multiple_selected' => 'Vybráno více položek.', 'media:new_folder_title' => 'Nová složka', 'media:no_files_found' => 'No files found by your request.', 'media:nothing_selected' => 'Nic nevybráno.', 'media:order_by' => 'Seřadit dle', 'media:please_select_move_dest' => 'Prosím vyberte cílovou složku.', 'media:public_url' => 'Veřejná URL', 'media:resize' => 'Změnit velikost...', 'media:resize_image' => 'Změna rozměrů obrázku', 'media:restore' => 'Zpět všechny změny', 'media:return_to_parent' => 'Zpět do nadřazené složky', 'media:return_to_parent_label' => 'Go up ..', 'media:search' => 'Vyhledat', 'media:select_single_image' => 'Prosím vyberte pouze jeden obrázek.', 'media:selected_size' => 'Vybrané:', 'media:selection_mode' => 'Selection mode', 'media:selection_mode_fixed_ratio' => 'Pevný poměr stran', 'media:selection_mode_fixed_size' => 'Pevná velikost', 'media:selection_mode_normal' => 'Normální', 'media:selection_not_image' => 'Vybraná položka není obrázek.', 'media:size' => 'Velikost', 'media:thumbnail_error' => 'Chyba generování náhledu.', 'media:title' => 'Název', 'media:upload' => 'Nahrát', 'media:uploading_complete' => 'Nahrávání kompletní', 'media:uploading_file_num' => 'Nahrávám :number soubor(y)...', 'media:width' => 'Šířka', 'mediafinder:default_prompt' => 'Klikněte na tlačítko %s pro hledání souboru', 'mediamanager:insert_audio' => 'Vložit zvuk', 'mediamanager:insert_image' => 'Vložit obrázek', 'mediamanager:insert_link' => 'Vložit odkaz', 'mediamanager:insert_video' => 'Vložit video', 'mediamanager:invalid_audio_empty_insert' => 'Vyberte audio soubor pro vložení.', 'mediamanager:invalid_file_empty_insert' => 'Prosím vyberte soubor, na který se vloží odkaz.', 'mediamanager:invalid_file_single_insert' => 'Vyberte jeden soubor.', 'mediamanager:invalid_image_empty_insert' => 'Vyberte soubor(y) pro vložení.', 'mediamanager:invalid_video_empty_insert' => 'Vyberte video soubor pro vložení.', 'model:invalid_class' => 'Model :model použitý ve třídě :class není validní, musí dědit ze třídy Model.', 'model:mass_assignment_failed' => 'Mass assignment failed for Model attribute \':attribute\'.', 'model:missing_id' => 'Není specifikované ID pro hledání záznamu v modelu.', 'model:missing_method' => 'Model \':class\' nemá implementovanou metodu \':method\'.', 'model:missing_relation' => 'Model \':class\' neobsahuje definici pro \':relation\'.', 'model:name' => 'Model', 'model:not_found' => 'Model \':class\' s ID :id nebyl nalezen', 'myaccount:menu_description' => 'Nastavte si svoje jméno, e-mailovou adresu a heslo.', 'myaccount:menu_keywords' => 'bezpečnost login', 'myaccount:menu_label' => 'Můj účet', 'mysettings:menu_description' => 'Nastavení vašeho administrátorského účtu', 'mysettings:menu_label' => 'Moje nastavení', 'page:access_denied:cms_link' => 'Zpět do administrace', 'page:access_denied:help' => 'Nemáte potřebná oprávnění k prohlížení této stránky.', 'page:access_denied:label' => 'Přístup odmítnut', 'page:custom_error:help' => 'Omlouváme se, ale požadovaná stránka nelze zobrazit z důvodu nějaké chyby.', 'page:custom_error:label' => 'Chyba stránky', 'page:delete_confirm_multiple' => 'Opravdu chcete odstranit vybrané stránky?', 'page:delete_confirm_single' => 'Opravdu chcete odstranit tuto stránku?', 'page:invalid_token:label' => 'Neplatný bezpečností token', 'page:invalid_url' => 'Špatný formát URL. URL musí začínat lomítkem a může obsahovat pouze číslice, písmena a následující znaky: ._-[]:?|/+*^$', 'page:menu_label' => 'Stránky', 'page:new' => 'Nová stránka', 'page:no_layout' => '-- žádný layout --', 'page:no_list_records' => 'Žádné stránky', 'page:not_found:help' => 'Požadovaná stránka nebyla nalezena.', 'page:not_found:label' => 'Stránka nenalezena', 'page:not_found_name' => 'Stránka \':name\' nebyla nalezena', 'page:unsaved_label' => 'Neuložené stránky', 'page:untitled' => 'Bez názvu', 'partial:delete_confirm_multiple' => 'Opravdu chcete smazat tyto dílčí šablony?', 'partial:delete_confirm_single' => 'Opravdu chcete smazat tuto dílčí šablonu?', 'partial:invalid_name' => 'Chybný název dílčí šablony: :name.', 'partial:menu_label' => 'Dílčí šablony', 'partial:new' => 'Nová šablona', 'partial:no_list_records' => 'Žádné dílčí šablony', 'partial:not_found_name' => 'Dílčí šablona \':name\' nebyla nalezena.', 'partial:unsaved_label' => 'Neuložené dílčí šablony', 'permissions:access_logs' => 'Zobrazit záznam přístupů', 'permissions:manage_assets' => 'Správa souborů', 'permissions:manage_branding' => 'Nastavení administrace', 'permissions:manage_content' => 'Správa obsahu', 'permissions:manage_layouts' => 'Správa layoutů', 'permissions:manage_mail_settings' => 'Správa posílání e-mailů', 'permissions:manage_mail_templates' => 'Správa e-mailových šablon', 'permissions:manage_media' => 'Správa médií', 'permissions:manage_other_administrators' => 'Správa ostatních administrátorů', 'permissions:manage_pages' => 'Správa stránek', 'permissions:manage_partials' => 'Správa dílčích šablon', 'permissions:manage_software_updates' => 'Správa aktualizací', 'permissions:manage_system_settings' => 'Správa systémového nastavení', 'permissions:manage_themes' => 'Správa témat', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => 'Zobrazit plochu', 'plugin:label' => 'Pluginy', 'plugin:name:help' => 'Pojmenujte plugin unikátním kódem, například RainLab.Blog', 'plugin:name:label' => 'Název pluginu', 'plugin:unnamed' => 'Plugin bez jména', 'plugins:disable_confirm' => 'Jste si jistí?', 'plugins:disable_success' => 'Pluginy úspěšně deaktivovány.', 'plugins:disabled_help' => 'Neaktivní pluginy jsou kompletně ignorovány systémem.', 'plugins:disabled_label' => 'Neaktivní', 'plugins:enable_or_disable' => 'Aktivovat, nebo deaktivovat', 'plugins:enable_or_disable_title' => 'Zapne, nebo vyplne pluginy', 'plugins:enable_success' => 'Pluginy úspěšně aktivovány.', 'plugins:frozen_help' => 'Zmrazené pluginy se neaktualizují.', 'plugins:frozen_label' => 'Zmrazit aktualizace', 'plugins:install' => 'Instalace pluginů', 'plugins:install_products' => 'Instalované produkty', 'plugins:installed' => 'Instalované pluginy', 'plugins:manage' => 'Správa pluginů', 'plugins:no_plugins' => 'Žádné instalované pluginy z tržiště.', 'plugins:recommended' => 'Doporučené', 'plugins:refresh' => 'Obnovit', 'plugins:refresh_confirm' => 'Jste si jistí?', 'plugins:refresh_success' => 'Pluginy byly úspěšně obnoveny.', 'plugins:remove' => 'Odstranit', 'plugins:remove_confirm' => 'Opravdu chcete odstranit tento plugin?', 'plugins:remove_success' => 'Plugin úspěšně odstraněn ze systému.', 'plugins:search' => 'vyhledejte pluginy k instalaci...', 'plugins:selected_amount' => 'Vybrané pluginy: :amount', 'plugins:unknown_plugin' => 'Plugin odstraněn ze systému.', 'project:attach' => 'Připojit projekt', 'project:detach' => 'Odpojit projekt', 'project:detach_confirm' => 'Jste si jistí, že chcete odpojit váš projekt?', 'project:id:help' => 'Jak zjistím svoje Projektové ID', 'project:id:label' => 'Projekt ID', 'project:id:missing' => 'Zadejte vaše Projektové ID.', 'project:name' => 'Projekt', 'project:none' => 'Žádný', 'project:owner_label' => 'Vlastník', 'project:unbind_success' => 'Projekt byl úspěšně odpojen.', 'relation:add' => 'Přidat', 'relation:add_a_new' => 'Přidat nový :name', 'relation:add_name' => 'Přidat :name', 'relation:add_selected' => 'Přidat vybrané', 'relation:cancel' => 'Zrušit', 'relation:close' => 'Zavřít', 'relation:create' => 'Vytvořit', 'relation:create_name' => 'Vytvořit :name', 'relation:delete' => 'Smazat', 'relation:delete_confirm' => 'Jste si jistí?', 'relation:delete_name' => 'Smazat :name', 'relation:help' => 'Pro přidání klikněte na položku', 'relation:invalid_action_multi' => 'This action cannot be performed on a multiple relationship.', 'relation:invalid_action_single' => 'This action cannot be performed on a singular relationship.', 'relation:link' => 'Link', 'relation:link_a_new' => 'Link a new :name', 'relation:link_name' => 'Link :name', 'relation:link_selected' => 'Link selected', 'relation:missing_config' => 'Relation behavior does not have any configuration for \':config\'.', 'relation:missing_definition' => 'Relation behavior does not contain a definition for \':field\'.', 'relation:missing_model' => 'Relation behavior used in :class does not have a model defined.', 'relation:preview' => 'Náhled', 'relation:preview_name' => 'Náhled :name', 'relation:related_data' => 'Related :name data', 'relation:remove' => 'Odstranit', 'relation:remove_name' => 'Odstranit :name', 'relation:unlink' => 'Unlink', 'relation:unlink_confirm' => 'Jste si jistí?', 'relation:unlink_name' => 'Unlink :name', 'relation:update' => 'Upravit', 'relation:update_name' => 'Upravit :name', 'reorder:default_title' => 'Seřadit záznamy', 'reorder:no_records' => 'Nenašli jsme žádné záznamy k seřazení.', 'request_log:count' => 'Počítadlo', 'request_log:empty_link' => 'Smazat záznam požadavků', 'request_log:empty_loading' => 'Mazání záznamu požadavků...', 'request_log:empty_success' => 'Záznam požadavků úspěšně vymazán.', 'request_log:hint' => 'Tento záznam obsahuje požadavky na vaše stránky, které vyžadují pozornost, například stránky které nebylo možné najít, nebo vrací chybový kód 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'Log ID', 'request_log:menu_description' => 'Záznam špatných požadavků, jako třeba nenalezené stránky (404).', 'request_log:menu_label' => 'Záznam požadavků', 'request_log:referer' => 'Odkaz', 'request_log:return_link' => 'Zpět na záznam událostí', 'request_log:status_code' => 'Status', 'request_log:url' => 'URL', 'server:connect_error' => 'Chyba připojení k serveru.', 'server:file_corrupt' => 'Soubor stažený ze serveru je chybný.', 'server:file_error' => 'Chyba stahování balíčku ze serveru.', 'server:response_empty' => 'Prázdná odpověď ze serveru.', 'server:response_invalid' => 'Špatná odpověď ze serveru.', 'server:response_not_found' => 'Aktualizační server nebyl nalezen.', 'settings:menu_label' => 'Nastavení', 'settings:missing_model' => 'Stránka s nastavením vyžaduje definovat Model.', 'settings:not_found' => 'Takové nastavení se nepovedlo najít.', 'settings:return' => 'Zpět do systémového nastavení', 'settings:search' => 'Hledat', 'settings:update_success' => 'Nastavení pro :name byla úspěšně uložena.', 'sidebar:add' => 'Přidat', 'sidebar:search' => 'Hledat...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Zákazníci', 'system:categories:events' => 'Události', 'system:categories:logs' => 'Záznamy', 'system:categories:mail' => 'E-mail', 'system:categories:misc' => 'Ostatní', 'system:categories:my_settings' => 'Moje nastavení', 'system:categories:shop' => 'E-shop', 'system:categories:social' => 'Sociální', 'system:categories:system' => 'System', 'system:categories:team' => 'Tým', 'system:categories:users' => 'Uživatelé', 'system:menu_label' => 'System', 'system:name' => 'System', 'template:invalid_type' => 'Neznámý typ šablony.', 'template:not_found' => 'Požadovaná šablona nebyla nalezena.', 'template:saved' => 'Šablona byla úspěšně uložena.', 'theme:activate_button' => 'Aktivovat', 'theme:active:not_found' => 'Aktivní téma nebylo nalezeno.', 'theme:active:not_set' => 'Aktivní téma nebylo nastaveno.', 'theme:active_button' => 'Aktivní', 'theme:author_label' => 'Autor', 'theme:author_placeholder' => 'Jméno osoby, nebo firmy', 'theme:code_label' => 'Kód', 'theme:code_placeholder' => 'Unikátní kód téma pro distribuci aktualizační sítí', 'theme:create_button' => 'Vytvořit', 'theme:create_new_blank_theme' => 'Vytvořit nové čisté téma', 'theme:create_theme_required_name' => 'Napište jméno pro nové téma.', 'theme:create_theme_success' => 'Téma úspěšně vytvořeno!', 'theme:create_title' => 'Vytvořit téma', 'theme:customize_button' => 'Přizpůsobit', 'theme:customize_theme' => 'Přizpůsobení téma', 'theme:default_tab' => 'Parametry', 'theme:delete_active_theme_failed' => 'Nelze smazat aktivní téma. Nejdříve aktivujte jiné téma.', 'theme:delete_button' => 'Smazat', 'theme:delete_confirm' => 'Jste si jistí, že chcete smazat toto téma? Tuto akci nelze vrátit zpět!', 'theme:delete_theme_success' => 'Téma úspěšně smazáno!', 'theme:description_label' => 'Popisek', 'theme:description_placeholder' => 'Popište svoje téma', 'theme:dir_name_create_label' => 'Název cílové složky pro uložení téma', 'theme:dir_name_invalid' => 'Název může obsahovat pouze čísla, písmena a následující symboly: _-', 'theme:dir_name_label' => 'Název složky', 'theme:dir_name_taken' => 'Tato složka s tématem již existuje.', 'theme:duplicate_button' => 'Duplikovat', 'theme:duplicate_theme_success' => 'Duplikace téma byla úspěšná!', 'theme:duplicate_title' => 'Duplikovat téma', 'theme:edit:not_found' => 'Editované téma nebylo nalezeno.', 'theme:edit:not_match' => 'Objekt který chcete právě zobrazit nepatří do téma, které nyní editujete. Prosím obnovte stránku.', 'theme:edit:not_set' => 'Editované téma nebylo uloženo.', 'theme:edit_properties_button' => 'Nastavit', 'theme:edit_properties_title' => 'Téma', 'theme:export_button' => 'Exportovat', 'theme:export_folders_comment' => 'Vyberte prosím složky, které chcete exportovat', 'theme:export_folders_label' => 'Složky', 'theme:export_title' => 'Exportovat téma', 'theme:find_more_themes' => 'Vyhledat více témat', 'theme:homepage_label' => 'Domovská stránka', 'theme:homepage_placeholder' => 'URL domovské stránky', 'theme:import_button' => 'Importovat', 'theme:import_folders_comment' => 'Vyberte prosím složky, které chcete importovat', 'theme:import_folders_label' => 'Složky', 'theme:import_overwrite_comment' => 'Odškrtněte tento box pokud chcete importovat pouze nové soubory.', 'theme:import_overwrite_label' => 'Přepsat existující soubory', 'theme:import_theme_success' => 'Téma úspěšně importováno!', 'theme:import_title' => 'Importovat téma', 'theme:import_uploaded_file' => 'Soubor s tématem', 'theme:label' => 'Téma', 'theme:manage_button' => 'Správa téma', 'theme:manage_title' => 'Správa témat', 'theme:name:help' => 'Název téma podle jeho unikátního názvu, například RainLab.Vanilla', 'theme:name:label' => 'Název téma', 'theme:name_create_placeholder' => 'Název nového téma', 'theme:name_label' => 'Název', 'theme:new_directory_name_comment' => 'Zadejte název nové složky pro duplikaci téma.', 'theme:new_directory_name_label' => 'Složka téma', 'theme:not_found_name' => 'Téma \':name\' nebylo nalezeno.', 'theme:return' => 'Zpět na seznam témat', 'theme:save_properties' => 'Uložit nastavení', 'theme:saving' => 'Ukládám téma...', 'theme:settings_menu' => 'Témata vzhledu', 'theme:settings_menu_description' => 'Náhledy instalovaných témat a výběr aktivního téma.', 'theme:theme_label' => 'Téma', 'theme:theme_title' => 'Téma', 'theme:unnamed' => 'Téma bez názvu', 'themes:install' => 'Instalace témat', 'themes:installed' => 'Instalované téma', 'themes:no_themes' => 'Žádné téma instalované z tržiště.', 'themes:recommended' => 'Doporučené', 'themes:remove_confirm' => 'Opravdu chcete odstranit toto téma?', 'themes:search' => 'vyhledejte téma k instalaci...', 'tooltips:preview_website' => 'Náhled stránek', 'updates:check_label' => 'Kontrola aktualizací', 'updates:core_build' => 'Sestavení :build', 'updates:core_build_help' => 'Nejnovější sestavení je dostupné.', 'updates:core_current_build' => 'Aktuální sestavení', 'updates:core_downloading' => 'Stahování aplikačních souborů', 'updates:core_extracting' => 'Rozbalování aplikačních souborů', 'updates:details_author' => 'Autor', 'updates:details_current_version' => 'Stávající verze', 'updates:details_readme' => 'Dokumentace', 'updates:details_readme_missing' => 'Není uvedená žádná dokumentace.', 'updates:details_title' => 'Detaily pluginu', 'updates:details_upgrades' => 'Instalační příručka', 'updates:details_upgrades_missing' => 'Nejsou uvedené žádné aktualizační instrukce.', 'updates:details_view_homepage' => 'Zobrazit domovskou stránku', 'updates:disabled' => 'Neaktivní', 'updates:force_label' => 'Vynutit aktualizaci', 'updates:found:help' => 'Klikněte na Instalovat aktualizace pro spuštění aktualizace.', 'updates:found:label' => 'Nová aktualizace nalezeny!', 'updates:important_action:confirm' => 'Potvrdit aktualizaci', 'updates:important_action:empty' => 'Vyberte akci', 'updates:important_action:ignore' => 'Přeskočit tento plugin (vždy)', 'updates:important_action:skip' => 'Přeskočit tento plugin (pouze jednou)', 'updates:important_action_required' => 'Je vyžadována akce', 'updates:important_alert_text' => 'Některé aktualizace vyžadují vaší pozornost.', 'updates:important_view_guide' => 'Zobrazit aktualizační příručku', 'updates:menu_description' => 'Aktualizace systému, správa a instalace pluginů a témat.', 'updates:menu_label' => 'Aktualizace', 'updates:name' => 'Software update', 'updates:none:help' => 'Nebyly nalezeny žádná aktualizace.', 'updates:none:label' => 'Žádné aktualizace', 'updates:plugin_author' => 'Autor', 'updates:plugin_code' => 'Kód', 'updates:plugin_current_version' => 'Stávající verze', 'updates:plugin_description' => 'Popis', 'updates:plugin_downloading' => 'Stahování pluginu: :name', 'updates:plugin_extracting' => 'Rozbalování pluginu: :name', 'updates:plugin_name' => 'Název', 'updates:plugin_version' => 'Verze', 'updates:plugin_version_none' => 'Nový plugin', 'updates:plugins' => 'Pluginy', 'updates:retry_label' => 'Zkusit znovu', 'updates:return_link' => 'Zpět na systémové aktualizace', 'updates:theme_downloading' => 'Stahuji téma: :name', 'updates:theme_extracting' => 'Rozbalování téma: :name', 'updates:theme_new_install' => 'Instalace nového téma.', 'updates:themes' => 'Témata', 'updates:title' => 'Správa aktualizací', 'updates:update_completing' => 'Dokončování aktualizace', 'updates:update_failed_label' => 'Aktualizace selhala', 'updates:update_label' => 'Aktualizace', 'updates:update_loading' => 'Načítám dostupné aktualizace...', 'updates:update_success' => 'Aktualizace systému proběhla úspěšně.', 'user:account' => 'Účet', 'user:allow' => 'Povolit', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Opravdu chcete smazat tohoto administrátora?', 'user:deny' => 'Odmítnout', 'user:email' => 'E-mail', 'user:first_name' => 'Křestní jméno', 'user:full_name' => 'Celé jméno', 'user:group:code_comment' => 'Zadejte unikátní kód pro přístup přes API.', 'user:group:code_field' => 'Kód', 'user:group:delete_confirm' => 'Opravdu chcete smazat tuto skupinu administrátorů?', 'user:group:description_field' => 'Popis', 'user:group:is_new_user_default_field' => 'Zařadit nové administrátory automaticky do této skupiny.', 'user:group:list_title' => 'Správa skupin', 'user:group:menu_label' => 'Skupiny', 'user:group:name' => 'Skupina', 'user:group:name_field' => 'Jméno', 'user:group:new' => 'Nová skupina', 'user:group:return' => 'Návrat na seznam skupin', 'user:group:users_count' => 'Uživatelů', 'user:groups' => 'Skupiny', 'user:groups_comment' => 'Vyberte do jakých skupin uživatel patří.', 'user:inherit' => 'Podědit', 'user:last_name' => 'Příjmení', 'user:list_title' => 'Správa administrátorů', 'user:login' => 'Přihlašovací jméno', 'user:menu_description' => 'Správa uživatelů administrace, jejich skupin a opravnění.', 'user:menu_label' => 'Administrátoři', 'user:name' => 'Administrátor', 'user:new' => 'Nový administrátor', 'user:password' => 'Heslo', 'user:password_confirmation' => 'Potvrzení hesla', 'user:permissions' => 'Oprávnění', 'user:preferences:not_authenticated' => 'Nebyl nalezen žádný přihlášený uživatel pro načtení, nebo uložení nastavení.', 'user:return' => 'Návrat na seznam administrátorů', 'user:send_invite' => 'Zaslat pozvánku e-mailem', 'user:send_invite_comment' => 'Odešle uvítací e-mail s údaji pro přihlášení.', 'user:superuser' => 'Super uživatel', 'user:superuser_comment' => 'Má neomezený přístup do všech stránek administrace.', 'validation:accepted' => 'The :attribute must be accepted.', 'validation:active_url' => ':attribute není validní URL.', 'validation:after' => ':attribute musí být datum po :date.', 'validation:alpha' => ':attribute musí obsahovat pouze písmena.', 'validation:alpha_dash' => ':attribute musí obsahovat pouze písmena, čísla, nebo pomlčky.', 'validation:alpha_num' => ':attribute může obsahovat pouze písmena nebo čísla.', 'validation:array' => ':attribute musí být pole.', 'validation:before' => ':attribute musí být datum před :date.', 'validation:between:array' => ':attribute musí být mezi :min - :max položkami.', 'validation:between:file' => ':attribute musí být mezi :min - :max kilobytama.', 'validation:between:numeric' => ':attribute musí být mezi :min - :max.', 'validation:between:string' => ':attribute musí být mezi :min - :max znaky.', 'validation:confirmed' => ':attribute potvrzení nesouhlasí.', 'validation:date' => ':attribute není validní datum.', 'validation:date_format' => ':attribute neodpovídá formátu :format.', 'validation:different' => ':attribute a :other musí být rozdílné.', 'validation:digits' => ':attribute musí být :digits číslic.', 'validation:digits_between' => ':attribute musí mít mezi :min a :max číslicemi.', 'validation:email' => ':attribute má nesprávný formát.', 'validation:exists' => 'Vybraný atribut :attribute již existuje.', 'validation:extensions' => ':attribute musí mít některou z následujících přípon: :values.', 'validation:image' => ':attribute musí být obrázek.', 'validation:in' => 'Vybraný atribut :attribute není správný.', 'validation:integer' => ':attribute musí být číslo.', 'validation:ip' => ':attribute musí být validní IP adresa.', 'validation:max:array' => ':attribute nesmí mít více než :max položek.', 'validation:max:file' => ':attribute nesmí být větší než :max kilobytes.', 'validation:max:numeric' => ':attribute nesmí být delší než :max.', 'validation:max:string' => ':attribute nesmí být větší než :max characters.', 'validation:mimes' => ':attribute musí být soubor následujícího typu: :values.', 'validation:min:array' => ':attribute musí mít alespoň :min položek.', 'validation:min:file' => ':attribute musí mít alespoň :min kilobytů.', 'validation:min:numeric' => ':attribute musí být alespoň číslo :min.', 'validation:min:string' => ':attribute musí mít alespoň :min znaků.', 'validation:not_in' => 'selected :attribute je nesprávný.', 'validation:numeric' => ':attribute musí být číslo.', 'validation:regex' => ':attribute formát není správný.', 'validation:required' => ':attribute pole je povinné.', 'validation:required_if' => ':attribute pole je povinné pokud :other je :value.', 'validation:required_with' => ':attribute pole je povinné pokud :values je uvedeno.', 'validation:required_without' => ':attribute pole je povinné pokud :values není uvedeno.', 'validation:same' => ':attribute a :other musí souhlasit.', 'validation:size:array' => ':attribute musí obsahovat :size položek.', 'validation:size:file' => ':attribute musí mít :size kilobytů.', 'validation:size:numeric' => ':attribute musí mít velikost :size.', 'validation:size:string' => ':attribute musí mít :size znaků.', 'validation:unique' => ':attribute je již použitý.', 'validation:url' => ':attribute formát není správný.', 'warnings:extension' => 'PHP rozšíření :name není nainstalované. Nainstalujte prosím knihovnu a aktivujte rozšíření.', 'warnings:permissions' => 'Složka :name nebo její podsložky nejsou pro PHP zapisovatelné. Nastavte prosím odpovídající oprávnění webového serveru pro tuto složku.', 'warnings:tips' => 'Tipy pro konfiguraci systému', 'warnings:tips_description' => 'Některé problémy s nastavením systému si vyžadují vaší pozornost.', 'widget:not_bound' => 'Widget s názvem třídy \':name\' není navázaná na kontroler.', 'widget:not_registered' => 'Třída widgetu se jménem \':name\' není zaregistrovaná.', 'zip:extract_failed' => 'Nepovedlo se rozbalit soubor \':file\'.']);
示例#14
0
文件: id.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Tanggal & Waktu', 'access_log:email' => 'Surel', 'access_log:first_name' => 'Nama depan', 'access_log:hint' => 'Catatan ini menampilkan senarai percobaan masuk yang berhasil oleh administrator. Rekam akan disimpan selama :days hari.', 'access_log:ip_address' => 'Alamat IP', 'access_log:last_name' => 'Nama belakang', 'access_log:login' => 'Nama Pengguna', 'access_log:menu_description' => 'Tampilan senarai pengguna back-end yang berhasil masuk.', 'access_log:menu_label' => 'Catatan akses', 'account:apply' => 'Terapkan', 'account:cancel' => 'Urung', 'account:delete' => 'Hapus', 'account:email_placeholder' => 'Surel', 'account:enter_email' => 'Masukan surel Anda', 'account:enter_login' => 'Masukan nama pengguna Anda', 'account:enter_new_password' => 'Masukan sandi lewat baru', 'account:forgot_password' => 'Lupa sandi lewat Anda?', 'account:login' => 'Catat Masuk', 'account:login_placeholder' => 'Nama Pengguna', 'account:ok' => 'OK', 'account:password_placeholder' => 'Sandi Lewat', 'account:password_reset' => 'Atur Ulang Sandi Lewat', 'account:reset' => 'Atur Ulang', 'account:reset_error' => 'Data atur ulang sandi lewat yang diberikan tidak valid. Silakan ulangi lagi!', 'account:reset_fail' => 'Tidak dapat mengatur ulang sandi lewat Anda!', 'account:reset_success' => 'Sandi lewat Anda telah diatur ulang. Anda dapat catat masuk sekarang.', 'account:restore' => 'Pulihkan', 'account:restore_error' => 'Pengguna dengan nama pengguna \':login\' tidak ditemukan', 'account:restore_success' => 'Sebuah surat berisi petunjuk pemulihan telah dikirim ke alamat surat elektronik Anda.', 'account:sign_out' => 'Keluar', 'ajax_handler:invalid_name' => 'Nama AJAX handler: :name tidak valid.', 'ajax_handler:not_found' => 'AJAX handler \':name\' tidak ditemukan.', 'app:name' => 'October CMS', 'app:tagline' => 'Dapati kembali yang mendasar', 'asset:already_exists' => 'Sudah ada berkas atau direktori dengan nama ini', 'asset:create_directory' => 'Buat direktori', 'asset:create_file' => 'Buat berkas', 'asset:delete' => 'Hapus', 'asset:destination_not_found' => 'Direktori tujuan tidak ditemukan', 'asset:directory_name' => 'Nama direktori', 'asset:directory_popup_title' => 'Direktori baru', 'asset:drop_down_add_title' => 'Tambah...', 'asset:drop_down_operation_title' => 'Aksi...', 'asset:error_deleting_dir' => 'Galat menghapus berkas :name.', 'asset:error_deleting_dir_not_empty' => 'Galat menghapus direktori :name. Direktori tersebut berisi.', 'asset:error_deleting_directory' => 'Galat menghapus direktori asal :dir', 'asset:error_deleting_file' => 'Galat menghapus berkas :name.', 'asset:error_moving_directory' => 'Galat memindahkan direktori :dir', 'asset:error_moving_file' => 'Galat memindahkan berkas :file', 'asset:error_renaming' => 'Galat ganti nama berkas atau direktori', 'asset:error_uploading_file' => 'Galat mengunggah berkas \':name\': :error', 'asset:file_not_valid' => 'Berkas tidak valid', 'asset:invalid_name' => 'Nama hanya dapat memuat angka, huruf Latin, spasi dan simbol-simbol ini: ._-', 'asset:invalid_path' => 'Jalur hanya dapat memuat angka, huruf Latin, spasi dan simbol-simbol ini: ._-/', 'asset:menu_label' => 'Aset', 'asset:move' => 'Pindah', 'asset:move_button' => 'Pindahkan', 'asset:move_destination' => 'Direktori tujuan', 'asset:move_please_select' => 'silakan pilih', 'asset:move_popup_title' => 'Pindahkan aset', 'asset:name_cant_be_empty' => 'Nama tidak boleh kosong', 'asset:new' => 'Berkas baru', 'asset:original_not_found' => 'Berkas atau direktori asal tidak ditemukan', 'asset:path' => 'Jalur', 'asset:rename' => 'Ganti nama', 'asset:rename_new_name' => 'Nama baru', 'asset:rename_popup_title' => 'Ganti nama', 'asset:select' => 'Pilih', 'asset:select_destination_dir' => 'Silakan pilih direktori tujuan', 'asset:selected_files_not_found' => 'Berkas terpilih tidak ditemukan', 'asset:too_large' => 'Berkas unggahan terlalu besar. Ukuran maksimal yang diperbolahkan adalah :max_size', 'asset:type_not_allowed' => 'Hanya jenis-jenis berkas berikut yang diperbolahkan: :allowed_types', 'asset:unsaved_label' => 'Aset tak tersimpan', 'asset:upload_files' => 'Unggah berkas', 'auth:title' => 'Area Administrasi', 'backend_preferences:locale' => 'Bahasa', 'backend_preferences:locale_comment' => 'Pilih bahasa lokal yang ingin digunakan.', 'backend_preferences:menu_description' => 'Kelola penyesuaian akun Anda seperti bahasa yang diinginkan.', 'backend_preferences:menu_label' => 'Penyesuaian Back-end', 'behavior:missing_property' => 'Kelas :class harus menetapkan properti $:property digunakan oleh behavior :behavior.', 'branding:app_name' => 'Nama Apl', 'branding:app_name_description' => 'Nama ini ditampilkan pada area judul back-end.', 'branding:app_tagline' => 'Slogan Apl', 'branding:app_tagline_description' => 'Nama ini akan ditampilkan pada layar masuk back-end.', 'branding:brand' => 'Brand', 'branding:colors' => 'Warna', 'branding:custom_stylesheet' => 'Lembar gaya ubah suai', 'branding:logo' => 'Logo', 'branding:logo_description' => 'Unggah logo ubah suai untuk digunakan pada back-end.', 'branding:menu_description' => 'Penyesuaian area administrasi seperti nama, warna dan logo.', 'branding:menu_label' => 'Penyesuaian back-end', 'branding:primary_dark' => 'Primer (Gelap)', 'branding:primary_light' => 'Primer (Terang)', 'branding:secondary_dark' => 'Sekunder (Gelap)', 'branding:secondary_light' => 'Sekunder (Terang)', 'branding:styles' => 'Gaya', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Acuan: :count berhasil dihapus.', 'cms_object:error_creating_directory' => 'Galat membuat direktori :name. Silakan periksa izin tulis.', 'cms_object:error_deleting' => 'Galat menghapus berkas acuan \':name\'. Silakan periksa izin tulis.', 'cms_object:error_saving' => 'Galat menyimpan berkas \':name\'. Silakan periksa izin tulis.', 'cms_object:file_already_exists' => 'Berkas \':name\' sudah ada.', 'cms_object:file_name_required' => 'Bidang nama berkas diperlukan.', 'cms_object:invalid_file' => 'Nama berkas: :name tidak valid. Nama berkas hanya dapat memuat angka, huruf, garis bawah, strip, dan titik. Contoh penamaan berkas yang benar: laman.htm, laman, subdirektori/laman', 'cms_object:invalid_file_extension' => 'Ekstensi berkas: :invalid tidak valid. Ekstensi yang diperbolehkan: :allowed.', 'cms_object:invalid_property' => 'Properti \':name\' tidak dapat diatur', 'combiner:not_found' => 'Berkas penggabung \':name\' tidak ditemukan.', 'component:alias' => 'Alias', 'component:alias_description' => 'Nama unik untuk komponen ini saat digunakan di dalam kode laman atau tata letak.', 'component:invalid_request' => 'Acuan tidak dapat disimpan dikarenakan data komponen tidak valid.', 'component:menu_label' => 'Komponen', 'component:method_not_found' => 'Komponen \':name\' tidak berisi metode \':method\'.', 'component:no_description' => 'Tidak ada jabaran', 'component:no_records' => 'Tidak ada komponen ditemukan', 'component:not_found' => 'Komponen \':name\' tidak ditemukan.', 'component:unnamed' => 'Tak bernama', 'component:validation_message' => 'Alias komponen diperlukan dan hanya dapat memuat simbol Latin, angka, dan garis bawah. Alias harus diawali dengan simbol Latin.', 'config:not_found' => 'Tidak dapat menemukan berkas pengaturan :file ditetapkan untuk :location.', 'config:required' => 'Pengaturan yang digunakan pada :location harus memberikan nilai \':property\'.', 'content:delete_confirm_multiple' => 'Anda yakin akan menghapus berkas atau direktori muatan terpilih?', 'content:delete_confirm_single' => 'Anda yakin akan menghapus berkas muatan ini?', 'content:menu_label' => 'Muatan', 'content:new' => 'Berkas muatan baru', 'content:no_list_records' => 'Tidak ada muatan ditemukan', 'content:not_found' => 'Berkas muatan \':name\' tidak ditemukan.', 'content:unsaved_label' => 'Muatan tak tersimpan', 'dashboard:add_widget' => 'Tambah gawit', 'dashboard:columns' => '{1} kolom|[2,Inf] kolom', 'dashboard:full_width' => 'lebar penuh', 'dashboard:menu_label' => 'Dasbor', 'dashboard:status:maintenance' => 'dalam perawatan', 'dashboard:status:online' => 'daring', 'dashboard:status:update_available' => '{0} pembaruan tersedia!|{1} pembaruan tersedia!|[2,Inf] pembaruan tersedia!', 'dashboard:status:widget_title_default' => 'Status sistem', 'dashboard:widget_columns_description' => 'Lebar gawit, angka antara 1 sampai 10.', 'dashboard:widget_columns_error' => 'Silakan masukan angka lebar gawit antara 1 sampai 10.', 'dashboard:widget_columns_label' => 'Lebar :columns', 'dashboard:widget_inspector_description' => 'Susun gawit laporan', 'dashboard:widget_inspector_title' => 'Penyusunan gawit', 'dashboard:widget_label' => 'Gawit', 'dashboard:widget_new_row_description' => 'Letakkan gawit pada baris baru.', 'dashboard:widget_new_row_label' => 'Paksa baris baru', 'dashboard:widget_title_error' => 'Tajuk gawit diperlukan.', 'dashboard:widget_title_label' => 'Tajuk gawit', 'dashboard:widget_width' => 'Lebar', 'directory:create_fail' => 'Tidak dapat membuat direktori: :name', 'editor:code' => 'Kode', 'editor:code_folding' => 'Pelipat kode', 'editor:content' => 'Muatan', 'editor:description' => 'Jabaran', 'editor:enter_fullscreen' => 'Masuk mode layar penuh', 'editor:exit_fullscreen' => 'Keluar mode layar penuh', 'editor:filename' => 'Nama berkas', 'editor:font_size' => 'Ukuran fonta', 'editor:hidden' => 'Tersembunyi', 'editor:hidden_comment' => 'Laman tersembunyi hanya dapat diakses oleh pengguna back-end yang telah catat masuk.', 'editor:highlight_active_line' => 'Sorot baris aktif', 'editor:layout' => 'Tata letak', 'editor:markup' => 'Markup', 'editor:menu_description' => 'Penyesuaian penyunting kode dengan keinginan Andan, seperti ukuran fonta dan skema warna.', 'editor:menu_label' => 'Penyesuaian Penyunting Kode', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Jabaran Meta', 'editor:meta_title' => 'Judul Meta', 'editor:new_title' => 'Judul laman baru', 'editor:preview' => 'Tinjau', 'editor:settings' => 'Pengaturan', 'editor:show_gutter' => 'Tampilkan parit', 'editor:show_invisibles' => 'Tampilkan karakter tak terlihat', 'editor:tab_size' => 'Ukuran tab', 'editor:theme' => 'Skema warna', 'editor:title' => 'Judul', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Inden dengan tabs', 'editor:word_wrap' => 'Bungkus kata', 'event_log:created_at' => 'Tanggal & Waktu', 'event_log:empty_link' => 'Kosongkan catatan peristiwa', 'event_log:empty_loading' => 'Mengosongkan catatan peristiwa...', 'event_log:empty_success' => 'Berhasil mengosongkan catatan peristiwa.', 'event_log:hint' => 'Catatan ini menampilkan senarai kemungkinan galat yang terjadi pada aplikasi, seperti `exception` dan informasi awakutu.', 'event_log:id' => 'ID', 'event_log:id_label' => 'ID Peristiwa', 'event_log:level' => 'Tingkat', 'event_log:menu_description' => 'Tampilan catatan pesan sistem dengan rekam waktu dan rinciannya.', 'event_log:menu_label' => 'Catatan Peristiwa', 'event_log:message' => 'Pesan', 'event_log:return_link' => 'Kembali ke catatan peristiwa', 'field:invalid_type' => 'Jenis medan tidak valid digunakan :type.', 'field:options_method_not_exists' => 'Kelas model :model harus menentukan metode :method() yang mengembalikan opsi untuk borang medan \':field\'.', 'file:create_fail' => 'Tidak dapat membuat berkas: :name', 'fileupload:attachment' => 'Lampiran', 'fileupload:description_label' => 'Jabaran', 'fileupload:help' => 'Tambah judul dan jabaran untuk lampiran ini.', 'fileupload:title_label' => 'Judul', 'filter:all' => 'semua', 'form:action_confirm' => 'Anda yakin?', 'form:add' => 'Tambah', 'form:apply' => 'Terapkan', 'form:behavior_not_ready' => 'Behavior borang belum diinisialisasi, periksa apakah Anda telah memanggil initForm() pada controller Anda.', 'form:cancel' => 'Urung', 'form:close' => 'Tutup', 'form:concurrency_file_changed_description' => 'Berkas yang Anda sunting telah diubah pada diska oleh pengguna lain. Anda dapat memuat ulang berkas dan kehilangan perubahan yang telah Anda buat atau menimpa berkas pada diska.', 'form:concurrency_file_changed_title' => 'Berkas telah diubah', 'form:confirm' => 'Tetapkan', 'form:confirm_tab_close' => 'Anda yakin akan menutup tab? Perubahan belum tersimpan akan hilang.', 'form:create' => 'Buat', 'form:create_and_close' => 'Buat dan tutup', 'form:create_success' => ':name berhasil dibuat', 'form:create_title' => ':name Baru', 'form:creating' => 'Membuat...', 'form:creating_name' => 'Membuat :name...', 'form:delete' => 'Menghapus', 'form:delete_row' => 'Hapus Baris', 'form:delete_success' => ':name berhasil dihapus', 'form:deleting' => 'Menghapus...', 'form:deleting_name' => 'Menghapus :name...', 'form:field_off' => 'Off', 'form:field_on' => 'On', 'form:insert_row' => 'Sisipkan Baris', 'form:missing_definition' => 'Behavior borang tidak berisi medan untuk \':field\'.', 'form:missing_id' => 'Borang ID rekam belum ditentukan.', 'form:missing_model' => 'Behavior borang yang digunakan dalam :class tidak memiliki ketentuan model.', 'form:not_found' => 'Borang untuk rekam dengan ID :id tidak ditemukan.', 'form:ok' => 'OK', 'form:or' => 'atau', 'form:preview_no_files_message' => 'Berkas tidak terunggah', 'form:preview_title' => 'Tinjau :name', 'form:reload' => 'Muat ulang', 'form:reset_default' => 'Atur ulang ke asali', 'form:resetting' => 'Pengaturan ulang', 'form:resetting_name' => 'Pengaturan ulang :name', 'form:save' => 'Simpan', 'form:save_and_close' => 'Simpan dan tutup', 'form:saving' => 'Menyimpan...', 'form:saving_name' => 'Menyimpan :name...', 'form:select' => 'Pilih', 'form:select_all' => 'semua', 'form:select_none' => 'tiada', 'form:select_placeholder' => 'silakan pilih', 'form:undefined_tab' => 'Lain-lain', 'form:update_success' => ':name berhasil diperbarui', 'form:update_title' => 'Sunting :name', 'install:install_completing' => 'Menyelesaikan proses pemasangan', 'install:install_success' => 'Pengaya berhasil dipasang.', 'install:missing_plugin_name' => 'Silakan tentukan nama Pengaya yang akan dipasang.', 'install:plugin_label' => 'Pasang Pengaya', 'install:project_label' => 'Kaitkan Ke Proyek', 'layout:delete_confirm_multiple' => 'Anda yakin akan menghapus tata letak terpilih?', 'layout:delete_confirm_single' => 'Anda yakin akan menghapus tata letak ini?', 'layout:menu_label' => 'Tata letak', 'layout:new' => 'Tata letak baru', 'layout:no_list_records' => 'Tidak ada tata letak ditemukan', 'layout:not_found' => 'Tata letak \':name\' tidak ditemukan', 'layout:unsaved_label' => 'Tata letak tak tersimpan', 'list:behavior_not_ready' => 'Behavior Senarai belum diinisialisasi, periksa apakah Anda telah memanggil makeLists() pada controller Anda.', 'list:default_title' => 'Senarai', 'list:delete_selected' => 'Hapus yang terpilih', 'list:delete_selected_confirm' => 'Hapus rekam terpilih?', 'list:delete_selected_empty' => 'Tidak ada rekam terpilih untuk dihapus.', 'list:delete_selected_success' => 'Berhasil menghapus rekam terpilih.', 'list:invalid_column_datetime' => 'Nilai kolom \':column\' bukan objek DateTime, apakah Anda lupa merujukkan $dates dalam Model?', 'list:loading' => 'Memuat...', 'list:missing_column' => 'Tidak ada tetapan untuk kolom :columns.', 'list:missing_columns' => 'Senarai yang digunakan dalam :class tidak memiliki tetapan kolom senarai.', 'list:missing_definition' => 'Behavior Senarai tidak berisi kolom untuk \':field\'.', 'list:missing_model' => 'Behavior Senarai yang digunakan dalam :class tidak memiliki tetapan model.', 'list:next_page' => 'Berikutnya', 'list:no_records' => 'Tidak ada rekam dalam tampilan ini.', 'list:pagination' => 'Menampilkan rekam: :from s/d :to dari :total', 'list:prev_page' => 'Sebelumnya', 'list:records_per_page' => 'Rekam per laman', 'list:records_per_page_help' => 'Pilih jumlah rekam per laman untuk ditampilkan. Mohon diingat, jumlah rekam yang banyak dalam satu halaman dapat menurunkan kinerja.', 'list:search_prompt' => 'Pencarian...', 'list:setup_help' => 'Gunakan kotak cek untuk memilih kolom yang ingin ditampilkan pada senarai. Anda dapat mengubah posisi kolom dengan menyeretnya naik atau turun.', 'list:setup_title' => 'Pengaturan Senarai', 'locale:cs' => 'Czech', 'locale:de' => 'Jerman', 'locale:en' => 'Inggris', 'locale:es' => 'Spanyol', 'locale:es-ar' => 'Spanyol (Argentina)', 'locale:fa' => 'Persia', 'locale:fr' => 'Prancis', 'locale:hu' => 'Hungaria', 'locale:id' => 'Bahasa Indonesia', 'locale:it' => 'Italia', 'locale:ja' => 'Jepang', 'locale:nb-no' => 'Norwegian (Bokmål)', 'locale:nl' => 'Belanda', 'locale:pl' => 'Polandia', 'locale:pt-br' => 'Portugis (Brazil)', 'locale:ro' => 'Romania', 'locale:ru' => 'Rusia', 'locale:sk' => 'Slowakia (Slovakia)', 'locale:sv' => 'Swedia', 'locale:tr' => 'Turki', 'mail:general' => 'Umum', 'mail:log_file' => 'Berkas catatan', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Ranah Mailgun', 'mail:mailgun_domain_comment' => 'Silakan tentukan nama ranah Mailgun.', 'mail:mailgun_secret' => 'Mailgun Secret', 'mail:mailgun_secret_comment' => 'Masukan kunci API Mailgun.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill Secret', 'mail:mandrill_secret_comment' => 'Masukan kunci API Mandrill.', 'mail:menu_description' => 'Kelola susunan surat elektronik.', 'mail:menu_label' => 'Penyusunan surat', 'mail:method' => 'Metode Surat', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'Surel Pengirim', 'mail:sender_name' => 'Nama Pengirim', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Jalur Sendmail', 'mail:sendmail_path_comment' => 'Silakan tentukan jalur ke program sendmail.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'Alamat SMTP', 'mail:smtp_authorization' => 'Otorisasi SMTP diperlukan', 'mail:smtp_authorization_comment' => 'Gunakan kotak cek ini jika peladen SMTP Anda memerlukan otorisasi.', 'mail:smtp_password' => 'Sandi lewat', 'mail:smtp_port' => 'Porta SMTP', 'mail:smtp_ssl' => 'Koneksi SSL diperlukan', 'mail:smtp_username' => 'Nama pengguna', 'mail_templates:code' => 'Kode', 'mail_templates:code_comment' => 'Kode unik yang digunakan untuk merujuk acuan ini', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Teks polos', 'mail_templates:description' => 'Jabaran', 'mail_templates:layout' => 'Tata Letak', 'mail_templates:layouts' => 'Tata Letak', 'mail_templates:menu_description' => 'Ubah acuan surat yang dikirim kepada pengguna dan administrator, kelola tata letak surel.', 'mail_templates:menu_label' => 'Acuan Surat', 'mail_templates:menu_layouts_label' => 'Tata Letak Surat', 'mail_templates:name' => 'Nama', 'mail_templates:name_comment' => 'Nama unik yang digunakan untuk merujuk acuan ini', 'mail_templates:new_layout' => 'Tata Letak Baru', 'mail_templates:new_template' => 'Acuan Baru', 'mail_templates:return' => 'Kembali ke senarai acuan', 'mail_templates:subject' => 'Pokok Bahasan', 'mail_templates:subject_comment' => 'Pokok bahasan pesan surel', 'mail_templates:template' => 'Acuan', 'mail_templates:templates' => 'Acuan', 'mail_templates:test_send' => 'Kirim pesan ujicoba', 'mail_templates:test_success' => 'Pesan ujicoba berhasil dikirim.', 'maintenance:is_enabled' => 'Berdayakan mode perbaikan', 'maintenance:is_enabled_comment' => 'Bila diaktifkan, pengunjung website akan melihat laman terpilih berikut.', 'maintenance:settings_menu' => 'Mode perbaikan', 'maintenance:settings_menu_description' => 'Penyusunan laman mode perbaikan dan tukar pengaturan.', 'model:invalid_class' => 'Model :model yang digunakan pada :class tidak valid, model harus turunan kelas \\Model.', 'model:mass_assignment_failed' => 'Penetapan masal gagal untuk atribut Model \':attribute\'.', 'model:missing_id' => 'Tidak ada ID ditentukan untuk mencari rekam model.', 'model:missing_method' => 'Model \':class\' tidak berisi metode \':method\'.', 'model:missing_relation' => 'Model \':class\' tidak berisi tentuan untuk \':relation\'.', 'model:name' => 'Model', 'model:not_found' => 'Model \':class\' dengan ID :id tidak dapat ditemukan', 'myaccount:menu_description' => 'Perbarui rincian akun Anda seperti nama, alamat surel dan sandi lewat.', 'myaccount:menu_keywords' => 'security login', 'myaccount:menu_label' => 'Akunku', 'mysettings:menu_description' => 'Pengaturan yang berkaitan dengan akun administrasi Anda', 'mysettings:menu_label' => 'Pengaturanku', 'page:access_denied:cms_link' => 'Kembali ke back-end', 'page:access_denied:help' => 'Anda tidak memiliki izin untuk melihat laman ini.', 'page:access_denied:label' => 'Akses ditolak', 'page:custom_error:help' => 'Mohon maaf, ada sesuatu yang salah dan laman tidak dapat ditampilkan.', 'page:custom_error:label' => 'Lamat galat', 'page:delete_confirm_multiple' => 'Anda yakin akan menghapus laman terpilih?', 'page:delete_confirm_single' => 'Anda yakin akan menghapus laman ini?', 'page:invalid_url' => 'Format URL tidak valid. URL harus diawali dengan garis miring terbalik dan memuat huruf latin, angka dan simbol-simbol ini: ._-[]:?|/+*^$', 'page:menu_label' => 'Laman', 'page:new' => 'Laman baru', 'page:no_layout' => '-- tanpa tata letak --', 'page:no_list_records' => 'Tidak ada laman ditemukan', 'page:not_found:help' => 'Laman yang diminta tidak dapat ditemukan.', 'page:not_found:label' => 'Laman tidak ditemukan', 'page:unsaved_label' => 'Laman tak tersimpan', 'page:untitled' => 'Tak Berjudul', 'partial:delete_confirm_multiple' => 'Anda yakin akan menghapus bagian terpilih?', 'partial:delete_confirm_single' => 'Anda yakin akan menghapus bagian ini?', 'partial:invalid_name' => 'Nama bagian: :name tidak valid.', 'partial:menu_label' => 'Bagian', 'partial:new' => 'Bagian baru', 'partial:no_list_records' => 'Tidak ada bagian ditemukan', 'partial:not_found' => 'Potongan \':name\' tidak ditemukan.', 'partial:unsaved_label' => 'Bagian tak tersimpan', 'permissions:manage_assets' => 'Kelola aset', 'permissions:manage_content' => 'Kelola muatan', 'permissions:manage_layouts' => 'Kelola tata letak', 'permissions:manage_mail_settings' => 'Kelola pengaturan surat', 'permissions:manage_mail_templates' => 'Kelola acuan surat', 'permissions:manage_other_administrators' => 'Kelola administrator lainnya', 'permissions:manage_pages' => 'Kelola laman', 'permissions:manage_partials' => 'Kelola bagian', 'permissions:manage_software_updates' => 'Kelola pembaruan perangkat lunak', 'permissions:manage_system_settings' => 'Kelola pengaturan sistem', 'permissions:manage_themes' => 'Kelola tema', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => 'Tampilan dasbor', 'plugin:name:help' => 'Namai pengaya dengan kode uniknya. Contoh, RainLab.Blog', 'plugin:name:label' => 'Nama Pengaya', 'plugin:unnamed' => 'Pengaya Tak Bernama', 'plugins:disable_confirm' => 'Anda yakin akan melumpuhkannya?', 'plugins:disable_success' => 'Berhasil melumpuhkan pengaya tersebut.', 'plugins:disabled_help' => 'Pengaya yang dilumpuhkan akan diabaikan aplikasi.', 'plugins:disabled_label' => 'Lumpuhkan', 'plugins:enable_or_disable' => 'Berdaya atau lumpuh', 'plugins:enable_or_disable_title' => 'Berdayakan atau Lumpuhkan Pengaya', 'plugins:enable_success' => 'Berhasil memberdayakan pengaya tersebut.', 'plugins:manage' => 'Kelola pengaya', 'plugins:refresh' => 'Segarkan', 'plugins:refresh_confirm' => 'Anda yakin akan menyegarkannya?', 'plugins:refresh_success' => 'Berhasil menyegarkannya pengaya dalam sistem.', 'plugins:remove' => 'Lepaskan', 'plugins:remove_confirm' => 'Anda yakin akan melepaskannya?', 'plugins:remove_success' => 'Berhasil melepaskan pengaya tersebut dari sistem.', 'plugins:selected_amount' => 'Pengaya terpilih: :amount', 'plugins:unknown_plugin' => 'Pengaya telah dilepas dari sistem berkas.', 'project:attach' => 'Kaitkan Proyek', 'project:detach' => 'Lepas Proyek', 'project:detach_confirm' => 'Anda yakin akan melepaskan proyek ini?', 'project:id:help' => 'Bagaimana menemukan ID Proyek Anda', 'project:id:label' => 'ID Proyek', 'project:id:missing' => 'Silakan tentukan ID Proyek yang akan digunakan.', 'project:name' => 'Proyek', 'project:none' => 'Tidak ada', 'project:owner_label' => 'Pemilik', 'project:unbind_success' => 'Proyek telah berhasil dilepaskan.', 'relation:add' => 'Tambah', 'relation:add_a_new' => 'Tambah :name baru', 'relation:add_name' => 'Tambah :name', 'relation:add_selected' => 'Tambah terpilih', 'relation:cancel' => 'Urung', 'relation:close' => 'Tutup', 'relation:create' => 'Buat', 'relation:create_name' => 'Buat :name', 'relation:delete' => 'Hapus', 'relation:delete_confirm' => 'Anda yakin?', 'relation:delete_name' => 'Hapus :name', 'relation:help' => 'Klik pada butir untuk menambah', 'relation:invalid_action_multi' => 'Aksi ini tidak dapat dilaksanakan di dalam perhubungan banyak.', 'relation:invalid_action_single' => 'Aksi ini tidak dapat dilaksanakan di dalam perhubungan tungal.', 'relation:link' => 'Taut', 'relation:link_a_new' => 'Taut :name baru', 'relation:link_name' => 'Taut :name', 'relation:link_selected' => 'Taut terpilih', 'relation:missing_config' => 'Behavior hubungan tidak memiliki pengaturan untuk \':config\'.', 'relation:missing_definition' => 'Behavior hubungan tidak berisi tentuan untuk \':field\'.', 'relation:missing_model' => 'Behavior hubungan yang digunakan dalam :class tidak memiliki ketentuan model.', 'relation:preview' => 'Tinjau', 'relation:preview_name' => 'Tinjau :name', 'relation:related_data' => 'Terhubung data :name', 'relation:remove' => 'Lepas', 'relation:remove_name' => 'Lepas :name', 'relation:unlink' => 'Buka Taut', 'relation:unlink_confirm' => 'Anda yakin?', 'relation:unlink_name' => 'Buka Taut :name', 'relation:update' => 'Perbarui', 'relation:update_name' => 'Perbarui :name', 'request_log:count' => 'Hitungan', 'request_log:empty_link' => 'Kosongkan catatan permintaan', 'request_log:empty_loading' => 'Mengosongkan catatan permintaan...', 'request_log:empty_success' => 'Berhasil mengosongkan catatan permintaan.', 'request_log:hint' => 'Catatan ini menampilkan senarai permintaan dari peramban yang mungkin memerlukan perhatian. Contohnya, jika pengunjung membuka laman CMS yang tidak dapat ditemukan, rekam dibuat dengan kode status 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'ID Catatan', 'request_log:menu_description' => 'Tampilan permintaan buruk atau diarahkan ulang, seperti Lama tidak ditemukan (404).', 'request_log:menu_label' => 'Catatan permintaan', 'request_log:referer' => 'Perujuk', 'request_log:return_link' => 'Kembali ke catatan permintaan', 'request_log:status_code' => 'Status', 'request_log:url' => 'URL', 'server:connect_error' => 'Galat mengkoneksikan dengan peladen.', 'server:file_corrupt' => 'Berkas dari peladen tidak lengkap.', 'server:file_error' => 'Peladen gagal mengirimkan paket.', 'server:response_empty' => 'Tanggapan kosong dari peladen.', 'server:response_invalid' => 'Tanggapan tidak valid dari peladen.', 'server:response_not_found' => 'Peladen pembaruan tidak dapat ditemukan.', 'settings:menu_label' => 'Pengaturan', 'settings:missing_model' => 'Laman pengaturan kehilangan definisi Model.', 'settings:not_found' => 'Tidak dapat menemukan pengaturan yang ditentukan.', 'settings:return' => 'Kembali ke pengaturan sistem', 'settings:search' => 'Pencarian', 'settings:update_success' => 'Pengaturan untuk :name berhasil diperbarui.', 'sidebar:add' => 'Tambah', 'sidebar:search' => 'Pencarian...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Pelanggan', 'system:categories:events' => 'Peristiwa', 'system:categories:logs' => 'Pencatat', 'system:categories:mail' => 'Surat', 'system:categories:misc' => 'Lain-lain', 'system:categories:my_settings' => 'Pengaturanku', 'system:categories:shop' => 'Toko', 'system:categories:social' => 'Sosial', 'system:categories:system' => 'Sistem', 'system:categories:team' => 'Tim', 'system:categories:users' => 'Pengguna', 'system:menu_label' => 'Sistem', 'system:name' => 'Sistem', 'template:invalid_type' => 'Jenis acuan tidak diketahui.', 'template:not_found' => 'Acuan yang diminta tidak ditemukan.', 'template:saved' => 'Acuan berhasil disimpan.', 'theme:activate_button' => 'Aktifkan', 'theme:active:not_found' => 'Tema aktif tidak ditemukan.', 'theme:active:not_set' => 'Tema aktif tidak diatur.', 'theme:active_button' => 'Aktif', 'theme:customize_button' => 'Ubah suai', 'theme:edit:not_found' => 'Tema tersunting tidak ditemukan.', 'theme:edit:not_match' => 'Objek yang Anda coba akses tidak dimiliki oleh tema yang akan disunting. Silakan muat ulang laman.', 'theme:edit:not_set' => 'Tema tersunting tidak diatur.', 'theme:find_more_themes' => 'Temukan lebih banyak tema pada Toko Tema OctoberCMS.', 'theme:settings_menu' => 'Tema front-end', 'theme:settings_menu_description' => 'Tinjau senarai tema terpasang dan pilih tema aktif.', 'tooltips:preview_website' => 'Tinjau website', 'updates:check_label' => 'Periksa pembaruan', 'updates:core_build' => 'Binaan :build', 'updates:core_build_help' => 'Tersedia binaan terbaru.', 'updates:core_current_build' => 'Binaan kini', 'updates:core_downloading' => 'Mengunduh berkas-berkas aplikasi', 'updates:core_extracting' => 'Membongkar berkas aplikasi', 'updates:disabled' => 'Dilumpuhkan', 'updates:force_label' => 'Paksa pembaruan', 'updates:found:help' => 'Klik Pembaruan perangkat lunak untuk memulai proses pembaruan.', 'updates:found:label' => 'Terdapat pembaruan baru!', 'updates:menu_description' => 'Pembaruan sistem, pengelolaan dan pasang pengaya dan tema.', 'updates:menu_label' => 'Pembaruan', 'updates:name' => 'Pembaruan perangkat lunak', 'updates:none:help' => 'Tidak ditemukan pembaruan baru.', 'updates:none:label' => 'Tidak ada pembaruan', 'updates:plugin_author' => 'Penulis', 'updates:plugin_description' => 'Jabaran', 'updates:plugin_downloading' => 'Mengunduh pengaya: :name', 'updates:plugin_extracting' => 'Membongkar pengaya: :name', 'updates:plugin_name' => 'Nama', 'updates:plugin_version' => 'Versi', 'updates:plugin_version_none' => 'Pengaya baru', 'updates:plugins' => 'Pengaya', 'updates:retry_label' => 'Coba lagi', 'updates:theme_downloading' => 'Mengunduh tema: :name', 'updates:theme_extracting' => 'Membuka tema: :name', 'updates:theme_new_install' => 'Pemasangan tema baru.', 'updates:title' => 'Kelola Pembaruan', 'updates:update_completing' => 'Menyelesaikan proses pembaruan', 'updates:update_failed_label' => 'Pembaruan gagal', 'updates:update_label' => 'Pembaruan perangkat lunak', 'updates:update_loading' => 'Memuat pembaruan yang tersedia...', 'updates:update_success' => 'Proses pembaruan berhasil dilaksanakan.', 'user:allow' => 'Boleh', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Anda yakin akan menghapus administrator ini?', 'user:deny' => 'Tolak', 'user:email' => 'Surel', 'user:first_name' => 'Name Depan', 'user:full_name' => 'Nama Lengkap', 'user:group:code_comment' => 'Masukkan kode unik jika Anda ingin mengakses ini dengan API.', 'user:group:code_field' => 'Kode', 'user:group:delete_confirm' => 'Anda yakin akan menghapus grup administrator ini?', 'user:group:description_field' => 'Jabaran', 'user:group:is_new_user_default_field' => 'Tambahkan administrator baru pada grup ini secara asali', 'user:group:list_title' => 'Kelola Grup', 'user:group:menu_label' => 'Grup', 'user:group:name' => 'Grup', 'user:group:name_field' => 'Nama', 'user:group:new' => 'Grup Administrator Baru', 'user:group:return' => 'Kembali ke senarai grup', 'user:groups' => 'Grup', 'user:groups_comment' => 'Tentukan grup yang dimiliki pengguna ini.', 'user:inherit' => 'Mewarisi', 'user:last_name' => 'Name Belakang', 'user:list_title' => 'Kelola Administrator', 'user:login' => 'Nama Pengguna', 'user:menu_description' => 'Kelola pengguna adminstrator back-end, grup, dan perizinan.', 'user:menu_label' => 'Administrator', 'user:name' => 'Administrator', 'user:new' => 'Administrator Baru', 'user:password' => 'Sandi lewat', 'user:password_confirmation' => 'Tegaskan sandi lewat', 'user:permissions' => 'Izin', 'user:preferences:not_authenticated' => 'Tidak ada pengguna berotentikasi untuk memuat atau menyimpan pengaturan.', 'user:return' => 'Kembali ke senarai administrator', 'user:send_invite' => 'Kirim undangan dengan surel', 'user:send_invite_comment' => 'Gunakan kotak cek ini untuk mengirimi pengguna undangan surel', 'user:superuser' => 'Pengguna Super', 'user:superuser_comment' => 'Centang kotak ini untuk memperkenankan pengguna ini mengakses semua area.', 'validation:accepted' => 'Isian :attribute harus diterima.', 'validation:active_url' => 'Isian :attribute bukan URL yang valid.', 'validation:after' => 'Isian :attribute harus tanggal setelah :date.', 'validation:alpha' => 'Isian :attribute hanya boleh berisi huruf.', 'validation:alpha_dash' => 'Isian :attribute hanya boleh berisi huruf, angka, dan strip.', 'validation:alpha_num' => 'Isian :attribute hanya boleh berisi huruf dan angka.', 'validation:array' => 'Isian :attribute harus berupa sebuah larik (array).', 'validation:before' => 'Isian :attribute harus tanggal sebelum :date.', 'validation:between:array' => 'Isian :attribute harus antara :min dan :max butir.', 'validation:between:file' => 'Isian :attribute harus antara :min dan :max kilobita.', 'validation:between:numeric' => 'Isian :attribute harus antara :min dan :max.', 'validation:between:string' => 'Isian :attribute harus antara :min dan :max karakter.', 'validation:boolean' => 'Isian :attribute harus berupa true atau false', 'validation:confirmed' => 'Konfirmasi :attribute tidak cocok.', 'validation:date' => 'Isian :attribute bukan tanggal yang valid.', 'validation:date_format' => 'Isian :attribute tidak sesuai dengan format :format.', 'validation:different' => 'Isian :attribute dan :other harus berbeda.', 'validation:digits' => 'Isian :attribute harus berupa angka :digits.', 'validation:digits_between' => 'Isian :attribute harus antara angka :min dan :max.', 'validation:email' => 'Isian :attribute harus berupa alamat surel yang valid.', 'validation:exists' => 'Isian :attribute yang dipilih tidak valid.', 'validation:image' => 'Isian :attribute harus berupa gambar.', 'validation:in' => 'Isian :attribute yang dipilih tidak valid.', 'validation:integer' => 'Isian :attribute harus merupakan bilangan bulat.', 'validation:ip' => 'Isian :attribute harus berupa alamat IP yang valid.', 'validation:max:array' => 'Isian :attribute tidak boleh lebih dari :max butir.', 'validation:max:file' => 'Isian :attribute tidak boleh lebih dari :max kilobita.', 'validation:max:numeric' => 'Isian :attribute tidak boleh lebih dari :max.', 'validation:max:string' => 'Isian :attribute tidak boleh lebih dari :max karakter.', 'validation:mimes' => 'Isian :attribute harus berkas berjenis : :values.', 'validation:min:array' => 'Isian :attribute minimal :min butir.', 'validation:min:file' => 'Isian :attribute minimal :min kilobita.', 'validation:min:numeric' => 'Isian :attribute minimal :min.', 'validation:min:string' => 'Isian :attribute minimal :min karakter.', 'validation:not_in' => 'Isian :attribute yang dipilih tidak valid.', 'validation:numeric' => 'Isian :attribute harus berupa angka.', 'validation:regex' => 'Format isian :attribute tidak valid.', 'validation:required' => 'Bidang isian :attribute wajib diisi.', 'validation:required_if' => 'Bidang isian :attribute wajib diisi bila :other adalah :value.', 'validation:required_with' => 'Bidang isian :attribute wajib diisi bila terdapat :values.', 'validation:required_with_all' => 'Bidang isian :attribute wajib diisi bila terdapat :values.', 'validation:required_without' => 'Bidang isian :attribute wajib diisi bila tidak terdapat :values.', 'validation:required_without_all' => 'Bidang isian :attribute wajib diisi bila tidak terdapat ada :values.', 'validation:same' => 'Isian :attribute dan :other harus sama.', 'validation:size:array' => 'Isian :attribute harus mengandung :size butir.', 'validation:size:file' => 'Isian :attribute harus berukuran :size kilobita.', 'validation:size:numeric' => 'Isian :attribute harus berukuran :size.', 'validation:size:string' => 'Isian :attribute harus berukuran :size karakter.', 'validation:unique' => 'Isian :attribute sudah ada sebelumnya.', 'validation:url' => 'Format isian :attribute tidak valid.', 'warnings:extension' => 'Ekstensi PHP :name tidak terpasang. Silakan pasang pustaka ini dan aktifkan ekstensi.', 'warnings:permissions' => 'Direktori :name atau direktori di bawahnya tidak dapat ditulis oleh PHP. Silakan atur hak akses webserver yang sesuai pada direktori ini.', 'warnings:tips' => 'Kiat pengaturan sistem', 'warnings:tips_description' => 'Ada masalah yang perlu Anda perhatikan untuk mengatur sistem dengan tepat.', 'widget:not_bound' => 'Gawit dengan kelas bernama \':name\' belum terikat pada controller', 'widget:not_registered' => 'Kelas gawit bernama \':name\' belum terdaftar', 'zip:extract_failed' => 'Tidak dapat membuka berkas inti \':file\'.']);
示例#15
0
文件: nbno.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Tid', 'access_log:email' => 'E-postadresse', 'access_log:first_name' => 'Fornavn', 'access_log:hint' => 'Denne loggen viser en liste over vellykkede administratorinnlogginger. Innloggingene blir lagret i 60 dager.', 'access_log:ip_address' => 'IP-adresse', 'access_log:last_name' => 'Etternavn', 'access_log:login' => 'Brukernavn', 'access_log:menu_description' => 'Se en liste over vellykkede innlogginger på backend.', 'access_log:menu_label' => 'Aksesslogg', 'account:apply' => 'Fortsett', 'account:cancel' => 'Avbryt', 'account:delete' => 'Slett', 'account:email_placeholder' => 'e-postadresse', 'account:enter_email' => 'Din e-postadresse', 'account:enter_login' => 'Ditt brukernavn', 'account:enter_new_password' => 'Skriv inn nytt passord', 'account:forgot_password' => 'Glemt passordet ditt?', 'account:login' => 'Logg inn', 'account:login_placeholder' => 'brukernavn', 'account:ok' => 'OK', 'account:password_placeholder' => 'passord', 'account:password_reset' => 'Gjenopprett passord', 'account:reset' => 'Nullstill', 'account:reset_error' => 'Ugyldig data. Vennligst prøv igjen!', 'account:reset_fail' => 'Kunne ikke gjenopprette passord!', 'account:reset_success' => 'Ditt passord har blitt gjenopprettet. Du kan nå logge inn.', 'account:restore' => 'Gjenopprett', 'account:restore_error' => 'Brukernavnet \':login\' eksisterer ikke.', 'account:restore_success' => 'En e-post har blitt sendt til din e-postadresse med informasjon om gjenoppretting av passord.', 'account:sign_out' => 'Logg ut', 'ajax_handler:invalid_name' => 'Ugyldig AJAX handler navn: :name.', 'ajax_handler:not_found' => 'AJAX handler \':name\' ble ikke funnet.', 'app:name' => 'October CMS', 'app:tagline' => 'Getting back to basics', 'asset:already_exists' => 'Fil eller mappe med samme navn eksiterer allerede', 'asset:create_directory' => 'Opprett mappe', 'asset:create_file' => 'Opprett fil', 'asset:delete' => 'Slett', 'asset:destination_not_found' => 'Målmappe ikke funnet', 'asset:directory_name' => 'Mappenavn', 'asset:directory_popup_title' => 'Ny mappe', 'asset:drop_down_add_title' => 'Legg til...', 'asset:drop_down_operation_title' => 'Handling...', 'asset:error_deleting_dir' => 'Kunne ikke slette :name.', 'asset:error_deleting_dir_not_empty' => 'Kunne ikke slette :name. Mappen er ikke tom.', 'asset:error_deleting_directory' => 'Kunne ikke slette original mappe :dir', 'asset:error_deleting_file' => 'Kunne ikke slette :name.', 'asset:error_moving_directory' => 'Kunne ikke flytte mappen :dir', 'asset:error_moving_file' => 'Kunne ikke flytte filen :file', 'asset:error_renaming' => 'Kunne ikke gi filen eller mappen nytt navn', 'asset:error_uploading_file' => 'Kunne ikke laste opp filen \':name\': :error', 'asset:file_not_valid' => 'Filen er ugyldig', 'asset:invalid_name' => 'Navnet kan kun inneholde tall, latinske bokstaver, mellomrom og følgende symbol: ._-', 'asset:invalid_path' => 'Mappestien kan kun inneholde tall, latinske bokstaver, mellomrom og følgende symbol: ._-/', 'asset:menu_label' => 'Ressurser', 'asset:move' => 'Flytt', 'asset:move_button' => 'Flytt', 'asset:move_destination' => 'Målmappe', 'asset:move_please_select' => 'velg', 'asset:move_popup_title' => 'Flytt ressurser', 'asset:name_cant_be_empty' => 'Navnet kan ikke være tomt', 'asset:new' => 'Ny fil', 'asset:original_not_found' => 'Original fil eller mappe ikke funnet', 'asset:path' => 'Mål', 'asset:rename' => 'Nytt navn', 'asset:rename_new_name' => 'Nytt navn', 'asset:rename_popup_title' => 'Nytt navn', 'asset:select' => 'Velg', 'asset:select_destination_dir' => 'Vennligst velg en målmappe', 'asset:selected_files_not_found' => 'Valgte filer ikke funnet', 'asset:too_large' => 'Opplastet fil er for stor. Maksimum filstørrelse er :max_size', 'asset:type_not_allowed' => 'Kun følgende filtyper er tillat: :allowed_types', 'asset:unsaved_label' => 'Ulagrede ressurser', 'asset:upload_files' => 'Last opp fil(er)', 'auth:title' => 'Administrasjonsområde', 'backend_preferences:locale' => 'Språk', 'backend_preferences:locale_comment' => 'Velg ditt ønsket språk.', 'backend_preferences:menu_description' => 'Administrer kontoinnstillinger som for eksempel språk.', 'backend_preferences:menu_label' => 'Backend-innstillinger', 'behavior:missing_property' => 'Klassen :class må definere egenskapen $:property som brukes av :behavior -egenskapen.', 'branding:app_name' => 'App-navn', 'branding:app_name_description' => 'Dette navnet vises i tittelområdet backend.', 'branding:app_tagline' => 'App Tagline', 'branding:app_tagline_description' => 'Denne teksten vises på innloggingssiden backend.', 'branding:brand' => 'Merkevare', 'branding:colors' => 'Farger', 'branding:custom_stylesheet' => 'Eget stilsett', 'branding:logo' => 'Logo', 'branding:logo_description' => 'Last opp logo for å bruke backend.', 'branding:menu_description' => 'Tilpass administratorområdet, for eksempel navn, farger og logo.', 'branding:menu_label' => 'Tilpass backend', 'branding:primary_dark' => 'Primær (Mørk)', 'branding:primary_light' => 'Primær (Lys)', 'branding:secondary_dark' => 'Sekundær (Mørk)', 'branding:secondary_light' => 'Sekundær (Lys)', 'branding:styles' => 'Stilsett', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Templates som ble slettet: :count.', 'cms_object:error_creating_directory' => 'Kunne ikke opprette mappen :name. Vennligst sjekk skriverettigheter på serveren.', 'cms_object:error_deleting' => 'Kunne ikke slette filen \':name\'. Vennligst sjekk skriverettigheter på serveren.', 'cms_object:error_saving' => 'Kunne ikke lagre filen \':name\'. Vennligst sjekk skriverettigheter på serveren.', 'cms_object:file_already_exists' => 'Filen \':name\' eksisterer allerede.', 'cms_object:file_name_required' => 'Filnavnfeltet er obligatorisk.', 'cms_object:invalid_file' => 'Ugyldig filnavn: :name. Filnavn kan kun inneholde alfanumeriske tegn, understrek, bindestrek og punktum. Eksempel: page.htm, page, subdirectory/page', 'cms_object:invalid_file_extension' => 'Ugyldig filtype: :invalid. Tillatte filtyper er: :allowed.', 'cms_object:invalid_property' => 'Egenskapen \':name\' kan ikke settes', 'combiner:not_found' => 'Kombinasjonsfilen \':name\' ble ikke funnet.', 'component:alias' => 'Alias', 'component:alias_description' => 'Et unikt navn gitt til komponenten for å benytte den i sider og layouts.', 'component:invalid_request' => 'Templaten kan ikke lagres på grunn av ugyldig komponentdata.', 'component:menu_label' => 'Komponenter', 'component:method_not_found' => 'Komponenten \':name\' inneholder ikke en metode \':method\'.', 'component:no_description' => 'Ingen beskrivelse spesifisert', 'component:no_records' => 'Ingen komponenter funnet', 'component:not_found' => 'Komponenten \':name\' ble ikke funnet.', 'component:unnamed' => 'Navnløs', 'component:validation_message' => 'Komponentaliaser kan kun inneholde latinske symboler, tall og understreker. Aliaser skal starte med et latinsk symbol.', 'config:not_found' => 'Fant ikke konfigurasjonsfilen :file definert for for :location.', 'config:required' => 'Konfigurasjon brukt i :location må angi verdien \':property\'.', 'content:delete_confirm_multiple' => 'Vil du virkelig slette valgte innholdsfiler eller -mapper?', 'content:delete_confirm_single' => 'Vil du virkelig slette denne innholdsfilen eller -mappen?', 'content:menu_label' => 'Innhold', 'content:new' => 'Ny innholdsfil', 'content:no_list_records' => 'No content files found', 'content:not_found_name' => 'Innholdsfilen \':name\' ble ikke funnet.', 'content:unsaved_label' => 'Ulagret innhold', 'dashboard:add_widget' => 'Legg til widget', 'dashboard:columns' => '{1} kolonne|[2,Inf] kolonner', 'dashboard:full_width' => 'full bredde', 'dashboard:menu_label' => 'Dashboard', 'dashboard:status:maintenance' => 'in maintenance', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} oppdateringer tilgjengelig!|{1} oppdatering tilgjengelig!|[2,Inf] oppdateringer tilgjengelig!', 'dashboard:status:widget_title_default' => 'Systemstatus', 'dashboard:widget_columns_description' => 'Bredden på widgeten. Tall mellom 1 og 10.', 'dashboard:widget_columns_error' => 'Vennligst spesifiser bredden på weidgeten som et tall mellom 1 og 10.', 'dashboard:widget_columns_label' => 'Bredde :columns', 'dashboard:widget_inspector_description' => 'Konfigurer widgeten', 'dashboard:widget_inspector_title' => 'Widget-konfigurasjon', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'Plasserer widgeten i en ny rad.', 'dashboard:widget_new_row_label' => 'Tving ny rad', 'dashboard:widget_title_error' => 'Tittel er obligatorisk.', 'dashboard:widget_title_label' => 'Widget-tittel', 'dashboard:widget_width' => 'Bredde', 'directory:create_fail' => 'Kan ikke opprette mappen: :name', 'editor:code' => 'Kode', 'editor:code_folding' => 'Code folding', 'editor:content' => 'Innhold', 'editor:description' => 'Beskrivelse', 'editor:enter_fullscreen' => 'Fullskjermmodus', 'editor:exit_fullscreen' => 'Avslutt fullskjermmodus', 'editor:filename' => 'Filnavn', 'editor:font_size' => 'Tekststørrelse', 'editor:hidden' => 'Skjult', 'editor:hidden_comment' => 'Kun backend-brukere har tilgang til skjulte sider.', 'editor:highlight_active_line' => 'Fremhev aktiv linje', 'editor:layout' => 'Layout', 'editor:markup' => 'Markup', 'editor:menu_description' => 'Endre teksteditor-innstillingene dine, for eksemplem tekststørrelse og fargevalg.', 'editor:menu_label' => 'Teksteditor-innstillinger', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta-beskrivelse', 'editor:meta_title' => 'Meta-tittel', 'editor:new_title' => 'Ny side tittel', 'editor:preview' => 'Forhåndsvis', 'editor:settings' => 'Innstillinger', 'editor:show_gutter' => 'Vis linjenummer', 'editor:show_invisibles' => 'Vis usynlige tegn', 'editor:tab_size' => 'Tab-størrelse', 'editor:theme' => 'Fargevalg', 'editor:title' => 'Tittel', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Inntrykk med tabs', 'editor:word_wrap' => 'Word wrap', 'event_log:created_at' => 'Tid', 'event_log:empty_link' => 'Tøm hendelseslogg', 'event_log:empty_loading' => 'Tømmer hendelseslogg...', 'event_log:empty_success' => 'Hendelsesloggen er tømt.', 'event_log:hint' => 'Denne loggen viser en liste over potensielle feilmeldinger som oppstår i applikasjonen, for eksempel unntak og debugginginformasjon.', 'event_log:id' => 'ID', 'event_log:id_label' => 'Hendelses-ID', 'event_log:level' => 'Nivå', 'event_log:menu_description' => 'Se systemloggmeldinger med registrert tid og detaljer.', 'event_log:menu_label' => 'Hendelseslogg', 'event_log:message' => 'Melding', 'event_log:return_link' => 'Tilbake til hendelseslogg', 'field:invalid_type' => 'Ugyldig felttype brukt :type.', 'field:options_method_not_exists' => 'Modellklassen :model må definere en metode :method() som returnerer vilkår for formfeltet \':field\'.', 'file:create_fail' => 'Kan ikke opprette filen: :name', 'fileupload:attachment' => 'Vedlegg', 'fileupload:description_label' => 'Beskrivelse', 'fileupload:help' => 'Legg til tittel og beskrivelse for dette vedlegget.', 'fileupload:title_label' => 'Tittel', 'filter:all' => 'alle', 'form:action_confirm' => 'Er du sikker?', 'form:add' => 'Legg til', 'form:apply' => 'Fortsett', 'form:behavior_not_ready' => 'Skjemaegenskap har ikke blitt initialisert, sjekk at du har kalt initForm() i kontrolleren.', 'form:cancel' => 'Avbryt', 'form:close' => 'Lukk', 'form:concurrency_file_changed_description' => 'Filen du endrer på har blitt endret på disken av en annen bruker. Du kan enten oppdatere filen og tape endret data eller overskrive filen på disken.', 'form:concurrency_file_changed_title' => 'Fil endret', 'form:confirm' => 'Bekreft', 'form:confirm_tab_close' => 'Vil du virkelig lukke fanen? Endringer som ikke er lagret vil gå tapt.', 'form:create' => 'Opprett', 'form:create_and_close' => 'Opprett og lukk', 'form:create_success' => ':name har blitt opprettet', 'form:create_title' => 'Ny :name', 'form:creating' => 'Oppretter...', 'form:creating_name' => 'Oppretter :name...', 'form:delete' => 'Slett', 'form:delete_row' => 'Slett rad', 'form:delete_success' => ':name har blitt slettet', 'form:deleting' => 'Sletter...', 'form:deleting_name' => 'Sletter :name...', 'form:field_off' => 'Av', 'form:field_on' => 'På', 'form:insert_row' => 'Sett inn rad', 'form:missing_definition' => 'Skjemaegenskapen mangler et felt for \':field\'.', 'form:missing_id' => 'Record ID for skjemaet har ikke blitt spesifisert.', 'form:missing_model' => 'Skjemaegenskapen brukt i :class mangler en modell.', 'form:not_found' => 'Record ID :id ble ikke funnet.', 'form:ok' => 'OK', 'form:or' => 'eller', 'form:preview_no_files_message' => 'Filer er ikke opplastet', 'form:preview_title' => 'Forhåndsvis :name', 'form:reload' => 'Oppdater', 'form:reset_default' => 'Tilbakestill', 'form:resetting' => 'Tilbakestiller', 'form:resetting_name' => 'Tilbakestiller :name', 'form:save' => 'Lagre', 'form:save_and_close' => 'Lagre og lukk', 'form:saving' => 'Lagrer...', 'form:saving_name' => 'Lagrer :name...', 'form:select' => 'Velg', 'form:select_all' => 'alle', 'form:select_none' => 'ingen', 'form:select_placeholder' => 'velg', 'form:undefined_tab' => 'Div.', 'form:update_success' => ':name har blitt endret', 'form:update_title' => 'Endre :name', 'install:install_completing' => 'Fullfører installasjonen', 'install:install_success' => 'Plugin har blitt installert.', 'install:missing_plugin_name' => 'Vennligst oppgi pluginens navn.', 'install:missing_theme_name' => 'Oppgi tema-navn for å installere.', 'install:plugin_label' => 'Installér', 'install:project_label' => 'Tilkoble prosjekt', 'install:theme_label' => 'Installér tema', 'layout:delete_confirm_multiple' => 'Vil du virkelig slette valgte layouts?', 'layout:delete_confirm_single' => 'Vil du virkelig slette denne layout?', 'layout:menu_label' => 'Layouts', 'layout:new' => 'Ny layout', 'layout:no_list_records' => 'Ingen layouts funnet', 'layout:not_found_name' => 'Layouten \':name\' ble ikke funnet', 'layout:unsaved_label' => 'Ulagrede layouts', 'list:behavior_not_ready' => 'List-egenskapen har ikke blir initialisert, sjekk at du har kalt makeList() i kontrolleren.', 'list:default_title' => 'Liste', 'list:delete_selected' => 'Slett valgte', 'list:delete_selected_confirm' => 'Vil du slette valgte rader?', 'list:delete_selected_empty' => 'Det er ingen valgte rader å slette.', 'list:delete_selected_success' => 'Rader har blitt slettet.', 'list:invalid_column_datetime' => 'Kolonneverdien \':column\' er ikke et DateTime-objekt, mangler du en $dates referanse i modellen?', 'list:loading' => 'Laster...', 'list:missing_column' => 'Det er ingen kolonnedefinisjoner for :columns.', 'list:missing_columns' => 'List brukt i :class har ingen definerte kolonner.', 'list:missing_definition' => 'List-egenskapen inneholder ingen kolonner for \':field\'.', 'list:missing_model' => 'List-egenskapen brukt i :class mangler en modelldefinisjon.', 'list:next_page' => 'Neste side', 'list:no_records' => 'Det er ingen treff i denne visningen.', 'list:pagination' => 'Viser rader: :from-:to av :total', 'list:prev_page' => 'Forrige side', 'list:records_per_page' => 'Rader per side', 'list:records_per_page_help' => 'Velg antall rader som skal vises på hver side. Vær oppmerksom på at et høyt antall kan redusere ytelsen på siden.', 'list:search_prompt' => 'Søk...', 'list:setup_help' => 'Kryss av sjekkboksene for å velge hvilke kolonner du vil ha i listen. Du kan sortere kolonnene ved å dra sjekkboksene opp eller ned.', 'list:setup_title' => 'Listeinnstillinger', 'locale:cs' => 'Czech', 'locale:de' => 'Tysk', 'locale:en' => 'Engelsk', 'locale:es' => 'Spansk', 'locale:es-ar' => 'Spansk (Argentina)', 'locale:fa' => 'Persisk', 'locale:fr' => 'Fransk', 'locale:hu' => 'Ungarsk', 'locale:id' => 'Indonesisk', 'locale:it' => 'Italiensk', 'locale:ja' => 'Japansk', 'locale:nb-no' => 'Norsk (Bokmål)', 'locale:nl' => 'Nederlandsk', 'locale:pl' => 'Polsk', 'locale:pt-br' => 'Brasiliansk Portugisk', 'locale:ro' => 'Rumensk', 'locale:ru' => 'Russisk', 'locale:sk' => 'Slovak (Slovakia)', 'locale:sv' => 'Svensk', 'locale:tr' => 'Tyrkisk', 'locale:zh-cn' => 'Kinesisk (Kina)', 'locale:zh-tw' => 'Chinese (Taiwan)', 'mail:general' => 'Generelt', 'mail:log_file' => 'Loggfil', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun-domene', 'mail:mailgun_domain_comment' => 'Vennligst oppgi Mailgun-domenenavnet.', 'mail:mailgun_secret' => 'Mailgun Secret', 'mail:mailgun_secret_comment' => 'Oppgi din Mailgun-API-nøkkel.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill Secret', 'mail:mandrill_secret_comment' => 'Enter your Mandrill API key.', 'mail:menu_description' => 'Administrere e-postinnstillinger.', 'mail:menu_label' => 'E-postinnstillinger', 'mail:method' => 'E-postmetode', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'Avsenderens e-postadresse', 'mail:sender_name' => 'Avsendernavn', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Sendmail-sti', 'mail:sendmail_path_comment' => 'Vennligst oppgi stien til sendmail-programmet.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'SMTP-adresse', 'mail:smtp_authorization' => 'SMTP-autentisering kreves', 'mail:smtp_authorization_comment' => 'Kryss av dersom SMTP-tjeneren krever autentisering.', 'mail:smtp_password' => 'Passord', 'mail:smtp_port' => 'SMTP-port', 'mail:smtp_ssl' => 'SSL-tilkobling påkrevd', 'mail:smtp_username' => 'Brukernavn', 'mail_templates:code' => 'Code', 'mail_templates:code_comment' => 'Unik kode som tilknyttes denne malen', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Klartekst', 'mail_templates:description' => 'Beskrivelse', 'mail_templates:layout' => 'Layout', 'mail_templates:layouts' => 'Layouts', 'mail_templates:menu_description' => 'Modifisere e-postmalene som blir sendt til brukere og administratorer, administrere e-postlayouts.', 'mail_templates:menu_label' => 'E-postmaler', 'mail_templates:menu_layouts_label' => 'E-postlayouts', 'mail_templates:name' => 'Navn', 'mail_templates:name_comment' => 'Unikt navn som tilknyttes denne layouten', 'mail_templates:new_layout' => 'Ny layout', 'mail_templates:new_template' => 'Ny mal', 'mail_templates:return' => 'Tilbake til malliste', 'mail_templates:subject' => 'Emne', 'mail_templates:subject_comment' => 'Emnet til e-posten', 'mail_templates:template' => 'Mal', 'mail_templates:templates' => 'Maler', 'mail_templates:test_send' => 'Send testmelding', 'mail_templates:test_success' => 'Testmeldingen har blitt sendt.', 'maintenance:is_enabled' => 'Aktivér vedlikeholdsmodus', 'maintenance:is_enabled_comment' => 'Når aktivert, vil besøkende se følgende side:', 'maintenance:settings_menu' => 'Vedlikeholdsmodus', 'maintenance:settings_menu_description' => 'Konfigurer vedlikeholdsmodussiden og endre innstillinger.', 'media:add_folder' => 'Ny mappe', 'media:click_here' => 'Klikk her', 'media:crop_and_insert' => 'Crop & Insert', 'media:delete' => 'Slett', 'media:delete_confirm' => 'Vil du virkelig slette valgte fil(er)?', 'media:delete_empty' => 'Ingen filer er valgt.', 'media:display' => 'Vis', 'media:empty_library' => 'Mediabiblioteket er tomt. Last opp filer eller opprett mapper for å komme i gang.', 'media:error_creating_folder' => 'Kunne ikke opprette ny mappe', 'media:error_renaming_file' => 'Kunne ikke gi filen nytt navn.', 'media:filter_audio' => 'Lyd', 'media:filter_documents' => 'Dokumenter', 'media:filter_everything' => 'Alle filer', 'media:filter_images' => 'Bilder', 'media:filter_video' => 'Video', 'media:folder' => 'Mappe', 'media:folder_name' => 'Mappenavn', 'media:folder_or_file_exist' => 'En fil eller mappe med det navnet eksisterer allerede.', 'media:folder_size_items' => 'fil(er)', 'media:height' => 'Høyde', 'media:image_size' => 'Bildestørrelse:', 'media:insert' => 'Insert', 'media:invalid_path' => 'Ugyldig filsti: \':path\'.', 'media:last_modified' => 'Sist endret', 'media:library' => 'Bibliotek', 'media:menu_label' => 'Media', 'media:move' => 'Flytt', 'media:move_dest_src_match' => 'Please select another destination folder.', 'media:move_destination' => 'Målmappe', 'media:move_empty' => 'Vennligst velg filer å flytte.', 'media:move_popup_title' => 'Flytt filer eller mapper', 'media:multiple_selected' => 'Flere filer er valgt.', 'media:new_folder_title' => 'Ny mappe', 'media:no_files_found' => 'Ingen filer ble funnet.', 'media:nothing_selected' => 'Ingenting er valgt.', 'media:order_by' => 'Sorter etter', 'media:please_select_move_dest' => 'Vennligst velg en målmappe.', 'media:public_url' => 'URL', 'media:resize' => 'Endre størrelse...', 'media:resize_image' => 'Endre bildestørrelse', 'media:restore' => 'Angre endringer', 'media:return_to_parent' => 'Gå til forrige mappe', 'media:return_to_parent_label' => 'Gå opp ..', 'media:search' => 'Søk', 'media:select_single_image' => 'Vennligst velg ett enkelt bilde.', 'media:selected_size' => 'Valgt:', 'media:selection_mode' => 'Valgmodus', 'media:selection_mode_fixed_ratio' => 'Fast forhold', 'media:selection_mode_fixed_size' => 'Fast størrelse', 'media:selection_mode_normal' => 'Normal', 'media:selection_not_image' => 'Valgte fil er ikke et bilde.', 'media:size' => 'Størrelse', 'media:thumbnail_error' => 'Kunne ikke lage thumbnail.', 'media:title' => 'Tittel', 'media:upload' => 'Last opp', 'media:uploading_complete' => 'Opplasting fullført', 'media:uploading_file_num' => 'Laster opp :number fil(er)...', 'media:width' => 'Bredde', 'model:invalid_class' => 'Modellen :model som brukes i :class er ugyldig, den må arve \\Model-klassen.', 'model:mass_assignment_failed' => 'Mass assignment feilet for modell-attributten \':attribute\'.', 'model:missing_id' => 'Det er ingen ID spesifisert for å se opp modellen.', 'model:missing_method' => 'Modellen \':class\' mangler metoden \':method\'.', 'model:missing_relation' => 'Modellen \':class\' mangler en definisjon for \':relation\'.', 'model:name' => 'Modell', 'model:not_found' => 'Modellen \':class\' med ID-en :id ble ikke funnet', 'myaccount:menu_description' => 'Oppdater dine kontodetaljer, som navn, e-postadresse og passord.', 'myaccount:menu_keywords' => 'sikkerhetsinnlogging', 'myaccount:menu_label' => 'Min konto', 'mysettings:menu_description' => 'Innstillinger relatert til din administratorkonto', 'mysettings:menu_label' => 'Mine innstillinger', 'page:access_denied:cms_link' => 'Tilbake til backend', 'page:access_denied:help' => 'Du har ikke nødvendig tilgang til å se denne siden.', 'page:access_denied:label' => 'Ingen tilgang', 'page:custom_error:help' => 'Noe gikk galt. Siden kan ikke vises.', 'page:custom_error:label' => 'Side-feil', 'page:delete_confirm_multiple' => 'Vil du virkelig slette valgte sider?', 'page:delete_confirm_single' => 'Vil du virkelig slette denne siden?', 'page:invalid_url' => 'Ugyldig URL-format. URL-en skal starte med skråstrek og kan inneholde tall, latinske bokstaver og følgende symbol: ._-[]:?|/+*^$', 'page:menu_label' => 'Sider', 'page:new' => 'Ny side', 'page:no_layout' => '-- ingen layout --', 'page:no_list_records' => 'Ingen sider funnet', 'page:not_found:help' => 'Den forespurte siden ble ikke funnet.', 'page:not_found:label' => 'Side ikke funnet', 'page:not_found_name' => 'Siden \':name\' ble ikke funnet', 'page:unsaved_label' => 'Ulagrede sider', 'page:untitled' => 'Uten navn', 'partial:delete_confirm_multiple' => 'Vil du virkelig slette valgte partials?', 'partial:delete_confirm_single' => 'Vil du virkelig slette denne partialen?', 'partial:invalid_name' => 'Ugyldig partial navn: :name.', 'partial:menu_label' => 'Partials', 'partial:new' => 'Ny partial', 'partial:no_list_records' => 'Ingen partials funnet', 'partial:not_found_name' => 'En partial ved navn \':name\' ble ikke funnet.', 'partial:unsaved_label' => 'Ulagrede partials', 'permissions:access_logs' => 'Se systemlogger', 'permissions:manage_assets' => 'Administrer ressurser', 'permissions:manage_branding' => 'Tilpasse backend', 'permissions:manage_content' => 'Administrer innholdsfiler', 'permissions:manage_layouts' => 'Administrer layouts', 'permissions:manage_mail_settings' => 'Administrer e-postinnstillinger', 'permissions:manage_mail_templates' => 'Administrer e-postmaler', 'permissions:manage_other_administrators' => 'Administrer andre administratorer', 'permissions:manage_pages' => 'Administrer sider', 'permissions:manage_partials' => 'Administrer partials', 'permissions:manage_software_updates' => 'Administrer programvareoppdateringer', 'permissions:manage_system_settings' => 'Administrer systeminnstillinger', 'permissions:manage_themes' => 'Administrer maler', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => 'Se dashboard', 'plugin:name:help' => 'Navngi pluginen ved et unikt navn. For eksempel, RainLab.Blog', 'plugin:name:label' => 'Plugin-navn', 'plugin:unnamed' => 'Navnløs plugin', 'plugins:disable_confirm' => 'Er du sikker?', 'plugins:disable_success' => 'Plugins har blitt deaktivert.', 'plugins:disabled_help' => 'Deaktiverte plugins blir ignorert av applikasjonen.', 'plugins:disabled_label' => 'Deaktivert', 'plugins:enable_or_disable' => 'Aktivere eller deaktivere', 'plugins:enable_or_disable_title' => 'Aktivere eller deaktivere plugins', 'plugins:enable_success' => 'Plugins har blitt aktivert.', 'plugins:install' => 'Installer plugins', 'plugins:install_products' => 'Installer produkter', 'plugins:installed' => 'Installerte plugins', 'plugins:manage' => 'Administrer plugins', 'plugins:no_plugins' => 'Det er ingen installerte plugins fra markedsplassen.', 'plugins:recommended' => 'Anbefalt', 'plugins:refresh' => 'Oppdater', 'plugins:refresh_confirm' => 'Er du sikker?', 'plugins:refresh_success' => 'Plugins har blitt oppdatert i systemet.', 'plugins:remove' => 'Fjern', 'plugins:remove_confirm' => 'Er du sikker?', 'plugins:remove_success' => 'Plugins har blitt fjernet fra systemet.', 'plugins:search' => 'søk etter plugins å installere...', 'plugins:selected_amount' => 'Valgte plugins: :amount', 'plugins:unknown_plugin' => 'Plugins har blitt fjernet fra systemet.', 'project:attach' => 'Tilkoble prosjekt', 'project:detach' => 'Avkoble prosjekt', 'project:detach_confirm' => 'Vil du virkelig avkoble dette prosjektet?', 'project:id:help' => 'Hvordan finne din prosjekt-ID', 'project:id:label' => 'Prosjekt-ID', 'project:id:missing' => 'Vennligst spesifiser en prosjekt-ID.', 'project:name' => 'Prosjekt', 'project:none' => 'Ingen', 'project:owner_label' => 'Eier', 'project:unbind_success' => 'Prosjektet har blitt avkoblet.', 'relation:add' => 'Legg til', 'relation:add_a_new' => 'Legg til ny :name', 'relation:add_name' => 'Legg til :name', 'relation:add_selected' => 'Legg til valgte', 'relation:cancel' => 'Avbryt', 'relation:close' => 'Lukk', 'relation:create' => 'Opprett', 'relation:create_name' => 'Opprett :name', 'relation:delete' => 'Slett', 'relation:delete_confirm' => 'Er du sikker?', 'relation:delete_name' => 'Slett :name', 'relation:help' => 'Klikk på et element for å legge til', 'relation:invalid_action_multi' => 'Denne relasjonen kan ikke brukes på fler-relasjoner.', 'relation:invalid_action_single' => 'Denne handlingen kan ikke brukes på en enkel relasjon.', 'relation:link' => 'Link', 'relation:link_a_new' => 'Link en ny :name', 'relation:link_name' => 'Link :name', 'relation:link_selected' => 'Link valgte', 'relation:missing_config' => 'Relasjonen mangler en konfigurasjon for \':config\'.', 'relation:missing_definition' => 'Relasjonen mangler en definisjon for \':field\'.', 'relation:missing_model' => 'Relasjonen brukt i :class har ingen definert modell.', 'relation:preview' => 'Forhåndsvis', 'relation:preview_name' => 'Forhåndsvis :name', 'relation:related_data' => 'Relatert :name data', 'relation:remove' => 'Fjern', 'relation:remove_name' => 'Fjern :name', 'relation:unlink' => 'Fjern link', 'relation:unlink_confirm' => 'Er du sikker?', 'relation:unlink_name' => 'Fjern link :name', 'relation:update' => 'Oppdater', 'relation:update_name' => 'Oppdater :name', 'request_log:count' => 'Antall', 'request_log:empty_link' => 'Tøm forespørselslogg', 'request_log:empty_loading' => 'Tømmer forespørselslogg...', 'request_log:empty_success' => 'Forespørselsloggen er tømt.', 'request_log:hint' => 'Denne loggen viser en liste over nettleserforespørsler som kan kreve oppmerksomhet. For eksempel, hvis en bruker besøker en side som ikke eksisterer, vil det bli oppført her med statuskode 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'Logg-ID', 'request_log:menu_description' => 'Se feilaktige forespørsler, for eksempel Ikke funnet (404).', 'request_log:menu_label' => 'Forespørselslogg', 'request_log:referer' => 'Referers', 'request_log:return_link' => 'Tilbake til forespørselslogg', 'request_log:status_code' => 'Status', 'request_log:url' => 'URL', 'server:connect_error' => 'Kunne ikke koble til serveren.', 'server:file_corrupt' => 'Pakken fra serveren er korrupt.', 'server:file_error' => 'Serveren kunne ikke levere pakken.', 'server:response_empty' => 'Tom respons fra serveren.', 'server:response_invalid' => 'Feilaktig respons fra serveren.', 'server:response_not_found' => 'Oppdateringsserveren ble ikke funnet.', 'settings:menu_label' => 'Innstillinger', 'settings:missing_model' => 'Innstillingssiden mangler en modell-definisjon.', 'settings:not_found' => 'Fant ikke spesifiserte innstilling.', 'settings:return' => 'Tilbake til systeminnstillinger', 'settings:search' => 'Søk', 'settings:update_success' => 'Innstillingene for :name har blitt lagret.', 'sidebar:add' => 'Legg til', 'sidebar:search' => 'Søk...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Kunder', 'system:categories:events' => 'Hendelser', 'system:categories:logs' => 'Logger', 'system:categories:mail' => 'E-post', 'system:categories:misc' => 'Div.', 'system:categories:my_settings' => 'Mine innstillinger', 'system:categories:shop' => 'Shop', 'system:categories:social' => 'Sosialt', 'system:categories:system' => 'System', 'system:categories:team' => 'Team', 'system:categories:users' => 'Brukere', 'system:menu_label' => 'System', 'system:name' => 'System', 'template:invalid_type' => 'Ukjent template-type.', 'template:not_found' => 'Forespurt template ikke funnet.', 'template:saved' => 'Templaten har blitt lagret.', 'theme:activate_button' => 'Aktivér', 'theme:active:not_found' => 'Aktivt tema ikke funnet.', 'theme:active:not_set' => 'Aktivt tema er ikke valgt.', 'theme:active_button' => 'Aktivér', 'theme:author_label' => 'Forfatter', 'theme:author_placeholder' => 'Person eller bedrift', 'theme:code_label' => 'Kode', 'theme:code_placeholder' => 'En unik kode som brukes for distribusjon', 'theme:create_button' => 'Opprett', 'theme:create_new_blank_theme' => 'Lag et nytt blankt tema', 'theme:create_theme_required_name' => 'Vennligst gi temaet et navn.', 'theme:create_theme_success' => 'Temaet har blitt opprettet!', 'theme:create_title' => 'Opprett tema', 'theme:customize_button' => 'Tilpass', 'theme:delete_active_theme_failed' => 'Kan ikke slette det aktive temaet. Gjør et annet tema aktivt først.', 'theme:delete_button' => 'Slett', 'theme:delete_confirm' => 'Vil du virkelig slette dette temaet? Handlingen kan ikke angres!', 'theme:delete_theme_success' => 'Temaet har blitt slettet!', 'theme:description_label' => 'Beskrivelse', 'theme:description_placeholder' => 'Temabeskrivelse', 'theme:dir_name_create_label' => 'Temaets mappenavn', 'theme:dir_name_invalid' => 'Navnet kan kun inneholde tall, latinske bokstaver og følgende symbol: _-', 'theme:dir_name_label' => 'Mappenavn', 'theme:dir_name_taken' => 'Temamappen eksiterer allerede.', 'theme:duplicate_button' => 'Duplisér', 'theme:duplicate_theme_success' => 'Temaet har blitt duplisert!', 'theme:duplicate_title' => 'Duplisér tema', 'theme:edit:not_found' => 'Redigeringstema ikke funnet.', 'theme:edit:not_match' => 'Objektet du prøver å åpne tilhører ikke temaet som endres. Vennligst oppdater siden.', 'theme:edit:not_set' => 'Redigeringstema er ikke valgt.', 'theme:edit_properties_button' => 'Endre egenskaper', 'theme:edit_properties_title' => 'Tema', 'theme:export_button' => 'Eksportér', 'theme:export_folders_comment' => 'Vennligst velg mappene du vil eksportere', 'theme:export_folders_label' => 'Mapper', 'theme:export_title' => 'Eksportér tema', 'theme:find_more_themes' => 'Finn flere temaer på OctoberCMS Theme Marketplace', 'theme:homepage_label' => 'Hjemmeside', 'theme:homepage_placeholder' => 'Nettside-URL', 'theme:import_button' => 'Importér', 'theme:import_folders_comment' => 'Vennligst velg mappene du vil importere', 'theme:import_folders_label' => 'Mapper', 'theme:import_overwrite_comment' => 'Fjern kryss for å kun importere nye filer', 'theme:import_overwrite_label' => 'Overskriv eksisterende filer', 'theme:import_theme_success' => 'Temaet har blitt importert!', 'theme:import_title' => 'Importér tema', 'theme:import_uploaded_file' => 'Temaets arkivfil', 'theme:manage_button' => 'Administrer', 'theme:manage_title' => 'Administrer tema', 'theme:name:help' => 'Navngi temaet ved et unikt navn. For eksempel, RainLab.Vanilla', 'theme:name:label' => 'Tema-navn', 'theme:name_create_placeholder' => 'Temanavn', 'theme:name_label' => 'Navn', 'theme:new_directory_name_comment' => 'Oppgi en ny mappe for det dupliserte temaet.', 'theme:new_directory_name_label' => 'Temamappe', 'theme:not_found_name' => 'Tema \':name\' ble ikke funnet.', 'theme:return' => 'Tilbake til temaliste', 'theme:save_properties' => 'Lagre egenskaper', 'theme:settings_menu' => 'Frontend tema', 'theme:settings_menu_description' => 'Forhåndsvis en liste over installerte temaer og velg et aktivt tema.', 'theme:theme_label' => 'Tema', 'theme:unnamed' => 'Navnløst tema', 'themes:install' => 'Installer tema', 'themes:installed' => 'Installerte temaer', 'themes:no_themes' => 'Det er ingen installerte temaer fra markedsplassen.', 'themes:recommended' => 'Anbefalt', 'themes:remove_confirm' => 'Vil du virkelig slette dette temaet?', 'themes:search' => 'søk etter temaer å installere...', 'tooltips:preview_website' => 'Forhåndsvis nettsiden', 'updates:check_label' => 'Se etter oppdateringer', 'updates:core_build' => 'Build :build', 'updates:core_build_help' => 'Siste build er tilgjengelig.', 'updates:core_current_build' => 'Nåværende build', 'updates:core_downloading' => 'Laster ned applikasjonsfiler', 'updates:core_extracting' => 'Pakker opp applikasjonsfiler', 'updates:disabled' => 'Deaktivert', 'updates:force_label' => 'Tving update', 'updates:found:help' => 'Klikk på Oppdatér programvare for å oppdatere.', 'updates:found:label' => 'Fant nye oppdateringer!', 'updates:menu_description' => 'Oppdatere systemet, administrer og installere plugins og temaer.', 'updates:menu_label' => 'Oppdateringer', 'updates:name' => 'Programvareoppdateringer', 'updates:none:help' => 'Ingen nye oppdateringer ble funnet.', 'updates:none:label' => 'Ingen oppdateringer', 'updates:plugin_author' => 'Utgiver', 'updates:plugin_description' => 'Beskrivelse', 'updates:plugin_downloading' => 'Laster ned plugin: :name', 'updates:plugin_extracting' => 'Pakker opp plugin: :name', 'updates:plugin_name' => 'Navn', 'updates:plugin_version' => 'Versjon', 'updates:plugin_version_none' => 'Ny plugin', 'updates:plugins' => 'Plugins', 'updates:retry_label' => 'Prøv igjen', 'updates:theme_downloading' => 'Laster ned tema: :name', 'updates:theme_extracting' => 'Pakker opp tema: :name', 'updates:theme_new_install' => 'Ny tema-installasjon.', 'updates:themes' => 'Teamer', 'updates:title' => 'Administrer oppdateringer', 'updates:update_completing' => 'Ferdiggjør oppdatering', 'updates:update_failed_label' => 'Oppdateringen mislyktes', 'updates:update_label' => 'Oppdatér programvare', 'updates:update_loading' => 'Henter tilgjengelige oppdateringer...', 'updates:update_success' => 'Oppdatering har fullført.', 'user:account' => 'konto', 'user:allow' => 'Tillat', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Vil du virkelig slette denne administratoren?', 'user:deny' => 'Nekt', 'user:email' => 'E-postadresse', 'user:first_name' => 'Fornavn', 'user:full_name' => 'Fult navn', 'user:group:code_comment' => 'Fyll inn en unik kode for å bruke API-en.', 'user:group:code_field' => 'Kode', 'user:group:delete_confirm' => 'Vil du virkelig slette denne administratorgruppen?', 'user:group:description_field' => 'Beskrivelse', 'user:group:is_new_user_default_field' => 'Legg til nye administratorer til denne gruppen automatisk', 'user:group:list_title' => 'Administrere grupper', 'user:group:menu_label' => 'Grupper', 'user:group:name' => 'Gruppe', 'user:group:name_field' => 'Navn', 'user:group:new' => 'New Administrator Group', 'user:group:return' => 'Tilbake til gruppeoversikten', 'user:groups' => 'Grupper', 'user:groups_comment' => 'Spesifiser hvilke grupper personen tilhører.', 'user:inherit' => 'Arv', 'user:last_name' => 'Etternavn', 'user:list_title' => 'Håndter administratorer', 'user:login' => 'Brukernavn', 'user:menu_description' => 'Administrer backend-administratorer, grupper og tilganger.', 'user:menu_label' => 'Administratorer', 'user:name' => 'Administrator', 'user:new' => 'Ny administrator', 'user:password' => 'Passord', 'user:password_confirmation' => 'Bekreft passord', 'user:permissions' => 'Tilganger', 'user:preferences:not_authenticated' => 'Det er ingen autentiserte brukere å laste eller lagre innstillinger for.', 'user:return' => 'Tilbake til administratoroversikten', 'user:send_invite' => 'Send invitasjon via e-post', 'user:send_invite_comment' => 'Kryss av denne boksen for å sende personen en invitasjon via e-post', 'user:superuser' => 'Superbruker', 'user:superuser_comment' => 'Kryss av denne boksen for å gi personen tilgang til alle områder.', 'validation:accepted' => ':attribute må aksepteres.', 'validation:active_url' => ':attribute er ikke en gyldig URL.', 'validation:after' => ':attribute må være en dato etter :date.', 'validation:alpha' => ':attribute kan kun inneholde bokstaver.', 'validation:alpha_dash' => ':attribute kan kun inneholde bokstaver, tall og bindestreker.', 'validation:alpha_num' => ':attribute kan kun inneholde bokstaver og tall.', 'validation:array' => ':attribute må være et array.', 'validation:before' => ':attribute må være en dato før :date.', 'validation:between:array' => ':attribute må ha mellom :min - :max elementer.', 'validation:between:file' => ':attribute må være mellom :min - :max kilobytes.', 'validation:between:numeric' => ':attribute må være mellom :min - :max.', 'validation:between:string' => ':attribute må være mellom :min - :max tegn.', 'validation:confirmed' => ':attribute bekreftelse samsvarer ikke.', 'validation:date' => ':attribute er ikke en gyldig dato.', 'validation:date_format' => ':attribute samsvarer ikke med formatet :format.', 'validation:different' => ':attribute og :other må være forskjellig.', 'validation:digits' => ':attribute må være :digits tall.', 'validation:digits_between' => ':attribute må være mellom :min og :max tall.', 'validation:email' => ':attribute format ugyldig.', 'validation:exists' => 'Valgt :attribute er ugyldig.', 'validation:image' => ':attribute må være et bilde.', 'validation:in' => 'Valgt :attribute er ugyldig.', 'validation:integer' => ':attribute må være et heltall.', 'validation:ip' => ':attribute må være en gyldig IP-adresse.', 'validation:max:array' => ':attribute kan ikke ha mer enn :max elementer.', 'validation:max:file' => ':attribute kan ikke være større enn :max kilobytes.', 'validation:max:numeric' => ':attribute kan ikke være større enn :max.', 'validation:max:string' => ':attribute kan ikke inneholde mer enn :max tegn.', 'validation:mimes' => ':attribute må være av filtype: :values.', 'validation:min:array' => ':attribute må ha minst :min elementer.', 'validation:min:file' => ':attribute må være minst :min kilobytes.', 'validation:min:numeric' => ':attribute må være minst :min.', 'validation:min:string' => ':attribute må være minst :min tegn.', 'validation:not_in' => 'Valgt :attribute er ugyldig.', 'validation:numeric' => ':attribute må være et tall.', 'validation:regex' => ':attribute format er ugyldig.', 'validation:required' => ':attribute felt kreves.', 'validation:required_if' => ':attribute felt kreves når :other er :value.', 'validation:required_with' => ':attribute felt kreves når :values er til stede.', 'validation:required_without' => ':attribute felt kreves når :values ikke er til stede.', 'validation:same' => ':attribute og :other må samsvare.', 'validation:size:array' => ' :attribute må inneholde :size elementer.', 'validation:size:file' => ':attribute må være :size kilobytes.', 'validation:size:numeric' => ':attribute må være :size.', 'validation:size:string' => ':attribute må være :size tegn.', 'validation:unique' => ':attribute er allerede i bruk.', 'validation:url' => ':attribute format er ugyldig.', 'warnings:extension' => 'PHP-extensionen :name er ikke installert..', 'warnings:permissions' => 'Mappen :name eller dens undermapper kan ikke skrives på av PHP. Vennligst sjekk skrivetilganger på serveren.', 'warnings:tips' => 'Tips for systemkonfigurasjon', 'warnings:tips_description' => 'Det er problemer du må være oppmerksom på for å konfigurere systemet riktig.', 'widget:not_bound' => 'En widget med klassenavnet \':name\' er ikke bundet til kontrolleren', 'widget:not_registered' => 'En widget med klassenavnet \':name\' har ikke blitt registrert', 'zip:extract_failed' => 'Kunne ikke pakke opp core-fil \':file\'.']);
示例#16
0
 protected function controller_save_new_and_delete($class)
 {
     if (is_null($class::$table) === true) {
         return;
     }
     if (count($class::$insert_values) === 0) {
         print "\n" . 'WARNING: Cannot perform ' . $class . '->' . __FUNCTION__ . '(). In order to use this test, you must set ' . $class . '::$insert_values to an array of names/values to insert into your table in ' . __FILE__ . ".\n";
         return;
     }
     # first, make sure it's not already in there
     $model = lucid::model($class::$table);
     foreach ($class::$insert_values as $column => $value) {
         $model->where($column, $value);
     }
     $model = $model->find_one();
     $this->assertTrue($model === false);
     # perform the insert using the controller->save() method
     $controller = lucid::controller($class::$table);
     call_user_func_array([$controller, 'save'], array_merge([0], array_values($class::$insert_values), [false]));
     # check to make sure it is now in the table
     $model = lucid::model($class::$table);
     foreach ($class::$insert_values as $column => $value) {
         $model->where($column, $value);
     }
     $model = $model->find_one();
     $this->assertFalse($model === false);
     # delete the new row, and recheck
     $model->delete();
     # idiorm does not clear cache on deletes :(
     ORM::clear_cache();
     # make sure the inserted value is no longer in the table
     $model = lucid::model($class::$table);
     foreach ($class::$insert_values as $column => $value) {
         $model->where($column, $value);
     }
     $model = $model->find_one();
     $this->assertTrue($model === false);
 }
示例#17
0
文件: esar.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Fecha y hora', 'access_log:email' => 'Email', 'access_log:first_name' => 'Nombre', 'access_log:hint' => 'Este registro muestra la lista de ingresos al panel de administración. Los registros se mantienen por un total de :days días.', 'access_log:ip_address' => 'IP', 'access_log:last_name' => 'Apellido', 'access_log:login' => 'Acceso', 'access_log:menu_description' => 'Ver registro de ingresos al panel de administracion.', 'access_log:menu_label' => 'Registro de acceso', 'account:apply' => 'Aplicar', 'account:cancel' => 'Cancelar', 'account:delete' => 'Borrar', 'account:email_placeholder' => 'email', 'account:enter_email' => 'Ingrese su email', 'account:enter_login' => 'Ingrese su usuario', 'account:enter_new_password' => 'Ingrese una nueva contraseña', 'account:forgot_password' => 'Olvido su contraseña?', 'account:login' => 'Entrar', 'account:login_placeholder' => 'Usuario', 'account:ok' => 'OK', 'account:password_placeholder' => 'Contraseña', 'account:password_reset' => 'Reiniciar contraseña', 'account:reset' => 'Reiniciar', 'account:reset_error' => 'La contraseña es inválida. Por favor, intente otra vez!', 'account:reset_fail' => 'No se puede reiniciar su contraseña!', 'account:reset_success' => 'Su contraseña fue correctamente reseteada.', 'account:restore' => 'Restaurar', 'account:restore_error' => 'El usuario no es válido \':login\'', 'account:restore_success' => 'Le hemos enviado un email con la nueva contraseña.', 'account:sign_out' => 'Salir', 'ajax_handler:invalid_name' => 'Manejador de AJAX inválido: :name.', 'ajax_handler:not_found' => 'El manejador de AJAX \':name\' no se encuentra.', 'app:name' => 'October CMS', 'app:tagline' => 'Getting back to basics', 'asset:already_exists' => 'Un archivo o directorio con este nombre ya existe', 'asset:create_directory' => 'Create directory', 'asset:create_file' => 'Create file', 'asset:delete' => 'Borrar', 'asset:destination_not_found' => 'El directorio destino no se encuentra', 'asset:directory_name' => 'Nombre del directorio', 'asset:directory_popup_title' => 'Nuevo directorio', 'asset:drop_down_add_title' => 'Add...', 'asset:drop_down_operation_title' => 'Action...', 'asset:error_deleting_dir' => 'Error borrando el archivo :name.', 'asset:error_deleting_dir_not_empty' => 'Error borrando el directorio :name. El directorio no está vacío.', 'asset:error_deleting_directory' => 'Error borrando el directorio original :dir', 'asset:error_deleting_file' => 'Error al borrar el archivo :name.', 'asset:error_moving_directory' => 'Error moviendo el directorio :dir', 'asset:error_moving_file' => 'Error moviendo archivo :file', 'asset:error_renaming' => 'Error renombrando el archivo o directorio', 'asset:error_uploading_file' => 'Error subiendo el archivo \\":name\\": :error', 'asset:file_not_valid' => 'El archivo no es válido', 'asset:invalid_name' => 'El nombre solamente puede contener dígitos, letras, espacios y los símbolos siguientes: ._-', 'asset:invalid_path' => 'El path solamente puede contener dígitos, letras, espacios y los símbolos siguientes: ._-/', 'asset:menu_label' => 'Assets', 'asset:move' => 'Mover', 'asset:move_button' => 'Mover', 'asset:move_destination' => 'Directorio destino', 'asset:move_please_select' => 'por favor seleccionar', 'asset:move_popup_title' => 'Mover los títulos emergentes', 'asset:name_cant_be_empty' => 'El nombre no puede estar vacío', 'asset:new' => 'Nuevo archivo', 'asset:original_not_found' => 'El archivo o directorio original no se encuentra', 'asset:path' => 'Path', 'asset:rename' => 'Renombrar', 'asset:rename_new_name' => 'Nuevo nombre', 'asset:rename_popup_title' => 'Renombrar', 'asset:select' => 'Seleccionar', 'asset:select_destination_dir' => 'Por favor seleccione un directorio destino', 'asset:selected_files_not_found' => 'Los archivos seleccionados no se encuentran', 'asset:too_large' => 'El archivo subido es demasiado pesado. El tamaño máximo permitido es :max_size', 'asset:type_not_allowed' => 'Solamente los siguientes tipos de archivos están permitidos: :allowed_types', 'asset:upload_files' => 'Upload file(s)', 'backend_preferences:locale' => 'Idioma', 'backend_preferences:locale_comment' => 'Seleccione la localización para el uso del lenguaje.', 'backend_preferences:menu_description' => 'Gestionar preferencia de idioma y la apariencia del Back-end.', 'backend_preferences:menu_label' => 'Preferencias de Back-end', 'behavior:missing_property' => 'Clase :class debe definir la propiedad $:property utilizada por :behavior comportamiento.', 'cms:menu_label' => 'Gestión', 'cms_object:delete_success' => 'Los templates fueron borrados exitosamente: :count.', 'cms_object:error_creating_directory' => 'Error creando el directorio :name. Por favor revisar los permisos de escritura.', 'cms_object:error_deleting' => 'Error borrando el archivo template \\":name\\". Por favor revisar los permisos de escritura.', 'cms_object:error_saving' => 'Error guardando archivo \\":name\\". Por favor revisar los permisos de escritura.', 'cms_object:file_already_exists' => 'Archivo \\":name\\" ya existe.', 'cms_object:file_name_required' => 'Falta el nombre del campo del archivo.', 'cms_object:invalid_file' => 'Nombre inválido del archivo: :name. El nombre del archivo debe contener solamente caracteres alfanuméricos, guiones bajos, barras y puntos. Algunos ejemplos de nombres correctos son: archivo.htm, archivo, subdirectorio/archivo', 'cms_object:invalid_file_extension' => 'Extensión de archivo inválida: :invalid. Las extensiones permitidas son: :allowed.', 'cms_object:invalid_property' => 'La propiedad \\":name\\" no puede establecerse', 'combiner:not_found' => 'El archivo combinado \':name\' no se encuentra.', 'component:alias' => 'Alias', 'component:alias_description' => 'Se le ha asignado un nombre único a este componente cuando se lo utilizaba en la página o en el código de disposición.', 'component:invalid_request' => 'La plantilla no puede ser guardada porque tiene datos inválidos.', 'component:menu_label' => 'Componentes', 'component:method_not_found' => 'El componente \':name\' no contiene un método \':method\'.', 'component:no_description' => 'No se proporciona descripción', 'component:no_records' => 'No se encontraron componentes', 'component:not_found' => 'El componente \':name\' no se encuentra.', 'component:unnamed' => 'Sin nombre', 'component:validation_message' => 'El componente alias es requerido y puede contener solamente letras, números y guión bajo. El alias debe empezar con una letra.', 'config:not_found' => 'No se puede encontrar el archivo de configuración :file definido por :location.', 'config:required' => 'Configuración utilizada en :location debe proporcionar un valor. \':property\'.', 'content:delete_confirm_multiple' => 'Realmente desea borrar los contenidos seleccionados de los archivos o directorios?', 'content:delete_confirm_single' => 'Realmente desea borrar el contenido de este archivo?', 'content:menu_label' => 'Contenido', 'content:new' => 'Nuevo contenido de archivo', 'content:no_list_records' => 'No se encuentra el conteinod de los archivos', 'content:not_found_name' => 'El contenido del archivo \':name\' no se encuentra.', 'dashboard:add_widget' => 'Agregar módulo', 'dashboard:columns' => '{1} columna|[2,Inf] columnas', 'dashboard:full_width' => 'Ancho completo', 'dashboard:menu_label' => 'Tablero', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} actualizaciones disponibles!|{1} actualizaciones disponibles!|[2,Inf] actualizaciones disponibles!', 'dashboard:status:widget_title_default' => 'Estado del sistema', 'dashboard:widget_columns_description' => 'El ancho del módulo, un número entre 1 y 10.', 'dashboard:widget_columns_error' => 'Por favor introduce el ancho del modulo, un número entre 1 y 10.', 'dashboard:widget_columns_label' => 'Ancho :columnas', 'dashboard:widget_inspector_description' => 'Configure el módulo de informe', 'dashboard:widget_inspector_title' => 'Configurar módulo', 'dashboard:widget_label' => 'Modulo', 'dashboard:widget_new_row_description' => 'Coloca el módulo en una nueva fila.', 'dashboard:widget_new_row_label' => 'Forzar nueva fila', 'dashboard:widget_title_error' => 'El título del módulo es requerido.', 'dashboard:widget_title_label' => 'Título del módulo', 'dashboard:widget_width' => 'Ancho', 'directory:create_fail' => 'No se puede crear el directorio: :name', 'editor:code' => 'Código', 'editor:code_folding' => 'Código Plegable', 'editor:content' => 'Contenido', 'editor:description' => 'Descripción', 'editor:enter_fullscreen' => 'Ingresar en el modo pantalla completa', 'editor:exit_fullscreen' => 'Salir de pantalla completa', 'editor:filename' => 'Nombre del archivo', 'editor:font_size' => 'Tamaño de la letra', 'editor:hidden' => 'Oculto', 'editor:hidden_comment' => 'A las páginas ocultas solamente pueden acceder los usuarios del back-end que se encuentren logueados.', 'editor:highlight_active_line' => 'Resaltar línea activa', 'editor:layout' => 'Disposición', 'editor:markup' => 'Marcado', 'editor:menu_description' => 'Configurar las preferencias del editor de código, como el tamaño de la letra y el color del esquema.', 'editor:menu_label' => 'Preferencias del Editor de Código', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta Descripción', 'editor:meta_title' => 'Meta Título', 'editor:new_title' => 'Nuevo título de la página', 'editor:preview' => 'Vista previa', 'editor:settings' => 'Configuración', 'editor:show_gutter' => 'Mostrar canal', 'editor:show_invisibles' => 'Mostrar caracteres invisibles', 'editor:tab_size' => '>Tamaño de la Solapa', 'editor:theme' => 'Color del esquema', 'editor:title' => 'Título', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Espacio entre solapas', 'editor:word_wrap' => 'Ajuste de línea', 'event_log:created_at' => 'Fecha y Hora', 'event_log:empty_link' => 'El registro de eventos se encuentra vacío', 'event_log:empty_loading' => 'Borrando los registros...', 'event_log:empty_success' => 'Los registros fueron borrados', 'event_log:hint' => 'Este registro muestra una lista de los posibles errores que se producen en la aplicación, como las excepciones y la información de depuración.', 'event_log:id' => 'ID', 'event_log:id_label' => 'ID del Evento', 'event_log:level' => 'Nivel', 'event_log:menu_description' => 'Ver los logs de registro del sistema.', 'event_log:menu_label' => 'Log de eventos', 'event_log:message' => 'Mensaje', 'event_log:return_link' => 'Regresar al registro de eventos', 'field:invalid_type' => 'El tipo de campo utilizado es inválido :type.', 'field:options_method_not_exists' => 'El modelo clase: model debe definir un método: method() opciones recurrentes para el \\":field\\" desde campo.', 'file:create_fail' => 'No se puede crear el archivo: :name', 'fileupload:attachment' => 'Adjunto', 'fileupload:description_label' => 'Descripción', 'fileupload:help' => 'Añadir un título y una descripción para este Adjunto..', 'fileupload:title_label' => 'Título', 'filter:all' => 'Todo', 'form:add' => 'Agregar', 'form:apply' => 'Aplicar', 'form:behavior_not_ready' => 'Favor compruebe que ha llamado a la funcion initForm() en el controlador.', 'form:cancel' => 'Cancelar', 'form:close' => 'Cerrar', 'form:concurrency-file-changed-description' => 'El archivo que usted se encuentra editando fue cambiado editado por otro usuario. Usted puede recargar el archivo y perder los cambios o sobreescribir el archivo en el disco.', 'form:concurrency-file-changed-title' => 'El archivo fue cambiado', 'form:confirm_tab_close' => '¿Realmente desea cerrar la cuenta? Se perderán los cambios no guardados.', 'form:create' => 'Crear', 'form:create_and_close' => 'Crear y cerrar', 'form:create_success' => ':name ha sido creado con éxito', 'form:create_title' => 'Nuevo :name', 'form:creating' => 'Creando...', 'form:delete' => 'Borrar', 'form:delete_row' => 'Eliminar fila', 'form:delete_success' => ':name se ha eliminado correctamente', 'form:deleting' => 'Borrando...', 'form:field_off' => 'Off', 'form:field_on' => 'On', 'form:insert_row' => 'Insertar fila', 'form:missing_definition' => 'El comportamiento de formulario no contiene un campo para\':field\'.', 'form:missing_id' => 'El formulario de registro de identificación no se ha especificado.', 'form:missing_model' => 'El comportamiento del formulario utilizado en :class no tiene un modelo definido.', 'form:not_found' => 'El registro de formulario con el ID :id no se pudo encontrar.', 'form:ok' => 'OK', 'form:or' => 'o', 'form:preview_no_files_message' => 'Los archivos no fueron cargados', 'form:preview_title' => 'Vista previa :name', 'form:reload' => 'Recargar', 'form:save' => 'Guardar', 'form:save_and_close' => 'Guardar y cerrar', 'form:saving' => 'Guardando...', 'form:select' => 'Seleccionar', 'form:select_all' => 'Todo', 'form:select_none' => 'Nada', 'form:select_placeholder' => 'Seleccione', 'form:undefined_tab' => 'Misc', 'form:update_success' => ':name se ha actualizado correctamente', 'form:update_title' => 'Editar :name', 'install:install_completing' => 'Finalizó el proceso de instalación', 'install:install_success' => 'El plugin se ha instalado correctamente.', 'install:missing_plugin_name' => 'Por favor, especifique un nombre de Plugin para instalar', 'install:plugin_label' => 'Instalar Plugin', 'install:project_label' => 'Adjuntar al proyecto', 'layout:delete_confirm_multiple' => 'Realmente quiere borrar los diseños seleccionados?', 'layout:delete_confirm_single' => 'Realmente quiere borrar este diseño?', 'layout:menu_label' => 'Diseños', 'layout:new' => 'Nuevo diseño', 'layout:no_list_records' => 'No se ecnontraron diseños', 'layout:not_found_name' => 'El diseño \':name\' no se encuentra', 'list:behavior_not_ready' => 'Comportamiento de lista no se ha inicializado, compruebe que ha llamado makeLists() en el controlador.', 'list:default_title' => 'Lista', 'list:invalid_column_datetime' => 'Columna valor \':column\' no es un objeto DateTime, has perdido la referencia $dates en el Modelo?', 'list:loading' => 'Cargando...', 'list:missing_column' => 'No hay definiciones de columna para :columns.', 'list:missing_columns' => 'Lista utilizada en :class no tiene lista de columnas definidas.', 'list:missing_definition' => 'Comportamiento de lista no contiene una columna para \':field\'.', 'list:missing_model' => 'El comportamiento de lista utilizado en :class no tiene un modelo definido.', 'list:next_page' => 'Página siguiente', 'list:no_records' => 'No hay registros en esta lista', 'list:pagination' => 'Registros que se muestran: :from-:to de :total', 'list:prev_page' => 'Página anterior', 'list:records_per_page' => 'Registros por página', 'list:records_per_page_help' => 'Seleccione el número de registros por página para mostrar. Tenga en cuenta que un alto número de registros en una sola página puede reducir el rendimiento.', 'list:search_prompt' => 'Buscar...', 'list:setup_help' => 'Utilice las casillas de verificación para seleccionar las columnas que desea ver en la lista. Usted puede cambiar la posición de las columnas arrastrándolas hacia arriba o hacia abajo.', 'list:setup_title' => 'Configuración de la lista', 'locale:cs' => 'Checo', 'locale:de' => 'Alemán', 'locale:en' => 'Inglés', 'locale:es-Ar' => 'Español Argentino', 'locale:fr' => 'Frances', 'locale:it' => 'Italiano', 'locale:ja' => 'Japonés', 'locale:nb-no' => 'Noruego (Bokmål)', 'locale:nl' => 'Holandés', 'locale:pt-br' => 'Portugués Brasilero', 'locale:ro' => 'Romana', 'locale:ru' => 'Ruso', 'locale:sv' => 'Suizo', 'locale:tr' => 'Turco', 'mail:general' => 'General', 'mail:menu_description' => 'Administrar la configuración de correo electrónico.', 'mail:menu_label' => 'Administrar Correo', 'mail:method' => 'Método', 'mail:sender_email' => 'Remitente Email', 'mail:sender_name' => 'Nombre del remitente', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Ruta del Sendmail', 'mail:sendmail_path_comment' => 'Por favor, especifique la ruta del programa sendmail.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'Dirección SMTP', 'mail:smtp_authorization' => 'Autorización SMTP requerida', 'mail:smtp_authorization_comment' => 'Usar esta opción si el servidor SMTP requiere autorización.', 'mail:smtp_password' => 'Contraseña', 'mail:smtp_port' => 'Puerto SMTP', 'mail:smtp_ssl' => 'Conexión SSL requerida', 'mail:smtp_username' => 'Nombre de usuario', 'mail_templates:code' => 'Código', 'mail_templates:code_comment' => 'Código único utilizado para referirse a esta plantilla ', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Texto plano', 'mail_templates:description' => 'Descripción', 'mail_templates:layout' => 'Disposición', 'mail_templates:layouts' => 'Disposiciones', 'mail_templates:menu_description' => 'Modificar las plantillas de correo que se envían a los usuarios y administradores, administrar diseños de correo electrónico', 'mail_templates:menu_label' => 'Plantillas de Correo', 'mail_templates:menu_layouts_label' => 'Disposición del Mail', 'mail_templates:name' => 'Nombre', 'mail_templates:name_comment' => 'Nombre único utilizado para referirse a esta plantilla', 'mail_templates:new_layout' => 'Nueva Disposición', 'mail_templates:new_template' => 'Nueva plantilla', 'mail_templates:return' => 'Volver a la lista de plantilla', 'mail_templates:subject' => 'Asunto', 'mail_templates:subject_comment' => 'Correo asunto del mensaje', 'mail_templates:template' => 'Plantilla', 'mail_templates:templates' => 'Plantillas', 'mail_templates:test_send' => 'Enviar mensaje de prueba', 'mail_templates:test_success' => 'El mensaje de prueba ha sido enviado con éxito.', 'model:invalid_class' => 'Modelo :model utilizado en :class no es váildo, este debería heredar la clase del \\Model.', 'model:mass_assignment_failed' => 'Asignación masiva falló para el atributo del Modelo \':attribute\'.', 'model:missing_id' => 'No se ha especificado un ID para encontrar el modelo guardado.', 'model:missing_relation' => 'Modelo \':class\' no contiene una definición para \':relation\'.', 'model:name' => 'Modelo', 'model:not_found' => 'Modelo \':class\' con el ID :id no se pudo encontrar', 'myaccount:menu_description' => 'Actualice la información de su cuenta, tales como nombre, dirección de correo electrónico y contraseña.', 'myaccount:menu_keywords' => 'Inicio seguro', 'myaccount:menu_label' => 'Mi cuenta', 'mysettings:menu_description' => 'Ajustes relacionados con su cuenta de administración', 'mysettings:menu_label' => 'Mi configuración', 'page:access_denied:cms_link' => 'Regresar al Back-end', 'page:access_denied:help' => 'Usted no tiene los permisos necesarios para ver esta página.', 'page:access_denied:label' => 'Acceso denegado', 'page:custom_error:help' => 'Lo sentimos, ha ocurrido un error y la página no se puede mostrar.', 'page:custom_error:label' => 'Error de página', 'page:delete_confirm_multiple' => '¿Realmente quiere eliminar las páginas seleccionadas?', 'page:delete_confirm_single' => '¿Realmente quieres eliminar esta página?', 'page:invalid_url' => 'Formato de URL inválido. El URL debe comenzar con el símbolo de barra diagonal y puede contener dígitos, letras latinas y los siguientes símbolos: _-[]:?|/+*^$', 'page:menu_label' => 'Páginas', 'page:new' => 'Nueva página', 'page:no_layout' => '-- ninguna disposición --', 'page:no_list_records' => 'No se encontraron páginas', 'page:not_found:help' => 'La página solicitada no se puede encontrar.', 'page:not_found:label' => 'Página no encontrada', 'page:untitled' => 'Sin título', 'partial:delete_confirm_multiple' => 'Realmente quiere borrar los parciales seleccionados?', 'partial:delete_confirm_single' => 'Realmente quiere borrar este parcial?', 'partial:invalid_name' => 'Nombre parcial inválido: :name.', 'partial:menu_label' => 'Parciales', 'partial:new' => 'Nuevo parcial', 'partial:no_list_records' => 'No se encontraron parciales', 'partial:not_found_name' => 'El parcial \':name\' no se encuentra.', 'permissions:manage_assets' => 'Gestionar archivos', 'permissions:manage_content' => 'Gestionar contenido', 'permissions:manage_layouts' => 'Gestionar diseños', 'permissions:manage_mail_templates' => 'Gestionar plantillas de correo', 'permissions:manage_other_administrators' => 'Gestionar otros administradores', 'permissions:manage_pages' => 'Gestionar páginas', 'permissions:manage_partials' => 'Gestionar parciales', 'permissions:manage_software_updates' => 'Gestionar actualización de software', 'permissions:manage_system_settings' => 'Gestionar la configuración del sistema', 'permissions:manage_themes' => 'Gestionar plantilla', 'permissions:view_the_dashboard' => 'Ver el Tablero', 'plugin:name:help' => 'Buscar el plugin por su nombre de codigo unico. Por ejemplo: RainLab.Blog', 'plugin:name:label' => 'Nombre del plugin', 'plugin:unnamed' => 'Plugin sin nombre', 'plugins:disable_confirm' => '¿Está usted seguro?', 'plugins:disable_success' => 'Se desactivaron exitosamente los plugins.', 'plugins:disabled_help' => 'Los Plugins desactivados son ignorados por la aplicación.', 'plugins:disabled_label' => 'Desactivado', 'plugins:enable_or_disable' => 'Activar o desactivar', 'plugins:enable_or_disable_title' => 'Activar o desactivar plugins', 'plugins:enable_success' => 'Se activaron exitosamente los plugins.', 'plugins:manage' => 'Administrar plugins', 'plugins:refresh' => 'Actualizar', 'plugins:refresh_confirm' => '¿Está usted seguro?', 'plugins:refresh_success' => 'Se actualizaron exitosamente los plugins del sistema.', 'plugins:remove' => 'Eliminar', 'plugins:remove_confirm' => '¿Está usted seguro?', 'plugins:remove_success' => 'Se eliminaron exitosamente los plugins del sistema.', 'plugins:selected_amount' => 'Plugins seleccionados: :amount', 'plugins:unknown_plugin' => 'Se eliminó el plugin del sistema de archivos.', 'project:attach' => 'Adjuntar Proyecto', 'project:detach' => 'Separar Proyect', 'project:detach_confirm' => '¿Seguro que quieres separar este proyecto?', 'project:id:help' => '¿Cómo encontrar su ID de Proyecto', 'project:id:label' => 'Identificación del proyecto', 'project:id:missing' => 'Por favor, especifique un ID del proyecto para usar.', 'project:name' => 'Proyecto', 'project:none' => 'Ningun', 'project:owner_label' => 'Dueño', 'project:unbind_success' => 'El proyecto ha sido separado con éxito.', 'relation:add' => 'Agregar', 'relation:add_a_new' => 'Agregar un nuevo :name', 'relation:add_name' => 'Agregar :name', 'relation:add_selected' => 'Agregar seleccionado', 'relation:cancel' => 'Cancelar', 'relation:create' => 'Crear', 'relation:create_name' => 'Crear :name', 'relation:delete' => 'Borrar', 'relation:delete_confirm' => '¿Está usted seguro?', 'relation:delete_name' => 'Borrar :name', 'relation:help' => 'Haga clic en un elemento para añadir.', 'relation:invalid_action_multi' => 'Esta acción no se puede realizar en una relación múltiple.', 'relation:invalid_action_single' => 'Esta acción no se puede realizar en una relación singular.', 'relation:missing_definition' => 'Relación comportamiento no contiene una definición para \':field\'.', 'relation:missing_model' => 'Relación comportamiento utilizado en :class no tiene un modelo definido.', 'relation:related_data' => 'Relacionar :name datos', 'relation:remove' => 'Remover', 'relation:remove_name' => 'Remover :name', 'relation:update' => 'Actualizar', 'relation:update_name' => 'Actualizar :name', 'request_log:count' => 'Contador', 'request_log:empty_link' => 'El registro de accesos se encuentra vacío', 'request_log:empty_loading' => 'Borrando los logs...', 'request_log:empty_success' => 'Los logs fueron borrados...', 'request_log:hint' => 'Este registro muestra una lista de las peticiones del navegador que pueden requerir atención. Por ejemplo, si un usuario abre una página que no se puede encontrar, se crea un registro con el código de estado 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'ID Log', 'request_log:menu_description' => 'Ver listado de redirecciones con errores y paginas No encontradas (404).', 'request_log:menu_label' => 'Logs de acceso', 'request_log:referer' => 'Referencia', 'request_log:return_link' => 'Regresar al registro de accesso', 'request_log:status_code' => 'Estado', 'request_log:url' => 'URL', 'server:connect_error' => 'Error al conectar con el servidor.', 'server:file_corrupt' => 'El archivo se encuentra dañado.', 'server:file_error' => 'El servidor no pudo entregar el paquete.', 'server:response_empty' => 'Respuesta vacía desde el servidor.', 'server:response_invalid' => 'Respuesta no válida del servidor.', 'server:response_not_found' => 'El servidor de actualización no se pudo encontrar.', 'settings:menu_label' => 'Configuración', 'settings:missing_model' => 'La página de configuración no encuentra una definición de modelo.', 'settings:return' => 'Regresar a la configuración del sistema', 'settings:search' => 'Buscar', 'settings:update_success' => 'Los ajustes para :name han sido actualizados correctamente.', 'sidebar:add' => 'Agregar', 'sidebar:search' => 'Buscar...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Clientes', 'system:categories:events' => 'Eventos', 'system:categories:logs' => 'Registros', 'system:categories:mail' => 'Correo', 'system:categories:misc' => 'Miscelánea', 'system:categories:my_settings' => 'Mis configuraciones', 'system:categories:shop' => 'Comprar', 'system:categories:social' => 'Social', 'system:categories:system' => 'Sistema', 'system:categories:team' => 'Equipo', 'system:categories:users' => 'Usuarios', 'system:menu_label' => 'Sistema', 'system:name' => 'Sistema', 'template:invalid_type' => 'Tipo de plantilla Desconocido.', 'template:not_found' => 'No se encontró la plantilla solicitada.', 'template:saved' => 'La plantilla se ha guardado correctamente.', 'theme:activate_button' => 'Activar', 'theme:active:not_found' => 'El tema activo no se encuentra.', 'theme:active:not_set' => 'El tema activo no se ha establecido.', 'theme:active_button' => 'Activar', 'theme:edit:not_found' => 'El tema de edición no se encuentra.', 'theme:edit:not_match' => 'El objeto que está intentando acceder no pertenece al tema que se está editando. Vuelve a cargar la página.', 'theme:edit:not_set' => 'El tema de edición no se ha establecido.', 'theme:find_more_themes' => 'Busque más Plantillas', 'theme:settings_menu' => 'Plantilla', 'theme:settings_menu_description' => 'Vista previa de la lista de las plantillas instaladas.', 'tooltips:preview_website' => 'Vista previa de la página web', 'updates:check_label' => 'Chequear actualizaciones', 'updates:core_build' => 'Versión :build', 'updates:core_build_help' => 'Última versión está disponible.', 'updates:core_current_build' => 'Versión actual', 'updates:core_downloading' => 'Descargando archivos de la aplicación', 'updates:core_extracting' => 'Descomprimiendo archivos de la aplicación', 'updates:force_label' => 'Forzar actualización', 'updates:found:help' => 'Click Actualizar software para comenzar con el proceso de actualización.', 'updates:found:label' => 'Se encontraron nuevas actualizaciones!', 'updates:menu_description' => 'Actualizaciones del sistema, administrar e instalar plugins y temas.', 'updates:menu_label' => 'Actualizaciones', 'updates:name' => 'Actualizaciones de software', 'updates:none:help' => 'No se encontraron nuevas actualizaciones disponibles.', 'updates:none:label' => 'No hay actualizaciones', 'updates:plugin_author' => 'Autor', 'updates:plugin_description' => 'Descripción', 'updates:plugin_downloading' => 'Descargando plugin: :name', 'updates:plugin_extracting' => 'Descomprimiendo plugin: :name', 'updates:plugin_name' => 'Nombre', 'updates:plugin_version' => 'Versión', 'updates:plugin_version_none' => 'Nuevo plugin', 'updates:retry_label' => 'Intentar nuevamente', 'updates:theme_downloading' => 'Descargando tema: :name', 'updates:theme_extracting' => 'Descomprimiendo tema: :name', 'updates:theme_new_install' => 'Intalación de nuevo tema.', 'updates:title' => 'Administrar actualizaciones', 'updates:update_completing' => 'Finalizando el proceso de actualización', 'updates:update_failed_label' => 'Actualización falló', 'updates:update_label' => 'Actualizando software', 'updates:update_loading' => 'Cargando actualizaciones disponibles...', 'updates:update_success' => 'El proceso de actualización se realizó exitosamente.', 'user:allow' => 'Permitir', 'user:avatar' => 'Avatar', 'user:delete_confirm' => '¿Realmente desea eliminar este administrador?', 'user:deny' => 'Denegar', 'user:email' => 'Email', 'user:first_name' => 'Nombre', 'user:full_name' => 'Nombre completo', 'user:group:delete_confirm' => '¿Realmente desea eliminar este grupo de administradores?', 'user:group:list_title' => 'Gestionar Grupos', 'user:group:menu_label' => 'Grupos', 'user:group:name' => 'Grupo', 'user:group:name_field' => 'Nombre', 'user:group:new' => 'Nuevo Grupo', 'user:group:return' => 'Regresar a la lista de grupos', 'user:groups' => 'Grupos', 'user:groups_comment' => 'Especifique a qué grupos pertenece esta persona.', 'user:inherit' => 'Heredar', 'user:last_name' => 'Apellido', 'user:list_title' => 'Gestionar Administradores', 'user:login' => 'Acceso', 'user:menu_description' => 'Gestionar back-end de administrador de usuarios, grupos y permisos.', 'user:menu_label' => 'Administradores', 'user:name' => 'Administrador', 'user:new' => 'Nuevo Administrador', 'user:password' => 'Contraseña', 'user:password_confirmation' => 'Confirmar contraseña', 'user:preferences:not_authenticated' => 'No existe un usuario autenticado para cargar o guardar las preferencias para.', 'user:return' => 'Regresar a la lista de administradorest', 'user:send_invite' => 'Enviar invitación por email', 'user:send_invite_comment' => 'Utilice esta casilla de verificación para enviar una invitación al usuario por emai', 'user:superuser' => 'Super Administrador', 'user:superuser_comment' => 'Marque esta casilla para permitir que esta persona tenga acceso a todas las áreas.', 'validation:accepted' => 'The :attribute must be accepted.', 'validation:active_url' => 'The :attribute is not a valid URL.', 'validation:after' => 'The :attribute must be a date after :date.', 'validation:alpha' => 'The :attribute may only contain letters.', 'validation:alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.', 'validation:alpha_num' => 'The :attribute may only contain letters and numbers.', 'validation:array' => 'The :attribute must be an array.', 'validation:before' => 'The :attribute must be a date before :date.', 'validation:between:array' => 'The :attribute must have between :min - :max items.', 'validation:between:file' => 'The :attribute must be between :min - :max kilobytes.', 'validation:between:numeric' => 'The :attribute must be between :min - :max.', 'validation:between:string' => 'The :attribute must be between :min - :max characters.', 'validation:confirmed' => 'The :attribute confirmation does not match.', 'validation:date' => 'The :attribute is not a valid date.', 'validation:date_format' => 'The :attribute does not match the format :format.', 'validation:different' => 'The :attribute and :other must be different.', 'validation:digits' => 'The :attribute must be :digits digits.', 'validation:digits_between' => 'The :attribute must be between :min and :max digits.', 'validation:email' => 'The :attribute format is invalid.', 'validation:exists' => 'The selected :attribute is invalid.', 'validation:image' => 'The :attribute must be an image.', 'validation:in' => 'The selected :attribute is invalid.', 'validation:integer' => 'The :attribute must be an integer.', 'validation:ip' => 'The :attribute must be a valid IP address.', 'validation:max:array' => 'The :attribute may not have more than :max items.', 'validation:max:file' => 'The :attribute may not be greater than :max kilobytes.', 'validation:max:numeric' => 'The :attribute may not be greater than :max.', 'validation:max:string' => 'The :attribute may not be greater than :max characters.', 'validation:mimes' => 'The :attribute must be a file of type: :values.', 'validation:min:array' => 'The :attribute must have at least :min items.', 'validation:min:file' => 'The :attribute must be at least :min kilobytes.', 'validation:min:numeric' => 'The :attribute must be at least :min.', 'validation:min:string' => 'The :attribute must be at least :min characters.', 'validation:not_in' => 'The selected :attribute is invalid.', 'validation:numeric' => 'The :attribute must be a number.', 'validation:regex' => 'The :attribute format is invalid.', 'validation:required' => 'The :attribute field is required.', 'validation:required_if' => 'The :attribute field is required when :other is :value.', 'validation:required_with' => 'The :attribute field is required when :values is present.', 'validation:required_without' => 'The :attribute field is required when :values is not present.', 'validation:same' => 'The :attribute and :other must match.', 'validation:size:array' => 'The :attribute must contain :size items.', 'validation:size:file' => 'The :attribute must be :size kilobytes.', 'validation:size:numeric' => 'The :attribute must be :size.', 'validation:size:string' => 'The :attribute must be :size characters.', 'validation:unique' => 'The :attribute has already been taken.', 'validation:url' => 'The :attribute format is invalid.', 'warnings:extension' => 'La extensión PHP :name no está instalada. Por favor instalar esta librería y activar la extensión.', 'warnings:permissions' => 'Directorio :name o los subdirectorios no se puede escribir por PHP. Por favor establecer los permisos correctos para el servidor web en este directorio.', 'warnings:tips' => 'Consejos de configuración del sistema', 'warnings:tips_description' => 'Hay problemas que necesitan de su atención para configurar el sistema correctamente.', 'widget:not_bound' => 'El módulo con la clase \':name\' no se ha unido al controlador', 'widget:not_registered' => 'La clase del modulo \':name\' no ha sido registrada', 'zip:extract_failed' => 'No se puede extraer el archivo \':file\'.']);
示例#18
0
文件: nl.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Datum & tijd', 'access_log:email' => 'E-mailadres', 'access_log:first_name' => 'Voornaam', 'access_log:hint' => 'Dit logboek toont een lijst met succesvolle inlogpogingen door beheerders. Registraties blijven :days dagen bewaard.', 'access_log:ip_address' => 'IP-adres', 'access_log:last_name' => 'Achternaam', 'access_log:login' => 'Gebruikersnaam', 'access_log:menu_description' => 'Bekijk een lijst met succesvolle inlogpogingen van gebruikers.', 'access_log:menu_label' => 'Toegangslogboek', 'account:apply' => 'Toepassen', 'account:cancel' => 'Annuleren', 'account:delete' => 'Verwijderen', 'account:email_placeholder' => 'E-mailadres', 'account:enter_email' => 'Vul e-mailadres in', 'account:enter_login' => 'Vul gebruikersnaam in', 'account:enter_new_password' => 'Vul een nieuw wachtwoord in', 'account:forgot_password' => 'Wachtwoord vergeten?', 'account:login' => 'Inloggen', 'account:login_placeholder' => 'Gebruikersnaam', 'account:ok' => 'OK', 'account:password_placeholder' => 'Wachtwoord', 'account:password_reset' => 'Herstel wachtwoord', 'account:reset' => 'Wissen', 'account:reset_error' => 'Ongeldige herstelinformatie aangeboden. Probeer het opnieuw!', 'account:reset_fail' => 'Het is niet mogelijk het wachtwoord te herstellen!', 'account:reset_success' => 'Het wachtwoord is succesvol hersteld. Je kunt nu inloggen', 'account:restore' => 'Herstellen', 'account:restore_error' => 'Een gebruiker met de gebruikersnaam \':login\' is niet gevonden', 'account:restore_success' => 'Een e-mail met instructies om het wachtwoord te herstellen is verzonden naar jouw e-mailadres.', 'account:sign_out' => 'Uitloggen', 'ajax_handler:invalid_name' => 'Ongeldige AJAX handlernaam: :name.', 'ajax_handler:not_found' => 'AJAX handler \':name\' is niet gevonden.', 'alert:cancel_button_text' => 'Annuleren', 'alert:confirm_button_text' => 'OK', 'app:name' => 'October CMS', 'app:tagline' => 'Getting back to basics', 'asset:already_exists' => 'Bestand of map met deze naam bestaat al', 'asset:create_directory' => 'Nieuwe map', 'asset:create_file' => 'Nieuw bestand', 'asset:delete' => 'Verwijderen', 'asset:destination_not_found' => 'Doelmap is niet gevonden', 'asset:directory_name' => 'Mapnaam', 'asset:directory_popup_title' => 'Nieuwe map', 'asset:drop_down_add_title' => 'Toevoegen...', 'asset:drop_down_operation_title' => 'Actie...', 'asset:error_deleting_dir' => 'Fout bij verwijderen van de map :name.', 'asset:error_deleting_dir_not_empty' => 'Fout bij verwijderen van map :name. De map is niet leeg.', 'asset:error_deleting_directory' => 'Fout bij het verwijderen van de oorspronkelijke map :dir', 'asset:error_deleting_file' => 'Fout bij verwijderen van het bestand :name.', 'asset:error_moving_directory' => 'Fout bij verplaatsen map :dir', 'asset:error_moving_file' => 'Fout bij verplaatsen bestand :file', 'asset:error_renaming' => 'Fout bij hernoemen van bestand of map', 'asset:error_uploading_file' => 'Fout tijdens uploaden bestand \\":name\\": :error', 'asset:file_not_valid' => 'Bestand is ongeldig', 'asset:invalid_name' => 'Naam mag enkel bestaan uit letters, cijfers, spaties en de volgende tekens: ._-', 'asset:invalid_path' => 'Pad mag enkel bestaan uit letters, cijfers, spaties en de volgende tekens: ._-/', 'asset:menu_label' => 'Middelen', 'asset:move' => 'Verplaatsen', 'asset:move_button' => 'Verplaats', 'asset:move_destination' => 'Doelmap', 'asset:move_please_select' => 'selecteer', 'asset:move_popup_title' => 'Verplaats middelen', 'asset:name_cant_be_empty' => 'De naam mag niet leeg zijn', 'asset:new' => 'Nieuw bestand', 'asset:original_not_found' => 'Oorspronkelijke bestand of map is niet gevonden', 'asset:path' => 'Pad', 'asset:rename' => 'Hernoemen', 'asset:rename_new_name' => 'Nieuwe naam', 'asset:rename_popup_title' => 'Hernoemen', 'asset:select' => 'Selecteren', 'asset:select_destination_dir' => 'Selecteer een doelmap', 'asset:selected_files_not_found' => 'Geselecteerde bestanden zijn niet gevonden', 'asset:too_large' => 'Het geüploadete bestand is te groot. De maximaal toegestane bestandsgrootte is :max_size', 'asset:type_not_allowed' => 'Enkel de volgende bestandstypen zijn toegestaand: :allowed_types', 'asset:unsaved_label' => 'Niet opgeslagen middelen', 'asset:upload_files' => 'Bestand(en) uploaden', 'auth:title' => 'Beheeromgeving', 'backend_preferences:locale' => 'Taal', 'backend_preferences:locale_comment' => 'Selecteer jouw gewenste taal.', 'backend_preferences:menu_description' => 'Beheer taalvoorkeur en de weergave van het CMS.', 'backend_preferences:menu_label' => 'CMS voorkeuren', 'behavior:missing_property' => 'Klasse :class moet variabele $:property bevatten welke gebruikt wordt door het gedrag (behavior) :behavior.', 'branding:app_name' => 'Applicatie naam', 'branding:app_name_description' => 'Deze naam wordt weergegeven bij de titel van de beheeromgeving.', 'branding:app_tagline' => 'Applicatie slogan', 'branding:app_tagline_description' => 'Deze slogan wordt weergegeven in het aanmeldvenster van de beheeromgeving.', 'branding:brand' => 'Uitstraling', 'branding:colors' => 'Kleuren', 'branding:custom_stylesheet' => 'Aangepaste stylesheet', 'branding:logo' => 'Logo', 'branding:logo_description' => 'Upload een logo om te gebruiken in de beheeromgeving.', 'branding:menu_description' => 'Pas de beheeromgeving aan zoals de naam, kleuren en logo.', 'branding:menu_label' => 'Aanpassen back-end', 'branding:primary_dark' => 'Primair (Donker)', 'branding:primary_light' => 'Primair (Licht)', 'branding:secondary_dark' => 'Secundair (Donker)', 'branding:secondary_light' => 'Secundair (Licht)', 'branding:styles' => 'Stijlen', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Templates zijn succesvol verwijderd: :count.', 'cms_object:error_creating_directory' => 'Map aanmaken mislukt: \\":name\\". Controleer de schrijfrechten.', 'cms_object:error_deleting' => 'Fout bij het verwijderen van template: \\":name\\". Controleer de schrijfrechten.', 'cms_object:error_saving' => 'Bestand opslaan mislukt: \\":name\\". Controleer de schrijfrechten.', 'cms_object:file_already_exists' => 'Bestand \\":name\\" bestaat al.', 'cms_object:file_name_required' => 'Het invullen van een bestandsnaam is verplicht.', 'cms_object:invalid_file' => 'Ongeldige bestandsnaam: :name. Bestandsnamen mogen enkel bestaan uit letters, cijfers, underscores, streepjes en punten. Voorbeelden van correcte bestandsnamen: pagina.htm, pagina, map/pagina', 'cms_object:invalid_file_extension' => 'Ongeldige bestandsextensie: :invalid. Toegestane extensies zijn: :allowed.', 'cms_object:invalid_property' => 'Parameter \\":name\\" kan niet worden gewijzigd', 'combiner:not_found' => 'Het samenvoegbestand \':name\' is niet gevonden.', 'component:alias' => 'Alias', 'component:alias_description' => 'Een unieke naam voor dit component voor gebruik in de code van een pagina of layout.', 'component:invalid_request' => 'De template kan niet worden opgeslagen vanwege ongeldige componentgegevens.', 'component:menu_label' => 'Componenten', 'component:method_not_found' => 'Het component \':name\' bevat geen \':method\' methode.', 'component:no_description' => 'Geen beschrijving opgegeven', 'component:no_records' => 'Geen componenten gevonden', 'component:not_found' => 'Het component \':name\' is niet gevonden.', 'component:unnamed' => 'Naamloos', 'component:validation_message' => 'Een alias voor het component is verplicht en mag alleen bestaan uit letters, cijfers en underscores. De alias moet beginnen met een letter.', 'config:not_found' => 'Kan het configuratiebestand :file gedefinieerd voor :location niet vinden.', 'config:required' => 'Configuratie gebruikt in :location moet de waarde :property toewijzen.', 'content:delete_confirm_multiple' => 'Weet je zeker dat je de geselecteerde tekstblokken of mappen wilt verwijderen?', 'content:delete_confirm_single' => 'Weet je zeker dat je dit tekstblok wilt verwijderen?', 'content:menu_label' => 'Tekstblokken', 'content:new' => 'Nieuw tekstblok', 'content:no_list_records' => 'Geen tekstblokken (content) gevonden', 'content:not_found_name' => 'Het tekstblok (content) \':name\' is niet gevonden.', 'content:unsaved_label' => 'Niet opgeslagen tekstblokken', 'dashboard:add_widget' => 'Widget toevoegen', 'dashboard:columns' => '{1} kolom|[2,Inf] kolommen', 'dashboard:full_width' => 'Volledige breedte', 'dashboard:menu_label' => 'Overzicht', 'dashboard:status:maintenance' => 'in onderhoud', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} updates beschikbaar!|{1} update beschikbaar!|[2,Inf] updates beschikbaar!', 'dashboard:status:widget_title_default' => 'Systeemstatus', 'dashboard:widget_columns_description' => 'De widget breedte, een getal tussen 1 en 10.', 'dashboard:widget_columns_error' => 'Voer een getal tussen 1 en 10 in als widget breedte.', 'dashboard:widget_columns_label' => 'Breedte :columns', 'dashboard:widget_inspector_description' => 'Configureer de rapportage widget', 'dashboard:widget_inspector_title' => 'Widget configuratie', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'Plaats de widget in een nieuwe rij.', 'dashboard:widget_new_row_label' => 'Forceer nieuwe rij', 'dashboard:widget_title_error' => 'Een widget titel is verplicht.', 'dashboard:widget_title_label' => 'Widget titel', 'dashboard:widget_width' => 'Breedte', 'directory:create_fail' => 'Map aanmaken mislukt: :name', 'editor:auto_closing' => 'Sluit tags en speciale karakters automatisch', 'editor:code' => 'Code', 'editor:code_folding' => 'Code invouwing', 'editor:content' => 'Content', 'editor:description' => 'Omschrijving', 'editor:enter_fullscreen' => 'Volledig scherm starten', 'editor:exit_fullscreen' => 'Volledig scherm afsluiten', 'editor:filename' => 'Bestandsnaam', 'editor:font_size' => 'Lettergrootte', 'editor:hidden' => 'Verborgen', 'editor:hidden_comment' => 'Verborgen pagina zijn alleen toegankelijk voor ingelogde gebruikers.', 'editor:highlight_active_line' => 'Markeer actieve lijnen', 'editor:layout' => 'Layout', 'editor:markup' => 'Opmaak', 'editor:menu_description' => 'Beheer editor instellingen, zoals lettergrootte en kleurschema.', 'editor:menu_label' => 'Editor instellingen', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta omschrijving', 'editor:meta_title' => 'Meta titel', 'editor:new_title' => 'Nieuwe paginatitel', 'editor:preview' => 'Voorbeeld', 'editor:settings' => 'Instellingen', 'editor:show_gutter' => 'Toon \\"goot\\"', 'editor:show_invisibles' => 'Toon verborgen karakters', 'editor:tab_size' => 'Tab grootte', 'editor:theme' => 'Kleurschema', 'editor:title' => 'Titel', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Inspringen met tabs', 'editor:word_wrap' => 'Tekstterugloop', 'event_log:created_at' => 'Datum & tijd', 'event_log:empty_link' => 'Gebeurtenissenlogboek legen', 'event_log:empty_loading' => 'Bezig met het gebeurtenissenlogboek legen...', 'event_log:empty_success' => 'Het gebeurtenissenlogboek legen is gelukt.', 'event_log:hint' => 'Dit logboek toont een lijst met potentiële fouten zoals exceptions of debuginformatie, welke voorkomen in de applicatie.', 'event_log:id' => 'ID', 'event_log:id_label' => 'Gebeurtenis ID', 'event_log:level' => 'Level', 'event_log:menu_description' => 'Bekijk systeemberichten met de geregistreerde tijd en detail.', 'event_log:menu_label' => 'Gebeurtenissenlogboek', 'event_log:message' => 'Bericht', 'event_log:return_link' => 'Terug naar gebeurtenissenlogboek', 'field:invalid_type' => 'Ongeldig type veld: :type.', 'field:options_method_not_exists' => 'De modelklasse :model moet de methode :method() definiëren met daarin opties voor het veld \\":field\\".', 'file:create_fail' => 'Bestand aanmaken mislukt: :name', 'fileupload:attachment' => 'Bijlage', 'fileupload:attachment_url' => 'Bijlage URL', 'fileupload:default_prompt' => 'Klik op %s of sleep hier een bestand naar toe om te uploaden', 'fileupload:description_label' => 'Omschrijving', 'fileupload:help' => 'Voeg een titel en omschrijving toe aan deze bijlage.', 'fileupload:remove_confirm' => 'Weet je het zeker?', 'fileupload:remove_file' => 'Verwijder bestand', 'fileupload:title_label' => 'Titel', 'fileupload:upload_error' => 'Upload fout', 'fileupload:upload_file' => 'Upload bestand', 'filter:all' => 'alle', 'form:action_confirm' => 'Weet je het zeker?', 'form:add' => 'Toevoegen', 'form:apply' => 'Toepassen', 'form:behavior_not_ready' => 'Gedrag (behavior) van het formulier is niet geladen. Controleer of initForm() in de controller is aangeroepen.', 'form:cancel' => 'Annuleren', 'form:close' => 'Sluiten', 'form:complete' => 'Voltooid', 'form:concurrency_file_changed_description' => 'Heb bestand wat je aan het bewerken bent is gewijzigd door een andere gebruiker. Je kan het bestand opnieuw inladen (en wijzigingen verliezen) of het bestand te overschrijven.', 'form:concurrency_file_changed_title' => 'Bestand is gewijzigd', 'form:confirm' => 'Bevestigen', 'form:confirm_delete' => 'Weet je zeker dat je dit record wilt verwijderen?', 'form:confirm_delete_multiple' => 'Weet je zeker dat je de geselecteerde records wilt verwijderen?', 'form:confirm_tab_close' => 'Weet je zeker dat je dit tabblad wilt sluiten? Niet opgeslagen wijzigingen gaan verloren.', 'form:create' => 'Maken', 'form:create_and_close' => 'Maken en sluiten', 'form:create_success' => ':name is succesvol aangemaakt', 'form:create_title' => 'Nieuwe :name', 'form:creating' => 'Maken...', 'form:creating_name' => ':name maken...', 'form:delete' => 'Verwijderen', 'form:delete_row' => 'Rij verwijderen', 'form:delete_success' => ':name is succesvol verwijderd', 'form:deleting' => 'Verwijderen...', 'form:deleting_name' => ':name verwijderen...', 'form:field_off' => 'Uit', 'form:field_on' => 'Aan', 'form:insert_row' => 'Rij invoegen', 'form:insert_row_below' => 'Rij onder invoegen', 'form:missing_definition' => 'Het gedrag (behavior) van het formulier bevat geen kolom voor \':field\'.', 'form:missing_id' => 'Record ID van het formulier is niet opgegeven.', 'form:missing_model' => 'Geen model opgegeven voor het gedrag (behavior) van het formulier gebruikt in :class.', 'form:not_found' => 'Het formulier met record ID :id is niet gevonden.', 'form:ok' => 'OK', 'form:or' => 'of', 'form:preview_no_files_message' => 'Bestanden zijn niet geüpload.', 'form:preview_no_record_message' => 'Er zijn geen records geselecteerd.', 'form:preview_title' => 'Bekijk :name', 'form:reload' => 'Herladen', 'form:reset_default' => 'Terug naar standaard instellingen', 'form:resetting' => 'Bezig met terugzetten', 'form:resetting_name' => ':name terugzetten', 'form:return_to_list' => 'Terug naar lijst', 'form:save' => 'Opslaan', 'form:save_and_close' => 'Opslaan en sluiten', 'form:saving' => 'Opslaan...', 'form:saving_name' => ':name opslaan...', 'form:select' => 'Selecteer', 'form:select_all' => 'alles', 'form:select_none' => 'niets', 'form:select_placeholder' => 'selecteer', 'form:undefined_tab' => 'Overig', 'form:update_success' => ':name is succesvol bijgewerkt', 'form:update_title' => 'Bewerk :name', 'import_export:auto_match_columns' => 'Automatisch matchen van kolommen', 'import_export:column' => 'Kolom', 'import_export:column_preview' => 'Kolom voorbeeldweergave', 'import_export:columns' => 'Kolommen', 'import_export:created' => 'Aangemaakt', 'import_export:custom_format' => 'Aangepast formaat', 'import_export:database_fields' => 'Database velden', 'import_export:delimiter_char' => 'Scheidingsteken', 'import_export:drop_column_here' => 'Sleep kolom hierheen...', 'import_export:enclosure_char' => 'Tekstscheidingsteken', 'import_export:errors' => 'Fouten', 'import_export:escape_char' => 'Escape karakter', 'import_export:export_error' => 'Fout bij exporteren', 'import_export:export_output_format' => '1. Export uitvoerformaat', 'import_export:export_progress' => 'Voortgang exporteren', 'import_export:file_columns' => 'Bestand kolommen', 'import_export:file_format' => 'Bestandsformaat', 'import_export:first_row_contains_titles' => 'De eerste regel bevat kolomtitels', 'import_export:first_row_contains_titles_desc' => 'Vink aan als de eerste regel kolomtitels bevat die gebruikt moeten worden.', 'import_export:ignore_this_column' => 'Negeer deze kolom', 'import_export:import_error' => 'Importeer fout', 'import_export:import_file' => 'Importeer bestand', 'import_export:import_progress' => 'Voortgang importeren', 'import_export:match_columns' => '2. Vergelijk de kolommen met de database velden', 'import_export:processing' => 'Bezig met verwerken', 'import_export:processing_successful_line1' => 'Bestandsexport is succesvol voltooid!', 'import_export:processing_successful_line2' => 'De browser zal je direct doorsturen naar de download.', 'import_export:select_columns' => '2. Selecteer kolommen om te exporteren', 'import_export:set_export_options' => '3. Exporteer opties', 'import_export:set_import_options' => '3. Importeer opties', 'import_export:show_ignored_columns' => 'Toon genegeerde kolommen', 'import_export:skipped' => 'Overgeslagen', 'import_export:skipped_rows' => 'Overgeslagen rijen', 'import_export:standard_format' => 'Standaard formaat', 'import_export:updated' => 'Bijgewerkt', 'import_export:upload_csv_file' => '1. Upload een CSV bestand', 'import_export:upload_valid_csv' => 'Upload een geldig CSV bestand.', 'import_export:warnings' => 'Waarschuwingen', 'install:install_completing' => 'Bezig met het afronden van het installatieproces', 'install:install_success' => 'De plugin is succesvol geïnstalleerd.', 'install:missing_plugin_name' => 'Voer de naam van een plugin in om te installeren.', 'install:missing_theme_name' => 'Voor de naam van een thema in om te installeren.', 'install:plugin_label' => 'Installeer plugin', 'install:project_label' => 'Koppel aan project', 'install:theme_label' => 'Installeer thema', 'layout:delete_confirm_multiple' => 'Weet je zeker dat je de geselecteerde layouts wilt verwijderen?', 'layout:delete_confirm_single' => 'Weet je zeker dat je deze layout wilt verwijderen?', 'layout:menu_label' => 'Layouts', 'layout:new' => 'Nieuwe layout', 'layout:no_list_records' => 'Geen layouts gevonden', 'layout:not_found_name' => 'De layout \':name\' is niet gevonden', 'layout:unsaved_label' => 'Niet opgeslagen layouts', 'list:behavior_not_ready' => 'Gedrag (behavior) van de lijst is niet geladen. Controleer of makeLists() in de controller is aangeroepen.', 'list:column_switch_false' => 'Nee', 'list:column_switch_true' => 'Ja', 'list:default_title' => 'Lijst', 'list:delete_selected' => 'Verwijder geselecteerde', 'list:delete_selected_confirm' => 'Verwijder geselecteerde records?', 'list:delete_selected_empty' => 'Geen geselecteerde records om te verwijderen.', 'list:delete_selected_success' => 'De geselecteerde records zijn succesvol verwijderd.', 'list:invalid_column_datetime' => 'De waarde van kolom \':column\' is geen DateTime object, mist er een $dates referentie in het Model?', 'list:loading' => 'Laden...', 'list:missing_column' => 'Er zijn geen kolomdefinities voor :columns.', 'list:missing_columns' => 'De gebruikte lijst in :class heeft geen kolommen gedefineerd.', 'list:missing_definition' => 'Het gedrag (behavior) van de lijst bevat geen kolom voor \':field\'.', 'list:missing_model' => 'Geen model opgegeven voor het gedrag (behavior) van de lijst gebruikt in :class.', 'list:next_page' => 'Volgende pagina', 'list:no_records' => 'Er zijn geen resultaten gevonden.', 'list:pagination' => 'Getoonde resultaten: :from-:to van :total', 'list:prev_page' => 'Vorige pagina', 'list:records_per_page' => 'Resultaten per pagina', 'list:records_per_page_help' => 'Selecteer het aantal resultaten dat per pagina getoond moet worden. Let op: een hoog getal kan voor prestatieproblemen zorgen.', 'list:refresh' => 'Vernieuwen', 'list:search_prompt' => 'Zoeken...', 'list:setup_help' => 'Selecteer door middel van vinkjes de kolommen welke je in de lijst wilt zien. Je kunt de volgorde van kolommen veranderen door ze omhoog of omlaag te slepen.', 'list:setup_title' => 'Lijst instellingen', 'list:updating' => 'Bijwerken...', 'locale:cs' => 'Czech', 'locale:de' => 'German', 'locale:el' => 'Greek', 'locale:en' => 'English', 'locale:es' => 'Spanish', 'locale:es-ar' => 'Spanish (Argentina)', 'locale:fa' => 'Persian', 'locale:fr' => 'French', 'locale:hu' => 'Hungarian', 'locale:id' => 'Bahasa Indonesia', 'locale:it' => 'Italian', 'locale:ja' => 'Japanese', 'locale:lv' => 'Latvian', 'locale:nb-no' => 'Norwegian (Bokmål)', 'locale:nl' => 'Dutch', 'locale:pl' => 'Polish', 'locale:pt-br' => 'Portuguese (Brazil)', 'locale:ro' => 'Romanian', 'locale:ru' => 'Russian', 'locale:sk' => 'Slovak (Slovakia)', 'locale:sv' => 'Swedish', 'locale:tr' => 'Turkish', 'locale:zh-cn' => 'Chinese (China)', 'locale:zh-tw' => 'Chinese (Taiwan)', 'mail:drivers_hint_content' => 'Om deze e-mail methode te gebruiken moet de plugin \\":plugin\\" zijn geïnstalleerd.', 'mail:drivers_hint_header' => 'Stuurprogramma\'s niet geïnstalleerd', 'mail:general' => 'Algemeen', 'mail:log_file' => 'Logboek bestand', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun domein', 'mail:mailgun_domain_comment' => 'Geef hier het Mailgun domeinnaam op.', 'mail:mailgun_secret' => 'Mailgun secret', 'mail:mailgun_secret_comment' => 'Geef hier de Mailgun API key op.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill secret', 'mail:mandrill_secret_comment' => 'Geef hier de Mandrill API key op.', 'mail:menu_description' => 'Beheer e-mailinstellingen.', 'mail:menu_label' => 'E-mailinstellingen', 'mail:method' => 'E-mail methode', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'E-mailadres afzender', 'mail:sender_name' => 'Naam afzender', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Pad naar Sendmail', 'mail:sendmail_path_comment' => 'Geef hier het volledige pad op naar de Sendmail-applicatie.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'SMTP adres', 'mail:smtp_authorization' => 'SMTP authenticatie vereist', 'mail:smtp_authorization_comment' => 'Vink deze optie aan indien de SMTP server authenticatie vereist.', 'mail:smtp_encryption' => 'SMTP encryptie protocol', 'mail:smtp_encryption_none' => 'Geen encryptie', 'mail:smtp_encryption_ssl' => 'SSL', 'mail:smtp_encryption_tls' => 'TLS', 'mail:smtp_password' => 'Wachtwoord', 'mail:smtp_port' => 'SMTP poort', 'mail:smtp_ssl' => 'SSL verbinding vereist', 'mail:smtp_username' => 'Gebruikersnaam', 'mail_templates:code' => 'Code', 'mail_templates:code_comment' => 'Een unieke code die refereert naar deze lay-out', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Platte tekst', 'mail_templates:creating' => 'Aanmaken sjabloon...', 'mail_templates:creating_layout' => 'Aanmaken lay-out...', 'mail_templates:delete_confirm' => 'Weet je zeker dat je dit sjabloon wilt verwijderen?', 'mail_templates:delete_layout_confirm' => 'Weet je zeker dat je deze lay-out wilt verwijderen?', 'mail_templates:deleting' => 'Verwijderen sjabloon...', 'mail_templates:deleting_layout' => 'Verwijderen lay-out...', 'mail_templates:description' => 'Omschrijving', 'mail_templates:layout' => 'Lay-out', 'mail_templates:layouts' => 'Lay-outs', 'mail_templates:menu_description' => 'Wijzig de e-mail sjablonen die verstuurd worden naar gebruikers en beheerders. En beheer e-mail lay-outs.', 'mail_templates:menu_label' => 'E-mail sjablonen', 'mail_templates:menu_layouts_label' => 'E-mail lay-outs', 'mail_templates:name' => 'Naam', 'mail_templates:name_comment' => 'Een unieke naam die refereert naar dit sjabloon', 'mail_templates:new_layout' => 'Nieuwe lay-out', 'mail_templates:new_template' => 'Nieuw sjabloon', 'mail_templates:no_layout' => '-- Geen lay-out --', 'mail_templates:return' => 'Terug naar templatelijst', 'mail_templates:saving' => 'Opslaan sjabloon...', 'mail_templates:saving_layout' => 'Opslaan lay-out...', 'mail_templates:sending' => 'Versturen testbericht...', 'mail_templates:subject' => 'Onderwerp', 'mail_templates:subject_comment' => 'E-mail onderwerp', 'mail_templates:template' => 'Sjabloon', 'mail_templates:templates' => 'Sjablonen', 'mail_templates:test_confirm' => 'Er zal een testbericht verstuurd worden naar :email. Zal ik doorgaan?', 'mail_templates:test_send' => 'Stuur testbericht', 'mail_templates:test_success' => 'Het testbericht is succesvol verzonden.', 'maintenance:is_enabled' => 'Onderhoudsmodus inschakelen', 'maintenance:is_enabled_comment' => 'Toon de volgende pagina als onderhoudsmodus is ingeschakeld:', 'maintenance:settings_menu' => 'Onderhoudsmodus', 'maintenance:settings_menu_description' => 'Instellingen voor de onderhoudsmodus pagina.', 'markdowneditor:bold' => 'Vet', 'markdowneditor:code' => 'Code', 'markdowneditor:formatting' => 'Opmaak', 'markdowneditor:fullscreen' => 'Volledig scherm', 'markdowneditor:header1' => 'Koptekst 1', 'markdowneditor:header2' => 'Koptekst 2', 'markdowneditor:header3' => 'Koptekst 3', 'markdowneditor:header4' => 'Koptekst 4', 'markdowneditor:header5' => 'Koptekst 5', 'markdowneditor:header6' => 'Koptekst 6', 'markdowneditor:horizontalrule' => 'Invoegen horizontale lijn', 'markdowneditor:image' => 'Afbeelding', 'markdowneditor:italic' => 'Cursief', 'markdowneditor:link' => 'Hyperlink', 'markdowneditor:orderedlist' => 'Gerangschikte lijst', 'markdowneditor:preview' => 'Voorbeeldweergave', 'markdowneditor:quote' => 'Quote', 'markdowneditor:unorderedlist' => 'Ongeordende lijst', 'markdowneditor:video' => 'Video', 'media:add_folder' => 'Map toevoegen', 'media:click_here' => 'Klik hier', 'media:crop_and_insert' => 'Uitsnijden & Invoegen', 'media:delete' => 'Verwijderen', 'media:delete_confirm' => 'Weet je zeker dat je de geselecteerde items wilt verwijderen?', 'media:delete_empty' => 'Selecteer items om te verwijderen.', 'media:display' => 'Weergeven', 'media:empty_library' => 'De media bibliotheek is leeg. Upload bestanden of maak mappen aan om te beginnen.', 'media:error_creating_folder' => 'Fout bij maken van map', 'media:error_renaming_file' => 'Fout bij wijzigen naam.', 'media:filter_audio' => 'Audio', 'media:filter_documents' => 'Documenten', 'media:filter_everything' => 'Alles', 'media:filter_images' => 'Afbeeldingen', 'media:filter_video' => 'Video\'s', 'media:folder' => 'Map', 'media:folder_name' => 'Mapnaam', 'media:folder_or_file_exist' => 'Er bestaat reeds een map of bestand met deze naam.', 'media:folder_size_items' => 'item(s)', 'media:height' => 'Hoogte', 'media:image_size' => 'Grootte afbeelding:', 'media:insert' => 'Invoegen', 'media:invalid_path' => 'Ongeldig pad opgegeven: \':path\'.', 'media:last_modified' => 'Laatst gewijzigd', 'media:library' => 'Bibliotheek', 'media:menu_label' => 'Media', 'media:move' => 'Verplaatsen', 'media:move_dest_src_match' => 'Selecteer een andere doelmap.', 'media:move_destination' => 'Doelmap', 'media:move_empty' => 'Selecteer de items om te verplaatsen.', 'media:move_popup_title' => 'Verplaats bestanden of mappen', 'media:multiple_selected' => 'Meerdere items geselecteerd.', 'media:new_folder_title' => 'Nieuwe map', 'media:no_files_found' => 'Er zijn geen bestanden gevonden.', 'media:nothing_selected' => 'Er is niets geselecteerd.', 'media:order_by' => 'Sorteer op', 'media:please_select_move_dest' => 'Selecteer een doelmap.', 'media:public_url' => 'URL', 'media:resize' => 'Wijzig grootte...', 'media:resize_image' => 'Wijzig grootte van afbeelding', 'media:restore' => 'Alle wijzigingen ongedaan maken', 'media:return_to_parent' => 'Terug naar bovenliggende map', 'media:return_to_parent_label' => 'Naar bovenliggende ...', 'media:search' => 'Zoeken', 'media:select_single_image' => 'Selecteer één afbeelding.', 'media:selected_size' => 'Geselecteerd:', 'media:selection_mode' => 'Selectie modus', 'media:selection_mode_fixed_ratio' => 'Vaste ratio', 'media:selection_mode_fixed_size' => 'Vaste grootte', 'media:selection_mode_normal' => 'Normaal', 'media:selection_not_image' => 'Het geselecteerde item is geen afbeelding.', 'media:size' => 'Grootte', 'media:thumbnail_error' => 'Fout opgetreden bij genereren miniatuurweergave.', 'media:title' => 'Titel', 'media:upload' => 'Uploaden', 'media:uploading_complete' => 'Uploaden voltooid', 'media:uploading_error' => 'Upload mislukt', 'media:uploading_file_num' => 'Uploaden van :number bestanden...', 'media:width' => 'Breedte', 'mediafinder:default_prompt' => 'Klik op de %s knop om een media item te vinden', 'mediamanager:insert_audio' => 'Invoegen Media Audio', 'mediamanager:insert_image' => 'Invoegen Media Afbeelding', 'mediamanager:insert_link' => 'Invoegen Media Link', 'mediamanager:insert_video' => 'Invoegen Media Video', 'mediamanager:invalid_audio_empty_insert' => 'Selecteer een audio bestand om in te voegen.', 'mediamanager:invalid_file_empty_insert' => 'Selecteer bestand om een link naar te maken.', 'mediamanager:invalid_file_single_insert' => 'Selecteer één bestand.', 'mediamanager:invalid_image_empty_insert' => 'Selecteer afbeelding(en) om in te voegen.', 'mediamanager:invalid_video_empty_insert' => 'Selecteer een video bestand om in te voegen.', 'model:invalid_class' => 'Model :model gebruikt in :class is ongeldig. Het moet van de \\Model klasse erven (inherit).', 'model:mass_assignment_failed' => 'Massa toewijzing voor Model attribute \':attribute\' mislukt.', 'model:missing_id' => 'Record ID van het model is niet opgegeven.', 'model:missing_method' => 'Model \':class\' bevat geen \':method\' methode.', 'model:missing_relation' => 'Model \':class\' bevat geen definitie voor \':relation\'.', 'model:name' => 'Model', 'model:not_found' => 'Model \':class\' met ID :id is niet gevonden', 'myaccount:menu_description' => 'Werk accountinstellingen zoals naam, e-mailadres en wachtwoord bij.', 'myaccount:menu_keywords' => 'security login', 'myaccount:menu_label' => 'Mijn account', 'mysettings:menu_description' => 'Instellingen gerelateerd aan jouw beheeraccount', 'mysettings:menu_label' => 'Mijn instellingen', 'page:access_denied:cms_link' => 'Terug naar CMS', 'page:access_denied:help' => 'Je hebt niet de benodigde rechten om deze pagina te bekijken.', 'page:access_denied:label' => 'Toegang geweigerd', 'page:custom_error:help' => 'Onze excuses, er is iets mis gegaan. De opgevraagde pagina kan niet worden getoond.', 'page:custom_error:label' => 'Paginafout', 'page:delete_confirm_multiple' => 'Weet je zeker dat je de geselecteerde pagina\'s wilt verwijderen?', 'page:delete_confirm_single' => 'Weet je zeker dat je deze pagina wilt verwijderen?', 'page:invalid_token:label' => 'Ongeldig token', 'page:invalid_url' => 'Ongeldig URL formaat. De URL moet beginnen met een schuine streep en mag enkel bestaan uit letters, cijfers en de volgende tekens: ._-[]:?|/+*^$', 'page:menu_label' => 'Pagina\'s', 'page:new' => 'Nieuwe pagina', 'page:no_layout' => '-- geen layout --', 'page:no_list_records' => 'Geen pagina\'s gevonden', 'page:not_found:help' => 'De opgevraagde pagina kan niet worden gevonden.', 'page:not_found:label' => 'Pagina niet gevonden', 'page:not_found_name' => 'De pagina \':name\' is niet gevonden.', 'page:unsaved_label' => 'Niet opgeslagen pagina\'s', 'page:untitled' => 'Naamloos', 'partial:delete_confirm_multiple' => 'Weet je zeker dat je de geselecteerde sjablonen wilt verwijderen?', 'partial:delete_confirm_single' => 'Weet je zeker dat je dit sjabloon wilt verwijderen?', 'partial:invalid_name' => 'Ongeldige naam voor sjabloon (partial): :name.', 'partial:menu_label' => 'Sjablonen', 'partial:new' => 'Nieuw sjabloon', 'partial:no_list_records' => 'Geen sjablonen (partial) gevonden', 'partial:not_found_name' => 'Het sjabloon (partial) \':name\' is niet gevonden.', 'partial:unsaved_label' => 'Niet opgeslagen sjablonen', 'permissions:access_logs' => 'Bekijk systeem logbestanden', 'permissions:manage_assets' => 'Beheer middelen', 'permissions:manage_branding' => 'Back-end aanpassen', 'permissions:manage_content' => 'Beheer inhoud', 'permissions:manage_editor' => 'Beheer code editor instellingen', 'permissions:manage_layouts' => 'Beheer layouts', 'permissions:manage_mail_settings' => 'Beheer e-mailinstellingen', 'permissions:manage_mail_templates' => 'Beheer e-mailsjablonen', 'permissions:manage_media' => 'Beheer media', 'permissions:manage_other_administrators' => 'Beheer mede-beheerders', 'permissions:manage_pages' => 'Beheer pagina\'s', 'permissions:manage_partials' => 'Beheer sjablonen', 'permissions:manage_preferences' => 'Beheer back-end instellingen', 'permissions:manage_software_updates' => 'Beheer applicatie updates', 'permissions:manage_system_settings' => 'Beheer systeeminstellingen', 'permissions:manage_themes' => 'Beheer thema\'s', 'permissions:name' => 'Cms', 'plugin:label' => 'Plugin', 'plugin:name:help' => 'Gebruik bij het invoeren van de naam de unieke code van de plugin. Bijvoorbeeld: RainLab.Blog', 'plugin:name:label' => 'Plugin naam', 'plugin:unnamed' => 'Naamloze plugin', 'plugins:disable_confirm' => 'Weet je het zeker dat je deze plugin wilt uitschakelen?', 'plugins:disable_success' => 'Gekozen plugins zijn succesvol uitgeschakeld.', 'plugins:disabled_help' => 'Uitgeschakelde plugins worden genegeerd door de applicatie.', 'plugins:disabled_label' => 'Uitschakelen', 'plugins:enable_or_disable' => 'In- of uitschakelen', 'plugins:enable_or_disable_title' => 'In- of uitschakelen van plugins', 'plugins:enable_success' => 'Gekozen plugins zijn succesvol ingeschakeld.', 'plugins:frozen_help' => 'Uitgesloten plugins worden niet meer bijgewerkt naar een nieuwe versie.', 'plugins:frozen_label' => 'Uitsluiten van updates', 'plugins:install' => 'Installeer plugins', 'plugins:install_products' => 'Installeer plugins', 'plugins:installed' => 'Geïnstalleerde plugins', 'plugins:manage' => 'Beheer plugins', 'plugins:no_plugins' => 'Er zijn geen plugins geïnstalleerd uit de marketplace.', 'plugins:recommended' => 'Aanbevolen', 'plugins:refresh' => 'Ververs', 'plugins:refresh_confirm' => 'Weet je het zeker?', 'plugins:refresh_success' => 'Gekozen plugins succesvol ververst in het systeem.', 'plugins:remove' => 'Verwijder', 'plugins:remove_confirm' => 'Weet je het zeker dat je deze plugin wilt verwijderen?', 'plugins:remove_success' => 'Gekozen plugins succesvol verwijderd uit het systeem.', 'plugins:search' => 'Zoek plugins om te installeren', 'plugins:selected_amount' => 'Geselecteerde plugins: :amount', 'plugins:unknown_plugin' => 'De plugin is verwijderd van het bestandssysteem.', 'project:attach' => 'Project koppelen', 'project:detach' => 'Project ontkoppelen', 'project:detach_confirm' => 'Weet je zeker dat je dit project wilt ontkoppelen?', 'project:id:help' => 'Hoe achterhaal je jouw Project ID?', 'project:id:label' => 'Project ID', 'project:id:missing' => 'Voer een Project ID in.', 'project:name' => 'Project', 'project:none' => 'Geen', 'project:owner_label' => 'Eigenaar', 'project:unbind_success' => 'Project is succesvol ontkoppeld.', 'recordfinder:find_record' => 'Zoek record', 'relation:add' => 'Toevoegen', 'relation:add_a_new' => 'Nieuwe :name toevoegen', 'relation:add_name' => ':name toevoegen', 'relation:add_selected' => 'Selectie toevoegen', 'relation:cancel' => 'Annuleer', 'relation:close' => 'Sluiten', 'relation:create' => 'Maken', 'relation:create_name' => 'Maak :name', 'relation:delete' => 'Wissen', 'relation:delete_confirm' => 'Weet je het zeker?', 'relation:delete_name' => 'Wis :name', 'relation:help' => 'Klik op een item om toe te voegen', 'relation:invalid_action_multi' => 'Deze actie kan niet worden uitgevoerd op meerdere (multiple) relatie.', 'relation:invalid_action_single' => 'Deze actie kan niet worden uitgevoerd op een enkele (singular) relatie.', 'relation:link' => 'Koppel', 'relation:link_a_new' => 'Koppel een nieuwe :name', 'relation:link_name' => 'Koppel :name', 'relation:link_selected' => 'Koppel geselecteerde', 'relation:missing_config' => 'Het gedrag (behavior) van deze relatie bevat geen instellingen voor \':config\'.', 'relation:missing_definition' => 'Het gedrag (behavior) van de relatie bevat geen kolom voor \':field\'.', 'relation:missing_model' => 'Geen model opgegeven voor het gedrag (behavior) van relatie gebruikt in :class.', 'relation:preview' => 'Voorbeeldweergave', 'relation:preview_name' => 'Voorbeeldweergave :name', 'relation:related_data' => 'Gerelateerde :name data', 'relation:remove' => 'Verwijder', 'relation:remove_name' => 'Verwijder :name', 'relation:unlink' => 'Ontkoppel', 'relation:unlink_confirm' => 'Weet je het zeker?', 'relation:unlink_name' => 'Ontkoppel :name', 'relation:update' => 'Wijzigen', 'relation:update_name' => 'Wijzig :name', 'reorder:default_title' => 'Rangschik records', 'reorder:no_records' => 'Er zijn geen records beschikbaar om te rangschikken.', 'request_log:count' => 'Aantal', 'request_log:empty_link' => 'Aanvragenlogboek legen', 'request_log:empty_loading' => 'Bezig met het aanvragenlogboek legen...', 'request_log:empty_success' => 'Het aanvragenlogboek legen is gelukt.', 'request_log:hint' => 'Dit logboek toont een lijst met pagina aanvragen welke mogelijk aandacht vereisen. Bijvoorbeeld: Een bezoeker opent een CMS pagina welke niet gevonden kan worden, een aantekening wordt gemaakt met statuscode 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'Log ID', 'request_log:menu_description' => 'Bekijk foutieve of doorverwezen aanvragen zoals \'Pagina niet gevonden (404)\'.', 'request_log:menu_label' => 'Aanvragenlogboek', 'request_log:referer' => 'Verwijzingen', 'request_log:return_link' => 'Terug naar het aanvragenlogboek', 'request_log:status_code' => 'Status', 'request_log:url' => 'URL', 'server:connect_error' => 'Fout tijdens het verbinden met de server.', 'server:file_corrupt' => 'Door server aangeboden bestand is corrupt.', 'server:file_error' => 'Fout tijdens aanleveren bestand door server.', 'server:response_empty' => 'Lege reactie van de server.', 'server:response_invalid' => 'Ongeldige reactie van de server.', 'server:response_not_found' => 'De updateserver kan niet worden gevonden.', 'settings:menu_label' => 'Instellingen', 'settings:missing_model' => 'De instellingenpagina mist de definitie van een Model.', 'settings:not_found' => 'Kan specifieke instelling niet vinden.', 'settings:return' => 'Terug naar systeeminstellingen', 'settings:search' => 'Zoeken', 'settings:update_success' => 'Instellingen voor :name zijn succesvol bijgewerkt.', 'sidebar:add' => 'Toevoegen', 'sidebar:search' => 'Zoeken...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Klanten', 'system:categories:events' => 'Events', 'system:categories:logs' => 'Logboeken', 'system:categories:mail' => 'E-mail', 'system:categories:misc' => 'Diversen', 'system:categories:my_settings' => 'Mijn instellingen', 'system:categories:shop' => 'Winkel', 'system:categories:social' => 'Sociaal', 'system:categories:system' => 'Systeem', 'system:categories:team' => 'Team', 'system:categories:users' => 'Gebruikers', 'system:menu_label' => 'Systeem', 'system:name' => 'Systeem', 'template:invalid_type' => 'Onbekend type template.', 'template:not_found' => 'De opgevraagde template is niet gevonden.', 'template:saved' => 'De template is succesvol opgeslagen.', 'theme:activate_button' => 'Activeren', 'theme:active:not_found' => 'Het actieve thema is niet gevonden.', 'theme:active:not_set' => 'Er is geen actief thema geselecteerd.', 'theme:active_button' => 'Activeren', 'theme:author_label' => 'Auteur', 'theme:author_placeholder' => 'Naam of bedrijfsnaam', 'theme:code_label' => 'Code', 'theme:code_placeholder' => 'Een unieke code voor dit thema (wordt gebruikt voor distributie)', 'theme:create_button' => 'Aanmaken', 'theme:create_new_blank_theme' => 'Maak een nieuw leeg thema', 'theme:create_theme_required_name' => 'Geef a.u.b. een naam op voor dit thema.', 'theme:create_theme_success' => 'Thema succesvol aangemaakt!', 'theme:create_title' => 'Thema aanmaken', 'theme:customize_button' => 'Aanpassen', 'theme:customize_theme' => 'Thema aanpassen', 'theme:default_tab' => 'Eigenschappen', 'theme:delete_active_theme_failed' => 'Kan het actieve thema niet verwijderen, maak eerst een ander thema actief.', 'theme:delete_button' => 'Verwijderen', 'theme:delete_confirm' => 'Weet je zeker dat je dit thema wilt verwijderen? Dit kan niet ongedaan worden gemaakt!', 'theme:delete_theme_success' => 'Thema succesvol verwijderd!', 'theme:description_label' => 'Omschrijving', 'theme:description_placeholder' => 'Thema omschrijving', 'theme:dir_name_create_label' => 'Mapnaam van het thema', 'theme:dir_name_invalid' => 'Naam mag alleen cijfers, letters en de volgende symbolen bevatten: _-', 'theme:dir_name_label' => 'Mapnaam', 'theme:dir_name_taken' => 'Opgegeven mapnaam bestaat reeds.', 'theme:duplicate_button' => 'Dupliceren', 'theme:duplicate_theme_success' => 'Thema succesvol gedupliceerd!', 'theme:duplicate_title' => 'Dupliceer thema', 'theme:edit:not_found' => 'Het te bewerken thema is niet gevonden.', 'theme:edit:not_match' => 'Het object dat je probeert te openen behoort niet tot het te bewerken thema. Herlaad de pagina.', 'theme:edit:not_set' => 'Er is geen thema ingesteld om te kunnen bewerken.', 'theme:edit_properties_button' => 'Wijzig eigenschappen', 'theme:edit_properties_title' => 'Thema', 'theme:export_button' => 'Exporteren', 'theme:export_folders_comment' => 'Selecteer de mappen die je wilt exporteren:', 'theme:export_folders_label' => 'Mappen', 'theme:export_title' => 'Exporteer thema', 'theme:find_more_themes' => 'Zoek meer thema\'s', 'theme:homepage_label' => 'Website', 'theme:homepage_placeholder' => 'Website URL', 'theme:import_button' => 'Importeren', 'theme:import_folders_comment' => 'Selecteer de mappen die je wilt importeren:', 'theme:import_folders_label' => 'Mappen', 'theme:import_overwrite_comment' => 'Untick this box to only import new files', 'theme:import_overwrite_label' => 'Overschijf bestaande bestanden', 'theme:import_theme_success' => 'Thema succesvol geïmporteerd!', 'theme:import_title' => 'Importeer thema', 'theme:import_uploaded_file' => 'Thema archiefbestand', 'theme:label' => 'Thema', 'theme:manage_button' => 'Beheer', 'theme:manage_title' => 'Beheer thema', 'theme:name:help' => 'Gebruik bij het invoeren van de naam de unieke code van het thema. Bijvoorbeeld: RainLab.Vanilla', 'theme:name:label' => 'Thema naam', 'theme:name_create_placeholder' => 'Thema naam', 'theme:name_label' => 'Naam', 'theme:new_directory_name_comment' => 'Geef een nieuwe mapnaam op voor het gedupliceerde thema.', 'theme:new_directory_name_label' => 'Thema mapnaam', 'theme:not_found_name' => 'Het thema \':name\' is niet gevonden.', 'theme:return' => 'Terug naar thema lijst', 'theme:save_properties' => 'Eigenschappen opslaan', 'theme:saving' => 'Thema opslaan...', 'theme:settings_menu' => 'Front-end thema', 'theme:settings_menu_description' => 'Bekijk de lijst met geïnstalleerde thema\'s en selecteer een beschikbaar thema.', 'theme:theme_label' => 'Thema', 'theme:theme_title' => 'Thema\'s', 'theme:unnamed' => 'Naamloos thema', 'themes:install' => 'Installeer themas', 'themes:installed' => 'Geïnstalleerde thema\'s', 'themes:no_themes' => 'Er zijn geen thema\'s geinstallerd uit de marketplace.', 'themes:recommended' => 'Aanbevolen', 'themes:remove_confirm' => 'Weet je zeker dat je dit thema wilt verwijderen?', 'themes:search' => 'Zoek thema\'s om te installeren...', 'tooltips:preview_website' => 'Voorvertoning website', 'updates:check_label' => 'Controleer op updates', 'updates:core_build' => 'Build :build', 'updates:core_build_help' => 'De meest recente versie is beschikbaar.', 'updates:core_current_build' => 'Huidige build', 'updates:core_downloading' => 'Bestanden aan het downloaden', 'updates:core_extracting' => 'Bestanden aan het uitpakken', 'updates:details_author' => 'Auteur', 'updates:details_current_version' => 'Huidige versie', 'updates:details_readme' => 'Documentatie', 'updates:details_readme_missing' => 'Er is geen documentatie beschikbaar.', 'updates:details_title' => 'Plugin details', 'updates:details_upgrades' => 'Upgrade instructie', 'updates:details_upgrades_missing' => 'Er is geen upgrade instructie beschikbaar.', 'updates:details_view_homepage' => 'Toon homepagina', 'updates:disabled' => 'Uitgeschakeld', 'updates:force_label' => 'Forceer update', 'updates:found:help' => 'Klik op \'Applicatie bijwerken\' om het updateproces te starten.', 'updates:found:label' => 'Nieuwe updates beschikbaar!', 'updates:important_action:confirm' => 'Bevestig update', 'updates:important_action:empty' => 'Selecteer actie', 'updates:important_action:ignore' => 'Negeer deze plugin (altijd)', 'updates:important_action:skip' => 'Sla deze plugin over (eenmalig)', 'updates:important_action_required' => 'Actie vereist!', 'updates:important_alert_text' => 'Een aantal updates vereisen aandacht.', 'updates:important_view_guide' => 'Toon uprgade handleiding', 'updates:menu_description' => 'Update het systeem, beheer en installeer plugins en thema\'s.', 'updates:menu_label' => 'Updates', 'updates:name' => 'Applicatie-update', 'updates:none:help' => 'Er zijn geen nieuwe updates gevonden.', 'updates:none:label' => 'Geen updates', 'updates:plugin_author' => 'Auteur', 'updates:plugin_code' => 'Code', 'updates:plugin_current_version' => 'Huidige versie', 'updates:plugin_description' => 'Omschrijving', 'updates:plugin_downloading' => 'Plugin downloaden: :name', 'updates:plugin_extracting' => 'Plugin uitpakken: :name', 'updates:plugin_name' => 'Naam', 'updates:plugin_version' => 'Versie', 'updates:plugin_version_none' => 'Nieuwe plugin', 'updates:plugins' => 'Plugins', 'updates:retry_label' => 'Probeer nogmaals', 'updates:return_link' => 'Terug naar updates', 'updates:theme_downloading' => 'Thema downloaden: :name', 'updates:theme_extracting' => 'Thema uitpakken: :name', 'updates:theme_new_install' => 'Nieuwe thema-installatie.', 'updates:themes' => 'Thema\'s', 'updates:title' => 'Beheer updates', 'updates:update_completing' => 'Afronden updateproces', 'updates:update_failed_label' => 'Update mislukt', 'updates:update_label' => 'Applicatie bijwerken', 'updates:update_loading' => 'Beschikbare updates laden...', 'updates:update_success' => 'Het updateproces is succesvol afgerond.', 'user:account' => 'Account', 'user:allow' => 'Toestaat', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Weet je zeker dat je deze beheerder wilt verwijderen?', 'user:deny' => 'Weigeren', 'user:email' => 'E-mailadres', 'user:first_name' => 'Voornaam', 'user:full_name' => 'Volledige naam', 'user:group:code_comment' => 'Voer een unieke code in als je deze met de API wilt gebruiken.', 'user:group:code_field' => 'Code', 'user:group:delete_confirm' => 'Weet je zeker dat je deze beheerdersgroep wilt verwijderen?', 'user:group:description_field' => 'Omschrijving', 'user:group:is_new_user_default_field' => 'Voeg nieuwe beheerders automatisch toe aan deze groep.', 'user:group:list_title' => 'Beheer groepen', 'user:group:menu_label' => 'Groepen', 'user:group:name' => 'Groep', 'user:group:name_field' => 'Naam', 'user:group:new' => 'Nieuwe beheerdersgroep', 'user:group:return' => 'Terug naar het groepenoverzicht', 'user:group:users_count' => 'Gebruikers', 'user:groups' => 'Groepen', 'user:groups_comment' => 'Selecteer de groepen waar deze gebruiker bij hoort.', 'user:inherit' => 'Overerven', 'user:last_name' => 'Achternaam', 'user:list_title' => 'Beheer beheerders', 'user:login' => 'Gebruikersnaam', 'user:menu_description' => 'Beheer beheerders, groepen en rechten.', 'user:menu_label' => 'Beheerders', 'user:name' => 'Beheerder', 'user:new' => 'Nieuwe beheerder', 'user:password' => 'Wachtwoord', 'user:password_confirmation' => 'Bevestig wachtwoord', 'user:permissions' => 'Rechten', 'user:preferences:not_authenticated' => 'Er is geen geauthenticeerde gebruiker om gegevens voor te laden of op te slaan.', 'user:return' => 'Terug naar het beheerdersoverzicht', 'user:send_invite' => 'Stuur uitnodiging per e-mail', 'user:send_invite_comment' => 'Vink deze optie aan om de gebruiker een uitnodiging per e-mail te sturen', 'user:superuser' => 'Supergebruiker', 'user:superuser_comment' => 'Vink deze optie aan om de gebruiker volledige rechten tot het systeem te geven.', 'validation:accepted' => 'Het veld :attribute moet worden geaccepteerd.', 'validation:active_url' => 'De URL van :attribute is ongeldig.', 'validation:after' => 'De datum van :attribute moet een waarde zijn na :date.', 'validation:alpha' => 'Het veld :attribute mag enkel uit letters bestaan.', 'validation:alpha_dash' => 'Het veld :attribute mag enkel uit letters, cijfers en streepjes bestaan.', 'validation:alpha_num' => 'Het veld :attribute mag enkel uit letters en cijfers bestaan.', 'validation:array' => 'Het veld :attribute moet een array zijn.', 'validation:before' => 'De datum van :attribute moet een waarde zijn voor :date.', 'validation:between:array' => 'Het veld :attribute moet tussen de :min en :max objecten bevatten.', 'validation:between:file' => 'De bestandsgrootte van :attribute moet tussen :min en :max kilobytes zijn.', 'validation:between:numeric' => 'Het veld :attribute moet een waarde hebben tussen :min en :max.', 'validation:between:string' => 'Het aantal tekens van :attribute moet tussen de :min en :max zijn.', 'validation:confirmed' => 'De bevestiging van :attribute is ongeldig.', 'validation:date' => 'De datum van :attribute is ongeldig.', 'validation:date_format' => 'Het veld :attribute komt niet overeen met het formaat :format.', 'validation:different' => 'De velden :attribute en :other moeten verschillend zijn.', 'validation:digits' => 'Het veld :attribute moet uit :digits cijfers bestaan.', 'validation:digits_between' => 'Het veld :attribute moet tussen :min en :max tekens lang zijn.', 'validation:email' => 'Het e-mailadres van :attribute is ongeldig.', 'validation:exists' => 'De waarde van :attribute is ongeldig.', 'validation:extensions' => 'Het bestand van :attribute moet een van deze extensies hebben: :values.', 'validation:image' => 'De afbeelding van :attribute is ongeldig.', 'validation:in' => 'De gekozen waarde van :attribute is ongeldig.', 'validation:integer' => 'De waarde van :attribute moet uit een heel getal bestaan.', 'validation:ip' => 'Het IP-adres van :attribute is ongeldig.', 'validation:max:array' => 'Het veld :attribute mag niet meer dan :max objecten bevatten.', 'validation:max:file' => 'De bestandsgrootte van :attribute mag niet groter zijn dan :max kilobytes.', 'validation:max:numeric' => 'De waarde van :attribute mag niet hoger zijn dan :max.', 'validation:max:string' => 'Het aantal tekens van :attribute mag niet groter zijn dan :max tekens.', 'validation:mimes' => 'Het bestand van :attribute mag enkel zijn van het type: :values.', 'validation:min:array' => 'Het veld :attribute moet minimaal :min objecten bevatten.', 'validation:min:file' => 'De bestandsgrootte van :attribute moet minimaal :min kilobytes zijn.', 'validation:min:numeric' => 'De waarde van :attribute minimaal :min zijn.', 'validation:min:string' => 'Het aantal tekens van :attribute moet minimaal :min zijn.', 'validation:not_in' => 'De gekozen waarde van :attribute is ongeldig.', 'validation:numeric' => 'De waarde van :attribute moet numeriek zijn.', 'validation:regex' => 'De opbouw van :attribute is ongeldig.', 'validation:required' => 'Het veld :attribute is verplicht.', 'validation:required_if' => 'Het veld :attribute is verplicht wanneer :other is :value.', 'validation:required_with' => 'Het veld :attribute is verplicht wanneer :values is gekozen.', 'validation:required_without' => 'Het veld :attribute is verplicht wanneer :values niet is gekozen.', 'validation:same' => 'De velden :attribute en :other moeten overeen komen.', 'validation:size:array' => 'Het veld :attribute moet exact :size objecten bevatten.', 'validation:size:file' => 'De bestandsgrootte van :attribute moet exact :size kilobytes zijn.', 'validation:size:numeric' => 'De waarde van :attribute moet exact :size zijn.', 'validation:size:string' => 'Het aantal tekens van :attribute moet exact :size zijn.', 'validation:unique' => 'Het veld :attribute is al toegewezen.', 'validation:url' => 'De URL van :attribute is ongeldig.', 'warnings:extension' => 'De PHP extensie :name is niet geïnstalleerd. Installeer deze bibliotheek en activeer de extensie.', 'warnings:permissions' => 'De map :name of de submapen zijn niet schrijfbaar voor PHP. Zet de bijhorende rechten voor de webserver in deze map.', 'warnings:tips' => 'Systeem configuratie tips', 'warnings:tips_description' => 'Er zijn problemen gevonden waar je aandacht aan moet besteden om uw systeem goed te configureren.', 'widget:not_bound' => 'Een widget met klassenaam \':name\' is niet gekoppeld aan de controller', 'widget:not_registered' => 'Een widget met klassenaam \':name\' is niet geregistreerd', 'zip:extract_failed' => 'Kan het corebestand \':file\' niet uitpakken.']);
示例#19
0
文件: zhtw.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => '日期 & 時間', 'access_log:email' => 'Email', 'access_log:first_name' => '名', 'access_log:hint' => '這個log顯示了管理員成功登入的訊息. 記錄保持:days天。', 'access_log:ip_address' => 'IP地址', 'access_log:last_name' => '姓', 'access_log:login' => '登入', 'access_log:menu_description' => '查看成功登入管理介面使用者日誌。', 'access_log:menu_label' => '訪問日誌', 'account:apply' => '套用', 'account:cancel' => '取消', 'account:delete' => '刪除', 'account:email_placeholder' => 'email', 'account:enter_email' => '輸入您的email', 'account:enter_login' => '輸入帳號', 'account:enter_new_password' => '輸入新密碼', 'account:forgot_password' => '忘記您的密碼?', 'account:login' => '登入', 'account:login_placeholder' => '登入', 'account:ok' => 'OK', 'account:password_placeholder' => '密碼', 'account:password_reset' => '密碼重置', 'account:reset' => '重置', 'account:reset_error' => '密碼重置失敗. 請重試!', 'account:reset_fail' => '不能重置您的密碼!', 'account:reset_success' => '您的密碼已經重置成功. 您現在可以登入了', 'account:restore' => '還原', 'account:restore_error' => '找不到使用者 \':login\'', 'account:restore_success' => '密碼重置的郵件已發送到您的電子信箱', 'account:sign_out' => '登出', 'ajax_handler:invalid_name' => '不合法的 AJAX 處理器: :name.', 'ajax_handler:not_found' => ' AJAX 處理器 \':name\' 找不到.', 'app:name' => 'October CMS', 'app:tagline' => '登入', 'asset:already_exists' => '檔案或目錄已存在', 'asset:create_directory' => '新建目錄', 'asset:create_file' => '新建檔案', 'asset:delete' => '刪除', 'asset:destination_not_found' => '目標目錄找不到', 'asset:directory_name' => '目錄名', 'asset:directory_popup_title' => '新目錄', 'asset:drop_down_add_title' => '增加...', 'asset:drop_down_operation_title' => '動作...', 'asset:error_deleting_dir' => '刪除檔案 :name 錯誤.', 'asset:error_deleting_dir_not_empty' => '刪除目錄 :name 錯誤. 目錄不為空.', 'asset:error_deleting_directory' => '刪除原始目錄 :dir 錯誤', 'asset:error_deleting_file' => '刪除檔案 :name 錯誤.', 'asset:error_moving_directory' => '移動目錄 :dir 錯誤', 'asset:error_moving_file' => '移動檔案 :file 錯誤', 'asset:error_renaming' => '重命名檔案或目錄錯誤', 'asset:error_uploading_file' => '上傳檔案錯誤 \':name\': :error', 'asset:file_not_valid' => '檔案不合法', 'asset:invalid_name' => '名稱只能包含數字, 拉丁字母, 空格和以下字元: _-', 'asset:invalid_path' => '路徑名稱只能包含數字, 拉丁字母和以下字元: _-/', 'asset:menu_label' => '資源', 'asset:move' => '移動', 'asset:move_button' => '移動', 'asset:move_destination' => '目標目錄', 'asset:move_please_select' => '請選擇', 'asset:move_popup_title' => '移動資源', 'asset:name_cant_be_empty' => '名稱不能為空', 'asset:new' => '新檔案', 'asset:original_not_found' => '原始檔案或目錄找不到', 'asset:path' => '路徑', 'asset:rename' => '重命名', 'asset:rename_new_name' => '新名稱', 'asset:rename_popup_title' => '重命名', 'asset:select' => '選擇', 'asset:select_destination_dir' => '請選擇目標目錄', 'asset:selected_files_not_found' => '選擇的檔案找不到', 'asset:too_large' => '上傳的檔案太大. 最大檔案大小是 :max_size', 'asset:type_not_allowed' => '只有下面的檔案類型是允許的: :allowed_types', 'asset:unsaved_label' => '未保存的資源', 'asset:upload_files' => '上傳檔案', 'auth:title' => '管理介面', 'backend_preferences:locale' => '語言', 'backend_preferences:locale_comment' => '選擇您希望使用的本地語言。', 'backend_preferences:menu_description' => '管理您的管理介面設定, 例如希望使用的語言。', 'backend_preferences:menu_label' => '管理介面設定', 'behavior:missing_property' => 'Class :class 必須定義屬性 $:property 被 :behavior behavior 使用.', 'branding:app_name' => '網站名稱', 'branding:app_name_description' => '這個名稱顯示在管理介面的標題區域', 'branding:app_tagline' => '網站標語', 'branding:app_tagline_description' => '標語顯示在管理介面的登入介面', 'branding:brand' => '品牌', 'branding:colors' => '顏色', 'branding:custom_stylesheet' => '自訂樣式', 'branding:logo' => 'Logo', 'branding:logo_description' => '上傳自訂logo到管理介面', 'branding:menu_description' => '自訂管理區域, 例如名字, 顏色和logo', 'branding:menu_label' => '自訂管理介面', 'branding:primary_dark' => '主要 (Dark)', 'branding:primary_light' => '主要 (Light)', 'branding:secondary_dark' => '次要 (Dark)', 'branding:secondary_light' => '次要 (Light)', 'branding:styles' => '樣式', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => '模板成功刪除: :count.', 'cms_object:error_creating_directory' => '建立檔案夾 :name 錯誤. 請檢查寫權限.', 'cms_object:error_deleting' => '刪除模板檔案 \':name\' 錯誤. 請檢查寫權限.', 'cms_object:error_saving' => '保存檔案 \':name\' 錯誤. 請檢查寫權限.', 'cms_object:file_already_exists' => '檔案 \':name\' 已經存在.', 'cms_object:file_name_required' => '需要檔案名字串.', 'cms_object:invalid_file' => '不合法的檔案名: :name. 檔案名只能包括字母或數字, _, - 和 .. 一些正確的檔案名: page.htm, page, subdirectory/page', 'cms_object:invalid_file_extension' => '不合法的檔案擴展: :invalid. 允許的擴展: :allowed.', 'cms_object:invalid_property' => '屬性 \':name\' 不能設定', 'combiner:not_found' => '混合檔案 \':name\' 沒找到.', 'component:alias' => '別名', 'component:alias_description' => '這個組件的唯一名稱, 在頁面或者佈局代碼中.', 'component:invalid_request' => '模板不能保存, 因為非法組件數據.', 'component:menu_label' => '組件', 'component:method_not_found' => '組件 \':name\' 不包含方法 \':method\'.', 'component:no_description' => '沒有描述', 'component:no_records' => '找不到組件', 'component:not_found' => '組件 \':name\' 找不到.', 'component:unnamed' => '未命名的', 'component:validation_message' => '需要組件別名, 且只能包含拉丁字元, 數字和下劃線. 別名必須以拉丁字元開頭.', 'config:not_found' => '不能搜尋設定檔案 :file 為 :location 定義.', 'config:required' => '設定 :location 必須有 \':property\'.', 'content:delete_confirm_multiple' => '您真的想要刪除選取的檔案或目錄嗎?', 'content:delete_confirm_single' => '您真的想要刪除這個內容檔案?', 'content:menu_label' => '內容', 'content:new' => '新內容檔案', 'content:no_list_records' => '找不到內容檔案', 'content:not_found_name' => '內容檔案 \':name\' 找不到.', 'content:unsaved_label' => '未保存內容', 'dashboard:add_widget' => '新增元件', 'dashboard:columns' => '{1} 欄|[2,Inf] 欄', 'dashboard:full_width' => '全部寬度', 'dashboard:menu_label' => '儀表板', 'dashboard:status:maintenance' => '維護中', 'dashboard:status:online' => '在線', 'dashboard:status:update_available' => '{0} 更新可用!|{1} 更新可用!|[2,Inf] 更新可用!', 'dashboard:status:widget_title_default' => '系統狀態', 'dashboard:widget_columns_description' => '元件寬度, 1 到 10', 'dashboard:widget_columns_error' => '請輸入元件寬度, 1 到 10', 'dashboard:widget_columns_label' => '寬度 :columns', 'dashboard:widget_inspector_description' => '設定報表元件', 'dashboard:widget_inspector_title' => '元件設定', 'dashboard:widget_label' => '元件', 'dashboard:widget_new_row_description' => '把元件放到新列', 'dashboard:widget_new_row_label' => '強制新列', 'dashboard:widget_title_error' => '需要元件標題', 'dashboard:widget_title_label' => '元件標題', 'dashboard:widget_width' => '寬度', 'directory:create_fail' => '不能建立目錄: :name', 'editor:code' => '代碼', 'editor:code_folding' => '代碼摺疊', 'editor:content' => '內容', 'editor:description' => '描述', 'editor:enter_fullscreen' => '進入全屏模式', 'editor:exit_fullscreen' => '退出全屏模式', 'editor:filename' => '檔案名', 'editor:font_size' => '字體大小', 'editor:hidden' => '隱藏', 'editor:hidden_comment' => '隱藏頁面只能被登錄的後台使用者訪問.', 'editor:highlight_active_line' => '醒目顯示操作中的行', 'editor:layout' => '佈局', 'editor:markup' => 'Markup', 'editor:menu_description' => '自訂代碼編輯器選項, 例如字體大小和顏色主題', 'editor:menu_label' => '代碼編輯器選項', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta 描述', 'editor:meta_title' => 'Meta 標題', 'editor:new_title' => '新檔案標題', 'editor:preview' => '預覽', 'editor:settings' => '設定', 'editor:show_gutter' => '顯示gutter', 'editor:show_invisibles' => '顯示隱藏字元', 'editor:tab_size' => '標籤大小', 'editor:theme' => '色彩主題', 'editor:title' => '標題', 'editor:url' => 'URL', 'editor:use_hard_tabs' => '使用tabs縮進', 'editor:word_wrap' => '自動換行', 'event_log:created_at' => '時間和日期', 'event_log:empty_link' => '清空事件日誌', 'event_log:empty_loading' => '清空事件日誌...', 'event_log:empty_success' => '成功清空時間日誌.', 'event_log:hint' => '日誌顯示了程序中的潛在錯誤, 比如異常和測試訊息.', 'event_log:id' => 'ID', 'event_log:id_label' => '事件 ID', 'event_log:level' => '等級', 'event_log:menu_description' => '查看系統日誌訊息, 包括時間和詳細訊息.', 'event_log:menu_label' => '事件日誌', 'event_log:message' => '訊息', 'event_log:return_link' => '返回時間日誌', 'field:invalid_type' => '錯誤的字串類型 :type', 'field:options_method_not_exists' => '模型 :model 必須定義一個返回 \':field\' 表單字串選項的方法 :method()。', 'file:create_fail' => '不能建立檔案: :name', 'fileupload:attachment' => '附件', 'fileupload:description_label' => '描述', 'fileupload:help' => '給附件新增標題和描述', 'fileupload:title_label' => '標題', 'filter:all' => '全部', 'form:action_confirm' => '您確定?', 'form:add' => '增加', 'form:apply' => '應用', 'form:behavior_not_ready' => '表單還沒初始化, 確保您調用了控制器中的 initForm()', 'form:cancel' => '取消', 'form:close' => '關閉', 'form:concurrency_file_changed_description' => '您正在編輯的檔案正在被其他使用者修改. 您可以重新載入或覆蓋硬碟上的檔案.', 'form:concurrency_file_changed_title' => '檔案異動', 'form:confirm' => '確認', 'form:confirm_tab_close' => '您真的想要關閉這個標籤嗎? 未儲存的改變會丟失', 'form:create' => '建立', 'form:create_and_close' => '建立和關閉', 'form:create_success' => ':name 建立成功', 'form:create_title' => '新 :name', 'form:creating' => '建立中...', 'form:creating_name' => '建立 :name...', 'form:delete' => '刪除', 'form:delete_row' => '刪除行', 'form:delete_success' => ':name 刪除成功', 'form:deleting' => '刪除中...', 'form:deleting_name' => '刪除 :name...', 'form:field_off' => '關', 'form:field_on' => '開', 'form:insert_row' => '插入行', 'form:missing_definition' => '表單不包含字串 \':field\'.', 'form:missing_id' => '表單記錄ID沒有指定', 'form:missing_model' => ':class 中使用的表單沒有定義的model', 'form:not_found' => '表單 ID :id 找不到', 'form:ok' => 'OK', 'form:or' => '或', 'form:preview_no_files_message' => '檔案沒有上傳', 'form:preview_title' => '預覽 :name', 'form:reload' => '重新載入', 'form:reset_default' => '重置到預設', 'form:resetting' => '重置', 'form:resetting_name' => '重置 :name', 'form:save' => '儲存', 'form:save_and_close' => '儲存和關閉', 'form:saving' => '儲存...', 'form:saving_name' => '儲存 :name...', 'form:select' => '選擇', 'form:select_all' => 'all', 'form:select_none' => 'none', 'form:select_placeholder' => '請選擇', 'form:undefined_tab' => '雜項', 'form:update_success' => ':name 更新成功', 'form:update_title' => '編輯 :name', 'install:install_completing' => '完成安裝過程', 'install:install_success' => '外掛安裝成功。', 'install:missing_plugin_name' => '請輸入要安裝的外掛名稱。', 'install:missing_theme_name' => '請輸入要安裝的主題名稱。', 'install:plugin_label' => '安裝外掛', 'install:project_label' => '加入產品', 'install:theme_label' => '安裝主題', 'layout:delete_confirm_multiple' => '您真的想要刪除選取的佈局?', 'layout:delete_confirm_single' => '您真的想要刪除這個佈局?', 'layout:menu_label' => '佈局', 'layout:new' => '新佈局', 'layout:no_list_records' => '找不到佈局', 'layout:not_found_name' => '佈局 \':name\' 找不到', 'layout:unsaved_label' => '未保存佈局', 'list:behavior_not_ready' => '列表沒有初始化, 確認您的控制器中調用了makeLists()', 'list:default_title' => '列表', 'list:delete_selected' => '刪除選擇的', 'list:delete_selected_confirm' => '刪除選取的記錄?', 'list:delete_selected_empty' => '沒有需要刪除的記錄', 'list:delete_selected_success' => '成功刪除選擇的記錄', 'list:invalid_column_datetime' => '欄值 \':column\' 不是時間對象, 缺少了 $dates 在模型中的引用嗎?', 'list:loading' => '載入中...', 'list:missing_column' => '沒有 :columns 的欄定義', 'list:missing_columns' => ':class 中使用的列表沒有定義好的欄', 'list:missing_definition' => '列表不包含 \':field\' 欄.', 'list:missing_model' => ':class 中的列表沒有定義好的模型。', 'list:next_page' => '下一頁', 'list:no_records' => '目前頁面中沒有記錄', 'list:pagination' => '顯示記錄: :from-:to :total', 'list:prev_page' => '之前頁', 'list:records_per_page' => '每頁的記錄', 'list:records_per_page_help' => '選擇每頁想顯示的記錄數量. 請注意一頁中太多記錄可能會降低性能', 'list:search_prompt' => '搜尋...', 'list:setup_help' => '使用多選框選擇您想在列表中看到的欄. 您可以通過拖拽調整欄的位置', 'list:setup_title' => '建立列表', 'locale:cs' => 'Czech', 'locale:de' => 'German', 'locale:en' => 'English', 'locale:es' => 'Spanish', 'locale:es-ar' => 'Spanish (Argentina)', 'locale:fa' => 'Persian', 'locale:fr' => 'French', 'locale:hu' => 'Hungarian', 'locale:id' => 'Bahasa Indonesia', 'locale:it' => 'Italian', 'locale:ja' => 'Japanese', 'locale:lv' => 'Latvian', 'locale:nb-no' => 'Norwegian (Bokmål)', 'locale:nl' => 'Dutch', 'locale:pl' => 'Polish', 'locale:pt-br' => 'Portuguese (Brazil)', 'locale:ro' => 'Romanian', 'locale:ru' => 'Russian', 'locale:sk' => 'Slovak (Slovakia)', 'locale:sv' => 'Swedish', 'locale:tr' => 'Turkish', 'locale:zh-cn' => 'Chinese (China)', 'locale:zh-tw' => 'Chinese (Taiwan)', 'mail:general' => '常規', 'mail:log_file' => '日誌檔案', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun 域名', 'mail:mailgun_domain_comment' => '請確認 Mailgun 域名.', 'mail:mailgun_secret' => 'Mailgun Secret', 'mail:mailgun_secret_comment' => '輸入您的 Mailgun API key.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill Secret', 'mail:mandrill_secret_comment' => '輸入您的 Mandrill API key.', 'mail:menu_description' => '管理郵件設定.', 'mail:menu_label' => '郵件設定', 'mail:method' => '郵件方法', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => '發送者郵件', 'mail:sender_name' => '發送者名稱', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Sendmail 路徑', 'mail:sendmail_path_comment' => '請確認 Sendmail 路徑.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'SMTP 地址', 'mail:smtp_authorization' => '需要 SMTP 認證', 'mail:smtp_authorization_comment' => '勾選這個多選框如果您的SMTP伺服器需要認證.', 'mail:smtp_password' => '密碼', 'mail:smtp_port' => 'SMTP 端口', 'mail:smtp_ssl' => '需要SSL連接', 'mail:smtp_username' => '使用者名', 'mail_templates:code' => '代碼', 'mail_templates:code_comment' => '指向這個模板的唯一代碼', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => '純文字', 'mail_templates:description' => '描述', 'mail_templates:layout' => '佈局', 'mail_templates:layouts' => '佈局', 'mail_templates:menu_description' => '編輯發送到使用者和管理員的郵件模板, 管理郵件佈局.', 'mail_templates:menu_label' => '郵件模板', 'mail_templates:menu_layouts_label' => '郵件佈局', 'mail_templates:name' => '名稱', 'mail_templates:name_comment' => '指向這個模板的唯一名稱', 'mail_templates:new_layout' => '新佈局', 'mail_templates:new_template' => '新模板', 'mail_templates:return' => '返回模板列表', 'mail_templates:subject' => '標題', 'mail_templates:subject_comment' => '郵箱訊息標題', 'mail_templates:template' => '模板', 'mail_templates:templates' => '模板', 'mail_templates:test_send' => '發送測試訊息', 'mail_templates:test_success' => '測試訊息已經成功發送.', 'maintenance:is_enabled' => '啟用維護模式', 'maintenance:is_enabled_comment' => '當啟用時, 網站訪問者會看到下述頁面.', 'maintenance:settings_menu' => '維護模式', 'maintenance:settings_menu_description' => '設定維護模式頁面和開關設定.', 'media:add_folder' => '增加檔案夾', 'media:click_here' => '點選這裡', 'media:crop_and_insert' => '裁剪並插入', 'media:delete' => '刪除', 'media:delete_confirm' => '您是否想要刪除選中項?', 'media:delete_empty' => '請選擇刪除項.', 'media:display' => '顯示', 'media:empty_library' => '媒體庫是空的. 從上傳檔案或建立檔案夾開始.', 'media:error_creating_folder' => '新建檔案夾錯誤', 'media:error_renaming_file' => '重命名錯誤.', 'media:filter_audio' => '音頻', 'media:filter_documents' => '文檔', 'media:filter_everything' => '所有', 'media:filter_images' => '圖片', 'media:filter_video' => '視頻', 'media:folder' => '檔案夾', 'media:folder_name' => '檔案夾名', 'media:folder_or_file_exist' => '檔案夾或檔案已經存在.', 'media:folder_size_items' => '個數', 'media:height' => '高度', 'media:image_size' => '圖片大小:', 'media:insert' => '插入', 'media:invalid_path' => '不合法的路徑: \':path\'.', 'media:last_modified' => '最近修改', 'media:library' => '庫', 'media:menu_label' => '媒體', 'media:move' => '移動', 'media:move_dest_src_match' => '請選擇另一個目標檔案夾.', 'media:move_destination' => '目標檔案夾', 'media:move_empty' => '請選擇移動項.', 'media:move_popup_title' => '移動檔案或檔案夾', 'media:multiple_selected' => '多選.', 'media:new_folder_title' => '新檔案', 'media:no_files_found' => '沒找到您請求的檔案.', 'media:nothing_selected' => '沒有選中.', 'media:order_by' => '排序', 'media:please_select_move_dest' => '請選擇目標檔案夾.', 'media:public_url' => '公開URL', 'media:resize' => '調整大小...', 'media:resize_image' => '調整圖片', 'media:restore' => '取消所有更改', 'media:return_to_parent' => '返回上層檔案夾', 'media:return_to_parent_label' => '返回 ..', 'media:search' => '搜尋', 'media:select_single_image' => '請選擇一張圖片.', 'media:selected_size' => '選中:', 'media:selection_mode' => '選擇模式', 'media:selection_mode_fixed_ratio' => '固定比例', 'media:selection_mode_fixed_size' => '固定大小', 'media:selection_mode_normal' => '正常', 'media:selection_not_image' => '選擇的不是一張圖片.', 'media:size' => '大小', 'media:thumbnail_error' => '生產縮略圖錯誤.', 'media:title' => '標題', 'media:upload' => '上傳', 'media:uploading_complete' => '上傳完畢', 'media:uploading_file_num' => '上傳 :number 檔案...', 'media:width' => '寬度', 'model:invalid_class' => 'Model :model 在 :class 中是錯誤的, 必須繼承 \\Model class.', 'model:mass_assignment_failed' => '針對Model屬性\':attribute\'的大量賦值失敗.', 'model:missing_id' => '沒有指定的ID搜尋model記錄', 'model:missing_method' => 'Model \':class\' 不包含 \':method\'.', 'model:missing_relation' => 'Model \':class\' 不包含 \':relation\'.', 'model:name' => 'Model', 'model:not_found' => 'Model \':class\' ID :id 找不到', 'myaccount:menu_description' => '更新您的帳號細節, 例如名字, 郵件地址和密碼', 'myaccount:menu_keywords' => '安全登入', 'myaccount:menu_label' => '我的帳號', 'mysettings:menu_description' => '設定涉及到您的管理帳號', 'mysettings:menu_label' => '我的設定', 'page:access_denied:cms_link' => '返回管理介面', 'page:access_denied:help' => '您沒有訪問這個頁面需要的權限.', 'page:access_denied:label' => '拒絕訪問', 'page:custom_error:help' => '很抱歉, 有一些地方發生了錯誤導致頁面不能顯示.', 'page:custom_error:label' => '頁面錯誤', 'page:delete_confirm_multiple' => '真的想要刪除選擇的頁面嗎?', 'page:delete_confirm_single' => '真的想要刪除這個頁面嗎?', 'page:invalid_url' => '不合法的URL格式. URL可以正斜槓開頭, 包含數字, 拉丁字母和下面的字元: ._-[]:?|/+*^$', 'page:menu_label' => '頁面', 'page:new' => '新頁面', 'page:no_layout' => '-- 沒有佈局 --', 'page:no_list_records' => '找不到頁面', 'page:not_found:help' => '請求的頁面找不到.', 'page:not_found:label' => '頁面找不到', 'page:not_found_name' => '頁面 \':name\' 找不到', 'page:unsaved_label' => '未保存頁面', 'page:untitled' => '未命名', 'partial:delete_confirm_multiple' => '您真的想要刪除選擇的部件?', 'partial:delete_confirm_single' => '您真的想要刪除這個部件?', 'partial:invalid_name' => '不合法的部件名: :name.', 'partial:menu_label' => '部件', 'partial:new' => '新部件', 'partial:no_list_records' => '找不到部件', 'partial:not_found_name' => '元件 \':name\' 找不到.', 'partial:unsaved_label' => '未保存的部件', 'permissions:access_logs' => '查看訪問日誌', 'permissions:manage_assets' => '管理資源', 'permissions:manage_branding' => '自訂後台', 'permissions:manage_content' => '管理內容', 'permissions:manage_layouts' => '管理佈局', 'permissions:manage_mail_settings' => '管理郵件設定', 'permissions:manage_mail_templates' => '管理郵件模板', 'permissions:manage_other_administrators' => '管理其他管理員', 'permissions:manage_pages' => '管理頁面', 'permissions:manage_partials' => '管理部件', 'permissions:manage_software_updates' => '管理軟件更新', 'permissions:manage_system_settings' => '管理系統設定', 'permissions:manage_themes' => '管理主題', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => '查看儀表板', 'plugin:name:help' => '外掛的唯一名稱,例如:RainLab.Blog', 'plugin:name:label' => '外掛名稱', 'plugin:unnamed' => '未命名的外掛', 'plugins:disable_confirm' => '您確定嗎?', 'plugins:disable_success' => '成功停用了這些外掛.', 'plugins:disabled_help' => '被停用的外掛被應用程式忽略了.', 'plugins:disabled_label' => '停用', 'plugins:enable_or_disable' => '啟用或停用', 'plugins:enable_or_disable_title' => '啟用或停用外掛', 'plugins:enable_success' => '成功啟用了這些外掛', 'plugins:install' => '安裝外掛', 'plugins:install_products' => '安裝產品', 'plugins:installed' => '已安裝外掛', 'plugins:manage' => '管理外掛', 'plugins:no_plugins' => '市集中沒有已安裝的外掛。', 'plugins:recommended' => '推薦', 'plugins:refresh' => '更新', 'plugins:refresh_confirm' => '您確定嗎?', 'plugins:refresh_success' => '成功更新了系統中的外掛.', 'plugins:remove' => '移除', 'plugins:remove_confirm' => '您確定嗎?', 'plugins:remove_success' => '成功從系統移除這些外掛.', 'plugins:search' => '搜尋外掛...', 'plugins:selected_amount' => '選取的外掛: :數目', 'plugins:unknown_plugin' => '外掛從檔案系統中移除了.', 'project:attach' => '增加產品', 'project:detach' => '刪除產品', 'project:detach_confirm' => '您確定要刪除這個產品嗎?', 'project:id:help' => '如何找到您的產品ID', 'project:id:label' => '產品ID', 'project:id:missing' => '請確認您想使用的產品ID.', 'project:name' => '產品', 'project:none' => '沒有', 'project:owner_label' => '擁有者', 'project:unbind_success' => '產品刪除成功.', 'relation:add' => '增加', 'relation:add_a_new' => '增加一個新的 :name', 'relation:add_name' => '增加 :name', 'relation:add_selected' => '增加選取的', 'relation:cancel' => '取消', 'relation:close' => '關閉', 'relation:create' => '建立', 'relation:create_name' => '建立 :name', 'relation:delete' => '刪除', 'relation:delete_confirm' => '您確定?', 'relation:delete_name' => '刪除 :name', 'relation:help' => '點選增加', 'relation:invalid_action_multi' => '這個操作不能在多重關聯上執行.', 'relation:invalid_action_single' => '這個操作不能在單一關聯上執行.', 'relation:link' => '關聯', 'relation:link_a_new' => '關聯一個新的 :name', 'relation:link_name' => '關聯 :name', 'relation:link_selected' => '關聯選取', 'relation:missing_config' => '關聯沒有\':config\'的設定檔案.', 'relation:missing_definition' => '關聯不包含 \':field\' 的定義.', 'relation:missing_model' => '用於 :class 的關聯沒有定義好的model.', 'relation:preview' => '預覽', 'relation:preview_name' => '預覽 :name', 'relation:related_data' => '相關的 :name', 'relation:remove' => '移除', 'relation:remove_name' => '移除 :name', 'relation:unlink' => '取消關聯', 'relation:unlink_confirm' => '您確定?', 'relation:unlink_name' => '取消關聯 :name', 'relation:update' => '更新', 'relation:update_name' => '更新 :name', 'request_log:count' => '次數', 'request_log:empty_link' => '清空請求日誌', 'request_log:empty_loading' => '清空請求日誌...', 'request_log:empty_success' => '成功清空請求日誌.', 'request_log:hint' => '這個日誌顯示了需要注意的瀏覽器請求. 比如如果一個訪問者打開一個沒有的CMS頁面, 一條返回狀態404的記錄被建立.', 'request_log:id' => 'ID', 'request_log:id_label' => '登錄ID', 'request_log:menu_description' => '查看壞的或者重定向的請求, 比如頁面找不到(404).', 'request_log:menu_label' => '請求日誌', 'request_log:referer' => '來源', 'request_log:return_link' => '返回請求日誌', 'request_log:status_code' => '狀態', 'request_log:url' => 'URL', 'server:connect_error' => '連接伺服器失敗.', 'server:file_corrupt' => '伺服器下載檔案校驗失敗.', 'server:file_error' => '伺服器下載檔案失敗.', 'server:response_empty' => '伺服器返回為空.', 'server:response_invalid' => '伺服器返回異常.', 'server:response_not_found' => '找不到更新伺服器.', 'settings:menu_label' => '設定', 'settings:missing_model' => '設定頁缺少Model定義.', 'settings:not_found' => '不能找到特定的設定.', 'settings:return' => '返回系統設定', 'settings:search' => '搜尋', 'settings:update_success' => ':name 的設定更新成功了.', 'sidebar:add' => '增加', 'sidebar:search' => '搜尋...', 'system:categories:cms' => '內容管理', 'system:categories:customers' => '自訂', 'system:categories:events' => '事件', 'system:categories:logs' => '日誌', 'system:categories:mail' => '郵件', 'system:categories:misc' => '雜項', 'system:categories:my_settings' => '我的設定', 'system:categories:shop' => '商舖', 'system:categories:social' => '社交', 'system:categories:system' => '系統', 'system:categories:team' => '團隊', 'system:categories:users' => '使用者', 'system:menu_label' => '系統', 'system:name' => '系統', 'template:invalid_type' => '未知模板類型.', 'template:not_found' => '請求模板找不到.', 'template:saved' => '模板保存成功.', 'theme:activate_button' => '激活', 'theme:active:not_found' => '活動主題找不到.', 'theme:active:not_set' => '活動主題沒設定.', 'theme:active_button' => '激活', 'theme:author_label' => '作者', 'theme:author_placeholder' => '人或公司名', 'theme:code_label' => '代碼', 'theme:code_placeholder' => '發行主題的唯一碼', 'theme:create_button' => '建立', 'theme:create_new_blank_theme' => '建立新的空白主題', 'theme:create_theme_required_name' => '請指點主題名.', 'theme:create_theme_success' => '建立主題成功!', 'theme:create_title' => '建立主題', 'theme:customize_button' => '自訂', 'theme:customize_theme' => '自訂主題', 'theme:default_tab' => '屬性', 'theme:delete_active_theme_failed' => '不能刪除活動主題, 請先嘗試另外一個主題.', 'theme:delete_button' => '刪除', 'theme:delete_confirm' => '您確定刪除這個主題嗎? 這個操作不能撤銷!', 'theme:delete_theme_success' => '刪除主題成功!', 'theme:description_label' => '描述', 'theme:description_placeholder' => '主題描述', 'theme:dir_name_create_label' => '目標主題目錄', 'theme:dir_name_invalid' => '名稱只能包含數字, 拉丁字母和以下字元: _-', 'theme:dir_name_label' => '目錄名', 'theme:dir_name_taken' => '主題目錄已存在.', 'theme:duplicate_button' => '複製', 'theme:duplicate_theme_success' => '複製主題成功!', 'theme:duplicate_title' => '複製主題', 'theme:edit:not_found' => '編輯主題沒找到.', 'theme:edit:not_match' => '您嘗試訪問的對象不屬於正在編輯的主題. 請重載頁面.', 'theme:edit:not_set' => '編輯主題沒設定.', 'theme:edit_properties_button' => '編輯屬性', 'theme:edit_properties_title' => '主題', 'theme:export_button' => '導出', 'theme:export_folders_comment' => '請選擇您想要導入的主題檔案夾', 'theme:export_folders_label' => '檔案夾', 'theme:export_title' => '導出主題', 'theme:find_more_themes' => '在 OctoberCMS 主題商店中搜尋更多主題', 'theme:homepage_label' => '主頁', 'theme:homepage_placeholder' => '網站地址', 'theme:import_button' => '導入', 'theme:import_folders_comment' => '請選擇您想要導入的主題檔案夾', 'theme:import_folders_label' => '檔案夾', 'theme:import_overwrite_comment' => '取消勾選, 只導入新檔案', 'theme:import_overwrite_label' => '覆蓋已經存在的檔案', 'theme:import_theme_success' => '成功導入主題!', 'theme:import_title' => '導入主題', 'theme:import_uploaded_file' => '主題存檔檔案', 'theme:manage_button' => '管理', 'theme:manage_title' => '管理主題', 'theme:name:help' => '主題的唯一名稱,例如:RainLab.Vanilla', 'theme:name:label' => '主題名稱', 'theme:name_create_placeholder' => '新主題名稱', 'theme:name_label' => '名稱', 'theme:new_directory_name_comment' => '提供複製主題的新聞目錄名.', 'theme:new_directory_name_label' => '主題目錄', 'theme:not_found_name' => '主題 \':name\' 沒找到.', 'theme:return' => '返回主題列表', 'theme:save_properties' => '保存屬性', 'theme:saving' => '保存主題...', 'theme:settings_menu' => '前端主題', 'theme:settings_menu_description' => '預覽安裝的主題, 選擇一個活動主題.', 'theme:theme_label' => '主題', 'theme:theme_title' => '主題', 'theme:unnamed' => '未命名主題', 'themes:install' => '安裝主題', 'themes:installed' => '已安裝主題', 'themes:no_themes' => '市集上沒有已安裝的主題。', 'themes:recommended' => '推薦', 'themes:remove_confirm' => '您確定要刪除這些主題嗎?', 'themes:search' => '搜尋主題...', 'tooltips:preview_website' => '預覽網站', 'updates:check_label' => '檢查更新', 'updates:core_build' => '版本 :build', 'updates:core_build_help' => '新的版本可用.', 'updates:core_current_build' => '目前版本', 'updates:core_downloading' => '下載應用程式', 'updates:core_extracting' => '解壓縮應用程式', 'updates:disabled' => '停用', 'updates:force_label' => '強制更新', 'updates:found:help' => '點選更新.', 'updates:found:label' => '發現新的更新!', 'updates:menu_description' => '更新系統, 管理並安裝外掛和主題.', 'updates:menu_label' => '更新', 'updates:name' => '軟件更新', 'updates:none:help' => '沒有發現新的更新.', 'updates:none:label' => '沒有更新', 'updates:plugin_author' => '作者', 'updates:plugin_description' => '描述', 'updates:plugin_downloading' => '下載外掛: :name', 'updates:plugin_extracting' => '解壓縮外掛: :name', 'updates:plugin_name' => '名字', 'updates:plugin_version' => '版本', 'updates:plugin_version_none' => '新外掛', 'updates:plugins' => '外掛', 'updates:retry_label' => '重試', 'updates:theme_downloading' => '下載主題: :name', 'updates:theme_extracting' => '解壓縮主題: :name', 'updates:theme_new_install' => '新主題安裝.', 'updates:themes' => '主題', 'updates:title' => '管理更新', 'updates:update_completing' => '完成更新過程', 'updates:update_failed_label' => '更新失敗', 'updates:update_label' => '更新軟件', 'updates:update_loading' => '加載可用更新...', 'updates:update_success' => '更新完成.', 'user:account' => '帳號', 'user:allow' => '允許', 'user:avatar' => '頭像', 'user:delete_confirm' => '您真的想要刪除這個管理員?', 'user:deny' => '拒絕', 'user:email' => '郵件', 'user:first_name' => '名', 'user:full_name' => '全名', 'user:group:code_comment' => '如果您想訪問 API, 請輸入唯一碼', 'user:group:code_field' => '代碼', 'user:group:delete_confirm' => '您真的想要刪除這個管理群組?', 'user:group:description_field' => '描述', 'user:group:is_new_user_default_field' => '預設增加新管理員到這個群組', 'user:group:list_title' => '管理群組', 'user:group:menu_label' => '群組', 'user:group:name' => '群組', 'user:group:name_field' => '名字', 'user:group:new' => '新管理群組', 'user:group:return' => '返回群組列表', 'user:groups' => '團隊', 'user:groups_comment' => '指定這個人屬於哪個群組', 'user:inherit' => '繼承', 'user:last_name' => '姓', 'user:list_title' => '管理', 'user:login' => '登入', 'user:menu_description' => '管理管理介面管理員使用者, 群組和權限', 'user:menu_label' => '管理員', 'user:name' => '管理員', 'user:new' => '新管理員', 'user:password' => '密碼', 'user:password_confirmation' => '確認密碼', 'user:permissions' => '權限', 'user:preferences:not_authenticated' => '沒有認證使用者載入或儲存設定', 'user:return' => '返回管理員列表', 'user:send_invite' => '發送邀請郵件', 'user:send_invite_comment' => '發送一封包含使用者名和密碼的歡迎郵件', 'user:superuser' => '超級使用者', 'user:superuser_comment' => '選取並允許這個人訪問全部區域', 'validation:accepted' => ':attribute 必須被接受.', 'validation:active_url' => ':attribute 不是一個有效的URL.', 'validation:after' => ':attribute 必須是 :date 之後的一個日期.', 'validation:alpha' => ':attribute 只能包含字母.', 'validation:alpha_dash' => ':attribute 只能包含字母, 數字和-.', 'validation:alpha_num' => ':attribute 只能包含字母和數字.', 'validation:array' => ':attribute 只能是一個陣列.', 'validation:before' => ':attribute 必須是 :date 之前的一個日期.', 'validation:between:array' => ':attribute 在 :min - :max 個之間.', 'validation:between:file' => ':attribute 在 :min - :max kilobytes之間.', 'validation:between:numeric' => ':attribute 在 :min - :max 之間.', 'validation:between:string' => ':attribute 在 :min - :max 字元之間.', 'validation:confirmed' => ':attribute 的確認不滿足.', 'validation:date' => ':attribute 不是一個合法的日期.', 'validation:date_format' => ':attribute 不符合 :format 格式.', 'validation:different' => ':attribute 和 :other 必須不同.', 'validation:digits' => ':attribute 必須是 :digits.', 'validation:digits_between' => ':attribute 必須在 :min :max 之間.', 'validation:email' => ':attribute 格式無效.', 'validation:exists' => '選取的 :attribute 無效.', 'validation:image' => ':attribute 必須是圖片.', 'validation:in' => '選取的 :attribute 無效.', 'validation:integer' => ':attribute 必須是數字.', 'validation:ip' => ':attribute 必須是一個有效的IP地址.', 'validation:max:array' => ':attribute 不能超過 :max 個.', 'validation:max:file' => ':attribute 不能大於 :max kilobytes.', 'validation:max:numeric' => ':attribute 不能大於 :max.', 'validation:max:string' => ':attribute 不能超過 :max 字元.', 'validation:mimes' => ':attribute 必須是一個: :values 類型的檔案.', 'validation:min:array' => ':attribute 必須至少 :min 個.', 'validation:min:file' => ':attribute 必須至少 :min kilobytes.', 'validation:min:numeric' => ':attribute 必須至少 :min.', 'validation:min:string' => ':attribute 必須至少 :min 字元.', 'validation:not_in' => '選取的 :attribute 無效.', 'validation:numeric' => ':attribute 必須是一個數字.', 'validation:regex' => ':attribute 格式無效.', 'validation:required' => '需要 :attribute 字串.', 'validation:required_if' => '需要 :attribute 字串, 當 :other 是 :value.', 'validation:required_with' => '需要 :attribute 字串, 當 :values 是目前值.', 'validation:required_without' => '需要 :attribute 字串, 當 :values 不是目前值.', 'validation:same' => ':attribute 和 :other 必須相符.', 'validation:size:array' => ':attribute 必須是 :size 個.', 'validation:size:file' => ':attribute 必須是 :size kilobytes.', 'validation:size:numeric' => ':attribute 必須是 :size.', 'validation:size:string' => ':attribute 必須是 :size 字元.', 'validation:unique' => ':attribute 已使用.', 'validation:url' => ':attribute 格式無效.', 'warnings:extension' => 'PHP外掛 :name 沒安裝. 請安裝這個庫並且啟用外掛', 'warnings:permissions' => '目錄 :name 或子目錄對PHP不可寫. 請對這個目錄上的webserver設定正確的權限', 'warnings:tips' => '系統設定技巧', 'warnings:tips_description' => '您需要注意那些issue, 以使系統設定正確', 'widget:not_bound' => '元件 \':name\' 沒綁到控制器', 'widget:not_registered' => '元件 \':name\' 還沒註冊', 'zip:extract_failed' => '不能解壓縮檔案 \':file\'.']);
示例#20
0
文件: ptbr.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Data & Hora', 'access_log:email' => 'E-mail', 'access_log:first_name' => 'Nome', 'access_log:hint' => 'Este registro mostra a lista de acessos dos administradores. Os registros são mantidos por um período de :days dias.', 'access_log:ip_address' => 'Endereço IP', 'access_log:last_name' => 'Sobrenome', 'access_log:login' => 'Login', 'access_log:menu_description' => 'Veja a lista de acessos à administração.', 'access_log:menu_label' => 'Registro de Acesso', 'account:apply' => 'Aplicar', 'account:cancel' => 'Cancelar', 'account:delete' => 'Excluir', 'account:email_placeholder' => 'e-mail', 'account:enter_email' => 'Digite seu email', 'account:enter_login' => 'Digite seu nome de usuário', 'account:enter_new_password' => 'Digite uma nova senha', 'account:forgot_password' => 'Esqueceu sua senha?', 'account:login' => 'Entrar', 'account:login_placeholder' => 'usuário', 'account:ok' => 'Ok', 'account:password_placeholder' => 'senha', 'account:password_reset' => 'Redefinir sua senha', 'account:reset' => 'Redefinir', 'account:reset_error' => 'A senha redefinida é inválida. Por favor, tente de novo!', 'account:reset_fail' => 'Falha ao redefinir sua senha!', 'account:reset_success' => 'Sua senha foi redefinida com sucesso. Você já pode entrar novamente.', 'account:restore' => 'Restaurar', 'account:restore_error' => 'O usuário \\":login\\" não foi encontrado', 'account:restore_success' => 'Um email com instruções para redfinir sua senha foram enviados para o seu email.', 'account:sign_out' => 'Sair', 'ajax_handler:invalid_name' => 'O nome do manipulador AJAX é inválido: :name.', 'ajax_handler:not_found' => 'Manipulador AJAX \\":name\\" não encontrado.', 'app:name' => 'October CMS', 'app:tagline' => 'Voltando ao básico', 'asset:already_exists' => 'Um arquivo ou diretório com este nome já existe', 'asset:create_directory' => 'Criar diretório', 'asset:create_file' => 'Criar arquivo', 'asset:delete' => 'Excluir', 'asset:destination_not_found' => 'Diretório de destino não encontrado', 'asset:directory_name' => 'Nome do diretório', 'asset:directory_popup_title' => 'Novo diretório', 'asset:drop_down_add_title' => 'Adicionar...', 'asset:drop_down_operation_title' => 'Ação...', 'asset:error_deleting_dir' => 'Erro ao excluir diretório :name.', 'asset:error_deleting_dir_not_empty' => 'Erro ao excluir diretório :name. O diretório não está vazio.', 'asset:error_deleting_directory' => 'Erro ao excluir o diretório original :dir', 'asset:error_deleting_file' => 'Erro ao excluir arquivo :name.', 'asset:error_moving_directory' => 'Erro ao mover diretório :dir', 'asset:error_moving_file' => 'Erro ao mover arquivo :file', 'asset:error_renaming' => 'Erro ao renomear o arquivo ou diretório', 'asset:error_uploading_file' => 'Error uploading file \\":name\\": :error', 'asset:file_not_valid' => 'O arquivo não é válido', 'asset:invalid_name' => 'O nome pode conter apenas letras, números, espaços e os símbolos: ._-', 'asset:invalid_path' => 'O caminho pode conter apenas letras, números, espaços e os símbolos: ._-/', 'asset:menu_label' => 'Arquivos', 'asset:move' => 'Mover', 'asset:move_button' => 'Mover', 'asset:move_destination' => 'Diretório de destino', 'asset:move_please_select' => 'por favor selecione', 'asset:move_popup_title' => 'Mover arquivos', 'asset:name_cant_be_empty' => 'O nome não pode estar vazio', 'asset:new' => 'Novo arquivo', 'asset:original_not_found' => 'Arquivo ou diretório original não encontrado', 'asset:path' => 'Caminho', 'asset:rename' => 'Renomear', 'asset:rename_new_name' => 'Novo nome', 'asset:rename_popup_title' => 'Renomear', 'asset:select' => 'Selecionar', 'asset:select_destination_dir' => 'Por favor, selecione um diretório de destino', 'asset:selected_files_not_found' => 'Arquivos selecionados não encontrados', 'asset:too_large' => 'O arquivo enviado é muito grande. O tamanho máximo permitido é :max_size', 'asset:type_not_allowed' => 'Apenas os seguintes tipos de arquivos são permitidos: :allowed_types', 'asset:unsaved_label' => 'Arquivo(s) não salvo(s)', 'asset:upload_files' => 'Enviar arquivo(s)', 'auth:title' => 'Área Administrativa', 'backend_preferences:locale' => 'Idioma', 'backend_preferences:locale_comment' => 'Selecione o idioma de sua preferência.', 'backend_preferences:menu_description' => 'Gerenciar idiomas e aparência da administração.', 'backend_preferences:menu_label' => 'Preferências da Administração', 'behavior:missing_property' => 'Classe :class deve definir a propriedade $:property usada pelo :behavior behavior.', 'branding:app_name' => 'Nome do Aplicativo', 'branding:app_name_description' => 'Este nome é mostrado no título da área administrativa.', 'branding:app_tagline' => 'Slogan do Aplicativo', 'branding:app_tagline_description' => 'Esta frase é mostrada na tela de login administrativo.', 'branding:brand' => 'Marca', 'branding:colors' => 'Cores', 'branding:custom_stylesheet' => 'CSS customizado', 'branding:logo' => 'Logo', 'branding:logo_description' => 'Fazer upload de uma logo para usar na área administrativa.', 'branding:menu_description' => 'Personalizar detalhes da área administrativa, tais como título, cores e logo.', 'branding:menu_label' => 'Personalização', 'branding:primary_dark' => 'Primária (Escura)', 'branding:primary_light' => 'Primária (Clara)', 'branding:secondary_dark' => 'Secundária (Escura)', 'branding:secondary_light' => 'Secundária (Clara)', 'branding:styles' => 'Estilos', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Templates apagados com sucesso: :count.', 'cms_object:error_creating_directory' => 'Erro ao criar o diretório :name. Verifique as permissões de escrita.', 'cms_object:error_deleting' => 'Erro ao excluir o arquivo de template \\":name\\". Verifique as permissões de escrita.', 'cms_object:error_saving' => 'Erro ao salvar arquivo \\":name\\". Verifique as permissões de escrita.', 'cms_object:file_already_exists' => 'Arquivo \\":name\\" já existe.', 'cms_object:file_name_required' => 'O campo de Nome do Arquivo é necessário.', 'cms_object:invalid_file' => 'Nome de arquivo inválido: \\":name\\". Os nomes de arquivos podem conter apenas letras, números, sublinhados, traços e pontos. Veja alguns exemplos de nomes de arquivos corretos: pagina.htm, pagina, subdiretorio/pagina', 'cms_object:invalid_file_extension' => 'Extensão de arquivo inválida: :invalid. Extensões válidas: :allowed.', 'cms_object:invalid_property' => 'A propriedade \\":nome\\" não pode ser definida', 'combiner:not_found' => 'O arquivo combinador \\":name\\" não foi encontrado.', 'component:alias' => 'Alias', 'component:alias_description' => 'Um nome exclusivo dado a este componente quando usá-lo no código de uma página ou layout.', 'component:invalid_request' => 'O template não pode ser salvo devido a dados inválidos nos componentes.', 'component:menu_label' => 'Componentes', 'component:method_not_found' => 'O componente \\":name\\" não tem um método \\":method\\".', 'component:no_description' => 'Nenhuma descrição fornecida', 'component:no_records' => 'Nenhum componente encontrado', 'component:not_found' => 'O componente \\":name\\" não foi encontrado.', 'component:unnamed' => 'Sem nome', 'component:validation_message' => 'Aliases de componentes são necessários e podem conter letras, números e sublinhados. Os aliases deve começar com uma letra.', 'config:not_found' => 'Não foi possível localizar o arquivo de configuração :file definido para :location.', 'config:required' => 'Configuração usada em :location deve fornecer um valor :property.', 'content:delete_confirm_multiple' => 'Você realmente deseja apagar arquivos ou diretórios de conteúdo selecionados?', 'content:delete_confirm_single' => 'Você realmente deseja apagar este arquivo de conteúdo?', 'content:menu_label' => 'Conteúdo', 'content:new' => 'Novo arquivo de conteúdo', 'content:no_list_records' => 'Nenhum arquivo de conteúdo encontrado', 'content:not_found_name' => 'O arquivo de conteúdo \\":name\\" não foi encontrado.', 'content:unsaved_label' => 'Conteúdo não salvo', 'dashboard:add_widget' => 'Adicionar widget', 'dashboard:columns' => '{1} coluna|[2,Inf] colunas', 'dashboard:full_width' => 'Largura total', 'dashboard:menu_label' => 'Painel', 'dashboard:status:maintenance' => 'em manutenção', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} atualizações disponíveis!|{1} atualização disponível!|[2,Inf] atualizações disponíveis!', 'dashboard:status:widget_title_default' => 'Status do Sistema', 'dashboard:widget_columns_description' => 'Largura do widget, um número entre 1 e 10.', 'dashboard:widget_columns_error' => 'Por favor, entre com a largura do widget. Deve ser um número entre 1 e 10.', 'dashboard:widget_columns_label' => 'Largura :columns', 'dashboard:widget_inspector_description' => 'Configurar widget de relatório', 'dashboard:widget_inspector_title' => 'Configurações do widget', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'Colocar o widget em uma nova linha.', 'dashboard:widget_new_row_label' => 'Forçar uma nova linha', 'dashboard:widget_title_error' => 'O título do widget é necessário.', 'dashboard:widget_title_label' => 'Título do widget', 'dashboard:widget_width' => 'Largura', 'directory:create_fail' => 'Não é possível criar o diretório: :name', 'editor:code' => 'Código', 'editor:code_folding' => 'Código flexível', 'editor:content' => 'Conteúdo', 'editor:description' => 'Descrição', 'editor:enter_fullscreen' => 'Entrar no modo de tela cheia', 'editor:exit_fullscreen' => 'Sair do modo de tela cheia', 'editor:filename' => 'Nome do Arquivo', 'editor:font_size' => 'Tamanho da fonte', 'editor:hidden' => 'Oculta', 'editor:hidden_comment' => 'Páginas ocultas são acessíveis somente para administradores.', 'editor:highlight_active_line' => 'Destaque na linha ativa', 'editor:layout' => 'Layout', 'editor:markup' => 'Edição', 'editor:menu_description' => 'Gerenciar configurações do editor.', 'editor:menu_label' => 'Definições do Editor', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta Descrição', 'editor:meta_title' => 'Meta Título', 'editor:new_title' => 'Título da nova página', 'editor:preview' => 'Visualizar', 'editor:settings' => 'Configurações', 'editor:show_gutter' => 'Mostrar numeração de linhas', 'editor:show_invisibles' => 'Mostrar caracteres invisíveis', 'editor:tab_size' => 'Tamanho do espaçamento', 'editor:theme' => 'Esquema de cores', 'editor:title' => 'Título', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Recuo usando guias', 'editor:word_wrap' => 'Quebra de linha', 'event_log:created_at' => 'Data & Hora', 'event_log:empty_link' => 'Esvaziar registro de eventos', 'event_log:empty_loading' => 'Esvaziando registro de eventos...', 'event_log:empty_success' => 'Registro de eventos esvaziado com sucesso.', 'event_log:hint' => 'Este registro mostra a lista dos potenciais erros que ocorreram na aplicação, como exceções e informações de depuração.', 'event_log:id' => 'ID', 'event_log:id_label' => 'ID do Evento', 'event_log:level' => 'Nível', 'event_log:menu_description' => 'Visualize as mensagens do sistema, com horário e detalhes.', 'event_log:menu_label' => 'Registro de Eventos', 'event_log:message' => 'Mensagem', 'event_log:return_link' => 'Retornar ao registro de eventos', 'field:invalid_type' => 'Tipo de campo inválido :type.', 'field:options_method_not_exists' => 'A classe :model deve definir um método :method() retornando opções para o campo \\":field\\".', 'file:create_fail' => 'Não é possível criar o arquivo: :name', 'fileupload:attachment' => 'Anexo', 'fileupload:attachment_url' => 'Anexar URL', 'fileupload:default_prompt' => 'Clique em %s ou arraste um arquivo para cá para enviar', 'fileupload:description_label' => 'Descrição', 'fileupload:help' => 'Adicione um título e descrição a este anexo.', 'fileupload:remove_confirm' => 'Você tem certeza?', 'fileupload:remove_file' => 'Remover arquivo', 'fileupload:title_label' => 'Título', 'fileupload:upload_error' => 'Erro ao enviar', 'fileupload:upload_file' => 'Enviar arquivo', 'filter:all' => 'todos', 'form:action_confirm' => 'Você tem certeza?', 'form:add' => 'Adicionar', 'form:apply' => 'Aplicar', 'form:behavior_not_ready' => 'O formulário não foi inicializado. Confira se você chamou initForm() no controller.', 'form:cancel' => 'Cancelar', 'form:close' => 'Fechar', 'form:complete' => 'Concluído', 'form:concurrency_file_changed_description' => 'O arquivo que você está editando foi alterado em disco. Você pode recarregá-lo e perder suas alterações ou sobrescrever o arquivo do disco.', 'form:concurrency_file_changed_title' => 'O arquivo foi alterado', 'form:confirm' => 'Confirmar', 'form:confirm_tab_close' => 'Tem certeza que deseja fechar essa aba? As alterações que não foram salvas serão perdidas', 'form:create' => 'Criar', 'form:create_and_close' => 'Criar e sair', 'form:create_success' => ':name foi criado com sucesso', 'form:create_title' => 'Novo :name', 'form:creating' => 'Criando...', 'form:creating_name' => 'Criando :name...', 'form:delete' => 'Apagar', 'form:delete_row' => 'Excluir linha', 'form:delete_success' => ':name foi apagado com sucesso', 'form:deleting' => 'Apagando...', 'form:deleting_name' => 'Apagando :name...', 'form:field_off' => 'Desl', 'form:field_on' => 'Lig', 'form:insert_row' => 'Inserir linha', 'form:missing_definition' => 'Formulário não contém um campo \\":field\\".', 'form:missing_id' => 'O ID do registro não foi fornecido', 'form:missing_model' => 'Formulário utilizado na classe :class não tem um model definido.', 'form:not_found' => 'Nenhum registro encontrado com o ID :id', 'form:ok' => 'Ok', 'form:or' => 'ou', 'form:preview_no_files_message' => 'Os arquivos não foram carregados', 'form:preview_no_record_message' => 'Nenhum registro selecionado.', 'form:preview_title' => 'Visualizar :name', 'form:reload' => 'Recarregar', 'form:reset_default' => 'Redefinir para o padrão', 'form:resetting' => 'Redefinindo', 'form:resetting_name' => 'Redefinindo :name', 'form:save' => 'Salvar', 'form:save_and_close' => 'Salvar e fechar', 'form:saving' => 'Salvando...', 'form:saving_name' => 'Salvando :name...', 'form:select' => 'Selecionar', 'form:select_all' => 'todos', 'form:select_none' => 'nenhum', 'form:select_placeholder' => 'por favor, selecione', 'form:undefined_tab' => 'Outros', 'form:update_success' => ':name foi atualizado com sucesso', 'form:update_title' => 'Editar :name', 'install:install_completing' => 'Finalizando processo de instalação', 'install:install_success' => 'O plugin foi instalado com sucesso.', 'install:missing_plugin_name' => 'Por favor, especifique um nome de plugin para instalar.', 'install:missing_theme_name' => 'Por favor, especifique um nome de tema para instalar.', 'install:plugin_label' => 'Instalar plugin', 'install:project_label' => 'Anexar ao projeto', 'install:theme_label' => 'Instalar tema', 'layout:delete_confirm_multiple' => 'Você realmente deseja excluir os layouts selecionados?', 'layout:delete_confirm_single' => 'Você realmente deseja excluir este layout?', 'layout:menu_label' => 'Layouts', 'layout:new' => 'Novo layout', 'layout:no_list_records' => 'Nenhum layout encontrado', 'layout:not_found_name' => 'O layout \\":name\\" não foi encontrado', 'layout:unsaved_label' => 'Layout(s) não salvo(s)', 'list:behavior_not_ready' => 'Lista não foi inicializada. Confira se você chamou makeLists() no controller.', 'list:default_title' => 'Lista', 'list:delete_selected' => 'Deletar selecionado', 'list:delete_selected_confirm' => 'Excluir os registros selecionados?', 'list:delete_selected_empty' => 'Não há registros selecionados para excluir.', 'list:delete_selected_success' => 'Registros selecionados excluídos com sucesso.', 'list:invalid_column_datetime' => 'Valor da coluna \\":column\\" não é um objeto DateTime, você esqueceu registrar \\$dates no Model?', 'list:loading' => 'Carregando...', 'list:missing_column' => 'Não existe definição de coluna para :columns.', 'list:missing_columns' => 'Lista utilizada em :class não possui colunas de lista definidas.', 'list:missing_definition' => 'Lista não possui uma coluna para \\":field\\".', 'list:missing_model' => 'Lista usada em :class não tem um model definido.', 'list:next_page' => 'Próxima', 'list:no_records' => 'Nenhum registro encontrado.', 'list:pagination' => 'Registros exibidos: :from-:to de :total', 'list:prev_page' => 'Anterior', 'list:records_per_page' => 'Registros por página', 'list:records_per_page_help' => 'Selecione o número de registros a serem exibidos por página. Note que um número grande pode prejudicar a performance.', 'list:search_prompt' => 'Buscar...', 'list:setup_help' => 'Selecione as colunas que deseja ver na lista. Você pode alterar as posições das colunas arrastando-as para cima ou para baixo.', 'list:setup_title' => 'Configuração da Lista', 'locale:cs' => 'Czech', 'locale:de' => 'Alemão', 'locale:el' => 'Grego', 'locale:en' => 'Inglês', 'locale:es' => 'Espanhol', 'locale:es-ar' => 'Espanhol (Argentina)', 'locale:fa' => 'Persa', 'locale:fr' => 'Francês', 'locale:hu' => 'Húngaro', 'locale:id' => 'Indonésio', 'locale:it' => 'Italiano', 'locale:ja' => 'Japonês', 'locale:lv' => 'Letão', 'locale:nb-no' => 'Norueguês (Bokmål)', 'locale:nl' => 'Holandês ', 'locale:pl' => 'Polonês', 'locale:pt-br' => 'Português (Brasil)', 'locale:ro' => 'Romeno', 'locale:ru' => 'Russo', 'locale:sk' => 'Eslovaco', 'locale:sv' => 'Sueco', 'locale:tr' => 'Turco', 'locale:zh-cn' => 'Chinês (China)', 'mail:drivers_hint_content' => 'Este método requer que o plugin \\":plugin\\" esteja instalado.', 'mail:drivers_hint_header' => 'Drivers não instalados', 'mail:general' => 'Geral', 'mail:log_file' => 'Arquivo de registro', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Domínio do Mailgun', 'mail:mailgun_domain_comment' => 'Por favor, forneça o domínio do Mailgun.', 'mail:mailgun_secret' => 'Mailgun Secret', 'mail:mailgun_secret_comment' => 'Forneça sua chave de API do Mailgun.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill Secret', 'mail:mandrill_secret_comment' => 'Forneça sua chave de API do Mandrill', 'mail:menu_description' => 'Gerenciar configurações de e-mail.', 'mail:menu_label' => 'Configurações de E-mail', 'mail:method' => 'Método de Envio', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'E-mail do Remetente', 'mail:sender_name' => 'Nome do Remetente', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Caminho do Sendmail', 'mail:sendmail_path_comment' => 'Por favor, especifique o caminho do programa sendmail.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'Endereço SMTP', 'mail:smtp_authorization' => 'Autenticação SMTP obrigatória', 'mail:smtp_authorization_comment' => 'Use esta opção se o seu servidor SMTP requer autenticação.', 'mail:smtp_password' => 'Senha', 'mail:smtp_port' => 'Porta SMTP', 'mail:smtp_ssl' => 'Conexão SSL obrigatória', 'mail:smtp_username' => 'Usuário', 'mail_templates:code' => 'Código', 'mail_templates:code_comment' => 'Código exclusivo usado para se referir a este template', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Texto Simples', 'mail_templates:description' => 'Descrição', 'mail_templates:layout' => 'Layout', 'mail_templates:layouts' => 'Layouts', 'mail_templates:menu_description' => 'Modificar os templates dos e-mails que são enviados para usuários e administradores.', 'mail_templates:menu_label' => 'Templates de E-mail', 'mail_templates:menu_layouts_label' => 'Layouts de E-mail', 'mail_templates:name' => 'Nome', 'mail_templates:name_comment' => 'Nome exclusivo usado para se referir a este template', 'mail_templates:new_layout' => 'Novo layout', 'mail_templates:new_template' => 'Novo template', 'mail_templates:return' => 'Retornar à lista de templates', 'mail_templates:subject' => 'Assunto', 'mail_templates:subject_comment' => 'Assunto da mensagem', 'mail_templates:template' => 'Template', 'mail_templates:templates' => 'Templates', 'mail_templates:test_send' => 'Enviar mensagem de teste', 'mail_templates:test_success' => 'Mensagem de teste enviada com sucesso.', 'maintenance:is_enabled' => 'Ativar modo de manutenção', 'maintenance:is_enabled_comment' => 'Quando ativado visitantes do site vão ver a página selecionada.', 'maintenance:settings_menu' => 'Modo de manutenção', 'maintenance:settings_menu_description' => 'Configurar modo de manutenção e a página exibida.', 'media:add_folder' => 'Adicionar pasta', 'media:click_here' => 'Clique aqui', 'media:crop_and_insert' => 'Cortar & Inserir', 'media:delete' => 'Excluir', 'media:delete_confirm' => 'Você deseja mesmo excluir o(s) arquivo(s) selecionado(s)?', 'media:delete_empty' => 'Por favor, selecione um item para excluir.', 'media:display' => 'Exibir', 'media:empty_library' => 'A biblioteca de mídias está vazia. Envie arquivos ou crie pastas para iniciar.', 'media:error_creating_folder' => 'Erro ao criar a pasta', 'media:error_renaming_file' => 'Erro ao renomear o arquivo.', 'media:filter_audio' => 'Áudios', 'media:filter_documents' => 'Documentos', 'media:filter_everything' => 'Tudo', 'media:filter_images' => 'Imagens', 'media:filter_video' => 'Vídeos', 'media:folder' => 'Pasta', 'media:folder_name' => 'Nome da pasta', 'media:folder_or_file_exist' => 'Uma pasta ou arquivo já existe com o nome especificado.', 'media:folder_size_items' => 'item(s)', 'media:height' => 'Altura', 'media:image_size' => 'Tamanho da imagem:', 'media:insert' => 'Inserir', 'media:invalid_path' => 'Caminho especificado inválido: \':path\'.', 'media:last_modified' => 'Última modificação', 'media:library' => 'Biblioteca', 'media:menu_label' => 'Mídias', 'media:move' => 'Mover', 'media:move_dest_src_match' => 'Por favor, selecione outra pasta destino.', 'media:move_destination' => 'Pasta destino', 'media:move_empty' => 'Por favor, selecione um item para mover.', 'media:move_popup_title' => 'Mover arquivos ou pastas', 'media:multiple_selected' => 'Múltiplos itens selecionados.', 'media:new_folder_title' => 'Nova pasta', 'media:no_files_found' => 'Nenhum arquivo encontrado.', 'media:nothing_selected' => 'Nenhum item selecionado.', 'media:order_by' => 'Ordenar por', 'media:please_select_move_dest' => 'Por favor, selecione a pasta destino.', 'media:public_url' => 'URL pública', 'media:resize' => 'Redimensionar...', 'media:resize_image' => 'Redimensionar imagem', 'media:restore' => 'Desfazer todas as alterações', 'media:return_to_parent' => 'Retornar ao diretório anterior', 'media:return_to_parent_label' => 'Vá para ..', 'media:search' => 'Buscar', 'media:select_single_image' => 'Por favor, selecione uma única imagem.', 'media:selected_size' => 'Selecionado:', 'media:selection_mode' => 'Modo de seleção', 'media:selection_mode_fixed_ratio' => 'Proporção fixa', 'media:selection_mode_fixed_size' => 'Tamanho fixo', 'media:selection_mode_normal' => 'Normal', 'media:selection_not_image' => 'O arquivo selecionado não é uma imagem.', 'media:size' => 'Tamanho', 'media:thumbnail_error' => 'Erro ao gerar a miniatura.', 'media:title' => 'Título', 'media:upload' => 'Enviar', 'media:uploading_complete' => 'Envio finalizado', 'media:uploading_file_num' => 'Enviando :number arquivo(s)...', 'media:width' => 'Largura', 'mediafinder:default_prompt' => 'Clique no botão %s para localizar um arquivo de mídia', 'model:invalid_class' => 'Model :model utilizado na classe :class não é válido. É necessário herdar a classe \\Model.', 'model:mass_assignment_failed' => 'Falha na atribuição em massa do atributo \\":attribute\\" do Model.', 'model:missing_id' => 'ID do registro não especificado.', 'model:missing_method' => 'Model \\":class\\" não contém o método \\":method\\".', 'model:missing_relation' => 'Model \\":class\\" não contém uma definição para o relacionamento \\":relation\\".', 'model:name' => 'Model', 'model:not_found' => 'Model \\":class\\" com ID :id não foi encontrado', 'myaccount:menu_description' => 'Atualizar detalhes da sua conta, como nome, e-mail e senha.', 'myaccount:menu_keywords' => 'login de segurança', 'myaccount:menu_label' => 'Minha Conta', 'mysettings:menu_description' => 'Configurações relacionadas à sua conta de administrador', 'mysettings:menu_label' => 'Minhas Configurações', 'page:access_denied:cms_link' => 'Retornar à área administrativa', 'page:access_denied:help' => 'Você não tem as permissões necessárias para visualizar esta página.', 'page:access_denied:label' => 'Acesso negado', 'page:custom_error:help' => 'Lamentamos, mas algo deu errado e que a página não pode ser exibida.', 'page:custom_error:label' => 'Erro na página', 'page:delete_confirm_multiple' => 'Você realmente deseja excluir as páginas selecionadas?', 'page:delete_confirm_single' => 'Você realmente deseja excluir esta página?', 'page:invalid_token:label' => 'Token de segurança inválido', 'page:invalid_url' => 'Formato de URL inválido. A URL deve começar com uma barra e pode conter letras, números e os símbolos: _-[]:?|/+*^$', 'page:menu_label' => 'Páginas', 'page:new' => 'Nova página', 'page:no_layout' => '-- sem layout --', 'page:no_list_records' => 'Nenhuma página encontrada', 'page:not_found:help' => 'A página solicitada não pode ser encontrada.', 'page:not_found:label' => 'Página não encontrada', 'page:not_found_name' => 'A página \\":name\\" não foi encontrada', 'page:unsaved_label' => 'Página(s) não salva(s)', 'page:untitled' => 'Sem Título', 'partial:delete_confirm_multiple' => 'Você realmente deseja apagar os blocos selecionados?', 'partial:delete_confirm_single' => 'Você realmente deseja apagar este bloco?', 'partial:invalid_name' => 'Nome de bloco inválido: :name.', 'partial:menu_label' => 'Blocos', 'partial:new' => 'Novo bloco', 'partial:no_list_records' => 'Nenhum bloco encontrado', 'partial:not_found_name' => 'O bloco \\":name\\" não foi encontrado.', 'partial:unsaved_label' => 'Bloco(s) não salvo(s)', 'permissions:access_logs' => 'Exibir registros de sistema', 'permissions:manage_assets' => 'Gerenciar arquivos', 'permissions:manage_branding' => 'Personalizar o painel', 'permissions:manage_content' => 'Gerenciar conteúdo', 'permissions:manage_layouts' => 'Gerenciar layouts', 'permissions:manage_mail_settings' => 'Gerenciar configurações de e-mail', 'permissions:manage_mail_templates' => 'Gerenciar templates de e-mail', 'permissions:manage_media' => 'Gerenciar mídias', 'permissions:manage_other_administrators' => 'Gerenciar outros administradores', 'permissions:manage_pages' => 'Gerenciar páginas', 'permissions:manage_partials' => 'Gerenciar blocos', 'permissions:manage_software_updates' => 'Gerenciar atualizações', 'permissions:manage_system_settings' => 'Gerenciar configurações do sistema', 'permissions:manage_themes' => 'Gerenciar temas', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => 'Visualizar o painel', 'plugin:label' => 'Plugin', 'plugin:name:help' => 'Nomeie o plugin pelo seu código exclusivo. Por exemplo, RainLab.Blog', 'plugin:name:label' => 'Nome do Plugin', 'plugin:unnamed' => 'Plugin sem nome', 'plugins:disable_confirm' => 'Você tem certeza?', 'plugins:disable_success' => 'Plugins desabilitados com sucesso.', 'plugins:disabled_help' => 'Plugins que estão desabilitados são ignorados pela aplicação.', 'plugins:disabled_label' => 'Desabilitado', 'plugins:enable_or_disable' => 'Habilitar ou desabilitar', 'plugins:enable_or_disable_title' => 'Habilitar ou Desabilitar Plugins', 'plugins:enable_success' => 'Plugins habilitados com sucesso.', 'plugins:frozen_help' => 'Plugins congelados serão ignorados pelo processo de atualização.', 'plugins:frozen_label' => 'Congelar atualizações', 'plugins:install' => 'Instalar plugins', 'plugins:install_products' => 'Instalar produtos', 'plugins:installed' => 'Plugins instalados', 'plugins:manage' => 'Gerenciar plugins', 'plugins:no_plugins' => 'Não há plugins instalados.', 'plugins:recommended' => 'Recomendado', 'plugins:refresh' => 'Atualizar', 'plugins:refresh_confirm' => 'Você tem certeza?', 'plugins:refresh_success' => 'Plugins atualizados com sucesso.', 'plugins:remove' => 'Remover', 'plugins:remove_confirm' => 'Você tem certeza?', 'plugins:remove_success' => 'Plugins removidos com sucesso do sistema.', 'plugins:search' => 'Buscar plugin para instalar...', 'plugins:selected_amount' => 'Plugins selecionados: :amount', 'plugins:unknown_plugin' => 'Plugin removido do sistema de arquivos.', 'project:attach' => 'Anexar Projeto', 'project:detach' => 'Desanexar Projeto', 'project:detach_confirm' => 'Tem certeza que deseja desanexar este projeto?', 'project:id:help' => 'Como encontrar o ID do seu projeto', 'project:id:label' => 'ID do Projeto', 'project:id:missing' => 'Por favor, forneça um ID de projeto para usar.', 'project:name' => 'Projeto', 'project:none' => 'Nenhum', 'project:owner_label' => 'Desenvolvedor', 'project:unbind_success' => 'Projeto desanexado com sucesso.', 'relation:add' => 'Adicionar', 'relation:add_a_new' => 'Adicionar um(a) novo(a) :name', 'relation:add_name' => 'Adicionar :name', 'relation:add_selected' => 'Adicionar seleção', 'relation:cancel' => 'Cancelar', 'relation:close' => 'Fechar', 'relation:create' => 'Criar', 'relation:create_name' => 'Criar :name', 'relation:delete' => 'Excluir', 'relation:delete_confirm' => 'Você tem certeza?', 'relation:delete_name' => 'Excluir :name', 'relation:help' => 'Clique em um item para adicionar', 'relation:invalid_action_multi' => 'Essa ação não pode ser realizada num relacionamento múltiplo.', 'relation:invalid_action_single' => 'Essa ação não pode ser realizada num relacionamento singular.', 'relation:link' => 'Vincular', 'relation:link_a_new' => 'Vincular um novo :name', 'relation:link_name' => 'Vincular :name', 'relation:link_selected' => 'Vincular selecionado', 'relation:missing_config' => 'Comportamento relation não tem uma configuração para \\":config\\".', 'relation:missing_definition' => 'Comportamento relation não contém uma definição para \\":field\\".', 'relation:missing_model' => 'Comportamento relation utilizado na classe :class não possui um model definido.', 'relation:preview' => 'Visualizar', 'relation:preview_name' => 'Visualizar :name', 'relation:related_data' => 'Dados de :name relacionado', 'relation:remove' => 'Remover', 'relation:remove_name' => 'Remover :name', 'relation:unlink' => 'Desvincular', 'relation:unlink_confirm' => 'Você tem certeza?', 'relation:unlink_name' => 'Desvincular :name', 'relation:update' => 'Atualizar', 'relation:update_name' => 'Atualizar :name', 'request_log:count' => 'Contador', 'request_log:empty_link' => 'Esvaziar registro de requisições.', 'request_log:empty_loading' => 'Esvaziando registro de requisições...', 'request_log:empty_success' => 'Registro de requisições esvaziado com sucesso.', 'request_log:hint' => 'Este registro mostra uma lista de requisições que requerem atenção. Por exemplo, se um usuário solicitar uma página não encontrada, será registrado com o status 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'ID do registro', 'request_log:menu_description' => 'Visualize requisições malsucedidas na aplicação, como Página não encontrada (404).', 'request_log:menu_label' => 'Registro de Requisições', 'request_log:referer' => 'Referers', 'request_log:return_link' => 'Retornar ao registro de requisições', 'request_log:status_code' => 'Status', 'request_log:url' => 'URL', 'server:connect_error' => 'Erro ao conectar-se com o servidor.', 'server:file_corrupt' => 'Arquivo do servidor está corrompido.', 'server:file_error' => 'Servidor não conseguiu entregar o pacote.', 'server:response_empty' => 'Resposta vazia do servidor.', 'server:response_invalid' => 'Resposta inválida do servidor.', 'server:response_not_found' => 'O servidor de atualização não pôde ser encontrado.', 'settings:menu_label' => 'Configurações', 'settings:missing_model' => 'Falta uma definição de model na página de configurações.', 'settings:not_found' => 'Impossível encontrar as configurações solicitadas.', 'settings:return' => 'Retornar para as configurações do sistema', 'settings:search' => 'Buscar', 'settings:update_success' => 'Configurações para :name foram atualizados com sucesso.', 'sidebar:add' => 'Adicionar', 'sidebar:search' => 'Buscar...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Clientes', 'system:categories:events' => 'Eventos', 'system:categories:logs' => 'Registros', 'system:categories:mail' => 'E-mail', 'system:categories:misc' => 'Diversos', 'system:categories:my_settings' => 'Configurações', 'system:categories:shop' => 'Loja ', 'system:categories:social' => 'Social', 'system:categories:system' => 'Sistema', 'system:categories:team' => 'Time', 'system:categories:users' => 'Usuários', 'system:menu_label' => 'Sistema', 'system:name' => 'Sistema', 'template:invalid_type' => 'Tipo de template desconhecido.', 'template:not_found' => 'O template solicitado não foi encontrado.', 'template:saved' => 'O modelo foi salvo com sucesso.', 'theme:activate_button' => 'Ativar', 'theme:active:not_found' => 'O tema ativo não foi encontrado.', 'theme:active:not_set' => 'O tema ativo não foi definido.', 'theme:active_button' => 'Ativado', 'theme:author_label' => 'Autor', 'theme:author_placeholder' => 'Nome do autor', 'theme:code_label' => 'Código', 'theme:code_placeholder' => 'Um código exclusivo para esse tema a ser usado para distribuição', 'theme:create_button' => 'Criar', 'theme:create_new_blank_theme' => 'Criar novo tema em branco', 'theme:create_theme_required_name' => 'Por favor forneça um nome para o tema.', 'theme:create_theme_success' => 'Tema criado com sucesso!', 'theme:create_title' => 'Criar tema', 'theme:customize_button' => 'Personalizar', 'theme:customize_theme' => 'Personalizar Tema', 'theme:default_tab' => 'Propriedades', 'theme:delete_active_theme_failed' => 'Não é possível excluir o tema ativo, torne outro tema ativo antes.', 'theme:delete_button' => 'Excluir', 'theme:delete_confirm' => 'Tem certeza que deseja excluir este tema? Isto não pode ser revertido!', 'theme:delete_theme_success' => 'Tema excluído com sucesso!', 'theme:description_label' => 'Descrição', 'theme:description_placeholder' => 'Descrição do tema', 'theme:dir_name_create_label' => 'O diretório-alvo de temas', 'theme:dir_name_invalid' => 'O nome só pode conter letras, números, e os símbolos: _-', 'theme:dir_name_label' => 'Nome do diretório', 'theme:dir_name_taken' => 'Diretório de tema escolhido já existe.', 'theme:duplicate_button' => 'Duplicar', 'theme:duplicate_theme_success' => 'Tema duplicado com sucesso!', 'theme:duplicate_title' => 'Duplicar tema', 'theme:edit:not_found' => 'O tema de edição não foi encontrado.', 'theme:edit:not_match' => 'O objeto que você está tentando acessar não pertence ao tema que está sendo editado. Por favor, recarregue a página.', 'theme:edit:not_set' => 'O tema de edição não foi definido.', 'theme:edit_properties_button' => 'Editar propriedades', 'theme:edit_properties_title' => 'Tema', 'theme:export_button' => 'Exportar', 'theme:export_folders_comment' => 'Por favor selecione as pastas de temas que deseja exportar', 'theme:export_folders_label' => 'Pastas', 'theme:export_title' => 'Exportar tema', 'theme:find_more_themes' => 'Encontrar mais temas.', 'theme:homepage_label' => 'Site', 'theme:homepage_placeholder' => 'URL do site', 'theme:import_button' => 'Importar', 'theme:import_folders_comment' => 'Por favor selecione as pastas de temas que deseja importar', 'theme:import_folders_label' => 'Pastas', 'theme:import_overwrite_comment' => 'Desmarque para importar apenas arquivos novos', 'theme:import_overwrite_label' => 'Sobrescrever arquivos existentes', 'theme:import_theme_success' => 'Tema importado com sucesso!', 'theme:import_title' => 'Importar tema', 'theme:import_uploaded_file' => 'Arquivo de tema', 'theme:label' => 'Tema', 'theme:manage_button' => 'Gerenciar', 'theme:manage_title' => 'Gerenciar tema', 'theme:name:help' => 'Nome do tema deve ser único. Por exemplo, RainLab.Vanilla', 'theme:name:label' => 'Nome do Tema', 'theme:name_create_placeholder' => 'Nome do novo tema', 'theme:name_label' => 'Nome', 'theme:new_directory_name_comment' => 'Forneça um novo nome de diretório para o tema duplicado.', 'theme:new_directory_name_label' => 'Diretório do tema', 'theme:not_found_name' => 'O tema \\":name\\" não foi encontrado.', 'theme:return' => 'Retornar à lista de temas', 'theme:save_properties' => 'Salvar propriedades', 'theme:saving' => 'Salvando tema...', 'theme:settings_menu' => 'Temas', 'theme:settings_menu_description' => 'Veja a lista de temas instalados e selecione o tema ativo.', 'theme:theme_label' => 'Tema', 'theme:theme_title' => 'Temas', 'theme:unnamed' => 'Tema sem nome', 'themes:install' => 'Instalar tema', 'themes:installed' => 'Temas instalados', 'themes:no_themes' => 'Não há temas instalados.', 'themes:recommended' => 'Recomendado', 'themes:remove_confirm' => 'Você tem certeza que deseja remover este tema?', 'themes:search' => 'Buscar temas para instalar...', 'tooltips:preview_website' => 'Visualizar a página', 'updates:check_label' => 'Verificar atualizações', 'updates:core_build' => 'Compilação :build', 'updates:core_build_help' => 'Última versão está disponível.', 'updates:core_current_build' => 'Compilação atual', 'updates:core_downloading' => 'Baixando arquivos do aplicativo', 'updates:core_extracting' => 'Desempacotando arquivos do aplicativo', 'updates:details_author' => 'Autor', 'updates:details_current_version' => 'Versão atual', 'updates:details_readme' => 'Documentação', 'updates:details_readme_missing' => 'Não foi fornecida nenhuma documentação.', 'updates:details_title' => 'Detalhes do plugin', 'updates:details_upgrades' => 'Guia de atualização', 'updates:details_upgrades_missing' => 'Não existem instruções de atualização.', 'updates:details_view_homepage' => 'Visualizar página', 'updates:disabled' => 'Desabilitados', 'updates:force_label' => 'Forçar atualização', 'updates:found:help' => 'Clique Atualizar o software para iniciar o processo de atualização.', 'updates:found:label' => 'Atualizações encontradas!', 'updates:important_action:confirm' => 'Confirmar atualização', 'updates:important_action:empty' => 'Selecionar ação', 'updates:important_action:ignore' => 'Pular este plugin (sempre)', 'updates:important_action:skip' => 'Pular este plugin (apenas uma vez)', 'updates:important_action_required' => 'Ação requerida', 'updates:important_alert_text' => 'Algumas atualizações precisam de sua atenção.', 'updates:important_view_guide' => 'Exibir guia de atualização', 'updates:menu_description' => 'Atualize o sistema, gerencie e instale plugins e temas.', 'updates:menu_label' => 'Atualizações', 'updates:name' => 'Atualização de software', 'updates:none:help' => 'Não há novas atualizações.', 'updates:none:label' => 'Nenhuma atualização', 'updates:plugin_author' => 'Autor', 'updates:plugin_code' => 'Código', 'updates:plugin_current_version' => 'Versão atual', 'updates:plugin_description' => 'Descrição', 'updates:plugin_downloading' => 'Baixando o plugin: :name', 'updates:plugin_extracting' => 'Desempacotando o plugin: :name', 'updates:plugin_name' => 'Nome', 'updates:plugin_version' => 'Versão', 'updates:plugin_version_none' => 'Novo plugin', 'updates:plugins' => 'Plugins', 'updates:retry_label' => 'Tentar novamente', 'updates:return_link' => 'Voltar às atualizações', 'updates:theme_downloading' => 'Baixando o tema: :name', 'updates:theme_extracting' => 'Desempacotando o tema: :name', 'updates:theme_new_install' => 'Instalação do novo tema.', 'updates:themes' => 'Temas', 'updates:title' => 'Gerenciar Atualizações', 'updates:update_completing' => 'Finalizando processo de atualização', 'updates:update_failed_label' => 'Falha na atualização', 'updates:update_label' => 'Atualizar o software', 'updates:update_loading' => 'Carregando atualizações disponíveis...', 'updates:update_success' => 'O processo de atualização foi realizado com sucesso.', 'user:account' => 'Conta', 'user:allow' => 'Permitir', 'user:avatar' => 'Foto', 'user:delete_confirm' => 'Você realmente deseja apagar este administrador?', 'user:deny' => 'Negar', 'user:email' => 'E-mail', 'user:first_name' => 'Nome', 'user:full_name' => 'Nome Completo', 'user:group:code_comment' => 'Insira um código exclusivo se você quiser acessá-lo com a API.', 'user:group:code_field' => 'Código', 'user:group:delete_confirm' => 'Você realmente deseja excluir este grupo?', 'user:group:description_field' => 'Descrição', 'user:group:is_new_user_default_field' => 'Adicionar novos administradores a este grupo por padrão', 'user:group:list_title' => 'Gerenciar grupos', 'user:group:menu_label' => 'Grupos', 'user:group:name' => 'Grupo', 'user:group:name_field' => 'Nome', 'user:group:new' => 'Novo grupo administrador', 'user:group:return' => 'Voltar para a lista de grupos', 'user:group:users_count' => 'Usuários', 'user:groups' => 'Grupos', 'user:groups_comment' => 'Defina a quais grupos essa pessoa pertence.', 'user:inherit' => 'Herdar', 'user:last_name' => 'Sobrenome', 'user:list_title' => 'Gerenciar administradores', 'user:login' => 'Usuário', 'user:menu_description' => 'Gerenciar administradores, grupos e permissões.', 'user:menu_label' => 'Administratores', 'user:name' => 'Administrador', 'user:new' => 'Novo administrador', 'user:password' => 'Senha', 'user:password_confirmation' => 'Confirme a senha', 'user:permissions' => 'Permissões', 'user:preferences:not_authenticated' => 'Nenhum usuário autenticado para carregar as preferências.', 'user:return' => 'Retornar à lista de administradores', 'user:send_invite' => 'Enviar convite por e-mail', 'user:send_invite_comment' => 'Marque para enviar um convite por e-mail', 'user:superuser' => 'Super Usuário', 'user:superuser_comment' => 'Marque para liberar o acesso irrestrito para este usuário.', 'validation:accepted' => ':attribute deve ser aceito.', 'validation:active_url' => ':attribute não é uma URL válida.', 'validation:after' => ':attribute deve ser uma data após :date.', 'validation:alpha' => ':attribute só pode conter letras.', 'validation:alpha_dash' => ':attribute só pode conter letras, números e traços.', 'validation:alpha_num' => ':attribute só pode conter letras e números.', 'validation:array' => ':attribute deve ser uma matriz.', 'validation:before' => ':attribute deve ser uma data antes :date.', 'validation:between:array' => ':attribute deve ter entre :min e :max itens.', 'validation:between:file' => ':attribute deve ter entre :min e :max kilobytes.', 'validation:between:numeric' => ':attribute deve situar-se entre :min e :max.', 'validation:between:string' => ':attribute deve ter entre :min e :max caracteres.', 'validation:confirmed' => 'A confirmação de :attribute não corresponde.', 'validation:date' => ':attribute não é uma data válida.', 'validation:date_format' => ':attribute não coincide com o formato :format.', 'validation:different' => ':attribute e :other devem ser diferentes.', 'validation:digits' => ':attribute deve ser :digits dígitos.', 'validation:digits_between' => ':attribute deve ter entre :min e :max dígitos.', 'validation:email' => 'Formato de :attribute é inválido.', 'validation:exists' => ':attribute selecionado é inválido.', 'validation:extensions' => 'O :attribute deve conter uma extensão: :values.', 'validation:image' => ':attribute deve ser uma imagem.', 'validation:in' => ':attribute selecionado é inválido.', 'validation:integer' => ':attribute deve ser um número inteiro.', 'validation:ip' => ':attribute deve ser um endereço IP válido.', 'validation:max:array' => ':attribute não pode ter mais que :max itens.', 'validation:max:file' => ':attribute não pode ser maior do que :max kilobytes.', 'validation:max:numeric' => ':attribute não pode ser maior do que :max.', 'validation:max:string' => ':attribute não pode ser maior do que :max caracteres.', 'validation:mimes' => ':attribute deve ser um arquivo do tipo: :values.', 'validation:min:array' => ':attribute deve ter pelo menos :min itens.', 'validation:min:file' => ':attribute deve ter pelo menos :min kilobytes.', 'validation:min:numeric' => ':attribute deve ser no mínimo :min.', 'validation:min:string' => ':attribute deve ter pelo menos :min caracteres.', 'validation:not_in' => ':attribute selecionado é inválido.', 'validation:numeric' => ':attribute deve ser um número.', 'validation:regex' => 'Formato de :attribute é inválido.', 'validation:required' => 'O campo :attribute é obrigatório.', 'validation:required_if' => 'O campo :attribute é obrigatório quando :other é :value.', 'validation:required_with' => 'O campo :attribute é obrigatório quando :values está presente.', 'validation:required_without' => 'O campo :attribute é obrigatório quando :values não está presente.', 'validation:same' => 'O campo :attribute e :other devem corresponder.', 'validation:size:array' => ':attribute deve conter :size itens.', 'validation:size:file' => ':attribute deve ser :size kilobytes.', 'validation:size:numeric' => ':attribute deve ser :size.', 'validation:size:string' => ':attribute deve ter :size caracteres.', 'validation:unique' => ':attribute já está sendo utilizado.', 'validation:url' => 'Formato de :attribute é inválido.', 'warnings:extension' => 'A extensão PHP :name não está instalada. Por favor, instale esta biblioteca para ativar a extensão.', 'warnings:permissions' => 'Diretório :name ou seus subdiretórios não são graváveis pelo PHP. Por favor, defina permissões de escrita para o servidor neste diretório.', 'warnings:tips' => 'Dicas de configuração do sistema', 'warnings:tips_description' => 'Há itens que demandam atenção para configurar o sistema corretamente.', 'widget:not_bound' => 'Um widget da classe \\":name\\" não foi ligado ao controlador', 'widget:not_registered' => 'Uma classe de widget com o nome \\":name\\" não foi definida', 'zip:extract_failed' => 'Não foi possível extrair arquivo do core \\":file\\".']);
示例#21
0
文件: el.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Ημερομηνία & Ώρα', 'access_log:email' => 'Email', 'access_log:first_name' => 'Όνομα', 'access_log:hint' => 'Αυτό το αρχείο εμφανίζει μια λίστα με τις επιτυχημένες προσπάθειες σύνδεσης από τους διαχειριστές. Οι εγγραφές διατηρούνται για :days ημέρες.', 'access_log:ip_address' => 'Διεύθυνση IP', 'access_log:last_name' => 'Επώνυμο', 'access_log:login' => 'Σύνδεση', 'access_log:menu_description' => 'Λίστα με τις επιτυχημένες προσβάσεις στο back-end.', 'access_log:menu_label' => 'Αρχείο καταγραφής προσβάσεων', 'account:apply' => 'Εφαρμογή', 'account:cancel' => 'Άκυρο', 'account:delete' => 'Διαγραφή', 'account:email_placeholder' => 'email', 'account:enter_email' => 'Συμπληρώστε το email σας', 'account:enter_login' => 'Συμπληρώστε τον λογαριασμό σας', 'account:enter_new_password' => 'Πληκτρολογήστε νέο κωδικό.', 'account:forgot_password' => 'Ξεχάσατε τον κωδικό σας;', 'account:login' => 'Σύνδεση', 'account:login_placeholder' => 'σύνδεση', 'account:ok' => 'Εντάξει', 'account:password_placeholder' => 'κωδικός', 'account:password_reset' => 'Επαναφορά Κωδικού', 'account:reset' => 'Επαναφορά', 'account:reset_error' => 'Τα στοιχεία που έχουν δοθεί για την επαναφορά του κωδικού είναι μη έγκυρα. Παρακαλούμε δοκιμάστε ξανά!', 'account:reset_fail' => 'Δεν κατέστη δυνατό να επαναφερθεί ο κωδικός σας!', 'account:reset_success' => 'Η επαναφορά του κωδικού σας έχει εκτελεστεί επιτυχώς. Μπορείτε τώρα να συνδεθείτε.', 'account:restore' => 'Αποκατάσταση', 'account:restore_error' => 'Δεν βρέθηκε χρήστης με τα στοιχεία \':login\'', 'account:restore_success' => 'Ένα email έχει σταλεί στην διεύθυνση ηλεκτρονικού ταχυδρομείου σου με τις οδηγίες επαναφοράς του κωδικού σου.', 'account:sign_out' => 'Αποσύνδεση', 'ajax_handler:invalid_name' => 'Μη έγκυρο όνομα χειριστή AJAX: :name.', 'ajax_handler:not_found' => 'Ο χειρίστης AJAX \':name\' δεν βρέθηκε.', 'alert:cancel_button_text' => 'Άκυρο', 'alert:confirm_button_text' => 'Εντάξει', 'app:name' => 'October CMS', 'app:tagline' => 'Επιστροφή στα βασικά', 'asset:already_exists' => 'Το αρχείο ή ο κατάλογος με αυτό το όνομα υπάρχει ήδη', 'asset:create_directory' => 'Δημιουργία καταλόγου', 'asset:create_file' => 'Δημιουργία αρχείου', 'asset:delete' => 'Διαγραφή', 'asset:destination_not_found' => 'Ο κατάλογος προορισμού δεν βρέθηκε', 'asset:directory_name' => 'Όνομα καταλόγου', 'asset:directory_popup_title' => 'Νέος κατάλογος', 'asset:drop_down_add_title' => 'Προσθήκη...', 'asset:drop_down_operation_title' => 'Ενέργια...', 'asset:error_deleting_dir' => 'Σφάλμα κατά την διαγραφή του καταλόγου :name.', 'asset:error_deleting_dir_not_empty' => 'Σφάλμα κατά την διαγραφή του καταλόγου :name. Ο κατάλογος δεν είναι άδειος.', 'asset:error_deleting_directory' => 'Σφάλμα κατά την διαγραφή του αρχικού καταλόγου :dir', 'asset:error_deleting_file' => 'Σφάλμα κατά την διαγραφή του αρχείου :name.', 'asset:error_moving_directory' => 'Σφάλμα κατά την μετακίνηση του καταλόγου :dir', 'asset:error_moving_file' => 'Σφάλμα κατά την μετακίνηση του αρχείου :file', 'asset:error_renaming' => 'Σφάλμα κατά την μετονομασία του αρχείου ή του καταλόγου', 'asset:error_uploading_file' => 'Σφάλμα κατά το ανέβασμα του αρχείου \':name\': :error', 'asset:file_not_valid' => 'Το αρχείο δεν είναι έγκυρο', 'asset:invalid_name' => 'Το όνομα μπορεί να περιέχει μόνο ψηφία, Λατινικούς χαρακτήρες, κενά και τα ακόλουθα σύμβολα: ._-', 'asset:invalid_path' => 'Η διαδρομή μπορεί να περιέχει μόνο ψηφία, Λατινικούς χαρακτήρες, κενά και τα ακόλουθα σύμβολα: ._-/', 'asset:menu_label' => 'Ποροι', 'asset:move' => 'Μετακίνηση', 'asset:move_button' => 'Μετακίνηση', 'asset:move_destination' => 'Κατάλογος προορισμού', 'asset:move_please_select' => 'παρακαλούμε επιλέξτε', 'asset:move_popup_title' => 'Μετακίνηση πόρων', 'asset:name_cant_be_empty' => 'Το όνομα δεν μπορεί να είναι άδειο', 'asset:new' => 'Νέο αρχείο', 'asset:original_not_found' => 'Το αρχικό αρχείο ή κατάλογος δεν βρέθηκε', 'asset:path' => 'Διαδρομή', 'asset:rename' => 'Μετονομασία', 'asset:rename_new_name' => 'Νέο όνομα', 'asset:rename_popup_title' => 'Μετονομασία', 'asset:select' => 'Επιλογή', 'asset:select_destination_dir' => 'Παρακαλούμε επιλέξτε έναν κατάλογο προορισμού', 'asset:selected_files_not_found' => 'Τα επιλεγμένα αρχεία δεν βρέθηκαν', 'asset:too_large' => 'Το ανεβασμένο αρχείο είναι πολύ μεγάλο. Το μέγιστο επιτρεπόμενο μέγεθος αρχείου είναι :max_size', 'asset:type_not_allowed' => 'Επιτρέπονται μόνο οι επόμενοι τύποι αρχείων:allowed_types', 'asset:unsaved_label' => 'Μη αποθηκευμενοι ποροι', 'asset:upload_files' => 'Ανέβασμα αρχείου(α)', 'auth:title' => 'Περιοχή Διαχείρισης', 'backend_preferences:locale' => 'Γλώσσα', 'backend_preferences:locale_comment' => 'Επιλέξτε την επιθυμητή τοπική περιοχή για την χρήση γλώσσας.', 'backend_preferences:menu_description' => 'Διαχειριστείτε τις ρυθμίσεις του λογαριασμού σας όπως την επιθυμητή γλώσσα.', 'backend_preferences:menu_label' => 'Προτιμήσεις Back-End', 'behavior:missing_property' => 'Η κλάση :class πρέπει να καθορίζει την ιδιότητα $:property που χρησιμοποιείτε από την συμπεριφορά :behavior.', 'branding:app_name' => 'Όνομα Εφαρμογής', 'branding:app_name_description' => 'Το όνομα αυτό εμφανίζεται στην περιοχή τίλιου του back-end.', 'branding:app_tagline' => 'Ετικέτα Εφαρμογής', 'branding:app_tagline_description' => 'Αυτό το όνομα εμφανίζεται στην οθόνη σύνδεσης στο back-end.', 'branding:brand' => 'Διακριτικός Τίτλος', 'branding:colors' => 'Χρώματα', 'branding:custom_stylesheet' => 'Προσαρμοσμένα στυλ', 'branding:logo' => 'Λογότυπο', 'branding:logo_description' => 'Ανεβάστε ένα προσαρμοσμένο λογότυπο για την χρήση στο back-end.', 'branding:menu_description' => 'Προσαρμόστε την περιοχή διαχείρισης όπως το όνομα, τα χρώματα και το λογότυπο.', 'branding:menu_label' => 'Προσαρμογή του back-end', 'branding:primary_dark' => 'Πρωτεύων (Σκούρο)', 'branding:primary_light' => 'Πρωτεύων (Ανοιχτό)', 'branding:secondary_dark' => 'Δευτερεύων (Σκούρο)', 'branding:secondary_light' => 'Δευτερεύων (Ανοιχτό)', 'branding:styles' => 'Στυλ', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Τα πρότυπα τα οποία διαγράφηκαν επιτυχώς: :count.', 'cms_object:error_creating_directory' => 'Σφάλμα δημιουργίας του καταλόγου :name. Παρακαλούμε ελέγξτε τα δικαιώματα εγγραφής.', 'cms_object:error_deleting' => 'Σφάλμα διαγράφης του αρχείου \':name\' του προτύπου. Παρακαλούμε ελέγξτε τα δικαιώματα εγγραφής.', 'cms_object:error_saving' => 'Σφάλμα κατά την αποθήκευση του αρχείου \':name\'. Παρακαλούμε ελέγξτε τα δικαιώματα εγγραφής.', 'cms_object:file_already_exists' => 'Το αρχείο \':name\' υπάρχει ήδη.', 'cms_object:file_name_required' => 'Το πεδίο του Ονόματος του Αρχείου είναι υποχρεωτικό.', 'cms_object:invalid_file' => 'Μη έγκυρο όνομα αρχείου: :name. Τα ονόματα αρχείων μπορούν να περιέχουν μόνο αλφαριθμητικά σύμβολα, κάτω παύλες, παύλες και τελείες. Μερικά παραδείγματα σωστών ονομάτων αρχείων: page.htm, page, subdirectory/page', 'cms_object:invalid_file_extension' => 'Μη έγκυρη επέκταση αρχείου: :invalid. Οι επιτρεπόμενες επεκτάσεις είναι: :allowed.', 'cms_object:invalid_property' => 'Η ιδιότητα \':name\' δεν μπορεί να οριστεί.', 'combiner:not_found' => 'Το αρχείο συγχώνευσης \':name\' δεν βρέθηκε.', 'component:alias' => 'Ψευδώνυμο', 'component:alias_description' => 'Ένα μοναδικό όνομα δίνεται σε αυτό το συστατικό όταν το χρησιμοποιείτε στον κώδικα της σελίδας ή της διάταξης.', 'component:invalid_request' => 'Το πρότυπο δεν μπορεί να σωθεί λόγω των μη έγκυρων δεδομένων του συστατικού.', 'component:menu_label' => 'Συστατικά', 'component:method_not_found' => 'Το συστατικό \':name\' δεν περιέχει την μέθοδο \':method\'.', 'component:no_description' => 'Δεν παρέχεται περιγραφή', 'component:no_records' => 'Δεν βρέθηκαν συστατικά', 'component:not_found' => 'Το συστατικό \':name\' δεν βρέθηκε.', 'component:unnamed' => 'Χωρίς Όνομα', 'component:validation_message' => 'Τα ψευδώνυμα των συστατικών είναι υποχρεωτικά και μπορούν να περιέχουν μόνο Λατινικά σύμβολα, αριθμούς, και κάτω παύλες. Τα ψευδώνυμα θα πρέπει να αρχίζουν με ένα λατινικό σύμβολο.', 'config:not_found' => 'Δεν κατέστη δυνατό να βρεθεί το αρχείο διαμόρφωσης :file το οποίο ορίστηκε στην διαδρομή :location.', 'config:required' => 'Η διαμόρφωση που χρησιμοποιήθηκε στην διαδρομή :location πρέπει να παρέχει μια τιμή \':property\'.', 'content:delete_confirm_multiple' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε τα επιλεγμένα αρχεία περιχεόμενου ή τους καταλόγους;', 'content:delete_confirm_single' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το αρχείο περιεχομένου;', 'content:menu_label' => 'Περιεχόμενο', 'content:new' => 'Νέο Αρχ.Περ.', 'content:no_list_records' => 'Δεν βρέθηκαν αρχεία περιεχομένου.', 'content:not_found_name' => 'Το αρχείο περιεχομένου \':name\' δεν βρέθηκε.', 'content:unsaved_label' => 'Μη αποθηκευμένο περιεχόμενο', 'dashboard:add_widget' => 'Προσθήκη Widget', 'dashboard:columns' => '{1} στηλη|[2,Inf] στήλες', 'dashboard:full_width' => 'πλήρες πλάτος', 'dashboard:menu_label' => 'Κέντρο Ελένχου', 'dashboard:status:maintenance' => 'σε συντήρηση', 'dashboard:status:online' => 'ενεργό', 'dashboard:status:update_available' => '{0} διαθέσιμες ενημερώσεις!|{1} διαθέσιμη ενημέρωση!|[2,Inf] διαθέσιμες ενημερώσεις!', 'dashboard:status:widget_title_default' => 'Κατάσταση συστήματος', 'dashboard:widget_columns_description' => 'Το πλάτος του widget, ένας αριθμός μεταξύ του 1 και του 10.', 'dashboard:widget_columns_error' => 'Παρακαλούμε εισάγετε το πλάτος του widget σαν ένα αριθμό μεταξύ του 1 και του 10.', 'dashboard:widget_columns_label' => 'Πλάτος :columns', 'dashboard:widget_inspector_description' => 'Ρύθμιση του widget αναφορών', 'dashboard:widget_inspector_title' => 'Ρύθμιση Widget', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'Τοποθετείστε το widget σε νέα σειρά.', 'dashboard:widget_new_row_label' => 'Έναρξη νέας σειράς', 'dashboard:widget_title_error' => 'O τίτλος του Widget είναι απαραίτητος.', 'dashboard:widget_title_label' => 'Τίτλος Widget', 'dashboard:widget_width' => 'Πλάτος', 'directory:create_fail' => 'Δεν είναι δυνατή η δημιουργία του καταλόγου: :name', 'editor:auto_closing' => 'Αυτόματο κλείσιμο ετικετών και ειδικών χαρακτήρων', 'editor:code' => 'Κώδικας', 'editor:code_folding' => 'Αναδίπλωση κώδικα', 'editor:content' => 'Περιεχόμενο', 'editor:description' => 'Περιγραφή', 'editor:enter_fullscreen' => 'Μεταβαση σε λειτουργια πληρους οθονης', 'editor:exit_fullscreen' => 'Εξοδος απο την λειτουργια πληρους οθονης', 'editor:filename' => 'Όνομα Αρχείου', 'editor:font_size' => 'Μέγεθος γραμματοσειράς', 'editor:hidden' => 'Κρυφό', 'editor:hidden_comment' => 'Οι κρυφες σελιδες ειναι προσβασημες μονο απο τους συνδεδεμενους back-end χρηστες.', 'editor:highlight_active_line' => 'Επισήμανση ενεργής σειράς', 'editor:layout' => 'Διάταξη', 'editor:markup' => 'Markup', 'editor:menu_description' => 'Προσαρμόστε τις επιλογές του επεξεργαστεί κώδικα, όπως το μέγεθος της γραμματοσειράς και τον χρωματική απεικόνιση.', 'editor:menu_label' => 'Ρυθμίσεις επεξεργαστή κώδικα', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Περιγραφή Meta', 'editor:meta_title' => 'Τίτλος Meta', 'editor:new_title' => 'Νέος τίτλος σελίδας', 'editor:preview' => 'Προεπισκόπηση', 'editor:settings' => 'Ρυθμίσεις', 'editor:show_gutter' => 'Εμφάνιση περιθωρίου', 'editor:show_invisibles' => 'Εμφάνιση αόρατων χαρακτήρων', 'editor:tab_size' => 'Μέγεθος Tab', 'editor:theme' => 'Χρωματική απεικόνιση', 'editor:title' => 'Τίτλος', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Εσοχή με την χρήση tabs', 'editor:word_wrap' => 'Αναδίπλωση κειμένου', 'event_log:created_at' => 'Ημέρα & Ώρα', 'event_log:empty_link' => 'Άδειασμα καταγραφής συμβάντων', 'event_log:empty_loading' => 'Αδειάζει το αρχείο καταγραφής συμβάντων...', 'event_log:empty_success' => 'Επιτυχές άδειασμα του αρχείου καταγραφής συμβάντων.', 'event_log:hint' => 'Αυτό το αρχείο καταγραφής εμφανίζει μια λίστα από ενδεχόμενα λάθη τα οποία συμβαίνουν στην εφαρμογή, όπως εξαιρέσεις και πληροφορίες αποσφαλμάτωσης.', 'event_log:id' => 'ID', 'event_log:id_label' => 'ID Συμβάντος', 'event_log:level' => 'Επίπεδο', 'event_log:menu_description' => 'Προβολή μηνυμάτων καταγραφής με τον χρόνο δημιουργίας και τις λεπτομερείς τους.', 'event_log:menu_label' => 'Καταγραφή συμβάντων', 'event_log:message' => 'Μήνυμα', 'event_log:return_link' => 'Επιστροφή στην καταγραφή συμβάντων', 'field:invalid_type' => 'Χρησιμοποιήθηκε μη έγκυρος τύπος πεδίου :type.', 'field:options_method_not_exists' => 'H κλάση του μοντέλου πρέπει να καθορίζει μια μέθοδο :method() επιστροφής επίλογων για το πεδίο \':field\'', 'file:create_fail' => 'Δεν είναι δυνατή η δημιουργία του αρχείου: :name', 'fileupload:attachment' => 'Επισύναψη', 'fileupload:attachment_url' => 'URL Συνημμένου', 'fileupload:default_prompt' => 'Κάντε κλικ στο %s ή σύρετε ένα αρχείο εδώ για να το ανεβάσετε', 'fileupload:description_label' => 'Περιγραφή', 'fileupload:help' => 'Προσθέστε τίτλο και περιγραφή για αυτήν την επισύναψη.', 'fileupload:remove_confirm' => 'Είστε σίγουροι;', 'fileupload:remove_file' => 'Διαγραφή αρχείου', 'fileupload:title_label' => 'Τίτλος', 'fileupload:upload_error' => 'Σφάλμα ανεβάσματος', 'fileupload:upload_file' => 'Ανέβασμα αρχείου', 'filter:all' => 'όλα', 'form:action_confirm' => 'Είστε σίγουροι;', 'form:add' => 'Προσθήκη', 'form:apply' => 'Εφαρμογή', 'form:behavior_not_ready' => 'Η συμπεριφορά δεν έχει αρχικοποιήσεις, ελέγξτε εάν έχετε καλέσει το initForm() στον χειριστή.', 'form:cancel' => 'Άκυρο', 'form:close' => 'Κλείσιμο', 'form:complete' => 'Ολοκλήρωση', 'form:concurrency_file_changed_description' => 'Το αρχείο το οποίο επεξεργάζεστε έχει αλλάξει στον δίσκο από έναν άλλο χρήστη. Μπορείτε είτε να επαναφορτώσετε το αρχείο και να χάσετε τις αλλαγές σας είτε να παρακάμψετε το αρχείο στον δίσκο.', 'form:concurrency_file_changed_title' => 'Το αρχείο έχει αλλάξει', 'form:confirm' => 'Επιβεβαίωση', 'form:confirm_tab_close' => 'Είστε σίγουροι ότι θέλετε να κλείσετε αυτήν την καρτέλα; Οι μη αποθηκευμένες αλλαγές θα χαθούν.', 'form:create' => 'Δημιουργία', 'form:create_and_close' => 'Δημιουργία και κλείσιμο', 'form:create_success' => 'Το :name έχει δημιουργηθεί επιτυχώς', 'form:create_title' => 'Νέο :name', 'form:creating' => 'Δημιουργία...', 'form:creating_name' => 'Δημιουργία :name...', 'form:delete' => 'Διαγραφή', 'form:delete_row' => 'Διαγραφή Σειράς', 'form:delete_success' => 'Το :name έχει διαγραφεί επιτυχώς', 'form:deleting' => 'Διαγραφή...', 'form:deleting_name' => 'Διαγραφή :name...', 'form:field_off' => 'Όχι', 'form:field_on' => 'Ναι', 'form:insert_row' => 'Προσθήκη Σειράς', 'form:missing_definition' => 'Η συμπεριφορά της φόρμας δεν περιέχει ένα πεδίο για το \':field\'.', 'form:missing_id' => 'Το ID της εγγραφής στην φόρμα δεν έχει οριστεί.', 'form:missing_model' => 'Η συμπεριφορά της φόρμας που χρησιμοποιήθηκε στην :class δεν έχει καθορισμένο μοντέλο.', 'form:not_found' => 'Η εγγραφή της φόρμας με ID :id δεν βρέθηκε.', 'form:ok' => 'Εντάξει', 'form:or' => 'ή', 'form:preview_no_files_message' => 'Δεν υπάρχουν αρχεία που ανέβηκαν.', 'form:preview_no_record_message' => 'Δεν είναι επιλεγμένη καμία εγγραφή.', 'form:preview_title' => 'Προεπισκόπηση :name', 'form:reload' => 'Επαναφόρτιση', 'form:reset_default' => 'Επαναφορά στο προκαθορισμένο', 'form:resetting' => 'Επαναφορά', 'form:resetting_name' => 'Επαναφορά :name', 'form:save' => 'Αποθήκευση', 'form:save_and_close' => 'Αποθήκευση και κλείσιμο', 'form:saving' => 'Αποθήκευση...', 'form:saving_name' => 'Αποθήκευση :name...', 'form:select' => 'Επιλογή', 'form:select_all' => 'όλα', 'form:select_none' => 'κανένα', 'form:select_placeholder' => 'παρακαλούμε επιλέξτε', 'form:undefined_tab' => 'Διάφορα', 'form:update_success' => 'Το :name έχει ενημερωθεί επιτυχώς', 'form:update_title' => 'Επεξεργασία :name', 'install:install_completing' => 'Ολοκλήρωση διαδικασίας εγκατάστασης', 'install:install_success' => 'Το πρόσθετο εγκαταστάθηκε επιτυχώς', 'install:missing_plugin_name' => 'Παρακαλούμε προσδιορίστε το όνομα του Πρόσθετου για την εγκατάσταση', 'install:missing_theme_name' => 'Παρακαλούμε προσδιορίστε το όνομα του Θέματος για την εγκατάσταση', 'install:plugin_label' => 'Εγκατάσταση Πρόσθετου', 'install:project_label' => 'Σύνδεση με το Project', 'install:theme_label' => 'Εγκατάσταση Θέματος', 'layout:delete_confirm_multiple' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε τις επιλεγμένες διατάξεις;', 'layout:delete_confirm_single' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτήν την διάταξη;', 'layout:menu_label' => 'Διατάξεις', 'layout:new' => 'Νέα Διάταξη', 'layout:no_list_records' => 'Δεν βρέθηκε η διάταξη', 'layout:not_found_name' => 'The layout \':name\' is not found', 'layout:unsaved_label' => 'Μη αποθηκευμένες διατάξεις', 'list:behavior_not_ready' => 'Η συμπεριφορά της λίστας δεν έχει αρχικοποιηθεί, ελέγξτε ότι έχετε καλέσει την makeLists() στον χειριστή.', 'list:default_title' => 'Λίστα', 'list:delete_selected' => 'Διαγραφή επιλεγμένου', 'list:delete_selected_confirm' => 'Να διαγραφούν οι επιλεγμένες εγγραφές;', 'list:delete_selected_empty' => 'Δεν υπάρχουν επιλεγμένες εγγραφές για να διαγράψετε.', 'list:delete_selected_success' => 'Επιτυχής διαγραφή των επιλεγμένων εγγραφών.', 'list:invalid_column_datetime' => 'Η τιμή της στήλης \':column\' δεν είναι ένα αντικείμενο DateTime, μήπως διαφεύγει μια $dates αναφορά στο μοντέλο?', 'list:loading' => 'Φόρτωμα...', 'list:missing_column' => 'Δεν υπάρχει ορισμός στηλών για τα :columns.', 'list:missing_columns' => 'Η λίστα χρησιμοποιήθηκε στη :class δεν έχει ορισμένες στήλες λίστας.', 'list:missing_definition' => 'Η συμπεριφορά της λίστας δεν περιέχει μια στήλη για το \':field\'.', 'list:missing_model' => 'Η συμπεριφορά της λίστας χρησιμοποιήθηκε στην :class δεν έχει κάποιο καθορισμένο μοντέλο.', 'list:next_page' => 'Επόμενη σελίδα', 'list:no_records' => 'Δεν υπάρχουν εγγραφές σε αυτήν την προβολή.', 'list:pagination' => 'Εμφάνιση εγγραφών: :from-:to απο :total', 'list:prev_page' => 'Προηγούμενη σελίδα', 'list:records_per_page' => 'Εγγραφές ανά σελίδα', 'list:records_per_page_help' => 'Επιλέξτε τον αριθμό των εγγραφών ανά σελίδα για εμφάνιση. Παρακαλούμε σημειώστε ότι ένας υψηλός αριθμός εγγραφών σε μια και μόνο σελίδα μπορεί να μειώσει την απόδοση.', 'list:search_prompt' => 'Αναζήτηση...', 'list:setup_help' => 'Χρησιμοποιήστε το πλαίσιο ελέγχου για να επιλέξετε τις στήλες που θέλετε να δείτε στην λίστα. Μπορείτε να αλλάξετε την θέση των στηλών με το σύρσιμο πάνω και κάτω.', 'list:setup_title' => 'Ρύθμιση Λίστας', 'locale:cs' => 'Τσέχος', 'locale:de' => 'Γερμανικά', 'locale:el' => 'Ελληνικά', 'locale:en' => 'Αγγλικά', 'locale:es' => 'Ισπανικά', 'locale:es-ar' => 'Ισπανικά (Αργεντινή)', 'locale:fa' => 'Περσικά', 'locale:fr' => 'Γαλλικά', 'locale:hu' => 'Ουγγρικά', 'locale:id' => 'Ινδονησιακά', 'locale:it' => 'Ιταλικά', 'locale:ja' => 'Ιαπωνικά', 'locale:lv' => 'Λεττονικά', 'locale:nb-no' => 'Νορβηγικά (Bokmål)', 'locale:nl' => 'Ολλανδικά', 'locale:pl' => 'Πολωνικά', 'locale:pt-br' => 'Πορτογαλικά (Βραζιλία)', 'locale:ro' => 'Ρουμανικά', 'locale:ru' => 'Ρωσικά', 'locale:sk' => 'Σλοβάκικα (Σλοβακία)', 'locale:sv' => 'Σουηδικά', 'locale:tr' => 'Τουρκικά', 'locale:zh-cn' => 'Κινέζικα (Κίνα)', 'locale:zh-tw' => 'Κινέζικα (Ταϊβάν)', 'mail:drivers_hint_content' => 'Αυτή η μέθοδος ταχυδρομείου απαιτεί να είναι εγκατεστημένο το πρόσθετο \\":plugin\\" πριν μπορέσετε να αποστείλετε ένα ηλεκτρονικό ταχυδρομείο.', 'mail:drivers_hint_header' => 'Οι οδηγοί δεν είναι εγκατεστημένοι', 'mail:general' => 'Γενικά', 'mail:log_file' => 'Αρχείο καταγραφής', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun Domain', 'mail:mailgun_domain_comment' => 'Παρακαλούμε καθορίστε το Domain Name του Mailgun.', 'mail:mailgun_secret' => 'Mailgun Secret', 'mail:mailgun_secret_comment' => 'Συμπληρώστε το API κλειδί του Mailgun.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill Secret', 'mail:mandrill_secret_comment' => 'Συμπληρώστε το API κλειδί του Mandrill.', 'mail:menu_description' => 'Διαχείριση ρυθμίσεων email.', 'mail:menu_label' => 'Ρυθμίσεις', 'mail:method' => 'Μέθοδος Ηλεκτρονικού Ταχυδρομείου', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'eMail Αποστολέα', 'mail:sender_name' => 'Όνομα Αποστολέα', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Διαδρομή Sendmail', 'mail:sendmail_path_comment' => 'Παρακαλούμε καθορίστε την διαδρομή του λογισμικού Sendmail.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'Διεύθυνση SMTP', 'mail:smtp_authorization' => 'Απαιτείται εξουσιοδότηση SMTP', 'mail:smtp_authorization_comment' => 'Χρησιμοποιείστε αυτό το πλαίσιο ελέγχου αν ο διακομιστής SMTP απαιτεί εξουσιοδότηση.', 'mail:smtp_encryption' => 'Πρωτόκολλο κρυπτογράφησης SMTP', 'mail:smtp_encryption_none' => 'Χωρίς κρυπτογράφηση', 'mail:smtp_encryption_ssl' => 'SSL', 'mail:smtp_encryption_tls' => 'TLS', 'mail:smtp_password' => 'Κωδικός', 'mail:smtp_port' => 'SMTP Port', 'mail:smtp_ssl' => 'Απαιτείται SSL σύνδεση', 'mail:smtp_username' => 'Όνομα Χρήστη', 'mail_templates:code' => 'Κωδικος', 'mail_templates:code_comment' => 'Μοναδικός κωδικός που χρησιμοποιείται για την αναφορά σε αυτό το πρότυπο', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Απλό Κείμενο', 'mail_templates:description' => 'Περιγραφή', 'mail_templates:layout' => 'Διάταξη', 'mail_templates:layouts' => 'Διάταξεις', 'mail_templates:menu_description' => 'Τροποποίηση των προτύπων του ηλεκτρονικού ταχυδρομείου τα οποία στέλνονται στους χρήστες και τους διαχειριστές, διαχείριση των διατάξεων των eMail.', 'mail_templates:menu_label' => 'Πρότυπα', 'mail_templates:menu_layouts_label' => 'Πρότυπα Ηλεκτρονικού Ταχυδρομείου', 'mail_templates:name' => 'Όνομα', 'mail_templates:name_comment' => 'Μοναδικό όνομα που χρησιμοποιείται για την αναφορά σε αυτό το πρότυπο', 'mail_templates:new_layout' => 'Νέα Διάταξη', 'mail_templates:new_template' => 'Νέο Πρότυπο', 'mail_templates:no_layout' => '-- Χωρίς διάταξη --', 'mail_templates:return' => 'Επιστροφή στην λίστα με τα πρότυπα', 'mail_templates:saving' => 'Αποθήκευση Προτύπου...', 'mail_templates:sending' => 'Αποστολή δοκιμαστικού μηνύματος...', 'mail_templates:subject' => 'Θέμα', 'mail_templates:subject_comment' => 'Θέμα μηνύματος eMail', 'mail_templates:template' => 'Πρότυπο', 'mail_templates:templates' => 'Πρότυπα', 'mail_templates:test_confirm' => 'Ένα δοκιμαστικό μήνυμα θα σταλεί στο :email. Συνέχεια;', 'mail_templates:test_send' => 'Αποστολή δοκιμαστικού μηνύματος', 'mail_templates:test_success' => 'Το δοκιμαστικό μήνυμα έχει αποσταλεί ευτυχώς.', 'maintenance:is_enabled' => 'Ενεργοποίηση λειτουργίας συντήρησης', 'maintenance:is_enabled_comment' => 'Όταν ενεργοποιηθεί, οι επισκέπτες τις ιστοσελίδας θα δουν την σελίδα που έχει επιλεγεί παρακάτω.', 'maintenance:settings_menu' => 'Λειτουργία συντήρησης', 'maintenance:settings_menu_description' => 'Διαμορφώστε τη σελίδα λειτουργίας συντήρησης και εναλλάξτε την ρύθμιση.', 'markdowneditor:bold' => 'Έντονα', 'markdowneditor:code' => 'Κώδικας', 'markdowneditor:formatting' => 'Μορφοποίηση', 'markdowneditor:fullscreen' => 'Πλήρης οθόνη', 'markdowneditor:header1' => 'Κεφαλίδα 1', 'markdowneditor:header2' => 'Κεφαλίδα 2', 'markdowneditor:header3' => 'Κεφαλίδα 3', 'markdowneditor:header4' => 'Κεφαλίδα 4', 'markdowneditor:header5' => 'Κεφαλίδα 5', 'markdowneditor:header6' => 'Κεφαλίδα 6', 'markdowneditor:horizontalrule' => 'Εισαγωγή Οριζόντιας Γραμμής', 'markdowneditor:image' => 'Εικόνα', 'markdowneditor:italic' => 'Ιταλικά', 'markdowneditor:link' => 'Σύνδεσμος', 'markdowneditor:orderedlist' => 'Ταξινομημένη λίστα', 'markdowneditor:preview' => 'Προεπισκόπηση', 'markdowneditor:quote' => 'Παράθεση', 'markdowneditor:unorderedlist' => 'Μη ταξινομημένη λίστα', 'markdowneditor:video' => 'Βίντεο', 'media:add_folder' => 'Προσθήκη καταλόγου', 'media:click_here' => 'Κλικ εδώ', 'media:crop_and_insert' => 'Περικοπή & Εισαγωγή', 'media:delete' => 'Διαγραφή', 'media:delete_confirm' => 'Είστε σίγουροι ότι θέλετε να σβήσετε τα επιλεγμένα αντικείμενα;', 'media:delete_empty' => 'παρακαλούμε επιλέξτε αντικείμενά για να τα σβήσετε.', 'media:display' => 'Εμφάνιση', 'media:empty_library' => 'Η βιβλιοθήκη Μέσων είναι άδεια. Ανεβάστε αρχεία ή δημιουργήστε καταλόγους για να ξεκινήσετε.', 'media:error_creating_folder' => 'Σφάλμα κατά την δημιουργία καταλόγου', 'media:error_renaming_file' => 'Σφάλμα κατά την μετονομασία του αντικειμένου.', 'media:filter_audio' => 'Ήχος', 'media:filter_documents' => 'Έγγραφο', 'media:filter_everything' => 'Όλα', 'media:filter_images' => 'Εικόνες', 'media:filter_video' => 'Βίντεο', 'media:folder' => 'Κατάλογος', 'media:folder_name' => 'Όνομα καταλόγου', 'media:folder_or_file_exist' => 'Ένας κατάλογος ή αρχείο με το ίδιο όνομα υπάρχει ήδη.', 'media:folder_size_items' => 'αντικείμενο(α)', 'media:height' => 'Ύψος', 'media:image_size' => 'Μέγεθος εικόνας:', 'media:insert' => 'Εισαγωγή', 'media:invalid_path' => 'Ορίστηκε μη έγκυρη διαδρομή αρχείου : \':path\'.', 'media:last_modified' => 'Τελευταία τροποποίηση', 'media:library' => 'Βιβλιοθήκη', 'media:menu_label' => 'Μέσα', 'media:move' => 'Μετακίνηση', 'media:move_dest_src_match' => 'Παρακαλούμε επιλέξτε έναν διαφορετικό κατάλογο προορισμού.', 'media:move_destination' => 'Κατάλογος προορισμού', 'media:move_empty' => 'παρακαλούμε επιλέξτε αντικείμενα για να τα μετακινήσετε.', 'media:move_popup_title' => 'Μετακίνηση αρχείων ή καταλογών.', 'media:multiple_selected' => 'Επιλέχτηκαν πολλαπλά αντικείμενα.', 'media:new_folder_title' => 'Νέος κατάλογος', 'media:no_files_found' => 'Δεν βρέθηκαν αρχεία από το αίτημα σας.', 'media:nothing_selected' => 'Δεν επιλέχτηκε τίποτα.', 'media:order_by' => 'Ταξινόμηση κατά', 'media:please_select_move_dest' => 'Παρακαλούμε επιλέξτε ένα κατάλογο προορισμού.', 'media:public_url' => 'Δημόσιο URL', 'media:resize' => 'Αλλαγή μεγέθους...', 'media:resize_image' => 'Αλλαγή μεγέθους εικόνας', 'media:restore' => 'Αναίρεση όλων των αλλαγών', 'media:return_to_parent' => 'Επιστροφή στον γονικό κατάλογο', 'media:return_to_parent_label' => 'Πήγαινε επάνω...', 'media:search' => 'Αναζήτηση', 'media:select_single_image' => 'παρακαλούμε επιλέξτε μόνο μια εικόνα.', 'media:selected_size' => 'Επιλεγμένο:', 'media:selection_mode' => 'Λειτουργία επιλογής', 'media:selection_mode_fixed_ratio' => 'Κλειδωμένη αναλογία', 'media:selection_mode_fixed_size' => 'Κλειδωμένο μέγεθος', 'media:selection_mode_normal' => 'Κανονικό', 'media:selection_not_image' => 'Το επιλεγμένο αντικείμενο δεν είναι εικόνα.', 'media:size' => 'Μέγεθος', 'media:thumbnail_error' => 'Σφάλμα κατά την δημιουργία μικρογραφίας.', 'media:title' => 'Τίτλος', 'media:upload' => 'Ανέβασμα', 'media:uploading_complete' => 'Το ανέβασμα ολοκληρώθηκε', 'media:uploading_file_num' => 'Ανέβασμα :number αρχείων...', 'media:width' => 'Πλάτος', 'mediamanager:insert_audio' => 'Εισαγωγή Ήχου από τα Μέσα', 'mediamanager:insert_image' => 'Εισαγωγή Εικόνας από τα Μέσα', 'mediamanager:insert_link' => 'Εισαγωγή Συνδέσμου από τα Μέσα', 'mediamanager:insert_video' => 'Εισαγωγή Βίντεο από τα Μέσα', 'mediamanager:invalid_audio_empty_insert' => 'Παρακαλούμε επιλέξτε ένα αρχείο ήχου για εισαγωγή.', 'mediamanager:invalid_file_empty_insert' => 'Παρακαλούμε επιλέξτε ένα αρχείο για να εισάγετε συνδέσμους σε αυτό.', 'mediamanager:invalid_file_single_insert' => 'Παρακαλούμε επιλέξτε ένα μοναδικό αρχείο.', 'mediamanager:invalid_image_empty_insert' => 'Παρακαλούμε επιλέξτε την εικόνα ή τις εικόνες για εισαγωγη.', 'mediamanager:invalid_video_empty_insert' => 'Παρακαλούμε επιλέξτε ένα αρχείο βίντεο για εισαγωγή.', 'model:invalid_class' => 'Το μοντέλο \':model\' που χρησιμοποιήθηκε στην :class δεν είναι έγκυρο, πρέπει να κληρονομεί την κλάση του \\Model.', 'model:mass_assignment_failed' => 'Η μαζική εκχώρηση για την ιδιότητα \':attribute\' του μοντέλου απέτυχε.', 'model:missing_id' => 'Δεν έχει οριστεί το ID για να αναζητηθεί η εγγραφή του μοντέλου.', 'model:missing_method' => 'Η κλάση \':class\' του μοντέλου δεν περιέχει την μέθοδο \':method\'.', 'model:missing_relation' => 'Η κλάση \':class\' του μοντέλου δεν περιέχει ένα ορισμό για την \':relation\'.', 'model:name' => 'Μοντέλο', 'model:not_found' => 'Η κλάση \':class\' του μοντέλου με ID :id δεν μπόρεσε να βρεθεί', 'myaccount:menu_description' => 'Ενημερώστε τις λεπτομερείς του λογαριασμού σας όπως το όνομα, την διεύθυνση email και τον κωδικού.', 'myaccount:menu_keywords' => 'ασφαλής σύνδεση', 'myaccount:menu_label' => 'Ο λογαριασμός μου', 'mysettings:menu_description' => 'Ρυθμίσεις σχετικές με τον λογαριασμό διαχειριστή σας', 'mysettings:menu_label' => 'Οι ρυθμίσεις μου', 'page:access_denied:cms_link' => 'Επιστροφή σύστημα διαχείρισης.', 'page:access_denied:help' => 'Δεν έχεις τα απαραίτητα δικαιώματα για να δεις αυτήν την σελίδα.', 'page:access_denied:label' => 'Απαγορεύεται η πρόσβαση', 'page:custom_error:help' => 'Σας ζητούμε συγνώμη, αλλά κάτι πήγε λάθος και η σελίδα δεν μπορεί να προβληθεί.', 'page:custom_error:label' => 'Σφάλμα σελίδας', 'page:delete_confirm_multiple' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε τις επιλεγμένες σελίδες;', 'page:delete_confirm_single' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτήν την σελίδα;', 'page:invalid_token:label' => 'Μη έγκυρο διακριτικό ασφαλείας', 'page:invalid_url' => 'Μη έγκυρη μορφή URL. Η διεύθυνση URL πρέπει να ξεκινήσει με κανονικό slash και μπορεί να περιέχει ψηφία, Λατινικά γράμματα και τα ακόλουθα σύμβολα: ._- [] :? | / + * ^ $', 'page:menu_label' => 'Σελίδες', 'page:new' => 'Νεα Σελιδα', 'page:no_layout' => '-- χωρίς διάταξη --', 'page:no_list_records' => 'Δεν βρέθηκαν σελίδες', 'page:not_found:help' => 'Η σελίδα που ζητήσατε δεν μπορεί να βρεθεί.', 'page:not_found:label' => 'Η σελίδα δεν βρέθηκε!', 'page:not_found_name' => 'Η σελίδα \':name\' δεν βρέθηκε', 'page:unsaved_label' => 'Μη αποθηκευμένες σελίδες', 'page:untitled' => 'Χωρίς Τίτλο', 'partial:delete_confirm_multiple' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε τα επιλεγμένα τμήματα;', 'partial:delete_confirm_single' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το τμήμα;', 'partial:invalid_name' => 'Μη έγκυρο όνομα τμήματος: :name.', 'partial:menu_label' => 'Τμήματα', 'partial:new' => 'Νέο Τμήμα', 'partial:no_list_records' => 'Δεν βρέθηκαν τμήματα', 'partial:not_found_name' => 'Το μερικό \':name\' δεν βρέθηκε.', 'partial:unsaved_label' => 'Μη αποθηκευμένα τμήματα', 'permissions:access_logs' => 'Προβολή των αρχείων καταγραφής του συστήματος', 'permissions:manage_assets' => 'Διαχείριση πόρων', 'permissions:manage_branding' => 'Προσαρμογή του back-end', 'permissions:manage_content' => 'Διαχείριση περιεχομένου', 'permissions:manage_layouts' => 'Διαχείριση διατάξεων', 'permissions:manage_mail_settings' => 'Διαχείριση ρυθμίσεων ηλεκτρονικού ταχυδρομείου', 'permissions:manage_mail_templates' => 'Διαχείριση προτύπων ηλεκτρονικού ταχυδρομείου', 'permissions:manage_media' => 'Διαχείριση μέσων', 'permissions:manage_other_administrators' => 'Διαχείριση άλλων διαχειριστών', 'permissions:manage_pages' => 'Διαχείριση σελίδων', 'permissions:manage_partials' => 'Διαχείριση τμημάτων', 'permissions:manage_software_updates' => 'Διαχείριση ενημερώσεων του λογισμικού', 'permissions:manage_system_settings' => 'Διαχείριση ρυθμίσεων συστήματος', 'permissions:manage_themes' => 'Διαχείριση θεμάτων', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => 'Προβολή του πίνακα ελέγχου', 'plugin:label' => 'Πρόσθετο', 'plugin:name:help' => 'Ονομάστε το πρόσθετο με τον μοναδικό κωδικό του. Για παράδειγμα RainLab.Blog', 'plugin:name:label' => 'Όνομα Πρόσθετου', 'plugin:unnamed' => 'Ανώνυμο πρόσθετο', 'plugins:disable_confirm' => 'Είστε σίγουροι;', 'plugins:disable_success' => 'Επιτυχημένη απενεργοποίηση αυτών των πρόσθετων.', 'plugins:disabled_help' => 'Τα πρόσθετα που είναι απενεργοποιημένα αγνοούνται από την εφαρμογή.', 'plugins:disabled_label' => 'Ανενεργό', 'plugins:enable_or_disable' => 'Ενεργοποίηση ή Απενεργοποίηση', 'plugins:enable_or_disable_title' => 'Ενεργοποίηση ή Απενεργοποίηση Πρόσθετων', 'plugins:enable_success' => 'Επιτυχημένη ενεργοποίηση αυτών των πρόσθετων.', 'plugins:frozen_help' => 'Τα πρόσθετα τα οποία είναι παγωμένα θα αγνοηθούν από την διαδικασία ενημέρωσης.', 'plugins:frozen_label' => 'Πάγωμα ενημερώσεων', 'plugins:install' => 'Εγκατάσταση πρόσθετων', 'plugins:install_products' => 'Εγκατάσταση προϊόντων', 'plugins:installed' => 'Εγκατεστημένα πρόσθετα', 'plugins:manage' => 'Διαχείριση πρόσθετων', 'plugins:no_plugins' => 'Δεν υπάρχουν εγκατεστημένα πρόσθετα από τo MarketPlace.', 'plugins:recommended' => 'Προτεινόμενα', 'plugins:refresh' => 'Ανανέωση', 'plugins:refresh_confirm' => 'Είστε σίγουροι;', 'plugins:refresh_success' => 'Επιτυχημένη ανανέωση αυτών των πρόσθετων στο σύστημα.', 'plugins:remove' => 'Αφαίρεση', 'plugins:remove_confirm' => 'Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτό το πρόσθετο;', 'plugins:remove_success' => 'Επιτυχημένη αφαίρεση αυτών των πρόσθετων από το σύστημα.', 'plugins:search' => 'αναζήτηση πρόσθετων για εγκατάσταση...', 'plugins:selected_amount' => 'Επιλεγμένα πρόσθετα', 'plugins:unknown_plugin' => 'Το πρόσθετο έχει αφαιρεθεί από το σύστημα.', 'project:attach' => 'Σύνδεση Project', 'project:detach' => 'Αποσύνδεση Project', 'project:detach_confirm' => 'Είστε σίγουροι ότι θέλετε να αποσυνδέσετε το Project σας;', 'project:id:help' => 'Πως να βρείτε το ID του Project σας', 'project:id:label' => 'Project ID', 'project:id:missing' => 'Παρακαλούμε καθορίστε το Project ID που θα χρησιμοποιήσετε.', 'project:name' => 'Project', 'project:none' => 'Κανένα', 'project:owner_label' => 'Ιδιοκτήτης', 'project:unbind_success' => 'Το Project αποσυνδέθηκε επιτυχώς.', 'relation:add' => 'Προσθήκη', 'relation:add_a_new' => 'Προσθήκη νέου :name', 'relation:add_name' => 'Προσθήκη :name', 'relation:add_selected' => 'Προσθήκη επιλεγμένου', 'relation:cancel' => 'Άκυρο', 'relation:close' => 'Κλείσιμο', 'relation:create' => 'Δημιουργία', 'relation:create_name' => 'Δημιουργία :name', 'relation:delete' => 'Διαγραφή', 'relation:delete_confirm' => 'Είστε σίγουροι;', 'relation:delete_name' => 'Διαγραφή :name', 'relation:help' => 'Κάντε κλικ πάνω σε ένα αντικείμενο για να προσθέσετε', 'relation:invalid_action_multi' => 'Αυτή η ενέργεια δεν μπορεί να εκτελεστεί σε μια πολλαπλή σχέση.', 'relation:invalid_action_single' => 'Αυτή η ενεργεία δεν μπορεί να εκτελεστεί σε μια μοναδική σχέση.', 'relation:link' => 'Σύνδεση', 'relation:link_a_new' => 'Σύνδεση ενός νέου :name ', 'relation:link_name' => 'Σύνδεση :name', 'relation:link_selected' => 'Σύνδεση του επιλεγμένου', 'relation:missing_config' => 'Η συμπεριφορά της σχέσης δεν έχει καμία ρύθμιση για το \':config\'.', 'relation:missing_definition' => 'Η συμπεριφορά της σχέσης δεν περιέχει ορισμό για το \':field\'.', 'relation:missing_model' => 'Η συμπεριφορά της σχέσης που χρησιμοποιήθηκε στην :class δεν έχει καθορισμένο μοντέλο.', 'relation:preview' => 'Προεπισκόπηση', 'relation:preview_name' => 'Προεπισκόπηση :name', 'relation:related_data' => 'Σχετικά :name δεδομένα', 'relation:remove' => 'Αφαίρεση', 'relation:remove_name' => 'Αφαίρεση :name', 'relation:unlink' => 'Αποσύνδεση', 'relation:unlink_confirm' => 'Είστε σίγουροι;', 'relation:unlink_name' => 'Αποσύνδεση :name', 'relation:update' => 'Ενημέρωση', 'relation:update_name' => 'Ενημέρωση :name', 'reorder:default_title' => 'Αναδιάταξη εγγραφών', 'reorder:no_records' => 'Δεν υπάρχουν διαθέσιμες εγγραφές για ταξινόμηση.', 'request_log:count' => 'Καταμέτρηση', 'request_log:empty_link' => 'Άδειασμα καταγραφής αιτήσεων', 'request_log:empty_loading' => 'Αδειάζει το αρχείο καταγραφής αιτήσεων', 'request_log:empty_success' => 'Επιτυχές άδειασμα του αρχείου καταγραφής αιτήσεων', 'request_log:hint' => 'Αυτό το αρχείο καταγραφής εμφανίζει μια λίστα από τις αιτήσεις στον περιηγητή που μπορεί να χρειάζονται προσοχή. Για παραδείγματα ένας επισκέπτης ανοίξει μια σελίδα στο CMS η οποία δεν μπορεί να βρεθεί, μια εγγραφή θα δημιουργηθεί με τον κωδικό κατάστασης 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'ID Αρχείου Καταγραφής', 'request_log:menu_description' => 'Εμφάνιση κακών ή ανακατευθυμένων αιτήσεων, όπως το \'Η σελίδα δεν βρέθηκε\' (404).', 'request_log:menu_label' => 'Καταγραφή Αιτήσεων', 'request_log:referer' => 'Παραπομπές', 'request_log:return_link' => 'Επιστροφή στην καταγραφή αιτήσεων', 'request_log:status_code' => 'Κατάσταση', 'request_log:url' => 'URL', 'server:connect_error' => 'Σφάλμα σύνδεσης στον διακομιστή.', 'server:file_corrupt' => 'Το αρχείο από τον διακομιστή είναι κατεστραμμένο.', 'server:file_error' => 'Ο διακομιστής απέτυχε να παραδώσει το πακέτο.', 'server:response_empty' => 'Κενή απάντηση από τον διακομιστή.', 'server:response_invalid' => 'Μη έγκυρη απάντηση από τον διακομιστή.', 'server:response_not_found' => 'Δεν μπόρεσε να βρεθεί ο διακομιστής ενημερώσεων.', 'settings:menu_label' => 'Ρυθμίσεις', 'settings:missing_model' => 'Λείπει από την σελίδα των ρυθμίσεων ο ορισμός του μοντέλου.', 'settings:not_found' => 'Δεν κατέστη δυνατόν να βρεθούν οι συγκεκριμένες ρυθμίσεις.', 'settings:return' => 'Επιστροφή στις ρυθμίσεις του συστήματος', 'settings:search' => 'Αναζήτηση', 'settings:update_success' => 'Οι ρυθμίσεις για το :name έχουν ενημερωθεί επιτυχώς.', 'sidebar:add' => 'Προσθήκη', 'sidebar:search' => 'Αναζήτηση...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Πελάτες', 'system:categories:events' => 'Εκδηλώσεις', 'system:categories:logs' => 'Αρχεία Καταγραφής', 'system:categories:mail' => 'Ηλεκτρονικό Ταχυδρομείο', 'system:categories:misc' => 'Διάφορα', 'system:categories:my_settings' => 'Οι Ρυθμίσεις Μου', 'system:categories:shop' => 'Κατάστημα', 'system:categories:social' => 'Κοινωνικό Δίκτυο', 'system:categories:system' => 'Σύστημα', 'system:categories:team' => 'Ομάδα', 'system:categories:users' => 'Χρήστες', 'system:menu_label' => 'Σύστημα', 'system:name' => 'Σύστημα', 'template:invalid_type' => 'Άγνωστος τύπος προτύπου.', 'template:not_found' => 'Το ζητούμενο πρότυπο δεν βρέθηκε.', 'template:saved' => 'Το πρότυπο έχει σωθεί επιτυχώς.', 'theme:activate_button' => 'Ενεργοποίηση', 'theme:active:not_found' => 'Δεν βρέθηκε το ενεργό θέμα.', 'theme:active:not_set' => 'Δεν έχει οριστεί το ενεργό θέμα.', 'theme:active_button' => 'Ενεργοποίηση', 'theme:author_label' => 'Δημιουργός', 'theme:author_placeholder' => 'Άτομο ή όνομα εταιρίας', 'theme:code_label' => 'Κωδικας', 'theme:code_placeholder' => 'Ένας μοναδικός κωδικός για το θέμα ο οποίος χρησιμοποιείται για διανομή.', 'theme:create_button' => 'Δημιουργία', 'theme:create_new_blank_theme' => 'Δημιουργία ενός νέου κενού θέματος', 'theme:create_theme_required_name' => 'Παρακαλούμε ορίστε ένα όνομα για το θέμα.', 'theme:create_theme_success' => 'Το θέμα δημιουργήθηκε επιτυχώς!', 'theme:create_title' => 'Δημιουργία θέματος', 'theme:customize_button' => 'Προσαρμογή', 'theme:customize_theme' => 'Προσαρμογή Θέματος', 'theme:default_tab' => 'Ιδιότητες', 'theme:delete_active_theme_failed' => 'Δεν μπορεί να διαγραφεί το ενεργό θέμα, προσπαθήστε να ενεργοποιήστε πρώτα εάν άλλο θέμα.', 'theme:delete_button' => 'Διαγραφή', 'theme:delete_confirm' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το θέμα; Αυτό δεν μπορεί να ανευρεθεί!', 'theme:delete_theme_success' => 'Επιτυχής διαγραφή θέματος!', 'theme:description_label' => 'Περιγραφή', 'theme:description_placeholder' => 'Περιγραφή θέματος', 'theme:dir_name_create_label' => 'Ο κατάλογος προορισμού του θέματος', 'theme:dir_name_invalid' => 'Το όνομα μπορεί να περιέχει μόνο ψηφιά, Λατινικά γράμματα και τα ακόλουθα σύμβολα: _-', 'theme:dir_name_label' => 'Όνομα καταλόγου', 'theme:dir_name_taken' => 'Ο επιθυμητός κατάλογος για το θέμα υπάρχει ήδη.', 'theme:duplicate_button' => 'Διπλότυπο', 'theme:duplicate_theme_success' => 'Επιτυχής δημιουργία του διπλοτύπου θέματος!', 'theme:duplicate_title' => 'Διπλότυπο θέματος', 'theme:edit:not_found' => 'Δεν βρέθηκε το θέμα επεξεργασίας.', 'theme:edit:not_match' => 'Το αντικείμενο το οποίο προσπαθείτε να προσπελάσετε δεν ανήκει στο θέμα το οποίο επεξεργάζεστε. Παρακαλούμε φορτώστε ξανά την σελίδα.', 'theme:edit:not_set' => 'Δεν έχει οριστεί το θέμα επεξεργασίας.', 'theme:edit_properties_button' => 'Επεξεργασία ιδιοτήτων', 'theme:edit_properties_title' => 'Θέμα', 'theme:export_button' => 'Εξαγωγή', 'theme:export_folders_comment' => 'Παρακαλούμε επιλέξτε τους καταλόγους του θέματος που θέλετε να εξάγετε', 'theme:export_folders_label' => 'Κατάλογοι', 'theme:export_title' => 'Εξαγωγή θέματος', 'theme:find_more_themes' => 'Εύρεση περισσοτέρων θεμάτων', 'theme:homepage_label' => 'Αρχική σελίδα', 'theme:homepage_placeholder' => 'URL Ιστοσελίδας', 'theme:import_button' => 'Εισαγωγή', 'theme:import_folders_comment' => 'Παρακαλούμε επιλέξτε τους καταλόγους του θέματος που θέλετε να εισαγάγετε', 'theme:import_folders_label' => 'Κατάλογοι', 'theme:import_overwrite_comment' => 'Απόεπιλέξτε αυτό το πλαίσιο ελέγχου για την εισαγωγή μόνο των νέων αρχείων', 'theme:import_overwrite_label' => 'Αντικαταστήσετε τα υπάρχοντα αρχεία', 'theme:import_theme_success' => 'Επιτυχής εισαγωγή του θέματος!', 'theme:import_title' => 'Εισαγωγή θέματος', 'theme:import_uploaded_file' => 'Αρχείο αρχειοθέτησης θέματος.', 'theme:label' => 'Θέμα', 'theme:manage_button' => 'Διαχείριση', 'theme:manage_title' => 'Διαχείριση θέματος', 'theme:name:help' => 'Ονομάστε το θέμα με τον μοναδικό κωδικό του. Για παράδειγμα, RainLab.Vanilla', 'theme:name:label' => 'Όνομα Θέματος', 'theme:name_create_placeholder' => 'Νέο όνομα θέματος', 'theme:name_label' => 'Όνομα', 'theme:new_directory_name_comment' => 'Δώστε ένα νέο όνομα καταλόγου για το διπλότυπο θέμα.', 'theme:new_directory_name_label' => 'Κατάλογος θέματος', 'theme:not_found_name' => 'Το θέμα \':name\' δεν βρέθηκε.', 'theme:return' => 'Επιστροφή στην λίστα θεμάτων', 'theme:save_properties' => 'Αποθήκευση ιδιοτήτων', 'theme:saving' => 'Αποθήκευση θέματος...', 'theme:settings_menu' => 'Θέμα Front-End', 'theme:settings_menu_description' => 'Προεπισκόπηση των εγκατεστημένων θεμάτων και επιλογή του ενεργού θέματος.', 'theme:theme_label' => 'Θέμα', 'theme:theme_title' => 'Θέματα', 'theme:unnamed' => 'Ανώνυμο θέμα', 'themes:install' => 'Εγκατάσταση θεμάτων', 'themes:installed' => 'Εγκατεστημένο θέματα', 'themes:no_themes' => 'Δεν υπάρχουν εγκατεστημένα θέματα από το MarketPlace.', 'themes:recommended' => 'Προτεινόμενα', 'themes:remove_confirm' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το θέμα;', 'themes:search' => 'αναζήτηστε θέματα για να τα εγκαταστήσετε...', 'tooltips:preview_website' => 'Προεπισκόπηση ιστοσελίδας', 'updates:check_label' => 'Έλεγχος για ενημερώσεις', 'updates:core_build' => 'Έκδοση :build', 'updates:core_build_help' => 'Η τελευταία έκδοση είναι διαθέσιμη.', 'updates:core_current_build' => 'Τρέχουσα έκδοση', 'updates:core_downloading' => 'Κατέβασμα αρχείων εφαρμογής', 'updates:core_extracting' => 'Ξεπακετάρισμα αρχείων εφαρμογής', 'updates:details_author' => 'Δημιουργός', 'updates:details_current_version' => 'Τρέχουσα έκδοση', 'updates:details_readme' => 'Οδηγιες Χρήσης', 'updates:details_readme_missing' => 'Δεν παρέχονται οδηγίες χρήσης.', 'updates:details_title' => 'Λεπτομέρειες πρόσθετου', 'updates:details_upgrades' => 'Οδηγός Αναβάθμισης', 'updates:details_upgrades_missing' => 'Δεν παρέχονται οδηγίες αναβάθμισης', 'updates:details_view_homepage' => 'Εμφάνιση αρχικής σελίδας', 'updates:disabled' => 'Ανενεργό', 'updates:force_label' => 'Εξανάγκασε την ενημέρωση', 'updates:found:help' => 'Κάντε κλικ στο Ενημέρωση Λογισμικού για να ξεκινήσει η διαδικασία της ενημέρωσης.', 'updates:found:label' => 'Βρέθηκαν νέες ενημερώσεις!', 'updates:important_action:confirm' => 'Επιβεβαίωση ενημέρωσης', 'updates:important_action:empty' => 'Επιλογή ενέργειας', 'updates:important_action:ignore' => 'Παράκαμψη αυτού του πρόσθετου (πάντα)', 'updates:important_action:skip' => 'Παράκαμψη αυτού του πρόσθετου (μόνο μια φορά)', 'updates:important_action_required' => 'Απαιτητέ ενέργεια', 'updates:important_alert_text' => 'Κάποιες ενημερώσεις χρειάζονται την προσοχή σας.', 'updates:important_view_guide' => 'Εμφάνιση οδηγού αναβάθμισης', 'updates:menu_description' => 'Ενημερώνει το σύστημα, διαχειρίζεται και εγκαθιστά πρόσθετα και θέματα.', 'updates:menu_label' => 'Ενημερώσεις', 'updates:name' => 'Ενημέρωση λογισμικού', 'updates:none:help' => 'Δεν βρέθηκαν νέες ενημερώσεις.', 'updates:none:label' => 'Καμία ενημέρωση', 'updates:plugin_author' => 'Δημιουργός', 'updates:plugin_code' => 'Κώδικας', 'updates:plugin_current_version' => 'Τρέχουσα έκδοση', 'updates:plugin_description' => 'Περιγραφή', 'updates:plugin_downloading' => 'Κατέβασμα πρόσθετου: :name', 'updates:plugin_extracting' => 'Ξεπακετάρισμα πρόσθετου: :name', 'updates:plugin_name' => 'Όνομα', 'updates:plugin_version' => 'Έκδοση', 'updates:plugin_version_none' => 'Νέο πρόσθετο', 'updates:plugins' => 'Πρόσθετα', 'updates:retry_label' => 'Προσπαθήστε ξανά', 'updates:return_link' => 'Επιστροφή στις ενημερώσεις του συστήματος', 'updates:theme_downloading' => 'Κατέβασμα θέματος: :name', 'updates:theme_extracting' => 'Ξεπακετάρισμα θέματος: :name', 'updates:theme_new_install' => 'Εγκατάσταση νέου θέματος.', 'updates:themes' => 'Θέματα', 'updates:title' => 'Διαχείριση Ενημερώσεων', 'updates:update_completing' => 'Ολοκλήρωση διαδικασίας ενημέρωσης', 'updates:update_failed_label' => 'Η ενημέρωση απέτυχε', 'updates:update_label' => 'Ενημέρωση Λογισμικού', 'updates:update_loading' => 'Φόρτωση διαθέσιμων ενημερώσεων...', 'updates:update_success' => 'Η διαδικασία της ενημέρωσης εκτελέστηκε επιτυχώς.', 'user:account' => 'Λογαριασμός', 'user:allow' => 'Επέτρεψε', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον διαχειριστή;', 'user:deny' => 'Απαγόρευσε', 'user:email' => 'e-Mail', 'user:first_name' => 'Όνομα', 'user:full_name' => 'Ονοματεπώνυμο', 'user:group:code_comment' => 'Συμπληρώστε ένα μοναδικό κωδικό αν θέλετε να έχετε πρόσβαση σε αυτόν μέσω του API.', 'user:group:code_field' => 'Κώδικας', 'user:group:delete_confirm' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτήν την ομάδα;', 'user:group:description_field' => 'Περιγραφή', 'user:group:is_new_user_default_field' => 'Προεπιλεγμένη προσθήκη νέων διαχειριστών σε αυτήν την ομάδα.', 'user:group:list_title' => 'Διαχείριση Ομάδων', 'user:group:menu_label' => 'Ομάδες', 'user:group:name' => 'Ομάδες', 'user:group:name_field' => 'Όνομα', 'user:group:new' => 'Νέα Ομάδα', 'user:group:return' => 'Επιστροφή στην λίστα των ομάδων', 'user:group:users_count' => 'Χρήστες', 'user:groups' => 'Ομάδες', 'user:groups_comment' => 'Καθορίστε σε ποιες ομάδες ανήκει αυτός ο λογαριασμός.', 'user:inherit' => 'Κληρονόμησε', 'user:last_name' => 'Επώνυμο', 'user:list_title' => 'Διαχείριση Διαχειριστών', 'user:login' => 'Λογαριασμός', 'user:menu_description' => 'Διευθέτηση των διαχειριστών, των ομάδων και των δικαιωμάτων του back-end', 'user:menu_label' => 'Διαχειριστές', 'user:name' => 'Διαχειριστής', 'user:new' => 'Νέος Διαχειριστής', 'user:password' => 'Κωδικός', 'user:password_confirmation' => 'Επιβεβαίωση Κωδικού', 'user:permissions' => 'Δικαιώματα', 'user:preferences:not_authenticated' => 'Δεν υπάρχει κανένας πιστοποιημένος χρήστης για να φορτωθούν ή να σωθούν οι ρυθμίσεις του.', 'user:return' => 'Επιστροφή στην λίστα των διαχειριστών', 'user:send_invite' => 'Αποστολή πρόσκλησης μέσω email', 'user:send_invite_comment' => 'Αποστέλλει ένα μήνυμα καλωσορίσματος το οποίο περιέχει τις πληροφορίες σύνδεσης και του κωδικού.', 'user:superuser' => 'Υπέρ-Χρήστης', 'user:superuser_comment' => 'Εκχώρηση σε αυτόν τον λογαριασμό απεριόριστη πρόσβαση σε όλες τις περιοχές.', 'validation:accepted' => 'Το :attribute πρέπει να γίνει αποδεκτό.', 'validation:active_url' => 'Το :attribute δεν είναι ένα έγκυρο URL.', 'validation:after' => 'Η :attribute πρέπει να είναι μια ημερομηνία μετρά την :date.', 'validation:alpha' => 'Το :attribute πρέπει να περιέχει μόνο γράμματα.', 'validation:alpha_dash' => 'Το :attribute πρέπει να περιέχει μόνο γράμματα, νούμερα, και παύλες.', 'validation:alpha_num' => 'Το :attribute πρέπει να περιέχει μόνο γράμματα και νούμερα.', 'validation:array' => 'Το :attribute πρέπει να είναι ένας πίνακας.', 'validation:before' => 'Η :attribute πρέπει να είναι μια ημερομηνία πριν την :date.', 'validation:between:array' => 'Ο :attribute πρέπει να εχει μεταξύ :min - :max αντικείμενα.', 'validation:between:file' => 'Το :attribute πρέπει να είναι μεταξύ :min - :max kilobytes.', 'validation:between:numeric' => 'Το :attribute πρέπει να είναι μεταξύ :min - :max.', 'validation:between:string' => 'Το :attribute πρέπει να είναι μεταξύ :min - :max χαρακτήρες.', 'validation:confirmed' => 'Η επαλήθευση του :attribute δεν ταυτίζεται.', 'validation:date' => 'Η :attribute δεν είναι μια έγκυρη ημερομηνία.', 'validation:date_format' => 'Η :attribute δεν ταυτίζεται με την μορφοποίηση :format', 'validation:different' => 'Το :attribute και το :other πρέπει να είναι διαφορετικά.', 'validation:digits' => 'Το :attribute πρέπει να είναι :digits ψηφία.', 'validation:digits_between' => 'Το :attribute πρέπει να είναι μεταξύ :min και :max ψηφία.', 'validation:email' => 'Η μορφή του :attribute είναι μη έγκυρη.', 'validation:exists' => 'Η επιλεγμένη :attribute είναι μη έγκυρη.', 'validation:extensions' => 'Το :attribute πρέπει να έχει μια επέκταση από: :values.', 'validation:image' => 'Η :attribute πρέπει να είναι εικόνα.', 'validation:in' => 'Η επιλεγμένη :attribute είναι μη έγκυρη.', 'validation:integer' => 'Ο :attribute πρέπει να είναι ένας ακέραιος αριθμός.', 'validation:ip' => 'Η :attribute πρέπει να είναι μια έγκυρη IP διεύθυνση.', 'validation:max:array' => 'Το :attribute δεν πρέπει να είναι έχει περισσότερα από :max αντικείμενα.', 'validation:max:file' => 'Το :attribute δεν πρέπει να είναι μεγαλύτερο από :max kilobytes.', 'validation:max:numeric' => 'Το :attribute δεν πρέπει να είναι μεγαλύτερο από :max.', 'validation:max:string' => 'Το :attribute δεν πρέπει να είναι μεγαλύτερο από :max χαρακτήρες.', 'validation:mimes' => 'Το :attribute πρέπει να είναι ένα αρχείο με τύπο: :values.', 'validation:min:array' => 'Το :attribute πρέπει να έχει το λιγότερο :min αντικείμενα.', 'validation:min:file' => 'Το :attribute πρέπει να είναι το λιγότερο :min kilobytes.', 'validation:min:numeric' => 'Το :attribute πρέπει να είναι το λιγότερο :min.', 'validation:min:string' => 'Το :attribute πρέπει να είναι το λιγότερο :min χαρακτήρες.', 'validation:not_in' => 'Το επιλεγμένο :attribute είναι μη έγκυρο.', 'validation:numeric' => 'Το :attribute πρέπει να είναι ένας αριθμός.', 'validation:regex' => 'Η μορφοποίηση του :attribute είναι μη έγκυρη.', 'validation:required' => 'Το πεδίο :attribute απαιτείται.', 'validation:required_if' => 'Το πεδίο :attribute απαιτείται όταν το :other είναι :value.', 'validation:required_with' => 'Το πεδίο :attribute απαιτείται όταν οι :values είναι δηλωμένες.', 'validation:required_without' => 'Το πεδίο :attribute απαιτείται όταν οι :values δεν είναι δηλωμένες. ', 'validation:same' => 'Το :attribute και το :other δεν ταυτίζονται.', 'validation:size:array' => 'Το :attribute πρέπει να είναι :size αντικείμενα.', 'validation:size:file' => 'Το :attribute πρέπει να είναι :size kilobytes.', 'validation:size:numeric' => 'Το :attribute πρέπει να είναι :size.', 'validation:size:string' => 'Το :attribute πρέπει να είναι :size χαρακτήρες.', 'validation:unique' => 'Η :attribute έχει ήδη χρησιμοποιηθεί.', 'validation:url' => 'Η :attribute είναι μη έγκυρη.', 'warnings:extension' => 'Η επέκταση :name της PHP δεν έχει εγκατασταθεί. Παρακαλούμε εγκαταστήστε την βιβλιοθήκη και ενεργοποιήστε την επέκταση.', 'warnings:permissions' => 'Ο φάκελος :name ή οι υποφάκελοι του δεν έχουν δικαίωμα εγγραφής για την PHP. Παρακαλούμε ρυθμίστε τα κατάλληλα δικαιώματα στον webserver για αυτό τον καταλογο.', 'warnings:tips' => 'Συμβουλές ρύθμισης του συστήματος', 'warnings:tips_description' => 'Υπάρχουν ζητήματα για τα οποία πρέπει να δώσετε προσοχή με σκοπό να ρυθμιστεί το σύστημα ορθά.', 'widget:not_bound' => 'Το Widget με το όνομα της κλάσης \':name\' δεν έχει βρεθεί στον χειριστή.', 'widget:not_registered' => 'Δεν έχει καθοριστεί το όνομα \':name\' της κλάσης του Widget', 'zip:extract_failed' => 'Δεν κατέστη δυνατή η αποσυμπίεση του αρχείου του πυρήνα \':file\'.']);
示例#22
0
文件: fr.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Date & heure', 'access_log:email' => 'Adresse e-mail', 'access_log:first_name' => 'Prénom', 'access_log:hint' => 'Ce journal affiche la liste des accès à l’administration par les administrateurs. Les données sont sauvegardées pendant :days jours.', 'access_log:ip_address' => 'Adresse IP', 'access_log:last_name' => 'Nom', 'access_log:login' => 'Identifiant', 'access_log:menu_description' => 'Affiche la liste des utilisateurs s’étant connectés à l’administration avec succès.', 'access_log:menu_label' => 'Journal des accès', 'account:apply' => 'Appliquer', 'account:cancel' => 'Annuler', 'account:delete' => 'Supprimer', 'account:email_placeholder' => 'adresse e-mail', 'account:enter_email' => 'Saisir votre adresse e-mail', 'account:enter_login' => 'Saisir votre identifiant', 'account:enter_new_password' => 'Saisir votre nouveau mot de passe', 'account:forgot_password' => 'Mot de passe oublié ?', 'account:login' => 'OK', 'account:login_placeholder' => 'identifiant', 'account:ok' => 'OK', 'account:password_placeholder' => 'mot de passe', 'account:password_reset' => 'Réinitialiser le mot de passe', 'account:reset' => 'Réinitialiser', 'account:reset_error' => 'Données de réinitialisation du mot de passe invalides. Veuillez réessayer !', 'account:reset_fail' => 'Réinitialisation du mot de passe impossible !', 'account:reset_success' => 'Mot de passe réinitialisé avec succès. Vous pouvez maintenant vous connecter.', 'account:restore' => 'Restaurer', 'account:restore_error' => 'L’identifiant \\":login\\" ne correspond à aucun utilisateur', 'account:restore_success' => 'Un e-mail contenant les instructions de réinitialisation du mot de passe a été envoyé à l’adresse e-mail de votre compte.', 'account:sign_out' => 'Déconnexion', 'ajax_handler:invalid_name' => 'Nom du gestionnaire AJAX invalide : :name.', 'ajax_handler:not_found' => 'Le gestionnaire AJAX \\":name\\" est introuvable.', 'alert:cancel_button_text' => 'Annuler', 'alert:confirm_button_text' => 'OK', 'app:name' => 'October CMS', 'app:tagline' => 'Retourner à l’essentiel', 'asset:already_exists' => 'Un fichier ou un répertoire avec le même nom existe déjà', 'asset:create_directory' => 'Créer un répertoire', 'asset:create_file' => 'Créer un fichier', 'asset:delete' => 'Supprimer', 'asset:destination_not_found' => 'Le répertoire de destination est introuvable', 'asset:directory_name' => 'Nom du répertoire', 'asset:directory_popup_title' => 'Nouveau répertoire', 'asset:drop_down_add_title' => 'Ajouter…', 'asset:drop_down_operation_title' => 'Action…', 'asset:error_deleting_dir' => 'Erreur lors de la suppression du répertoire :name.', 'asset:error_deleting_dir_not_empty' => 'Erreur lors de la suppression du répertoire :name. Le répertoire n’est pas vide.', 'asset:error_deleting_directory' => 'Erreur lors de la suppression du répertoire d’origine :dir', 'asset:error_deleting_file' => 'Erreur lors de la suppression du fichier :name.', 'asset:error_moving_directory' => 'Erreur lors du déplacement du répertoire :dir', 'asset:error_moving_file' => 'Erreur lors du déplacement du fichier :file', 'asset:error_renaming' => 'Erreur pour renommer le fichier ou le répertoire', 'asset:error_uploading_file' => 'Erreur lors du téléchargement du fichier \\":name\\" : :error', 'asset:file_not_valid' => 'Fichier invalide', 'asset:invalid_name' => 'Le nom doit contenir uniquement des chiffres, des lettres, des espaces et les symboles suivants : ._-', 'asset:invalid_path' => 'Le chemin doit contenir uniquement des chiffres, des lettres, des espaces et les symboles suivants : ._-/', 'asset:menu_label' => 'Assets', 'asset:move' => 'Déplacer', 'asset:move_button' => 'Déplacer', 'asset:move_destination' => 'Répertoire de destination', 'asset:move_please_select' => 'Faire une sélection', 'asset:move_popup_title' => 'Déplacer les assets', 'asset:name_cant_be_empty' => 'Le nom ne peut être vide', 'asset:new' => 'Nouveau fichier', 'asset:original_not_found' => 'Le fichier original ou son répertoire est introuvable', 'asset:path' => 'Chemin', 'asset:rename' => 'Renommer', 'asset:rename_new_name' => 'Nouveau nom', 'asset:rename_popup_title' => 'Renommer', 'asset:select' => 'Sélectionner', 'asset:select_destination_dir' => 'Veuillez sélectionner un répertoire de destination', 'asset:selected_files_not_found' => 'Les fichiers sélectionnés sont introuvables', 'asset:too_large' => 'Le fichier téléchargé est trop grand. La taille maximum autorisée est de :max_size', 'asset:type_not_allowed' => 'Les types de fichiers autorisés sont les suivants : :allowed_types', 'asset:unsaved_label' => 'Asset(s) non sauvegardé(s)', 'asset:upload_files' => 'Télécharger un fichier', 'auth:title' => 'Zone d’administration', 'backend_preferences:locale' => 'Langue', 'backend_preferences:locale_comment' => 'Choisir une langue.', 'backend_preferences:menu_description' => 'Gérer les préférences de votre compte telle que la langue utilisée.', 'backend_preferences:menu_label' => 'Préférences d’administration', 'behavior:missing_property' => 'La classe :class doit définir la propriété $:property utilisée par le comportement (behavior) :behavior.', 'branding:app_name' => 'Nom de l’application', 'branding:app_name_description' => 'Ce nom est affiché comme titre dans l’interface d’administration.', 'branding:app_tagline' => 'Slogan de l’application', 'branding:app_tagline_description' => 'Ce slogan est affiché sur la page d’inscription à l’interface d’administration.', 'branding:brand' => 'Marque', 'branding:colors' => 'Couleurs', 'branding:custom_stylesheet' => 'Feuille de style personnalisée (CSS)', 'branding:logo' => 'Logo', 'branding:logo_description' => 'Envoyer un logo personnalisé pour l’utiliser dans l’interface d’administration.', 'branding:menu_description' => 'Personnaliser l’interface d’administration comme le nom, les couleurs ou le logo.', 'branding:menu_label' => 'Personnalisation de l’interface d’administration', 'branding:primary_dark' => 'Primaire (Foncée)', 'branding:primary_light' => 'Primaire (Claire)', 'branding:secondary_dark' => 'Secondaire (Foncée)', 'branding:secondary_light' => 'Secondaire (Claire)', 'branding:styles' => 'Styles', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Les modèles ont été supprimés avec succès : :count.', 'cms_object:error_creating_directory' => 'Erreur lors de la création du répertoire :name', 'cms_object:error_deleting' => 'Erreur lors de la suppression du modèle \\":name\\".', 'cms_object:error_saving' => 'Erreur lors de l’enregistrement du fichier \\":name\\".', 'cms_object:file_already_exists' => 'Le fichier \\":name\\" existe déjà.', 'cms_object:file_name_required' => 'Le nom du fichier est requis.', 'cms_object:invalid_file' => 'Nom de fichier invalide : :name. Les noms de fichiers ne peuvent contenir que des caractères alphanumériques, des tiret bas, des tirets et des points. Voir ces exemples de noms de fichiers valides : page.htm, page, subdirectory/page', 'cms_object:invalid_file_extension' => 'Extension de fichier invalide : :invalid. Les extensions autorisées sont : :allowed.', 'cms_object:invalid_property' => 'L’attribut \\":name\\" ne peut pas être défini', 'combiner:not_found' => 'Le fichier combinateur \':name\' est introuvable.', 'component:alias' => 'Alias', 'component:alias_description' => 'Nom unique fourni lors de l’utilisation du composant sur une page ou une maquette.', 'component:invalid_request' => 'Le modèle ne peut être enregistré puisque les données d’un composant sont invalides.', 'component:menu_label' => 'Composants', 'component:method_not_found' => 'Le composant \\":name\\" ne contient pas de méthode \\":method\\".', 'component:no_description' => 'Aucune description n’a été fournie', 'component:no_records' => 'Aucun composant n’a été trouvé', 'component:not_found' => 'Le composant \\":name\\" est introuvable.', 'component:unnamed' => 'Sans nom', 'component:validation_message' => 'Les alias du composant sont requis et ne peuvent contenir uniquement des symboles latins, des chiffres et des tirets bas. Les alias doivent commencer par un symbole latin.', 'config:not_found' => 'Impossible de trouver le fichier de configuration :file défini dans :location.', 'config:required' => 'La configuration utilisée dans :location doit fournir une valeur \':property\'.', 'content:delete_confirm_multiple' => 'Confirmer la suppression des fichiers de contenu ou répertoires sélectionnés ?', 'content:delete_confirm_single' => 'Confirmer la suppression de ce fichier de contenu ?', 'content:menu_label' => 'Contenu', 'content:new' => 'Nouveau fichier de contenu', 'content:no_list_records' => 'Aucun fichier de contenu n’a été trouvé', 'content:not_found_name' => 'Le fichier de contenu \\":name\\" est introuvable.', 'content:unsaved_label' => 'Contenu non sauvegardé', 'dashboard:add_widget' => 'Ajouter un Widget', 'dashboard:columns' => '{1} colonne|[2,Inf] colonnes', 'dashboard:full_width' => 'Plein écran', 'dashboard:menu_label' => 'Tableau de bord', 'dashboard:status:maintenance' => 'en cours de maintenance', 'dashboard:status:online' => 'en ligne', 'dashboard:status:update_available' => '{0} mise à jour disponible !|{1} mise à jour disponible !|[2,Inf] mises à jour disponibles !', 'dashboard:status:widget_title_default' => 'État du système', 'dashboard:widget_columns_description' => 'La largeur du Widget doit être comprise entre 1 et 10.', 'dashboard:widget_columns_error' => 'Veuillez définir la largeur du Widget avec un nombre compris entre 1 et 10.', 'dashboard:widget_columns_label' => 'Largeur en nombre de colonnes :columns', 'dashboard:widget_inspector_description' => 'Configurer le Widget', 'dashboard:widget_inspector_title' => 'Configuration du Widget', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'Placer le Widget sur une nouvelle ligne.', 'dashboard:widget_new_row_label' => 'Forcer l’affichage sur une nouvelle ligne', 'dashboard:widget_title_error' => 'Le titre du Widget est obligatoire.', 'dashboard:widget_title_label' => 'Titre du Widget', 'dashboard:widget_width' => 'Taille', 'directory:create_fail' => 'Impossible de créer le répertoire : :name', 'editor:auto_closing' => 'Fermer Automatiquement les tags et les caractères spéciaux', 'editor:code' => 'Code', 'editor:code_folding' => 'Masquage du code', 'editor:content' => 'Contenu', 'editor:description' => 'Description', 'editor:enter_fullscreen' => 'Activer le mode plein écran', 'editor:exit_fullscreen' => 'Annuler le mode plein écran', 'editor:filename' => 'Nom du fichier', 'editor:font_size' => 'Taille de la police', 'editor:hidden' => 'Caché', 'editor:hidden_comment' => 'Les pages cachées sont seulement accessibles aux administrateurs connectés.', 'editor:highlight_active_line' => 'Sélectionner la ligne active', 'editor:layout' => 'Maquette', 'editor:markup' => 'Balisage', 'editor:menu_description' => 'Personnaliser la configuration de l’éditeur de code, telle que la taille de la police ou la coloration syntaxique.', 'editor:menu_label' => 'Préférences de l’éditeur de code', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta Description', 'editor:meta_title' => 'Meta Titre', 'editor:new_title' => 'Nouveau titre de la page', 'editor:preview' => 'Aperçu', 'editor:settings' => 'Configuration', 'editor:show_gutter' => 'Afficher les numéros de ligne', 'editor:show_invisibles' => 'Afficher les caractères invisibles', 'editor:tab_size' => 'Taille de la tabulation', 'editor:theme' => 'Coloration syntaxique', 'editor:title' => 'Titre', 'editor:url' => 'Adresse URL', 'editor:use_hard_tabs' => 'Indentation par tabulation', 'editor:word_wrap' => 'Retour à la ligne', 'event_log:created_at' => 'Date et heure', 'event_log:empty_link' => 'Purger le journal des évènements', 'event_log:empty_loading' => 'Purge du journal des évènements…', 'event_log:empty_success' => 'Le journal des évènements a été purgé avec succès.', 'event_log:hint' => 'Ce journal affiche une liste des erreurs potentielles de l’application, telles que les exceptions et les informations de débogage.', 'event_log:id' => 'ID', 'event_log:id_label' => 'ID de l’évènement', 'event_log:level' => 'Niveau', 'event_log:menu_description' => 'Affiche les évènements des journaux systèmes avec leur date et les détails.', 'event_log:menu_label' => 'Journal des évènements', 'event_log:message' => 'Message', 'event_log:return_link' => 'Retour au journal des évènements', 'field:invalid_type' => 'Type de champ invalide :type.', 'field:options_method_not_exists' => 'La classe modèle :model doit définir une méthode :method() renvoyant des options pour le champ de formulaire \\":field\\".', 'file:create_fail' => 'Impossible de créer le fichier : :name', 'fileupload:attachment' => 'Pièce jointe', 'fileupload:attachment_url' => 'Adresse URL du fichier joint', 'fileupload:default_prompt' => 'Cliquer sur %s ou déposer un fichier ici pour le télécharger', 'fileupload:description_label' => 'Description', 'fileupload:help' => 'Ajouter un titre et une description pour cette pièce jointe.', 'fileupload:remove_confirm' => 'Confirmer l’action ?', 'fileupload:remove_file' => 'Supprimer le fichier', 'fileupload:title_label' => 'Titre', 'fileupload:upload_error' => 'Erreur durant le téléchargement', 'fileupload:upload_file' => 'Télécharger le fichier', 'filter:all' => 'tous', 'form:action_confirm' => 'Confirmer l’action ?', 'form:add' => 'Ajouter', 'form:apply' => 'Appliquer', 'form:behavior_not_ready' => 'Le formulaire n’a pas encore été initialisé, vérifier que la méthode d’appel de initForm() a été soumise au contrôleur.', 'form:cancel' => 'Annuler', 'form:close' => 'Fermer', 'form:complete' => 'Complet', 'form:concurrency_file_changed_description' => 'Durant votre modification de ce fichier un autre utilisateur a modifié celui-ci sur le disque. Il est possible de charger à nouveau le fichier depuis le disque (sans prendre en compte vos modifications) ou d’écraser ce fichier avec vos propres modifications.', 'form:concurrency_file_changed_title' => 'Le fichier à été modifié', 'form:confirm' => 'Confirmer', 'form:confirm_tab_close' => 'Confirmer la fermeture de cet onglet ? Les modifications réalisées seront perdues.', 'form:create' => 'Créer', 'form:create_and_close' => 'Créer et fermer', 'form:create_success' => ':name a été créé avec succès', 'form:create_title' => 'Nouveau :name', 'form:creating' => 'Création en cours…', 'form:creating_name' => 'Création de :name en cours…', 'form:delete' => 'Supprimer', 'form:delete_row' => 'Supprimer une ligne', 'form:delete_success' => ':name a été supprimé avec succès', 'form:deleting' => 'Suppression en cours…', 'form:deleting_name' => 'Suppression de :name en cours…', 'form:field_off' => 'Off', 'form:field_on' => 'On', 'form:insert_row' => 'Insérer une ligne', 'form:missing_definition' => 'Le formulaire utilisé n’a pas de champ pour \\":field\\".', 'form:missing_id' => 'L’ID de l’enregistrement du formulaire n’est pas précisé.', 'form:missing_model' => 'Le formulaire utilisé dans la classe :class n’a pas de modèle défini.', 'form:not_found' => 'Aucun enregistrement ne correspond a l’ID :id.', 'form:ok' => 'OK', 'form:or' => 'ou', 'form:preview_no_files_message' => 'Les fichiers ne sont pas envoyés.', 'form:preview_no_record_message' => 'Il n’y a aucun enregistrement sélectionné.', 'form:preview_title' => 'Aperçu :name', 'form:reload' => 'Recharger', 'form:reset_default' => 'Restaurer les valeurs par défaut', 'form:resetting' => 'Restauration', 'form:resetting_name' => 'Restauration de :name', 'form:save' => 'Enregistrer', 'form:save_and_close' => 'Enregistrer et fermer', 'form:saving' => 'Enregistrement en cours…', 'form:saving_name' => 'Enregistrement de :name en cours…', 'form:select' => 'Sélectionner', 'form:select_all' => 'tout', 'form:select_none' => 'aucun', 'form:select_placeholder' => 'Sélectionner une valeur', 'form:undefined_tab' => 'Divers', 'form:update_success' => ':name a été modifié avec succès', 'form:update_title' => 'Modifier :name', 'install:install_completing' => 'Fin du processus d’installation', 'install:install_success' => 'Le plugin a été installé avec succès.', 'install:missing_plugin_name' => 'Saisir le nom d’un plugin à installer.', 'install:missing_theme_name' => 'Saisir le nom d’un thème à installer.', 'install:plugin_label' => 'Installer un plugin', 'install:project_label' => 'Attacher un projet', 'install:theme_label' => 'Installer un thème', 'layout:delete_confirm_multiple' => 'Confirmer la suppression des maquettes sélectionnées ?', 'layout:delete_confirm_single' => 'Confirmer la suppression de cette maquette ?', 'layout:menu_label' => 'Maquettes', 'layout:new' => 'Nouvelle maquette', 'layout:no_list_records' => 'Aucune maquette n’a été trouvée', 'layout:not_found_name' => 'La maquette \\":name\\" est introuvable', 'layout:unsaved_label' => 'Maquette(s) non sauvegardée(s)', 'list:behavior_not_ready' => 'La liste utilisée n’a pas été initialisée, vérifier que la méthode d’appel de makeLists() a été soumise au contrôleur.', 'list:column_switch_false' => 'Non', 'list:column_switch_true' => 'Oui', 'list:default_title' => 'Liste', 'list:delete_selected' => 'Supprimer la sélection', 'list:delete_selected_confirm' => 'Confirmer la suppression des enregistrements sélectionnés ?', 'list:delete_selected_empty' => 'Il n’y a aucun enregistrement à supprimer', 'list:delete_selected_success' => 'Les enregistrements ont bien été supprimés.', 'list:invalid_column_datetime' => 'La valeur de la colonne \\":column\\" n’est pas un objet DateTime, il y a t-il une référence manquante de \\$dates dans le modèle ?', 'list:loading' => 'Chargement…', 'list:missing_column' => 'Il n’y a pas de définition pour la colonne :columns.', 'list:missing_columns' => 'La liste utilisée dans la classe :class n’a pas de colonne de liste définie.', 'list:missing_definition' => 'La liste utilisée ne contient de pas de colonne pour le champ \\":field\\".', 'list:missing_model' => 'La liste utilisée dans la classe :class n’a pas de modèle défini.', 'list:next_page' => 'Page suivante', 'list:no_records' => 'Il n’y a aucun résultat dans cette vue.', 'list:pagination' => 'Enregistrements affichés: :from-:to sur :total', 'list:prev_page' => 'Page précédente', 'list:records_per_page' => 'Nombre d’enregistrements par page', 'list:records_per_page_help' => 'Choisir le nombre d’enregistrements à afficher. Note : un nombre d’enregistrements trop élevé sur une seule page peut réduire les performances.', 'list:search_prompt' => 'Rechercher…', 'list:setup_help' => 'Cocher les colonnes qui doivent être affichées dans la liste. Il est possible de modifier l’ordre des colonnes en les glissant vers le haut ou le bas.', 'list:setup_title' => 'Installation de la liste', 'locale:cs' => 'Tchèque', 'locale:de' => 'Allemand', 'locale:el' => 'Grec', 'locale:en' => 'Anglais', 'locale:es' => 'Espagnol', 'locale:es-ar' => 'Espagnol (Argentine)', 'locale:fa' => 'Persan', 'locale:fr' => 'Français', 'locale:hu' => 'Hongrois', 'locale:id' => 'Indonésien', 'locale:it' => 'Italien', 'locale:ja' => 'Japonais', 'locale:lv' => 'Letton', 'locale:nb-no' => 'Norvégien (Bokmål)', 'locale:nl' => 'Néerlandais', 'locale:pl' => 'Polonais', 'locale:pt-br' => 'Portugais-Brésilien', 'locale:ro' => 'Roumain', 'locale:ru' => 'Russe', 'locale:sk' => 'Slovaque (Slovaquie)', 'locale:sv' => 'Suédois', 'locale:tr' => 'Turque', 'locale:zh-cn' => 'Chinois (Chine)', 'locale:zh-tw' => 'Chinese (Taiwan)', 'mail:drivers_hint_content' => 'Cette méthode d’envoi d’e-mails nécessite que le plugin \\":plugin\\" soit installé avant de pouvoir envoyer des e-mails.', 'mail:drivers_hint_header' => 'Les drivers ne sont pas installés', 'mail:general' => 'Général', 'mail:log_file' => 'Journal du fichier', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Domaine Mailgun', 'mail:mailgun_domain_comment' => 'Saisir le nom de domaine Mailgun.', 'mail:mailgun_secret' => 'Clé secrète Mailgun', 'mail:mailgun_secret_comment' => 'Saisir la clé de l’API Mailgun.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Clé secrète Mandrill', 'mail:mandrill_secret_comment' => 'Saisir la clé de l’API Mandrill.', 'mail:menu_description' => 'Gérer la configuration des adresses e-mails.', 'mail:menu_label' => 'Configuration des adresses e-mails', 'mail:method' => 'Méthode d’envoi', 'mail:php_mail' => 'Fonction mail de PHP', 'mail:sender_email' => 'Adresse e-mail de l’expéditeur', 'mail:sender_name' => 'Nom de l’expéditeur', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Chemin vers Sendmail', 'mail:sendmail_path_comment' => 'Saisir le chemin du programme Sendmail.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'Adresse SMTP', 'mail:smtp_authorization' => 'Authentification SMTP requise', 'mail:smtp_authorization_comment' => 'Cocher cette case si le serveur SMTP nécessite une authentification.', 'mail:smtp_encryption' => 'Protocole de sécurisation des échanges SMTP', 'mail:smtp_encryption_none' => 'Aucun cryptage', 'mail:smtp_password' => 'Mot de passe', 'mail:smtp_port' => 'Port SMTP', 'mail:smtp_ssl' => 'Connexion SSL requise', 'mail:smtp_username' => 'Identifiant', 'mail_templates:code' => 'Code', 'mail_templates:code_comment' => 'Code unique utilisé pour identifier ce modèle', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Texte brut', 'mail_templates:description' => 'Description', 'mail_templates:layout' => 'Maquette', 'mail_templates:layouts' => 'Maquettes', 'mail_templates:menu_description' => 'Gérer les modèles et maquettes des e-mails envoyés aux utilisateurs et aux administrateurs.', 'mail_templates:menu_label' => 'Modèles des adresses e-mails', 'mail_templates:menu_layouts_label' => 'Maquettes des adresses e-mails', 'mail_templates:name' => 'Nom', 'mail_templates:name_comment' => 'Nom unique utilisé pour identifier ce modèle', 'mail_templates:new_layout' => 'Nouvelle maquette', 'mail_templates:new_template' => 'Nouveau modèle', 'mail_templates:no_layout' => '-- Aucune maquette --', 'mail_templates:return' => 'Retour à la liste des modèles.', 'mail_templates:saving' => 'Sauvegarde du modèle en cours…', 'mail_templates:sending' => 'Envoi du message de test en cours…', 'mail_templates:subject' => 'Sujet', 'mail_templates:subject_comment' => 'Sujet de l’e-mail', 'mail_templates:template' => 'Modèle', 'mail_templates:templates' => 'Modèles', 'mail_templates:test_confirm' => 'Un message de test sera envoyé à :email. Continuer ?', 'mail_templates:test_send' => 'Envoyer un message de test', 'mail_templates:test_success' => 'Le message de test a été envoyé avec succès.', 'maintenance:is_enabled' => 'Activer la maintenance', 'maintenance:is_enabled_comment' => 'Si activé, les visiteurs du site Web verront la page choisie ci-dessous.', 'maintenance:settings_menu' => 'Maintenance', 'maintenance:settings_menu_description' => 'Paramètres de la page de maintenance et ses options.', 'markdowneditor:bold' => 'Gras', 'markdowneditor:code' => 'Code', 'markdowneditor:formatting' => 'Formatage', 'markdowneditor:fullscreen' => 'Plein écran', 'markdowneditor:header1' => 'Entête 1', 'markdowneditor:header2' => 'Entête 2', 'markdowneditor:header3' => 'Entête 3', 'markdowneditor:header4' => 'Entête 4', 'markdowneditor:header5' => 'Entête 5', 'markdowneditor:header6' => 'Entête 6', 'markdowneditor:horizontalrule' => 'Insérer la règle horizontalement', 'markdowneditor:image' => 'Image', 'markdowneditor:italic' => 'Italique', 'markdowneditor:link' => 'Lien', 'markdowneditor:orderedlist' => 'Liste ordonnée', 'markdowneditor:preview' => 'Aperçu', 'markdowneditor:quote' => 'Citation', 'markdowneditor:unorderedlist' => 'Liste non ordonnée', 'markdowneditor:video' => 'Vidéo', 'media:add_folder' => 'Ajouter un répertoire', 'media:click_here' => 'Cliquer ici', 'media:crop_and_insert' => 'Copier / coller', 'media:delete' => 'Supprimer', 'media:delete_confirm' => 'Confirmer la suppression de ces articles ?', 'media:delete_empty' => 'Sélectionner les articles à supprimer.', 'media:display' => 'Affichage', 'media:empty_library' => 'La librairie multimédia est vide. Pour commencer, télécharger des fichiers ou répertoires.', 'media:error_creating_folder' => 'Erreur durant la création du répertoire', 'media:error_renaming_file' => 'Erreur pour renommer l’article.', 'media:filter_audio' => 'Audio', 'media:filter_documents' => 'Documents', 'media:filter_everything' => 'Tout', 'media:filter_images' => 'Images', 'media:filter_video' => 'Vidéo', 'media:folder' => 'Répertoire', 'media:folder_name' => 'Nom du répertoire', 'media:folder_or_file_exist' => 'Un répertoire ou un fichier portant ce nom existe déjà.', 'media:folder_size_items' => 'Articles(s)', 'media:height' => 'Hauteur', 'media:image_size' => 'Taille de l’image :', 'media:insert' => 'Insérer', 'media:invalid_path' => 'Le chemin du fichier indiqué est invalide : \':path\'.', 'media:last_modified' => 'Dernière modification', 'media:library' => 'Librairie', 'media:menu_label' => 'Média', 'media:move' => 'Déplacer', 'media:move_dest_src_match' => 'Sélectionner un autre répertoire de destination.', 'media:move_destination' => 'Répertoire de destination', 'media:move_empty' => 'Sélectionner les articles à déplacer.', 'media:move_popup_title' => 'Déplacer des fichiers ou répertoires', 'media:multiple_selected' => 'Plusieurs articles sélectionnés.', 'media:new_folder_title' => 'Nouveau répertoire', 'media:no_files_found' => 'Aucun fichier trouvé.', 'media:nothing_selected' => 'Aucun sélection.', 'media:order_by' => 'Trier par', 'media:please_select_move_dest' => 'Sélectionner un répertoire de destination.', 'media:public_url' => 'Adresse URL publique', 'media:resize' => 'Redimensionner…', 'media:resize_image' => 'Redimensionner l’image', 'media:restore' => 'Annuler tous les changements', 'media:return_to_parent' => 'Retourner au répertoire parent', 'media:return_to_parent_label' => 'Monter…', 'media:search' => 'Rechercher', 'media:select_single_image' => 'Sélectionner une seule image.', 'media:selected_size' => 'Sélectionnée :', 'media:selection_mode' => 'Mode de sélection', 'media:selection_mode_fixed_ratio' => 'Rapport fixe', 'media:selection_mode_fixed_size' => 'Taille fixe', 'media:selection_mode_normal' => 'Normal', 'media:selection_not_image' => 'L’article sélectionné n’est pas une image.', 'media:size' => 'Taille', 'media:thumbnail_error' => 'Erreur durant la création de la miniature.', 'media:title' => 'Titre', 'media:upload' => 'Télécharger', 'media:uploading_complete' => 'Téléchargement complet', 'media:uploading_file_num' => 'Téléchargement de :number fichier(s)…', 'media:width' => 'Largeur', 'mediafinder:default_prompt' => 'Cliquer su le bouton %s pour trouver un média', 'mediamanager:insert_audio' => 'Insérer un document audio de la médiathèque', 'mediamanager:insert_image' => 'Insérer une image de la médiathèque', 'mediamanager:insert_link' => 'Insérer un lien vers un fichier de la médiathèque', 'mediamanager:insert_video' => 'Insérer une vidéo de la médiathèque', 'mediamanager:invalid_audio_empty_insert' => 'Veuillez sélectionner un document audio à insérer.', 'mediamanager:invalid_audio_invalid_insert' => 'Le fichier n’est pas un document audio.', 'mediamanager:invalid_file_empty_insert' => 'Veuillez sélectionner un fichier à lier.', 'mediamanager:invalid_file_single_insert' => 'Veuillez sélectionner un seul fichier.', 'mediamanager:invalid_image_empty_insert' => 'Veuillez sélectionner au moins une image à insérer.', 'mediamanager:invalid_image_invalid_insert' => 'Le fichier n’est pas une image.', 'mediamanager:invalid_video_empty_insert' => 'Veuillez sélectionner une vidéo à insérer.', 'mediamanager:invalid_video_invalid_insert' => 'Le fichier n’est pas une vidéo.', 'model:invalid_class' => 'Le modèle :model utilisé dans la classe :class est invalide, il doit hériter de la classe \\Model.', 'model:mass_assignment_failed' => 'La tâche de masse a échoué pour l’attribut du modèle \\":attribute\\".', 'model:missing_id' => 'Il manque l’ID de l’enregistrement.', 'model:missing_method' => 'Le modèle \\":class\\" ne contient pas de méthode \\":method\\".', 'model:missing_relation' => 'Le modèle \\":class\\" ne contient pas de définition \\":relation\\".', 'model:name' => 'Modèle', 'model:not_found' => 'Aucun modèle \\":class\\" ne correspond à l’ID :id', 'myaccount:menu_description' => 'Modifier les informations de votre compte comme le nom, l’adresse e-mail ou le mot de passe.', 'myaccount:menu_keywords' => 'sécurité du compte', 'myaccount:menu_label' => 'Mon compte', 'mysettings:menu_description' => 'Paramètres en lien avec votre compte d’administrateur', 'mysettings:menu_label' => 'Mes paramètres', 'page:access_denied:cms_link' => 'Retour à l’administration', 'page:access_denied:help' => 'Vous n’avez pas l’autorisation de consulter cette page.', 'page:access_denied:label' => 'Accès refusé', 'page:custom_error:help' => 'Nous sommes désolés, un problème est survenu et la page ne peut être affichée.', 'page:custom_error:label' => 'Erreur sur la page', 'page:delete_confirm_multiple' => 'Confirmer la suppression des pages sélectionnées ?', 'page:delete_confirm_single' => 'Confirmer la suppression de cette page ?', 'page:invalid_token:label' => 'La clé de sécurité est invalide', 'page:invalid_url' => 'Format d’adresse URL invalide. L’adresse URL doit commencer par un / et peut contenir des chiffres, des lettres et les symboles suivants : ._-[]:?|/+*^$', 'page:menu_label' => 'Pages', 'page:new' => 'Nouvelle page', 'page:no_layout' => '-- aucune  maquette --', 'page:no_list_records' => 'Aucune page n’a été trouvée', 'page:not_found:help' => 'La page demandée est introuvable.', 'page:not_found:label' => 'La page est introuvable', 'page:not_found_name' => 'La page \\":name\\" est introuvable', 'page:unsaved_label' => 'Page(s) non sauvegardée(s)', 'page:untitled' => 'Sans titre', 'partial:delete_confirm_multiple' => 'Confirmer la suppression des modèles partiels sélectionnés ?', 'partial:delete_confirm_single' => 'Confirmer la suppression de ce modèle partiel ?', 'partial:invalid_name' => 'Nom du modèle partiel invalide : :name.', 'partial:menu_label' => ' Modèles partiels', 'partial:new' => 'Nouveau modèle partiel', 'partial:no_list_records' => 'Aucun  modèle partiel n’a été trouvé', 'partial:not_found_name' => 'Le nom partiel \\":name\\" est introuvable.', 'partial:unsaved_label' => 'Modèle(s) partiel(s) non sauvegardé(s)', 'permissions:access_logs' => 'Voir les journaux système', 'permissions:manage_assets' => 'Gérer les assets', 'permissions:manage_branding' => 'Personnaliser l’interface d’administration', 'permissions:manage_content' => 'Gérer le contenu', 'permissions:manage_layouts' => 'Gérer les maquettes', 'permissions:manage_mail_settings' => 'Gérer les paramètres e-mail', 'permissions:manage_mail_templates' => 'Gérer les modèles des e-mails', 'permissions:manage_media' => 'Gérer les médias', 'permissions:manage_other_administrators' => 'Gérer les autres administrateurs', 'permissions:manage_pages' => 'Gérer les pages', 'permissions:manage_partials' => 'Gérer les modèles partiels', 'permissions:manage_software_updates' => 'Gérer les mises à jour du logiciel', 'permissions:manage_system_settings' => 'Gérer les paramètres du système', 'permissions:manage_themes' => 'Gérer les thèmes', 'permissions:name' => 'CMS', 'permissions:view_the_dashboard' => 'Voir le tableau de bord', 'plugin:label' => 'Plugin', 'plugin:name:help' => 'Nommer le plugin avec un nom de code unique. Par exemple, RainLab.Blog', 'plugin:name:label' => 'Nom du plugin', 'plugin:unnamed' => 'Plugin sans nom', 'plugins:disable_confirm' => 'Confirmer ?', 'plugins:disable_success' => 'Les plugins ont été désactivés avec succès.', 'plugins:disabled_help' => 'Les plugins désactivés sont ignorés par l’application.', 'plugins:disabled_label' => 'Désactivé', 'plugins:enable_or_disable' => 'Activer ou désactiver', 'plugins:enable_or_disable_title' => 'Activer ou désactiver les plugins', 'plugins:enable_success' => 'Les plugins ont été activés avec succès.', 'plugins:frozen_help' => 'Les plugins bloqués seront ignorés par le processus de mise à jour.', 'plugins:frozen_label' => 'Mises à jour bloquées', 'plugins:install' => 'Installer des plugins', 'plugins:install_products' => 'Installer des produits', 'plugins:installed' => 'Plugins installés', 'plugins:manage' => 'Gérer les plugins', 'plugins:no_plugins' => 'Il n’y a aucun plugin installé depuis le site d’October CMS.', 'plugins:recommended' => 'Recommandé', 'plugins:refresh' => 'Actualiser', 'plugins:refresh_confirm' => 'Confirmer ?', 'plugins:refresh_success' => 'Les plugins ont été actualisés avec succès.', 'plugins:remove' => 'Supprimer', 'plugins:remove_confirm' => 'Confirmer la suppression de ce plugin ?', 'plugins:remove_success' => 'Les plugins ont été supprimés avec succès.', 'plugins:search' => 'Recherche des plugins à installer…', 'plugins:selected_amount' => 'Plugins sélectionnés : :amount', 'plugins:unknown_plugin' => 'Le plugin a été supprimé avec succès.', 'project:attach' => 'Attacher un projet', 'project:detach' => 'Détacher le Projet', 'project:detach_confirm' => 'Confirmer le détachement de ce projet ?', 'project:id:help' => 'Comment trouver l’ID de son projet', 'project:id:label' => 'ID du projet', 'project:id:missing' => 'Spécifier un ID de projet.', 'project:name' => 'Projet', 'project:none' => 'Aucun', 'project:owner_label' => 'Auteur', 'project:unbind_success' => 'Le projet a été détaché avec succès.', 'relation:add' => 'Ajouter', 'relation:add_a_new' => 'Ajouter un nouveau :name', 'relation:add_name' => 'Ajouter :name', 'relation:add_selected' => 'Ajouter la sélection', 'relation:cancel' => 'Annuler', 'relation:close' => 'Fermer', 'relation:create' => 'Créer', 'relation:create_name' => 'Création de :name', 'relation:delete' => 'Supprimer', 'relation:delete_confirm' => 'Confirmer la suppression ?', 'relation:delete_name' => 'Suppression de :name', 'relation:help' => 'Cliquer sur un élément pour l’ajouter', 'relation:invalid_action_multi' => 'Cette action ne peut être effectuée sur une relation multiple.', 'relation:invalid_action_single' => 'Cette action ne peut être effectuée sur une relation singulière.', 'relation:link' => 'Lier', 'relation:link_a_new' => 'Lier un nouveau :name', 'relation:link_name' => 'Lier :name', 'relation:link_selected' => 'Lier la sélection', 'relation:missing_config' => 'La relation n’a pas de configuration pour \\":config\\".', 'relation:missing_definition' => 'La relation n’a pas de définition pour le champ \\":field\\".', 'relation:missing_model' => 'La relation utilisée dans la classe :class n’a pas de modèle défini.', 'relation:preview' => 'Aperçu', 'relation:preview_name' => 'Aperçu de :name', 'relation:related_data' => 'Donnée liée :name', 'relation:remove' => 'Retirer', 'relation:remove_name' => 'Retirer :name', 'relation:unlink' => 'Séparer', 'relation:unlink_confirm' => 'Confirmer la séparation ?', 'relation:unlink_name' => 'Séparer :name', 'relation:update' => 'Mettre à jour', 'relation:update_name' => 'Mise à jour de :name', 'request_log:count' => 'Compteur', 'request_log:empty_link' => 'Purger le journal des requêtes', 'request_log:empty_loading' => 'Purge du journal des requêtes…', 'request_log:empty_success' => 'Le journal des requêtes a été purgé avec succès.', 'request_log:hint' => 'Ce journal affiche une liste de requêtes potentiellement suspectes. par exemple, si un visiteur ouvre une page introuvable du CMS, une ligne avec le statut code 404 est alors créée.', 'request_log:id' => 'ID', 'request_log:id_label' => 'ID du journal', 'request_log:menu_description' => 'Affiche les requêtes erronées ou redirigées, comme les erreurs 404.', 'request_log:menu_label' => 'Journal des requêtes', 'request_log:referer' => 'Référents', 'request_log:return_link' => 'Retour au journal des requêtes', 'request_log:status_code' => 'Statut', 'request_log:url' => 'Adresse URL', 'server:connect_error' => 'Erreur lors de la connexion au serveur.', 'server:file_corrupt' => 'Le fichier provenant du serveur est corrompu.', 'server:file_error' => 'Erreur du serveur lors de la transmission du paquet.', 'server:response_empty' => 'Réponse vide du serveur', 'server:response_invalid' => 'Réponse invalide du serveur.', 'server:response_not_found' => 'Le serveur de mise à jour n’a pas été trouvé.', 'settings:menu_label' => 'Réglages', 'settings:missing_model' => 'La page de réglages nécessite une définition de modèle.', 'settings:not_found' => 'Les paramètres spécifiés sont introuvables.', 'settings:return' => 'Retourner à la page des réglages du système', 'settings:search' => 'Rechercher', 'settings:update_success' => 'Les réglages pour :name ont étés mis à jour avec succès.', 'sidebar:add' => 'Ajouter', 'sidebar:search' => 'Rechercher…', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Clients', 'system:categories:events' => 'Évènements', 'system:categories:logs' => 'Journaux', 'system:categories:mail' => 'E-mail', 'system:categories:misc' => 'Divers', 'system:categories:my_settings' => 'Mes réglages', 'system:categories:shop' => 'Boutique', 'system:categories:social' => 'Social', 'system:categories:system' => 'Système', 'system:categories:team' => 'Équipe', 'system:categories:users' => 'Utilisateurs', 'system:menu_label' => 'Système', 'system:name' => 'Système', 'template:invalid_type' => 'Type de modèle inconnu.', 'template:not_found' => 'Le modèle demandé est introuvable.', 'template:saved' => 'Le modèle demandé a été sauvegardé avec succès.', 'theme:activate_button' => 'Activer', 'theme:active:not_found' => 'Le thème activé est introuvable.', 'theme:active:not_set' => 'Aucun thème n’est activé.', 'theme:active_button' => 'Activer', 'theme:author_label' => 'Auteur', 'theme:author_placeholder' => 'Nom de la personne ou de la compagnie', 'theme:code_label' => 'Code', 'theme:code_placeholder' => 'Un nom de code unique pour la distribution de ce thème', 'theme:create_button' => 'Créer', 'theme:create_new_blank_theme' => 'Créer un nouveau thème vierge', 'theme:create_theme_required_name' => 'Saisir un nom pour ce thème.', 'theme:create_theme_success' => 'Thème créé avec succès !', 'theme:create_title' => 'Créer un thème', 'theme:customize_button' => 'Personnaliser', 'theme:customize_theme' => 'Personnaliser le thème', 'theme:default_tab' => 'Propriétés', 'theme:delete_active_theme_failed' => 'Impossible de supprimer le thème actif, merci d’activer une autre thème au préalable.', 'theme:delete_button' => 'Supprimer', 'theme:delete_confirm' => 'Confirmer la suppression de ce thème ? Cette action est irréversible !', 'theme:delete_theme_success' => 'Thème supprimé avec succès !', 'theme:description_label' => 'Description', 'theme:description_placeholder' => 'Description du thème', 'theme:dir_name_create_label' => 'Le répertoire de destination du thème', 'theme:dir_name_invalid' => 'Le nom doit contenir uniquement des chiffres, des symboles latins et les symboles suivants : _-', 'theme:dir_name_label' => 'Nom du répertoire', 'theme:dir_name_taken' => 'Le nom du répertoire indiqué existe déjà.', 'theme:duplicate_button' => 'Dupliquer', 'theme:duplicate_theme_success' => 'Duplication réalisée avec succès !', 'theme:duplicate_title' => 'Dupliquer le thème', 'theme:edit:not_found' => 'Le thème de rédaction est introuvable.', 'theme:edit:not_match' => 'L’objet actuellement ouvert n’appartient pas au thème en cours de modification. Merci de recharger la page.', 'theme:edit:not_set' => 'Le thème de rédaction n’est pas activé.', 'theme:edit_properties_button' => 'Modifier les propriétés', 'theme:edit_properties_title' => 'Thème', 'theme:export_button' => 'Exporter', 'theme:export_folders_comment' => 'Sélectionner les répertoires du thème à exporter', 'theme:export_folders_label' => 'Répertoire', 'theme:export_title' => 'Exporter le thème', 'theme:find_more_themes' => 'Trouver davantage de thèmes sur le site du CMS October.', 'theme:homepage_label' => 'Page d’accueil', 'theme:homepage_placeholder' => 'Adresse URL du site Web', 'theme:import_button' => 'Importer', 'theme:import_folders_comment' => 'Sélectionner les répertoires du thème à importer', 'theme:import_folders_label' => 'Répertoires', 'theme:import_overwrite_comment' => 'Décocher cette case pour importer uniquement les nouveaux fichiers', 'theme:import_overwrite_label' => 'Écraser les fichiers existants', 'theme:import_theme_success' => 'Thème importé avec succès !', 'theme:import_title' => 'Importer le thème', 'theme:import_uploaded_file' => 'Fichier archive du thème', 'theme:label' => 'Thème', 'theme:manage_button' => 'Gérer', 'theme:manage_title' => 'Gérer le thème', 'theme:name:help' => 'Nommer le thème avec un nom de code unique. Par exemple, RainLab.Vanilla', 'theme:name:label' => 'Nom du thème', 'theme:name_create_placeholder' => 'Nom du nouveau thème', 'theme:name_label' => 'Nom', 'theme:new_directory_name_comment' => 'Indiquer un nouveau nom de répertoire pour le thème en dupliqué.', 'theme:new_directory_name_label' => 'Répertoire du thème', 'theme:not_found_name' => 'Le thème \\":name\\" n’a pas été trouvé.', 'theme:return' => 'Retourner à la liste des thèmes', 'theme:save_properties' => 'Sauvegarder les propriétés', 'theme:saving' => 'Sauvegarder le thème…', 'theme:settings_menu' => 'Thème frontal', 'theme:settings_menu_description' => 'Aperçu des thèmes installés et sélection du thème actif.', 'theme:theme_label' => 'Thème', 'theme:theme_title' => 'Thèmes', 'theme:unnamed' => 'Thème sans nom', 'themes:install' => 'Installer des thèmes', 'themes:installed' => 'Thèmes installés', 'themes:no_themes' => 'Il n’y a aucun thème installé depuis le site d’October CMS.', 'themes:recommended' => 'Recommandé', 'themes:remove_confirm' => 'Confirmer la suppression de ce thème ?', 'themes:search' => 'Recherche des thème à installer…', 'tooltips:preview_website' => 'Aperçu du site', 'updates:check_label' => 'Vérifier les mises à jour', 'updates:core_build' => 'Version :build', 'updates:core_build_help' => 'Une nouvelle version est disponible.', 'updates:core_current_build' => 'Version actuelle', 'updates:core_downloading' => 'Téléchargement des fichiers de l’application', 'updates:core_extracting' => 'Décompression des fichiers de l’application', 'updates:details_author' => 'Auteur', 'updates:details_current_version' => 'Version actuelle', 'updates:details_readme' => 'Documentation', 'updates:details_readme_missing' => 'Il n’y a pas de documentation disponible.', 'updates:details_title' => 'Détails du plugin', 'updates:details_upgrades' => 'Guide de mise à jour', 'updates:details_upgrades_missing' => 'Il n’y a pas d’instruction disponible.', 'updates:details_view_homepage' => 'Voir la page d’accueil', 'updates:disabled' => 'Désactivé', 'updates:force_label' => 'Forcer la mise à jour', 'updates:found:help' => 'Cliquer sur « Mettre à jour » pour démarrer le processus.', 'updates:found:label' => 'Nouvelle mise à jour disponible !', 'updates:important_action:confirm' => 'Confirmer la mise à jour', 'updates:important_action:empty' => 'Sélectionner l’action', 'updates:important_action:ignore' => 'Ignorer ce plugin (toujours)', 'updates:important_action:skip' => 'Ignorer ce plugin (cette fois seulement)', 'updates:important_action_required' => 'Action requise', 'updates:important_alert_text' => 'Des mise à jour requièrent votre attention.', 'updates:important_view_guide' => 'Consulter le guide de mise à jour', 'updates:menu_description' => 'Mise à jour du système, gestion et installation des plugins et thèmes.', 'updates:menu_label' => 'Mise à jour', 'updates:name' => 'Mise à jour', 'updates:none:help' => 'Aucune nouvelle mise à jour n’a été trouvée.', 'updates:none:label' => 'Aucune mise à jour n’est disponible.', 'updates:plugin_author' => 'Auteur', 'updates:plugin_code' => 'Code', 'updates:plugin_current_version' => 'Version actuelle', 'updates:plugin_description' => 'Description', 'updates:plugin_downloading' => 'Téléchargement du plugin : :name', 'updates:plugin_extracting' => 'Décompression du plugin : :name', 'updates:plugin_name' => 'Nom', 'updates:plugin_version' => 'Version', 'updates:plugin_version_none' => 'Nouveau plugin', 'updates:plugins' => 'Plugins', 'updates:retry_label' => 'Réessayer', 'updates:return_link' => 'Retourner aux mises à jour du système', 'updates:theme_downloading' => 'Téléchargement du thème : :name', 'updates:theme_extracting' => 'Décompression du thème : :name', 'updates:theme_new_install' => 'Installation du nouveau thème.', 'updates:themes' => 'Thèmes', 'updates:title' => 'Gérer les mises à jour', 'updates:update_completing' => 'Finalisation du processus de mise à jour', 'updates:update_failed_label' => 'Échec de la mise à jour', 'updates:update_label' => 'Mettre à jour', 'updates:update_loading' => 'Chargement des mises à jour disponibles…', 'updates:update_success' => 'Mise à jour terminée avec succès.', 'user:account' => 'Compte', 'user:allow' => 'Autoriser', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Confirmer la suppression de cet administrateur ?', 'user:deny' => 'Interdire', 'user:email' => 'Adresse e-mail', 'user:first_name' => 'Prénom', 'user:full_name' => 'Nom complet', 'user:group:code_comment' => 'Saisir un code d’accès unique si vous souhaitez accéder à ce groupe via une API.', 'user:group:code_field' => 'Code', 'user:group:delete_confirm' => 'Confirmer la suppression de ce groupe d’administrateurs ?', 'user:group:description_field' => 'Description', 'user:group:is_new_user_default_field' => 'Inclure les nouveaux administrateurs dans ce groupe, par défaut.', 'user:group:list_title' => 'Gérer les groupes', 'user:group:menu_label' => 'Groupes', 'user:group:name' => 'Groupe', 'user:group:name_field' => 'Nom', 'user:group:new' => 'Ajouter un groupe d’administrateur', 'user:group:return' => 'Retour à la liste des groupes', 'user:group:users_count' => 'Utilisateurs', 'user:groups' => 'Groupes', 'user:groups_comment' => 'Préciser le(s) groupe(s) d’adhésion de cette personne.', 'user:inherit' => 'Hériter', 'user:last_name' => 'Nom', 'user:list_title' => 'Gérer les administrateurs', 'user:login' => 'S’identifier', 'user:menu_description' => 'Gérer les utilisateurs, les groupes et les permissions depuis l’administration.', 'user:menu_label' => 'Administrateurs', 'user:name' => 'Administrateur', 'user:new' => 'Créer un nouvel administrateur', 'user:password' => 'Mot de passe', 'user:password_confirmation' => 'Confirmer le mot de passe', 'user:permissions' => 'Permissions', 'user:preferences:not_authenticated' => 'Il n’y a aucun utilisateur identifié pour lequel il est possible de charger ou modifier les préférences.', 'user:return' => 'Retour à la liste des administrateurs', 'user:send_invite' => 'Envoyer une invitation par e-mail', 'user:send_invite_comment' => 'Cocher cette case pour envoyer une invitation aux utilisateurs par e-mail.', 'user:superuser' => 'Super utilisateur', 'user:superuser_comment' => 'Cocher cette case pour autoriser cet utilisateur à accéder à l’ensemble des zones.', 'validation:accepted' => 'Le champ :attribute doit être accepté.', 'validation:active_url' => 'Le champ :attribute n’est pas une URL valide.', 'validation:after' => 'Le champ :attribute doit être une date après le :date.', 'validation:alpha' => 'Le champ :attribute ne peut contenir que des lettres.', 'validation:alpha_dash' => 'Le champ :attribute ne peut contenir que des lettres, des chiffres et des tirets.', 'validation:alpha_num' => 'Le champ :attribute ne peut contenir que des lettres et des chiffres.', 'validation:array' => 'Le champ :attribute doit être un groupe.', 'validation:before' => 'Le champ :attribute doit être une date avant le :date.', 'validation:between:array' => 'Le champ :attribute doit être compris entre :min - :max objets.', 'validation:between:file' => 'Le champ :attribute doit être compris entre :min - :max kilooctets.', 'validation:between:numeric' => 'Le champ :attribute doit être compris entre :min - :max.', 'validation:between:string' => 'Le champ :attribute doit être compris entre :min - :max caractères.', 'validation:confirmed' => 'Le champ de confirmation :attribute ne correspond pas.', 'validation:date' => 'Le champ :attribute n’est pas une date valide.', 'validation:date_format' => 'Le champ :attribute ne correspond pas au format :format.', 'validation:different' => 'Le champ :attribute et :other doivent être différents.', 'validation:digits' => 'Le champ :attribute doit être de :digits chiffres.', 'validation:digits_between' => 'Le champ :attribute doit être compris entre :min et :max chiffres.', 'validation:email' => 'Le format du champ :attribute n’est pas valide.', 'validation:exists' => 'Le champ :attribute sélectionné n’est pas valide.', 'validation:extensions' => 'Le champ :attribute doit être une extension de : :values.', 'validation:image' => 'Le champ :attribute doit être une image.', 'validation:in' => 'Le champ :attribute sélectionné n’est pas valide.', 'validation:integer' => 'Le champ :attribute doit être un entier.', 'validation:ip' => 'Le champ :attribute doit être une adresse IP valide.', 'validation:max:array' => 'Le champ :attribute ne peut pas être supérieure à :max objets.', 'validation:max:file' => 'Le champ :attribute ne peut pas être supérieure à :max kilooctets.', 'validation:max:numeric' => 'Le champ :attribute ne peut pas être supérieure à :max.', 'validation:max:string' => 'Le champ :attribute ne peut pas être supérieure à :max caractères.', 'validation:mimes' => 'Le champ :attribute doit être un fichier de type : :values.', 'validation:min:array' => 'Le champ :attribute doit être au minimum de :min objets.', 'validation:min:file' => 'Le champ :attribute doit être au minimum de :min kilooctets.', 'validation:min:numeric' => 'Le champ :attribute doit être au minimum de :min.', 'validation:min:string' => 'Le champ :attribute doit être au minimum de :min caractères.', 'validation:not_in' => 'Le champ :attribute sélectionné n’est pas valide.', 'validation:numeric' => 'Le champ :attribute doit être un nombre.', 'validation:regex' => 'Le format du champ :attribute n’est pas valide.', 'validation:required' => 'Le champ :attribute est obligatoire.', 'validation:required_if' => 'Le champ :attribute est obligatoire quand :other est :value.', 'validation:required_with' => 'Le champ :attribute est obligatoire quand :values est présent.', 'validation:required_without' => 'Le champ :attribute est obligatoire quand :values est absent.', 'validation:same' => 'Le champ :attribute et :other doivent correspondre.', 'validation:size:array' => 'Le champ :attribute doit contenir :size objets.', 'validation:size:file' => 'Le champ :attribute doit être de :size kilooctets.', 'validation:size:numeric' => 'Le champ :attribute doit être de :size.', 'validation:size:string' => 'Le champ :attribute doit être de :size caractères.', 'validation:unique' => 'Le champ :attribute doit être unique. La valeur renseignée est déjà utilisée.', 'validation:url' => 'Le champ :attribute n’est pas une URL valide.', 'warnings:extension' => 'L’extension PHP :name n’est pas installée. Veuillez installer la librairie et activer l’extension.', 'warnings:permissions' => 'Il n’est pas possible au language PHP d’écrire sur le répertoire :name ou ses sous-dossiers. Veuillez modifier les autorisation d’écriture sur ce répertoire, depuis le serveur Web.', 'warnings:tips' => 'Aide à la configuration du système', 'warnings:tips_description' => 'Il y a des éléments à prendre en compte pour configurer le système proprement.', 'widget:not_bound' => 'Un Widget ayant le nom de classe \\":name\\" n’a pas pu s’authentifier auprès du contrôleur', 'widget:not_registered' => 'Le nom de classe \\":name\\" d’un Widget n’a pas été enregistrée', 'zip:extract_failed' => 'Impossible de décompresser le fichier \':file\'.']);
示例#23
0
文件: sv.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Dataum och tid', 'access_log:email' => 'E-post', 'access_log:first_name' => 'Förnamn', 'access_log:hint' => 'Denna logg visar en lista över lyckade inloggningsförsök till administratrationen. Registret behålls i :days dagar.', 'access_log:ip_address' => 'IP adress', 'access_log:last_name' => 'Efternamn', 'access_log:login' => 'Inloggning', 'access_log:menu_description' => 'Visa en lista över framgångsrika inloggningar av back-end användare.', 'access_log:menu_label' => 'Åtkomstlogg', 'account:apply' => 'Spara', 'account:cancel' => 'Avbryt', 'account:delete' => 'Radera', 'account:email_placeholder' => 'e-post', 'account:enter_email' => 'Ange din e-postadress', 'account:enter_login' => 'Ange ditt användarnamn', 'account:enter_new_password' => 'Välj ett nytt lösenord', 'account:forgot_password' => 'Glömt ditt lösenord?', 'account:login' => 'Logga in', 'account:login_placeholder' => 'användarnamn', 'account:ok' => 'OK', 'account:password_placeholder' => 'lösenord', 'account:password_reset' => 'Återställ lösenord', 'account:reset' => 'Nollställ', 'account:reset_error' => 'Felaktig data för lösenordsåterställning. Var vänlig prova igen', 'account:reset_fail' => 'Det gick tyvärr inte att nollställa ditt lösenord', 'account:reset_success' => 'Ditt lösenord har blivit återställt. Du kan nu logga in', 'account:restore' => 'Återställ', 'account:restore_error' => 'En användare med användarnamnet \':login\' kunde ej hittas', 'account:restore_success' => 'Ett meddelande har sänts till din e-postadress med instruktioner om hur du återställer ditt lösenord', 'account:sign_out' => 'Logga ut', 'ajax_handler:invalid_name' => 'Felaktig AJAX-hanterare: :name', 'ajax_handler:not_found' => 'AJAX-hanterare \':name\' kunde ej hittas', 'alert:cancel_button_text' => 'Avbryt', 'alert:confirm_button_text' => 'OK', 'app:name' => 'October CMS', 'app:tagline' => 'Getting back to basics', 'asset:already_exists' => 'En fil eller mapp med detta namn finns redan', 'asset:create_directory' => 'Skapa mapp', 'asset:create_file' => 'Skapa fil', 'asset:delete' => 'Radera', 'asset:destination_not_found' => 'Destinationsmappen kunde ej hittas', 'asset:directory_name' => 'Mappnamn', 'asset:directory_popup_title' => 'Ny mapp', 'asset:drop_down_add_title' => 'Lägg till...', 'asset:drop_down_operation_title' => 'Åtgärd...', 'asset:error_deleting_dir' => 'Kunde inte radera filen :name.', 'asset:error_deleting_dir_not_empty' => 'Ett fel uppstod vid försök att radera :name. Mappen är ej tom', 'asset:error_deleting_directory' => 'Ett fel uppstod vid radering av orginalmapp :dir', 'asset:error_deleting_file' => 'Kunde inte radera filen :name.', 'asset:error_moving_directory' => 'Ett fel uppstod vid flytt av mapp :dir', 'asset:error_moving_file' => 'Ett fel uppstod vid flytt av fil :file', 'asset:error_renaming' => 'Ett fel uppstod vid namnbyte på filen eller mappen', 'asset:error_uploading_file' => 'Ett fel uppstod vid uppladdning av \\":name\\" :error', 'asset:file_not_valid' => 'Filen är inte korrekt', 'asset:invalid_name' => 'Namn kan endast innehålla siffror, bokstäver, mellanslag och följande tecken: ._-', 'asset:invalid_path' => 'Sökvägen kan endast innehålla siffror, bokstäver, mellanslag och följande tecken: ._-/', 'asset:menu_label' => 'Filsystem', 'asset:move' => 'Flytta', 'asset:move_button' => 'Flytta', 'asset:move_destination' => 'Destionationsmapp', 'asset:move_please_select' => 'Var god välj', 'asset:move_popup_title' => 'Flytta objekt', 'asset:name_cant_be_empty' => 'Namn får ej vara tomt', 'asset:new' => 'Ny fil', 'asset:original_not_found' => 'Orginalfilen eller mappen kunde ej hittas', 'asset:path' => 'Sökväg', 'asset:rename' => 'Döp om', 'asset:rename_new_name' => 'Nytt namn', 'asset:rename_popup_title' => 'Byt namn', 'asset:select' => 'Välj', 'asset:select_destination_dir' => 'Var god välj en destinationsmapp', 'asset:selected_files_not_found' => 'Valda filer kunde ej hittas', 'asset:too_large' => 'Den uppladdade filen är för stor. Tillåten filstorlek är :max_size', 'asset:type_not_allowed' => 'Endast följande filtyper är tillåtna: :allowed_types', 'asset:unsaved_label' => 'Osparade filer', 'asset:upload_files' => 'Ladda upp fil(er)', 'auth:title' => 'Administrationsområde', 'backend_preferences:locale' => 'Språk', 'backend_preferences:locale_comment' => 'Välj önskat språk.', 'backend_preferences:menu_description' => 'Hantera dina kontoinställningar såsom önskat språk.', 'backend_preferences:menu_label' => 'Back-end preferenser', 'behavior:missing_property' => 'Klassen :class måste definiera egenskapen $:property som används av :behavior -egenskapen', 'branding:app_name' => 'Applikationsnamn', 'branding:app_name_description' => 'Detta namn visas i titelområdet back-end.', 'branding:app_tagline' => 'Applikationstaggning', 'branding:app_tagline_description' => 'Detta namn visas på inloggningsskärmen för back-end.', 'branding:brand' => 'Varumärke', 'branding:colors' => 'Färger', 'branding:custom_stylesheet' => 'Anpassad formatmall', 'branding:logo' => 'Logga', 'branding:logo_description' => 'Ladda upp en egen logotyp för att använda i back-end.', 'branding:menu_description' => 'Anpassa administrations området såsom namn, färger och logotyp.', 'branding:menu_label' => 'Anpassa back-end', 'branding:primary_dark' => 'Primär (Mörk)', 'branding:primary_light' => 'Primär (Ljus)', 'branding:secondary_dark' => 'Sekundär (Mörk)', 'branding:secondary_light' => 'Sekundär (Ljus)', 'branding:styles' => 'Formatmallar', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Mallarna är nu raderade: :count.', 'cms_object:error_creating_directory' => 'Ett fel inträffade när mappen :name skulle skapas', 'cms_object:error_deleting' => 'Det gick inte att radera mallfilen: \\":name\\".', 'cms_object:error_saving' => 'Ett fel inträffade när \\":name\\" skulle sparas', 'cms_object:file_already_exists' => 'Filen \\":name\\" finns redan', 'cms_object:file_name_required' => 'Filnamnsfältet är obligatoriskt.', 'cms_object:invalid_file' => 'Felaktigt filnamn: :name. Filnamn kan endast innehålla alfanumeriska tecken, understreck, streck och punkter. Några exempel på korrekta filnamn är: sida.htm, sida, undermapp/sida', 'cms_object:invalid_file_extension' => 'Felaktig filändelse: :invalid. Tillåtna filändelser är: :allowed.', 'cms_object:invalid_property' => 'Egenskapen \\":name\\" kunde inte sättas', 'combiner:not_found' => 'Kombinationsfilen \':name\' kunde ej hittas', 'component:alias' => 'Alias', 'component:alias_description' => 'Ett unikt namn för denna komponent, när den skall användas i sid- eller layoutkod', 'component:invalid_request' => 'Mallen kunde inte sparas pga felaktig komponentdata', 'component:menu_label' => 'Komponenter', 'component:method_not_found' => 'Komponenten \':name\' saknar metoden \':method\'', 'component:no_description' => 'Ingen beskrivning', 'component:no_records' => 'Inga komponenter funna', 'component:not_found' => 'Komponenten \':name\' kunde ej hittas', 'component:unnamed' => 'Ej namngiven', 'component:validation_message' => 'Komponentalias är obligatoriska och får endast innehålla bokstäver, siffror, och understreck. De måste börja med en bokstav', 'config:not_found' => 'Kunde inte hitta konfigurationsfilen :file definierad för :location', 'config:required' => 'Konfigurationen som används i :location måste sända med ett värde :property', 'content:delete_confirm_multiple' => 'Vill du verkligen radera markerade filer eller mappar?', 'content:delete_confirm_single' => 'Vill du verkligen radera detta innehållsfil?', 'content:menu_label' => 'Innehåll', 'content:new' => 'Ny innehållsfil', 'content:no_list_records' => 'Inga innehållsfiler funna', 'content:not_found_name' => 'Innehållet \':name\' kunde ej hittas', 'content:unsaved_label' => 'Osparat innehåll', 'dashboard:add_widget' => 'Lägg till widget', 'dashboard:columns' => '{1} column|[2,Inf] kolonner', 'dashboard:full_width' => 'max bredd', 'dashboard:menu_label' => 'Kontrollpanelen', 'dashboard:status:maintenance' => 'i underhåll', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} uppdateringar tillgängliga!|{1} uppdatering tillgänglig!|[2,Inf] uppdateringar tillgängliga!', 'dashboard:status:widget_title_default' => 'Systemstatus', 'dashboard:widget_columns_description' => 'Bredden på widgeten ska vara ett nummer mellan 1 och 10.', 'dashboard:widget_columns_error' => 'Vänligen ange widgetens bredden som ett nummer mellan 1 och 10.', 'dashboard:widget_columns_label' => 'Bredd :columns', 'dashboard:widget_inspector_description' => 'Widget informations inställningar', 'dashboard:widget_inspector_title' => 'Widget inställningar', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'Lägg widgeten på en ny rad.', 'dashboard:widget_new_row_label' => 'Forcera en ny rad', 'dashboard:widget_title_error' => 'En widgets titel är tvingande.', 'dashboard:widget_title_label' => 'Widget-titel', 'dashboard:widget_width' => 'Bredd', 'directory:create_fail' => 'Kunde inte skapa mapp: :name', 'editor:auto_closing' => 'Stäng taggar och specialtecken automatiskt', 'editor:code' => 'Kod', 'editor:code_folding' => 'Dölj kod', 'editor:content' => 'Innehåll', 'editor:description' => 'Beskrivning', 'editor:enter_fullscreen' => 'Starta helskärmsläge', 'editor:exit_fullscreen' => 'Avsluta helskärmsläge', 'editor:filename' => 'Filnamn', 'editor:font_size' => 'Teckenstorlek', 'editor:hidden' => 'Dold', 'editor:hidden_comment' => 'Dolda sidor är endast tillgängliga genom inloggade back-end användare.', 'editor:highlight_active_line' => 'Markera aktiv rad', 'editor:layout' => 'Layout', 'editor:markup' => 'Markup', 'editor:menu_description' => 'Anpassa dina preferenser för kodredigering, så som typsnitt och färgschema.', 'editor:menu_label' => 'Kodnings preferenser', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta-beskrivning', 'editor:meta_title' => 'Meta-titel', 'editor:new_title' => 'Ny sidtitel', 'editor:preview' => 'Förhandsgranska', 'editor:settings' => 'Inställningar', 'editor:show_gutter' => 'Visa ränna', 'editor:show_invisibles' => 'Visa dolda tecken', 'editor:tab_size' => 'Tab längd', 'editor:theme' => 'Färgschema', 'editor:title' => 'Titel', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Indentera med tab', 'editor:word_wrap' => 'Radbryting', 'event_log:created_at' => 'Datum och tid', 'event_log:empty_link' => 'Töm händelseloggen', 'event_log:empty_loading' => 'Tömmer händelselogg...', 'event_log:empty_success' => 'Lyckades tömma händelseloggen.', 'event_log:hint' => 'Denna logg visar en lista över potentiella fel som uppstår i applikationen, såsom undantag och felsökningsinformation.', 'event_log:id' => 'ID', 'event_log:id_label' => 'Händelse-ID', 'event_log:level' => 'Nivå', 'event_log:menu_description' => 'Visa systemloggmeddelanden med respektive tid och detaljer.', 'event_log:menu_label' => 'Händelselogg', 'event_log:message' => 'Meddelande', 'event_log:return_link' => 'Återvänd till händelseloggen', 'field:invalid_type' => 'Felaktig fälttyp använd :type.', 'field:options_method_not_exists' => 'Modelklassen :model måste definera en metod :method() som returnerar villkor för formfältet \\":field\\"', 'file:create_fail' => 'Kunde inte skapa fil: :name', 'fileupload:attachment' => 'Bilaga', 'fileupload:attachment_url' => 'Bilage-URL', 'fileupload:default_prompt' => 'Klicka på %s eller dra en fil hit för att ladda upp', 'fileupload:description_label' => 'Beskriving', 'fileupload:help' => 'Lägg till en och beskriving för denna bilagan.', 'fileupload:remove_confirm' => 'Är du säker?', 'fileupload:remove_file' => 'Radera fil', 'fileupload:title_label' => 'Titel', 'fileupload:upload_error' => 'Fel vid uppladdning', 'fileupload:upload_file' => 'Ladda upp fil', 'filter:all' => 'alla', 'form:action_confirm' => 'Är du säker?', 'form:add' => 'Lägg till', 'form:apply' => 'Spara', 'form:behavior_not_ready' => 'Formuläregenskap har ej blivit initierad, kontrollera att du anropat initForm() i din controller', 'form:cancel' => 'Avbryt', 'form:close' => 'Stäng', 'form:complete' => 'Slutför', 'form:concurrency_file_changed_description' => 'Filen du redigerar har ändrats av en annan användare. Du kan antingen ladda om sidan och förlora dina ändringar eller skriva över filen med dina ändringar.', 'form:concurrency_file_changed_title' => 'Filen var ändrad', 'form:confirm' => 'Bekräfta', 'form:confirm_tab_close' => 'Vill du verkligen stänga fliken? Ej sparade ändringar kommer gå förlorade', 'form:create' => 'Skapa', 'form:create_and_close' => 'Skapa och stäng', 'form:create_success' => ':name är nu skapad', 'form:create_title' => 'Ny :name', 'form:creating' => 'Skapar...', 'form:creating_name' => 'Skapar :name...', 'form:delete' => 'Radera', 'form:delete_row' => 'Radera rad', 'form:delete_success' => ':name kunde ej raderas', 'form:deleting' => 'Raderar...', 'form:deleting_name' => 'Raderar :name...', 'form:field_off' => 'Av', 'form:field_on' => 'På', 'form:insert_row' => 'Lägg till rad', 'form:missing_definition' => 'Formuläregenskapen saknar ett fält för \':field\'', 'form:missing_id' => 'Rad-ID för formuläret har ej blivit specificerat', 'form:missing_model' => 'Formuläregenskapen som används i :class har ingen modell definierad', 'form:not_found' => 'Rad-ID :id för formuläret kunde ej hittas', 'form:ok' => 'OK', 'form:or' => 'eller', 'form:preview_no_files_message' => 'Filen är inte uppladdad', 'form:preview_no_record_message' => 'Ingen rad är vald.', 'form:preview_title' => 'Förhandsgranska :name', 'form:reload' => 'Ladda om', 'form:reset_default' => 'Äterställ till utgångsläge', 'form:resetting' => 'Återställer', 'form:resetting_name' => 'Återställer :name', 'form:save' => 'Spara', 'form:save_and_close' => 'Spara och stäng', 'form:saving' => 'Sparar...', 'form:saving_name' => 'Sparar :name...', 'form:select' => 'Välj', 'form:select_all' => 'alla', 'form:select_none' => 'ingen', 'form:select_placeholder' => 'Vänligen välj', 'form:undefined_tab' => 'Övrigt', 'form:update_success' => ':name har blivit uppdaterad', 'form:update_title' => 'Redigera :name', 'install:install_completing' => 'Installationen är klar', 'install:install_success' => 'Tillägget har installerats', 'install:missing_plugin_name' => 'Välj ett tilläggsnamn att installera', 'install:missing_theme_name' => 'Vänligen specificera ett tema att installera.', 'install:plugin_label' => 'Installera tillägg', 'install:project_label' => 'Länka till Projekt', 'install:theme_label' => 'Installera tema', 'layout:delete_confirm_multiple' => 'Vill du verkligen radera valda layouter?', 'layout:delete_confirm_single' => 'Vill du verkligen radera denna layouter?', 'layout:menu_label' => 'Layouter', 'layout:new' => 'Ny layout', 'layout:no_list_records' => 'Inga layouter funna', 'layout:not_found_name' => 'Layouten \':name\' hittades ej', 'layout:unsaved_label' => 'Osparade layouter', 'list:behavior_not_ready' => 'Listegenskapen har inte blivit initierad, kontrollera att du har anropat makeLists() i din controller', 'list:default_title' => 'Lista', 'list:delete_selected' => 'Radera utvald', 'list:delete_selected_confirm' => 'Ta bort de markerade posterna?', 'list:delete_selected_empty' => 'Det finns inga markerad post att radera.', 'list:delete_selected_success' => 'De markerade posterna är raderade.', 'list:invalid_column_datetime' => 'Kolumns värde \':column\' är inte ett DateTime objekt, saknar du en $dates referens i Model?', 'list:loading' => 'Laddar...', 'list:missing_column' => 'Det finns inga kolumndefinitioner för :columns', 'list:missing_columns' => 'Listan som används i :class har inga listkolumner definerade', 'list:missing_definition' => 'Listegenskapen saknar en kolumn för \':field\'', 'list:missing_model' => 'List-egenskapen i :class har ingen modell definerad', 'list:next_page' => 'Nästa sida', 'list:no_records' => 'Det finns inga träffar för denna vy', 'list:pagination' => 'Visade poster: :from-:to av :total', 'list:prev_page' => 'Föregående sida', 'list:records_per_page' => 'Poster per sida', 'list:records_per_page_help' => 'Välj antalet poster som ska visas per sida. Observera att högt antal poster per sida kan påverka prestandan.', 'list:search_prompt' => 'Sök...', 'list:setup_help' => 'Använd kryssrutorna för att välja kolumner du vill se i listan. Du kan ändra positionen på kolumnerna genom att dra dem upp eller ner.', 'list:setup_title' => 'List inställningar', 'locale:cs' => 'Czech', 'locale:de' => 'Tyska', 'locale:el' => 'Grekiska', 'locale:en' => 'Engelska', 'locale:es' => 'Spanska', 'locale:es-ar' => 'Spanska (Argentina)', 'locale:fa' => 'Persiska', 'locale:fr' => 'Franska', 'locale:hu' => 'Ungerska', 'locale:id' => 'Indonesiska (Bahasa Indonesia)', 'locale:it' => 'Italienska', 'locale:ja' => 'Japanska', 'locale:lv' => 'Latviska', 'locale:nb-no' => 'Norska (Bokmål)', 'locale:nl' => 'Holländska', 'locale:pl' => 'Polska', 'locale:pt-br' => 'Brasiliansk portugisiska', 'locale:ro' => 'Rumänska', 'locale:ru' => 'Ryska', 'locale:se' => 'Svenska', 'locale:sk' => 'Slovakiska (Slovakien)', 'locale:tr' => 'Turkiska', 'locale:zh-cn' => 'Kinesiska (Kina)', 'locale:zh-tw' => 'Kinesiska (Taiwan)', 'mail:drivers_hint_content' => 'Den här e-postmetoden kräver att tillägget \\":plugin\\" är installerat innan du kan skicka e-post.', 'mail:drivers_hint_header' => 'Drivrutiner är inte installerade', 'mail:general' => 'Generellt', 'mail:log_file' => 'Loggfiler', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun domän', 'mail:mailgun_domain_comment' => 'Vänligen ange Mailgun domännamnet.', 'mail:mailgun_secret' => 'Mailgun hemlighet', 'mail:mailgun_secret_comment' => 'Ange din Mailgun API-nyckel.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill hemlighet', 'mail:mandrill_secret_comment' => 'Ange din API-nyckel.', 'mail:menu_description' => 'Hantera e-postinställningar', 'mail:menu_label' => 'E-postkonfiguration', 'mail:method' => 'E-postmetod', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'Avsändarens e-postadress', 'mail:sender_name' => 'Avsändarnamn', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Sendmail-sökväg', 'mail:sendmail_path_comment' => 'Vänligen ange sökvägen till sendmail', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'SMTP-adress', 'mail:smtp_authorization' => 'SMTP-autentisering krävs', 'mail:smtp_authorization_comment' => 'Om din server kräver autentisering, markerar du denna checkbox', 'mail:smtp_encryption' => 'SMTP-krypteringsprotokoll', 'mail:smtp_encryption_none' => 'Ingen kryptering', 'mail:smtp_encryption_ssl' => 'SSL', 'mail:smtp_encryption_tls' => 'TLS', 'mail:smtp_password' => 'Lösenord', 'mail:smtp_port' => 'SMTP-port', 'mail:smtp_ssl' => 'SSL-anslutning krävs', 'mail:smtp_username' => 'Användarnamn', 'mail_templates:code' => 'Kod', 'mail_templates:code_comment' => 'Unik kod som används för att hänvisa till den här mallen', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Text', 'mail_templates:description' => 'Beskrivning', 'mail_templates:layout' => 'Layout', 'mail_templates:layouts' => 'Layouter', 'mail_templates:menu_description' => 'Ändra e-postmallar som skickas till användare och administratörer, hantera e-postlayouter.', 'mail_templates:menu_label' => 'E-postmall', 'mail_templates:menu_layouts_label' => 'E-postmallar', 'mail_templates:name' => 'Namn', 'mail_templates:name_comment' => 'Unikt namn för att hänvisa till den här mallen', 'mail_templates:new_layout' => 'Ny layout', 'mail_templates:new_template' => 'Ny mall', 'mail_templates:no_layout' => '-- ingen layout --', 'mail_templates:return' => 'Återvänd till mallistan', 'mail_templates:saving' => 'Sparar mall...', 'mail_templates:sending' => 'Skickar testmeddelande...', 'mail_templates:subject' => 'Ämne', 'mail_templates:subject_comment' => 'Mailets ämne', 'mail_templates:template' => 'Mall', 'mail_templates:templates' => 'Mallar', 'mail_templates:test_confirm' => 'Ett testmeddelande kommer skickas till :email. Fortsätt?', 'mail_templates:test_send' => 'Skicka ett testmeddelande', 'mail_templates:test_success' => 'Testmeddelandet har skickats.', 'maintenance:is_enabled' => 'Akrivera underhållsläge-läget', 'maintenance:is_enabled_comment' => 'När den är aktiverad så kommer besökare att se sidan som väljs nedan.', 'maintenance:settings_menu' => 'Underhållsläge', 'maintenance:settings_menu_description' => 'Konfigurera underhållsläge-sidan och växla inställningen.', 'markdowneditor:bold' => 'Fet', 'markdowneditor:code' => 'Kod', 'markdowneditor:formatting' => 'Formatering', 'markdowneditor:fullscreen' => 'Fullskärm', 'markdowneditor:header1' => 'Rubrik 1', 'markdowneditor:header2' => 'Rubrik 2', 'markdowneditor:header3' => 'Rubrik 3', 'markdowneditor:header4' => 'Rubrik 4', 'markdowneditor:header5' => 'Rubrik 5', 'markdowneditor:header6' => 'Rubrik 6', 'markdowneditor:horizontalrule' => 'Infoga horisontiell linje', 'markdowneditor:image' => 'Bild', 'markdowneditor:italic' => 'Kursiv', 'markdowneditor:link' => 'Länk', 'markdowneditor:orderedlist' => 'Ordnad lista', 'markdowneditor:preview' => 'Förhandsgranska', 'markdowneditor:quote' => 'Citat', 'markdowneditor:unorderedlist' => 'Oordnad lista', 'markdowneditor:video' => 'Video', 'media:add_folder' => 'Ny mapp', 'media:click_here' => 'Klicka här', 'media:crop_and_insert' => 'Beskär & infoga', 'media:delete' => 'Radera', 'media:delete_confirm' => 'Är du säker att du vill radera de valda föremålen?', 'media:delete_empty' => 'Vänligen välj föremål att radera.', 'media:display' => 'Visa', 'media:empty_library' => 'Mediabiblioteket är tomt. Ladda upp filer eller skapa mappar för att börja.', 'media:error_creating_folder' => 'Fel vid skapande av mapp', 'media:error_renaming_file' => 'Fel vid namnbyte av föremålet.', 'media:filter_audio' => 'Ljud', 'media:filter_documents' => 'Dokument', 'media:filter_everything' => 'Allt', 'media:filter_images' => 'Bilder', 'media:filter_video' => 'Videor', 'media:folder' => 'Mapp', 'media:folder_name' => 'Mappnamn', 'media:folder_or_file_exist' => 'En mapp eller fil med det angivna namnet existerar redan.', 'media:folder_size_items' => 'föremål', 'media:height' => 'Höjd', 'media:image_size' => 'Bildstorlek:', 'media:insert' => 'Infoga', 'media:invalid_path' => 'Felaktig filsökväg angiven: \':path\'.', 'media:last_modified' => 'Senast ändrad', 'media:library' => 'Bibliotek', 'media:menu_label' => 'Media', 'media:move' => 'Flytta', 'media:move_dest_src_match' => 'Vänligen välj en annan destinationsmapp.', 'media:move_destination' => 'Destinationsmapp', 'media:move_empty' => 'Vänligen välj föremål att flytta.', 'media:move_popup_title' => 'Flytta filer eller mappar', 'media:multiple_selected' => 'Flera föremål valda.', 'media:new_folder_title' => 'Ny mapp', 'media:no_files_found' => 'Inga filer kunde hittas baserat på din sökning.', 'media:nothing_selected' => 'Inget är valt.', 'media:order_by' => 'Ordna efter', 'media:please_select_move_dest' => 'Vänligen välj en destinationsmapp.', 'media:public_url' => 'Publik URL', 'media:resize' => 'Anpassa storlek...', 'media:resize_image' => 'Anpassa bildstorlek', 'media:restore' => 'Ångra alla ändringar', 'media:return_to_parent' => 'Återgå till mappens förälder', 'media:return_to_parent_label' => 'Upp ..', 'media:search' => 'Sök', 'media:select_single_image' => 'Vänligen välj en enskild bild.', 'media:selected_size' => 'Vald:', 'media:selection_mode' => 'Urvalsläge', 'media:selection_mode_fixed_ratio' => 'Fast proportion', 'media:selection_mode_fixed_size' => 'Fast storlek', 'media:selection_mode_normal' => 'Normal', 'media:selection_not_image' => 'Det valda föremålet är inte en bild.', 'media:size' => 'Storlek', 'media:thumbnail_error' => 'Fel vid generering av thumbnail.', 'media:title' => 'Titel', 'media:upload' => 'Ladda upp', 'media:uploading_complete' => 'Uppladdning slutförd', 'media:uploading_file_num' => 'Laddar upp :number fil(er)...', 'media:width' => 'Bredd', 'mediafinder:default_prompt' => 'Klicka på %s knappen för att hitta ett mediaföremål', 'mediamanager:insert_audio' => 'Infoga ljud', 'mediamanager:insert_image' => 'Infoga bild', 'mediamanager:insert_link' => 'Infoga medialänk', 'mediamanager:insert_video' => 'Infoga video', 'mediamanager:invalid_audio_empty_insert' => 'Vänligen välj en ljudfil att infoga.', 'mediamanager:invalid_file_empty_insert' => 'Vänligen välj en fil att infoga till länken.', 'mediamanager:invalid_file_single_insert' => 'Vänligen välj en enskild fil.', 'mediamanager:invalid_image_empty_insert' => 'Vänligen välj bild(er) att infoga.', 'mediamanager:invalid_video_empty_insert' => 'Vänligen välj en video att infoga.', 'model:invalid_class' => 'Modellen :model i klass :class är ej giltig. Den måste ärva från \\Model-klassen', 'model:mass_assignment_failed' => 'Mass uppdraget misslyckades för Modell-attributet \':attribute\'.', 'model:missing_id' => 'Det finns inget ID anviget för modellen', 'model:missing_method' => 'Modellen \':class\' innehåller inte metoden \':method\'.', 'model:missing_relation' => 'Modellen \':class\' saknar en definition för \':relation\'', 'model:name' => 'Modell', 'model:not_found' => 'Modellen \':class\' med ID :id kunde ej hittas', 'myaccount:menu_description' => 'Uppdatera dina kontouppgifter såsom namn, e-postadress och lösenord.', 'myaccount:menu_keywords' => 'säkerhets inloggning', 'myaccount:menu_label' => 'Mitt konto', 'mysettings:menu_description' => 'Inställningar rörande ditt administrationskonto', 'mysettings:menu_label' => 'Mina inställningar', 'page:access_denied:cms_link' => 'Gå till CMS backend', 'page:access_denied:help' => 'Du har inte behörighet att visa den här sidan.', 'page:access_denied:label' => 'Nekat tillträde', 'page:custom_error:help' => 'Tyvärr kan inte sidan visas', 'page:custom_error:label' => 'Sidfel', 'page:delete_confirm_multiple' => 'Vill du verkligen radera markerade sidor?', 'page:delete_confirm_single' => 'Vill du verkligen radera denna sida?', 'page:invalid_token:label' => 'Ogiltig säkerhetstoken', 'page:invalid_url' => 'Felaktigt URL-format. URLen skall starta med ett / och kan innehålla siffror, bokstäver och följande tecken: ._-[]:?|/+*^$', 'page:menu_label' => 'Sidor', 'page:new' => 'Ny sida', 'page:no_layout' => '-- ingen layout --', 'page:no_list_records' => 'Inga sidor funna', 'page:not_found:help' => 'Den begärda sidan kunde ej hittas', 'page:not_found:label' => 'Sidan kunde ej hittas', 'page:not_found_name' => 'The page \':name\' is not found', 'page:unsaved_label' => 'Osparade sidor', 'page:untitled' => 'Ej namngiven', 'partial:delete_confirm_multiple' => 'Vill du verkligen radera markerade partials?', 'partial:delete_confirm_single' => 'Vill du verkligen radera denna partial?', 'partial:invalid_name' => 'Felaktigt partialnamn: :name', 'partial:menu_label' => 'Partials', 'partial:new' => 'Ny partial', 'partial:no_list_records' => 'Inga partials funna', 'partial:not_found_name' => 'En partial med namn \':name\' kunde ej hittas', 'partial:unsaved_label' => 'Osparade partials', 'permissions:access_logs' => 'Visa systemloggen', 'permissions:manage_assets' => 'Hantera filer', 'permissions:manage_branding' => 'Anpassa back-end', 'permissions:manage_content' => 'Hantera innehåll', 'permissions:manage_editor' => 'Hantera inställningar för kodredigerare', 'permissions:manage_layouts' => 'Hantera layouts', 'permissions:manage_mail_settings' => 'Hantera e-postinställningar', 'permissions:manage_mail_templates' => 'Hantera e-postmallar', 'permissions:manage_media' => 'Hantera media', 'permissions:manage_other_administrators' => 'Hantera andra administratörer', 'permissions:manage_pages' => 'Hantera sidor', 'permissions:manage_partials' => 'Hantera partials', 'permissions:manage_preferences' => 'Hantera inställningar för back-end', 'permissions:manage_software_updates' => 'Hantera systemuppdateringar', 'permissions:manage_system_settings' => 'Hantera systeminställningar', 'permissions:manage_themes' => 'Hantera teman', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => 'Visa kontrollpanelen', 'plugin:label' => 'Tillägg', 'plugin:name:help' => 'Namnge tillägget efter dess unika kod. Exempelvis RainLab.Blog', 'plugin:name:label' => 'Tilläggsnamn', 'plugin:unnamed' => 'Namnlöst tillägg', 'plugins:disable_confirm' => 'Är du säker?', 'plugins:disable_success' => 'Tilläggen avaktiverades.', 'plugins:disabled_help' => 'De avaktiverade tilläggen ignorerades av systemet.', 'plugins:disabled_label' => 'Avaktivera', 'plugins:enable_or_disable' => 'Aktivera eller inaktivera', 'plugins:enable_or_disable_title' => 'Aktivera eller inaktivera tillägg', 'plugins:enable_success' => 'Aktiverade tilläggen.', 'plugins:frozen_help' => 'Tillägg som är frusna kommer att ignoreras av uppdateringsprocessen.', 'plugins:frozen_label' => 'Frys uppdateringar', 'plugins:install' => 'Installera tillägg', 'plugins:install_products' => 'Installera produkter', 'plugins:installed' => 'Installerade tillägg', 'plugins:manage' => 'Hantera tillägg', 'plugins:no_plugins' => 'Det finns inga tillägg installerade från marknadsplatsen.', 'plugins:recommended' => 'Rekommenderat', 'plugins:refresh' => 'Uppdatera', 'plugins:refresh_confirm' => 'Är du säker?', 'plugins:refresh_success' => 'Tilläggen uppdaterades.', 'plugins:remove' => 'Ta bort', 'plugins:remove_confirm' => 'Är du säker?', 'plugins:remove_success' => 'Tilläggen raderades.', 'plugins:search' => 'sök efter tillägg att installera...', 'plugins:selected_amount' => 'Markerade tillägg: :amount', 'plugins:unknown_plugin' => 'Tillägget har raderats.', 'project:attach' => 'Länka projekt', 'project:detach' => 'Avlänka projekt', 'project:detach_confirm' => 'Vill du verkligen avlänka detta projekt?', 'project:id:help' => 'Hur du hittar ditt Projekt-ID', 'project:id:label' => 'Projekt-ID', 'project:id:missing' => 'Vänligen välj ett Projekt-ID', 'project:name' => 'Projekt', 'project:none' => 'Inget', 'project:owner_label' => 'Ägare', 'project:unbind_success' => 'Projektet har avlänkats', 'relation:add' => 'Lägg till', 'relation:add_a_new' => 'Lägg till en ny :name', 'relation:add_name' => 'Lägg till :name', 'relation:add_selected' => 'Lägg till vald', 'relation:cancel' => 'Avbryt', 'relation:close' => 'Stäng', 'relation:create' => 'Skapa', 'relation:create_name' => 'Skapa :name', 'relation:delete' => 'Radera', 'relation:delete_confirm' => 'Är du säker?', 'relation:delete_name' => 'Radera :name', 'relation:help' => 'Klicka på en post för att lägga till', 'relation:invalid_action_multi' => 'Denna åtgärd kan inte appliceras på flera relationer', 'relation:invalid_action_single' => 'Den här åtgärden kan inte appliceras på en enskild relation', 'relation:link' => 'Länka', 'relation:link_a_new' => 'Länka en ny :name', 'relation:link_name' => 'Länka :name', 'relation:link_selected' => 'Länka vald', 'relation:missing_config' => 'Relations beteendet har ingen konfiguration för \': config \'.', 'relation:missing_definition' => 'Relationen saknar en definintion för \':field\'', 'relation:missing_model' => 'Relationen som används i :class har ingen modell definierad', 'relation:preview' => 'Förhandsgranska', 'relation:preview_name' => 'Förhandsgranska :name', 'relation:related_data' => 'Relaterad :name data', 'relation:remove' => 'Ta bort', 'relation:remove_name' => 'Ta bort :name', 'relation:unlink' => 'Avlänka', 'relation:unlink_confirm' => 'Är du säker?', 'relation:unlink_name' => 'Avlänka :name', 'relation:update' => 'Uppdatera', 'relation:update_name' => 'Uppdatera :name', 'reorder:default_title' => 'Ordna om rader', 'reorder:no_records' => 'Det finns inga rader att sortera.', 'request_log:count' => 'Räknare', 'request_log:empty_link' => 'Töm förfrågningsloggen', 'request_log:empty_loading' => 'Tömmer förfrågningsloggen...', 'request_log:empty_success' => 'Lyckades tömma förfrågningsloggen.', 'request_log:hint' => 'Denna loggen visar en lista med förfrågningar från webbläsare som kan kräva uppmärksamhet. Till exempel, om en besökare öppnar en CMS sida som inte kan hittas, så skapas en post med statuskoden 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'Logg-ID', 'request_log:menu_description' => 'Visa otillåtna eller omdirigerade förfrågningar, så som Sidan kunde inte hittas (404).', 'request_log:menu_label' => 'Förfrågningslogg', 'request_log:referer' => 'Hänvisning', 'request_log:return_link' => 'Återvänd till förfrågningsloggen', 'request_log:status_code' => 'Status', 'request_log:url' => 'URL', 'server:connect_error' => 'Ett fel uppstod vid anslutning till servern.', 'server:file_corrupt' => 'Filen från servern är korrupt.', 'server:file_error' => 'Servern kunde inte leverera paketet.', 'server:response_empty' => 'Tomt svar från servern.', 'server:response_invalid' => 'Felaktigt svar från servern.', 'server:response_not_found' => 'Uppdateringsserver kunde ej hittas.', 'settings:menu_label' => 'Inställningar', 'settings:missing_model' => 'Inställningssidan saknar en modell-definition', 'settings:not_found' => 'Det går inte att hitta de angivna inställningarna.', 'settings:return' => 'Återgå till systeminställningar', 'settings:search' => 'Sök', 'settings:update_success' => 'Inställningar för :name har uppdaterats', 'sidebar:add' => 'Lägg till', 'sidebar:search' => 'Sök...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Kunder', 'system:categories:events' => 'Händelser', 'system:categories:logs' => 'Loggar', 'system:categories:mail' => 'Mail', 'system:categories:misc' => 'Övrigt', 'system:categories:my_settings' => 'Mina inställningar', 'system:categories:shop' => 'Affär', 'system:categories:social' => 'Social', 'system:categories:system' => 'System', 'system:categories:team' => 'Lag', 'system:categories:users' => 'Användare', 'system:menu_label' => 'System', 'system:name' => 'System', 'template:invalid_type' => 'Felaktig malltyp', 'template:not_found' => 'Den angivna mallen kunde ej hittas', 'template:saved' => 'Mallen har sparats', 'theme:activate_button' => 'Aktivera', 'theme:active:not_found' => 'Kunde inte hitta det aktiva temat.', 'theme:active:not_set' => 'Ett aktivt tema är ej valt', 'theme:active_button' => 'Aktivera', 'theme:author_label' => 'Författare', 'theme:author_placeholder' => 'Person eller företagsnamn', 'theme:code_label' => 'Kod', 'theme:code_placeholder' => 'En unik kod för detta tema som används för distribution', 'theme:create_button' => 'Skapa', 'theme:create_new_blank_theme' => 'Skapa ett nytt blankt tema', 'theme:create_theme_required_name' => 'Vänligen ange ett namn för temat.', 'theme:create_theme_success' => 'Lyckades skapa temat!', 'theme:create_title' => 'Skapa tema', 'theme:customize_button' => 'Anpassa', 'theme:customize_theme' => 'Anpassa tema', 'theme:default_tab' => 'Egenskaper', 'theme:delete_active_theme_failed' => 'Du kan inte att readera det akriva temat, försök markera ett annat tema som aktivt först.', 'theme:delete_button' => 'Radera', 'theme:delete_confirm' => 'Är du säker på att du vill readera detta tema?? Det kan inte bli ogjort!', 'theme:delete_theme_success' => 'Lyckades radera temat!', 'theme:description_label' => 'Beskrivning', 'theme:description_placeholder' => 'Tema beskrivning', 'theme:dir_name_create_label' => 'Destinationen för temakatalogen', 'theme:dir_name_invalid' => 'Namn kan bara innehålla siffror, latinska bokstäver och följande symboler: _-', 'theme:dir_name_label' => 'Katalognamn', 'theme:dir_name_taken' => 'Den önskade temakatalogen finns redan.', 'theme:duplicate_button' => 'Duplicera', 'theme:duplicate_theme_success' => 'Lyckades duplicera temat!', 'theme:duplicate_title' => 'Duplicera temat', 'theme:edit:not_found' => 'Redigeringstemat kunde ej hittas', 'theme:edit:not_match' => 'Objektet du försöker komma åt tillhör inte det tema som för håller på att redigeras. Var god ladda om sidan', 'theme:edit:not_set' => 'Redigeringstemat är ej valt', 'theme:edit_properties_button' => 'Redigera egenskaper', 'theme:edit_properties_title' => 'Tema', 'theme:export_button' => 'Exportera', 'theme:export_folders_comment' => 'Vänligen välj temamappen du vill importera', 'theme:export_folders_label' => 'Mappar', 'theme:export_title' => 'Exportera tema', 'theme:find_more_themes' => 'Hitta fler teman på OctoberCMS Theme Marketplace', 'theme:homepage_label' => 'Hemsida', 'theme:homepage_placeholder' => 'Webbadress', 'theme:import_button' => 'Importera', 'theme:import_folders_comment' => 'Vänligen ange temamappen som du vill importera', 'theme:import_folders_label' => 'Mappar', 'theme:import_overwrite_comment' => 'Avmarkera rutan för att endast importera nya filer', 'theme:import_overwrite_label' => 'Skriv över befintliga filer', 'theme:import_theme_success' => 'Lyckades importera temat!', 'theme:import_title' => 'Importera tema', 'theme:import_uploaded_file' => 'Tema akrivfil', 'theme:label' => 'Tema', 'theme:manage_button' => 'Hantera', 'theme:manage_title' => 'Hantera teman', 'theme:name:help' => 'Namnge temat med en unik kod. Till exempel, RainLab.Vanilla', 'theme:name:label' => 'Temanamn', 'theme:name_create_placeholder' => 'Nytt tema namn', 'theme:name_label' => 'Namn', 'theme:new_directory_name_comment' => 'Ange ett nytt katalognamn för det duplicerade temat.', 'theme:new_directory_name_label' => 'Temamappen', 'theme:not_found_name' => 'Kunde inte hitta temat \':name\'.', 'theme:return' => 'Återvänd till temalistan', 'theme:save_properties' => 'Spara egenskaperna', 'theme:saving' => 'Sparar tema...', 'theme:settings_menu' => 'Front-end tema', 'theme:settings_menu_description' => 'Förhandsgranska listan av installerade teman och välj ett aktivt tema.', 'theme:theme_label' => 'Tema', 'theme:theme_title' => 'Teman', 'theme:unnamed' => 'Namnlöst tema', 'themes:install' => 'Installerar teman', 'themes:installed' => 'Installerade teman', 'themes:no_themes' => 'Det finns inga teman installerade från marknadsplatsen.', 'themes:recommended' => 'Rekommenderat', 'themes:remove_confirm' => 'Är du säker på att du vill radera det här temat?', 'themes:search' => 'sök efter teman att installera...', 'tooltips:preview_website' => 'Förhandsgranska websidan', 'updates:check_label' => 'Sök efter uppdateringar', 'updates:core_build' => 'Build :build', 'updates:core_build_help' => 'Senaste build är tillgänglig.', 'updates:core_current_build' => 'Nuvarande build', 'updates:core_downloading' => 'Laddar ner applikationsfiler', 'updates:core_extracting' => 'Packar upp applikationsfiler', 'updates:details_author' => 'Författare', 'updates:details_current_version' => 'Nuvarande version', 'updates:details_readme' => 'Dokumentation', 'updates:details_readme_missing' => 'Det finns ingen dokumentation tillgänglig.', 'updates:details_title' => 'Tilläggsdetaljer', 'updates:details_upgrades' => 'Uppgraderingsguide', 'updates:details_upgrades_missing' => 'Det finns inga uppgraderingsinstruktioner tillgängliga.', 'updates:details_view_homepage' => 'Visa hemsida', 'updates:disabled' => 'Avaktiverade', 'updates:force_label' => 'Tvinga uppdatering', 'updates:found:help' => 'Klicka på Uppdatera systemet för att påbörja processen.', 'updates:found:label' => 'Hittade nya uppdateringar!', 'updates:important_action:confirm' => 'Bekräfta uppdatering', 'updates:important_action:empty' => 'Välj åtgärd', 'updates:important_action:ignore' => 'Hoppa över detta tillägg (alltid)', 'updates:important_action:skip' => 'Hoppa över detta tillägg (en gång)', 'updates:important_action_required' => 'Åtgärd krävs', 'updates:important_alert_text' => 'Några uppdateringar behöver din uppmärksamhet.', 'updates:important_view_guide' => 'Visa uppgraderingsguide', 'updates:menu_description' => 'Uppdatera systemet, hantera och installera tillägg och teman.', 'updates:menu_label' => 'Uppdateringar', 'updates:name' => 'Uppdatera systemet', 'updates:none:help' => 'Inga nya uppdateringar hittades.', 'updates:none:label' => 'Inga uppdateringar', 'updates:plugin_author' => 'Skapare', 'updates:plugin_code' => 'Kod', 'updates:plugin_current_version' => 'Nuvarande version', 'updates:plugin_description' => 'Beskrivning', 'updates:plugin_downloading' => 'Laddar ner tillägg: :name', 'updates:plugin_extracting' => 'Packar upp tillägg: :name', 'updates:plugin_name' => 'Namn', 'updates:plugin_version' => 'Version', 'updates:plugin_version_none' => 'Nytt tillägg', 'updates:plugins' => 'Tillägg', 'updates:retry_label' => 'Försök igen', 'updates:return_link' => 'Återgå till systemuppdateringar', 'updates:theme_downloading' => 'Ladda ner temat: :name', 'updates:theme_extracting' => 'Packar upp temat: :name', 'updates:theme_new_install' => 'Installation av nytt tema.', 'updates:themes' => 'Teman', 'updates:title' => 'Hantera uppdateringar', 'updates:update_completing' => 'Slutför uppdatering', 'updates:update_failed_label' => 'Updateringen misslyckades', 'updates:update_label' => 'Uppdatera systemet', 'updates:update_loading' => 'Laddar tillgängliga uppdateringar...', 'updates:update_success' => 'Uppdateringen är slutförd.', 'user:account' => 'Konto', 'user:allow' => 'Tillåt', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Vill du verkligen radera denna administratör?', 'user:deny' => 'Förbjud', 'user:email' => 'E-post', 'user:first_name' => 'Förnamn', 'user:full_name' => 'Fullständigt namn', 'user:group:code_comment' => 'Ange en unik kod om du vill komma åt det med API.', 'user:group:code_field' => 'Kod', 'user:group:delete_confirm' => 'Vill du verkligen radera denna administratörgrupp?', 'user:group:description_field' => 'Beskriving', 'user:group:is_new_user_default_field' => 'Lägg till nya administratörer till gruppen som standard', 'user:group:list_title' => 'Hantera grupper', 'user:group:menu_label' => 'Grupper', 'user:group:name' => 'Grupp', 'user:group:name_field' => 'Namn', 'user:group:new' => 'Ny administratörsgrupp', 'user:group:return' => 'Återgå till grupplistan', 'user:group:users_count' => 'Användare', 'user:groups' => 'Grupper', 'user:groups_comment' => 'Välj vilken grupp denna person hör till', 'user:inherit' => 'Ärv', 'user:last_name' => 'Efternamn', 'user:list_title' => 'Hantera administratörer', 'user:login' => 'Användarnamn', 'user:menu_description' => 'Hantera administratörs användare, grupper och behörigheter.', 'user:menu_label' => 'Administratörer', 'user:name' => 'Administratör', 'user:new' => 'Ny Administratör', 'user:password' => 'Lösenord', 'user:password_confirmation' => 'Bekräfta lösenord', 'user:permissions' => 'Rättigheter', 'user:preferences:not_authenticated' => 'Det finns ingen autentiserad användare att ladda eller spara inställningar för', 'user:return' => 'Återgå till administratörlistan', 'user:send_invite' => 'Inbjudan är sänd via e-post', 'user:send_invite_comment' => 'Markera denna checkbox för att skicka en inbjudan till användaren via e-post', 'user:superuser' => 'Superanvändare', 'user:superuser_comment' => 'Markera denna checkbox för att ge denna person tillgång till alla områden', 'validation:accepted' => ':attribute måste accepteras.', 'validation:active_url' => ':attribute är ej en korrekt URL.', 'validation:after' => ':attribute måste vara ett datum efter :date.', 'validation:alpha' => ':attribute får endast innehålla bokstäver.', 'validation:alpha_dash' => ':attribute får endast innehålla bokstäver, nummer och streck.', 'validation:alpha_num' => ':attribute får endast innehålla bokstäver och nummer', 'validation:array' => ':attribute måste vara en array.', 'validation:before' => ':attribute måste vara ett datum innan :date.', 'validation:between:array' => ':attribute måste ha mellan :min - :max objekt.', 'validation:between:file' => ':attribute måste vara mellan :min - :max kilobytes.', 'validation:between:numeric' => ':attribute måste vara mellan :min - :max.', 'validation:between:string' => ':attribute måste vara mellan :min - :max tecken.', 'validation:confirmed' => ':attribute bekräftelse matchar ej.', 'validation:date' => ':attribute är inte ett korrekt datum.', 'validation:date_format' => ':attribute matchar inte formatet :format.', 'validation:different' => ':attribute och :other måste skilja sig åt.', 'validation:digits' => ':attribute måste vara :digits siffror.', 'validation:digits_between' => ':attribute måste vara between :min and :max siffror.', 'validation:email' => ':attribute format är felaktigt.', 'validation:exists' => 'Valt :attribute är felaktigt.', 'validation:extensions' => ':attribute måste ha ett av följande filtillägg: :values.', 'validation:image' => ':attribute måste vara en bild.', 'validation:in' => 'Valt :attribute är felaktigt.', 'validation:integer' => ':attribute måste vara en siffra.', 'validation:ip' => ':attribute måste vara en giltig epost-adress.', 'validation:max:array' => ':attribute får inte innehålla mer än :max objekt.', 'validation:max:file' => ':attribute får inte vara större än :max kilobytes.', 'validation:max:numeric' => ':attribute får inte vara större än :max.', 'validation:max:string' => ':attribute får inte vara större än :max tecken.', 'validation:mimes' => ':attribute måste vara en fil av typen: :values.', 'validation:min:array' => ':attribute måste ha minst :min objekt.', 'validation:min:file' => ':attribute måste vara minst :min kilobytes.', 'validation:min:numeric' => ':attribute måste vara minst :min.', 'validation:min:string' => ':attribute måste vara minst :min tecken.', 'validation:not_in' => 'Valt :attribute är felaktigt.', 'validation:numeric' => ':attribute måste vara ett number.', 'validation:regex' => ':attribute format är felaktigt.', 'validation:required' => ':attribute field är obligatoriskt.', 'validation:required_if' => ':attribute field är obligatoriskt när :other is :value.', 'validation:required_with' => ':attribute field är obligatoriskt när :values är satt.', 'validation:required_without' => ':attribute field är obligatoriskt när :values ej är satt.', 'validation:same' => ':attribute and :other måste matcha.', 'validation:size:array' => ':attribute måste innehålla :size objekt.', 'validation:size:file' => ':attribute måste vara :size kilobytes.', 'validation:size:numeric' => ':attribute måste vara :size.', 'validation:size:string' => ':attribute måste vara :size tecken.', 'validation:unique' => ':attribute är redan upptaget.', 'validation:url' => 'Formatet :attribute är felaktigt.', 'warnings:extension' => 'PHP-tillägget: Namnet är inte installerat. Vänligen installera och aktivera det biblioteket.', 'warnings:permissions' => 'Katalogen :name eller dess underkataloger är inte skrivbara av PHP. Väligen ändra dess motsvarande behörigheter för web-servern i denna katalogen.', 'warnings:tips' => 'Systemkonfigurationstips', 'warnings:tips_description' => 'Det finns problem som du behöver åtgärda för att konfigurera systemet ordentligt.', 'widget:not_bound' => 'En widget med klassnamnet \':name\' saknas i controllern', 'widget:not_registered' => 'En widget med klassnamnet \':name\' har ej blivit registrerad', 'zip:extract_failed' => 'Kunde inte packa upp core-fil \':file\'.']);
示例#24
0
文件: roles.php 项目: dev-lucid/lucid
 function edit()
 {
     $this->addRule(['type' => 'lengthRange', 'label' => lucid::i18n()->translate('model:roles:name'), 'field' => 'name', 'min' => '2', 'max' => '255']);
     return $this;
 }
示例#25
0
文件: it.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Data e ora', 'access_log:email' => 'Indirizzo e-mail', 'access_log:first_name' => 'Nome', 'access_log:hint' => 'Questo registro visualizza un elenco dei tentativi di accesso di un amministratore avvenuti con successo. I record sono mantenuti per un totale di :days giorni.', 'access_log:ip_address' => 'Indirizzo IP', 'access_log:last_name' => 'Cognome', 'access_log:login' => 'Login', 'access_log:menu_description' => 'Visualizza una lista degli accessi da parte degli amministratori.', 'access_log:menu_label' => 'Registro accessi', 'account:apply' => 'Applica', 'account:cancel' => 'Annulla', 'account:delete' => 'Elimina', 'account:email_placeholder' => 'email', 'account:enter_email' => 'Inserisci in tuo indirizzo e-mail', 'account:enter_login' => 'Inserisci il tuo username.', 'account:enter_new_password' => 'Inserisci una nuova password', 'account:forgot_password' => 'Password dimenticata?', 'account:login' => 'Accedi', 'account:login_placeholder' => 'login', 'account:ok' => 'OK', 'account:password_placeholder' => 'password', 'account:password_reset' => 'Reimposta password', 'account:reset' => 'Reimposta', 'account:reset_error' => 'I dati forniti per la reimpostazione della password non sono validi. Riprova!', 'account:reset_fail' => 'Impossibile ripristinare la password!', 'account:reset_success' => 'La tua password è stata reimpostata con successo. Ora puoi effettuare l\'accesso.', 'account:restore' => 'Ripristina', 'account:restore_error' => 'Nessun utente con username \':login\' è stato trovato.', 'account:restore_success' => 'Le istruzioni per reimpostare la password sono state inviate al tuo indirizzo e-mail.', 'account:sign_out' => 'Esci', 'ajax_handler:invalid_name' => 'Nome del gestore AJAX non valido: :name.', 'ajax_handler:not_found' => 'Il gestore AJAX \':name\' non è stato trovato.', 'app:name' => 'October CMS', 'app:tagline' => 'Tornare alle origini', 'asset:already_exists' => 'Un file o cartella con questo nome è già esistente', 'asset:create_directory' => 'Crea cartella', 'asset:create_file' => 'Crea file', 'asset:delete' => 'Elimina', 'asset:destination_not_found' => 'Cartella di destinazione non trovata', 'asset:directory_name' => 'Nome della cartella', 'asset:directory_popup_title' => 'Nuova cartella', 'asset:drop_down_add_title' => 'Aggiungi...', 'asset:drop_down_operation_title' => 'Azioni...', 'asset:error_deleting_dir' => 'Errore durante l\'eliminazinoe della cartella :name.', 'asset:error_deleting_dir_not_empty' => 'Errore durante l\'eliminazione della cartella :name. La cartella non è vuota.', 'asset:error_deleting_directory' => 'Errore durante l\'eliminazione della cartella originale :dir', 'asset:error_deleting_file' => 'Errore durante l\'eliminazione del file :name.', 'asset:error_moving_directory' => 'Errore durante lo spostamento della cartella :dir', 'asset:error_moving_file' => 'Errore durante lo spostamento del file :file', 'asset:error_renaming' => 'Errore nella rinominazione del file o della cartella', 'asset:error_uploading_file' => 'Errore durante il caricamento del file \':name\': :error', 'asset:file_not_valid' => 'File non valido', 'asset:invalid_name' => 'Il nome può contenere solo numeri, lettere latine, spazi e i simboli seguenti: ._-', 'asset:invalid_path' => 'Il percorso può contenere solo numeri, lettere latine, spazi e i simboli seguenti: ._-/', 'asset:menu_label' => 'Assets', 'asset:move' => 'Sposta', 'asset:move_button' => 'Sposta', 'asset:move_destination' => 'Cartella di destinazione', 'asset:move_please_select' => 'seleziona', 'asset:move_popup_title' => 'Sposta assets', 'asset:name_cant_be_empty' => 'Il nome non può essere vuoto', 'asset:new' => 'Nuovo file', 'asset:original_not_found' => 'Il file o la cartella originali non sono stati trovati', 'asset:path' => 'Percorso', 'asset:rename' => 'Rinomina', 'asset:rename_new_name' => 'Nuovo nome', 'asset:rename_popup_title' => 'Rinomina', 'asset:select' => 'Seleziona', 'asset:select_destination_dir' => 'Seleziona una cartella di destinazione', 'asset:selected_files_not_found' => 'Files selezionati non trovati.', 'asset:too_large' => 'Il file caricato è troppo grande. La dimensione massima consentita è :max_size', 'asset:type_not_allowed' => 'Solo i seguenti tipi di file sono consentiti: :allowed_types', 'asset:unsaved_label' => 'Asset(s) non salvati', 'asset:upload_files' => 'Carica file(s)', 'auth:title' => 'Area di Amministrazione', 'backend_preferences:locale' => 'Lingua', 'backend_preferences:locale_comment' => 'Seleziona la lingua da utilizzare.', 'backend_preferences:menu_description' => 'Gestisci le preferenze del tuo account, come la lingua.', 'backend_preferences:menu_label' => 'Preferenze pannello di controllo', 'behavior:missing_property' => 'La classe :class deve definire la proprietà $:property utilizzata dalla funzione :behavior.', 'branding:app_name' => 'Nome dell\'applicazione', 'branding:app_name_description' => 'Questo campo verrà visualizzato nella barra del titolo del pannello di controllo.', 'branding:app_tagline' => 'Slogan dell\'applicazione', 'branding:app_tagline_description' => 'Questo campo verrà visualizzato nella schermata di login del pannello di controllo.', 'branding:brand' => 'Marchio', 'branding:colors' => 'Colori', 'branding:custom_stylesheet' => 'Foglio di stile personalizzato', 'branding:logo' => 'Logo', 'branding:logo_description' => 'Carica un logo personalizzato da utilizzare nel pannello di controllo.', 'branding:menu_description' => 'Personalizza l\'area di amministrazione, come il nome, i colori ed il logo.', 'branding:menu_label' => 'Personalizza pannello di controllo', 'branding:primary_dark' => 'Principale (Scuro)', 'branding:primary_light' => 'Principale (Chiaro)', 'branding:secondary_dark' => 'Secondario (Scuro)', 'branding:secondary_light' => 'Secondario (Chiaro)', 'branding:styles' => 'Stili', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Template eliminati correttamente: :count.', 'cms_object:error_creating_directory' => 'Errore nella creazione della cartella :name. Verifica le autorizzazioni di scrittura.', 'cms_object:error_deleting' => 'Errore nella cancellazione del file \':name\'. Verifica le autorizzazioni di scrittura.', 'cms_object:error_saving' => 'Errore nel salvataggio del file \':name\'. Verifica le autorizzazioni di scrittura.', 'cms_object:file_already_exists' => 'File \':name\' già esistente.', 'cms_object:file_name_required' => 'Il campo Nome file è obbligatorio.', 'cms_object:invalid_file' => 'Nome file non valido: :name. I nomi dei file possono contenere solo caratteri alfanumerici, underscores, trattini e punti. Alcuni esempi di nome di file corretti: page.htm, page, subdirectory/page', 'cms_object:invalid_file_extension' => 'Estensione del file non valida: :invalid. Le estensioni consentite sono: :allowed.', 'cms_object:invalid_property' => 'La proprietà \':name\' non può essere impostata', 'combiner:not_found' => 'Il file combinatore \':name\' non è stato trovato.', 'component:alias' => 'Alias', 'component:alias_description' => 'Un nome univoco fornito a questo componente quando utilizzato nella pagina o nel layout.', 'component:invalid_request' => 'Il template non può essere salvato a causa di dati dei componenti non validi.', 'component:menu_label' => 'Componenti', 'component:method_not_found' => 'Il componente \':name\' non contiene il metodo \':method\'.', 'component:no_description' => 'Nessuna descrizione fornita', 'component:no_records' => 'Nessun componente trovato', 'component:not_found' => 'Il componente \':name\' non è stato trovato.', 'component:unnamed' => 'Senza nome', 'component:validation_message' => 'L\'alias del componente è obbligatorio e può contenere solo lettere latine, numeri e underscores. L\'alias deve iniziare con una lettera.', 'config:not_found' => 'Il file di configurazione :file definito per :location non è stato trovato.', 'config:required' => 'La configurazione utilizzata in :location deve fornire un valore \':property\'.', 'content:delete_confirm_multiple' => 'Sei sicuro di voler eliminare i file o le cartelle di contenuti selezionate?', 'content:delete_confirm_single' => 'Sei sicuro di voler eliminare questo file di contenuti?', 'content:menu_label' => 'Contenuti', 'content:new' => 'Nuovo file di contenuti', 'content:no_list_records' => 'Nessun file di contenuto trovato', 'content:not_found_name' => 'Il file di contenuti \':name\' non è stato trovato.', 'content:unsaved_label' => 'Contenuti non salvati', 'dashboard:add_widget' => 'Aggiungi widget', 'dashboard:columns' => '{1} colonna|[2,Inf] colonne', 'dashboard:full_width' => 'intera larghezza', 'dashboard:menu_label' => 'Dashboard', 'dashboard:status:maintenance' => 'in manutenzione', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} aggiornamenti disponibili!|{1} aggiornamento disponibile!|[2,Inf] aggiornamenti disponibili!', 'dashboard:status:widget_title_default' => 'Stato del sistema', 'dashboard:widget_columns_description' => 'La larghezza del widget, un numero compreso tra 1 e 10.', 'dashboard:widget_columns_error' => 'La larghezza del widget deve essere un numero compreso tra 1 e 10.', 'dashboard:widget_columns_label' => 'Larghezza :columns', 'dashboard:widget_inspector_description' => 'Configura il widget', 'dashboard:widget_inspector_title' => 'Configurazione widget', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'Inserisci il widget su una nuova riga.', 'dashboard:widget_new_row_label' => 'Forza nuova riga', 'dashboard:widget_title_error' => 'Il titolo del widget è un campo obbligatorio.', 'dashboard:widget_title_label' => 'Titolo del widget', 'dashboard:widget_width' => 'Larghezza', 'directory:create_fail' => 'Impossibile creare la cartella: :name', 'editor:code' => 'Codice', 'editor:code_folding' => 'Raggruppa il codice', 'editor:content' => 'Contenuto', 'editor:description' => 'Descrizione', 'editor:enter_fullscreen' => 'Visualizza a schermo intero', 'editor:exit_fullscreen' => 'Esci dalla visualizzazione a schermo intero', 'editor:filename' => 'Nome file', 'editor:font_size' => 'Dimensione carattere', 'editor:hidden' => 'Nascosto', 'editor:hidden_comment' => 'Le pagine nascoste sono accessibili solo dagli utenti collegati al pannello di controllo.', 'editor:highlight_active_line' => 'Evidenzia la linea attiva', 'editor:layout' => 'Layout', 'editor:markup' => 'Markup', 'editor:menu_description' => 'Personalizza le impostazioni dell\'editor, come la dimensione del carattere e lo schema di colori.', 'editor:menu_label' => 'Preferenze editor di codice', 'editor:meta' => 'Metadati', 'editor:meta_description' => 'Meta Descrizione', 'editor:meta_title' => 'Meta Titolo', 'editor:new_title' => 'Titolo nuova pagina', 'editor:preview' => 'Anteprima', 'editor:settings' => 'Impostazioni', 'editor:show_gutter' => 'Visualizza numeri di linea', 'editor:show_invisibles' => 'Mostra caratteri invisibili', 'editor:tab_size' => 'Dimensione Tab', 'editor:theme' => 'Schema di colori', 'editor:title' => 'Titolo', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Indenta utilizzando i Tab', 'editor:word_wrap' => 'A capo automatico', 'event_log:created_at' => 'Data e ora', 'event_log:empty_link' => 'Svuota il registro eventi', 'event_log:empty_loading' => 'Svuotamento del registro eventi in corso...', 'event_log:empty_success' => 'Il registro eventi è stato svuotato con successo.', 'event_log:hint' => 'Questo registro visualizza un elenco dei potenziali errori occorsi nell\'applicazione, come eccezioni e informazioni di debug.', 'event_log:id' => 'ID', 'event_log:id_label' => 'ID evento', 'event_log:level' => 'Livello', 'event_log:menu_description' => 'VIsualizza i messaggi del registro di sistema con i relativi orari di registrazione e dettagli.', 'event_log:menu_label' => 'Registro eventi', 'event_log:message' => 'Messaggio', 'event_log:return_link' => 'Ritorna al registro eventi', 'field:invalid_type' => 'Il tipo di campo :type non è valido.', 'field:options_method_not_exists' => 'La classe :model deve definire un metodo :method() che ritorni le opzioni per il campo \\":field\\".', 'file:create_fail' => 'Impossibile creare il file: :name', 'fileupload:attachment' => 'Allegato', 'fileupload:attachment_url' => 'URL Allegato', 'fileupload:default_prompt' => 'Fai clic su %s o trascina un file qui per eseguire il caricamento', 'fileupload:description_label' => 'Descrizione', 'fileupload:help' => 'Aggiungi un titolo e una descrizione per questo allegato.', 'fileupload:remove_confirm' => 'Sei sicuro?', 'fileupload:remove_file' => 'Rimuovi file', 'fileupload:title_label' => 'Titolo', 'fileupload:upload_error' => 'Errore nel caricamento', 'fileupload:upload_file' => 'Carica file', 'filter:all' => 'tutto', 'form:action_confirm' => 'Sei sicuro?', 'form:add' => 'Aggiungi', 'form:apply' => 'Applica', 'form:behavior_not_ready' => 'Il form non è stato inizializzato, verifica di aver chiamato il metodo initForm() nel controller.', 'form:cancel' => 'Annulla', 'form:close' => 'Chiudi', 'form:complete' => 'Completo', 'form:concurrency_file_changed_description' => 'Il file che stavi modificando è stato cambiato da un altro utente. Puoi ricaricare il file e perdere le tue modifiche oppure sovrascrivere il file sul disco.', 'form:concurrency_file_changed_title' => 'Il file è stato cambiato', 'form:confirm' => 'Conferma', 'form:confirm_tab_close' => 'Vuoi davvero chiudere il tab? Le modifiche non salvate andranno perse.', 'form:create' => 'Crea', 'form:create_and_close' => 'Crea e chiudi', 'form:create_success' => ':name creato con successo', 'form:create_title' => 'Crea :name', 'form:creating' => 'Creazione in corso...', 'form:creating_name' => 'Creazione :name in corso...', 'form:delete' => 'Elimina', 'form:delete_row' => 'Elimina riga', 'form:delete_success' => ':name eliminato con successo', 'form:deleting' => 'Eliminazione in corso...', 'form:deleting_name' => 'Eliminazione :name in corso...', 'form:field_off' => 'Off', 'form:field_on' => 'On', 'form:insert_row' => 'Inserisci riga', 'form:missing_definition' => 'Il form non contiene il campo \':field\'.', 'form:missing_id' => 'L\'ID del record non è stato specificato.', 'form:missing_model' => 'Il form utilizzato nella classe :class non ha un modello definito.', 'form:not_found' => 'Nessun record con ID :id è stato trovato.', 'form:ok' => 'OK', 'form:or' => 'o', 'form:preview_no_files_message' => 'Non ci sono file caricati.', 'form:preview_no_record_message' => 'Nessun record selezionato.', 'form:preview_title' => 'Anteprima :name', 'form:reload' => 'Ricarica', 'form:reset_default' => 'Ripristina predefiniti', 'form:resetting' => 'Ripristino in corso', 'form:resetting_name' => 'Ripristino :name in corso', 'form:save' => 'Salva', 'form:save_and_close' => 'Salva e chiudi', 'form:saving' => 'Salvataggio in corso...', 'form:saving_name' => 'Salvataggio :name in corso...', 'form:select' => 'Seleziona', 'form:select_all' => 'tutti', 'form:select_none' => 'nessuno', 'form:select_placeholder' => 'seleziona', 'form:undefined_tab' => 'Varie', 'form:update_success' => ':name modificato con successo', 'form:update_title' => 'Modifica :name', 'install:install_completing' => 'Sto terminando il processo di installazione', 'install:install_success' => 'Il plugin è stato installato con successo.', 'install:missing_plugin_name' => 'Specifica il nome del plugin da installare.', 'install:missing_theme_name' => 'Specifica il nome del tema da installare.', 'install:plugin_label' => 'Installa plugin', 'install:project_label' => 'Collega al progetto', 'install:theme_label' => 'Installa tema', 'layout:delete_confirm_multiple' => 'Sei sicuro di voler eliminare i layouts selezionati?', 'layout:delete_confirm_single' => 'Sei sicuro di voler eliminare questo layout?', 'layout:menu_label' => 'Layout', 'layout:new' => 'Nuovo layout', 'layout:no_list_records' => 'Nessun layout trovato', 'layout:not_found_name' => 'Il layout \':name\' non è stato trovato', 'layout:unsaved_label' => 'Layout non salvati', 'list:behavior_not_ready' => 'L\'elenco non è stato inizializzato, controlla di aver chiamato il metodo makeLists() nel controller.', 'list:default_title' => 'Elenco', 'list:delete_selected' => 'Elimina selezionati', 'list:delete_selected_confirm' => 'Elimina i record selezionati?', 'list:delete_selected_empty' => 'Non hai selezionato nessun record da eliminare.', 'list:delete_selected_success' => 'I record selezionati sono stati eliminati con successo.', 'list:invalid_column_datetime' => 'Il valore della colonna \':column\' non è un oggetto di tipo DateTime, hai dimenticato un riferimento a $dates nel modello?', 'list:loading' => 'Caricamento...', 'list:missing_column' => 'Non ci sono colonne definite per :columns.', 'list:missing_columns' => 'L\'elenco utilizzato nella classe :class non ha un elenco di colonne definito.', 'list:missing_definition' => 'L\'elenco non contiene una colonna per il campo \':field\'.', 'list:missing_model' => 'L\'elenco utilizzato nella classe :class non ha un modello definito.', 'list:next_page' => 'Pagina successiva', 'list:no_records' => 'Nessun risultato trovato.', 'list:pagination' => 'Record visualizzati: :from-:to di :total', 'list:prev_page' => 'Pagina precedente', 'list:records_per_page' => 'Record per pagina', 'list:records_per_page_help' => 'Seleziona il numero di record da visualizzare su ogni pagina. Ricorda che un numero elevato di record in una singola pagina può ridurre le prestazioni.', 'list:search_prompt' => 'Cerca...', 'list:setup_help' => 'Utilizza le checkbox per selezionare le colonne che vuoi visualizzare nell\'elenco. Puoi cambiare la posizione delle colonne trascinandole verso l\'alto o il basso.', 'list:setup_title' => 'Configura elenco', 'locale:cs' => 'Ceco', 'locale:de' => 'Tedesco', 'locale:el' => 'Greco', 'locale:en' => 'Inglese', 'locale:es' => 'Spagnolo', 'locale:es-ar' => 'Spagnolo (Argentina)', 'locale:fa' => 'Persiano', 'locale:fr' => 'Francese', 'locale:hu' => 'Ungherese', 'locale:id' => 'Indonesiano', 'locale:it' => 'Italiano', 'locale:ja' => 'Giapponese', 'locale:lv' => 'Lettone', 'locale:nb-no' => 'Norvegese (Bokmål)', 'locale:nl' => 'Olandese', 'locale:pl' => 'Polacco', 'locale:pt-br' => 'Portoghese (Brasile)', 'locale:ro' => 'Romeno', 'locale:ru' => 'Russo', 'locale:sk' => 'Slovacco (Slovacchia)', 'locale:sv' => 'Svedese', 'locale:tr' => 'Turco', 'locale:zh-cn' => 'Cinese (Cina)', 'mail:drivers_hint_content' => 'Questa modalità di invio richiede che il plugin \\":plugin\\" sia installato prima che tu possa inviare messaggi.', 'mail:drivers_hint_header' => 'Driver non installati', 'mail:general' => 'Generale', 'mail:log_file' => 'File di log', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Dominio Mailgun', 'mail:mailgun_domain_comment' => 'Inserisci il nome dominio Mailgun.', 'mail:mailgun_secret' => 'Chiave Mailgun', 'mail:mailgun_secret_comment' => 'Inserisci la tua chiave per l\'utilizzo delle API Mailgun.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Chiave Mandrill', 'mail:mandrill_secret_comment' => 'Inserisci la tua chiave per l\'utilizzo delle API Mandrill.', 'mail:menu_description' => 'Gestisci la configurazione delle e-mail.', 'mail:menu_label' => 'Configurazione e-mail', 'mail:method' => 'Metodo di invio', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'Indirizzo e-mail del mittente', 'mail:sender_name' => 'Nome del mittente', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Percorso Sendmail', 'mail:sendmail_path_comment' => 'Inserisci il percorso al servizio sendmail.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'Indirizzo SMTP', 'mail:smtp_authorization' => 'Il server SMTP richiede l\'autenticazione', 'mail:smtp_authorization_comment' => 'Seleziona se il tuo server SMTP richieste l\'autenticazione.', 'mail:smtp_password' => 'Password', 'mail:smtp_port' => 'Porta SMTP', 'mail:smtp_ssl' => 'Connessione SSL richiesta', 'mail:smtp_username' => 'Username', 'mail_templates:code' => 'Codice', 'mail_templates:code_comment' => 'Codice univoco utilizzato come riferimento a questo modello', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Testo piano', 'mail_templates:description' => 'Descrizione', 'mail_templates:layout' => 'Layout', 'mail_templates:layouts' => 'Layouts', 'mail_templates:menu_description' => 'Modifica i modelli di e-mail inviati agli utenti ed amministratori, gestisci il layout delle e-mail.', 'mail_templates:menu_label' => 'Modelli di e-mail', 'mail_templates:menu_layouts_label' => 'Layouts delle e-mail', 'mail_templates:name' => 'Nome', 'mail_templates:name_comment' => 'Nome univoco utilizzato come riferimento a questo modello.', 'mail_templates:new_layout' => 'Nuovo layout', 'mail_templates:new_template' => 'Nuovo modello', 'mail_templates:return' => 'Ritorna all\'elenco dei modelli', 'mail_templates:subject' => 'Oggetto', 'mail_templates:subject_comment' => 'Oggetto del messaggio di posta', 'mail_templates:template' => 'Modello', 'mail_templates:templates' => 'Modelli', 'mail_templates:test_send' => 'Invia un messaggio di prova', 'mail_templates:test_success' => 'Il messaggio di prova è stato inviato con successo.', 'maintenance:is_enabled' => 'Abilita modalità di manutenzione', 'maintenance:is_enabled_comment' => 'Se attivo i visitatori del sito vedranno la pagina selezionata sotto.', 'maintenance:settings_menu' => 'Modalità di manutenzione', 'maintenance:settings_menu_description' => 'Configura la pagina da visualizzare in modalità di manutenzione e cambia l\'impostazione.', 'media:add_folder' => 'Aggiungi cartella', 'media:click_here' => 'Fai clic qui', 'media:crop_and_insert' => 'Ritaglia e inserisci', 'media:delete' => 'Elimina', 'media:delete_confirm' => 'Vuoi davvero eliminare gli elementi selezionati?', 'media:delete_empty' => 'Seleziona elementi da eliminare.', 'media:display' => 'Visualizza', 'media:empty_library' => 'La libreria è vuota. Carica dei files o crea delle cartelle per iniziare.', 'media:error_creating_folder' => 'Errore durante la creazione della cartella', 'media:error_renaming_file' => 'Errore durante la rinominazione dell\'elemento', 'media:filter_audio' => 'Audio', 'media:filter_documents' => 'Documenti', 'media:filter_everything' => 'Tutto', 'media:filter_images' => 'Immagini', 'media:filter_video' => 'Video', 'media:folder' => 'Cartella', 'media:folder_name' => 'Nome della cartella', 'media:folder_or_file_exist' => 'Una cartella o un file con il nome specificato è già esistente.', 'media:folder_size_items' => 'elementi', 'media:height' => 'Altezza', 'media:image_size' => 'Dimensione immagine:', 'media:insert' => 'Inserisci', 'media:invalid_path' => 'Percorso del file non valido: \':path\'.', 'media:last_modified' => 'Ultima modifica', 'media:library' => 'Libreria', 'media:menu_label' => 'Elementi multimediali', 'media:move' => 'Sposta', 'media:move_dest_src_match' => 'Seleziona un\'altra cartella di destinazione.', 'media:move_destination' => 'Cartella di destinazione', 'media:move_empty' => 'Selezione elementi da spostare.', 'media:move_popup_title' => 'Sposta file o cartelle', 'media:multiple_selected' => 'Elementi multipli selezionati.', 'media:new_folder_title' => 'Nuova cartella', 'media:no_files_found' => 'Nessun file corrisponde alla tua richiesta.', 'media:nothing_selected' => 'Nessun elemento selezionato.', 'media:order_by' => 'Ordina per', 'media:please_select_move_dest' => 'Seleziona una cartella di destinazione.', 'media:public_url' => 'URL pubblico', 'media:resize' => 'Ridimensiona...', 'media:resize_image' => 'Ridimensiona immagine', 'media:restore' => 'Annulla tutte le modifiche', 'media:return_to_parent' => 'Ritorna alla cartella superiore', 'media:return_to_parent_label' => 'Torna su ..', 'media:search' => 'Cerca', 'media:select_single_image' => 'Seleziona una singola immagine.', 'media:selected_size' => 'Selezionati:', 'media:selection_mode' => 'Metodo di selezione', 'media:selection_mode_fixed_ratio' => 'Rapporto fisso', 'media:selection_mode_fixed_size' => 'Dimensione fissa', 'media:selection_mode_normal' => 'Normale', 'media:selection_not_image' => 'L\'elemento selezionato non è un\'immagine.', 'media:size' => 'Dimensione', 'media:thumbnail_error' => 'Errore durante la generazione dell\'anteprima.', 'media:title' => 'Titolo', 'media:upload' => 'Carica', 'media:uploading_complete' => 'Caricamento completato', 'media:uploading_file_num' => 'Caricamento in corso di :number file(s)...', 'media:width' => 'Larghezza', 'mediafinder:default_prompt' => 'Fai clic sul pulsante %s per trovare un elemento multimediale', 'model:invalid_class' => 'Il modello :model utilizzato nella classe :class non è valido, deve ereditare la classe \\Model.', 'model:mass_assignment_failed' => 'Assegnazione massiva fallita per l\'attributo \':attribute\' del modello.', 'model:missing_id' => 'Nessun ID specificato per la ricerca.', 'model:missing_method' => 'Il modello \':class\' non contiene un metodo \':method\'.', 'model:missing_relation' => 'Il modello \':class\' non contiene una definizione per la relazione \':relation\'.', 'model:name' => 'Modello', 'model:not_found' => 'Nessun modello \':class\' con ID :id trovato.', 'myaccount:menu_description' => 'Aggiorna i dettagli del tuo account, come il nome, l\'indirizzo e-mail e la password.', 'myaccount:menu_keywords' => 'sicurezza login', 'myaccount:menu_label' => 'Il mio account', 'mysettings:menu_description' => 'Impostazioni legate al tuo account amministratore', 'mysettings:menu_label' => 'Impostazioni personali', 'page:access_denied:cms_link' => 'Ritorna al pannello di controllo', 'page:access_denied:help' => 'Non hai le autorizzazioni necessarie per accedere a questa pagina.', 'page:access_denied:label' => 'Accesso negato', 'page:custom_error:help' => 'Siamo spiacenti, ma qualcosa è andato storto e la pagina non può essere visualizzata.', 'page:custom_error:label' => 'Errore nella pagina', 'page:delete_confirm_multiple' => 'Sei sicuro di voler eliminare le pagine selezionate?', 'page:delete_confirm_single' => 'Sei sicuro di voler eliminare questa pagina?', 'page:invalid_token:label' => 'Token di protezione non valido', 'page:invalid_url' => 'Formato URL non valido. L\'URL deve iniziare con una barra e può contenere numeri, lettere latine e i seguenti simboli: ._-[]:?|/+*^$', 'page:menu_label' => 'Pagine', 'page:new' => 'Nuova pagina', 'page:no_layout' => '-- nessun layout --', 'page:no_list_records' => 'Pagine non trovate', 'page:not_found:help' => 'La pagina richiesta non è stata trovata.', 'page:not_found:label' => 'Pagina non trovata', 'page:not_found_name' => 'Pagina \':name\' non trovata', 'page:unsaved_label' => 'Pagina/e non salvate', 'page:untitled' => 'Senza titolo', 'partial:delete_confirm_multiple' => 'Sei sicuro di voler eliminare le viste parziali selezionate?', 'partial:delete_confirm_single' => 'Sei sicuro di voler eliminare questa vista parziale?', 'partial:invalid_name' => 'Nome della vista parziale non valido: :name.', 'partial:menu_label' => 'Viste parziali', 'partial:new' => 'Nuova vista parziale', 'partial:no_list_records' => 'Nessuna vista parziale trovata', 'partial:not_found_name' => 'La vista parziale \':name\' non è stata trovata.', 'partial:unsaved_label' => 'Viste parziali non salvate', 'permissions:access_logs' => 'Visualizza registri di sistema', 'permissions:manage_assets' => 'Gestisci assets', 'permissions:manage_branding' => 'Personalizza il pannello di controllo', 'permissions:manage_content' => 'Gestisci contenuti', 'permissions:manage_layouts' => 'Gesstisci layouts', 'permissions:manage_mail_settings' => 'Gestisci impostazioni e-mail', 'permissions:manage_mail_templates' => 'Gestisci i modelli e-mail', 'permissions:manage_media' => 'Gestisci elementi multimediali', 'permissions:manage_other_administrators' => 'Gestisci altri amministratori', 'permissions:manage_pages' => 'Gestisci pagine', 'permissions:manage_partials' => 'Gestisci viste parziali', 'permissions:manage_software_updates' => 'Gestisci aggiornamenti del software', 'permissions:manage_system_settings' => 'Gestisci impostazioni di sistema', 'permissions:manage_themes' => 'Gestisci temi', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => 'Visualizza la dashboard', 'plugin:label' => 'Plugin', 'plugin:name:help' => 'Cerca il plugin tramite il suo codice univoco. Ad esempio, RainLab.Blog', 'plugin:name:label' => 'Nome del plugin', 'plugin:unnamed' => 'Plugin senza nome', 'plugins:disable_confirm' => 'Sei sicuro?', 'plugins:disable_success' => 'Disabilitazione dei plugin eseguita con successo.', 'plugins:disabled_help' => 'I plugin disabilitati sono ignorati dall\'applicazione.', 'plugins:disabled_label' => 'Disabilitato', 'plugins:enable_or_disable' => 'Abilita o disabilita', 'plugins:enable_or_disable_title' => 'Abilita o disabilita plugin', 'plugins:enable_success' => 'Abilitazione dei plugin eseguita con successo.', 'plugins:frozen_help' => 'I plugin congelati verranno ignorati nel processo di aggiornamento.', 'plugins:frozen_label' => 'Congela aggiornamenti', 'plugins:install' => 'Installa plugin', 'plugins:install_products' => 'Installa prodotti', 'plugins:installed' => 'Plugin installati', 'plugins:manage' => 'Gestisci plugin', 'plugins:no_plugins' => 'Non ci sono temi installati dal marketplace.', 'plugins:recommended' => 'Raccomandati', 'plugins:refresh' => 'Reinstalla', 'plugins:refresh_confirm' => 'Sei sicuro?', 'plugins:refresh_success' => 'Reinstallazione dei plugin nel sistema eseguita con successo.', 'plugins:remove' => 'Rimuovi', 'plugins:remove_confirm' => 'Sei sicuro di voler rimuovere questo plugin?', 'plugins:remove_success' => 'Rimozione dei plugin dal sistema eseguita con successo.', 'plugins:search' => 'cerca plugin da installare...', 'plugins:selected_amount' => 'Plugin selezionati: :amount', 'plugins:unknown_plugin' => 'Il plugin è stato rimosso dal file system.', 'project:attach' => 'Collega progetto', 'project:detach' => 'Scollega progetto', 'project:detach_confirm' => 'Sei sicuro di voler scollegare questo progetto?', 'project:id:help' => 'Come trovare l\'ID del tuo progetto', 'project:id:label' => 'ID del progetto', 'project:id:missing' => 'Inserisci un ID di progetto da utilizzare.', 'project:name' => 'Progetto', 'project:none' => 'Nessuno', 'project:owner_label' => 'Proprietario', 'project:unbind_success' => 'Il progetto è stato scollegato con successo.', 'relation:add' => 'Aggiungi', 'relation:add_a_new' => 'Aggiungi nuovo :name', 'relation:add_name' => 'Aggiungi :name', 'relation:add_selected' => 'Aggiungi selezionati', 'relation:cancel' => 'Annulla', 'relation:close' => 'Chiudi', 'relation:create' => 'Crea', 'relation:create_name' => 'Crea :name', 'relation:delete' => 'Elimina', 'relation:delete_confirm' => 'Sei sicuro?', 'relation:delete_name' => 'Elimina :name', 'relation:help' => 'Fai clic su un elemento per aggiungere', 'relation:invalid_action_multi' => 'L\'azione non può essere eseguita su una relazione multipla.', 'relation:invalid_action_single' => 'L\'azione non può essere eseguita su una relazione singola.', 'relation:link' => 'Collega', 'relation:link_a_new' => 'Collega nuovo :name', 'relation:link_name' => 'Collega :name', 'relation:link_selected' => 'Collega selezionati', 'relation:missing_config' => 'La relazione non ha nessuna configurazione per \':config\'.', 'relation:missing_definition' => 'La relazione non contiene una definizione per il campo \':field\'.', 'relation:missing_model' => 'La relazione utilizzata nella classe :class non ha un modello definito.', 'relation:preview' => 'Visualizza', 'relation:preview_name' => 'Visualizza :name', 'relation:related_data' => 'Dati :name correlati', 'relation:remove' => 'Rimuovi', 'relation:remove_name' => 'Rimuovi :name', 'relation:unlink' => 'Scollega', 'relation:unlink_confirm' => 'Sei sicuro?', 'relation:unlink_name' => 'Scollega :name', 'relation:update' => 'Aggiorna', 'relation:update_name' => 'Aggiorna :name', 'request_log:count' => 'Contatore', 'request_log:empty_link' => 'Svuota il registro richieste', 'request_log:empty_loading' => 'Svuotamento del registro richieste in corso...', 'request_log:empty_success' => 'Il registro richieste è stato svuotato con successo.', 'request_log:hint' => 'Questo registro visualizza un elenco delle richieste del browser che possono richiedere attenzione. Ad esempio, se un visitatore apre una pagina del CMS che non può essere trovata, viene creato un record con il codice di errore 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'ID Registro', 'request_log:menu_description' => 'Visualizza richieste errate o reindirizzate, come Pagina non trovata (404).', 'request_log:menu_label' => 'Registro richieste', 'request_log:referer' => 'Provenienza', 'request_log:return_link' => 'Ritorna al registro richieste', 'request_log:status_code' => 'Codice di stato', 'request_log:url' => 'URL', 'server:connect_error' => 'Errore durante la connessione al server.', 'server:file_corrupt' => 'Il file è corrotto.', 'server:file_error' => 'Il server non è riuscito a consegnare il pacchetto.', 'server:response_empty' => 'Il server ha fornito una risposta vuota.', 'server:response_invalid' => 'Il server ha fornito una risposta non valida.', 'server:response_not_found' => 'Il server degli aggiornamento non è stato trovato.', 'settings:menu_label' => 'Impostazioni', 'settings:missing_model' => 'La pagine delle impostazioni non ha nessun modello associato.', 'settings:not_found' => 'Impossibile trovare le impostazioni specificate.', 'settings:return' => 'Ritorna alle impostazioni di sistema', 'settings:search' => 'Cerca', 'settings:update_success' => 'Le impostazioni per :name sono state aggiornate con successo.', 'sidebar:add' => 'Aggiungi', 'sidebar:search' => 'Cerca...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Clienti', 'system:categories:events' => 'Eventi', 'system:categories:logs' => 'Log', 'system:categories:mail' => 'Mail', 'system:categories:misc' => 'Varie', 'system:categories:my_settings' => 'Impostazioni personali', 'system:categories:shop' => 'Negozio', 'system:categories:social' => 'Social', 'system:categories:system' => 'Sistema', 'system:categories:team' => 'Team', 'system:categories:users' => 'Utenti', 'system:menu_label' => 'Sistema', 'system:name' => 'Sistema', 'template:invalid_type' => 'Tipo di template sconosciuto.', 'template:not_found' => 'Il template richiesto non è stato trovato.', 'template:saved' => 'Il template è stato salvato con successo', 'theme:activate_button' => 'Attiva', 'theme:active:not_found' => 'Il tema attivo non è stato trovato.', 'theme:active:not_set' => 'Il tema attivo non è impostato.', 'theme:active_button' => 'Attivo', 'theme:author_label' => 'Autore', 'theme:author_placeholder' => 'Nome della persona o della società', 'theme:code_label' => 'Codice', 'theme:code_placeholder' => 'Un codice univoco per questo tema, utilizzato per la distribuzione', 'theme:create_button' => 'Crea', 'theme:create_new_blank_theme' => 'Crea un nuovo tema vuoto', 'theme:create_theme_required_name' => 'Specifica un nome per il tema.', 'theme:create_theme_success' => 'Tema creato con successo!', 'theme:create_title' => 'Crea tema', 'theme:customize_button' => 'Personalizza', 'theme:customize_theme' => 'Personalizza tema', 'theme:default_tab' => 'Proprietà', 'theme:delete_active_theme_failed' => 'Impossibile eliminare il tema attivo, prova prima ad attivare un altro tema.', 'theme:delete_button' => 'Elimina', 'theme:delete_confirm' => 'Sei sicuro di voler cancellare questo tema? L\'operazione non può essere annullata!', 'theme:delete_theme_success' => 'Tema eliminato con successo!', 'theme:description_label' => 'Descrizione', 'theme:description_placeholder' => 'Descrizione del tema', 'theme:dir_name_create_label' => 'La cartella di destinazione del tema', 'theme:dir_name_invalid' => 'Il nome della cartella può contenere solo numeri, lettere latine e i seguenti simboli: _-', 'theme:dir_name_label' => 'Nome della cartella', 'theme:dir_name_taken' => 'Cartelle di destinazione del tema già esistente.', 'theme:duplicate_button' => 'Duplica', 'theme:duplicate_theme_success' => 'Tema duplicato con successo!', 'theme:duplicate_title' => 'Duplica tema', 'theme:edit:not_found' => 'Il tema modificato non è stato trovato.', 'theme:edit:not_match' => 'L\'oggetto a cui stai cercando di accedere non appartiene al tema che stai modificando. Si prega di ricaricare la pagina.', 'theme:edit:not_set' => 'Il tema modificato non è impostato.', 'theme:edit_properties_button' => 'Modifica proprietà', 'theme:edit_properties_title' => 'Tema', 'theme:export_button' => 'Esporta', 'theme:export_folders_comment' => 'Seleziona le cartelle del tema che vuoi esportare', 'theme:export_folders_label' => 'Cartelle', 'theme:export_title' => 'Esporta tema', 'theme:find_more_themes' => 'Trova nuovi temi', 'theme:homepage_label' => 'Homepage', 'theme:homepage_placeholder' => 'URL Sito web', 'theme:import_button' => 'Importa', 'theme:import_folders_comment' => 'Seleziona le cartelle del tema che vuoi importare', 'theme:import_folders_label' => 'Cartelle', 'theme:import_overwrite_comment' => 'Deseleziona per importare solamente i nuovi file', 'theme:import_overwrite_label' => 'Sovrascrivi file esistenti', 'theme:import_theme_success' => 'Tema importato con successo!', 'theme:import_title' => 'Importa tema', 'theme:import_uploaded_file' => 'File di archivio del tema', 'theme:label' => 'Tema', 'theme:manage_button' => 'Gestisci', 'theme:manage_title' => 'Gestisci tema', 'theme:name:help' => 'Cerca il tema tramite il suo codice univoco. Ad esempio, RainLab.Vanilla', 'theme:name:label' => 'Nome tema', 'theme:name_create_placeholder' => 'Nome del nuovo tema', 'theme:name_label' => 'Nome', 'theme:new_directory_name_comment' => 'Inserisci una nuova cartella per il tema duplicato.', 'theme:new_directory_name_label' => 'Cartella di destinazione del tema', 'theme:not_found_name' => 'Tema \':name\' non trovato.', 'theme:return' => 'Ritorna all\'elenco del temi', 'theme:save_properties' => 'Salva proprietà', 'theme:saving' => 'Salvataggio tema in corso...', 'theme:settings_menu' => 'Tema del sito', 'theme:settings_menu_description' => 'Visualizza l\'anteprima dei temi installati e seleziona un tema attivo.', 'theme:theme_label' => 'Tema', 'theme:theme_title' => 'Temi', 'theme:unnamed' => 'Tema senza nome', 'themes:install' => 'Installa temi', 'themes:installed' => 'Temi installati', 'themes:no_themes' => 'Non ci sono temi installati dal marketplace.', 'themes:recommended' => 'Raccomandati', 'themes:remove_confirm' => 'Sei sicuro di voler rimuovere questo tema?', 'themes:search' => 'cerca temi da installare...', 'tooltips:preview_website' => 'Anteprima del sito web', 'updates:check_label' => 'Verifica gli aggiornamenti', 'updates:core_build' => 'Build :build', 'updates:core_build_help' => 'Disponibile l\'ultima build.', 'updates:core_current_build' => 'Build corrente', 'updates:core_downloading' => 'Scaricamento dei file in corso', 'updates:core_extracting' => 'Estrazione dei file in corso', 'updates:details_author' => 'Autore', 'updates:details_current_version' => 'Versione attuale', 'updates:details_readme' => 'Documentazione', 'updates:details_readme_missing' => 'Nessuna documentazione fornita.', 'updates:details_title' => 'Dettagli plugin', 'updates:details_upgrades' => 'Guida all\'aggiornamento', 'updates:details_upgrades_missing' => 'Nessuna guida all\'aggiornamento fornita.', 'updates:details_view_homepage' => 'Visualizza homepage', 'updates:disabled' => 'Disabilitati', 'updates:force_label' => 'Forza aggiornamento', 'updates:found:help' => 'Clicca Aggiorna il software per iniziare il processo di aggiornamento.', 'updates:found:label' => 'Trovati nuovi aggiornamenti!', 'updates:important_action:confirm' => 'Conferma aggiornamento', 'updates:important_action:empty' => 'Seleziona azione', 'updates:important_action:ignore' => 'Salta questo plugin (sempre)', 'updates:important_action:skip' => 'Salta questo plugin (solo questa volta)', 'updates:important_action_required' => 'Azione richiesta', 'updates:important_alert_text' => 'Alcuni aggiornamenti necessitano della tua attenzione.', 'updates:important_view_guide' => 'Visualizza la guida per l\'aggiornamento', 'updates:menu_description' => 'Aggiorna il sistema, gestisci ed installa plugin e temi.', 'updates:menu_label' => 'Aggiornamenti', 'updates:name' => 'Aggiornamento del software', 'updates:none:help' => 'Nessun aggiornamento trovato.', 'updates:none:label' => 'Nessun aggiornamento', 'updates:plugin_author' => 'Autore', 'updates:plugin_code' => 'Codice', 'updates:plugin_current_version' => 'Versione attuale', 'updates:plugin_description' => 'Descrizione', 'updates:plugin_downloading' => 'Scaricamento plugin: :name', 'updates:plugin_extracting' => 'Estrazione plugin: :name', 'updates:plugin_name' => 'Nome', 'updates:plugin_version' => 'Versione', 'updates:plugin_version_none' => 'Nuovo plugin', 'updates:plugins' => 'Plugin', 'updates:retry_label' => 'Riprova', 'updates:return_link' => 'Ritorna agli aggiornamenti di sistema', 'updates:theme_downloading' => 'Scaricamento tema: :name', 'updates:theme_extracting' => 'Estrazione tema: :name', 'updates:theme_new_install' => 'Installa nuovo tema.', 'updates:themes' => 'Themi', 'updates:title' => 'Gestisci aggiornamenti', 'updates:update_completing' => 'Completamento del processo di aggiornamento', 'updates:update_failed_label' => 'Aggiornamento fallito', 'updates:update_label' => 'Aggiorna il software', 'updates:update_loading' => 'Caricamento degli aggiornamenti disponibili...', 'updates:update_success' => 'L\'aggiornamento è stato eseguito con successo.', 'user:account' => 'Account', 'user:allow' => 'Consenti', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Vuoi davvero eliminare questo amministratore?', 'user:deny' => 'Nega', 'user:email' => 'Indirizzo e-mail', 'user:first_name' => 'Nome', 'user:full_name' => 'Nome completo', 'user:group:code_comment' => 'Inserisci un codice univoco se vuoi accedere a questo elementro tramite API.', 'user:group:code_field' => 'Codice', 'user:group:delete_confirm' => 'Vuoi davvero eliminare questo gruppo amministratore?', 'user:group:description_field' => 'Descrizione', 'user:group:is_new_user_default_field' => 'Aggiungi i nuovi amministratori a questo gruppo per impostazione predefinita.', 'user:group:list_title' => 'Gestisci gruppi', 'user:group:menu_label' => 'Gruppi', 'user:group:name' => 'Gruppo', 'user:group:name_field' => 'Nome', 'user:group:new' => 'Nuovo gruppo', 'user:group:return' => 'Ritorna alla lista dei gruppi', 'user:group:users_count' => 'Utenti', 'user:groups' => 'Gruppi', 'user:groups_comment' => 'Seleziona i gruppi a cui appartiene l\'utente.', 'user:inherit' => 'Eredita', 'user:last_name' => 'Cognome', 'user:list_title' => 'Gestisci amministratori', 'user:login' => 'Login', 'user:menu_description' => 'Gestisci gli utenti amministratori, i gruppi e le autorizzazioni.', 'user:menu_label' => 'Amministratori', 'user:name' => 'Amministratore', 'user:new' => 'Nuovo amministratore', 'user:password' => 'Password', 'user:password_confirmation' => 'Conferma password', 'user:permissions' => 'Autorizzazioni', 'user:preferences:not_authenticated' => 'Non c\'è nessun utente autenticato per cui caricare o salvare le preferenze.', 'user:return' => 'Ritorna alla lista degli amministratori', 'user:send_invite' => 'Invia invito tramite e-mail', 'user:send_invite_comment' => 'Invia un messaggio di benvenuto contenente le credenziali per l\'accesso.', 'user:superuser' => 'Super User', 'user:superuser_comment' => 'Seleziona per consentire all\'utente di accedere a tutte le aree.', 'validation:accepted' => ':attribute deve essere accettato.', 'validation:active_url' => ':attribute non è un URL valido.', 'validation:after' => ':attribute deve essere una data maggiore di :date.', 'validation:alpha' => ':attribute può contenere solo lettere.', 'validation:alpha_dash' => ':attribute può contenere solo lettere, numeri e trattini.', 'validation:alpha_num' => ':attribute può contenere solo lettere e numeri.', 'validation:array' => ':attribute deve essere un array.', 'validation:before' => ':attribute deve essere una data minore di :date.', 'validation:between:array' => ':attribute deve avere tra :min e :max elementi.', 'validation:between:file' => ':attribute deve essere compreso tra :min e :max kilobytes.', 'validation:between:numeric' => ':attribute deve essere compreso tra :min e :max.', 'validation:between:string' => ':attribute deve essere compreso tra :min e :max caratteri.', 'validation:confirmed' => 'La conferma :attribute non corrisponde.', 'validation:date' => ':attribute non è una data valida.', 'validation:date_format' => ':attribute non corrisponde al formato :format.', 'validation:different' => ':attribute e :other devono essere diversi.', 'validation:digits' => ':attribute deve essere di :digits cifre.', 'validation:digits_between' => ':attribute deve essere tra :min e :max cifre.', 'validation:email' => 'Il formato di :attribute non è valido.', 'validation:exists' => 'Il valore di :attribute non è valido.', 'validation:extensions' => ':attribute deve avere un estensione: :values.', 'validation:image' => ':attribute deve essere un\'immagine.', 'validation:in' => 'Il valore di  :attribute non è valido.', 'validation:integer' => ':attribute deve essere un numero interno.', 'validation:ip' => ':attribute deve essere un indirizzo IP valido.', 'validation:max:array' => ':attribute non può avere più di :max elementi.', 'validation:max:file' => ':attribute non può essere maggiore di :max kilobytes.', 'validation:max:numeric' => ':attribute non può essere maggiore di :max.', 'validation:max:string' => ':attribute non può essere maggiore di :max caratteri.', 'validation:mimes' => ':attribute deve essere un file di tipo: :values.', 'validation:min:array' => ':attribute deve avere almeno :min elementi.', 'validation:min:file' => ':attribute deve essere almeno :min kilobytes.', 'validation:min:numeric' => ':attribute deve essere almeno :min.', 'validation:min:string' => ':attribute deve essere almeno :min caratteri.', 'validation:not_in' => 'Il valore di :attribute non è valido.', 'validation:numeric' => ':attribute deve essere un numero.', 'validation:regex' => 'Il formato di :attribute non è valido.', 'validation:required' => 'Il campo :attribute è obbligatorio.', 'validation:required_if' => 'Il campo :attribute è obbligatorio quando :other è :value.', 'validation:required_with' => 'Il campo :attribute è obbligatorio quando :values è presente.', 'validation:required_without' => 'Il campo :attribute è obbligatorio quando :values non è presente.', 'validation:same' => ':attribute e :other devono corrispondere.', 'validation:size:array' => ':attribute deve contenere :size elementi.', 'validation:size:file' => ':attribute deve essere :size kilobytes.', 'validation:size:numeric' => ':attribute deve essere :size.', 'validation:size:string' => ':attribute deve essere :size caratteri.', 'validation:unique' => ':attribute è già presente.', 'validation:url' => 'Il formato di :attribute non è valido.', 'warnings:extension' => 'L\'estensione di PHP :name non è installata. Installa questa libreria ed attiva l\'estensione.', 'warnings:permissions' => 'La cartella :name o le sue sottocartelle non sono scrivibili da PHP. Imposta le corrette autorizzazioni per il server web su questa cartella.', 'warnings:tips' => 'Suggerimenti per la configurazione del sistema', 'warnings:tips_description' => 'Ci sono elementi a cui è necessario prestare attenzione al fine di configurare il sistema in maniera corretta.', 'widget:not_bound' => 'Nessun widget \':name\' è stato legato al controller', 'widget:not_registered' => 'Nessun widget \':name\' è stato registrato', 'zip:extract_failed' => 'Estrazione del file sistema \':file\' non riuscita.']);
示例#26
0
文件: es.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Fecha y hora', 'access_log:email' => 'Email', 'access_log:first_name' => 'Nombre', 'access_log:hint' => 'Este registro muestra la lista de ingresos al panel de administración. Los registros se mantienen por un total de :days días.', 'access_log:ip_address' => 'IP', 'access_log:last_name' => 'Apellido', 'access_log:login' => 'Acceso', 'access_log:menu_description' => 'Ver registro de ingresos al panel de administracion.', 'access_log:menu_label' => 'Registro de acceso', 'account:apply' => 'Aplicar', 'account:cancel' => 'Cancelar', 'account:delete' => 'Borrar', 'account:email_placeholder' => 'correo', 'account:enter_email' => 'Ingrese su correo', 'account:enter_login' => 'Ingrese su usuario', 'account:enter_new_password' => 'Ingrese una nueva clave', 'account:forgot_password' => '¿Olvidó su clave?', 'account:login' => 'Entrar', 'account:login_placeholder' => 'usuario', 'account:ok' => 'OK', 'account:password_placeholder' => 'clave', 'account:password_reset' => 'Restablecer la clave', 'account:reset' => 'Restablecer', 'account:reset_error' => 'La información para restablecer la contraseña no es valida. ¡Por favor, vuelva a intentarlo!', 'account:reset_fail' => '¡No es posible restablecer la contraseña!', 'account:reset_success' => 'Su contraseña ha sido restablecido correctamente. Ahora puede iniciar sesión', 'account:restore' => 'Restaurar', 'account:restore_error' => 'No se ha encontrado el usuario \':login\'', 'account:restore_success' => 'Un correo electrónico ha sido enviado a su dirección con las instruciones para restablecer la contraseña.', 'account:sign_out' => 'Desconectarse', 'ajax_handler:invalid_name' => 'Manejador de AJAX inválido: :name.', 'ajax_handler:not_found' => 'El manejador de AJAX \':name\' no se encuentra.', 'alert:cancel_button_text' => 'Cancelar', 'alert:confirm_button_text' => 'OK', 'app:name' => 'October CMS', 'app:tagline' => 'Getting back to basics', 'asset:already_exists' => 'Un archivo o directorio con este nombre ya existe', 'asset:create_directory' => 'Crear directorio', 'asset:create_file' => 'Crear archivo', 'asset:delete' => 'Borrar', 'asset:destination_not_found' => 'El directorio destino no se encuentra', 'asset:directory_name' => 'Nombre del directorio', 'asset:directory_popup_title' => 'Nuevo directorio', 'asset:drop_down_add_title' => 'Añadir...', 'asset:drop_down_operation_title' => 'Acción...', 'asset:error_deleting_dir' => 'Error borrando el archivo :name.', 'asset:error_deleting_dir_not_empty' => 'Error borrando el directorio :name. El directorio no está vacío.', 'asset:error_deleting_directory' => 'Error borrando el directorio original :dir', 'asset:error_deleting_file' => 'Error al borrar el archivo :name.', 'asset:error_moving_directory' => 'Error moviendo el directorio :dir', 'asset:error_moving_file' => 'Error moviendo archivo :file', 'asset:error_renaming' => 'Error renombrando el archivo o directorio', 'asset:error_uploading_file' => 'Error subiendo el archivo \\":name\\": :error', 'asset:file_not_valid' => 'El archivo no es válido', 'asset:invalid_name' => 'El nombre sólo puede contener dígitos, letras, espacios y los símbolos siguientes: ._-', 'asset:invalid_path' => 'La ruta sólo puede contener dígitos, letras, espacios y los símbolos siguientes: ._-/', 'asset:menu_label' => 'Assets', 'asset:move' => 'Mover', 'asset:move_button' => 'Mover', 'asset:move_destination' => 'Directorio destino', 'asset:move_please_select' => 'por favor seleccionar', 'asset:move_popup_title' => 'Mover los títulos emergentes', 'asset:name_cant_be_empty' => 'El nombre no puede estar vacío', 'asset:new' => 'Nuevo archivo', 'asset:original_not_found' => 'El archivo o directorio original no se encuentra', 'asset:path' => 'Ruta', 'asset:rename' => 'Renombrar', 'asset:rename_new_name' => 'Nuevo nombre', 'asset:rename_popup_title' => 'Renombrar', 'asset:select' => 'Seleccionar', 'asset:select_destination_dir' => 'Por favor seleccione un directorio destino', 'asset:selected_files_not_found' => 'Los archivos seleccionados no se encuentran', 'asset:too_large' => 'El archivo subido es demasiado pesado. El tamaño máximo permitido es :max_size', 'asset:type_not_allowed' => 'Sólo los siguientes tipos de archivos están permitidos: :allowed_types', 'asset:unsaved_label' => 'Asset(s) sin salvar', 'asset:upload_files' => 'Subir archivo(s)', 'auth:title' => 'Area de Administración', 'backend_preferences:locale' => 'Idioma', 'backend_preferences:locale_comment' => 'Seleccione su localización deseada para el uso del idioma.', 'backend_preferences:menu_description' => 'Gestione la preferencia de idioma y la apariencia del panel.', 'backend_preferences:menu_label' => 'Preferencias del panel de administración', 'behavior:missing_property' => 'Clase :class debe definir la propiedad $:property utilizada por :behavior comportamiento.', 'branding:app_name' => 'Nombre de la aplicación', 'branding:app_name_description' => 'Este nombre se mostrará en el título del back-end.', 'branding:app_tagline' => 'Eslogan', 'branding:app_tagline_description' => 'Se mostrará en la página de inicio de sesión del back-end.', 'branding:brand' => 'Marca', 'branding:colors' => 'Colores', 'branding:custom_stylesheet' => 'Hoja de estilo personalizada', 'branding:logo' => 'Logo', 'branding:logo_description' => 'Subir un logo personalizado para usarlo en el back-end.', 'branding:menu_description' => 'Perzonalizar el área de administración, así como el nombre, los colores y el logo.', 'branding:menu_label' => 'Personalizar back-end', 'branding:primary_dark' => 'Primario (Oscuro)', 'branding:primary_light' => 'Primario (Claro)', 'branding:secondary_dark' => 'Secundario (Oscuro)', 'branding:secondary_light' => 'Secundario (Claro)', 'branding:styles' => 'Estilos', 'cms:menu_label' => 'Gestión', 'cms_object:delete_success' => 'Los templates fueron borrados satisfactoriamente: :count.', 'cms_object:error_creating_directory' => 'Error creando el directorio :name. Por favor, revisa los permisos de escritura.', 'cms_object:error_deleting' => 'Error borrando el archivo template \\":name\\". Por favor, revisa los permisos de escritura.', 'cms_object:error_saving' => 'Error guardando archivo \':name\'. Por favor, revisa los permisos de escritura.', 'cms_object:file_already_exists' => 'Archivo \':name\' ya existe.', 'cms_object:file_name_required' => 'Falta el nombre del campo del archivo.', 'cms_object:invalid_file' => 'Nombre inválido del archivo: :name. El nombre del archivo debe contener solamente caracteres alfanuméricos, guiones bajos, barras y puntos. Algunos ejemplos de nombres correctos son: archivo.htm, archivo, subdirectorio/archivo', 'cms_object:invalid_file_extension' => 'Extensión de archivo inválida: :invalid. Las extensiones permitidas son: :allowed.', 'cms_object:invalid_property' => 'La propiedad \':name\' no puede establecerse', 'combiner:not_found' => 'The combiner file \':name\' is not found.', 'component:alias' => 'Alias', 'component:alias_description' => 'Se le ha asignado un nombre único a este componente cuando se lo utilizaba en la página o en el código de disposición.', 'component:invalid_request' => 'La plantilla no puede ser guardada porque tiene datos inválidos.', 'component:menu_label' => 'Componentes', 'component:method_not_found' => 'El componente \':name\' no contiene un método \':method\'.', 'component:no_description' => 'No se proporciona descripción', 'component:no_records' => 'No se encontraron componentes', 'component:not_found' => 'El componente \':name\' no se encuentra.', 'component:unnamed' => 'Sin nombre', 'component:validation_message' => 'El componente alias es requerido y puede contener solamente letras, números y guión bajo. El alias debe empezar con una letra.', 'config:not_found' => 'No se puede encontrar el archivo de configuración :file definido por :location.', 'config:required' => 'Configuración utilizada en :location debe proporcionar un valor. \':property\'.', 'content:delete_confirm_multiple' => 'Realmente desea borrar los contenidos seleccionados de los archivos o directorios?', 'content:delete_confirm_single' => 'Realmente desea borrar el contenido de este archivo?', 'content:menu_label' => 'Contenido', 'content:new' => 'Nuevo contenido de archivo', 'content:no_list_records' => 'No se encuentra el conteinod de los archivos', 'content:not_found_name' => 'El contenido del archivo \':name\' no se encuentra.', 'content:unsaved_label' => 'Contenido sin guardar', 'dashboard:add_widget' => 'Agregar un módulo', 'dashboard:columns' => '{1} columna|[2,Inf] columnas', 'dashboard:full_width' => 'Ancho completo', 'dashboard:menu_label' => 'Escritorio', 'dashboard:status:maintenance' => 'en mantenimiento', 'dashboard:status:online' => 'en línea', 'dashboard:status:update_available' => '{0} actualizaciones disponibles!|{1} actualización disponible!|[2,Inf] actualizaciones disponibles!', 'dashboard:status:widget_title_default' => 'Estado del sistema', 'dashboard:widget_columns_description' => 'El ancho del módulo, número entre 1 y 10.', 'dashboard:widget_columns_error' => 'Por favor, ingrese un número entre 1 y 10 para el ancho del módulo.', 'dashboard:widget_columns_label' => 'Ancho :columns', 'dashboard:widget_inspector_description' => 'Configuración del módulo de reporte', 'dashboard:widget_inspector_title' => 'Configuración del módulo', 'dashboard:widget_label' => 'Módulo', 'dashboard:widget_new_row_description' => 'Insertar el módulo en una nueva fila.', 'dashboard:widget_new_row_label' => 'Forzar nueva línea', 'dashboard:widget_title_error' => 'El título del módulo es obligatorio.', 'dashboard:widget_title_label' => 'Título del módulo', 'dashboard:widget_width' => 'Ancho', 'directory:create_fail' => 'No es posible crear el directorio: :name', 'editor:auto_closing' => 'Auto cerrado de etiquetas y caracteres especiales', 'editor:code' => 'Código', 'editor:code_folding' => 'Código Plegable', 'editor:content' => 'Contenido', 'editor:description' => 'Descripción', 'editor:enter_fullscreen' => 'Ingresar en el modo pantalla completa', 'editor:exit_fullscreen' => 'Salir de pantalla completa', 'editor:filename' => 'Nombre del archivo', 'editor:font_size' => 'Tamaño de la letra', 'editor:hidden' => 'Oculto', 'editor:hidden_comment' => 'A las páginas ocultas sólo pueden acceder los usuarios del back-end que se encuentren logueados.', 'editor:highlight_active_line' => 'Resaltar línea activa', 'editor:layout' => 'Disposición', 'editor:markup' => 'Marcado', 'editor:menu_description' => 'Configurar las preferencias del editor de código, como el tamaño de la letra y el color del esquema.', 'editor:menu_label' => 'Preferencias del Editor de Código', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta Descripción', 'editor:meta_title' => 'Meta Título', 'editor:new_title' => 'Nuevo título de la página', 'editor:preview' => 'Vista previa', 'editor:settings' => 'Configuración', 'editor:show_gutter' => 'Mostrar canal', 'editor:show_invisibles' => 'Mostrar caracteres invisibles', 'editor:tab_size' => 'Tamaño de la Solapa', 'editor:theme' => 'Color del esquema', 'editor:title' => 'Título', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Espacio entre solapas', 'editor:word_wrap' => 'Ajuste de línea', 'event_log:created_at' => 'Fecha y Hora', 'event_log:empty_link' => 'Vaciar el registro de eventos', 'event_log:empty_loading' => 'Borrando los registros...', 'event_log:empty_success' => 'Los registros fueron borrados', 'event_log:hint' => 'Este registro muestra una lista de los posibles errores que se producen en la aplicación, como las excepciones y la información de depuración.', 'event_log:id' => 'ID', 'event_log:id_label' => 'ID del Evento', 'event_log:level' => 'Nivel', 'event_log:menu_description' => 'Ver los logs de registro del sistema.', 'event_log:menu_label' => 'Registro de eventos', 'event_log:message' => 'Mensaje', 'event_log:return_link' => 'Regresar al registro de eventos', 'field:invalid_type' => 'El tipo de campo utilizado es inválido :type.', 'field:options_method_not_exists' => 'El modelo clase: model debe definir un método: method() opciones recurrentes para el \\":field\\" desde campo.', 'file:create_fail' => 'No es posible crear el archivo: :name', 'fileupload:attachment' => 'Adjunto', 'fileupload:attachment_url' => 'URL Adjunto', 'fileupload:default_prompt' => 'Haz clic en %s o arrastra un archivo aquí para subir', 'fileupload:description_label' => 'Descripción', 'fileupload:help' => 'Agregue un título y descripción al adjunto', 'fileupload:remove_confirm' => '¿Está seguro?', 'fileupload:remove_file' => 'Eliminar archivo', 'fileupload:title_label' => 'Título', 'fileupload:upload_error' => 'Error al subir.', 'fileupload:upload_file' => 'Subir archivo', 'filter:all' => 'Todo', 'form:action_confirm' => '¿Está usted seguro?', 'form:add' => 'Agregar', 'form:apply' => 'Aplicar', 'form:behavior_not_ready' => 'El comportamiento del formulario no se ha inicializado, compruebe que ha llamado initForm() en el controlador.', 'form:cancel' => 'Cancelar', 'form:close' => 'Cerrar', 'form:complete' => 'Completo', 'form:concurrency_file_changed_description' => 'El archivo que está editando ha sido cambiado en el disco por otro usuario. Usted puede volver a cargar el archivo y perder los cambios o sobreescribir el archivo en el disco.', 'form:concurrency_file_changed_title' => 'Archivo ha cambiado', 'form:confirm' => 'Confirmar', 'form:confirm_tab_close' => '¿Realmente desea cerrar la pestaña? Se perderán los cambios no guardados.', 'form:create' => 'Crear', 'form:create_and_close' => 'Crear y cerrar', 'form:create_success' => ':name ha sido creado con éxito', 'form:create_title' => 'Nuevo :name', 'form:creating' => 'Creando ...', 'form:creating_name' => 'Creando :name...', 'form:delete' => 'Borrar', 'form:delete_row' => 'Borrar Fila', 'form:delete_success' => ':name ha sido borrado con éxito', 'form:deleting' => 'Borrando ...', 'form:deleting_name' => 'Borrando :name...', 'form:field_off' => 'Off', 'form:field_on' => 'On', 'form:insert_row' => 'Agregar Fila', 'form:insert_row_below' => 'Insertar fila debajo', 'form:missing_definition' => 'El comportamiento del formulario no contiene un campo para \':field\'.', 'form:missing_id' => 'No se ha especificado el identificador del registro de formulario.', 'form:missing_model' => 'El comportamiento del formulario utilizado en :class no tiene un modelo definido.', 'form:not_found' => 'El registro del formulario con un ID de :id no se pudo encontrar.', 'form:ok' => 'OK', 'form:or' => 'o', 'form:preview_no_files_message' => 'Los archivos no se han subido', 'form:preview_no_record_message' => 'No hay ningún registro seleccionado.', 'form:preview_title' => 'Vista previa de :name', 'form:reload' => 'Recargar', 'form:reset_default' => 'Restablecer por defecto', 'form:resetting' => 'Restableciendo', 'form:resetting_name' => 'Restableciendo :name', 'form:save' => 'Guardar', 'form:save_and_close' => 'Guardar y cerrar', 'form:saving' => 'Guardando ...', 'form:saving_name' => 'Guardando :name...', 'form:select' => 'Seleccionar', 'form:select_all' => 'todos', 'form:select_none' => 'ninguno', 'form:select_placeholder' => 'por favor seleccione', 'form:undefined_tab' => 'Varios', 'form:update_success' => ':name ha sido actualizado con éxito', 'form:update_title' => 'Editar :name', 'install:install_completing' => 'Finalizó el proceso de instalación', 'install:install_success' => 'El plugin se ha instalado correctamente.', 'install:missing_plugin_name' => 'Por favor, especifique un nombre de Plugin para instalar', 'install:missing_theme_name' => 'Por favor especifique un nombre de Theme a instalar.', 'install:plugin_label' => 'Instalar Plugin', 'install:project_label' => 'Adjuntar al proyecto', 'install:theme_label' => 'Instalar Theme', 'layout:delete_confirm_multiple' => 'Realmente quiere borrar los diseños seleccionados?', 'layout:delete_confirm_single' => 'Realmente quiere borrar este diseño?', 'layout:menu_label' => 'Diseños', 'layout:new' => 'Nuevo diseño', 'layout:no_list_records' => 'No se ecnontraron diseños', 'layout:not_found_name' => 'El diseño \':name\' no se encuentra', 'layout:unsaved_label' => 'Diseño(s) sin guardar', 'list:behavior_not_ready' => 'List behavior has not been initialized, check that you have called makeLists() in your controller.', 'list:column_switch_false' => 'No', 'list:column_switch_true' => 'Sí', 'list:default_title' => 'Lista', 'list:delete_selected' => 'Eliminar seleccionados', 'list:delete_selected_confirm' => '¿Borrar los registros seleccionados?', 'list:delete_selected_empty' => 'No hay registros seleccionados para eliminar.', 'list:delete_selected_success' => 'Eliminado correctamente los registros seleccionados.', 'list:invalid_column_datetime' => 'Column value \':column\' is not a DateTime object, are you missing a $dates reference in the Model?', 'list:loading' => 'Cargando...', 'list:missing_column' => 'No hay definiciones de columna para :columns.', 'list:missing_columns' => 'Lista usada en :class no tiene lista columnas definidas.', 'list:missing_definition' => 'List behavior does not contain a column for \':field\'.', 'list:missing_model' => 'El comportamiento de la lista utilizada en :class no tiene un modelo definido.', 'list:next_page' => 'Página siguiente', 'list:no_records' => 'No hay registros en esta vista.', 'list:pagination' => 'Registros visualizados: :from-:to de :total', 'list:prev_page' => 'Página anterior', 'list:records_per_page' => 'Registros por página', 'list:records_per_page_help' => 'Seleccione el número de registros por página para mostrar. Tenga en cuenta que un número alto de registros en una sola página puede reducir el rendimiento.', 'list:search_prompt' => 'Buscar...', 'list:setup_help' => 'Utilice las casillas de verificación para seleccionar las columnas que desea ver en la lista. Usted puede cambiar la posición de las columnas arrastrándolas arriba o hacia abajo.', 'list:setup_title' => 'Configurar lista', 'locale:br' => 'Portugués Brasileño', 'locale:cs' => 'Checo', 'locale:de' => 'Alemán', 'locale:el' => 'Griego', 'locale:en' => 'Inglés', 'locale:es' => 'Español', 'locale:es-ar' => 'Español (Argentina)', 'locale:fa' => 'Persa', 'locale:fr' => 'Francés', 'locale:hu' => 'Hungaro', 'locale:id' => 'Bahasa Indonesia', 'locale:it' => 'Italiano', 'locale:ja' => 'Japonés', 'locale:lv' => 'Latvian', 'locale:nb-no' => 'Noruego (Bokmål)', 'locale:nl' => 'Holandés', 'locale:pl' => 'Polaco', 'locale:pt-br' => 'Portugués (Brasil)', 'locale:ro' => 'Romana', 'locale:ru' => 'Ruso', 'locale:sk' => 'Slovak (Slovakia)', 'locale:sv' => 'Sueco', 'locale:tr' => 'Turco', 'locale:zh-cn' => 'Chino (China)', 'locale:zh-tw' => 'Chino (Taiwan)', 'mail:drivers_hint_content' => 'This mail method requires the plugin \\":plugin\\" be installed before you can send mail.', 'mail:drivers_hint_header' => 'Drivers not installed', 'mail:general' => 'General', 'mail:log_file' => 'Archivo Registro', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun domain', 'mail:mailgun_domain_comment' => 'Please specify the Mailgun domain name.', 'mail:mailgun_secret' => 'Mailgun secret', 'mail:mailgun_secret_comment' => 'Enter your Mailgun API key.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill secret', 'mail:mandrill_secret_comment' => 'Enter your Mandrill API key.', 'mail:menu_description' => 'Administrar la configuración de correo electrónico.', 'mail:menu_label' => 'Configuración del correo', 'mail:method' => 'Método de correo', 'mail:php_mail' => 'mail PHP', 'mail:sender_email' => 'Correo del remitente', 'mail:sender_name' => 'Nombre del remitente', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Directorio de Sendmail', 'mail:sendmail_path_comment' => 'Por favor, especifique la ruta de acceso del programa sendmail.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'Dirección SMTP', 'mail:smtp_authorization' => 'autorización requerida de SMTP', 'mail:smtp_authorization_comment' => 'Utilice esta opción si el servidor SMTP requiere autorización.', 'mail:smtp_encryption' => 'protocolo SMTP encryptado', 'mail:smtp_encryption_none' => 'Sin encryptación', 'mail:smtp_encryption_ssl' => 'SSL', 'mail:smtp_encryption_tls' => 'TLS', 'mail:smtp_password' => 'Contraseña', 'mail:smtp_port' => 'Puerto SMTP', 'mail:smtp_ssl' => 'Conexión SSL requerida', 'mail:smtp_username' => 'Nombre de usuario', 'mail_templates:code' => 'Código', 'mail_templates:code_comment' => 'Código único utilizado para referirse a esta plantilla ', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Texto plano', 'mail_templates:description' => 'Descripción', 'mail_templates:layout' => 'Disposición', 'mail_templates:layouts' => 'Disposiciones', 'mail_templates:menu_description' => 'Modificar las plantillas de correo que se envían a los usuarios y administradores, administrar diseños de correo electrónico', 'mail_templates:menu_label' => 'Plantillas de Correo', 'mail_templates:menu_layouts_label' => 'Disposición del Mail', 'mail_templates:name' => 'Nombre', 'mail_templates:name_comment' => 'Nombre único utilizado para referirse a esta plantilla', 'mail_templates:new_layout' => 'Nueva Disposición', 'mail_templates:new_template' => 'Nueva plantilla', 'mail_templates:no_layout' => '-- Sin disposición --', 'mail_templates:return' => 'Volver a la lista de plantilla', 'mail_templates:saving' => 'Salvando Plantilla...', 'mail_templates:sending' => 'Enviando mensaje de prueba...', 'mail_templates:subject' => 'Asunto', 'mail_templates:subject_comment' => 'Correo asunto del mensaje', 'mail_templates:template' => 'Plantilla', 'mail_templates:templates' => 'Plantillas', 'mail_templates:test_confirm' => 'Un mensaje de prueba se enviará a :email. Continuar?', 'mail_templates:test_send' => 'Enviar mensaje de prueba', 'mail_templates:test_success' => 'El mensaje de prueba ha sido enviado con éxito.', 'maintenance:is_enabled' => 'Activar modo mantenimiento', 'maintenance:is_enabled_comment' => 'Cuando se active, los visitantes verán la página elegida a continuación.', 'maintenance:settings_menu' => 'Modo mantenimiento', 'maintenance:settings_menu_description' => 'Configura la página del modo mantenimiento y cambia su configuración', 'markdowneditor:bold' => 'Negrita', 'markdowneditor:code' => 'Código', 'markdowneditor:formatting' => 'Formateo', 'markdowneditor:fullscreen' => 'Pantalla completa', 'markdowneditor:header1' => 'Encabezado 1', 'markdowneditor:header2' => 'Encabezado 2', 'markdowneditor:header3' => 'Encabezado 3', 'markdowneditor:header4' => 'Encabezado 4', 'markdowneditor:header5' => 'Encabezado 5', 'markdowneditor:header6' => 'Encabezado 6', 'markdowneditor:horizontalrule' => 'Insertar Regla Horizontal', 'markdowneditor:image' => 'Imagen', 'markdowneditor:italic' => 'Cursiva', 'markdowneditor:link' => 'Vínculo', 'markdowneditor:orderedlist' => 'Lista Ordenada', 'markdowneditor:preview' => 'Previsualizar', 'markdowneditor:quote' => 'Cita', 'markdowneditor:unorderedlist' => 'Lista Desordenada', 'markdowneditor:video' => 'Video', 'media:add_folder' => 'Nueva carpeta', 'media:click_here' => 'Haz click aquí', 'media:crop_and_insert' => 'Cortar y insertar', 'media:delete' => 'Eliminar', 'media:delete_confirm' => '¿Deseas eliminar los elementos seleccionados?', 'media:delete_empty' => 'Por favor, selecciona los elementos que quieres eliminar.', 'media:display' => 'Mostrar', 'media:empty_library' => 'La biblioteca está vacía. Sube archivos o crea carpetas para empezar.', 'media:error_creating_folder' => 'Error al crear la carpeta', 'media:error_renaming_file' => 'Error al renombrar el elemento.', 'media:filter_audio' => 'Audio', 'media:filter_documents' => 'Documentos', 'media:filter_everything' => 'Todo', 'media:filter_images' => 'Imágenes', 'media:filter_video' => 'Vídeos', 'media:folder' => 'Carpeta', 'media:folder_name' => 'Nombre de la carpeta', 'media:folder_or_file_exist' => 'Ya existe un archivo o carpeta con este nombre.', 'media:folder_size_items' => 'elemento(s)', 'media:height' => 'Alto', 'media:image_size' => 'Tamaño de la imagen:', 'media:insert' => 'Insertar', 'media:invalid_path' => 'Ruta de archivo especificada no válida: \':path\'.', 'media:last_modified' => 'Última modificación', 'media:library' => 'Biblioteca', 'media:menu_label' => 'Media', 'media:move' => 'Mover', 'media:move_dest_src_match' => 'Por favor, selecciona otra carpeta de destino.', 'media:move_destination' => 'Carpeta de destino', 'media:move_empty' => 'Por favor, selecciona los elementos que quieres mover.', 'media:move_popup_title' => 'Mover archivos o carpetas', 'media:multiple_selected' => 'Se han selecciondo varios elementos.', 'media:new_folder_title' => 'Nueva carpeta', 'media:no_files_found' => 'No se han encontrado archivos.', 'media:nothing_selected' => 'No se ha seleccionado nada.', 'media:order_by' => 'Ordenar por', 'media:please_select_move_dest' => 'Por favor, selecciona una carpeta de destino.', 'media:public_url' => 'URL pública', 'media:resize' => 'Redimensionar...', 'media:resize_image' => 'Redimensionar imagen', 'media:restore' => 'Deshacer todos los cambios', 'media:return_to_parent' => 'Volver a la carpeta anterior', 'media:return_to_parent_label' => 'Atrás ..', 'media:search' => 'Buscar', 'media:select_single_image' => 'Por favor, seleccona sólo una imagen.', 'media:selected_size' => 'Selección:', 'media:selection_mode' => 'Modo selección', 'media:selection_mode_fixed_ratio' => 'Aspecto fijo', 'media:selection_mode_fixed_size' => 'Tamaño fijo', 'media:selection_mode_normal' => 'Normal', 'media:selection_not_image' => 'El elemento seleccionado no es una imagen.', 'media:size' => 'Tamaño', 'media:thumbnail_error' => 'Error generando el thumbnail.', 'media:title' => 'Título', 'media:upload' => 'Subir', 'media:uploading_complete' => 'Subida completada', 'media:uploading_error' => 'Error al subir', 'media:uploading_file_num' => 'Subiendo :number archivo(s)...', 'media:width' => 'Ancho', 'mediafinder:default_prompt' => 'Haga clic en el botón de %s para buscar un elemento multimedia', 'mediamanager:insert_audio' => 'Insertar Media Audio', 'mediamanager:insert_image' => 'Insertar Media Imagen', 'mediamanager:insert_link' => 'Insertar Media Vínculo', 'mediamanager:insert_video' => 'Insertar Media Video', 'mediamanager:invalid_audio_empty_insert' => 'Por favor seleccione un archivo de audio para insertar.', 'mediamanager:invalid_file_empty_insert' => 'Por favor seleccione archivo para insertar vínculo.', 'mediamanager:invalid_file_single_insert' => 'Por favor seleccione un solo archivo.', 'mediamanager:invalid_image_empty_insert' => 'Por favor seleccione una imagen(es) para insertar.', 'mediamanager:invalid_video_empty_insert' => 'Por favor seleccione un archivo de video para insertar.', 'model:invalid_class' => 'Modelo :model utilizado en :class no es váildo, este debería heredar la clase del \\Model.', 'model:mass_assignment_failed' => 'Asignación masiva falló para el atributo del Modelo \':attribute\'.', 'model:missing_id' => 'No se ha especificado un ID para encontrar el modelo guardado.', 'model:missing_method' => 'Modelo \':class\' no contiene un método \':method\'.', 'model:missing_relation' => 'Modelo \':class\' no contiene una definición para \':relation\'.', 'model:name' => 'Modelo', 'model:not_found' => 'Modelo \':class\' con el ID :id no se pudo encontrar', 'myaccount:menu_description' => 'Actualice la información de su cuenta, como nombre, dirección de correo electrónico y contraseña.', 'myaccount:menu_keywords' => 'Inicio de sesión de seguridad', 'myaccount:menu_label' => 'Mi Cuenta', 'mysettings:menu_description' => 'Configuraciones relacionadas con su cuenta', 'mysettings:menu_label' => 'Mis configuraciones', 'page:access_denied:cms_link' => 'Volver al panel de administración', 'page:access_denied:help' => 'No tiene permisos necesarios para ver esta página.', 'page:access_denied:label' => 'Acceso denegado', 'page:custom_error:help' => 'Lo sentimos, pero algo salió mal y la página no se puede mostrar.', 'page:custom_error:label' => 'Error', 'page:delete_confirm_multiple' => '¿Deseas eliminar las páginas seleccionadas?', 'page:delete_confirm_single' => '¿Deseas eliminar esta página?', 'page:invalid_token:label' => 'Token de seguridad invalido', 'page:invalid_url' => 'Formato de la URL incorrecto. La URL debe empezar con el símbolo de barra diagonal y puede contener dígitos, letras latinas y los siguientes símbolos: ._-[]:?|/+*^$', 'page:menu_label' => 'Páginas', 'page:new' => 'Nueva página', 'page:no_layout' => '-- sin plantilla --', 'page:no_list_records' => 'No se encontraron páginas', 'page:not_found:help' => 'La página solicitada no se ha encontrado.', 'page:not_found:label' => 'Página no encontrada', 'page:not_found_name' => 'La página \':name\' no se ha encontrado', 'page:unsaved_label' => 'Página(s) sin guardar', 'page:untitled' => 'Sin título', 'partial:delete_confirm_multiple' => 'Realmente quiere borrar los parciales seleccionados?', 'partial:delete_confirm_single' => 'Realmente quiere borrar este parcial?', 'partial:invalid_name' => 'Nombre parcial inválido: :name.', 'partial:menu_label' => 'Parciales', 'partial:new' => 'Nuevo parcial', 'partial:no_list_records' => 'No se encontraron parciales', 'partial:not_found_name' => 'El parcial \':name\' no se encuentra.', 'partial:unsaved_label' => 'Parcial(es) sin guardar', 'permissions:access_logs' => 'Ver registros del sistema', 'permissions:manage_assets' => 'Gestionar archivos', 'permissions:manage_branding' => 'Perzonalizar el back-end', 'permissions:manage_content' => 'Gestionar contenido', 'permissions:manage_editor' => 'Gestionar preferencias editor código', 'permissions:manage_layouts' => 'Gestionar diseños', 'permissions:manage_mail_settings' => 'Gestionar la configuración del correo', 'permissions:manage_mail_templates' => 'Gestionar plantillas de correo', 'permissions:manage_media' => 'Gestionar media', 'permissions:manage_other_administrators' => 'Gestionar otros administradores', 'permissions:manage_pages' => 'Gestionar páginas', 'permissions:manage_partials' => 'Gestionar parciales', 'permissions:manage_preferences' => 'Gestionar preferencias back-end', 'permissions:manage_software_updates' => 'Gestionar actualización de software', 'permissions:manage_system_settings' => 'Gestionar la configuración del sistema', 'permissions:manage_themes' => 'Gestionar plantilla', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => 'Ver el Escritorio', 'plugin:label' => 'Plugin', 'plugin:name:help' => 'Nombra el plugin por su código único. por ejemplo, RainLab.Blog', 'plugin:name:label' => 'Nombre del Plugin', 'plugin:unnamed' => 'Plugin sin nombre', 'plugins:disable_confirm' => 'Está seguro?', 'plugins:disable_success' => 'Plugins deshabilitados con éxito.', 'plugins:disabled_help' => 'Plugins que están deshabilitadas son ignorados por la aplicación.', 'plugins:disabled_label' => 'Desactivar', 'plugins:enable_or_disable' => 'Activar o desactivar', 'plugins:enable_or_disable_title' => 'Activar o Desactivar Plugins', 'plugins:enable_success' => 'Plugins activados con éxito.', 'plugins:frozen_help' => 'Plugins that are frozen will be ignored by the update process.', 'plugins:frozen_label' => 'Freeze updates', 'plugins:install' => 'Install plugins', 'plugins:install_products' => 'Install products', 'plugins:installed' => 'Installed plugins', 'plugins:manage' => 'Gestionar plugins', 'plugins:no_plugins' => 'There are no plugins installed from the marketplace.', 'plugins:recommended' => 'Recommended', 'plugins:refresh' => 'Recargar', 'plugins:refresh_confirm' => 'Está seguro?', 'plugins:refresh_success' => 'Con éxito refrescado los plugins en el sistema.', 'plugins:remove' => 'Eliminar', 'plugins:remove_confirm' => 'Está seguro?', 'plugins:remove_success' => 'Eliminado con éxito los plugins del sistema.', 'plugins:search' => 'search plugins to install...', 'plugins:selected_amount' => 'Plugins seleccionado: :amount', 'plugins:unknown_plugin' => 'El Plugin ha sido elimina del sistema de archivos.', 'project:attach' => 'Adjuntar Proyecto', 'project:detach' => 'Separar Proyecto', 'project:detach_confirm' => '¿Está seguro de que desea separar este proyecto?', 'project:id:help' => 'Como encontrar el ID de tu proyecto', 'project:id:label' => 'ID del Proyecto', 'project:id:missing' => 'Especifique un ID del proyecto para usar.', 'project:name' => 'Proyecto', 'project:none' => 'Ninguno', 'project:owner_label' => 'Dueño', 'project:unbind_success' => 'Proyecto ha sido separado con éxito.', 'relation:add' => 'Agregar', 'relation:add_a_new' => 'Agregar un nuevo :name', 'relation:add_name' => 'Agregar :name', 'relation:add_selected' => 'Agregar seleccionado', 'relation:cancel' => 'Cancelar', 'relation:close' => 'Cerrar', 'relation:create' => 'Crear', 'relation:create_name' => 'Crear :name', 'relation:delete' => 'Borrar', 'relation:delete_confirm' => '¿Está usted seguro?', 'relation:delete_name' => 'Borrar :name', 'relation:help' => 'Haga clic en un elemento para añadir.', 'relation:invalid_action_multi' => 'Esta acción no se puede realizar en una relación múltiple.', 'relation:invalid_action_single' => 'Esta acción no se puede realizar en una relación singular.', 'relation:link' => 'Vincular', 'relation:link_a_new' => 'Vinculo a nuevo :name', 'relation:link_name' => 'Vincular :name', 'relation:link_selected' => 'Vinculo selecionado', 'relation:missing_config' => 'Relación de comportamiento no tiene ninguna configuración para \':config\'.', 'relation:missing_definition' => 'Relación de comportamiento no contiene una definición para \':field\'.', 'relation:missing_model' => 'Relación de comportamiento utilizado en :class no tiene un modelo definido.', 'relation:preview' => 'Vista previa', 'relation:preview_name' => 'Vista previa :name', 'relation:related_data' => 'Relacionar :name datos', 'relation:remove' => 'Remover', 'relation:remove_name' => 'Remover :name', 'relation:unlink' => 'Desvincular', 'relation:unlink_confirm' => '¿Está usted seguro?', 'relation:unlink_name' => 'Desvincular :name', 'relation:update' => 'Actualizar', 'relation:update_name' => 'Actualizar :name', 'reorder:default_title' => 'Reordenar registros', 'reorder:no_records' => 'No existen registros disponibles para ordenar.', 'request_log:count' => 'Contador', 'request_log:empty_link' => 'Vaciar el registro de acceso', 'request_log:empty_loading' => 'Borrando los registros...', 'request_log:empty_success' => 'Los registros fueron borrados...', 'request_log:hint' => 'Este registro muestra una lista de las peticiones del navegador que pueden requerir atención. Por ejemplo, si un usuario abre una página que no se puede encontrar, se crea un registro con el código de estado 404.', 'request_log:id' => 'ID', 'request_log:id_label' => 'ID Log', 'request_log:menu_description' => 'Ver listado de redirecciones con errores y paginas No encontradas (404).', 'request_log:menu_label' => 'Registros de acceso', 'request_log:referer' => 'Referencia', 'request_log:return_link' => 'Regresar al registro de acceso', 'request_log:status_code' => 'Estado', 'request_log:url' => 'URL', 'server:connect_error' => 'Error al conectar con el servidor.', 'server:file_corrupt' => 'El archivo se encuentra dañado.', 'server:file_error' => 'El servidor no pudo entregar el paquete.', 'server:response_empty' => 'Respuesta vacía desde el servidor.', 'server:response_invalid' => 'Respuesta no válida del servidor.', 'server:response_not_found' => 'El servidor de actualización no se pudo encontrar.', 'settings:menu_label' => 'Configuración', 'settings:missing_model' => 'La página de configuración no encuentra una definición del Modelo.', 'settings:return' => 'Volver a la configuración del sistema', 'settings:search' => 'Buscar', 'settings:update_success' => 'Los ajustes para :name se han actualizado correctamente.', 'sidebar:add' => 'Agregar', 'sidebar:search' => 'Buscar...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Clientes', 'system:categories:events' => 'Eventos', 'system:categories:logs' => 'Registros', 'system:categories:mail' => 'Correo', 'system:categories:misc' => 'Misc', 'system:categories:my_settings' => 'Mis Configuraciones', 'system:categories:shop' => 'Tienda', 'system:categories:social' => 'Social', 'system:categories:system' => 'Sistema', 'system:categories:team' => 'Equipo', 'system:categories:users' => 'Usuarios', 'system:menu_label' => 'Sistema', 'system:name' => 'Sistema', 'template:invalid_type' => 'Tipo de plantilla Desconocido.', 'template:not_found' => 'No se encontró la plantilla solicitada.', 'template:saved' => 'La plantilla se ha guardado correctamente.', 'theme:activate_button' => 'Activar', 'theme:active:not_found' => 'El tema activo no se encuentra.', 'theme:active:not_set' => 'El tema activo no se ha establecido.', 'theme:active_button' => 'Activar', 'theme:author_label' => 'Autor', 'theme:author_placeholder' => 'Persona o empresa', 'theme:code_label' => 'Código', 'theme:code_placeholder' => 'Código único para el tema usado para su distribución', 'theme:create_button' => 'Crear', 'theme:create_new_blank_theme' => 'Crear un tema en blanco', 'theme:create_theme_required_name' => 'Por favor, introduce un nombre para el tema.', 'theme:create_theme_success' => 'Tema creado satisfactoriamente!', 'theme:create_title' => 'Crear tema', 'theme:customize_button' => 'Personalizar', 'theme:customize_theme' => 'Personalizar Tema', 'theme:default_tab' => 'Propiedades', 'theme:delete_active_theme_failed' => 'No puedes eliminar un tema activo. Inténtalo activando otro tema primero.', 'theme:delete_button' => 'Eliminar', 'theme:delete_confirm' => '¿Deseas eliminar este tema? Esta acción no se puede deshacer!', 'theme:delete_theme_success' => 'Tema borrado satisfactoriamente!', 'theme:description_label' => 'Descripción', 'theme:description_placeholder' => 'Descripción del tema', 'theme:dir_name_create_label' => 'El directorio de destino del tema', 'theme:dir_name_invalid' => 'El nombre sólo puede contener dígitos, letras latinas y los siguientes símbolos: _-', 'theme:dir_name_label' => 'Nombre del directorio', 'theme:dir_name_taken' => 'Este directorio ya existe.', 'theme:duplicate_button' => 'Duplicar', 'theme:duplicate_theme_success' => 'Tema duplicado satisfactoriamente!', 'theme:duplicate_title' => 'Duplicar tema', 'theme:edit:not_found' => 'El tema de edición no se encuentra.', 'theme:edit:not_match' => 'El objeto que está intentando acceder no pertenece al tema que se está editando. Vuelve a cargar la página.', 'theme:edit:not_set' => 'El tema de edición no se ha establecido.', 'theme:edit_properties_button' => 'Editar propiedades', 'theme:edit_properties_title' => 'Tema', 'theme:export_button' => 'Exportar', 'theme:export_folders_comment' => 'Por favor, selecciona las carpetas del tema que quieres exportar', 'theme:export_folders_label' => 'Carpetas', 'theme:export_title' => 'Exportar tema', 'theme:find_more_themes' => 'Buscar nuevos temas', 'theme:homepage_label' => 'Web', 'theme:homepage_placeholder' => 'URL de la web', 'theme:import_button' => 'Importar', 'theme:import_folders_comment' => 'Por favor, selecciona las carpetas del tema que quieres importar', 'theme:import_folders_label' => 'Carpetas', 'theme:import_overwrite_comment' => 'No marques esta casilla para importar sólo los archivos nuevos', 'theme:import_overwrite_label' => 'Sobreescribir archvios existentes', 'theme:import_theme_success' => 'Tema importado satisfactoriamente!', 'theme:import_title' => 'Importar tema', 'theme:import_uploaded_file' => 'Archvio del tema', 'theme:label' => 'Theme', 'theme:manage_button' => 'Gestionar', 'theme:manage_title' => 'Gestionar tema', 'theme:name:help' => 'Name the theme by its unique code. For example, RainLab.Vanilla', 'theme:name:label' => 'Theme Name', 'theme:name_create_placeholder' => 'Nombre del nuevo tema', 'theme:name_label' => 'Nombre', 'theme:new_directory_name_comment' => 'Introduce un nombre para el directorio del tema duplicado.', 'theme:new_directory_name_label' => 'Directorio del tema', 'theme:not_found_name' => 'El tema \':name\' no se ha encontrado.', 'theme:return' => 'Volver a la lista de temas', 'theme:save_properties' => 'Guardar propiedades', 'theme:saving' => 'Salvando tema...', 'theme:settings_menu' => 'Tema para el Front-end', 'theme:settings_menu_description' => 'Previsualiza la lista de temas instalados y selecciona un tema activo.', 'theme:theme_label' => 'Tema', 'theme:theme_title' => 'Temas', 'theme:unnamed' => 'Unnamed theme', 'themes:install' => 'Install themes', 'themes:installed' => 'Installed themes', 'themes:no_themes' => 'There are no themes installed from the marketplace.', 'themes:recommended' => 'Recommended', 'themes:remove_confirm' => 'Are you sure you want to remove this theme?', 'themes:search' => 'search themes to install...', 'tooltips:preview_website' => 'Vista previa del sitio', 'updates:check_label' => 'Chequear actualizaciones', 'updates:core_build' => 'Versión :build', 'updates:core_build_help' => 'Última versión está disponible.', 'updates:core_current_build' => 'Versión actual', 'updates:core_downloading' => 'Descargando archivos de la aplicación', 'updates:core_extracting' => 'Descomprimiendo archivos de la aplicación', 'updates:details_author' => 'Autor', 'updates:details_current_version' => 'Versión actual', 'updates:details_readme' => 'Documentación', 'updates:details_readme_missing' => 'There is no documentation provided.', 'updates:details_title' => 'Plugin details', 'updates:details_upgrades' => 'Upgrade Guide', 'updates:details_upgrades_missing' => 'There are no upgrade instructions provided.', 'updates:details_view_homepage' => 'View homepage', 'updates:disabled' => 'Desactivado', 'updates:force_label' => 'Forzar actualización', 'updates:found:help' => 'Click Actualizar software para comenzar con el proceso de actualización.', 'updates:found:label' => 'Se encontraron nuevas actualizaciones!', 'updates:important_action:confirm' => 'Confirm update', 'updates:important_action:empty' => 'Select action', 'updates:important_action:ignore' => 'Skip this plugin (always)', 'updates:important_action:skip' => 'Skip this plugin (once only)', 'updates:important_action_required' => 'Action required', 'updates:important_alert_text' => 'Some updates need your attention.', 'updates:important_view_guide' => 'View upgrade guide', 'updates:menu_description' => 'Actualizaciones del sistema, administrar e instalar plugins y temas.', 'updates:menu_label' => 'Actualizaciones', 'updates:name' => 'Actualizaciones de software', 'updates:none:help' => 'No se encontraron nuevas actualizaciones disponibles.', 'updates:none:label' => 'No hay actualizaciones', 'updates:plugin_author' => 'Autor', 'updates:plugin_code' => 'Código', 'updates:plugin_description' => 'Descripción', 'updates:plugin_downloading' => 'Descargando plugin: :name', 'updates:plugin_extracting' => 'Descomprimiendo plugin: :name', 'updates:plugin_name' => 'Nombre', 'updates:plugin_version' => 'Versión', 'updates:plugin_version_none' => 'Nuevo plugin', 'updates:plugins' => 'Plugins', 'updates:retry_label' => 'Intentar nuevamente', 'updates:theme_downloading' => 'Descargando tema: :name', 'updates:theme_extracting' => 'Descomprimiendo tema: :name', 'updates:theme_new_install' => 'Intalación de nuevo tema.', 'updates:themes' => 'Themes', 'updates:title' => 'Administrar actualizaciones', 'updates:update_completing' => 'Finalizando el proceso de actualización', 'updates:update_failed_label' => 'Actualización falló', 'updates:update_label' => 'Actualizando software', 'updates:update_loading' => 'Cargando actualizaciones disponibles...', 'updates:update_success' => 'El proceso de actualización se realizó exitosamente.', 'user:account' => 'Cuenta', 'user:allow' => 'Permitir', 'user:avatar' => 'Avatar', 'user:delete_confirm' => '¿Realmente desea eliminar este administrador?', 'user:deny' => 'Denegar', 'user:email' => 'Correo', 'user:first_name' => 'Nombres', 'user:full_name' => 'Nombre Completo', 'user:group:code_comment' => 'Entrar un código único para acceder a ella con la API.', 'user:group:code_field' => 'Código', 'user:group:delete_confirm' => '¿Realmente desea eliminar este grupo de administrador?', 'user:group:description_field' => 'Descripción', 'user:group:is_new_user_default_field' => 'Añadir a los nuevos administradores a este grupo por defecto', 'user:group:list_title' => 'Gestionar Grupos', 'user:group:menu_label' => 'Grupos', 'user:group:name' => 'Grupos', 'user:group:name_field' => 'Nombre', 'user:group:new' => 'Nuevo Grupo de Administradores', 'user:group:return' => 'Volver a la lista de grupos', 'user:group:users_count' => 'Usuarios', 'user:groups' => 'Grupos', 'user:groups_comment' => 'Especifique a que grupo pertenece esta persona.', 'user:inherit' => 'Heredar', 'user:last_name' => 'Apellidos', 'user:list_title' => 'Gestionar administradores', 'user:login' => 'Inicio de sesión', 'user:menu_description' => 'Gestionar usuarios, grupos y permisos para el backend.', 'user:menu_label' => 'Administradores', 'user:name' => 'Administrador', 'user:new' => 'Nuevo administrador', 'user:password' => 'Contraseña', 'user:password_confirmation' => 'Confirmar Contraseña', 'user:permissions' => 'Permisos', 'user:preferences:not_authenticated' => 'No existe un usuario autenticado para cargar o guardar las preferencias para.', 'user:return' => 'Regresar a la lista de administradores', 'user:send_invite' => 'Enviar invitación por correo electrónico', 'user:send_invite_comment' => 'Usar esta opción para enviar una invitación al usuario por correo electrónico', 'user:superuser' => 'Super Usuario', 'user:superuser_comment' => 'Marque esta casilla para permitir que esta persona tenga acceso a todas las áreas.', 'validation:accepted' => 'El campo :attribute debe ser aceptado.', 'validation:active_url' => 'El campo :attribute no es una URL válida', 'validation:after' => 'El campo :attribute debe ser una fecha posterior a :date.', 'validation:alpha' => 'El campo :attribute sólo debe contener letras.', 'validation:alpha_dash' => 'El campo :attribute solo puede contener letras, numeros y barras.', 'validation:alpha_num' => 'El campo :attribute solo puede contener letras y números.', 'validation:array' => 'El campo :attribute debe ser un array.', 'validation:before' => 'El campo :attribute debe ser una fecha anterior a :date.', 'validation:between:array' => 'El campo :attribute debe tener entre :min y :max elementos.', 'validation:between:file' => 'El campo :attribute debe ocupar entre :min y :max kilobytes.', 'validation:between:numeric' => 'El campo :attribute debe tener estar entre :min y :max.', 'validation:between:string' => 'El campo :attribute debe tener entre :min y :max caracteres.', 'validation:confirmed' => 'La confirmación del campo:attribute es incorrecta.', 'validation:date' => 'El campo :attribute no es una fecha válida.', 'validation:date_format' => 'El campo :attribute no tiene el formato :format.', 'validation:different' => 'Los campos :attribute y :other debe ser distintos.', 'validation:digits' => 'El campo :attribute debe tener :digits dígitos.', 'validation:digits_between' => 'El campo :attribute debe tener entre :min y :max dígitos.', 'validation:email' => 'El campo :attribute tiene un formato incorrecto.', 'validation:exists' => 'El campo :attribute es incorrecto.', 'validation:extensions' => 'El campo :attribute debe tener una extensión de: :values.', 'validation:image' => 'El campo :attribute debe ser una imagen.', 'validation:in' => 'El campo :attribute es incorrecto.', 'validation:integer' => 'El campo :attribute debe ser un entero.', 'validation:ip' => 'El campo :attribute debe ser una IP válida.', 'validation:max:array' => 'El campo :attribute no debe tener más de :max elementos.', 'validation:max:file' => 'El campo :attribute no debe ocupar más de :max kilobytes.', 'validation:max:numeric' => 'El campo :attribute no debe ser mayor que :max.', 'validation:max:string' => 'El campo :attribute no debe tener más de :max caracteres.', 'validation:mimes' => 'El campo :attribute debe ser un archivo del tipo: :values.', 'validation:min:array' => 'El campo :attribute debe tener :min elementos o más.', 'validation:min:file' => 'El campo :attribute debe ocupar :min kilobytes o más.', 'validation:min:numeric' => 'El campo :attribute debe ser :min o más.', 'validation:min:string' => 'El campo :attribute debe tener :min caracteres o más.', 'validation:not_in' => 'El campo :attribute es incorrecto.', 'validation:numeric' => 'El campo :attribute debe ser un número.', 'validation:regex' => 'El campo :attribute tiene un formato incorrecto.', 'validation:required' => 'El campo :attribute es obligatorio.', 'validation:required_if' => 'El campo :attribute es obligatorio si el campo :other es :value.', 'validation:required_with' => 'El campo :attribute es obligatorio cuando el campo :values está presente.', 'validation:required_without' => 'El campo :attribute es obligatorio cuando el campo :values no está presente.', 'validation:same' => 'Los campos :attribute y :other deben ser iguales.', 'validation:size:array' => 'El campo :attribute debe contener :size elementos.', 'validation:size:file' => 'El campo :attribute debe ocupar :size kilobytes.', 'validation:size:numeric' => 'El campo :attribute debe ser :size.', 'validation:size:string' => 'El campo :attribute debe tener :size caracteres.', 'validation:unique' => 'El campo :attribute ya ha sido tomado.', 'validation:url' => 'El campo :attribute tiene un formato incorrecto.', 'warnings:extension' => 'La extensión PHP :name no está instalada. Por favor instalar esta librería y activar la extensión.', 'warnings:permissions' => 'Directorio :name o los subdirectorios no se puede escribir por PHP. Por favor establecer los permisos correctos para el servidor web en este directorio.', 'warnings:tips' => 'Consejos de configuración del sistema', 'warnings:tips_description' => 'Hay problemas que necesitan de su atención para configurar el sistema correctamente.', 'widget:not_bound' => 'El módulo con la clase \':name\' no se ha unido al controlador', 'widget:not_registered' => 'La clase del modulo \':name\' no ha sido registrada', 'zip:extract_failed' => 'No se puede extraer el archivo \':file\'.']);
示例#27
0
文件: tr.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Tarih & Saat', 'access_log:email' => 'Email', 'access_log:first_name' => 'İsim', 'access_log:hint' => 'Bu kayıtlar yöneticiler tarafından başarılı şekilde yapılan girişleri gösterir. Kayıtlar :days gün boyunca saklanır.', 'access_log:ip_address' => 'IP adres', 'access_log:last_name' => 'Soyisim', 'access_log:login' => 'Giriş', 'access_log:menu_description' => 'Yönetim paneline başarılı şekilde yapılan girişleri görüntüler.', 'access_log:menu_label' => 'Yönetim paneli erişim kayıtları', 'account:apply' => 'Onayla', 'account:cancel' => 'İptal', 'account:delete' => 'Sil', 'account:email_placeholder' => 'email', 'account:enter_email' => 'Email adresinizi girin', 'account:enter_login' => 'Kullanıcı adınızı girin', 'account:enter_new_password' => 'Yeni Parolanızı girin', 'account:forgot_password' => 'Parolanızı mı unuttunuz?', 'account:login' => 'Giriş', 'account:login_placeholder' => 'kullanıcı adı', 'account:ok' => 'Tamam', 'account:password_placeholder' => 'parola', 'account:password_reset' => 'Parola Sıfırla', 'account:reset' => 'Sıfırla', 'account:reset_error' => 'Hatalı giriş yaptınız. Lütfen tekrar deneyin!', 'account:reset_fail' => 'Parolanız sıfırlanamıyor!', 'account:reset_success' => 'Parolanız başarıyla sıfırlandı. Giriş yapabilirsiniz.', 'account:restore' => 'Geri yükle', 'account:restore_error' => '\':login\' kullanıcı adı bulunamadı.', 'account:restore_success' => 'Email adresinize parolanızı nasıl sıfırlayacağınıza dair bilgiler gönderilmiştir.', 'account:sign_out' => 'Çıkış', 'ajax_handler:invalid_name' => 'Hatalı AJAX işleyici adı: :name.', 'ajax_handler:not_found' => '\':name\' isimli AJAX işleyici bulunamadı.', 'app:name' => 'October CMS', 'app:tagline' => 'Basitliğe dönüş...', 'asset:already_exists' => 'Bu isimde dosya veya dizin zaten var', 'asset:create_directory' => 'Klasör oluştur', 'asset:create_file' => 'Dosya oluştur', 'asset:delete' => 'Sil', 'asset:destination_not_found' => 'Hedef klasör bulunamadı', 'asset:directory_name' => 'Klasör ismi', 'asset:directory_popup_title' => 'Yeni klasör', 'asset:drop_down_add_title' => 'Ekle...', 'asset:drop_down_operation_title' => 'İşlemler...', 'asset:error_deleting_dir' => ':name dosyası silinirken hatayla karşılaşıldı.', 'asset:error_deleting_dir_not_empty' => ':name klasörü silinemedi. Klasör boş değil.', 'asset:error_deleting_directory' => ':dir klasörü silinirken hatayla karşılaşıldı', 'asset:error_deleting_file' => ':name dosyası silinirken hatayla karşılaşıldı.', 'asset:error_moving_directory' => ':dir klasörü taşınırken hatayla karşılaşıldı', 'asset:error_moving_file' => ':file dosyası taşınırken hatayla karşılaşıldı', 'asset:error_renaming' => 'Dosya veya dizin ismi düzenlenemedi', 'asset:error_uploading_file' => '\\":name\\" yüklenirken hatayla karşılaşıldı: :error', 'asset:file_not_valid' => 'Dosya geçerli değil', 'asset:invalid_name' => 'İsim sadece sayı, Latin harfleri, boşluk ve şu sembolleri içerebilir: ._-', 'asset:invalid_path' => 'Yol sadece sayı, Latin harfleri, boşluk ve şu sembolleri içerebilir: ._-/', 'asset:menu_label' => 'Dosyalar', 'asset:move' => 'Taşı', 'asset:move_button' => 'Taşı', 'asset:move_destination' => 'Hedef klasör', 'asset:move_please_select' => 'lütfen seçiniz', 'asset:move_popup_title' => 'Assets\'i taşı', 'asset:name_cant_be_empty' => 'İsim alanı boş bırakılamaz.', 'asset:new' => 'Yeni dosya', 'asset:original_not_found' => 'Orjinal dosya veya dizin bulunamadı', 'asset:path' => 'Yol', 'asset:rename' => 'Yeniden isimlendir', 'asset:rename_new_name' => 'Yeni isim', 'asset:rename_popup_title' => 'Yeniden isimlendir', 'asset:select' => 'Seç', 'asset:select_destination_dir' => 'Lütfen hedef klasör seçiniz', 'asset:selected_files_not_found' => 'Seçilen dosyalar bulunamadı.', 'asset:too_large' => 'Yüklenen dosya çok büyük. İzin verilen maksimum boyut :max_size', 'asset:type_not_allowed' => 'İzin verilen dosya tipleri: :allowed_types', 'asset:unsaved_label' => 'Kaydedilmemiş dosya(lar)', 'asset:upload_files' => 'Dosya(lar) yükle', 'auth:title' => 'Yönetim Paneli', 'backend_preferences:locale' => 'Dil', 'backend_preferences:locale_comment' => 'Yönetim Paneli dil seçiminizi belirleyin.', 'backend_preferences:menu_description' => 'Hesabınızın tercih edilen dil ayarını değiştirebilirsiniz.', 'backend_preferences:menu_label' => 'Panel Ayarları', 'behavior:missing_property' => ':class sınıfı :behavior davranışı tarafından kullanılan $:property özelliğini tanımlamalı.', 'branding:app_name' => 'Site Adı', 'branding:app_name_description' => 'Bu isim, Yönetim Panelinde başlık olarak kullanılacaktır.', 'branding:app_tagline' => 'Site Mottosu', 'branding:app_tagline_description' => 'Bu motto Yönetim Paneli giriş ekranında görüntülenecektir.', 'branding:brand' => 'Marka', 'branding:colors' => 'Renkler', 'branding:custom_stylesheet' => 'Özel stil - CSS', 'branding:logo' => 'Logo', 'branding:logo_description' => 'Yönetim Panelinde kullanılacak logoyu yükleyin.', 'branding:menu_description' => 'Yönetim Panelinin isim, renk şeması ve logo gibi ayarlarını düzenleyin.', 'branding:menu_label' => 'Yönetim paneli ayarlarını düzenle', 'branding:primary_dark' => 'Ana Renk (Koyu Ton)', 'branding:primary_light' => 'Ana Renk (Açık Ton)', 'branding:secondary_dark' => 'İkincil Renk (Koyu Ton)', 'branding:secondary_light' => 'İkincil Renk (Açık Ton)', 'branding:styles' => 'Stiller', 'cms:menu_label' => 'Tasarım Ayarları', 'cms_object:delete_success' => ':count şablon başarıyla silindi.', 'cms_object:error_creating_directory' => ':name klasörü oluşturulurken hata oluştu', 'cms_object:error_deleting' => '\\":name\\" şablon dosyası silinirken hatayla karşılaşıldı.', 'cms_object:error_saving' => '\\":name\\" kaydedilirken hatayla oluştu.', 'cms_object:file_already_exists' => '\\":name\\" isimli dosya mevcut.', 'cms_object:file_name_required' => 'Dosya adı alanı gereklidir.', 'cms_object:invalid_file' => 'Hatalı dosya adı: :name. Dosya isimleri sadece alfanümerik semboller, alt çizgiler, tire ve nokta içerebilir. Bazı doğru dosya adı örnekleri: sayfa.htm, sayfa, altdizin/sayfa', 'cms_object:invalid_file_extension' => 'Hatalı dosya uzantısı: :invalid. İzin verilen uzantılar: :allowed.', 'cms_object:invalid_property' => '\\":name\\" özelliği ayarlanamadı', 'combiner:not_found' => 'Kombine dosyası: \':name\' bulunamadı.', 'component:alias' => 'Takma ad', 'component:alias_description' => 'Bu bileşen için benzersiz bir isim. Sayfa veya şablonda kullanırken bu isim gerekecektir.', 'component:invalid_request' => 'Şablonda hatalı bileşen verisi olduğu için kaydedilemedi.', 'component:menu_label' => 'Bileşenler', 'component:method_not_found' => '\':name\' isimli bileşen \':method\'unu içermiyor.', 'component:no_description' => 'Açıklama girilmedi.', 'component:no_records' => 'Bileşen bulunamadı.', 'component:not_found' => '\':name\' isimli bileşen bulunamadı.', 'component:unnamed' => 'İsimsiz', 'component:validation_message' => 'Bileşen isimleri gerkelidir ve sadece Latin semboller, sayılar, ve alt çizgi içerebilir. Bileşen ismi ayrıca Latin harfle başlamalı.', 'config:not_found' => ':location için tanımlanan :file adlı ayar dosyası bulunamadı.', 'config:required' => ':location konumunda kullanılan :property ayarı bir değer içermelidir.', 'content:delete_confirm_multiple' => 'Seçili içerik dosyaları veya klasörlerini silmek istediğinize emin misiniz?', 'content:delete_confirm_single' => 'Bu içerik dosyasını silmek istediğinize emin misiniz?', 'content:menu_label' => 'İçerik', 'content:new' => 'Yeni İçerik', 'content:no_list_records' => 'İçerik dosyası bulunamadı.', 'content:not_found_name' => '\':name\' isminde içerik dosyası bulunamadı.', 'content:unsaved_label' => 'Kaydedilmemiş içerik', 'dashboard:add_widget' => 'Eklenti ekle', 'dashboard:columns' => '{1} sütun|[2,Inf] sütun', 'dashboard:full_width' => 'tam genişlik', 'dashboard:menu_label' => 'Anasayfa', 'dashboard:status:maintenance' => 'bakım modunda', 'dashboard:status:online' => 'yayında', 'dashboard:status:update_available' => '{0} güncelleme var!|{1} güncelleme var!|[2,Inf] güncelleme var!', 'dashboard:status:widget_title_default' => 'Sistem durumu', 'dashboard:widget_columns_description' => 'Eklenti genişliği, 1 ile 10 arasında bir sayı.', 'dashboard:widget_columns_error' => 'Lütfen eklenti genişliğini 1 ile 10 arasında girin.', 'dashboard:widget_columns_label' => 'Genişlik :columns', 'dashboard:widget_inspector_description' => 'Eklentinin ayarlarını düzenleyin', 'dashboard:widget_inspector_title' => 'Eklenti ayarları', 'dashboard:widget_label' => 'Eklenti', 'dashboard:widget_new_row_description' => 'Eklentiyi yeni satıra indir.', 'dashboard:widget_new_row_label' => 'Yeni satıra zorla', 'dashboard:widget_title_error' => 'Eklenti Başlığı gerekli.', 'dashboard:widget_title_label' => 'Eklenti başlığı', 'dashboard:widget_width' => 'Genişlik', 'directory:create_fail' => 'Klasör oluşturulamıyor: :name', 'editor:auto_closing' => 'Etiketleri ve özel karakterleri otomatik kapat', 'editor:code' => 'Kod', 'editor:code_folding' => 'Kod katlama (Alt satıra inme)', 'editor:content' => 'İçerik', 'editor:description' => 'Tanım', 'editor:enter_fullscreen' => 'Tam Ekran moduna geç', 'editor:exit_fullscreen' => 'Tam Ekran modundan çık', 'editor:filename' => 'Dosya Adı', 'editor:font_size' => 'Font büyüklüğü', 'editor:hidden' => 'Gizli', 'editor:hidden_comment' => 'Gizli sayfalara yalnızca Yönetim Paneline giriş yapmış kullanıcılar erişilebilir.', 'editor:highlight_active_line' => 'Aktif satırı vurgula', 'editor:layout' => 'Düzen', 'editor:markup' => 'Biçimlendirme', 'editor:menu_description' => 'Metin editörü ayarlarını düzenleyebilirsiniz.', 'editor:menu_label' => 'Editör ayarları', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta Tanım', 'editor:meta_title' => 'Meta Başlık', 'editor:new_title' => 'Yeni sayfa başlığı', 'editor:preview' => 'Önizleme', 'editor:settings' => 'Ayarlar', 'editor:show_gutter' => 'Satır numarasını göster', 'editor:show_invisibles' => 'Gizli karakterleri göster', 'editor:tab_size' => 'Tab genişliği', 'editor:theme' => 'Renk şeması', 'editor:title' => 'Başlık', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Tab girintisi', 'editor:word_wrap' => 'Uzun kelimeleri yeni satırda göster', 'event_log:created_at' => 'Tarih & Saat', 'event_log:empty_link' => 'Olay kaydını temizle', 'event_log:empty_loading' => 'Olay kaydı temizleniyor...', 'event_log:empty_success' => 'Olay kaydı temizlendi.', 'event_log:hint' => 'Bu kayıtlar, uygulamada ortaya çıkan potansiyel hataları, istisnaları ve hata ayıklama bilgilerini görüntüler.', 'event_log:id' => 'ID', 'event_log:id_label' => 'Olay Numarası', 'event_log:level' => 'Seviye', 'event_log:menu_description' => 'Olay kayıtlarının zamanlarını ve detaylarını görüntüler.', 'event_log:menu_label' => 'Olay kaydı', 'event_log:message' => 'Mesaj', 'event_log:return_link' => 'Olay kayıtlarına dön', 'field:invalid_type' => 'Geçersiz alan tipi :type.', 'field:options_method_not_exists' => ':model Model\'i \\":field\\" formuna geri dönüş için bir :method() metod tanımlamalıdır.', 'file:create_fail' => 'Dosya oluşturulamıyor: :name', 'fileupload:attachment' => 'Dosya Eki', 'fileupload:attachment_url' => 'Ek URLsi', 'fileupload:default_prompt' => '%s e tıkla ya da bir dosya sürükleyin', 'fileupload:description_label' => 'Tanım', 'fileupload:help' => 'Bu ek için bir başlık ve tanım girin.', 'fileupload:remove_confirm' => 'Emin misiniz?', 'fileupload:remove_file' => 'Dosyayı sil', 'fileupload:title_label' => 'Başlık', 'fileupload:upload_error' => 'Dosya yükleme hatası', 'fileupload:upload_file' => 'Dosya yükle', 'filter:all' => 'tümü', 'form:action_confirm' => 'Emin misiniz?', 'form:add' => 'Ekle', 'form:apply' => 'Uygula', 'form:behavior_not_ready' => 'Form oluşturulamadı, controller da initForm() metodunu kontrol edin.', 'form:cancel' => 'İptal', 'form:close' => 'Kapat', 'form:complete' => 'Tamamla', 'form:concurrency_file_changed_description' => 'Düzenlemeye çalıştığınız dosya disk üzerinde başka bir kullanıcı tarafından değiştirilmiş. Dosyayı yeniden yükleyebilir ve değişiklikleri kaybedersiniz ya da diskteki dosyayı kendi düzenlediğiniz hali ile değiştirebilirsiniz.', 'form:concurrency_file_changed_title' => 'Dosya değiştirildi', 'form:confirm' => 'Onayla', 'form:confirm_tab_close' => 'Bu sekmeyi kapatmak istediğinize emin misiniz? Kaydedilmemiş değişiklikleri kaybedeceksiniz.', 'form:create' => 'Oluştur', 'form:create_and_close' => 'Oluştur ve Kapat', 'form:create_success' => ':name başarıyla oluşturuldu', 'form:create_title' => ':name Oluştur', 'form:creating' => 'Oluşturuluyor...', 'form:creating_name' => 'Oluşturuluyor :name...', 'form:delete' => 'Sil', 'form:delete_row' => 'Kayıt Sil', 'form:delete_success' => ':name başarıyla silindi', 'form:deleting' => 'Siliniyor...', 'form:deleting_name' => 'Siliniyor :name...', 'form:field_off' => 'Kapalı', 'form:field_on' => 'Açık', 'form:insert_row' => 'Kayıt Ekle', 'form:missing_definition' => 'Form \':field\' için bir sütun değeri içermiyor.', 'form:missing_id' => 'Form kayıt ID\'si belirtilmedi.', 'form:missing_model' => ':class da kullanılan form için model değeri tanımlanmamış.', 'form:not_found' => 'ID\'si :id olan Form bulunamadı.', 'form:ok' => 'Tamam', 'form:or' => 'veya', 'form:preview_no_files_message' => 'Dosyalar yüklenmedi', 'form:preview_no_record_message' => 'Seçili kayıt yok.', 'form:preview_title' => ':name Görüntüle', 'form:reload' => 'Yenile', 'form:reset_default' => 'Ön Tanımlı Ayarlara Dön!', 'form:resetting' => 'İşleniyor', 'form:resetting_name' => ':name İşleniyor', 'form:save' => 'Kaydet', 'form:save_and_close' => 'Kaydet ve Kapat', 'form:saving' => 'Kaydediliyor...', 'form:saving_name' => 'Kaydediliyor :name...', 'form:select' => 'Seç', 'form:select_all' => 'tümü', 'form:select_none' => 'hiçbiri', 'form:select_placeholder' => 'lütfen seçin', 'form:undefined_tab' => 'Çeşitli', 'form:update_success' => ':name başarıyla güncellendi', 'form:update_title' => ':name Düzenle', 'install:install_completing' => 'Kurulumu tamamla', 'install:install_success' => 'Eklenti kurulumu tamamlandı.', 'install:missing_plugin_name' => 'Yüklemek istediğiniz eklentinin adını giriniz.', 'install:missing_theme_name' => 'Lütfen yüklemek için bir tema ismi giriniz.', 'install:plugin_label' => 'Eklenti Yükle', 'install:project_label' => 'Projeye bağla', 'install:theme_label' => 'Temayı yükle', 'layout:delete_confirm_multiple' => 'Seçili şablonları silmek istediğinize emin misiniz?', 'layout:delete_confirm_single' => 'Seçili şablonu silmek istediğinize emin misiniz?', 'layout:menu_label' => 'Şablonlar', 'layout:new' => 'Şablon oluştur', 'layout:no_list_records' => 'Şablon bulunamadı', 'layout:not_found_name' => '\':name\' isimli şablon bulunamadı', 'layout:unsaved_label' => 'Kaydedilmemiş şablon(lar)', 'list:behavior_not_ready' => 'Liste oluşturulamadı, controller da makeLists() metodunu kontrol edin.', 'list:default_title' => 'Liste', 'list:delete_selected' => 'Seçili olanı sil', 'list:delete_selected_confirm' => 'Seçili kayıtları silmek istediğize emin misiniz?', 'list:delete_selected_empty' => 'Silinecek seçili kayıt bulunamadı.', 'list:delete_selected_success' => 'Seçili kayıtlar başarıyla silindi.', 'list:invalid_column_datetime' => '\':column\' için sütun değeri DateTime nesnesi değil, Model kısmında $dates referansını unutmuş olabilir misiniz?', 'list:loading' => 'Yükleniyor...', 'list:missing_column' => ':columns için sütun değeri tanımlanmamış.', 'list:missing_columns' => ':class da kullanılan liste için sütun değeri tanımlanmamış.', 'list:missing_definition' => 'Liste \':field\' için bir sütun değeri içermiyor.', 'list:missing_model' => ':class da kullanılan liste için model değeri tanımlanmamış.', 'list:next_page' => 'Sonraki sayfa', 'list:no_records' => 'Bu alan için görüntülenecek kayıt yok.', 'list:pagination' => 'Gösterilen kayıtlar: :from-:to Toplam: :total', 'list:prev_page' => 'Önceki sayfa', 'list:records_per_page' => 'Sayfa başına kayıt sayısı', 'list:records_per_page_help' => 'Sayfa başına görüntülenecek kayıt sayısını seçin. Tek sayfada yüksek miktarda kayıt görüntülemek sistem performansını azaltabilir.', 'list:search_prompt' => 'Arama...', 'list:setup_help' => 'Listede görmek istediğiniz sütunları seçmek için onay kutularını kullanın. Sütunları yukarı veya aşağı sürükleyerek konumlarını değiştirebilirsiniz.', 'list:setup_title' => 'Liste Ayarları', 'locale:cs' => 'Czech', 'locale:de' => 'Deutsch (Deutschland)', 'locale:en' => 'English (United States)', 'locale:es' => 'Español (Spanish)', 'locale:es-ar' => 'Español (Argentina)', 'locale:fa' => '‏فارسی‏ (Iran) ايران', 'locale:fr' => 'Français (France)', 'locale:hu' => 'Magyar (Magyarország - Hungary)', 'locale:it' => 'Italiano (Italia)', 'locale:ja' => '日本語 (Japan) 日本', 'locale:nb-no' => 'Norwegian (Bokmål)', 'locale:nl' => 'Nederlands (Nederland)', 'locale:pt-br' => 'Português (Brasil)', 'locale:ro' => 'Română (România)', 'locale:ru' => 'Русский (Россия - Russia)', 'locale:sv' => 'Svenska (Sverige)', 'locale:tr' => 'Türkçe (Türkiye)', 'mail:drivers_hint_content' => 'Bu eposta yöntemiyle eposta gönderebilmeniz için \\":plugin\\" eklentisinin kurulmuş olması gerekir.', 'mail:drivers_hint_header' => 'Sürücüler yüklenmemiş', 'mail:general' => 'Genel', 'mail:log_file' => 'Günlük kayıt dosyası', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun Domain', 'mail:mailgun_domain_comment' => 'Mailgun domain belirtin.', 'mail:mailgun_secret' => 'Mailgun Gizli Anahtarı', 'mail:mailgun_secret_comment' => 'Mailgun API anahtarını girin.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill Gizli Anahtarı', 'mail:mandrill_secret_comment' => 'Mandrill API anahtarını girin.', 'mail:menu_description' => 'Email ayarlarını düzenle.', 'mail:menu_label' => 'Mail ayarları', 'mail:method' => 'Mail Metodu', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'Gönderici Email', 'mail:sender_name' => 'Gönderici Adı', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Sendmail Yolu', 'mail:sendmail_path_comment' => 'Sendmail programının yolunu belirtin.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'SMTP Adresi', 'mail:smtp_authorization' => 'SMTP yetkilendirmesi kullan', 'mail:smtp_authorization_comment' => 'SMTP sunucusu yetkilendirme gerektiriyorsa bu onay kutusunu işaretleyin.', 'mail:smtp_encryption' => 'SMTP şifreleme protokolü', 'mail:smtp_encryption_none' => 'Şifreleme yok', 'mail:smtp_encryption_ssl' => 'SSL', 'mail:smtp_encryption_tls' => 'TLS', 'mail:smtp_password' => 'Şifre', 'mail:smtp_port' => 'SMTP Port', 'mail:smtp_ssl' => 'SSL bağlantısı kullan', 'mail:smtp_username' => 'Kullanıcı Adı', 'mail_templates:code' => 'Kod', 'mail_templates:code_comment' => 'Bu şablona referans için benzersiz bir kod verin', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Düzyazı', 'mail_templates:description' => 'Tanım', 'mail_templates:layout' => 'Layout', 'mail_templates:layouts' => 'Layoutlar', 'mail_templates:menu_description' => 'Kullanıcılar ve yöneticiler için gönderilen e-posta şablonları düzenleyin.', 'mail_templates:menu_label' => 'Mail şablonları', 'mail_templates:menu_layouts_label' => 'Mail Layoutları', 'mail_templates:name' => 'İsim', 'mail_templates:name_comment' => 'Bu şablona referans için benzersiz bir isim verin', 'mail_templates:new_layout' => 'Yeni Layout', 'mail_templates:new_template' => 'Yeni Şablon', 'mail_templates:no_layout' => '-- Şablon Yok --', 'mail_templates:return' => 'Şablon listesine geri dön', 'mail_templates:saving' => 'Şablon kaydediliyor...', 'mail_templates:sending' => 'Deneme mesajı gönderiliyor...', 'mail_templates:subject' => 'Konu', 'mail_templates:subject_comment' => 'Email mesaj konusu', 'mail_templates:template' => 'Şablon', 'mail_templates:templates' => 'Şablonlar', 'mail_templates:test_confirm' => 'Deneme mesajı :email eposta adresine gönderilecek. Devam etmek istiyor musunuz?', 'mail_templates:test_send' => 'Test mesajı gönder', 'mail_templates:test_success' => 'Test mesajı başarılı şekilde gönderildi.', 'maintenance:is_enabled' => 'Bakım modunu aktifleştir', 'maintenance:is_enabled_comment' => 'Aktifleştirildiğinde, web sitesi ziyaretçileri aşağıdaki seçtiğiniz sayfayı görecektir.', 'maintenance:settings_menu' => 'Bakım modu', 'maintenance:settings_menu_description' => 'Bakım modu ayarlarını düzenleyip bakım sayfasını yapılandırabilirsiniz.', 'media:add_folder' => 'Yeni Klasör', 'media:click_here' => 'Buraya tıkla', 'media:crop_and_insert' => 'Kırp ve Ekle', 'media:delete' => 'Sil', 'media:delete_confirm' => 'Bu öğe veya öğeleri gerçekten silmek istediğinize emin misiniz?', 'media:delete_empty' => 'Lütfen silinecek öğeleri seçiniz.', 'media:display' => 'Görüntüle', 'media:empty_library' => 'Medya kütüphanesi boş. Başlamak için dosya yükleyin yada klasör oluşturun.', 'media:error_creating_folder' => 'Klasör oluştururken hata', 'media:error_renaming_file' => 'Öğeyi yeniden isimlendirirken hata.', 'media:filter_audio' => 'Ses', 'media:filter_documents' => 'Belgeler', 'media:filter_everything' => 'Her şey', 'media:filter_images' => 'Resimler', 'media:filter_video' => 'Video', 'media:folder' => 'Klasör', 'media:folder_name' => 'Klasör ismi', 'media:folder_or_file_exist' => 'Belirtilen isimde bir klasör ya da dosya zaten mevcut.', 'media:folder_size_items' => 'öğe(ler)', 'media:height' => 'Yükseklik', 'media:image_size' => 'Resim boyutu:', 'media:insert' => 'Ekle', 'media:invalid_path' => 'Geçersiz dosya dizini belirtildi: \':path\'.', 'media:last_modified' => 'Son düzenleme tarihi', 'media:library' => 'Kütüphane', 'media:menu_label' => 'Medya', 'media:move' => 'Taşı', 'media:move_dest_src_match' => 'Lütfen başka bir hedef klasör seçiniz.', 'media:move_destination' => 'Hedef klasör', 'media:move_empty' => 'Lütfen taşınacak öğeleri seçiniz.', 'media:move_popup_title' => 'Dosyaları veya klasörleri taşı', 'media:multiple_selected' => 'Birden fazla öğe seçildi.', 'media:new_folder_title' => 'Yeni Klasör', 'media:no_files_found' => 'İsteğiniz doğrultusunda hiçbir dosya bulunamadı.', 'media:nothing_selected' => 'Hiçbir şey seçilmedi.', 'media:order_by' => 'Sırala', 'media:please_select_move_dest' => 'Lütfen hedef klasörü seçiniz.', 'media:public_url' => 'Public URL', 'media:resize' => 'Yeniden boyutlandırma...', 'media:resize_image' => 'Resimi yeniden boyutlandırs', 'media:restore' => 'Tüm değişiklikleri geri al', 'media:return_to_parent' => 'Ana klasöre geri dön', 'media:return_to_parent_label' => 'Yukarı git..', 'media:search' => 'Ara', 'media:select_single_image' => 'Lütfen sadece bir tane resim seçiniz.', 'media:selected_size' => 'Seçili:', 'media:selection_mode' => 'Seçim modu', 'media:selection_mode_fixed_ratio' => 'Sabit oran', 'media:selection_mode_fixed_size' => 'Sabit boyut', 'media:selection_mode_normal' => 'Normal', 'media:selection_not_image' => 'Seçili öğe bir resim değil.', 'media:size' => 'Boyut', 'media:thumbnail_error' => 'Önizleme oluşturulurken hata.', 'media:title' => 'Başlık', 'media:upload' => 'Yükle', 'media:uploading_complete' => 'Yükleme tamamlandı', 'media:uploading_file_num' => ':number adet dosya yükleniyor...', 'media:width' => 'Genişlik', 'mediafinder:default_prompt' => 'Bir medya öğesi bulmak için %s butonuna tıklayın', 'model:invalid_class' => ':class da tanımlanan :model Model\'i geçerli değil, \\Model sınıfını extend almalı.', 'model:mass_assignment_failed' => '\':attribute\' Model değeri için toplu atama başarısız.', 'model:missing_id' => 'Aranılan model için ID belirtilmedi.', 'model:missing_method' => '\':class\' Model\'i \':method\' isimli bir metod içermiyor.', 'model:missing_relation' => '\':class\' Model\'i \':relation\' ilişkisi için tanımlanmamış.', 'model:name' => 'Model', 'model:not_found' => 'ID\'si :id olan \':class\' Model bulunamadı.', 'myaccount:menu_description' => 'Hesabınızın ismi, email adresi ve şifresi gibi bilgilerini düzenleyebilirsiniz.', 'myaccount:menu_keywords' => 'güvenli oturum açma', 'myaccount:menu_label' => 'Kişisel Bilgilerim', 'mysettings:menu_description' => 'Yönetim hesabı ile ilgili ayarlar', 'mysettings:menu_label' => 'Ayarlarım', 'page:access_denied:cms_link' => 'Ana sayfaya dön', 'page:access_denied:help' => 'Bu sayfayı görüntülemek için gerekli izinlere sahip değilsiniz.', 'page:access_denied:label' => 'Giriş engellendi', 'page:custom_error:help' => 'Üzgünüz, bir şeyler ters gitti ve sayfa görüntülenemiyor.', 'page:custom_error:label' => 'Sayfa hatası', 'page:delete_confirm_multiple' => 'Seçili sayfaları silmek istediğinize emin misiniz?', 'page:delete_confirm_single' => 'Bu sayfayı silmek istediğinize emin misiniz?', 'page:invalid_token:label' => 'Geçersiz güvenlik anahtarı', 'page:invalid_url' => 'Hatalı URL formatı. URL eğik çizgi ile başlamalı ve sayı, Latin harfleri ve aşağıdaki sembolleri içerebilir: ._-[]:?|/+*^$', 'page:menu_label' => 'Sayfalar', 'page:new' => 'Sayfa oluştur', 'page:no_layout' => '-- şablon yok --', 'page:no_list_records' => 'Hiç sayfa yok.', 'page:not_found:help' => 'İstenilen sayfa bulunamadı.', 'page:not_found:label' => 'Sayfa bulunamadı', 'page:not_found_name' => '\':name\' sayfası bulunamadı', 'page:unsaved_label' => 'Kaydedilmemiş sayfa(lar)', 'page:untitled' => 'Başlıksız', 'partial:delete_confirm_multiple' => 'Seçili bölümleri silmek istediğinize emin misiniz?', 'partial:delete_confirm_single' => 'Bu bölümü silmek istediğinize emin misiniz?', 'partial:invalid_name' => 'Hatalı bölüm adı: :name.', 'partial:menu_label' => 'Bölümler', 'partial:new' => 'Bölüm Oluştur', 'partial:no_list_records' => 'Bölüm bulunamadı.', 'partial:not_found_name' => '\':name\' bölümü bulunamadı.', 'partial:unsaved_label' => 'Kaydedilmemiş bölüm(ler)', 'permissions:access_logs' => 'Sistem günlüğünü görüntüle', 'permissions:manage_assets' => 'Dosyaları düzenleyebilsin', 'permissions:manage_branding' => 'Back-end i özelleştir', 'permissions:manage_content' => 'İçerikleri düzenleyebilsin', 'permissions:manage_layouts' => 'Şablonları düzenleyebilsin', 'permissions:manage_mail_settings' => 'E-posta ayarlarını yönetebilsin', 'permissions:manage_mail_templates' => 'E-posta şablonları yönetebilsin', 'permissions:manage_media' => 'Medyaları düzenleyebilsin', 'permissions:manage_other_administrators' => 'Diğer yöneticileri düzenleyebilsin', 'permissions:manage_pages' => 'Sayfaları düzenleyebilsin', 'permissions:manage_partials' => 'Parça Kodları düzenleyebilsin', 'permissions:manage_software_updates' => 'Sistem güncellemelerini yönetebilsin', 'permissions:manage_system_settings' => 'Sistem ayarlarını düzenleyebilsin', 'permissions:manage_themes' => 'Temaları düzenleyebilsin', 'permissions:name' => 'CMS Sistemi', 'permissions:view_the_dashboard' => 'Panoyu görüntüleyebilsin', 'plugin:label' => 'Eklenti', 'plugin:name:help' => 'Eklenti adı eşsiz olmalıdır. Örneğin, RainLab.Blog', 'plugin:name:label' => 'Eklenti Adı', 'plugin:unnamed' => 'İsimsiz eklenti', 'plugins:disable_confirm' => 'Are you sure?', 'plugins:disable_success' => 'Eklentiler başarıyla pasifleştirildi.', 'plugins:disabled_help' => 'Pasifleştirilmiş eklentiler, uygulama tarafından göz ardı edilir.', 'plugins:disabled_label' => 'Pasif', 'plugins:enable_or_disable' => 'Aktifleştir veya Pasifleştir', 'plugins:enable_or_disable_title' => 'Eklentileri Aktifleştir veya Pasifleştir', 'plugins:enable_success' => 'Eklentiler başarıyla aktifleştirildi.', 'plugins:frozen_help' => 'Dondurulmuş eklentiler güncelleme işlemi sırasında görmezden gelinecek ve güncellenmeyecektir.', 'plugins:frozen_label' => 'Güncelleştirmeleri dondur', 'plugins:install' => 'Eklentileri yükle', 'plugins:install_products' => 'Ürünleri yükle', 'plugins:installed' => 'Yüklü eklentiler', 'plugins:manage' => 'Eklentileri yönet', 'plugins:no_plugins' => 'Mağazadan yüklenmiş bir eklenti bulunmamaktadır.', 'plugins:recommended' => 'Tavsiye edilen', 'plugins:refresh' => 'Yenile', 'plugins:refresh_confirm' => 'Emin misiniz?', 'plugins:refresh_success' => 'Eklentiler başarıyla yenilendi.', 'plugins:remove' => 'Kaldır', 'plugins:remove_confirm' => 'Emin misiniz?', 'plugins:remove_success' => 'Eklentiler sistemden başarıyla kaldırıldı.', 'plugins:search' => 'eklenti ara...', 'plugins:selected_amount' => 'Seçilen eklentiler: :amount', 'plugins:unknown_plugin' => 'Eklenti sistemden başarıyla kaldırıldı.', 'project:attach' => 'Projeyi Eşle', 'project:detach' => 'Projeyi Ayır', 'project:detach_confirm' => 'Bu projeyi ayırmak istediğinizden emin misiniz?', 'project:id:help' => 'Proje ID\'sini nasıl bulurum?', 'project:id:label' => 'Proje ID', 'project:id:missing' => 'Lütfen kullanılacak Proje ID\'sini belirleyin.', 'project:name' => 'Proje', 'project:none' => 'Hiçbiri', 'project:owner_label' => 'Proje Sahibi', 'project:unbind_success' => 'Proje ayırma işlemi tamamlandı.', 'relation:add' => 'Ekle', 'relation:add_a_new' => 'Yeni bir :name ekle', 'relation:add_name' => ':name Ekle', 'relation:add_selected' => 'Seçilenleri ekle', 'relation:cancel' => 'İptal', 'relation:close' => 'Kapat', 'relation:create' => 'Oluştur', 'relation:create_name' => ':name Oluştur', 'relation:delete' => 'Sil', 'relation:delete_confirm' => 'Emin misiniz?', 'relation:delete_name' => ':name Sil', 'relation:help' => 'Eklemek için bir öğeye tıklayın', 'relation:invalid_action_multi' => 'Bu işlem çoklu ilişkilendirme için kullanılamaz.', 'relation:invalid_action_single' => 'Bu işlem tekli ilişkilendirme için kullanılamaz.', 'relation:link' => 'Bağla', 'relation:link_a_new' => 'Yeni bir :name bağla', 'relation:link_name' => ':name bağla', 'relation:link_selected' => 'Seçileni bağla', 'relation:missing_definition' => 'İlişki \':field\' için bir sütun değeri içermiyor.', 'relation:missing_model' => ':class da kullanılan ilişki için model değeri tanımlanmamış.', 'relation:preview' => 'Önizle', 'relation:preview_name' => ':name Önizle', 'relation:related_data' => 'İlişkili veri :name', 'relation:remove' => 'Kaldır', 'relation:remove_name' => ':name Kaldır', 'relation:unlink' => 'Bağlamayı kaldır', 'relation:unlink_confirm' => 'Emin misiniz?', 'relation:unlink_name' => ':name bağlamasını kaldır', 'relation:update' => 'Güncelle', 'relation:update_name' => ':name Güncelle', 'reorder:default_title' => 'Kayıtları yeniden sırala', 'reorder:no_records' => 'Sıralamak için bir kayıt bulunamadı.', 'request_log:count' => 'Sayaç', 'request_log:empty_link' => 'İstek günlüğünü temizle', 'request_log:empty_loading' => 'İstek günlüğü temizleniyor...', 'request_log:empty_success' => 'İstek günlüğü temizlendi.', 'request_log:hint' => 'Bu günlük dikkat edilmesi gereken tarayıcı isteklerinin bir listesini görüntüler. Örneğin, bir ziyaretçi bulunmayan bir CMS sayfasını açarsa 404 kodu ile bir kayıt oluşturulur.', 'request_log:id' => 'ID', 'request_log:id_label' => 'İstek Numarası', 'request_log:menu_description' => '(404) sayfası gibi kötü ya da yeniden yönlendirilmiş istekleri görüntüler.', 'request_log:menu_label' => 'İstek günlüğü', 'request_log:referer' => 'Referer', 'request_log:return_link' => 'İstek günlüğüne dön', 'request_log:status_code' => 'Durum', 'request_log:url' => 'URL', 'server:connect_error' => 'Sunucuyla bağlantı kurulamadı.', 'server:file_corrupt' => 'Sunucudaki dosya bozulmuş.', 'server:file_error' => 'Paket teslim edilirken sunucuda hata meydana geldi.', 'server:response_empty' => 'Sunucudan boş cevap geldi.', 'server:response_invalid' => 'Sunucudan hatalı cevap geldi.', 'server:response_not_found' => 'Güncelleme sunucusu bulunamadı.', 'settings:menu_label' => 'Ayarlar', 'settings:missing_model' => 'Ayarlar sayfasında Model tanımı eksik.', 'settings:not_found' => 'Belirtilen ayarlar bulunamadı.', 'settings:return' => 'Sistem ayarları sayfasına dön', 'settings:search' => 'Ara', 'settings:update_success' => ':name için ayarlar güncellendi.', 'sidebar:add' => 'Ekle', 'sidebar:search' => 'Ara...', 'system:categories:cms' => 'CMS', 'system:categories:customers' => 'Müşteriler', 'system:categories:events' => 'Olaylar', 'system:categories:logs' => 'Kayıtlar', 'system:categories:mail' => 'E-Mail', 'system:categories:misc' => 'Çeşitli', 'system:categories:my_settings' => 'Ayarlarım', 'system:categories:shop' => 'Mağaza', 'system:categories:social' => 'Sosyal', 'system:categories:system' => 'Sistem', 'system:categories:team' => 'Takım', 'system:categories:users' => 'Kullanıcılar', 'system:menu_label' => 'Sistem', 'system:name' => 'Sistem', 'template:invalid_type' => 'Hatalı şablon tipi.', 'template:not_found' => 'İstenilen şablon bulunamadı.', 'template:saved' => 'Şablon başarıyla kaydedildi.', 'theme:activate_button' => 'Aktifleştir', 'theme:active:not_found' => 'Aktif tema bulunamadı.', 'theme:active:not_set' => 'Aktif tema belirtilmedi.', 'theme:active_button' => 'Aktifleştir', 'theme:author_label' => 'Yazar', 'theme:author_placeholder' => 'Kişi yada şirket ismi', 'theme:code_label' => 'Kod', 'theme:code_placeholder' => 'Temanın dağıtımında kullanılmak üzere benzersiz bir kod.', 'theme:create_button' => 'Oluştur', 'theme:create_new_blank_theme' => 'Yeni boş bir tema oluştur', 'theme:create_theme_required_name' => 'Please specify a name for the theme.', 'theme:create_theme_success' => 'Tema başarıyla oluşturuldu!', 'theme:create_title' => 'Tema oluştur', 'theme:customize_button' => 'Düzenle', 'theme:customize_theme' => 'Temayı Özelleştir', 'theme:default_tab' => 'Özellikler', 'theme:delete_active_theme_failed' => 'Aktif tema silinemez. Lütfen başka bir temayı aktif tema olarak seçiniz.', 'theme:delete_button' => 'Sil', 'theme:delete_confirm' => 'Bu temayı silmek istediniğize emin misiniz? Bu işlem geri alınamaz!', 'theme:delete_theme_success' => 'Tema başarıyla silindi!', 'theme:description_label' => 'Açıklama', 'theme:description_placeholder' => 'Tema açıklaması', 'theme:dir_name_create_label' => 'Hedef tema dizini', 'theme:dir_name_invalid' => 'İsim sadece sayı, latin harfleri ve şu sembolleri içerebilir: _- ', 'theme:dir_name_label' => 'Klasör ismi', 'theme:dir_name_taken' => 'İstenen tema dizini zaten mevcut.', 'theme:duplicate_button' => 'Kopyala', 'theme:duplicate_theme_success' => 'Tema başarıyla kopyalandı!', 'theme:duplicate_title' => 'Temayı kopyala', 'theme:edit:not_found' => 'Düzenlenecek tema bulunamadı.', 'theme:edit:not_match' => 'Ulaşmaya çalıştığınız nesne düzenlenecek temaya ait değil. Lütfen sayfayı yenileyin.', 'theme:edit:not_set' => 'Düzenlenecek tema belirtilmedi.', 'theme:edit_properties_button' => 'Özellikleri düzenle', 'theme:edit_properties_title' => 'Tema', 'theme:export_button' => 'Dışa aktar', 'theme:export_folders_comment' => 'Lütfen dışa aktarmak istediğiniz tema klasörlerini seçiniz', 'theme:export_folders_label' => 'Klasörler', 'theme:export_title' => 'Temayı dışa aktar', 'theme:find_more_themes' => 'Daha fazla tema bulun', 'theme:homepage_label' => 'Anasayfa', 'theme:homepage_placeholder' => 'Anasayfa Adresi(URL)', 'theme:import_button' => 'İçe aktar', 'theme:import_folders_comment' => 'Lütfen içe aktarmak istediğiniz tema klasörlerini seçiniz.', 'theme:import_folders_label' => 'Klasörler', 'theme:import_overwrite_comment' => 'Sadece yeni dosyaları almak için bu kutucuğu boşaltın', 'theme:import_overwrite_label' => 'Mevcut dosyaların üstüne yaz', 'theme:import_theme_success' => 'Tema başarıyla içe aktarıldı!', 'theme:import_title' => 'Temayı içe aktar', 'theme:import_uploaded_file' => 'Tema arşiv dosyası', 'theme:label' => 'Tema', 'theme:manage_button' => 'Yönet', 'theme:manage_title' => 'Temayı yönet', 'theme:name:help' => 'Temaya benzersiz bir isim verin. Örn: RainLab.Vanilla', 'theme:name:label' => 'Tema Adı', 'theme:name_create_placeholder' => 'Yeni tema ismi', 'theme:name_label' => 'İsim', 'theme:new_directory_name_comment' => 'Kopyalanacak tema için yeni bir tema dizini giriniz.', 'theme:new_directory_name_label' => 'Tema dizini', 'theme:not_found_name' => '\':name\' isimli tema bulunamadı.', 'theme:return' => 'Tema listesine geri dön', 'theme:save_properties' => 'Özellikleri kaydet', 'theme:saving' => 'Tema kaydediliyor...', 'theme:settings_menu' => 'Temalar', 'theme:settings_menu_description' => 'Yüklü temalar listesini önizleyebilir, bir tema seçip aktifleştirebilirsiniz.', 'theme:theme_label' => 'Tema', 'theme:theme_title' => 'Temalar', 'theme:unnamed' => 'İsimsiz tema', 'themes:install' => 'Temaları yükle', 'themes:installed' => 'Yüklü temalar', 'themes:no_themes' => 'Mağazadan yüklenmiş bir tema bulunmamaktadır.', 'themes:recommended' => 'Tavsiye edilen', 'themes:remove_confirm' => 'Bu temayı silmek istediğinize emin misiniz?', 'themes:search' => 'tema ara...', 'tooltips:preview_website' => 'Websiteyi Önizle', 'updates:check_label' => 'Güncellemeleri kontrol et', 'updates:core_build' => 'Versiyon :build', 'updates:core_build_help' => 'Son versiyon kullanılabilir.', 'updates:core_current_build' => 'Mevcut versiyon', 'updates:core_downloading' => 'Uygulama dosyaları indiriliyor', 'updates:core_extracting' => 'Uygulama dosyaları çıkarılıyor', 'updates:details_author' => 'Yazar', 'updates:details_current_version' => 'Mevcut sürüm', 'updates:details_readme' => 'Kılavuz', 'updates:details_readme_missing' => 'Herhangi bir kılavuz bulunamadı.', 'updates:details_title' => 'Eklenti detayları', 'updates:details_upgrades' => 'Yükseltme Kılavuzu', 'updates:details_upgrades_missing' => 'Yükseltme talimatı bulunamadı.', 'updates:details_view_homepage' => 'Anasayfa', 'updates:disabled' => 'Devre dışı', 'updates:force_label' => 'Güncellemeye zorla', 'updates:found:help' => 'Sistemi güncelleye tıklayarak güncelleme işlemini başlatabilirsiniz.', 'updates:found:label' => 'Güncellemeler bulundu!', 'updates:important_action:confirm' => 'Güncellemeyi onayla', 'updates:important_action:empty' => 'Eylem seçin', 'updates:important_action:ignore' => 'Eklentiyi geç (her zaman)', 'updates:important_action:skip' => 'Eklentiyi geç (tek seferlik)', 'updates:important_action_required' => 'Eylem gerekli', 'updates:important_alert_text' => 'Bazı eklentiler işlem gerektirebilir.', 'updates:important_view_guide' => 'Yükseltme kılavuzuna göz atın', 'updates:menu_description' => 'Sistemi güncelleyin, temaları ve eklentileri yönetin.', 'updates:menu_label' => 'Güncellemeler', 'updates:name' => 'Sistemi Güncelle', 'updates:none:help' => 'Yeni güncelleme bulunamadı.', 'updates:none:label' => 'Güncelleme yok', 'updates:plugin_author' => 'Yazar', 'updates:plugin_code' => 'Kod', 'updates:plugin_current_version' => 'Mevcut sürüm', 'updates:plugin_description' => 'Açıklama', 'updates:plugin_downloading' => 'Modül indiriliyor: :name', 'updates:plugin_extracting' => 'Modül dosyaları çıkarılıyor: :name', 'updates:plugin_name' => 'Adı', 'updates:plugin_version' => 'Versiyon', 'updates:plugin_version_none' => 'Yeni eklenti', 'updates:plugins' => 'Modüller', 'updates:retry_label' => 'Tekrar dene', 'updates:return_link' => 'Sistem güncellemelerine geri dön', 'updates:theme_downloading' => 'Tema indiriliyor: :name', 'updates:theme_extracting' => 'Tema paketten çıkarılıyor: :name', 'updates:theme_new_install' => 'Yeni tema kur.', 'updates:themes' => 'Temalar', 'updates:title' => 'Güncellemeleri Yönet', 'updates:update_completing' => 'Güncelleme işlemi tamamlanıyor', 'updates:update_failed_label' => 'Güncelleme hatası', 'updates:update_label' => 'Sistemi güncelle', 'updates:update_loading' => 'Kullanılabilir güncellemeler kontrol ediliyor...', 'updates:update_success' => 'Güncelleme işlemi başarıyla tamamlandı.', 'user:account' => 'Hesap', 'user:allow' => 'Yetki Var', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Bu yöneticiyi silmek istiyor musunuz?', 'user:deny' => 'Yetki Yok', 'user:email' => 'Email', 'user:first_name' => 'İsim', 'user:full_name' => 'Tam Adı', 'user:group:code_comment' => 'Grup kodunu yazın', 'user:group:code_field' => 'Grup kodu', 'user:group:delete_confirm' => 'Bu yönetici grubunu silmek istiyor musunuz?', 'user:group:description_field' => 'Açıklama', 'user:group:is_new_user_default_field' => 'Yeni kullanıcılar bu gruba dahil edilsin mi?', 'user:group:list_title' => 'Grupları Yönet', 'user:group:menu_label' => 'Gruplar', 'user:group:name' => 'Grup', 'user:group:name_field' => 'Adı', 'user:group:new' => 'Yeni Yönetici Grubu', 'user:group:return' => 'Grup listesine dön', 'user:group:users_count' => 'Users', 'user:groups' => 'Gruplar', 'user:groups_comment' => 'Kullanıcının hangi gruba bağlı olduğunu belirleyin.', 'user:inherit' => 'Grup Yetkisi', 'user:last_name' => 'Soyisim', 'user:list_title' => 'Yöneticileri Yönet', 'user:login' => 'Kullanıcı Adı', 'user:menu_description' => 'Yönetim paneli gruplarını, kullanıcılarını ve izinlerini yönetin.', 'user:menu_label' => 'Yöneticiler', 'user:name' => 'Yönetici', 'user:new' => 'Yeni Yönetici', 'user:password' => 'Parola', 'user:password_confirmation' => 'Parola (Tekrar)', 'user:permissions' => 'İzinler', 'user:preferences:not_authenticated' => 'Ayarları görüntülemek veya düzenlemek için yetkili bir kullanıcı yok.', 'user:return' => 'Yöneticiler listesine dön', 'user:send_invite' => 'Email ile davet gönder', 'user:send_invite_comment' => 'Kullanıcının email adresine davet göndermek için burayı işaretleyin', 'user:superuser' => 'Süper Kullanıcı', 'user:superuser_comment' => 'Kullanıcıya her alanda yetki vermek için burayı işaretleyin.', 'validation:accepted' => ':attribute kabul edilmelidir.', 'validation:active_url' => ':attribute geçerli bir URL olmalıdır.', 'validation:after' => ':attribute şundan daha eski bir tarih olmalıdır :date.', 'validation:alpha' => ':attribute sadece harflerden oluşmalıdır.', 'validation:alpha_dash' => ':attribute sadece harfler, rakamlar ve tirelerden oluşmalıdır.', 'validation:alpha_num' => ':attribute sadece harfler ve rakamlar içermelidir.', 'validation:array' => ':attribute dizi olmalıdır.', 'validation:before' => ':attribute şundan daha önceki bir tarih olmalıdır :date.', 'validation:between:array' => ':attribute :min - :max arasında nesneye sahip olmalıdır.', 'validation:between:file' => ':attribute :min - :max arasındaki kilobayt değeri olmalıdır.', 'validation:between:numeric' => ':attribute :min - :max arasında olmalıdır.', 'validation:between:string' => ':attribute :min - :max arasında karakterden oluşmalıdır.', 'validation:confirmed' => ':attribute tekrarı eşleşmiyor.', 'validation:date' => ':attribute geçerli bir tarih olmalıdır.', 'validation:date_format' => ':attribute :format biçimi ile eşleşmiyor.', 'validation:different' => ':attribute ile :other birbirinden farklı olmalıdır.', 'validation:digits' => ':attribute :digits rakam olmalıdır.', 'validation:digits_between' => ':attribute :min ile :max arasında rakam olmalıdır.', 'validation:email' => ':attribute biçimi geçersiz.', 'validation:exists' => 'Seçili :attribute geçersiz.', 'validation:image' => ':attribute alanı resim dosyası olmalıdır.', 'validation:in' => ':attribute değeri geçersiz.', 'validation:integer' => ':attribute rakam olmalıdır.', 'validation:ip' => ':attribute geçerli bir IP adresi olmalıdır.', 'validation:max:array' => ':attribute değeri :max adedinden az nesneye sahip olmalıdır.', 'validation:max:file' => ':attribute değeri :max kilobayt değerinden küçük olmalıdır.', 'validation:max:numeric' => ':attribute değeri :max değerinden küçük olmalıdır.', 'validation:max:string' => ':attribute değeri :max karakter değerinden küçük olmalıdır.', 'validation:mimes' => ':attribute dosya biçimi :values olmalıdır.', 'validation:min:array' => ':attribute en az :min nesneye sahip olmalıdır.', 'validation:min:file' => ':attribute değeri :min kilobayt değerinden büyük olmalıdır.', 'validation:min:numeric' => ':attribute değeri :min değerinden büyük olmalıdır.', 'validation:min:string' => ':attribute değeri :min karakter değerinden büyük olmalıdır.', 'validation:not_in' => 'Seçili :attribute geçersiz.', 'validation:numeric' => ':attribute rakam olmalıdır.', 'validation:regex' => ':attribute biçimi geçersiz.', 'validation:required' => ':attribute alanı gereklidir.', 'validation:required_if' => ':attribute alanı, :other :value değerine sahip olduğunda zorunludur.', 'validation:required_with' => ':attribute alanı :values varken zorunludur.', 'validation:required_with_all' => ':attribute alanı :values varken zorunludur.', 'validation:required_without' => ':attribute alanı :values yokken zorunludur.', 'validation:required_without_all' => ':attribute alanı :values yokken zorunludur.', 'validation:same' => ':attribute ile :other eşleşmelidir.', 'validation:size:array' => ':attribute :size nesneye sahip olmalıdır.', 'validation:size:file' => ':attribute :size kilobyte olmalıdır.', 'validation:size:numeric' => ':attribute :size olmalıdır.', 'validation:size:string' => ':attribute :size karakter olmalıdır.', 'validation:unique' => ':attribute daha önceden kayıt edilmiş.', 'validation:url' => ':attribute biçimi geçersiz.', 'warnings:extension' => ':name PHP eklentisi sistemde yüklü değil. Lütfen kütüphaneyi kurun ve eklentiyi aktifleştirin.', 'warnings:permissions' => ':name dizini ve alt dizinleri PHP tarafından yazılabilir değil. Lütfen bu dizindeki webserver için gerekli yazma izinlerini verin.', 'warnings:tips' => 'Sistem ayar ipuçları', 'warnings:tips_description' => 'Sistemin düzgün çalışabilmesi için dikkat etmeniz gereken sorunlar var.', 'widget:not_bound' => '\':name\' isimli widget sınıfı controllerda tanımlanmamış', 'widget:not_registered' => '\':name\' isimli widget sınıfı sistemde kayıtlı değil', 'zip:extract_failed' => '\':file\' adlı çekirdek dosyası dosya paketinden çıkarılamadı.']);
示例#28
0
文件: hu.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Időpont', 'access_log:email' => 'E-mail cím', 'access_log:first_name' => 'Keresztnév', 'access_log:hint' => 'Ez a napló a felhasználók sikeres bejelentkezési kísérleteit listázza ki. A bejegyzéseket :days napig őrzi meg a rendszer.', 'access_log:ip_address' => 'IP cím', 'access_log:last_name' => 'Vezetéknév', 'access_log:login' => 'Felhasználónév', 'access_log:menu_description' => 'A felhasználók sikeres bejelentkezéseinek megtekintése.', 'access_log:menu_label' => 'Hozzáférésnapló', 'account:apply' => 'Alkalmaz', 'account:cancel' => 'Mégsem', 'account:delete' => 'Törlés', 'account:email_placeholder' => 'e-mail cím', 'account:enter_email' => 'Adja meg az e-mail címét', 'account:enter_login' => 'Adja meg a felhasználónevét', 'account:enter_new_password' => 'Adjon meg egy új jelszót', 'account:forgot_password' => 'Elfelejtette a jelszavát?', 'account:login' => 'Belépés', 'account:login_placeholder' => 'felhasználónév', 'account:ok' => 'OK', 'account:password_placeholder' => 'jelszó', 'account:password_reset' => 'Új jelszó kiadása', 'account:reset' => 'Alaphelyzet', 'account:reset_error' => 'A megadott jelszó átállítási adatok érvénytelenek. Próbálja újra!', 'account:reset_fail' => 'Nem állítható vissza a jelszava!', 'account:reset_success' => 'A jelszó átállítása sikerült. Most már bejelentkezhet.', 'account:restore' => 'Visszaállítás', 'account:restore_error' => 'Nem található a(z) \':login\' nevű felhasználó.', 'account:restore_success' => 'A visszaállítással kapcsolatos utasításokat tartalmazó levél elküldésre került az e-mail címére.', 'account:sign_out' => 'Kijelentkezés', 'ajax_handler:invalid_name' => 'Érvénytelen AJAX kezelő név: :name.', 'ajax_handler:not_found' => 'A(z) \':name\' AJAX kezelő nem található.', 'alert:cancel_button_text' => 'Mégsem', 'alert:confirm_button_text' => 'OK', 'app:name' => 'OctoberCMS', 'app:tagline' => 'Visszatérés az alapokhoz', 'asset:already_exists' => 'Már létezik ilyen nevű fájl vagy könyvtár.', 'asset:create_directory' => 'Könyvtár létrehozása', 'asset:create_file' => 'Fájl létrehozása', 'asset:delete' => 'Törlés', 'asset:destination_not_found' => 'A célkönyvtár nem található.', 'asset:directory_name' => 'Könyvtár neve', 'asset:directory_popup_title' => 'Új könyvtár', 'asset:drop_down_add_title' => 'Hozzáadás...', 'asset:drop_down_operation_title' => 'Művelet...', 'asset:error_deleting_dir' => 'Hiba a(z) :name fájl törlésekor.', 'asset:error_deleting_dir_not_empty' => 'Hiba a(z) :name könyvtár törlésekor. A könyvtár nem üres.', 'asset:error_deleting_directory' => 'Hiba a(z) :dir eredeti könyvtár áthelyezésekor.', 'asset:error_deleting_file' => 'Hiba a(z) :name fájl törlésekor.', 'asset:error_moving_directory' => 'Hiba a(z) :dir könyvtár áthelyezésekor.', 'asset:error_moving_file' => 'Hiba a(z) :file fájl áthelyezésekor.', 'asset:error_renaming' => 'Hiba a fájl vagy a könyvtár átnevezésekor.', 'asset:error_uploading_file' => 'Hiba a(z) \':name\' fájl feltöltésekor: :error', 'asset:file_not_valid' => 'A fájl nem érvényes.', 'asset:invalid_name' => 'A név csak számokat, latin betűket, szóközöket és a következő szimbólumokat tartalmazhatja: ._-', 'asset:invalid_path' => 'Az elérési út neve csak számokat, latin betűket, szóközöket és a következő szimbólumokat tartalmazhatja: ._-/', 'asset:menu_label' => 'Fájlok', 'asset:move' => 'Áthelyezés', 'asset:move_button' => 'Áthelyezés', 'asset:move_destination' => 'Célkönyvtár', 'asset:move_please_select' => 'válasszon', 'asset:move_popup_title' => 'Fájl(ok) áthelyezése', 'asset:name_cant_be_empty' => 'A név nem lehet üres.', 'asset:new' => 'Új fájl', 'asset:original_not_found' => 'Nem található az eredeti fájl vagy könyvtár.', 'asset:path' => 'Elérési út', 'asset:rename' => 'Átnevezés', 'asset:rename_new_name' => 'Új név', 'asset:rename_popup_title' => 'Átnevezés', 'asset:select' => 'Kijelölés', 'asset:select_destination_dir' => 'Válasszon egy célkönyvtárat.', 'asset:selected_files_not_found' => 'A kijelölt fájlok nem találhatók.', 'asset:too_large' => 'A feltöltött fájl túl nagy. A maximálisan engedélyezett fájlméret :max_size', 'asset:type_not_allowed' => 'Csak a következő fájltípusok engedélyezettek: :allowed_types', 'asset:unsaved_label' => 'Nem mentett fájl(ok)', 'asset:upload_files' => 'Fájl(ok) feltöltése', 'auth:title' => 'Adminisztrációs oldal', 'backend_preferences:locale' => 'Nyelv', 'backend_preferences:locale_comment' => 'Válassza ki az alapértelmezett nyelvet.', 'backend_preferences:menu_description' => 'A működésének testreszabása.', 'backend_preferences:menu_label' => 'Admin felület', 'behavior:missing_property' => 'A(z) :class osztálynak kell definiálnia a(z) :behavior viselkedés által használt $:property tulajdonságot.', 'branding:app_name' => 'Weboldal neve', 'branding:app_name_description' => 'Ez a név látható a bejelentkező képernyőn.', 'branding:app_tagline' => 'Weboldal szlogenje', 'branding:app_tagline_description' => 'Ez a mondat látható a bejelentkező oldalon.', 'branding:brand' => 'Márka', 'branding:colors' => 'Színek', 'branding:custom_stylesheet' => 'Egyéni megjelenés', 'branding:logo' => 'Logó', 'branding:logo_description' => 'A kép a bejelentkezési felületen, illetve egyes oldalak háttereként fog megjelenni.', 'branding:menu_description' => 'A kinézetének módosítása és egyedivé tétele.', 'branding:menu_label' => 'Admin felület', 'branding:primary_dark' => 'Alap (sötét)', 'branding:primary_light' => 'Alap (világos)', 'branding:secondary_dark' => 'Másodlagos (sötét)', 'branding:secondary_light' => 'Másodlagos (világos)', 'branding:styles' => 'Stílusok', 'cms:menu_label' => 'Testreszabás', 'cms_object:delete_success' => 'A sablonok törlése sikerült: :count.', 'cms_object:error_creating_directory' => 'Hiba a(z) :name könyvtár létrehozásakor. Ellenőrizze az írási engedélyeket.', 'cms_object:error_deleting' => 'Hiba a(z) \':name\' sablonfájl törlésekor. Ellenőrizze az írási engedélyeket.', 'cms_object:error_saving' => 'Hiba a(z) \':name\' fájl mentésekor. Ellenőrizze az írási engedélyeket.', 'cms_object:file_already_exists' => 'Már létezik \':name\' nevű fájl.', 'cms_object:file_name_required' => 'A Fájlnév mező kitöltése kötelező.', 'cms_object:invalid_file' => 'Érvénytelen fájlnév. Csak latin betűt, számot, aláhúzásjelet, kötőjelet és pontot tartalmazhat. Néhány példa a megfelelő fájlnévre: kapcsolat.htm, impresszum, konyvtar/oldalnev', 'cms_object:invalid_file_extension' => 'Érvénytelen fájlkiterjesztés: :invalid. Az engedélyezett kiterjesztések: :allowed.', 'cms_object:invalid_property' => 'A(z) \':name\' tulajdonság nem állítható be.', 'combiner:not_found' => 'A(z) \':name\' egyesítőfájl nem található.', 'component:alias' => 'Alias', 'component:alias_description' => 'Ennek a komponensnek a lap vagy az elrendezés kódjában való használatkor adott egyedi név.', 'component:invalid_request' => 'A sablon érvénytelen komponens adatok miatt nem menthető.', 'component:menu_label' => 'Komponensek', 'component:method_not_found' => 'A(z) \':name\' komponens nem tartalmaz egy \':method\' metódust.', 'component:no_description' => 'Nincs megadott leírás', 'component:no_records' => 'Nem találhatók komponensek', 'component:not_found' => 'A(z) \':name\' komponens nem található.', 'component:unnamed' => 'Névtelen', 'component:validation_message' => 'A komponens aliasok kötelezőek, és csak latin szimbólumokat, számokat, valamint aláhúzásjeleket tartalmazhatnak. Az aliasoknak latin szimbólummal kell kezdődniük.', 'config:not_found' => 'Nem található a(z) :location számára definiált :file konfigurációs fájl.', 'config:required' => 'A(z) :location helyen használt konfigurációnak meg kell adnia egy \':property\' értéket.', 'content:delete_confirm_multiple' => 'Valóban törölni akarja a kijelölt tartalomfájlokat vagy könyvtárakat?', 'content:delete_confirm_single' => 'Valóban törölni akarja ezt a tartalomfájlt?', 'content:menu_label' => 'Tartalom', 'content:new' => 'Új tartalomfájl', 'content:no_list_records' => 'Nem találhatók tartalomfájlok', 'content:not_found_name' => 'A(z) \':name\' tartalomfájl nem található.', 'content:unsaved_label' => 'Nem mentett tartalom', 'dashboard:add_widget' => 'Widget hozzáadása', 'dashboard:columns' => '{1} oszlop|[2,Inf] oszlop', 'dashboard:full_width' => 'teljes szélesség', 'dashboard:menu_label' => 'Vezérlőpult', 'dashboard:status:maintenance' => 'karbantartás', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} frissítés érhető el!|{1} frissítés érhető el!|[2,Inf] frissítés érhető el!', 'dashboard:status:widget_title_default' => 'Rendszer állapota', 'dashboard:widget_columns_description' => 'A widget szélessége, egy 1 és 10 közötti szám.', 'dashboard:widget_columns_error' => 'Adja meg a widget szélességét egy 1 és 10 közötti számként.', 'dashboard:widget_columns_label' => 'Szélesség :columns', 'dashboard:widget_inspector_description' => 'A jelentés widget konfigurálása', 'dashboard:widget_inspector_title' => 'Widget konfiguráció', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'A widget új sorba helyezése.', 'dashboard:widget_new_row_label' => 'Új sor kényszerítése', 'dashboard:widget_title_error' => 'A widget címének megadása kötelező.', 'dashboard:widget_title_label' => 'Widget címe', 'dashboard:widget_width' => 'Szélesség', 'directory:create_fail' => 'Nem hozható létre a könyvtár: :name', 'editor:auto_closing' => 'Automatikus kódlezárás', 'editor:code' => 'PHP', 'editor:code_folding' => 'Kód összecsukása', 'editor:content' => 'Tartalom', 'editor:description' => 'Leírás', 'editor:enter_fullscreen' => 'Váltás teljes képernyőre', 'editor:exit_fullscreen' => 'Kilépés a teljes képernyőből', 'editor:filename' => 'Fájlnév', 'editor:font_size' => 'Betűméret', 'editor:hidden' => 'Rejtett', 'editor:hidden_comment' => 'A rejtett lapok csak a bejelentkezett felhasználók által hozzáférhetők.', 'editor:highlight_active_line' => 'Aktív sor kiemelése', 'editor:layout' => 'Elrendezés', 'editor:markup' => 'HTML', 'editor:menu_description' => 'A megjelenésének egyedivé tétele.', 'editor:menu_label' => 'Kódszerkesztő', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta leírás', 'editor:meta_title' => 'Meta cím', 'editor:new_title' => 'Az új lap címe', 'editor:preview' => 'Előnézet', 'editor:settings' => 'Beállítások', 'editor:show_gutter' => 'Margó megjelenítése', 'editor:show_invisibles' => 'Láthatatlan karakterek megjelenítése', 'editor:tab_size' => 'Tabulátor mérete', 'editor:theme' => 'Színséma', 'editor:title' => 'Elnevezés', 'editor:url' => 'Webcím', 'editor:use_hard_tabs' => 'Behúzás tabulátorokkal', 'editor:word_wrap' => 'Tördelés', 'event_log:created_at' => 'Időpont', 'event_log:empty_link' => 'Eseménynapló kiürítése', 'event_log:empty_loading' => 'Az eseménynapló kiürítése...', 'event_log:empty_success' => 'Az eseménynapló kiürítése sikerült.', 'event_log:hint' => 'Ez a napló a rendszerben történt lehetséges hibákat listázza ki. Például a kivételeket és a hibakeresési információkat.', 'event_log:id' => 'Azonosító', 'event_log:id_label' => 'Esemény azonosítója', 'event_log:level' => 'Szint', 'event_log:menu_description' => 'A rendszernapló üzeneteinek megtekintése.', 'event_log:menu_label' => 'Eseménynapló', 'event_log:message' => 'Üzenet', 'event_log:return_link' => 'Vissza az eseménynapló listához', 'field:invalid_type' => 'A(z) :type mezőtípus érvénytelen.', 'field:options_method_not_exists' => 'A(z) :model modellosztálynak egy :method() metódus visszaadandó beállításait kell definiálnia a(z) \':field\' űrlapmező számára.', 'file:create_fail' => 'Nem hozható létre a fájl: :name', 'fileupload:attachment' => 'Csatolmány', 'fileupload:attachment_url' => 'Csatolmány webcíme', 'fileupload:default_prompt' => 'Hozza ide a fájlt vagy kattintson erre: %s', 'fileupload:description_label' => 'Leírás', 'fileupload:help' => 'Adja meg a csatolmány címét és a leírását.', 'fileupload:remove_confirm' => 'Biztos benne?', 'fileupload:remove_file' => 'Fájl eltávolítása', 'fileupload:title_label' => 'Cím', 'fileupload:upload_error' => 'Feltöltési hiba', 'fileupload:upload_file' => 'Fájl feltöltése', 'filter:all' => 'mind', 'form:action_confirm' => 'Biztos benne?', 'form:add' => 'Hozzáadás', 'form:apply' => 'Alkalmaz', 'form:behavior_not_ready' => 'Nem történt meg az űrlap viselkedésének inicializálása. Ellenőrizze, hogy meghívta-e az initForm() függvényt a vezérlőben.', 'form:cancel' => 'Mégsem', 'form:close' => 'Bezárás', 'form:complete' => 'Teljes', 'form:concurrency_file_changed_description' => 'Az Ön által szerkesztett fájlt már egy máik felhasználó módosította. Vagy újratöltheti a fájlt és elveszti a változtatásait, vagy felülírja a fájlt.', 'form:concurrency_file_changed_title' => 'A fájl megváltozott', 'form:confirm' => 'Megerősítés', 'form:confirm_tab_close' => 'Valóban be akarja zárni a fület? El fognak veszni a nem mentett módosítások.', 'form:create' => 'Létrehozás', 'form:create_and_close' => 'Létrehozás és bezárás', 'form:create_success' => 'A(z) :name létrehozása sikerült', 'form:create_title' => 'Új :name', 'form:creating' => 'Létrehozás...', 'form:creating_name' => 'A(z) :name létrehozása...', 'form:delete' => 'Törlés', 'form:delete_row' => 'Sor törlése', 'form:delete_success' => 'A(z) :name törlése sikerült', 'form:deleting' => 'Törlés...', 'form:deleting_name' => 'A(z) :name törlése...', 'form:field_off' => 'Ki', 'form:field_on' => 'Be', 'form:insert_row' => 'Sor beszúrása', 'form:missing_definition' => 'Az űrlap viselkedés nem tartalmaz mezőt a(z) \':field\' mezőhöz.', 'form:missing_id' => 'Nincs megadva az űrlap rekord azonosítója.', 'form:missing_model' => 'A(z) :class osztályban használt űrlap viselkedésnek nincs definiált modellje.', 'form:not_found' => 'A(z) :id azonosítójú űrlap rekord nem található.', 'form:ok' => 'OK', 'form:or' => 'vagy', 'form:preview_no_files_message' => 'Nincsennek feltöltve fájlok.', 'form:preview_no_record_message' => 'Egy mező sincs kiválasztva.', 'form:preview_title' => ':name villámnézete', 'form:reload' => 'Újratöltés', 'form:reset_default' => 'Alaphelyzet', 'form:resetting' => 'Visszaállítás', 'form:resetting_name' => 'A(z) :name visszaállítása', 'form:save' => 'Mentés', 'form:save_and_close' => 'Mentés és bezárás', 'form:saving' => 'Mentés...', 'form:saving_name' => 'A(z) :name mentése...', 'form:select' => 'Válasszon', 'form:select_all' => 'mind', 'form:select_none' => 'egyik sem', 'form:select_placeholder' => 'válasszon', 'form:undefined_tab' => 'Egyebek', 'form:update_success' => 'A(z) :name módosítása sikerült', 'form:update_title' => ':name szerkesztése', 'import_export:auto_match_columns' => 'Automatikus oszlop párosítás', 'import_export:column' => 'Oszlop', 'import_export:column_preview' => 'Oszlop előnézete', 'import_export:columns' => 'Oszlopok', 'import_export:created' => 'Létrehozva', 'import_export:custom_format' => 'Egyedi formátum', 'import_export:database_fields' => 'Adatbázis mezők', 'import_export:delimiter_char' => 'Határoló karakter', 'import_export:drop_column_here' => 'Húzza ide az oszlopot...', 'import_export:enclosure_char' => 'Elválasztó karakter', 'import_export:errors' => 'Hibák', 'import_export:escape_char' => 'Végjel karakter', 'import_export:export_error' => 'Exportálási hiba', 'import_export:export_output_format' => '1. Kimenő formátum exportálása', 'import_export:export_progress' => 'Exportálás folyamatban', 'import_export:file_columns' => 'Fájl oszlopok', 'import_export:file_format' => 'Fájl formátum', 'import_export:first_row_contains_titles' => 'Az első sor tartalmazza az oszlop neveit', 'import_export:first_row_contains_titles_desc' => 'Hagyja bejelölve, amennyiben a CSV fájl első sora az oszlop neveket tartalmazza.', 'import_export:ignore_this_column' => 'Figyelmen kívül hagyott oszlop', 'import_export:import_error' => 'Importálási hiba', 'import_export:import_file' => 'Fájl importálása', 'import_export:import_progress' => 'Importálás folyamatban', 'import_export:match_columns' => '2. Fájl oszlopainak párosítása az adatbázis mezőihez', 'import_export:processing' => 'Folyamatban', 'import_export:processing_successful_line1' => 'A fájl exportálási folyamat sikeresen lezárult!', 'import_export:processing_successful_line2' => 'A böngésző most átirányítást hajt végre a fájl letöltéséhez.', 'import_export:select_columns' => '2. Oszlopok kiválasztása exportáláshoz', 'import_export:set_export_options' => '3. Exportálási beállítások', 'import_export:set_import_options' => '3. Importálási beállítások', 'import_export:show_ignored_columns' => 'Figyelmen kívül hagyott oszlopok mutatása', 'import_export:skipped' => 'Kihagyva', 'import_export:skipped_rows' => 'Kihagyott sorok', 'import_export:standard_format' => 'Szabvány formátum', 'import_export:updated' => 'Frissítve', 'import_export:upload_csv_file' => '1. CSV fájl feltöltése', 'import_export:upload_valid_csv' => 'Kérjük töltsön fel érvényes CSV fájlt.', 'import_export:warnings' => 'Figyelmeztetések', 'install:install_completing' => 'A telepítési folyamat befejezése', 'install:install_success' => 'A bővítmény telepítése sikerült.', 'install:missing_plugin_name' => 'Adja meg a telepítendő bővítmény nevét.', 'install:missing_theme_name' => 'Adja meg a telepítendő téma nevét.', 'install:plugin_label' => 'Bővítmény telepítése', 'install:project_label' => 'Csatolás projekthez', 'install:theme_label' => 'Téma telepítése', 'layout:delete_confirm_multiple' => 'Valóban törölni akarja a kijelölt elrendezéseket?', 'layout:delete_confirm_single' => 'Valóban törölni akarja ezt az elrendezést?', 'layout:menu_label' => 'Elrendezések', 'layout:new' => 'Új elrendezés', 'layout:no_list_records' => 'Nem találhatók elrendezések', 'layout:not_found_name' => 'A(z) \':name\' elrendezés nem található', 'layout:unsaved_label' => 'Nem mentett elrendezés(ek)', 'list:behavior_not_ready' => 'Nem történt meg a lista viselkedés inicializálása és ellenőrizze, hogy meghívta-e a(z) makeLists() függvényt a vezérlőben.', 'list:default_title' => 'Lista', 'list:delete_selected' => 'Kiválasztottak törlése', 'list:delete_selected_confirm' => 'Töröljük a kiválasztott elemeket?', 'list:delete_selected_empty' => 'A törléshez előbb ki kell választani elemet.', 'list:delete_selected_success' => 'Sikeresen törölve lettek a kiválasztott elemek.', 'list:invalid_column_datetime' => 'A(z) \':column\' oszlopérték nem DateTime objektum, hiányzik egy $dates hivatkozás a Modellben?', 'list:loading' => 'Betöltés...', 'list:missing_column' => 'Nincsenek oszlopdefiníciók a(z) :columns oszlopok számára.', 'list:missing_columns' => 'A(z) :class osztályban használt listának nincsenek definiált listaoszlopai.', 'list:missing_definition' => 'A lista viselkedés nem tartalmaz oszlopot a(z) \':field\' mező számára.', 'list:missing_model' => 'Nincs modell definiálva a(z) :class osztályban használt lista viselkedéshez.', 'list:next_page' => 'Következő lap', 'list:no_records' => 'Nincs megjeleníthető tartalom.', 'list:pagination' => 'Megjelenített elemek: :from-:to / :total', 'list:prev_page' => 'Előző lap', 'list:records_per_page' => 'Listázás', 'list:records_per_page_help' => 'Adja meg az elemek laponként megjelenítendő számát. Minél nagyobbat választ, annál több időbe kerül a lista frissítése. Az ajánlott érték 20 és 40 közötti.', 'list:search_prompt' => 'Keresés...', 'list:setup_help' => 'A jelölőnégyzetek használatával válassza ki azokat az oszlopokat, melyeket látni szeretne a listában. Az oszlopok pozícióját felfelé vagy lefelé húzással módosíthatja.', 'list:setup_title' => 'Lista beállítása', 'locale:cs' => 'Cseh', 'locale:de' => 'Német', 'locale:el' => 'Görög', 'locale:en' => 'Angol', 'locale:es' => 'Spanyol', 'locale:es-ar' => 'Spanyol (argentín)', 'locale:fa' => 'Perzsa', 'locale:fr' => 'Francia', 'locale:hu' => 'Magyar', 'locale:id' => 'Indonéz', 'locale:it' => 'Olasz', 'locale:ja' => 'Japán', 'locale:lv' => 'Litván', 'locale:nb-no' => 'Norvég', 'locale:nl' => 'Holland', 'locale:pl' => 'Lengyel', 'locale:pt-br' => 'Portugál (brazíl)', 'locale:ro' => 'Román', 'locale:ru' => 'Orosz', 'locale:sk' => 'Szlovák', 'locale:sv' => 'Svéd', 'locale:tr' => 'Török', 'locale:zh-cn' => 'Kínai', 'locale:zh-tw' => 'Kínai (tajvani)', 'mail:drivers_hint_content' => 'A levél küldéséhez szükséges, hogy telepítve legyen a(z) \\":plugin\\" nevű bővítmény.', 'mail:drivers_hint_header' => 'Meghajtó nincs telepítve', 'mail:general' => 'Általános', 'mail:log_file' => 'Naplófájl', 'mail:mailgun' => 'Mailgun', 'mail:mailgun_domain' => 'Mailgun tartomány', 'mail:mailgun_domain_comment' => 'Adja meg a Mailgun tartománynevét.', 'mail:mailgun_secret' => 'Adja meg Mailgun titkos jelszót.', 'mail:mailgun_secret_comment' => 'Adja meg a Mailgun API kulcsát.', 'mail:mandrill' => 'Mandrill', 'mail:mandrill_secret' => 'Mandrill titkos jelszót.', 'mail:mandrill_secret_comment' => 'Adja meg Mandrill API kulcsát.', 'mail:menu_description' => 'Az e-mail küldés testreszabása.', 'mail:menu_label' => 'Beállítások', 'mail:method' => 'Levelező rendszer', 'mail:php_mail' => 'PHP mail', 'mail:sender_email' => 'Feladó e-mail címe', 'mail:sender_name' => 'Feladó neve', 'mail:sendmail' => 'Sendmail', 'mail:sendmail_path' => 'Sendmail elérési útja', 'mail:sendmail_path_comment' => 'Adja meg a Sendmail program elérési útját.', 'mail:smtp' => 'SMTP', 'mail:smtp_address' => 'SMTP címe', 'mail:smtp_authorization' => 'SMTP hitelesítés szükséges', 'mail:smtp_authorization_comment' => 'Jelölje be, amennyiben az SMTP kiszolgálója hitelesítést igényel.', 'mail:smtp_encryption' => 'SMTP titkosítás típusa', 'mail:smtp_encryption_none' => 'Nincs', 'mail:smtp_encryption_ssl' => 'SSL', 'mail:smtp_encryption_tls' => 'TLS', 'mail:smtp_password' => 'Jelszó', 'mail:smtp_port' => 'SMTP port', 'mail:smtp_ssl' => 'SSL kapcsolat szükséges', 'mail:smtp_username' => 'Felhasználónév', 'mail_templates:code' => 'Kód', 'mail_templates:code_comment' => 'Erre a sablonra hivatkozásként használt egyedi kód.', 'mail_templates:content_css' => 'CSS', 'mail_templates:content_html' => 'HTML', 'mail_templates:content_text' => 'Egyszerű szöveg', 'mail_templates:creating' => 'Sablon létrehozása...', 'mail_templates:creating_layout' => 'Elrendezés létrehozása...', 'mail_templates:delete_confirm' => 'Valóban törölni akarja a sablont?', 'mail_templates:delete_layout_confirm' => 'Valóban törölni akarja az elrendezést?', 'mail_templates:deleting' => 'Sablon törlése...', 'mail_templates:deleting_layout' => 'Elrendezés törlése...', 'mail_templates:description' => 'Leírás', 'mail_templates:layout' => 'Elrendezés', 'mail_templates:layouts' => 'Elrendezések', 'mail_templates:menu_description' => 'A kimenő levelek megjelenésének testreszabása.', 'mail_templates:menu_label' => 'Sablonok', 'mail_templates:menu_layouts_label' => 'Levél elrendezések', 'mail_templates:name' => 'Név', 'mail_templates:name_comment' => 'Erre a sablonra hivatkozásként használt egyedi név.', 'mail_templates:new_layout' => 'Új elrendezés', 'mail_templates:new_template' => 'Új sablon', 'mail_templates:no_layout' => '-- nincs --', 'mail_templates:return' => 'Vissza a sablonokhoz', 'mail_templates:saving' => 'Sablon mentése...', 'mail_templates:saving_layout' => 'Elrendezés mentése...', 'mail_templates:sending' => 'Üzenet küldése folyamatban...', 'mail_templates:subject' => 'Tárgy', 'mail_templates:subject_comment' => 'Az e-mail üzenet tárgya', 'mail_templates:template' => 'Sablon', 'mail_templates:templates' => 'Sablonok', 'mail_templates:test_confirm' => 'Teszt üzenet küldése a(z) \\":email\\" címre. Folytatja?', 'mail_templates:test_send' => 'Tesztüzenet küldése', 'mail_templates:test_success' => 'A tesztüzenet elküldése sikerült.', 'maintenance:is_enabled' => 'Karbantartási mód engedélyezése', 'maintenance:is_enabled_comment' => 'Aktiválása esetén a weboldal látogatói az alább kiválasztott lapot fogják látni.', 'maintenance:settings_menu' => 'Karbantartás', 'maintenance:settings_menu_description' => 'Szolgáltatás be / ki kapcsolása és testreszabása.', 'markdowneditor:bold' => 'Félkövér', 'markdowneditor:code' => 'Kód', 'markdowneditor:formatting' => 'Forráskód', 'markdowneditor:fullscreen' => 'Teljes képernyő', 'markdowneditor:header1' => 'Címsor 1', 'markdowneditor:header2' => 'Címsor 2', 'markdowneditor:header3' => 'Címsor 3', 'markdowneditor:header4' => 'Címsor 4', 'markdowneditor:header5' => 'Címsor 5', 'markdowneditor:header6' => 'Címsor 6', 'markdowneditor:horizontalrule' => 'Vonal beszúrása', 'markdowneditor:image' => 'Kép', 'markdowneditor:italic' => 'Dölt', 'markdowneditor:link' => 'Hivatkozás', 'markdowneditor:orderedlist' => 'Számozott lista', 'markdowneditor:preview' => 'Előnézet', 'markdowneditor:quote' => 'Idézet', 'markdowneditor:unorderedlist' => 'Rendezett lista', 'markdowneditor:video' => 'Videó', 'media:add_folder' => 'Könyvtár létrehozása', 'media:click_here' => 'Megtekintés', 'media:crop_and_insert' => 'Vágás és beillesztés', 'media:delete' => 'Törlés', 'media:delete_confirm' => 'Valóban törölni akarja a kiválasztott fájlokat?', 'media:delete_empty' => 'Kérjük, válassza ki a törölni kívánt fájlokat.', 'media:display' => 'Megjelenítés', 'media:empty_library' => 'Kezdésként hozzon létre könyvtárat és töltsön fel fájlokat.', 'media:error_creating_folder' => 'Hiba a könyvtár létrehozásánál', 'media:error_renaming_file' => 'Hiba a fájl átnevezésében.', 'media:filter_audio' => 'Audió', 'media:filter_documents' => 'Dokumentum', 'media:filter_everything' => 'Összes', 'media:filter_images' => 'Kép', 'media:filter_video' => 'Videó', 'media:folder' => 'Könyvtárak', 'media:folder_name' => 'Könyvtár neve', 'media:folder_or_file_exist' => 'Már létezik ilyen nevű fájl vagy könyvtár.', 'media:folder_size_items' => 'fájl', 'media:height' => 'Magasság', 'media:image_size' => 'Kép mérete:', 'media:insert' => 'Beillesztés', 'media:invalid_path' => 'Érvénytelen elérési útvonal: \':path\'', 'media:last_modified' => 'Utoljára módosítva', 'media:library' => 'Média', 'media:menu_label' => 'Média', 'media:move' => 'Áthelyezés', 'media:move_dest_src_match' => 'Kérjük, válasszon másik célkönyvtárat.', 'media:move_destination' => 'Célkönyvtár', 'media:move_empty' => 'Kérjük, válasszon ki fájlt az áthelyezéshez.', 'media:move_popup_title' => 'Fájlok vagy könyvtárak áthelyezése', 'media:multiple_selected' => 'Több fájl kiválasztva.', 'media:new_folder_title' => 'Új könyvtár', 'media:no_files_found' => 'Nem található fájl a lekérésben.', 'media:nothing_selected' => 'Nincs fájl kiválasztva.', 'media:order_by' => 'Rendezés', 'media:please_select_move_dest' => 'Kérjük, válasszon célkönyvtárat.', 'media:public_url' => 'Publikus cím', 'media:resize' => 'Átméretezés...', 'media:resize_image' => 'Kép átméretezése', 'media:restore' => 'Összes változtatás visszavonása', 'media:return_to_parent' => 'Vissza a szülő könyvtárhoz', 'media:return_to_parent_label' => 'Eggyel vissza ..', 'media:search' => 'Keresés', 'media:select_single_image' => 'Kérjük, válasszon ki egy képet.', 'media:selected_size' => 'Kiválasztva:', 'media:selection_mode' => 'Kiválasztás módja', 'media:selection_mode_fixed_ratio' => 'Rögzített képarány', 'media:selection_mode_fixed_size' => 'Rögzített méret', 'media:selection_mode_normal' => 'Normál', 'media:selection_not_image' => 'A kiválasztott fájl nem kép.', 'media:size' => 'Méret', 'media:thumbnail_error' => 'Hiba a bélyegkép létrehozásánál.', 'media:title' => 'Név', 'media:upload' => 'Feltöltés', 'media:uploading_complete' => 'Feltöltés sikeresen befejezve', 'media:uploading_error' => 'Feltöltés sikertelen', 'media:uploading_file_num' => 'Feltöltve :number fájl...', 'media:width' => 'Szélesség', 'mediafinder:default_prompt' => 'Kattintson a(z) %s gombra új média fájl kereséséhez.', 'mediamanager:insert_audio' => 'Audió beszúrása', 'mediamanager:insert_image' => 'Kép beszúrása', 'mediamanager:insert_link' => 'Hivatkozás beszúrása', 'mediamanager:insert_video' => 'Videó beszúrása', 'mediamanager:invalid_audio_empty_insert' => 'Válasszon ki legalább egy audiót a beszúráshoz.', 'mediamanager:invalid_file_empty_insert' => 'Hivatkozás készítéséhez jelöljön ki egy szövegrészt.', 'mediamanager:invalid_file_single_insert' => 'Kérjük jelöljön ki egy fájlt.', 'mediamanager:invalid_image_empty_insert' => 'Válasszon ki legalább egy képet a beszúráshoz.', 'mediamanager:invalid_video_empty_insert' => 'Válasszon ki legalább egy videót a beszúráshoz.', 'model:invalid_class' => 'A(z) :class osztályban használt :model modell nem érvényes, örökölnie kell a \\Model osztályt.', 'model:mass_assignment_failed' => 'A tömeges hozzárendelés a(z) \':attribute\' modell attribútumhoz nem sikerült.', 'model:missing_id' => 'Nincs azonosító megadva a modellrekord kereséséhez.', 'model:missing_method' => 'A(z) \':class\' modell nem tartalmaz \':method\' metódust.', 'model:missing_relation' => 'A(z) \':class\' modell nem tartalmaz definíciót a(z) \':relation\' reláció számára.', 'model:name' => 'Modell', 'model:not_found' => 'Nem található :id azonosítójú \':class\' modell.', 'myaccount:menu_description' => 'A felhasználói adatok módosítása.', 'myaccount:menu_keywords' => 'biztonságos bejelentkezés', 'myaccount:menu_label' => 'Fiókom', 'mysettings:menu_description' => 'A fiókkal kapcsolatos beállítások', 'mysettings:menu_label' => 'Beállításaim', 'page:access_denied:cms_link' => 'Vissza a látogatói oldalra', 'page:access_denied:help' => 'Ön nem rendelkezik a szükséges engedélyekkel ennek a lapnak a megtekintéséhez.', 'page:access_denied:label' => 'Hozzáférés megtagadva', 'page:custom_error:help' => 'Sajnos valami elromlott és a lap nem jeleníthető meg.', 'page:custom_error:label' => 'Laphiba', 'page:delete_confirm_multiple' => 'Valóban törölni akarja a kijelölt lapokat?', 'page:delete_confirm_single' => 'Valóban törölni akarja ezt a lapot?', 'page:invalid_token:label' => 'Érvénytelen a biztonsági kód.', 'page:invalid_url' => 'Érvénytelen a webcím formátuma. A webcímnek perjellel kell kezdődnie, és számokat, latin betűket, valamint a következő karaktereket tartalmazhatja: ._-[]:?|/+*', 'page:menu_label' => 'Lapok', 'page:new' => 'Új lap', 'page:no_layout' => '-- nincs --', 'page:no_list_records' => 'Nem találhatóak lapok', 'page:not_found:help' => 'A kért lap nem található.', 'page:not_found:label' => 'A lap nem található', 'page:not_found_name' => 'A következő lap nem található: \':name\'', 'page:unsaved_label' => 'Nem mentett lap(ok)', 'page:untitled' => 'Névtelen', 'partial:delete_confirm_multiple' => 'Valóban törölni akarja a kijelölt részlapokat?', 'partial:delete_confirm_single' => 'Valóban törölni akarja ezt a részlapot?', 'partial:invalid_name' => 'Érvénytelen részlapnév: :name.', 'partial:menu_label' => 'Részlapok', 'partial:new' => 'Új részlap', 'partial:no_list_records' => 'Nem találhatók részlapok', 'partial:not_found_name' => 'A(z) \':name\' részlap nem található.', 'partial:unsaved_label' => 'Nem mentett részlap(ok)', 'permissions:access_logs' => 'Rendszer naplók megtekintése', 'permissions:manage_assets' => 'Fájlok kezelése', 'permissions:manage_branding' => 'Admin felület testreszabása', 'permissions:manage_content' => 'Tartalom kezelése', 'permissions:manage_editor' => 'Kódszerkesztő testreszabása', 'permissions:manage_layouts' => 'Elrendezések kezelése', 'permissions:manage_mail_settings' => 'Levelezési beállítások kezelése', 'permissions:manage_mail_templates' => 'Levél sablonok kezelése', 'permissions:manage_media' => 'Fájlok kezelése', 'permissions:manage_other_administrators' => 'Adminisztrátorok kezelése', 'permissions:manage_pages' => 'Lapok kezelése', 'permissions:manage_partials' => 'Részlapok kezelése', 'permissions:manage_preferences' => 'Beállítások menü kezelése', 'permissions:manage_software_updates' => 'Szoftver frissítések kezelése', 'permissions:manage_system_settings' => 'Rendszer beállítások kezelése', 'permissions:manage_themes' => 'Témák kezelése', 'permissions:name' => 'Testreszabás', 'permissions:view_the_dashboard' => 'Vezérlőpult megtekintése', 'plugin:label' => 'Bővítmény', 'plugin:name:help' => 'Nevezze meg egyedi kódja alapján a bővítményt. Például: RainLab.Blog', 'plugin:name:label' => 'Bővítmény neve', 'plugin:unnamed' => 'Névtelen bővítmény', 'plugins:disable_confirm' => 'Biztos benne?', 'plugins:disable_success' => 'A bővítmények sikeresen letiltásra kerültek.', 'plugins:disabled_help' => 'A kiválasztott bővítményeket a weboldal figyelmen kívül hagyja.', 'plugins:disabled_label' => 'Letiltva', 'plugins:enable_or_disable' => 'Engedélyezés vagy letiltás', 'plugins:enable_or_disable_title' => 'Bővítmények engedélyezése vagy letiltása', 'plugins:enable_success' => 'A bővítmények sikeresen engedélyezésre kerültek.', 'plugins:frozen_help' => 'A kiválasztott bővítmények nem lesznek frissítve a későbbiekben.', 'plugins:frozen_label' => 'Frissítés letiltása', 'plugins:install' => 'Bővítmény telepítése', 'plugins:install_products' => 'Telepítés és eltávolítás', 'plugins:installed' => 'Telepítve', 'plugins:manage' => 'Bővítmények kezelése', 'plugins:no_plugins' => 'Valóban törölni akarja ezt a bővítményt?', 'plugins:recommended' => 'Ajánlott', 'plugins:refresh' => 'Frissítés', 'plugins:refresh_confirm' => 'Biztos benne?', 'plugins:refresh_success' => 'A bővítmények sikeresen frissítésre kerültek.', 'plugins:remove' => 'Eltávolítás', 'plugins:remove_confirm' => 'Valóban törölni akarja a kijelölt bővítményeket?', 'plugins:remove_success' => 'A bővítmények sikeresen eltávolításra kerültek.', 'plugins:search' => 'keresés...', 'plugins:selected_amount' => 'Kijelölt bővítmények: :amount', 'plugins:unknown_plugin' => 'A bővítmények eltávolítása megtörtént.', 'project:attach' => 'Csatolás', 'project:detach' => 'leválasztás', 'project:detach_confirm' => 'Biztosan le akarja választani a projektet?', 'project:id:help' => 'Segítség (angol nyelvű)', 'project:id:label' => 'Projekt azonosító', 'project:id:missing' => 'Adjon meg egy projekt azonosítót.', 'project:name' => 'Projekt', 'project:none' => 'Nincs', 'project:owner_label' => 'Fejlesztő', 'project:unbind_success' => 'A projekt leválasztása sikerült.', 'relation:add' => 'Hozzáadás', 'relation:add_a_new' => 'Új :name hozzáadása', 'relation:add_name' => ':name hozzáadása', 'relation:add_selected' => 'Kijelöltek hozzáadása', 'relation:cancel' => 'Mégsem', 'relation:close' => 'Bezárás', 'relation:create' => 'Létrehozás', 'relation:create_name' => ':name létrehozása', 'relation:delete' => 'Törlés', 'relation:delete_confirm' => 'Biztos benne?', 'relation:delete_name' => 'A(z) :name törlése', 'relation:help' => 'Kattintson egy elemre a hozzáadásához', 'relation:invalid_action_multi' => 'Ez a művelet nem hajtható végre több kapcsolaton.', 'relation:invalid_action_single' => 'Ez a művelet nem hajtható végre egyetlen kapcsolaton.', 'relation:link' => 'Csatolás', 'relation:link_a_new' => 'Új :name csatolása', 'relation:link_name' => ':name csatolása', 'relation:link_selected' => 'Kijelöltek csatolása', 'relation:missing_config' => 'A reláció viselkedésnek nincs semmilyen konfigurációja a következőhöz: \':config\'.', 'relation:missing_definition' => 'A reláció viselkedés nem tartalmazza a(z) \':field\' mező definícióját.', 'relation:missing_model' => 'A(z) :class osztályban használt reláció viselkedésnek nincs definiált modellje.', 'relation:preview' => 'Előnézet', 'relation:preview_name' => 'Előnézet neve', 'relation:related_data' => 'Kapcsolódó :name adatok', 'relation:remove' => 'Eltávolítás', 'relation:remove_name' => 'A(z) :name eltávolítása', 'relation:unlink' => 'Csatolás megszüntetése', 'relation:unlink_confirm' => 'Biztos benne?', 'relation:unlink_name' => ':name csatolásának megszüntetése', 'relation:update' => 'Frissítés', 'relation:update_name' => 'A(z) :name frissítése', 'reorder:default_title' => 'Elemek újrarendezése', 'reorder:no_records' => 'Nincs elérhető tartalom a rendezéshez.', 'request_log:count' => 'Számláló', 'request_log:empty_link' => 'Kérelemnapló kiürítése', 'request_log:empty_loading' => 'A kérelemnapló kiürítése...', 'request_log:empty_success' => 'A kérelemnapló kiürítése megtörtént.', 'request_log:hint' => 'Ez a napló a böngészőkérelmeket listázza ki. Ha például egy látogató nem létező aloldalt nyit meg, akkor egy 404-es állapotkódú bejegyzés jön létre.', 'request_log:id' => 'Azonosító', 'request_log:id_label' => 'Napló azonosító', 'request_log:menu_description' => 'Rossz vagy átirányított kérelmek megtekintése.', 'request_log:menu_label' => 'Kérelemnapló', 'request_log:referer' => 'Hivatkozók', 'request_log:return_link' => 'Vissza a kérelemnapló listához', 'request_log:status_code' => 'Állapot', 'request_log:url' => 'Webcím', 'server:connect_error' => 'Hiba a kiszolgálóhoz való csatlakozáskor.', 'server:file_corrupt' => 'A kiszolgálóról letöltött fájl sérült.', 'server:file_error' => 'Nem sikerült továbbítania a kiszolgálónak a csomagot.', 'server:response_empty' => 'Üres válasz érkezett a kiszolgálóról.', 'server:response_invalid' => 'Érvénytelen válasz érkezett a kiszolgálóról.', 'server:response_not_found' => 'A frissítési kiszolgáló nem található.', 'settings:menu_label' => 'Beállítások', 'settings:missing_model' => 'A beállítások lap egy modell definíciót hiányol.', 'settings:not_found' => 'Nem találhatók a megadott beállítások.', 'settings:return' => 'Vissza a beállításokhoz', 'settings:search' => 'Keresés', 'settings:update_success' => 'A(z) :name beállításainak frissítése sikerült.', 'sidebar:add' => 'Hozzáadás', 'sidebar:search' => 'Keresés...', 'system:categories:cms' => 'Weboldal', 'system:categories:customers' => 'Vevők', 'system:categories:events' => 'Események', 'system:categories:logs' => 'Naplók', 'system:categories:mail' => 'Levelezés', 'system:categories:misc' => 'Egyebek', 'system:categories:my_settings' => 'Beállításaim', 'system:categories:shop' => 'Bolt', 'system:categories:social' => 'Közösségi', 'system:categories:system' => 'Rendszer', 'system:categories:team' => 'Csapat', 'system:categories:users' => 'Felhasználók', 'system:menu_label' => 'Rendszer', 'system:name' => 'Rendszer', 'template:invalid_type' => 'Ismeretlen sablon típus.', 'template:not_found' => 'A kért sablon nem található.', 'template:saved' => 'A módosítások sikeresen mentésre kerültek.', 'theme:activate_button' => 'Aktiválás', 'theme:active:not_found' => 'Az aktív téma nem található.', 'theme:active:not_set' => 'Nincs beállítva az aktív téma.', 'theme:active_button' => 'Aktiválva', 'theme:author_label' => 'Szerző', 'theme:author_placeholder' => 'Magánszemély vagy cég neve', 'theme:code_label' => 'Kód', 'theme:code_placeholder' => 'Egyedi azonosító ehhez a témához', 'theme:create_button' => 'Létrehozás', 'theme:create_new_blank_theme' => 'Üres téma létrehozása', 'theme:create_theme_required_name' => 'Kérem adjon meg egy nevet a témának.', 'theme:create_theme_success' => 'A téma létrehozása sikeresen megtörtént!', 'theme:create_title' => 'Sablon létrehozása', 'theme:customize_button' => 'Testreszabás', 'theme:customize_theme' => 'Téma testreszabása', 'theme:default_tab' => 'Tulajdonságok', 'theme:delete_active_theme_failed' => 'Nem lehet törölni a témát. Először aktiváljon egy másik témát.', 'theme:delete_button' => 'Törlés', 'theme:delete_confirm' => 'Biztos, hogy törölni szeretné a témát?', 'theme:delete_theme_success' => 'A téma törlése sikeresen megtörtént!', 'theme:description_label' => 'Leírás', 'theme:description_placeholder' => 'A téma ismertetője', 'theme:dir_name_create_label' => 'A célkönyvtár', 'theme:dir_name_invalid' => 'A név csak számokat, latin betűket és a következő szimbólumokat tartalmazhatja: _-', 'theme:dir_name_label' => 'Könyvtár', 'theme:dir_name_taken' => 'A megadott könyvtár név már létezik.', 'theme:duplicate_button' => 'Duplikálás', 'theme:duplicate_theme_success' => 'A téma duplikálása sikeresen megtörtént!', 'theme:duplicate_title' => 'Téma duplikálása', 'theme:edit:not_found' => 'A szerkesztés alatt lévő téma nem található.', 'theme:edit:not_match' => 'Az objektum melyhez hozzáférni próbál, nem a szerkesztés alatt lévő témához tartozik. Töltse be újra a lapot.', 'theme:edit:not_set' => 'Nincs beállítva a szerkesztés alatt lévő téma.', 'theme:edit_properties_button' => 'Tulajdonságok', 'theme:edit_properties_title' => 'Téma', 'theme:export_button' => 'Exportálás', 'theme:export_folders_comment' => 'Válassza ki a téma könyvtárát, amiket exportálni szeretne.', 'theme:export_folders_label' => 'Könyvtárak', 'theme:export_title' => 'Téma exportálása', 'theme:find_more_themes' => 'További témák az OctoberCMS piacterén.', 'theme:homepage_label' => 'Weboldal', 'theme:homepage_placeholder' => 'A honlap webcíme', 'theme:import_button' => 'Importálás', 'theme:import_folders_comment' => 'Válassza ki a téma könyvtárát, amiket importálni szeretne.', 'theme:import_folders_label' => 'Könyvtárak', 'theme:import_overwrite_comment' => 'Ne jelölje be ezt a négyzetet, ha csak új fájlok akar importálni.', 'theme:import_overwrite_label' => 'Létező fájlok felülírása', 'theme:import_theme_success' => 'A téma importálása sikeresen megtörtént!', 'theme:import_title' => 'Téma importálása', 'theme:import_uploaded_file' => 'Téma archív fájl', 'theme:label' => 'Téma', 'theme:manage_button' => 'Műveletek', 'theme:manage_title' => 'Téma menedzselése', 'theme:name:help' => 'A névnek egyedinek kell lennie. Például: RainLab.Vanilla', 'theme:name:label' => 'Téma neve', 'theme:name_create_placeholder' => 'Az új téma neve', 'theme:name_label' => 'Név', 'theme:new_directory_name_comment' => 'Adjon meg egy új könyvtárat a duplikált témának.', 'theme:new_directory_name_label' => 'Téma helye', 'theme:not_found_name' => 'A következő sablon nem található: \':name\'', 'theme:return' => 'Vissza a sablonokhoz', 'theme:save_properties' => 'Tulajdonságok mentése', 'theme:saving' => 'Téma mentése...', 'theme:settings_menu' => 'Dizájn', 'theme:settings_menu_description' => 'A telepített témák és a választható sablonok listája.', 'theme:theme_label' => 'Téma', 'theme:theme_title' => 'Témák', 'theme:unnamed' => 'Névtelen témák', 'themes:install' => 'Téma telepítése', 'themes:installed' => 'Telepítve', 'themes:no_themes' => 'Egy téma sincs telepítve a piactérről.', 'themes:recommended' => 'Ajánlott', 'themes:remove_confirm' => 'Valóban törölni akarja ezt a témát?', 'themes:search' => 'keresés...', 'tooltips:preview_website' => 'Weboldal megtekintése', 'updates:check_label' => 'Frissítések keresése', 'updates:core_build' => 'Új verzió: :build', 'updates:core_build_help' => 'Elérhető a legújabb hivatalos kiadás.', 'updates:core_current_build' => 'Verzió', 'updates:core_downloading' => 'Weboldal frissítés letöltése...', 'updates:core_extracting' => 'Weboldal frissítés kicsomagolása...', 'updates:details_author' => 'Fejlesztő', 'updates:details_current_version' => 'Aktuális verzió', 'updates:details_readme' => 'Dokumentáció', 'updates:details_readme_missing' => 'Nincs megadva dokumentáció.', 'updates:details_title' => 'Bővítmény részletei', 'updates:details_upgrades' => 'Frissítési útmutató', 'updates:details_upgrades_missing' => 'Nincsennek megadva frissítési utasítások.', 'updates:details_view_homepage' => 'Weboldal', 'updates:disabled' => 'Letiltva', 'updates:force_label' => 'Frissítés kényszerítése', 'updates:found:help' => 'Kattintson a Honlap fissítése gombra a folyamat megkezdéséhez.', 'updates:found:label' => 'Új verzió elérhető!', 'updates:important_action:confirm' => 'Frissítések elfogadása', 'updates:important_action:empty' => 'Művelet kiválasztása', 'updates:important_action:ignore' => 'Bővítmény kihagyása (mindig)', 'updates:important_action:skip' => 'Bővítmény kihagyása (csak most)', 'updates:important_action_required' => 'Művelet szükséges', 'updates:important_alert_text' => 'Néhány frissítés körültekintést igényel.', 'updates:important_view_guide' => 'Frissítési útmutat megtekintése', 'updates:menu_description' => 'A rendszer és a bővítmények frissítése, valamint új kiegészítők telepítése.', 'updates:menu_label' => 'Frissítések', 'updates:name' => 'Szoftver frissítése', 'updates:none:help' => 'Nem található új frissítés.', 'updates:none:label' => 'A weboldal naprakész', 'updates:plugin_author' => 'Fejlesztő', 'updates:plugin_code' => 'Kód', 'updates:plugin_current_version' => 'Aktuális verzió', 'updates:plugin_description' => 'Leírás', 'updates:plugin_downloading' => 'Bővítmény letöltése: :name', 'updates:plugin_extracting' => 'Bővítmény kicsomagolása: :name', 'updates:plugin_name' => 'Név', 'updates:plugin_version' => 'Verzió', 'updates:plugin_version_none' => 'Új bővítmény', 'updates:plugins' => 'Bővítmény', 'updates:retry_label' => 'Új próba', 'updates:return_link' => 'Vissza a frissítésekhez', 'updates:theme_downloading' => 'Letöltendő téma: :name', 'updates:theme_extracting' => 'Kicsomagolandó téma: :name', 'updates:theme_new_install' => 'Új téma telepítése.', 'updates:themes' => 'Témák', 'updates:title' => 'Frissítések kezelése', 'updates:update_completing' => 'Frissítési folyamat befejezése', 'updates:update_failed_label' => 'A frissítés nem sikerült.', 'updates:update_label' => 'Honlap frissítése', 'updates:update_loading' => 'Elérhető frissítések betöltése...', 'updates:update_success' => 'A frissítési sikeresen végrehajtásra került.', 'user:account' => 'Fiók', 'user:allow' => 'Engedélyezés', 'user:avatar' => 'Profilkép', 'user:delete_confirm' => 'Valóban törölni akarja ezt az adminisztrátort?', 'user:deny' => 'Tiltás', 'user:email' => 'E-mail cím', 'user:first_name' => 'Vezetéknév', 'user:full_name' => 'Teljes név', 'user:group:code_comment' => 'Adjon meg egy egyedi kódot, ha az API-val kíván hozzáférni.', 'user:group:code_field' => 'Kód', 'user:group:delete_confirm' => 'Valóban törölni akarja ezt a adminisztrátori csoportot?', 'user:group:description_field' => 'Leírás', 'user:group:is_new_user_default_field' => 'Az új adminisztrátorok hozzáadása alapértelmezésként ehhez a csoporthoz.', 'user:group:list_title' => 'Csoportok kezelése', 'user:group:menu_label' => 'Csoportok', 'user:group:name' => 'Csoport', 'user:group:name_field' => 'Név', 'user:group:new' => 'Új adminisztrátori csoport', 'user:group:return' => 'Vissza a csoportokhoz', 'user:group:users_count' => 'Felhasználók', 'user:groups' => 'Csoportok', 'user:groups_comment' => 'Adja meg, hogy a felhasználó melyik csoportokba tartozik.', 'user:inherit' => 'Öröklés', 'user:last_name' => 'Keresztnév', 'user:list_title' => 'Adminisztrátorok kezelése', 'user:login' => 'Felhasználónév', 'user:menu_description' => 'A felhasználók, a csoportok és az engedélyek kezelése.', 'user:menu_label' => 'Adminisztrátorok', 'user:name' => 'Adminisztrátor', 'user:new' => 'Új adminisztrátor', 'user:password' => 'Jelszó', 'user:password_confirmation' => 'Jelszó megerősítése', 'user:permissions' => 'Engedélyek', 'user:preferences:not_authenticated' => 'Nincs olyan hitelesített felhasználó, aki számára betölthetők vagy menthetők a beállítások.', 'user:return' => 'Vissza az adminisztrátorokhoz', 'user:send_invite' => 'Meghívó küldése e-mailben', 'user:send_invite_comment' => 'A fentebb megadott adatokat tartalmazza.', 'user:superuser' => 'Szuperadmin', 'user:superuser_comment' => 'Korlátlan hozzáférést biztosít a teljes admin felülethez.', 'validation:accepted' => 'A(z) :attribute-t el kell fogadni.', 'validation:active_url' => 'A(z) :attribute nem érvényes URL cím.', 'validation:after' => 'A(z) :attribute :date utáni dátum kell, hogy legyen.', 'validation:alpha' => 'A(z) :attribute csak betűket tartalmazhat.', 'validation:alpha_dash' => 'A(z) :attribute csak betűket, számokat és kötőjeleket tartalmazhat.', 'validation:alpha_num' => 'A(z) :attribute csak betűket és számokat tartalmazhat.', 'validation:array' => 'A(z) :attribute tömb kell, hogy legyen.', 'validation:before' => 'A(z) :attribute :date előtti dátum kell, hogy legyen.', 'validation:between:array' => 'A(z) :attribute :min - :max elem között kell, hogy legyen.', 'validation:between:file' => 'A(z) :attribute :min - :max kilobájt között kell, hogy legyen.', 'validation:between:numeric' => 'A(z) :attribute :min - :max között kell, hogy legyen.', 'validation:between:string' => 'A(z) :attribute :min - :max karakter között kell, hogy legyen.', 'validation:confirmed' => 'A(z) :attribute megerősítés nem egyezik.', 'validation:date' => 'A(z) :attribute nem érvényes dátum.', 'validation:date_format' => 'A(z) :attribute nem egyezik a(z) :format formátummal.', 'validation:different' => 'A(z) :attribute és a(z) :other eltérő kell, hogy legyen.', 'validation:digits' => 'A(z) :attribute :digits számból kell, hogy álljon.', 'validation:digits_between' => 'A(z) :attribute :min és :max közti számból kell, hogy álljon.', 'validation:email' => 'A(z) :attribute formátuma érvénytelen.', 'validation:exists' => 'A kiválasztott :attribute érvénytelen.', 'validation:image' => 'A(z) :attribute kép kell, hogy legyen.', 'validation:in' => 'A kiválasztott :attribute érvénytelen.', 'validation:integer' => 'A(z) :attribute egész szám kell, hogy legyen.', 'validation:ip' => 'A(z) :attribute érvényes IP cím kell, legyen.', 'validation:max:array' => 'A(z) :attribute tömbnek nem lehet több, mint :max eleme.', 'validation:max:file' => 'A(z) :attribute nem lehet nagyobb :max kilobájtnál.', 'validation:max:numeric' => 'A(z) :attribute nem lehet nagyobb, mint :max.', 'validation:max:string' => 'A(z) :attribute nem lehet nagyobb :max karakternél.', 'validation:mimes' => 'A(z) :attribute fájltípus kell, hogy legyen: :values.', 'validation:min:array' => 'A(z) :attribute tömbnek legalább :min eleme kell, hogy legyen.', 'validation:min:file' => 'A(z) :attribute legalább :min kilobájt kell, hogy legyen.', 'validation:min:numeric' => 'A(z) :attribute legalább :min kell, hogy legyen.', 'validation:min:string' => 'A(z) :attribute legalább :min karakter kell, hogy legyen.', 'validation:not_in' => 'A kiválasztott :attribute érvénytelen.', 'validation:numeric' => 'A(z) :attribute szám kell, hogy legyen.', 'validation:regex' => 'A(z) :attribute formátuma érvénytelen.', 'validation:required' => 'A(z) :attribute mező kötelező.', 'validation:required_if' => 'A(z) :attribute mező kötelező, ha a(z) :other :value.', 'validation:required_with' => 'A(z) :attribute mező kötelező, ha a(z) :values jelen van.', 'validation:required_without' => 'A(z) :attribute mező kötelező, ha a(z) :values nincs jelen.', 'validation:same' => 'A(z) :attribute és a(z) :other egyező kell, hogy legyen.', 'validation:size:array' => 'A(z) :attribute :size elemeket kell, hogy tartalmazzon.', 'validation:size:file' => 'A(z) :attribute :size kilobájt kell, hogy legyen.', 'validation:size:numeric' => 'A(z) :attribute :size kell, hogy legyen.', 'validation:size:string' => 'A(z) :attribute :size karakter kell, hogy legyen.', 'validation:unique' => 'A(z) :attribute már foglalt.', 'validation:url' => 'A(z) :attribute formátuma érvénytelen.', 'warnings:extension' => 'A(z) :name PHP kiterjesztés nincs telepítve. Telepítse ezt a függvénytárat és aktiválja a kiterjesztést.', 'warnings:permissions' => 'A(z) :name könyvtár vagy alkönyvtárai a PHP számára nem írhatóak. Adjon megfelelő engedélyeket a webkiszolgálónak erre a könyvtárra.', 'warnings:tips' => 'Rendszer konfigurációs tippek', 'warnings:tips_description' => 'Olyan problémák vannak, melyekre figyeljen oda a rendszer megfelelő konfigurálása érdekében.', 'widget:not_bound' => 'A(z) \':name\' osztálynevű widget kötése nem történt meg a vezérlővel.', 'widget:not_registered' => 'A(z) \':name\' widget osztálynév regisztrálása nem történt meg.', 'zip:extract_failed' => 'Nem tömöríthető ki a(z) \':file\' fájl.']);
示例#29
0
文件: cli.php 项目: dev-lucid/lucid
<?php

use Lucid\Lucid;
include __DIR__ . '/../bootstrap.php';
# This respone class's output is a bit prettier for the command line
lucid::setComponent('response', new \Lucid\Component\Response\CommandLine());
# Since cookies cannot be written when called on the command line, replace the cookie store
# with a generic store.
lucid::setComponent('cookie', new \Lucid\Component\Store\Store());
lucid::queue()->parseCommandLineAction($argv);
lucid::queue()->process();
lucid::response()->write();
示例#30
0
文件: de.php 项目: dev-lucid/lucid
<?php

# This file was automatically converted from the October CMS language files. Thank you October CMS for all the great work!
# https://octobercms.com
lucid::add_phrases(['access_log:created_at' => 'Datum & Uhrzeit', 'access_log:email' => 'E-Mail', 'access_log:first_name' => 'Vorname', 'access_log:hint' => 'Dieser Log zeigt eine Liste mit erfolgreichen Anmelde-Verscuhen von Administratoren. Die Aufzeichnungen bleiben erhalten für :days Tage.', 'access_log:ip_address' => 'IP Adresse', 'access_log:last_name' => 'Nachname', 'access_log:login' => 'Anmeldung', 'access_log:menu_description' => 'Sehen Sie sich eine Liste mit erfolgreichen Backend Benutzeranmeldungen an.', 'access_log:menu_label' => 'Zugriffslog', 'account:apply' => 'Anwenden', 'account:cancel' => 'Abbrechen', 'account:delete' => 'Löschen', 'account:email_placeholder' => 'E-Mail', 'account:enter_email' => 'Bitte E-Mail-Adresse eingeben', 'account:enter_login' => 'Bitte Benutzernamen eingeben', 'account:enter_new_password' => 'Bitte ein neues Passwort eingeben', 'account:forgot_password' => 'Passwort vergessen?', 'account:login' => 'Anmelden', 'account:login_placeholder' => 'Benutzername', 'account:ok' => 'OK', 'account:password_placeholder' => 'Passwort', 'account:password_reset' => 'Passwort zurücksetzen', 'account:reset' => 'Zurücksetzen', 'account:reset_error' => 'Konnte Passwort nicht zurücksetzen. Bitte erneut versuchen!', 'account:reset_fail' => 'Passwort-Zurücksetzung nicht möglich!', 'account:reset_success' => 'Ihr Passwort wurde erfolgreich zurückgesetzt. Sie können sich jetzt anmelden.', 'account:restore' => 'Wiederherstellen', 'account:restore_error' => 'Ein Benutzer mit dem Namen \':login\' wurde nicht gefunden', 'account:restore_success' => 'Eine E-Mail mit weiteren Anweisungen zum Zurücksetzen Ihres Passworts wurde an Sie versandt', 'account:sign_out' => 'Abmelden', 'ajax_handler:invalid_name' => 'Ungültiger Name für AJAX Handler: :name.', 'ajax_handler:not_found' => 'AJAX Handler \':name\' wurde nicht gefunden.', 'alert:cancel_button_text' => 'Abbrechen', 'alert:confirm_button_text' => 'OK', 'app:name' => 'October CMS', 'app:tagline' => 'Zurück zum Wesentlichen', 'asset:already_exists' => 'Datei oder Verzeichnis mit diesem Namen existiert bereits', 'asset:create_directory' => 'Verzeichnis erstellen', 'asset:create_file' => 'Datei erstellen', 'asset:delete' => 'Löschen', 'asset:destination_not_found' => 'Zielverzeichnis wurde nicht gefunden', 'asset:drop_down_add_title' => 'Hinzufügen...', 'asset:drop_down_operation_title' => 'Aktion...', 'asset:error_deleting_dir' => 'Fehler beim Löschen der Datei :name.', 'asset:error_deleting_dir_not_empty' => 'Fehler beim Löschen des Verzeichnisses :name, da es nicht leer ist.', 'asset:error_deleting_directory' => 'Fehler beim Löschen des Originalverzeichnisses :dir', 'asset:error_deleting_file' => 'Fehler beim Löschen der Datei :name.', 'asset:error_moving_directory' => 'Fehler beim Bewegen des Verzeichnisses :dir', 'asset:error_moving_file' => 'Fehler beim Bewegen der Datei :file', 'asset:error_renaming' => 'Fehler beim Umbenennen der Datei bzw. des Verzeichnisses', 'asset:error_uploading_file' => 'Fehler beim Hochladen der Datei \\":name\\": :error', 'asset:file_not_valid' => 'Datei ist ungültig', 'asset:invalid_name' => 'Asset-Name darf nur Ziffern, lateinische Zeichen, Leerzeichen sowie die folgenden Symbole enthalten: ._-', 'asset:invalid_path' => 'Pfade dürfen ausschließlich Ziffern, lateinische Zeichen, Leerzeichen sowie die folgenden Symbole enthalten: ._-/', 'asset:menu_label' => 'Assets', 'asset:move' => 'Bewegen', 'asset:move_button' => 'Bewegen', 'asset:move_destination' => 'Zielverzeichnis', 'asset:move_please_select' => 'Bitte auswählen', 'asset:move_popup_title' => 'Assets bewegen', 'asset:name_cant_be_empty' => 'Es muss ein Name angegeben werden', 'asset:new' => 'Neue Datei', 'asset:original_not_found' => 'Originaldatei oder -verzeichnis wurde nicht gefunden', 'asset:path' => 'Pfad', 'asset:rename' => 'Umbenennen', 'asset:rename_new_name' => 'Neuer Name', 'asset:rename_popup_title' => 'Umbenennen', 'asset:select_destination_dir' => 'Bitte wählen Sie ein Zielverzeichnis aus', 'asset:selected_files_not_found' => 'Ausgewählte Dateien nicht gefunden', 'asset:too_large' => 'Die hochzuladende Datei ist zu groß. Sie dürfen maximal Dateien der Größe :max_size hochladen', 'asset:type_not_allowed' => 'Es sind ausschließlich folgende Dateiendungen erlaubt: :allowed_types', 'asset:upload_files' => 'Datei(en) hochladen', 'backend_preferences:locale' => 'Sprache', 'backend_preferences:locale_comment' => 'Wählen Sie Ihre gewünschte Sprache für das Backend.', 'backend_preferences:menu_description' => 'Verwalten der Spracheinstellungen und der Backenddarstellung.', 'backend_preferences:menu_label' => 'Backend Einstellungen', 'behavior:missing_property' => 'Klasse :class muss Eingenschaft $:property besitzen, da sie von Verhalten (behaviour) :behavior benötigt wird.', 'cms:menu_label' => 'CMS', 'cms_object:delete_success' => 'Templates wurden erfolgreich gelöscht: :count.', 'cms_object:error_creating_directory' => 'Fehler beim Erstellen von Verzeichnis mit Namen :name', 'cms_object:error_deleting' => 'Fehler beim Löschen der Template-Datei \\":name\\".', 'cms_object:error_saving' => 'Fehler beim Speichern von \\":name\\".', 'cms_object:file_already_exists' => 'Datei \\":name\\" existiert bereits.', 'cms_object:file_name_required' => 'Ein Dateiname ist erforderlich.', 'cms_object:invalid_file' => 'Ungültiger Dateiname: :name. Diese dürfen nur alphanumerische Symbole, Unter- und Bindestriche sowie Punkte enthalten. Beispiele: page.htm, page, subdirectory/page', 'cms_object:invalid_file_extension' => 'Ungültige Dateiendung: :invalid. Erlaubt sind: :allowed.', 'cms_object:invalid_property' => 'Die Eigenschaft \\":name\\" kann nicht angewendet werden', 'combiner:not_found' => 'Die combiner Datei \':name\' wurde nicht gefunden.', 'component:alias' => 'Verknüpfung', 'component:alias_description' => 'Dieser Komponente wird ein eindeutiger Name gegeben, wenn sie im Code von Seite oder Layout benutzt wird.', 'component:invalid_request' => 'Aufgrund ungültiger Komponentendaten kann das Template nicht gespeichert werden.', 'component:menu_label' => 'Komponenten', 'component:method_not_found' => 'Die Komponente \':name\' enthält keine Methode mit Namen \':method\'.', 'component:no_description' => 'Keine Beschreibung angegeben', 'component:no_records' => 'Keine Komponenten gefunden', 'component:not_found' => 'Die Komponente \':name\' wurde nicht gefunden.', 'component:unnamed' => 'Unbenannt', 'component:validation_message' => 'Komponentenverknüpfungen werden benötigt und dürfen nur lateinische Zeichen, Ziffern und Unterstriche beinhalten. Die Verknüpfungen müssen mit einem lateinischen Zeichen beginnen.', 'config:not_found' => 'Konnte Konfigurationsdatei :file definiert für :location nicht finden.', 'config:required' => 'Konfiguration, die in :location benutzt wird, muss den Wert :property zur Verfügung stellen.', 'content:delete_confirm_multiple' => 'Wollen Sie die ausgewählten Inhalte und Verzeichnisse wirklich löschen?', 'content:delete_confirm_single' => 'Wollen Sie diese Inhaltsdatei wirklich löschen?', 'content:menu_label' => 'Inhalt', 'content:new' => 'Neue Inhaltsdatei', 'content:no_list_records' => 'Keine Inhaltsdateien gefunden', 'content:not_found_name' => 'Die Inhaltsdatei \':name\' wurde nicht gefundne.', 'dashboard:add_widget' => 'Neues Widget', 'dashboard:columns' => '{1} Spalte|[2,Inf] Spalten', 'dashboard:full_width' => 'ganze Breite', 'dashboard:menu_label' => 'Dashboard', 'dashboard:status:online' => 'online', 'dashboard:status:update_available' => '{0} Updates verfügbar!|{1} Update verfügbar!|[2,Inf] Updates verfügbar!', 'dashboard:status:widget_title_default' => 'System Status', 'dashboard:widget_columns_description' => 'Die Breite de Widgets, eine Zahl zwischen 1 und 10.', 'dashboard:widget_columns_error' => 'Bitte geben sie als Breite des Widgets eine Zahl zwischen 1 und 10 ein.', 'dashboard:widget_columns_label' => 'Breite :columns', 'dashboard:widget_inspector_description' => 'Dieses Widget konfigurieren', 'dashboard:widget_inspector_title' => 'Widget Konfiguration', 'dashboard:widget_label' => 'Widget', 'dashboard:widget_new_row_description' => 'Setzt das Widget in eine neue Reihe', 'dashboard:widget_new_row_label' => 'Neue Reihe erzwingen', 'dashboard:widget_title_error' => 'Ein Titel des Widgets wird benötigt.', 'dashboard:widget_title_label' => 'Titel des Widgets', 'dashboard:widget_width' => 'Breite', 'directory:create_fail' => 'Konnte Verzeichnis: :name nicht erstellen', 'editor:code' => 'Code', 'editor:code_folding' => 'Code-Folding', 'editor:content' => 'Inhalt', 'editor:description' => 'Beschreibung', 'editor:enter_fullscreen' => 'In den Vollbildmodus wechseln', 'editor:exit_fullscreen' => 'Vollbildmodus beenden', 'editor:filename' => 'Dateiname', 'editor:font_size' => 'Schriftgrösse', 'editor:hidden' => 'Versteckt', 'editor:hidden_comment' => 'Versteckte Seiten können nur von eingeloggten Backend-Benutzern genutzt werden.', 'editor:highlight_active_line' => 'Aktive Linie hervorheben', 'editor:layout' => 'Layout', 'editor:markup' => 'Markup', 'editor:menu_description' => 'Verwalten der Code-Editor Einstellungen.', 'editor:menu_label' => 'Editor Einstellungen', 'editor:meta' => 'Meta', 'editor:meta_description' => 'Meta Beschreibung', 'editor:meta_title' => 'Meta Titel', 'editor:new_title' => 'Neuer Seitentitel', 'editor:preview' => 'Vorschau', 'editor:settings' => 'Einstellungen', 'editor:show_gutter' => 'Gutter anzeigen', 'editor:show_invisibles' => 'unsichtbare Zeichen anzeigen', 'editor:tab_size' => 'Tabgrösse', 'editor:theme' => 'Farb Schema', 'editor:title' => 'Titel', 'editor:url' => 'URL', 'editor:use_hard_tabs' => 'Gedankenstrich bei Tabs', 'editor:word_wrap' => 'Word Wrap', 'email:general' => 'Allgemein', 'email:menu_description' => 'Email Einstellungen verwalten.', 'email:menu_label' => 'Email Einstellungen', 'email:method' => 'Email Method', 'email:sender_email' => 'Absender Email', 'email:sender_name' => 'Absender Name', 'email:sendmail' => 'Sendmail', 'email:sendmail_path' => 'Sendmail Pfad', 'email:sendmail_path_comment' => 'Bitte gib den (absoluten) Pfad zum Sendmail Programm an.', 'email:smtp' => 'SMTP', 'email:smtp_address' => 'SMTP Adresse', 'email:smtp_authorization' => 'SMTP Authorisation erforderlich', 'email:smtp_authorization_comment' => 'Bitte auswählen, wenn der SMTP Server eine SMTP Authorisation erfordert.', 'email:smtp_password' => 'Passwort', 'email:smtp_port' => 'SMTP Port', 'email:smtp_ssl' => 'SSL Verbindung erforderlich', 'email:smtp_username' => 'Benutzername', 'event_log:created_at' => 'Datum & Zeit', 'event_log:empty_link' => 'Event-Log zurücksetzen', 'event_log:empty_loading' => 'Event-Log wird zurückgesetzt...', 'event_log:empty_success' => 'Event-Log erfolgreich zurückgesetzt.', 'event_log:hint' => 'Dieses Event-Log listet potentielle Fehler in der Anwendung, wie Exceptions und Debugging-Informationen.', 'event_log:id' => 'ID', 'event_log:id_label' => 'Event ID', 'event_log:level' => 'Level', 'event_log:menu_description' => 'Rufe ein Event-Log mit Zeitangaben und Fehlerdetails auf.', 'event_log:menu_label' => 'Event-Log', 'event_log:message' => 'Nachricht', 'event_log:return_link' => 'Zurück zum Event-Log', 'field:invalid_type' => 'Ungültiger Feldtyp :type.', 'field:options_method_not_exists' => 'Die Model-Klasse :model muss eine Methode :method() mit Rückgabe der Werte von \\":field\\" besitzen.', 'file:create_fail' => 'Konnte Datei :name nicht erstellen', 'fileupload:attachment' => 'Anhang', 'fileupload:description_label' => 'Beschreibung', 'fileupload:help' => 'Fügen Sie dem Anhang einen Titel und eine Beschreibung hinzu.', 'fileupload:title_label' => 'Titel', 'filter:all' => 'Alle', 'form:apply' => 'Anwenden', 'form:behavior_not_ready' => 'Formularverhalten kann nicht initialisiert werden, überprüfen Sie den Aufruf von makeLists() in Ihrem Controller.', 'form:cancel' => 'Abbrechen', 'form:close' => 'Schließen', 'form:concurrency_file_changed_description' => 'Die Datei, welche Sie bearbeiten, wurde auf von einem anderen Benutzer geändert. Sie können die Datei entweder erneut laden, wodurch Ihre Änderungen verloren gehen oder Sie überschreiben die Datei auf dem Server', 'form:concurrency_file_changed_title' => 'Datei wurde geändert', 'form:confirm_tab_close' => 'Wollen Sie den Tab wirklich schließen? Ungespeicherte Änderungen gehen verloren.', 'form:create' => 'Erstellen', 'form:create_and_close' => 'Erstellen und schließen', 'form:create_success' => ':name wurde erfolgreich erzeugt', 'form:create_title' => 'Neuer :name', 'form:creating' => 'Erstellen...', 'form:delete' => 'Löschen', 'form:delete_row' => 'Reihe löschen', 'form:delete_success' => ':name wurde erfolgreich gelöscht', 'form:deleting' => 'Löschen...', 'form:field_off' => 'Aus', 'form:field_on' => 'An', 'form:insert_row' => 'Reihe einfügen', 'form:missing_definition' => 'Formverhalten fehlt ein Feld für \':field\'.', 'form:missing_id' => 'Formulardatensatz-ID (Form record ID) fehlt.', 'form:missing_model' => 'In :class genutztes Formularverhalten (behaviour) hat kein definiertes Model', 'form:not_found' => 'Formulareintrag mit der ID :id kann nicht gefunden werden.', 'form:ok' => 'OK', 'form:or' => 'or', 'form:preview_no_files_message' => 'Keine Dateien wurden hochgeladen', 'form:preview_title' => 'Vorschau für :name', 'form:reload' => 'Erneut laden', 'form:save' => 'Speichern', 'form:save_and_close' => 'Speichern und schließen', 'form:saving' => 'Wird gespeichert...', 'form:select' => 'Auswählen', 'form:select_all' => 'Alle', 'form:select_none' => 'Keine', 'form:select_placeholder' => 'Bitte auswählen', 'form:undefined_tab' => 'Divers', 'form:update_success' => ':name wurde erfolgreich aktualisiert', 'form:update_title' => 'Bearbeite :name', 'install:install_completing' => 'Schließe Installationsprozess ab', 'install:install_success' => 'Das Plugin wurde erfolgreich installiert.', 'install:missing_plugin_name' => 'Bitte geben Sie den Namen des zu installierenden Plugin an.', 'install:plugin_label' => 'Plugin installieren', 'install:project_label' => 'Mit Projekt verbinden', 'layout:delete_confirm_multiple' => 'Wollen Sie die ausgewählten Layouts wirklich löschen?', 'layout:delete_confirm_single' => 'Wollen Sie das ausgewählte Layout wirklich löschen?', 'layout:menu_label' => 'Layouts', 'layout:new' => 'Neues Layout', 'layout:no_list_records' => 'Keine Layouts gefunden', 'layout:not_found_name' => 'Das Layout \':name\' wurde nicht gefunden', 'list:behavior_not_ready' => 'Listenverhalten kann nicht initialisiert werden, überprüfen Sie den Aufruf von makeLists() in Ihrem Controller.', 'list:default_title' => 'Auflisten', 'list:delete_selected' => 'Markierte löschen', 'list:delete_selected_confirm' => 'Markierte Einträge löschen?', 'list:delete_selected_empty' => 'Keine Einträge zum Löschen markiert.', 'list:delete_selected_success' => 'Markierte Einträge erfolgreich gelöscht.', 'list:invalid_column_datetime' => 'Spaltenwert \':column\' ist kein gültiges DateTime Objekt, haben Sie eine  $dates Referenz in dem Model vergessen?', 'list:loading' => 'Laden...', 'list:missing_column' => 'Keine Spaltendefinition für :columns.', 'list:missing_columns' => 'In :class benutzte Liste behinhaltet keine Spalten', 'list:missing_definition' => 'Der Liste fehlt eine Spalte für \':field\'.', 'list:missing_model' => 'In :class benutztes Lisstenverhalten hat kein Model definiert.', 'list:next_page' => 'Nächste Seite', 'list:no_records' => 'Keine Ergebnisse für diese Ansicht gefunden', 'list:pagination' => 'Angezeigte Aufzeichnungen: :from-:to von :total', 'list:prev_page' => 'Vorherige Seite', 'list:records_per_page' => 'Aufzeichnungen pro Seite', 'list:records_per_page_help' => 'Wählen Sie, wieviele Aufzeichnungen pro Seite dargestellt werden sollen. Bitte beachten Sie, dass eine hohe Anzahl pro Seite die Performance negativ beeinflussen kann.', 'list:search_prompt' => 'Suchen...', 'list:setup_help' => 'Benutzen Sie Checkboxen, um Spalten auszuwählen, welche Sie in den Listen sehen möchten. Sie können die Position der Spalten ändern, indem Sie diese hinauf oder hinunter ziehen.', 'list:setup_title' => 'Listen Setup', 'locale:cs' => 'Tschechisch', 'locale:de' => 'Deutsch', 'locale:el' => 'Griechisch', 'locale:en' => 'Englisch', 'locale:es' => 'Spanisch', 'locale:es-ar' => 'Spanisch (Argentinien)', 'locale:fa' => 'Persisch', 'locale:fr' => 'Französisch', 'locale:hu' => 'Ungarisch', 'locale:id' => 'Indonesisch', 'locale:it' => 'Italienisch', 'locale:ja' => 'Japanisch', 'locale:lv' => 'Lettisch', 'locale:nb-no' => 'Norwegisch (Bokmål)', 'locale:nl' => 'Niederländisch', 'locale:pl' => 'Polnisch', 'locale:pt-br' => 'Portugiesisch (Brasilien)', 'locale:ro' => 'Rumänisch', 'locale:ru' => 'Russisch', 'locale:sk' => 'Slowakisch', 'locale:sv' => 'Schwedisch', 'locale:tr' => 'Türkisch', 'locale:zh-cn' => 'Chinesisch (China)', 'locale:zh-tw' => 'Chinesisch (Taiwan)', 'maintenance:is_enabled' => 'Wartungsmodus aktivieren', 'maintenance:is_enabled_comment' => 'Sobald aktiviert, werden Besucher die unten ausgewählte Seite sehen.', 'maintenance:settings_menu' => 'Wartungsmodus', 'maintenance:settings_menu_description' => 'Konfigurieren Sie den Wartungsmodus.', 'markdowneditor:bold' => 'Fett', 'markdowneditor:code' => 'Code', 'markdowneditor:formatting' => 'Formatierung', 'markdowneditor:fullscreen' => 'Vollbild', 'markdowneditor:header1' => 'Überschrift 1', 'markdowneditor:header2' => 'Überschrift 2', 'markdowneditor:header3' => 'Überschrift 3', 'markdowneditor:header4' => 'Überschrift 4', 'markdowneditor:header5' => 'Überschrift 5', 'markdowneditor:header6' => 'Überschrift 6', 'markdowneditor:horizontalrule' => 'Horizontale Linie', 'markdowneditor:image' => 'Bild', 'markdowneditor:italic' => 'Kursiv', 'markdowneditor:link' => 'Link', 'markdowneditor:orderedlist' => 'Nummerierte Liste', 'markdowneditor:preview' => 'Vorschau', 'markdowneditor:quote' => 'Zitat', 'markdowneditor:unorderedlist' => 'Normale Liste', 'markdowneditor:video' => 'Video', 'media:add_folder' => 'Ordner erstellen', 'media:click_here' => 'Hier drücken', 'media:crop_and_insert' => 'Zuschneiden und Einfügen', 'media:delete' => 'Löschen', 'media:delete_confirm' => 'Wollen Sie wirklich die gewählte(n) Datei(en) löschen?', 'media:delete_empty' => 'Bitte Wählen Sie Dateien zum Löschen aus.', 'media:display' => 'Anzeigen', 'media:empty_library' => 'Diese Medienbibliothek ist leer. Laden Sie Dateien hoch oder erstellen Sie Ordner!', 'media:error_creating_folder' => 'Fehler beim Erstellen des Ordners', 'media:error_renaming_file' => 'Fehler beim Umbenennen.', 'media:filter_audio' => 'Audio', 'media:filter_documents' => 'Dokumente', 'media:filter_everything' => 'Alles', 'media:filter_images' => 'Bilder', 'media:filter_video' => 'Video', 'media:folder' => 'Ordner', 'media:folder_name' => 'Ordnername', 'media:folder_or_file_exist' => 'Ein Ordner oder eine Datei mit dem gewählten Namen existiert bereits.', 'media:folder_size_items' => 'Datei(en)', 'media:height' => 'Höhe', 'media:image_size' => 'Dimensionen:', 'media:insert' => 'Einfügen', 'media:invalid_path' => 'Ungültiger Dateipfad: \':path\'.', 'media:last_modified' => 'Zuletzt bearbeitet', 'media:library' => 'Sammlung', 'media:menu_label' => 'Medien', 'media:move' => 'Verschieben', 'media:move_dest_src_match' => 'Bitte wählen Sie einen anderen Zielordner.', 'media:move_destination' => 'Zielordner', 'media:move_empty' => 'Bitte wählen Sie Dateien zum Verschieben aus', 'media:move_popup_title' => 'Verschiebe Dateien oder Ordner', 'media:multiple_selected' => 'Mehrere Dateien ausgewählt.', 'media:new_folder_title' => 'Neuer Ordner', 'media:no_files_found' => 'Keine entsprechenden Dateien gefunden.', 'media:nothing_selected' => 'Nichts ausgewählt.', 'media:order_by' => 'Sortieren nach', 'media:please_select_move_dest' => 'Bitte wählen Sie einen Zielordner.', 'media:public_url' => 'Öffentliche URL', 'media:resize' => 'Größe anpassen...', 'media:resize_image' => 'Bildgröße anpassen', 'media:restore' => 'Alle Änderungen rückgängig machen', 'media:return_to_parent' => 'Zu oberem Ordner zurückkehren', 'media:return_to_parent_label' => 'Stufe hoch ..', 'media:search' => 'Suchen', 'media:select_single_image' => 'Bitte wählen Sie ein einzelnes Bild.', 'media:selected_size' => 'Ausgewählt:', 'media:selection_mode' => 'Selection mode', 'media:selection_mode_fixed_ratio' => 'Fixes Verhältnis', 'media:selection_mode_fixed_size' => 'Fixe Größe', 'media:selection_mode_normal' => 'Normal', 'media:selection_not_image' => 'Die gewählte Datei ist kein Bild.', 'media:size' => 'Größe', 'media:thumbnail_error' => 'Fehler beim Erstellen des Thumbnails.', 'media:title' => 'Titel', 'media:upload' => 'Hochladen', 'media:uploading_complete' => 'Upload vollständig', 'media:uploading_file_num' => 'Lade :number Datei(en)...', 'media:width' => 'Breite', 'mediamanager:insert_audio' => 'Audio aus Medienbibliothek', 'mediamanager:insert_image' => 'Bild aus Medienbibliothek', 'mediamanager:insert_link' => 'Link aus Medienbibliothek', 'mediamanager:insert_video' => 'Video aus Medienbibliothek', 'mediamanager:invalid_audio_empty_insert' => 'Bitte eine Audiodatei auswählen.', 'mediamanager:invalid_file_empty_insert' => 'Bitte Datei auswählen.', 'mediamanager:invalid_file_single_insert' => 'Bitte nur eine Datei wählen.', 'mediamanager:invalid_image_empty_insert' => 'Bitte ein Bild auswählen.', 'mediamanager:invalid_video_empty_insert' => 'Bitte ein Video auswählen.', 'model:invalid_class' => 'In :class benutztes Model :model ist ungültig, da es von der Klasse \\Model abgeleitet sein muss (inherit).', 'model:mass_assignment_failed' => 'Mass assignment failed for Model attribute \':attribute\'.', 'model:missing_id' => 'Für diesen Model-Datensatz ist keine ID angegeben', 'model:missing_relation' => 'Model \':class\' hat keine definierte Verbindung \':relation\'.', 'model:name' => 'Model', 'model:not_found' => 'Model \':class\' mit ID :id konnte nicht gefunden werden', 'myaccount:menu_description' => 'Updaten Sie Ihre Account-Details wie z.B. den Namen, die E-Mail-Adresse und das Passwort.', 'myaccount:menu_keywords' => 'Sicheres Anmelden', 'myaccount:menu_label' => 'Mein Account', 'mysettings:menu_description' => 'Einstellungen beziehen sich auf Ihren Administratoren Account', 'mysettings:menu_label' => 'Meine Einstellungen', 'page:access_denied:cms_link' => 'Zum CMS-Backend', 'page:access_denied:help' => 'Sie haben nicht die erforderlichen Berechtigungen, um diese Seite zu sehen.', 'page:access_denied:label' => 'Zugriff verweigert', 'page:custom_error:help' => 'Entschuldigung, ein Fehler trat auf, sodass die gewünschte Seite nicht angezeigt werden kann.', 'page:custom_error:label' => 'Seitenfehler', 'page:delete_confirm_multiple' => 'Wollen Sie die ausgewählten Seiten wirklich löschen?', 'page:delete_confirm_single' => 'Wollen Sie diese Seite wirklich löschen?', 'page:invalid_url' => 'Ungültiges URL-Format. Die URL muss mit einem Slash beginnen und darf nur Ziffern, lateinische Zeichen und die folgenden Symbole beinhalten: ._-[]:?|/+*^$', 'page:menu_label' => 'Seiten', 'page:new' => 'Neue Seite', 'page:no_layout' => '-- Kein Layout --', 'page:no_list_records' => 'Keine Seiten gefunden', 'page:not_found:help' => 'Die angeforderte Seite kann nicht gefunden werden.', 'page:not_found:label' => 'Seite nicht gefunden', 'page:not_found_name' => 'Die Seite \':name\' konnte nicht gefunden werden', 'page:untitled' => 'Unbenannt', 'partial:delete_confirm_multiple' => 'Wollen Sie die ausgewählten Partials wirklich löschen?', 'partial:delete_confirm_single' => 'Wollen Sie das ausgewählte Partial wirklich löschen?', 'partial:invalid_name' => 'Ungültiger Partial-Name: :name.', 'partial:menu_label' => 'Partials', 'partial:new' => 'Neues Partial', 'partial:no_list_records' => 'Keine Partials gefunden', 'partial:not_found_name' => 'Das Partial \':name\' wurde nicht gefunden.', 'permissions:access_logs' => 'Systemprotokolle einsehen', 'permissions:manage_assets' => 'Assets verwalten', 'permissions:manage_branding' => 'Backend individualisieren', 'permissions:manage_content' => 'Inhalt verwalten', 'permissions:manage_editor' => 'Code-Editor-Einstellungen verwalten', 'permissions:manage_layouts' => 'Layouts verwalten', 'permissions:manage_mail_settings' => 'Mail-Einstellungen verwalten', 'permissions:manage_mail_templates' => 'Mail-Templates verwalten', 'permissions:manage_other_administrators' => 'Andere Administratoren verwalten', 'permissions:manage_pages' => 'Seiten verwalten', 'permissions:manage_partials' => 'Partials verwalten', 'permissions:manage_preferences' => 'Backend-Einstellungen verwalten', 'permissions:manage_software_updates' => 'Software-Updates verwalten', 'permissions:manage_system_settings' => 'Systemeinstellungen verwalten', 'permissions:manage_themes' => 'Themes verwalten', 'permissions:name' => 'Cms', 'permissions:view_the_dashboard' => 'Dashboard einsehen', 'plugin:name:help' => 'Benennen Sie das Plugin eindeutig, zum Beispiel RainLab.Blog', 'plugin:name:label' => 'Plugin-Name', 'plugin:unnamed' => 'Unbenanntes Plugin', 'project:attach' => 'Projekt verbinden', 'project:detach' => 'Projekt trennen', 'project:detach_confirm' => 'Möchtest du dieses Projekt wirklich trennen?', 'project:id:help' => 'Wie Sie Ihre Projekt-ID finden', 'project:id:label' => 'Projekt-ID', 'project:id:missing' => 'Bitte geben Sie eine Projekt-ID an.', 'project:name' => 'Projekt', 'project:none' => 'Keins', 'project:owner_label' => 'Besitzer', 'project:unbind_success' => 'Projekt wurde erfolgreich getrennt (detached).', 'relation:add' => 'Hinzufügen', 'relation:add_name' => ':name hinzufügen', 'relation:create' => 'Erstellen', 'relation:create_name' => 'Erstelle :name', 'relation:delete' => 'Löschen', 'relation:delete_confirm' => 'Sind Sie sicher?', 'relation:delete_name' => ':name löschen', 'relation:help' => 'Zum Hinzufügen auf ein Item klicken', 'relation:invalid_action_multi' => 'Dieser Vorgang kann nicht auf eine Mehrwege-Verbindung (multiple) angewendet werden.', 'relation:invalid_action_single' => 'Dieser Vorgang kann nicht auf eine Einwege-Verbindung (singular) angewendet werden.', 'relation:missing_definition' => 'Verhalten (behaviour) der Verbindung umfasst keine Definition für \':field\'.', 'relation:missing_model' => 'Verhalten (behaviour) der Verbindung, die in :class benutzt wird, hat kein definiertes Model', 'relation:related_data' => 'Verwandte :name Daten', 'relation:remove' => 'Entfernen', 'relation:remove_name' => ':name entfernen', 'relation:update' => 'Update', 'relation:update_name' => 'Update :name', 'request_log:count' => 'Zähler', 'request_log:empty_link' => 'Request-Log zurücksetzen', 'request_log:empty_loading' => 'Request-Log wird zurückgesetzt...', 'request_log:empty_success' => 'Request-Log erfolgreich zurückgesetzt.', 'request_log:hint' => 'Dieses Request-Log listet Browser-Anfragen, die Ihrer Aufmerksamkeit bedürfen könnten. Falls zum Beispiel ein Besucher eine nicht existierende CMS-Seite öffnet, wird ein Eintrag mit dem Fehler 404 angelegt.', 'request_log:id' => 'ID', 'request_log:id_label' => 'Log ID', 'request_log:menu_description' => 'Liste fehlerhafte Requests auf, z.B. Seite nicht gefunden (404).', 'request_log:menu_label' => 'Request-Log', 'request_log:referer' => 'Referer', 'request_log:return_link' => 'Zurück zum Request-Log', 'request_log:status_code' => 'Status', 'request_log:url' => 'URL', 'server:connect_error' => 'Fehler beim Verbinden mit dem Server.', 'server:file_corrupt' => 'Angelieferte Datei ist fehlerhaft.', 'server:file_error' => 'Server konnte Paket nicht zur Verfügung stellen.', 'server:response_empty' => 'Ergebnislose Antwort vom Server.', 'server:response_invalid' => 'Ungültige Antwort vom Server.', 'server:response_not_found' => 'Der Aktualisierungs-Server kann nicht gefunden werden.', 'settings:menu_label' => 'Einstellungen', 'settings:missing_model' => 'Der Einstellungsseite fehlt eine Model-Definition.', 'settings:return' => 'Zurück zu den Einstellungen', 'settings:update_success' => 'Einstellung für :name wurde erfolgreich aktualisiert.', 'sidebar:add' => 'Hinzufügen', 'sidebar:search' => 'Suchen...', 'system:menu_label' => 'System', 'system:name' => 'System', 'template:invalid_type' => 'Unbekannter Template-Typ.', 'template:not_found' => 'Das angeforderte Template wurde nicht gefunden.', 'template:saved' => 'Das Template wurde erfolgreich gespeichert.', 'theme:activate_button' => 'Aktivieren', 'theme:active:not_set' => 'Aktives Theme nicht definiert', 'theme:active_button' => 'Aktivieren', 'theme:author_label' => 'Autor', 'theme:author_placeholder' => 'Autor- oder Firmenname', 'theme:code_label' => 'Code', 'theme:code_placeholder' => 'Ein einzigartiger Code genutzt bei der Weiterverbreitung dieses Themes', 'theme:create_button' => 'Erstellen', 'theme:create_new_blank_theme' => 'Erstelle ein neues (leeres) Theme', 'theme:create_theme_required_name' => 'Bitte benennen Sie das Theme.', 'theme:create_theme_success' => 'Theme erfolgreich erstellt!', 'theme:create_title' => 'Theme erstellen', 'theme:customize_button' => 'Anpassen', 'theme:customize_theme' => 'Theme anpassen', 'theme:default_tab' => 'Eigenschaften', 'theme:delete_active_theme_failed' => 'Das aktive Theme kann nicht gelöscht werden, aktivieren Sie zunächst ein anderes Theme.', 'theme:delete_button' => 'Löschen', 'theme:delete_confirm' => 'Sind Sie sicher, dass Sie dieses Theme löschen wollen? Dies kann nicht rückgängig gemacht werden!', 'theme:delete_theme_success' => 'Theme wurde erfolgreich gelöscht!', 'theme:description_label' => 'Beschreibung', 'theme:description_placeholder' => 'Themebeschreibung', 'theme:dir_name_create_label' => 'Name des Zielverzeichnisses', 'theme:dir_name_invalid' => 'Verzeichnisnamen können nur Zahlen, lateinische Buchstaben und die folgenden Symbole enthalten: _-', 'theme:dir_name_label' => 'Verzeichnisname', 'theme:dir_name_taken' => 'Gewünschter Verzeichnisname existiert bereits.', 'theme:duplicate_button' => 'Duplizieren', 'theme:duplicate_theme_success' => 'Theme erfolgreich dupliziert!', 'theme:duplicate_title' => 'Theme duplizieren', 'theme:edit:not_found' => 'Edit Theme nicht gefunden.', 'theme:edit:not_match' => 'Das Objekt, das sie anzupassen versuchen gehört nicht zum Theme in Bearbeitung. Bitte laden Sie die Seite erneut.', 'theme:edit:not_set' => 'Edit Theme nicht definiert', 'theme:edit_properties_button' => 'Eigenschaften bearbeiten', 'theme:edit_properties_title' => 'Theme', 'theme:export_button' => 'Exportieren', 'theme:export_folders_comment' => 'Bitte wählen Sie die Ordner des Themes, die Sie exportieren wollen, aus.', 'theme:export_folders_label' => 'Ordner', 'theme:export_title' => 'Exportiere Theme', 'theme:find_more_themes' => 'Finde weitere Themen', 'theme:homepage_label' => 'Homepage', 'theme:homepage_placeholder' => 'Webseiten URL', 'theme:import_button' => 'Importieren', 'theme:import_folders_comment' => 'Bitte wähle die Theme-Ordner zum Importieren aus', 'theme:import_folders_label' => 'Ordner', 'theme:import_overwrite_comment' => 'Deaktiviere diese Option, um ausschließlich neue Dateien zu importieren', 'theme:import_overwrite_label' => 'Überschreibe existierende Dateien', 'theme:import_theme_success' => 'Theme erfolgreich importiert!', 'theme:import_title' => 'Theme importieren', 'theme:import_uploaded_file' => 'Theme Archivdatei', 'theme:manage_button' => 'Verwalten', 'theme:manage_title' => 'Theme verwalten', 'theme:name_create_placeholder' => 'Neuer Themename', 'theme:name_label' => 'Name', 'theme:new_directory_name_comment' => 'Stellen Sie einen neuen Verzeichnisnamen für das duplizierte Theme bereit.', 'theme:new_directory_name_label' => 'Theme Verzeichnis', 'theme:not_found_name' => 'Das Theme \':name\' konnte nicht gefunden werden.', 'theme:return' => 'Zur Themeliste zurückkehren', 'theme:save_properties' => 'Eigenschaften speichern', 'theme:saving' => 'Theme speichern...', 'theme:settings_menu' => 'Frontend Theme', 'theme:settings_menu_description' => 'Rufe eine Liste installierter Themes auf und wähle ein aktives aus.', 'theme:theme_label' => 'Theme', 'theme:theme_title' => 'Themes', 'tooltips:preview_website' => 'Vorschau der Webseite', 'updates:check_label' => 'Auf Aktualisierungen überprüfen', 'updates:core_build' => 'Build :build', 'updates:core_build_help' => 'Aktuellster Build ist verfügbar.', 'updates:core_current_build' => 'Aktueller Build', 'updates:core_downloading' => 'Applikationsdaten werden heruntergeladen', 'updates:core_extracting' => 'Applikationsdaten werden entpackt', 'updates:force_label' => 'Aktualisierung erzwingen', 'updates:found:help' => '\\"Aktualisieren\\" wählen um Prozess zu starten ', 'updates:found:label' => 'Neue Aktualisierungen gefunden!', 'updates:menu_label' => 'Aktualisierungen', 'updates:name' => 'Software-Aktualisierung', 'updates:none:help' => 'Es wurden keine Aktualisierungen gefunden.', 'updates:none:label' => 'Keine Aktualisierungen', 'updates:plugin_author' => 'Autor', 'updates:plugin_description' => 'Beschreibung', 'updates:plugin_downloading' => 'Lade Plugin herunter: :name', 'updates:plugin_extracting' => 'Entpacke Plugin: :name', 'updates:plugin_name' => 'Name', 'updates:plugin_version' => 'Version', 'updates:plugin_version_none' => 'Neues Plugin', 'updates:retry_label' => 'Erneut versuchen', 'updates:title' => 'Manage Updates', 'updates:update_completing' => 'Schließe Aktualisierung ab', 'updates:update_failed_label' => 'Aktualisierungsvorgang fehlgeschlagen', 'updates:update_label' => 'Aktualisieren', 'updates:update_loading' => 'Lade verfügbare Aktualisierungen...', 'updates:update_success' => 'Aktualisierungsvorgang erfolgreich.', 'user:allow' => 'Zulassen', 'user:avatar' => 'Avatar', 'user:delete_confirm' => 'Möchten Sie diesen Administrator-Account wirklich löschen?', 'user:deny' => 'Verbieten', 'user:email' => 'E-Mail', 'user:first_name' => 'Vorname', 'user:full_name' => 'Kompletter Name', 'user:group:delete_confirm' => 'Möchten Sie diesen Administratoren-Gruppe wirklich löschen?', 'user:group:list_title' => 'Gruppen verwalten', 'user:group:menu_label' => 'Gruppen', 'user:group:name' => 'Gruppe', 'user:group:name_field' => 'Name', 'user:group:new' => 'Neue Administratoren Gruppe', 'user:group:return' => 'Zurück zur Gruppen Übersicht', 'user:groups' => 'Gruppen', 'user:groups_comment' => 'Geben Sie hier die Gruppenzugehörigkeit an', 'user:inherit' => 'Vererben', 'user:last_name' => 'Nachname', 'user:list_title' => 'Administratoren verwalten', 'user:login' => 'Benutzername', 'user:menu_label' => 'Administratoren', 'user:name' => 'Administrator', 'user:new' => 'Neuer Administrator', 'user:password' => 'Passwort', 'user:password_confirmation' => 'Passwort bestätigen', 'user:preferences:not_authenticated' => 'Zum Speichern oder Anzeigen dieser Einstellungen liegt kein Nutzerkonto vor', 'user:return' => 'Zurück zur Administratoren Übersicht', 'user:send_invite' => 'Einladung per E-Mail versenden', 'user:send_invite_comment' => 'Hier bestätigen, dass eine Einladung per E-Mail erfolgt', 'user:superuser' => 'Super User', 'user:superuser_comment' => 'Bestätigen Sie hier, um dem Nutzer Vollzugriff zu geben', 'validation:accepted' => ':attribute muss bestätigt werden.', 'validation:active_url' => ':attribute ist keine gültige URL.', 'validation:after' => ':attribute muss ein Datum nach :date sein.', 'validation:alpha' => ':attribute darf nur Buchstaben enthalten.', 'validation:alpha_dash' => ':attribute darf nur Buchstaben, Ziffern und Bindestriche enthalten.', 'validation:alpha_num' => ':attribute darf nur Buchstaben und Ziffern enthalten.', 'validation:array' => ':attribute muss ein Array sein.', 'validation:before' => ':attribute muss ein Datum vor :date sein.', 'validation:between:array' => ':attribute-Elementanzahl muss zwischen :min und :max liegen.', 'validation:between:file' => ':attribute muss zwischen :min und :max kilobytes groß sein.', 'validation:between:numeric' => ':attribute muss zwischen :min und :max liegen.', 'validation:between:string' => ':attribute-Zeichenanzahl muss zwischen :min und :max liegen.', 'validation:confirmed' => 'Bestätigung zu :attribute stimmt nicht überein', 'validation:date' => ':attribute ist kein gültiges Datum.', 'validation:date_format' => ':attribute hat kein gültiges Datumsformat :format.', 'validation:different' => ':attribute und :other müssen sich unterscheiden.', 'validation:digits' => 'Das :attribute benötigt :digits Zeichen.', 'validation:digits_between' => ':attribute-Zeichenanzahl muss zwischen :min und :max liegen.', 'validation:email' => 'Format von :attribute ist ungültig.', 'validation:exists' => 'Das ausgewählte Attribut :attribute ist ungültig.', 'validation:image' => ':attribute muss ein Bild sein.', 'validation:in' => 'Das ausgewählte Attribut :attribute ist ungültig.', 'validation:integer' => ':attribute muss eine Ganzzahl (integer) sein.', 'validation:ip' => ':attribute muss eine gültige IP-Adresse sein.', 'validation:max:array' => ':attribute darf nicht mehr als :max Elemente besitzen.', 'validation:max:file' => ':attribute darf nicht größer als :max kilobytes sein.', 'validation:max:numeric' => ':attribute darf nicht größer als :max sein.', 'validation:max:string' => 'Dateiname von :attribute darf nicht mehr als :max Zeichen haben.', 'validation:mimes' => ':attribute muss eine Datei des Typs: :values sein.', 'validation:min:array' => ':attribute darf nicht weniger als :min Elemente besitzen.', 'validation:min:file' => ':attribute darf nicht kleiner als :min kilobytes sein.', 'validation:min:numeric' => ':attribute muss mindestens :min sein.', 'validation:min:string' => 'Dateiname von :attribute darf nicht weniger als :min Zeichen haben.', 'validation:not_in' => 'Das ausgewählte Attribut :attribute ist ungültig.', 'validation:numeric' => ':attribute muss eine Zahl sein.', 'validation:regex' => 'Format von :attribute ist ungültig.', 'validation:required' => ':attribute wird benötigt.', 'validation:required_if' => ':attribute wird benötigt, wenn :other den Wert :value hat.', 'validation:required_with' => ':attribute wird benötigt, wenn :values existiert.', 'validation:required_without' => ':attribute wird benötigt, wenn :values nicht existiert.', 'validation:same' => ':attribute und :other müssen übereinstimmen.', 'validation:size:array' => ':attribute muss :size Elemente beinhalten.', 'validation:size:file' => ':attribute muss :size kilobytes groß sein.', 'validation:size:numeric' => ':attribute muss :size groß sein.', 'validation:size:string' => 'Name von :attribute muss :size Zeichen beinhalten.', 'validation:unique' => ':attribute muss eindeutig sein.', 'validation:url' => 'Format von :attribute ist ungültig.', 'warnings:extension' => 'Die PHP Erweiterung :name ist nicht installiert. Bitte installieren Sie diese Library und aktivieren Sie die Erweiterung.', 'warnings:permissions' => 'Verzeichnis :name oder ein Unterverzeichnis kann nicht von PHP beschrieben werden. Bitte setzen Sie die korrekten Rechte für den Webserver in diesem Verzeichnis.', 'warnings:tips' => 'System Konfiguration Tips', 'warnings:tips_description' => 'Es gibt Probleme, welche Sie beachten müssen, um das System korrekt zu konfigurieren.', 'widget:not_bound' => 'Ein Widget mit dem Klassennamen \':name\' wurde nicht mit dem Controller verbunden', 'widget:not_registered' => 'Ein Widget namens \':name\' wurde nicht registriert', 'zip:extract_failed' => 'Konnte Core-Datei \':file\' nicht entpacken.']);