mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Updated translations
This commit is contained in:
parent
faeca4139d
commit
ae8c9d6afc
|
@ -12,8 +12,8 @@
|
|||
'success' => 'Asset Maintenance created successfully.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Not Completed Yet',
|
||||
'warranty' => 'Warranty',
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'asset' => 'Asset',
|
||||
'bulk_checkout' => 'Checkout Assets to User',
|
||||
'checkin' => 'Checkin Asset',
|
||||
'checkout' => 'Checkout Asset to User',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'Clone Asset',
|
||||
'deployable' => 'Deployable',
|
||||
'deleted' => 'This asset has been deleted. <a href="/hardware/:asset_id/restore">Click here to restore it</a>.',
|
||||
|
|
|
@ -24,6 +24,12 @@ return array(
|
|||
'success' => 'Asset restored successfully.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'File not deleted. Please try again.',
|
||||
'success' => 'File successfully deleted.',
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Expiring Alerts Threshold (in days)',
|
||||
'alert_inv_threshold' => 'Inventory Alert Threshold',
|
||||
'asset_ids' => 'Asset IDs',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Generate auto-incrementing asset IDs',
|
||||
'auto_increment_prefix' => 'Prefix (optional)',
|
||||
'auto_incrementing_help' => 'Enable auto-incrementing asset IDs first to set this',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.',
|
||||
'history_user' => 'History for :name',
|
||||
'info' => 'Info',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'Last Login',
|
||||
'ldap_config_text' => 'LDAP configuration settings can be found Admin > Settings. The (optional) selected location will be set for all imported users.',
|
||||
'software_user' => 'Software Checked out to :name',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Asset Report',
|
||||
'asset_tag' => 'Asset Tag',
|
||||
'assets_available' => 'assets available',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Assets',
|
||||
'avatar_delete' => 'Delete Avatar',
|
||||
'avatar_upload' => 'Upload Avatar',
|
||||
'back' => 'Back',
|
||||
'bad_data' => 'Nothing found. Maybe bad data?',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Bulk Checkout',
|
||||
'cancel' => 'Cancel',
|
||||
'categories' => 'Categories',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'Current',
|
||||
'custom_report' => 'Custom Asset Report',
|
||||
'dashboard' => 'Dashboard',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'Date',
|
||||
'debug_warning' => 'Warning!',
|
||||
'debug_warning_text' => 'This application is running in production mode with debugging enabled. This can expose sensitive data if your application is accessible to the outside world. Disable debug mode by setting the <code>APP_DEBUG</code> value in your <code>.env</code> file to <code>false</code>.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'More Info',
|
||||
'name' => 'Name',
|
||||
'next' => 'Next',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'new!',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'No Results.',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => "The :attribute must be accepted.",
|
||||
"active_url" => "The :attribute is not a valid URL.",
|
||||
"after" => "The :attribute must be a date after :date.",
|
||||
"alpha" => "The :attribute may only contain letters.",
|
||||
"alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
|
||||
"alpha_num" => "The :attribute may only contain letters and numbers.",
|
||||
"before" => "The :attribute must be a date before :date.",
|
||||
"between" => array(
|
||||
"numeric" => "The :attribute must be between :min - :max.",
|
||||
"file" => "The :attribute must be between :min - :max kilobytes.",
|
||||
"string" => "The :attribute must be between :min - :max characters.",
|
||||
),
|
||||
"boolean" => "The :attribute must be true or false.",
|
||||
"confirmed" => "The :attribute confirmation does not match.",
|
||||
"date" => "The :attribute is not a valid date.",
|
||||
"date_format" => "The :attribute does not match the format :format.",
|
||||
"different" => "The :attribute and :other must be different.",
|
||||
"digits" => "The :attribute must be :digits digits.",
|
||||
"digits_between" => "The :attribute must be between :min and :max digits.",
|
||||
"email" => "The :attribute format is invalid.",
|
||||
"exists" => "The selected :attribute is invalid.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => "The :attribute must be an image.",
|
||||
"in" => "The selected :attribute is invalid.",
|
||||
"integer" => "The :attribute must be an integer.",
|
||||
"ip" => "The :attribute must be a valid IP address.",
|
||||
"max" => array(
|
||||
"numeric" => "The :attribute may not be greater than :max.",
|
||||
"file" => "The :attribute may not be greater than :max kilobytes.",
|
||||
"string" => "The :attribute may not be greater than :max characters.",
|
||||
),
|
||||
"mimes" => "The :attribute must be a file of type: :values.",
|
||||
"min" => array(
|
||||
"numeric" => "The :attribute must be at least :min.",
|
||||
"file" => "The :attribute must be at least :min kilobytes.",
|
||||
"string" => "The :attribute must be at least :min characters.",
|
||||
),
|
||||
"not_in" => "The selected :attribute is invalid.",
|
||||
"numeric" => "The :attribute must be a number.",
|
||||
"regex" => "The :attribute format is invalid.",
|
||||
"required" => "The :attribute field is required.",
|
||||
"required_if" => "The :attribute field is required when :other is :value.",
|
||||
"required_with" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "The :attribute field is required when :values is not present.",
|
||||
"same" => "The :attribute and :other must match.",
|
||||
"size" => array(
|
||||
"numeric" => "The :attribute must be :size.",
|
||||
"file" => "The :attribute must be :size kilobytes.",
|
||||
"string" => "The :attribute must be :size characters.",
|
||||
),
|
||||
"unique" => "The :attribute has already been taken.",
|
||||
"url" => "The :attribute format is invalid.",
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'تم إنشاء سند صيانة الأصل بنجاح.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'لم يكتمل بعد',
|
||||
'warranty' => 'الضمان',
|
||||
|
|
|
@ -28,7 +28,7 @@ return array(
|
|||
|
||||
'fieldset' => array(
|
||||
|
||||
'does_not_exist' => 'Fieldset does not exist',
|
||||
'does_not_exist' => 'مجموعة الحقول غير موجودة',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'لم يتم إنشاء مجموعة-الحقول، الرجاء المحاولة مرة اخرى.',
|
||||
|
|
|
@ -2,20 +2,20 @@
|
|||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Department does not exist.',
|
||||
'assoc_users' => 'This department is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this department and try again. ',
|
||||
'does_not_exist' => 'القسم الاداري غير موجود.',
|
||||
'assoc_users' => 'هذا القسم الإداري مرتبط حاليا مع مستخدم واحد على الأقل ولا يمكن حذفه. الرجاء تحديث تفاصيل المستخدمين حيث لا تحتوي هذا القسم وحاول مرة أخرى. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
'success' => 'Department created successfully.'
|
||||
'error' => 'لم يتم إنشاء القسم الإداري، الرجاء المحاولة مرة أخرى.',
|
||||
'success' => 'تم انشاء القسم الاداري بنجاح.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => 'Department was not updated, please try again',
|
||||
'success' => 'Department updated successfully.'
|
||||
'error' => 'لم يتم تحديث القسم الإداري، الرجاء المحاولة مرة أخرى',
|
||||
'success' => 'تم تحديث القسم الاداري بنجاح.'
|
||||
),
|
||||
'delete' => array(
|
||||
'confirm' => 'Are you sure you wish to delete this department?',
|
||||
'error' => 'There was an issue deleting the department. Please try again.',
|
||||
'success' => 'The department was deleted successfully.'
|
||||
'confirm' => 'هل أنت متأكد من رغبتك في حذف هذا القسم؟',
|
||||
'error' => 'حدثت مشكلة اثناء عملية حذف القسم الاداري. الرجاء المحاولة مرة اُخرى.',
|
||||
'success' => 'تم حذف القسم الاداري بنجاح.'
|
||||
)
|
||||
|
||||
);
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => 'Department Name',
|
||||
'manager' => 'Manager',
|
||||
'location' => 'Location',
|
||||
'create' => 'Create Department',
|
||||
'update' => 'Update Department',
|
||||
'id' => 'رقم التعريف',
|
||||
'name' => 'اسم القسم الإداري',
|
||||
'manager' => 'المدير',
|
||||
'location' => 'الموقع',
|
||||
'create' => 'إنشاء قسم اداري',
|
||||
'update' => 'تحديث قسم اداري',
|
||||
);
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
return array(
|
||||
'bulk_delete' => 'تاكيد إجراء حذف متعدد للاُصول',
|
||||
'bulk_delete_help' => 'Review the assets for bulk deletion below. Once deleted, these assets can be restored, but they will no longer be associated with any users they are currently assigned to.',
|
||||
'bulk_delete_warn' => 'You are about to delete :asset_count assets.',
|
||||
'bulk_update' => 'Bulk Update Assets',
|
||||
'bulk_delete_help' => 'الرجاء مراجعة الأصول المعينة للحذف بالجملة أدناه. بمجرد الحذف، يمكن استعادة هذه الأصول، لكنها لن تكون مقترنة مع أي من المستخدمين اللذين تم تعيين الاصول لهم من قبل.',
|
||||
'bulk_delete_warn' => 'أنت على وشك حذف اصول asset_count: .',
|
||||
'bulk_update' => 'تحديث الاصول بالجملة',
|
||||
'bulk_update_help' => 'This form allows you to update multiple assets at once. Only fill in the fields you need to change. Any fields left blank will remain unchanged. ',
|
||||
'bulk_update_warn' => 'You are about to edit the properties of :asset_count assets.',
|
||||
'checkedout_to' => 'Checked Out To',
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'asset' => 'أصل',
|
||||
'bulk_checkout' => 'Checkout Assets to User',
|
||||
'checkin' => 'Checkin Asset',
|
||||
'checkout' => 'Checkout Asset to User',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'استنساخ الأصل',
|
||||
'deployable' => 'قابل للنشر',
|
||||
'deleted' => 'This asset has been deleted. <a href="/hardware/:asset_id/restore">Click here to restore it</a>.',
|
||||
|
|
|
@ -24,6 +24,12 @@ return array(
|
|||
'success' => 'Asset restored successfully.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'لم يتم حذف الملف. الرجاء المحاولة مرة اخرى.',
|
||||
'success' => 'تم حذف الملف بنجاح.',
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Expiring Alerts Threshold (in days)',
|
||||
'alert_inv_threshold' => 'Inventory Alert Threshold',
|
||||
'asset_ids' => 'Asset IDs',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Generate auto-incrementing asset IDs',
|
||||
'auto_increment_prefix' => 'البادئة (اختياري)',
|
||||
'auto_incrementing_help' => 'Enable auto-incrementing asset IDs first to set this',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'انواع صيغ الملفات المسوح بها هي png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.',
|
||||
'history_user' => 'الأرشيف الخاص بـ :name',
|
||||
'info' => 'Info',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'آخر دخول للمستخدم',
|
||||
'ldap_config_text' => 'LDAP configuration settings can be found Admin > Settings. The (optional) selected location will be set for all imported users.',
|
||||
'software_user' => 'البرامج المسجلة لـ :name',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Asset Report',
|
||||
'asset_tag' => 'وسم الأصول',
|
||||
'assets_available' => 'الأصول المتاحة',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'الأصول',
|
||||
'avatar_delete' => 'حذف الصورة الرمزية',
|
||||
'avatar_upload' => 'رفع صورة رمزية',
|
||||
'back' => 'الرجوع للخلف',
|
||||
'bad_data' => 'Nothing found. Maybe bad data?',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Bulk Checkout',
|
||||
'cancel' => 'إلغاء',
|
||||
'categories' => 'التصنيفات',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'الحالي',
|
||||
'custom_report' => 'Custom Asset Report',
|
||||
'dashboard' => 'Dashboard',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'التاريخ',
|
||||
'debug_warning' => 'Warning!',
|
||||
'debug_warning_text' => 'This application is running in production mode with debugging enabled. This can expose sensitive data if your application is accessible to the outside world. Disable debug mode by setting the <code>APP_DEBUG</code> value in your <code>.env</code> file to <code>false</code>.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'المزيد من المعلومات',
|
||||
'name' => 'الإسم',
|
||||
'next' => 'Next',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'new!',
|
||||
'no_depreciation' => 'لا يوجد إستهلاك',
|
||||
'no_results' => 'لا يوجد نتائج.',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => ":attribute يجب ان يكون مقبولا.",
|
||||
"active_url" => ":attribute موقع غير صحيح.",
|
||||
"after" => ":attribute يجب ان يكون تاريخ قبل :date.",
|
||||
"alpha" => "The :attribute may only contain letters.",
|
||||
"alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
|
||||
"alpha_num" => "The :attribute may only contain letters and numbers.",
|
||||
"before" => ":attribute يجب ان يكون تاريخ قبل :date.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute يجب ان يكون بين :min - :max.",
|
||||
"file" => "The :attribute must be between :min - :max kilobytes.",
|
||||
"string" => "The :attribute must be between :min - :max characters.",
|
||||
),
|
||||
"boolean" => "The :attribute must be true or false.",
|
||||
"confirmed" => "The :attribute confirmation does not match.",
|
||||
"date" => ":attribute تاريخ غير صحيح.",
|
||||
"date_format" => "The :attribute does not match the format :format.",
|
||||
"different" => "The :attribute and :other must be different.",
|
||||
"digits" => "The :attribute must be :digits digits.",
|
||||
"digits_between" => "The :attribute must be between :min and :max digits.",
|
||||
"email" => "The :attribute format is invalid.",
|
||||
"exists" => "The selected :attribute is invalid.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => "The :attribute must be an image.",
|
||||
"in" => "The selected :attribute is invalid.",
|
||||
"integer" => "The :attribute must be an integer.",
|
||||
"ip" => "The :attribute must be a valid IP address.",
|
||||
"max" => array(
|
||||
"numeric" => "The :attribute may not be greater than :max.",
|
||||
"file" => "The :attribute may not be greater than :max kilobytes.",
|
||||
"string" => "The :attribute may not be greater than :max characters.",
|
||||
),
|
||||
"mimes" => "The :attribute must be a file of type: :values.",
|
||||
"min" => array(
|
||||
"numeric" => "The :attribute must be at least :min.",
|
||||
"file" => "The :attribute must be at least :min kilobytes.",
|
||||
"string" => "The :attribute must be at least :min characters.",
|
||||
),
|
||||
"not_in" => "The selected :attribute is invalid.",
|
||||
"numeric" => "The :attribute must be a number.",
|
||||
"regex" => "The :attribute format is invalid.",
|
||||
"required" => "The :attribute field is required.",
|
||||
"required_if" => "The :attribute field is required when :other is :value.",
|
||||
"required_with" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "The :attribute field is required when :values is not present.",
|
||||
"same" => "The :attribute and :other must match.",
|
||||
"size" => array(
|
||||
"numeric" => "The :attribute must be :size.",
|
||||
"file" => "The :attribute must be :size kilobytes.",
|
||||
"string" => "The :attribute must be :size characters.",
|
||||
),
|
||||
"unique" => "The :attribute has already been taken.",
|
||||
"url" => "The :attribute format is invalid.",
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
'accepted' => ':attribute يجب ان يكون مقبولا.',
|
||||
'active_url' => ':attribute موقع غير صحيح.',
|
||||
'after' => ':attribute يجب ان يكون تاريخ قبل :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => ':attribute يجب ان يكون تاريخ قبل :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute يجب ان يكون بين :min - :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => ':attribute تاريخ غير صحيح.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'Поддръжката на актив създадена успешно.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Все още неприключила',
|
||||
'warranty' => 'Гаранция',
|
||||
|
|
|
@ -2,10 +2,10 @@
|
|||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'id' => 'ИД№',
|
||||
'name' => 'Department Name',
|
||||
'manager' => 'Manager',
|
||||
'location' => 'Location',
|
||||
'manager' => 'Ръководител',
|
||||
'location' => 'Местоположение',
|
||||
'create' => 'Create Department',
|
||||
'update' => 'Update Department',
|
||||
);
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'asset' => 'Актив',
|
||||
'bulk_checkout' => 'Отписване на активи към потребител',
|
||||
'checkin' => 'Връщане на актив',
|
||||
'checkout' => 'Изписване на актив към потребител',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'Копиране на актив',
|
||||
'deployable' => 'Може да бъде предоставен',
|
||||
'deleted' => 'Активът беше изтрит. <a href="/hardware/:asset_id/restore">Възстановяване</a>.',
|
||||
|
|
|
@ -23,6 +23,12 @@ return array(
|
|||
'success' => 'Активът възстановен успешно.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'Файлът не беше изтрит. Моля опитайте отново.',
|
||||
'success' => 'Файлът изтрит успешно.',
|
||||
|
|
|
@ -29,8 +29,8 @@ return array(
|
|||
),
|
||||
|
||||
'bulkedit' => array(
|
||||
'error' => 'No fields were changed, so nothing was updated.',
|
||||
'success' => 'Models updated.'
|
||||
'error' => 'Няма полета, който да са се променили, така че нищо не е осъвременено.',
|
||||
'success' => 'Моделите са осъвременени.'
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Изтичаш праг на известия (в дни)',
|
||||
'alert_inv_threshold' => 'Праг на известия за запаси',
|
||||
'asset_ids' => 'ID на активи',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Автоматично генериране на инвентарни номера на активите',
|
||||
'auto_increment_prefix' => 'Префикс (незадължително)',
|
||||
'auto_incrementing_help' => 'Първо включете автоматично генериране на инвентарни номера, за да включите тази опция.',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'Позволените типове файлове са png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, и rar.',
|
||||
'history_user' => 'История за :name',
|
||||
'info' => 'Информация',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'Последен достъп до системата',
|
||||
'ldap_config_text' => 'LDAP конфигурационните настройки могат да бъдат намерени в Admin > Settings. Избраното (по изобр) местоположение ще бъде настроено за всички въведени потребители.',
|
||||
'software_user' => 'Софтуерни продукти, изписани на :name',
|
||||
|
|
|
@ -19,7 +19,7 @@ return array(
|
|||
'location' => 'Местоположение',
|
||||
'lock_passwords' => 'Настройките за вход не могат да бъдат променяни в текущата инсталация.',
|
||||
'manager' => 'Ръководител',
|
||||
'managed_locations' => 'Managed Locations',
|
||||
'managed_locations' => 'Управлявани места',
|
||||
'name' => 'Име',
|
||||
'notes' => 'Бележки',
|
||||
'password_confirm' => 'Потвърждение на паролата',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Справка за активите',
|
||||
'asset_tag' => 'Инвентарен номер',
|
||||
'assets_available' => 'налични активи',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Активи',
|
||||
'avatar_delete' => 'Изтриване на аватар',
|
||||
'avatar_upload' => 'Качване на аватар',
|
||||
'back' => 'Назад',
|
||||
'bad_data' => 'Няма резултати.',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Общо отписване',
|
||||
'cancel' => 'Отказ',
|
||||
'categories' => 'Категории',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'Текущи',
|
||||
'custom_report' => 'Потребителски справки за активи',
|
||||
'dashboard' => 'Табло',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'Дата',
|
||||
'debug_warning' => 'Предупреждение!',
|
||||
'debug_warning_text' => 'Това приложение се изпълнява в режим на производство с разрешено отстраняване на грешки. Това може да изложи чувствителни данни, ако приложението ви е достъпно за външния свят. Забранете режим отстраняване на грешки чрез задаване на стойността <code>APP_DEBUF</code> <code>.env</code> във файла <code>false</code>.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'Повече информация',
|
||||
'name' => 'Име',
|
||||
'next' => 'Следващ',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'new!',
|
||||
'no_depreciation' => 'Без амортизация',
|
||||
'no_results' => 'Няма резултат.',
|
||||
|
@ -152,7 +160,7 @@
|
|||
'select_model' => 'Избор на модел',
|
||||
'select_supplier' => 'Избор на доставчик',
|
||||
'select_user' => 'Избор на потребител',
|
||||
'select_date' => 'Select Date (YYYY-MM-DD)',
|
||||
'select_date' => 'Изберете дата (ГГГГ-ММ-ДД)',
|
||||
'select_statuslabel' => 'Избор на статус',
|
||||
'select_company' => 'Изберете компания',
|
||||
'select_asset' => 'Изберете актив',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => ":attribute трябва да бъде потвърден.",
|
||||
"active_url" => ":attribute не е валиден URL адрес.",
|
||||
"after" => ":attribute трябва да бъде дата след :date.",
|
||||
"alpha" => ":attribute може да съдържа единствено букви.",
|
||||
"alpha_dash" => ":attribute може да съдържа единствено букви, числа и тире.",
|
||||
"alpha_num" => ":attribute може да съдържа единствено букви и числа.",
|
||||
"before" => ":attribute трябва да бъде дата преди :date.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute трябва да бъде между :min и :max.",
|
||||
"file" => ":attribute трябва да бъде с големина между :min и :max KB.",
|
||||
"string" => ":attribute трябва да бъде с дължина между :min и :max символа.",
|
||||
),
|
||||
"boolean" => ":attribute трябва да е верен или грешен.",
|
||||
"confirmed" => ":attribute потвърждение не съвпада.",
|
||||
"date" => ":attribute не е валидна дата.",
|
||||
"date_format" => ":attribute не съвпада с формата :format.",
|
||||
"different" => ":attribute и :other трябва да се различават.",
|
||||
"digits" => ":attribute трябва да бъде с дължина :digits цифри.",
|
||||
"digits_between" => ":attribute трябва да бъде с дължина между :min и :max цифри.",
|
||||
"email" => ":attribute е с невалиден формат.",
|
||||
"exists" => "Избраният :attribute е невалиден.",
|
||||
"email_array" => "Един или повече email адреси е невалиден.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => ":attribute трябва да бъде изображение.",
|
||||
"in" => "Избраният :attribute е невалиден.",
|
||||
"integer" => ":attribute трябва да бъде целочислен.",
|
||||
"ip" => ":attribute трябва да бъде валиден IP адрес.",
|
||||
"max" => array(
|
||||
"numeric" => ":attribute не може да бъде по-дълъг от :max.",
|
||||
"file" => ":attribute не може да бъде по-голям от :max KB.",
|
||||
"string" => ":attribute не може да бъде по-дълъг от :max символа.",
|
||||
),
|
||||
"mimes" => ":attribute трябва да бъде файл с един от следните типове: :values.",
|
||||
"min" => array(
|
||||
"numeric" => ":attribute трябва да бъде минимум :min.",
|
||||
"file" => ":attribute трябва да бъде с големина минимум :min KB.",
|
||||
"string" => ":attribute трябва да бъде минимум :min символа.",
|
||||
),
|
||||
"not_in" => "Избраният :attribute е невалиден.",
|
||||
"numeric" => ":attribute трябва да бъде число.",
|
||||
"regex" => "Форматът на :attribute е невалиден.",
|
||||
"required" => "Полето :attribute е задължително.",
|
||||
"required_if" => "Полето :attribute е задължително, когато :other е :value.",
|
||||
"required_with" => ":attribute е задължителен, когато са избрани :values.",
|
||||
"required_without" => ":attribute е задължителен, когато не са избрани :values.",
|
||||
"same" => ":attribute и :other трябва да съвпадат.",
|
||||
"size" => array(
|
||||
"numeric" => ":attribute трябва да бъде с дължина :size.",
|
||||
"file" => ":attribute трябва да бъде с големина :size KB.",
|
||||
"string" => ":attribute трябва да бъде с дължина :size символа.",
|
||||
),
|
||||
"unique" => ":attribute вече е вписан.",
|
||||
"url" => "Форматът на :attribute е невалиден.",
|
||||
"statuslabel_type" => "Трябва да изберете валиден тип етикет за статус",
|
||||
"unique_undeleted" => ":attribute трябва да е единствен по рода си.",
|
||||
'accepted' => ':attribute трябва да бъде потвърден.',
|
||||
'active_url' => ':attribute не е валиден URL адрес.',
|
||||
'after' => ':attribute трябва да бъде дата след :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => ':attribute може да съдържа единствено букви.',
|
||||
'alpha_dash' => ':attribute може да съдържа единствено букви, числа и тире.',
|
||||
'alpha_num' => ':attribute може да съдържа единствено букви и числа.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => ':attribute трябва да бъде дата преди :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute трябва да бъде между :min и :max.',
|
||||
'file' => ':attribute трябва да бъде с големина между :min и :max KB.',
|
||||
'string' => ':attribute трябва да бъде с дължина между :min и :max символа.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => ':attribute трябва да е верен или грешен.',
|
||||
'confirmed' => ':attribute потвърждение не съвпада.',
|
||||
'date' => ':attribute не е валидна дата.',
|
||||
'date_format' => ':attribute не съвпада с формата :format.',
|
||||
'different' => ':attribute и :other трябва да се различават.',
|
||||
'digits' => ':attribute трябва да бъде с дължина :digits цифри.',
|
||||
'digits_between' => ':attribute трябва да бъде с дължина между :min и :max цифри.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => ':attribute е с невалиден формат.',
|
||||
'exists' => 'Избраният :attribute е невалиден.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => ':attribute трябва да бъде изображение.',
|
||||
'in' => 'Избраният :attribute е невалиден.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => ':attribute трябва да бъде целочислен.',
|
||||
'ip' => ':attribute трябва да бъде валиден IP адрес.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute не може да бъде по-дълъг от :max.',
|
||||
'file' => ':attribute не може да бъде по-голям от :max KB.',
|
||||
'string' => ':attribute не може да бъде по-дълъг от :max символа.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => ':attribute трябва да бъде файл с един от следните типове: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute трябва да бъде минимум :min.',
|
||||
'file' => ':attribute трябва да бъде с големина минимум :min KB.',
|
||||
'string' => ':attribute трябва да бъде минимум :min символа.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'Избраният :attribute е невалиден.',
|
||||
'numeric' => ':attribute трябва да бъде число.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'Форматът на :attribute е невалиден.',
|
||||
'required' => 'Полето :attribute е задължително.',
|
||||
'required_if' => 'Полето :attribute е задължително, когато :other е :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => ':attribute е задължителен, когато са избрани :values.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => ':attribute е задължителен, когато не са избрани :values.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => ':attribute и :other трябва да съвпадат.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute трябва да бъде с дължина :size.',
|
||||
'file' => ':attribute трябва да бъде с големина :size KB.',
|
||||
'string' => ':attribute трябва да бъде с дължина :size символа.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => ':attribute вече е вписан.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'Форматът на :attribute е невалиден.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => ":attribute съдържа символи, които са забранени.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'Údržba zařízení byla v pořádku vytvořena.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Prozatím nedokončeno',
|
||||
'warranty' => 'Záruka',
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'asset' => 'Majetek',
|
||||
'bulk_checkout' => 'Předat majetek uživateli',
|
||||
'checkin' => 'Převzít majetek',
|
||||
'checkout' => 'Předat majetek uživateli',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'Klonovat majetek',
|
||||
'deployable' => 'Připraveno k nasazení',
|
||||
'deleted' => 'Toto zařízení bylo odstraněno. <a href="/hardware/:asset_id/restore">Klepněte zde pro jeho obnovení</a>.',
|
||||
|
|
|
@ -24,6 +24,12 @@ return array(
|
|||
'success' => 'Majetek byl v pořádku obnoven.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'Soubor se nesmazal, prosím zkuste to znovu.',
|
||||
'success' => 'Soubor byl úspěšně smazán.',
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Mez upozornění na vypršení (ve dnech)',
|
||||
'alert_inv_threshold' => 'Mez upozornění skladu',
|
||||
'asset_ids' => 'ID majetku',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Vygenerovat zvyšující se ID majetku',
|
||||
'auto_increment_prefix' => 'Předpona (volitnelná)',
|
||||
'auto_incrementing_help' => 'Nastavte nejdříve automaticky se zvyšující ID majetku pro nastavení tohoto',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'Povolené přílohy: png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.',
|
||||
'history_user' => 'Historie:',
|
||||
'info' => 'Informace',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'Poslední přihlášení',
|
||||
'ldap_config_text' => 'Nastavení konfigurace LDAP lze nalézt v menu Správce> Nastavení. Vybrané (volitelně) místo bude nastaven pro všechny importované uživatele.',
|
||||
'software_user' => 'Software vydaný pro :name',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Report majetku',
|
||||
'asset_tag' => 'Označení majetku',
|
||||
'assets_available' => 'dostupných zařízení',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Zařízení',
|
||||
'avatar_delete' => 'Smazat avatara',
|
||||
'avatar_upload' => 'Nahrát avatara',
|
||||
'back' => 'Zpět',
|
||||
'bad_data' => 'Nic nebylo nalezeno. Možná zadáváte špatná data?',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Hromadný výdej',
|
||||
'cancel' => 'Storno',
|
||||
'categories' => 'Kategorie',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'Aktuální',
|
||||
'custom_report' => 'Vlastní report majetku',
|
||||
'dashboard' => 'Nástěnka',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'Datum',
|
||||
'debug_warning' => 'Varování!',
|
||||
'debug_warning_text' => 'Tato aplikace běží ve výrobním režimu s povoleným laděním. To znamená že citlivá data mohou být přístupná vnějšímu světu. Deaktivujte režim ladění nastavením hodnoty <code>APP_DEBUG</code> v souboru <code>.env</code> na <code>false</code>.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'Další informace',
|
||||
'name' => 'Název',
|
||||
'next' => 'Další',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'nový!',
|
||||
'no_depreciation' => 'Žádná amortizace',
|
||||
'no_results' => 'Žádné výsledky.',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => "Je potřeba potvrdit :attribute.",
|
||||
"active_url" => ":attribute není platnou URL.",
|
||||
"after" => ":attribute nemůže být dříve než :date.",
|
||||
"alpha" => ":attribute může obsahovat pouze písmena.",
|
||||
"alpha_dash" => ":attribute může obsahovat pouze písmena, čísla, a pomlčky.",
|
||||
"alpha_num" => ":attribute může obsahovat pouze písmena čísla.",
|
||||
"before" => ":attribute nemůže být později než :date.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute musí být mezi :min - :max.",
|
||||
"file" => ":attribute musí být mezi :min - :max kilobajtů.",
|
||||
"string" => ":attribute smí obsahovat pouze :min - :max znaků.",
|
||||
),
|
||||
"boolean" => ":attribute musí být true nebo false.",
|
||||
"confirmed" => "Potvrzení :attribute se neshoduje.",
|
||||
"date" => ":attribute není platným datem.",
|
||||
"date_format" => "Atribut :attribute nesouhlasí s formátem :format.",
|
||||
"different" => ":attribute a :other se musí lišit.",
|
||||
"digits" => ":attribute musí být :digits číslo.",
|
||||
"digits_between" => ":attribute musí být mezi hodnotami :min a :max.",
|
||||
"email" => "Formát :attribute je neplatný.",
|
||||
"exists" => "Zvolený :attribute je neplatný.",
|
||||
"email_array" => "Jedna nebo více e-mailových adres je neplatná.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => ":attribute musí být obrázek.",
|
||||
"in" => "Zvolený :attribute je neplatný.",
|
||||
"integer" => ":attribute musí být celočíselný.",
|
||||
"ip" => ":attribute musí být platná IP adresa.",
|
||||
"max" => array(
|
||||
"numeric" => ":attribute nesmí být větší než :max.",
|
||||
"file" => ":attribute nesmí být větší než :max kilobajtů.",
|
||||
"string" => ":attribute nesmí být větší než :max znaků.",
|
||||
),
|
||||
"mimes" => ":attribute musí být soubor typu: :values.",
|
||||
"min" => array(
|
||||
"numeric" => ":attribute musí být minimálne :min.",
|
||||
"file" => ":attribute musí být minimálně :min kilobajtů.",
|
||||
"string" => ":attribute musí mít minimálně :min znaků.",
|
||||
),
|
||||
"not_in" => "Zvolený :attribute je neplatný.",
|
||||
"numeric" => ":attribute musí být číslo.",
|
||||
"regex" => "Formát :attribute je neplatný.",
|
||||
"required" => "Pole :attribute je požadováno.",
|
||||
"required_if" => "Položka :attribute je vyžadována, když :other je :value.",
|
||||
"required_with" => "Hodnota :attribute je vyžadována, když je přítomno :values.",
|
||||
"required_without" => "Hodnota :attribute je vyžadována, když není přítomno :values.",
|
||||
"same" => ":attribute a :other se musí shodovat.",
|
||||
"size" => array(
|
||||
"numeric" => ":attribute musí být :size.",
|
||||
"file" => ":attribute musí být :size kilobajtů.",
|
||||
"string" => ":attribute musí mít :size znaků.",
|
||||
),
|
||||
"unique" => ":attribute byl již vybrán.",
|
||||
"url" => "Formát :attribute je neplatný.",
|
||||
"statuslabel_type" => "Musíte vybrat platný status typu štítku",
|
||||
"unique_undeleted" => ":attribute musí být jedinečný.",
|
||||
'accepted' => 'Je potřeba potvrdit :attribute.',
|
||||
'active_url' => ':attribute není platnou URL.',
|
||||
'after' => ':attribute nemůže být dříve než :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => ':attribute může obsahovat pouze písmena.',
|
||||
'alpha_dash' => ':attribute může obsahovat pouze písmena, čísla, a pomlčky.',
|
||||
'alpha_num' => ':attribute může obsahovat pouze písmena čísla.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => ':attribute nemůže být později než :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute musí být mezi :min - :max.',
|
||||
'file' => ':attribute musí být mezi :min - :max kilobajtů.',
|
||||
'string' => ':attribute smí obsahovat pouze :min - :max znaků.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => ':attribute musí být true nebo false.',
|
||||
'confirmed' => 'Potvrzení :attribute se neshoduje.',
|
||||
'date' => ':attribute není platným datem.',
|
||||
'date_format' => 'Atribut :attribute nesouhlasí s formátem :format.',
|
||||
'different' => ':attribute a :other se musí lišit.',
|
||||
'digits' => ':attribute musí být :digits číslo.',
|
||||
'digits_between' => ':attribute musí být mezi hodnotami :min a :max.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'Formát :attribute je neplatný.',
|
||||
'exists' => 'Zvolený :attribute je neplatný.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => ':attribute musí být obrázek.',
|
||||
'in' => 'Zvolený :attribute je neplatný.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => ':attribute musí být celočíselný.',
|
||||
'ip' => ':attribute musí být platná IP adresa.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute nesmí být větší než :max.',
|
||||
'file' => ':attribute nesmí být větší než :max kilobajtů.',
|
||||
'string' => ':attribute nesmí být větší než :max znaků.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => ':attribute musí být soubor typu: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute musí být minimálne :min.',
|
||||
'file' => ':attribute musí být minimálně :min kilobajtů.',
|
||||
'string' => ':attribute musí mít minimálně :min znaků.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'Zvolený :attribute je neplatný.',
|
||||
'numeric' => ':attribute musí být číslo.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'Formát :attribute je neplatný.',
|
||||
'required' => 'Pole :attribute je požadováno.',
|
||||
'required_if' => 'Položka :attribute je vyžadována, když :other je :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'Hodnota :attribute je vyžadována, když je přítomno :values.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => 'Hodnota :attribute je vyžadována, když není přítomno :values.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => ':attribute a :other se musí shodovat.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute musí být :size.',
|
||||
'file' => ':attribute musí být :size kilobajtů.',
|
||||
'string' => ':attribute musí mít :size znaků.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => ':attribute byl již vybrán.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'Formát :attribute je neplatný.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => "Pole :attribute obsahuje nepovolené znaky.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'Aktivets vedligeholdelse blev oprettet med succes.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Ikke afsluttet endnu',
|
||||
'warranty' => 'Garanti',
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'asset' => 'Asset',
|
||||
'bulk_checkout' => 'Checkout Assets to User',
|
||||
'checkin' => 'Checkin Asset',
|
||||
'checkout' => 'Checkout Asset to User',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'Clone Asset',
|
||||
'deployable' => 'Deployable',
|
||||
'deleted' => 'This asset has been deleted. <a href="/hardware/:asset_id/restore">Click here to restore it</a>.',
|
||||
|
|
|
@ -24,6 +24,12 @@ return array(
|
|||
'success' => 'Asset restored successfully.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'File not deleted. Please try again.',
|
||||
'success' => 'File successfully deleted.',
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Expiring Alerts Threshold (in days)',
|
||||
'alert_inv_threshold' => 'Inventory Alert Threshold',
|
||||
'asset_ids' => 'Asset IDs',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Generate auto-incrementing asset IDs',
|
||||
'auto_increment_prefix' => 'Prefix (optional)',
|
||||
'auto_incrementing_help' => 'Enable auto-incrementing asset IDs first to set this',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.',
|
||||
'history_user' => 'History for :name',
|
||||
'info' => 'Info',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'Last Login',
|
||||
'ldap_config_text' => 'LDAP configuration settings can be found Admin > Settings. The (optional) selected location will be set for all imported users.',
|
||||
'software_user' => 'Software Checked out to :name',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Aktiv Rapport',
|
||||
'asset_tag' => 'Aktiv Mærkat',
|
||||
'assets_available' => 'aktiver tilgængelige',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Aktiver',
|
||||
'avatar_delete' => 'Slet avatar',
|
||||
'avatar_upload' => 'Upload Avatar',
|
||||
'back' => 'Tilbage',
|
||||
'bad_data' => 'Intet fundet. Måske dårlig data?',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Masseudtjekning',
|
||||
'cancel' => 'Annuller',
|
||||
'categories' => 'Kategorier',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'Aktuelle',
|
||||
'custom_report' => 'Tilpasset Aktiv Rapport',
|
||||
'dashboard' => 'Oversigtspanel',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'Dato',
|
||||
'debug_warning' => 'Warning!',
|
||||
'debug_warning_text' => 'This application is running in production mode with debugging enabled. This can expose sensitive data if your application is accessible to the outside world. Disable debug mode by setting the <code>APP_DEBUG</code> value in your <code>.env</code> file to <code>false</code>.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'Mere Info',
|
||||
'name' => 'Navn',
|
||||
'next' => 'Næste',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'ny!',
|
||||
'no_depreciation' => 'Ingen Afskrivning',
|
||||
'no_results' => 'Ingen Resultater.',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => ":attribute skal være accepteret.",
|
||||
"active_url" => ":attribute er ikke en gyldig URL.",
|
||||
"after" => ":attribute skal være en dato efter :date.",
|
||||
"alpha" => ":attribute må kun indeholde bogstaver.",
|
||||
"alpha_dash" => ":attribute må kun indeholde bogstaver, tal eller bindestreger.",
|
||||
"alpha_num" => ":attribute må kun indeholde bogstaver eller tal.",
|
||||
"before" => ":attribute skal være en dato før :date.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute skal være imellem :min - :max.",
|
||||
"file" => ":attribute skal være imellem :min - :max kilobytes.",
|
||||
"string" => ":attribute skal være imellem :min - :max tegn.",
|
||||
),
|
||||
"boolean" => "The :attribute must be true or false.",
|
||||
"confirmed" => "The :attribute confirmation does not match.",
|
||||
"date" => ":attribute er ikke en gyldig dato.",
|
||||
"date_format" => ":attribute svarer ikke til formatet :format.",
|
||||
"different" => ":attribute og :other skal være forskellige.",
|
||||
"digits" => ":attribute skal være :digits cifre.",
|
||||
"digits_between" => ":attribute skal være imellem :min og :max cifre.",
|
||||
"email" => ":attribute formatet er ugylidgt.",
|
||||
"exists" => "Den valgte :attribute er ugyldig.",
|
||||
"email_array" => "En eller flere email-adresser er ugyldige.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => ":attribute skal være et billede.",
|
||||
"in" => "Det valgte :attribute er ugyldigt.",
|
||||
"integer" => ":attribute skal være et heltal.",
|
||||
"ip" => ":attribute skal være en gyldig IP adresse.",
|
||||
"max" => array(
|
||||
"numeric" => ":attribute må ikke overstige :max.",
|
||||
"file" => ":attribute må ikke overstige :max. kilobytes.",
|
||||
"string" => ":attribute må ikke overstige :max. tegn.",
|
||||
),
|
||||
"mimes" => ":attribute skal være en fil af typen: :values.",
|
||||
"min" => array(
|
||||
"numeric" => ":attribute skal mindst være :min.",
|
||||
"file" => ":attribute skal mindst være :min kilobytes.",
|
||||
"string" => ":attribute skal mindst være :min tegn.",
|
||||
),
|
||||
"not_in" => "Den valgte :attribute er ugyldig.",
|
||||
"numeric" => ":attribute skal være et tal.",
|
||||
"regex" => ":attribute formatet er ugyldigt.",
|
||||
"required" => ":attribute feltet er krævet.",
|
||||
"required_if" => ":attribute feltet er krævet når :other er :value.",
|
||||
"required_with" => ":attribute er krævet når :values forekommer.",
|
||||
"required_without" => ":attribute er krævet når :values ikke forekommer.",
|
||||
"same" => ":attribute og :other skal være ens.",
|
||||
"size" => array(
|
||||
"numeric" => ":attribute skal være :size.",
|
||||
"file" => ":attribute skal være :size kilobytes.",
|
||||
"string" => ":attribute skal være :size tegn.",
|
||||
),
|
||||
"unique" => ":attribute er allerede taget.",
|
||||
"url" => ":attribute formatet er ugyldigt.",
|
||||
"statuslabel_type" => "Du skal vælge en gyldig statusmærke type",
|
||||
"unique_undeleted" => ":attribute skal være unik.",
|
||||
'accepted' => ':attribute skal være accepteret.',
|
||||
'active_url' => ':attribute er ikke en gyldig URL.',
|
||||
'after' => ':attribute skal være en dato efter :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => ':attribute må kun indeholde bogstaver.',
|
||||
'alpha_dash' => ':attribute må kun indeholde bogstaver, tal eller bindestreger.',
|
||||
'alpha_num' => ':attribute må kun indeholde bogstaver eller tal.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => ':attribute skal være en dato før :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute skal være imellem :min - :max.',
|
||||
'file' => ':attribute skal være imellem :min - :max kilobytes.',
|
||||
'string' => ':attribute skal være imellem :min - :max tegn.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => ':attribute er ikke en gyldig dato.',
|
||||
'date_format' => ':attribute svarer ikke til formatet :format.',
|
||||
'different' => ':attribute og :other skal være forskellige.',
|
||||
'digits' => ':attribute skal være :digits cifre.',
|
||||
'digits_between' => ':attribute skal være imellem :min og :max cifre.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => ':attribute formatet er ugylidgt.',
|
||||
'exists' => 'Den valgte :attribute er ugyldig.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => ':attribute skal være et billede.',
|
||||
'in' => 'Det valgte :attribute er ugyldigt.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => ':attribute skal være et heltal.',
|
||||
'ip' => ':attribute skal være en gyldig IP adresse.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute må ikke overstige :max.',
|
||||
'file' => ':attribute må ikke overstige :max. kilobytes.',
|
||||
'string' => ':attribute må ikke overstige :max. tegn.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => ':attribute skal være en fil af typen: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute skal mindst være :min.',
|
||||
'file' => ':attribute skal mindst være :min kilobytes.',
|
||||
'string' => ':attribute skal mindst være :min tegn.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'Den valgte :attribute er ugyldig.',
|
||||
'numeric' => ':attribute skal være et tal.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => ':attribute formatet er ugyldigt.',
|
||||
'required' => ':attribute feltet er krævet.',
|
||||
'required_if' => ':attribute feltet er krævet når :other er :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => ':attribute er krævet når :values forekommer.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => ':attribute er krævet når :values ikke forekommer.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => ':attribute og :other skal være ens.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute skal være :size.',
|
||||
'file' => ':attribute skal være :size kilobytes.',
|
||||
'string' => ':attribute skal være :size tegn.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => ':attribute er allerede taget.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => ':attribute formatet er ugyldigt.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => ":attribute feltet indeholder en karakter der ikke er tilladt.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'Wartungsvertrag erfolgreich erstellt.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Wartungsvertrag noch nicht komplett ausgefüllt',
|
||||
'warranty' => 'Garantie',
|
||||
|
|
|
@ -28,7 +28,7 @@ return array(
|
|||
|
||||
'fieldset' => array(
|
||||
|
||||
'does_not_exist' => 'Fieldset does not exist',
|
||||
'does_not_exist' => 'Feldsatz existiert nicht',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'Feldsatz wurde nicht erstellt. Bitte erneut versuchen.',
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'asset' => 'Asset',
|
||||
'bulk_checkout' => 'Assets an Benutzer herausgeben',
|
||||
'checkin' => 'Asset zurücknehmen',
|
||||
'checkout' => 'Asset an Benutzer herausgeben',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'Asset duplizieren',
|
||||
'deployable' => 'Einsetzbar',
|
||||
'deleted' => 'Dieses Asset wurde gelöscht. <a href="/hardware/:asset_id/restore">Zur Wiederherstellung hier klicken</a>.',
|
||||
|
|
|
@ -24,6 +24,12 @@ return array(
|
|||
'success' => 'Asset erfolgreich wiederhergestellt.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'Datei wurde nicht gelöscht. Bitte noch einmal Probieren.',
|
||||
'success' => 'Datei erfolgreich gelöscht.',
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Ablauf Alarmschwelle (in Tagen)',
|
||||
'alert_inv_threshold' => 'Inventar Alarmschwelle',
|
||||
'asset_ids' => 'Asset IDs',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Erzeugen von fortlaufenden Asset IDs',
|
||||
'auto_increment_prefix' => 'Präfix (optional)',
|
||||
'auto_incrementing_help' => 'Aktiviere zuerst fortlaufende Asset IDs um dies zu setzen',
|
||||
|
@ -63,8 +67,8 @@ return array(
|
|||
'ldap_email' => 'LDAP E-Mail',
|
||||
'load_remote_text' => 'Remote Skripte',
|
||||
'load_remote_help_text' => 'Diese Installation von Snipe-IT kann Skripte von außerhalb laden.',
|
||||
'login_note' => 'Login Note',
|
||||
'login_note_help' => 'Optionally include a few sentences on your login screen, for example to assist people who have found a lost or stolen device. This field accepts <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>',
|
||||
'login_note' => 'Anmeldenotiz',
|
||||
'login_note_help' => 'Fügen Sie optional ein paar Sätze zu Ihrem Anmeldebildschirm hinzu, beispielsweise um Personen zu helfen, welche ein verlorenes oder gestohlenes Gerät gefunden haben. Dieses Feld akzeptiert <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>',
|
||||
'logo' => 'Logo',
|
||||
'full_multiple_companies_support_help_text' => 'Beschränkung von Benutzern (inklusive Administratoren) die einer Firma zugewiesen sind zu den Assets der Firma.',
|
||||
'full_multiple_companies_support_text' => 'Volle Mehrmandanten-Unterstützung für Firmen',
|
||||
|
@ -73,12 +77,12 @@ return array(
|
|||
'php' => 'PHP Version',
|
||||
'php_gd_info' => 'Um QR-Codes anzeigen zu können muss php-gd installiert sein, siehe Installationshinweise.',
|
||||
'php_gd_warning' => 'PHP Image Processing and GD Plugin ist NICHT installiert.',
|
||||
'pwd_secure_complexity' => 'Password Complexity',
|
||||
'pwd_secure_complexity_help' => 'Select whichever password complexity rules you wish to enforce.',
|
||||
'pwd_secure_min' => 'Password minimum characters',
|
||||
'pwd_secure_min_help' => 'Minimum permitted value is 5',
|
||||
'pwd_secure_uncommon' => 'Prevent common passwords',
|
||||
'pwd_secure_uncommon_help' => 'This will disallow users from using common passwords from the top 10,000 passwords reported in breaches.',
|
||||
'pwd_secure_complexity' => 'Passwortkomplexität',
|
||||
'pwd_secure_complexity_help' => 'Wählen Sie aus, welche Komplexitätsregeln Sie für Passwörter erzwingen möchten.',
|
||||
'pwd_secure_min' => 'Minimale Passwortlänge',
|
||||
'pwd_secure_min_help' => 'Minimal zulässiger Wert ist 5',
|
||||
'pwd_secure_uncommon' => 'Gebräuchliche Passwörter verhindern',
|
||||
'pwd_secure_uncommon_help' => 'Verhindert die Verwendung der 10.000 häufigsten Passwörter aus im Internet geleakten Quellen.',
|
||||
'qr_help' => 'Schalte zuerst QR Codes an um dies zu setzen',
|
||||
'qr_text' => 'QR Code Text',
|
||||
'setting' => 'Einstellung',
|
||||
|
@ -113,8 +117,8 @@ return array(
|
|||
'width_w' => 'b',
|
||||
'height_h' => 'h',
|
||||
'text_pt' => 'pt',
|
||||
'thumbnail_max_h' => 'Max thumbnail height',
|
||||
'thumbnail_max_h_help' => 'Maximum height in pixels that thumbnails may display in the listing view. Min 25, max 500.',
|
||||
'thumbnail_max_h' => 'Maximale Höhe der Miniaturansicht',
|
||||
'thumbnail_max_h_help' => 'Maximale Höhe für Miniaturansichten in der Listenansicht in Pixel. Min. 25, Max. 500.',
|
||||
'two_factor' => 'Zwei-Faktor-Authentifizierung',
|
||||
'two_factor_secret' => 'Zwei-Faktor Code',
|
||||
'two_factor_enrollment' => 'Zwei-Faktor Registrierung',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'Erlaubte Dateitypen sind png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, und rar.',
|
||||
'history_user' => 'Historie von :name',
|
||||
'info' => 'Info',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'Letzte Anmeldung',
|
||||
'ldap_config_text' => 'Die LDAP Konfigurations Einstellungen finden Sie hier Admin -> Einstellungen. Der (optional) wählbare Standort wird für alle importierten Benutzer gesetzt.',
|
||||
'software_user' => 'Software herausgegeben an :name',
|
||||
|
|
|
@ -31,7 +31,7 @@ return array(
|
|||
'create' => 'Beim Erstellen des Benutzers ist ein Fehler aufgetreten. Bitte probieren Sie es noch einmal.',
|
||||
'update' => 'Beim Aktualisieren des Benutzers ist ein Fehler aufgetreten. Bitte probieren Sie es noch einmal.',
|
||||
'delete' => 'Beim Entfernen des Benutzers ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.',
|
||||
'delete_has_assets' => 'This user has items assigned and could not be deleted.',
|
||||
'delete_has_assets' => 'Der Benutzer konnte nicht gelöscht werden, da ihm Gegenstände zugeordnet sind.',
|
||||
'unsuspend' => 'Es gab ein Problem beim reaktivieren des Benutzers. Bitte versuche es erneut.',
|
||||
'import' => 'Es gab ein Problem beim importieren der Benutzer. Bitte noch einmal versuchen.',
|
||||
'asset_already_accepted' => 'Dieses Asset wurde bereits akzeptiert.',
|
||||
|
@ -41,7 +41,7 @@ return array(
|
|||
'ldap_could_not_bind' => 'Konnte keine Verbindung zum LDAP Server herstellen. Bitte LDAP Einstellungen in der LDAP Konfigurationsdatei prüfen. <br>Fehler vom LDAP Server: ',
|
||||
'ldap_could_not_search' => 'Konnte LDAP Server nicht suchen. Bitte LDAP Einstellungen in der LDAP Konfigurationsdatei prüfen. <br>Fehler vom LDAP Server:',
|
||||
'ldap_could_not_get_entries' => 'Konnte keine Einträge vom LDAP Server abrufen. Bitte LDAP Einstellungen in der LDAP Konfigurationsdatei prüfen. <br>Fehler vom LDAP Server:',
|
||||
'password_ldap' => 'The password for this account is managed by LDAP/Active Directory. Please contact your IT department to change your password. ',
|
||||
'password_ldap' => 'Das Passwort für diesen Account wird vom LDAP/Active Directory verwaltet. Bitte kontaktieren Sie Ihre IT-Abteilung, um Ihr Passwort zu ändern. ',
|
||||
),
|
||||
|
||||
'deletefile' => array(
|
||||
|
|
|
@ -19,7 +19,7 @@ return array(
|
|||
'location' => 'Ort',
|
||||
'lock_passwords' => 'Die Login-Daten können auf dieser Installation nicht geändert werden.',
|
||||
'manager' => 'Manager',
|
||||
'managed_locations' => 'Managed Locations',
|
||||
'managed_locations' => 'Verwaltete Standorte',
|
||||
'name' => 'Name',
|
||||
'notes' => 'Notizen',
|
||||
'password_confirm' => 'Kennwort bestätigen',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Asset Bericht',
|
||||
'asset_tag' => 'Asset Tag',
|
||||
'assets_available' => 'verfügbare Assets',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Assets',
|
||||
'avatar_delete' => 'Avatar löschen',
|
||||
'avatar_upload' => 'Avatar hochladen',
|
||||
'back' => 'Zurück',
|
||||
'bad_data' => 'Nichts gefunden. Vielleicht defekte Daten?',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Massen-Checkout',
|
||||
'cancel' => 'Abbrechen',
|
||||
'categories' => 'Kategorien',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'Aktuell',
|
||||
'custom_report' => 'Spezieller Asset Report',
|
||||
'dashboard' => 'Dashboard',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'Purchase Date',
|
||||
'debug_warning' => 'Warnung!',
|
||||
'debug_warning_text' => 'Diese Anwendung läuft im Produktionsmodus mit debugging aktiviert. Dies kann sensible Daten verfügbar machen, wenn Ihre Anwendung öffentlich zugänglich ist. Deaktivieren Sie den Debug-Modus, indem Sie den <code>APP_DEBUG</code>-Wert in der <code>.env</code> Datei auf <code>false</code> setzen.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'Mehr Informationen',
|
||||
'name' => 'Location Name',
|
||||
'next' => 'Nächstes',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'Neu!',
|
||||
'no_depreciation' => 'Do Not Depreciate',
|
||||
'no_results' => 'Keine Treffer.',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => ":attribute muss akzeptiert werden.",
|
||||
"active_url" => ":attribute ist keine gültige URL.",
|
||||
"after" => ":attribute muss ein Datum nach dem :date sein.",
|
||||
"alpha" => ":attribute darf nur aus Buchstaben bestehen.",
|
||||
"alpha_dash" => ":attribute darf nur aus Buchstaben, Zahlen und Gedankenstrichen bestehen.",
|
||||
"alpha_num" => ":attribute darf nur aus Buchstaben und Zahlen bestehen.",
|
||||
"before" => ":attribute muss ein Datum vor dem :date sein.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute muss zwischen :min und :max liegen.",
|
||||
"file" => ":attribute darf nur zwischen :min und :max kilobytes groß sein.",
|
||||
"string" => ":attribute muss mindestens :min und maximal :max Zeichen enthalten.",
|
||||
),
|
||||
"boolean" => ":attribute muss wahr oder falsch sein.",
|
||||
"confirmed" => ":attribute Bestätigung stimmt nicht überein.",
|
||||
"date" => ":attribute ist kein gültiges Datum.",
|
||||
"date_format" => ":attribute passt nicht zur :format Formatierung.",
|
||||
"different" => ":attribute und :other müssen sich unterscheiden.",
|
||||
"digits" => ":attribute muss :digits Stellen haben.",
|
||||
"digits_between" => ":attribute soll mindestens :min und darf maximal :max Stellen haben.",
|
||||
"email" => "Das Format von :attribute ist ungültig.",
|
||||
"exists" => "Das ausgewählte :attribute ist ungültig.",
|
||||
"email_array" => "Eine oder mehrere Email Adressen sind ungültig.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => ":attribute muss ein Bild sein.",
|
||||
"in" => "Auswahl :attribute ist ungültig.",
|
||||
"integer" => ":attribute muss eine ganze Zahl sein.",
|
||||
"ip" => ":attribute muss eine gültige IP Adresse sein.",
|
||||
"max" => array(
|
||||
"numeric" => ":attribute darf nicht größer als :max sein.",
|
||||
"file" => ":attribute darf nicht größer als :max Kilobyte sein.",
|
||||
"string" => ":attribute darf nicht mehr als :max Zeichen sein.",
|
||||
),
|
||||
"mimes" => ":attribute muss eine Datei des Typs :values sein.",
|
||||
"min" => array(
|
||||
"numeric" => ":attribute muss kleiner als :min sein.",
|
||||
"file" => ":attribute muss mindestens :min Kilobyte groß sein.",
|
||||
"string" => ":attribute benötigt mindestens :min Zeichen.",
|
||||
),
|
||||
"not_in" => "Auswahl :attribute ist ungültig.",
|
||||
"numeric" => ":attribute muss eine Zahl sein.",
|
||||
"regex" => ":attribute Format ungültig.",
|
||||
"required" => ":attribute Feld muss ausgefüllt sein.",
|
||||
"required_if" => ":attribute wird benötigt wenn :other :value entspricht.",
|
||||
"required_with" => ":attribute wird benötigt wenn :value ausgewählt ist.",
|
||||
"required_without" => ":attribute wird benötigt wenn :value nicht ausgewählt ist.",
|
||||
"same" => ":attribute und :other müssen übereinstimmen.",
|
||||
"size" => array(
|
||||
"numeric" => ":attribute muss :size groß sein.",
|
||||
"file" => ":attribute muss :size Kilobyte groß sein.",
|
||||
"string" => ":attribute muss :size Zeichen haben.",
|
||||
),
|
||||
"unique" => ":attribute schon benutzt.",
|
||||
"url" => ":attribute Format ist ungültig.",
|
||||
"statuslabel_type" => "Gültigen Status Beschriftungstyp auswählen!",
|
||||
"unique_undeleted" => ":attribute muss eindeutig sein.",
|
||||
'accepted' => ':attribute muss akzeptiert werden.',
|
||||
'active_url' => ':attribute ist keine gültige URL.',
|
||||
'after' => ':attribute muss ein Datum nach dem :date sein.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => ':attribute darf nur aus Buchstaben bestehen.',
|
||||
'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen und Gedankenstrichen bestehen.',
|
||||
'alpha_num' => ':attribute darf nur aus Buchstaben und Zahlen bestehen.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => ':attribute muss ein Datum vor dem :date sein.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute muss zwischen :min und :max liegen.',
|
||||
'file' => ':attribute darf nur zwischen :min und :max kilobytes groß sein.',
|
||||
'string' => ':attribute muss mindestens :min und maximal :max Zeichen enthalten.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => ':attribute muss wahr oder falsch sein.',
|
||||
'confirmed' => ':attribute Bestätigung stimmt nicht überein.',
|
||||
'date' => ':attribute ist kein gültiges Datum.',
|
||||
'date_format' => ':attribute passt nicht zur :format Formatierung.',
|
||||
'different' => ':attribute und :other müssen sich unterscheiden.',
|
||||
'digits' => ':attribute muss :digits Stellen haben.',
|
||||
'digits_between' => ':attribute soll mindestens :min und darf maximal :max Stellen haben.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'Das Format von :attribute ist ungültig.',
|
||||
'exists' => 'Das ausgewählte :attribute ist ungültig.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => ':attribute muss ein Bild sein.',
|
||||
'in' => 'Auswahl :attribute ist ungültig.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => ':attribute muss eine ganze Zahl sein.',
|
||||
'ip' => ':attribute muss eine gültige IP Adresse sein.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute darf nicht größer als :max sein.',
|
||||
'file' => ':attribute darf nicht größer als :max Kilobyte sein.',
|
||||
'string' => ':attribute darf nicht mehr als :max Zeichen sein.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => ':attribute muss eine Datei des Typs :values sein.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute muss kleiner als :min sein.',
|
||||
'file' => ':attribute muss mindestens :min Kilobyte groß sein.',
|
||||
'string' => ':attribute benötigt mindestens :min Zeichen.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'Auswahl :attribute ist ungültig.',
|
||||
'numeric' => ':attribute muss eine Zahl sein.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => ':attribute Format ungültig.',
|
||||
'required' => ':attribute Feld muss ausgefüllt sein.',
|
||||
'required_if' => ':attribute wird benötigt wenn :other :value entspricht.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => ':attribute wird benötigt wenn :value ausgewählt ist.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => ':attribute wird benötigt wenn :value nicht ausgewählt ist.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => ':attribute und :other müssen übereinstimmen.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute muss :size groß sein.',
|
||||
'file' => ':attribute muss :size Kilobyte groß sein.',
|
||||
'string' => ':attribute muss :size Zeichen haben.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => ':attribute schon benutzt.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => ':attribute Format ist ungültig.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => "Das :attribute Feld enthält ein nicht erlaubtes Zeichen.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -6,19 +6,19 @@ return array(
|
|||
'assoc_users' => 'This accessory currently has :count items checked out to users. Please check in the accessories and and try again. ',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'The accessory was not created, please try again.',
|
||||
'error' => 'Το εξάρτημα δεν δημιουργήθηκε, παρακαλώ προσπαθήστε ξανά.',
|
||||
'success' => 'Το εξάρτημα δημιουργήθηκε με επιτυχία.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'The accessory was not updated, please try again',
|
||||
'success' => 'The accessory was updated successfully.'
|
||||
'error' => 'Το εξάρτημα δεν ενημερώθηκε, παρακαλώ προσπαθήστε ξανά',
|
||||
'success' => 'Το εξάρτημα ενημερώθηκε με επιτυχία.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Are you sure you wish to delete this accessory?',
|
||||
'confirm' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το εξάρτημα;',
|
||||
'error' => 'Υπήρξε ένα ζήτημα διαγράφοντας το αξεσουάρ. Παρακαλώ δοκιμάστε ξανά.',
|
||||
'success' => 'The accessory was deleted successfully.'
|
||||
'success' => 'Το εξάρτημα διαγράφηκε με επιτυχία.'
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'Επιτυχής δημιουργία συντήρησης παγίου.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Δεν ολοκληρώθηκε ακόμη',
|
||||
'warranty' => 'Εγγύηση',
|
||||
|
|
|
@ -6,7 +6,7 @@ return array(
|
|||
'asset_categories' => 'Κατηγορίες στοιχείων παγίων',
|
||||
'category_name' => 'Όνομα κατηγορίας',
|
||||
'checkin_email' => 'Send email to user on checkin.',
|
||||
'clone' => 'Clone Category',
|
||||
'clone' => 'Αντιγραφή Κατηγορίας',
|
||||
'create' => 'Δημιουργία Κατηγορίας',
|
||||
'edit' => 'Επεξεργασία Κατηγορίας',
|
||||
'eula_text' => 'Category EULA',
|
||||
|
@ -16,7 +16,7 @@ return array(
|
|||
'required_acceptance' => 'This user will be emailed with a link to confirm acceptance of this item.',
|
||||
'required_eula' => 'This user will be emailed a copy of the EULA',
|
||||
'no_default_eula' => 'No primary default EULA found. Add one in Settings.',
|
||||
'update' => 'Update Category',
|
||||
'update' => 'Ενημέρωση Κατηγορίας',
|
||||
'use_default_eula' => 'Χρησιμοποιήστε την προεπιλεγμένη <a href="#" data-toggle="modal" data-target="#eulaModal">primary EULA</a>.',
|
||||
'use_default_eula_disabled' => '<del>Use the primary default EULA instead.</del> No primary default EULA is set. Please add one in Settings.',
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'asset' => 'Πάγιο',
|
||||
'bulk_checkout' => 'Checkout παγίων σε χρήστη',
|
||||
'checkin' => 'Checkin Asset',
|
||||
'checkout' => 'Checkout Asset to User',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'Κλώνος χρήστη',
|
||||
'deployable' => 'Προς ανάπτυξη',
|
||||
'deleted' => 'This asset has been deleted. <a href="/hardware/:asset_id/restore">Click here to restore it</a>.',
|
||||
|
|
|
@ -24,6 +24,12 @@ return array(
|
|||
'success' => 'Τα πάγια επαναφέρθηκαν επιτυχώς.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'Το αρχείο δεν έχει διαγραφεί. Παρακαλώ δοκιμάστε ξανά.',
|
||||
'success' => 'Το αρχείο διαγράφηκε με επιτυχία.',
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Expiring Alerts Threshold (in days)',
|
||||
'alert_inv_threshold' => 'Ειδοποιήση ορίου αποθήκης',
|
||||
'asset_ids' => 'Asset IDs',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Generate auto-incrementing asset IDs',
|
||||
'auto_increment_prefix' => 'Πρόθεμα (μη υποχρεωτικό)',
|
||||
'auto_incrementing_help' => 'Enable auto-incrementing asset IDs first to set this',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.',
|
||||
'history_user' => 'Ιστορικό: όνομα',
|
||||
'info' => 'Info',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'Τελευταία σύνδεση',
|
||||
'ldap_config_text' => 'LDAP configuration settings can be found Admin > Settings. The (optional) selected location will be set for all imported users.',
|
||||
'software_user' => 'Software Checked out to :name',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Αναφορά παγίων',
|
||||
'asset_tag' => 'Ετικέτα παγίων',
|
||||
'assets_available' => 'διαθέσιμα πάγια',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Πάγια',
|
||||
'avatar_delete' => 'Διαγραφή Avatar',
|
||||
'avatar_upload' => 'Ανεβάστε την εικόνα προφίλ σας',
|
||||
'back' => 'Προηγούμενο',
|
||||
'bad_data' => 'Nothing found. Maybe bad data?',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Bulk Checkout',
|
||||
'cancel' => 'Ακύρωση',
|
||||
'categories' => 'Kατηγορίες',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'Τρέχουσα',
|
||||
'custom_report' => 'Custom Asset Report',
|
||||
'dashboard' => 'Πίνακας ελέγχου',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'Ημερομηνία',
|
||||
'debug_warning' => 'Προσοχή!',
|
||||
'debug_warning_text' => 'Αυτή η εφαρμογή εκτελείται σε λειτουργία παραγωγής με ενεργοποιημένο τον εντοπισμό σφαλμάτων. Αυτό μπορεί να εκθέσει τα ευαίσθητα δεδομένα, εάν η εφαρμογή σας είναι προσβάσιμη στον έξω κόσμο. Απενεργοποιήσετε την κατάσταση λειτουργίας εντοπισμού σφαλμάτων, ορίζοντας την τιμή <code>APP_DEBUG</code> στο αρχείο <code>.env</code> για να <code>false</code>.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'Περισσότερες Πληροφορίες',
|
||||
'name' => 'Όνομα',
|
||||
'next' => 'Επόμενο',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'νεό!',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'Δεν βρέθηκαν αποτελέσματα.',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => "Το: χαρακτηριστικό πρέπει να γίνει δεκτό.",
|
||||
"active_url" => "Η: το χαρακτηριστικό δεν έχει έγκυρη διεύθυνση URL.",
|
||||
"after" => "The :attribute must be a date after :date.",
|
||||
"alpha" => "Η: το χαρακτηριστικό μπορεί να περιέχει μόνο γράμματα.",
|
||||
"alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
|
||||
"alpha_num" => "The :attribute may only contain letters and numbers.",
|
||||
"before" => "The :attribute must be a date before :date.",
|
||||
"between" => array(
|
||||
"numeric" => "Το χαρακτηριστικό πρέπει να είναι μεταξύ: min - :max.",
|
||||
"file" => "The :attribute must be between :min - :max kilobytes.",
|
||||
"string" => "The :attribute must be between :min - :max characters.",
|
||||
),
|
||||
"boolean" => "The :attribute must be true or false.",
|
||||
"confirmed" => "The :attribute confirmation does not match.",
|
||||
"date" => "The :attribute is not a valid date.",
|
||||
"date_format" => "The :attribute does not match the format :format.",
|
||||
"different" => "The :attribute and :other must be different.",
|
||||
"digits" => "The :attribute must be :digits digits.",
|
||||
"digits_between" => "The :attribute must be between :min and :max digits.",
|
||||
"email" => "The :attribute format is invalid.",
|
||||
"exists" => "Το επιλεγμένο: χαρακτηριστικό δεν είναι έγκυρο.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => "Το: χαρακτηριστικό πρέπει να είναι μια εικόνα.",
|
||||
"in" => "The selected :attribute is invalid.",
|
||||
"integer" => "The :attribute must be an integer.",
|
||||
"ip" => "The :attribute must be a valid IP address.",
|
||||
"max" => array(
|
||||
"numeric" => "The :attribute may not be greater than :max.",
|
||||
"file" => "The :attribute may not be greater than :max kilobytes.",
|
||||
"string" => "The :attribute may not be greater than :max characters.",
|
||||
),
|
||||
"mimes" => "The :attribute must be a file of type: :values.",
|
||||
"min" => array(
|
||||
"numeric" => "The :attribute must be at least :min.",
|
||||
"file" => "The :attribute must be at least :min kilobytes.",
|
||||
"string" => "The :attribute must be at least :min characters.",
|
||||
),
|
||||
"not_in" => "Το επιλεγμένο: χαρακτηριστικό δεν είναι έγκυρο.",
|
||||
"numeric" => "The :attribute must be a number.",
|
||||
"regex" => "The :attribute format is invalid.",
|
||||
"required" => "The :attribute field is required.",
|
||||
"required_if" => "The :attribute field is required when :other is :value.",
|
||||
"required_with" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "The :attribute field is required when :values is not present.",
|
||||
"same" => "The :attribute and :other must match.",
|
||||
"size" => array(
|
||||
"numeric" => "The :attribute must be :size.",
|
||||
"file" => "The :attribute must be :size kilobytes.",
|
||||
"string" => "The :attribute must be :size characters.",
|
||||
),
|
||||
"unique" => "The :attribute has already been taken.",
|
||||
"url" => "The :attribute format is invalid.",
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
'accepted' => 'Το: χαρακτηριστικό πρέπει να γίνει δεκτό.',
|
||||
'active_url' => 'Η: το χαρακτηριστικό δεν έχει έγκυρη διεύθυνση URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'Η: το χαρακτηριστικό μπορεί να περιέχει μόνο γράμματα.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'Το χαρακτηριστικό πρέπει να είναι μεταξύ: min - :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'Το επιλεγμένο: χαρακτηριστικό δεν είναι έγκυρο.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => 'Το: χαρακτηριστικό πρέπει να είναι μια εικόνα.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'Το επιλεγμένο: χαρακτηριστικό δεν είναι έγκυρο.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'Asset Maintenance created successfully.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Not Completed Yet',
|
||||
'warranty' => 'Warranty',
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'asset' => 'Asset',
|
||||
'bulk_checkout' => 'Checkout Assets to User',
|
||||
'checkin' => 'Checkin Asset',
|
||||
'checkout' => 'Checkout Asset to User',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'Clone Asset',
|
||||
'deployable' => 'Deployable',
|
||||
'deleted' => 'This asset has been deleted. <a href="/hardware/:asset_id/restore">Click here to restore it</a>.',
|
||||
|
|
|
@ -24,6 +24,12 @@ return array(
|
|||
'success' => 'Asset restored successfully.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'File not deleted. Please try again.',
|
||||
'success' => 'File successfully deleted.',
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Expiring Alerts Threshold (in days)',
|
||||
'alert_inv_threshold' => 'Inventory Alert Threshold',
|
||||
'asset_ids' => 'Asset IDs',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Generate auto-incrementing asset IDs',
|
||||
'auto_increment_prefix' => 'Prefix (optional)',
|
||||
'auto_incrementing_help' => 'Enable auto-incrementing asset IDs first to set this',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.',
|
||||
'history_user' => 'History for :name',
|
||||
'info' => 'Info',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'Last Login',
|
||||
'ldap_config_text' => 'LDAP configuration settings can be found Admin > Settings. The (optional) selected location will be set for all imported users.',
|
||||
'software_user' => 'Software Checked out to :name',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Asset Report',
|
||||
'asset_tag' => 'Asset Tag',
|
||||
'assets_available' => 'assets available',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Assets',
|
||||
'avatar_delete' => 'Delete Avatar',
|
||||
'avatar_upload' => 'Upload Avatar',
|
||||
'back' => 'Back',
|
||||
'bad_data' => 'Nothing found. Maybe bad data?',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Bulk Checkout',
|
||||
'cancel' => 'Cancel',
|
||||
'categories' => 'Categories',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'Current',
|
||||
'custom_report' => 'Custom Asset Report',
|
||||
'dashboard' => 'Dashboard',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'Date',
|
||||
'debug_warning' => 'Warning!',
|
||||
'debug_warning_text' => 'This application is running in production mode with debugging enabled. This can expose sensitive data if your application is accessible to the outside world. Disable debug mode by setting the <code>APP_DEBUG</code> value in your <code>.env</code> file to <code>false</code>.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'More Info',
|
||||
'name' => 'Name',
|
||||
'next' => 'Next',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'new!',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'No Results.',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => "The :attribute must be accepted.",
|
||||
"active_url" => "The :attribute is not a valid URL.",
|
||||
"after" => "The :attribute must be a date after :date.",
|
||||
"alpha" => "The :attribute may only contain letters.",
|
||||
"alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
|
||||
"alpha_num" => "The :attribute may only contain letters and numbers.",
|
||||
"before" => "The :attribute must be a date before :date.",
|
||||
"between" => array(
|
||||
"numeric" => "The :attribute must be between :min - :max.",
|
||||
"file" => "The :attribute must be between :min - :max kilobytes.",
|
||||
"string" => "The :attribute must be between :min - :max characters.",
|
||||
),
|
||||
"boolean" => "The :attribute must be true or false.",
|
||||
"confirmed" => "The :attribute confirmation does not match.",
|
||||
"date" => "The :attribute is not a valid date.",
|
||||
"date_format" => "The :attribute does not match the format :format.",
|
||||
"different" => "The :attribute and :other must be different.",
|
||||
"digits" => "The :attribute must be :digits digits.",
|
||||
"digits_between" => "The :attribute must be between :min and :max digits.",
|
||||
"email" => "The :attribute format is invalid.",
|
||||
"exists" => "The selected :attribute is invalid.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => "The :attribute must be an image.",
|
||||
"in" => "The selected :attribute is invalid.",
|
||||
"integer" => "The :attribute must be an integer.",
|
||||
"ip" => "The :attribute must be a valid IP address.",
|
||||
"max" => array(
|
||||
"numeric" => "The :attribute may not be greater than :max.",
|
||||
"file" => "The :attribute may not be greater than :max kilobytes.",
|
||||
"string" => "The :attribute may not be greater than :max characters.",
|
||||
),
|
||||
"mimes" => "The :attribute must be a file of type: :values.",
|
||||
"min" => array(
|
||||
"numeric" => "The :attribute must be at least :min.",
|
||||
"file" => "The :attribute must be at least :min kilobytes.",
|
||||
"string" => "The :attribute must be at least :min characters.",
|
||||
),
|
||||
"not_in" => "The selected :attribute is invalid.",
|
||||
"numeric" => "The :attribute must be a number.",
|
||||
"regex" => "The :attribute format is invalid.",
|
||||
"required" => "The :attribute field is required.",
|
||||
"required_if" => "The :attribute field is required when :other is :value.",
|
||||
"required_with" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "The :attribute field is required when :values is not present.",
|
||||
"same" => "The :attribute and :other must match.",
|
||||
"size" => array(
|
||||
"numeric" => "The :attribute must be :size.",
|
||||
"file" => "The :attribute must be :size kilobytes.",
|
||||
"string" => "The :attribute must be :size characters.",
|
||||
),
|
||||
"unique" => "The :attribute has already been taken.",
|
||||
"url" => "The :attribute format is invalid.",
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min - :max.',
|
||||
'file' => 'The :attribute must be between :min - :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min - :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute format is invalid.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'Pemeliharaan Aset berhasil dibuat.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Belum selesai',
|
||||
'warranty' => 'Jaminan',
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'asset' => 'Asset',
|
||||
'bulk_checkout' => 'Checkout Assets to User',
|
||||
'checkin' => 'Checkin Asset',
|
||||
'checkout' => 'Checkout Asset to User',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'Clone Asset',
|
||||
'deployable' => 'Deployable',
|
||||
'deleted' => 'This asset has been deleted. <a href="/hardware/:asset_id/restore">Click here to restore it</a>.',
|
||||
|
|
|
@ -24,6 +24,12 @@ return array(
|
|||
'success' => 'Asset restored successfully.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'File not deleted. Please try again.',
|
||||
'success' => 'File successfully deleted.',
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Expiring Alerts Threshold (in days)',
|
||||
'alert_inv_threshold' => 'Inventory Alert Threshold',
|
||||
'asset_ids' => 'Asset IDs',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Generate auto-incrementing asset IDs',
|
||||
'auto_increment_prefix' => 'Prefix (optional)',
|
||||
'auto_incrementing_help' => 'Enable auto-incrementing asset IDs first to set this',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.',
|
||||
'history_user' => 'History for :name',
|
||||
'info' => 'Info',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'Last Login',
|
||||
'ldap_config_text' => 'LDAP configuration settings can be found Admin > Settings. The (optional) selected location will be set for all imported users.',
|
||||
'software_user' => 'Software Checked out to :name',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Asset Report',
|
||||
'asset_tag' => 'Asset Tag',
|
||||
'assets_available' => 'assets available',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Assets',
|
||||
'avatar_delete' => 'Delete Avatar',
|
||||
'avatar_upload' => 'Upload Avatar',
|
||||
'back' => 'Back',
|
||||
'bad_data' => 'Nothing found. Maybe bad data?',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Bulk Checkout',
|
||||
'cancel' => 'Cancel',
|
||||
'categories' => 'Categories',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'Current',
|
||||
'custom_report' => 'Custom Asset Report',
|
||||
'dashboard' => 'Dashboard',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'Date',
|
||||
'debug_warning' => 'Warning!',
|
||||
'debug_warning_text' => 'This application is running in production mode with debugging enabled. This can expose sensitive data if your application is accessible to the outside world. Disable debug mode by setting the <code>APP_DEBUG</code> value in your <code>.env</code> file to <code>false</code>.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'More Info',
|
||||
'name' => 'Name',
|
||||
'next' => 'Next',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'new!',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'No Results.',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => "The :attribute must be accepted.",
|
||||
"active_url" => "The :attribute is not a valid URL.",
|
||||
"after" => "The :attribute must be a date after :date.",
|
||||
"alpha" => "The :attribute may only contain letters.",
|
||||
"alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
|
||||
"alpha_num" => "The :attribute may only contain letters and numbers.",
|
||||
"before" => "The :attribute must be a date before :date.",
|
||||
"between" => array(
|
||||
"numeric" => "The :attribute must be between :min - :max.",
|
||||
"file" => "The :attribute must be between :min - :max kilobytes.",
|
||||
"string" => "The :attribute must be between :min - :max characters.",
|
||||
),
|
||||
"boolean" => "The :attribute must be true or false.",
|
||||
"confirmed" => "The :attribute confirmation does not match.",
|
||||
"date" => "The :attribute is not a valid date.",
|
||||
"date_format" => "The :attribute does not match the format :format.",
|
||||
"different" => "The :attribute and :other must be different.",
|
||||
"digits" => "The :attribute must be :digits digits.",
|
||||
"digits_between" => "The :attribute must be between :min and :max digits.",
|
||||
"email" => "The :attribute format is invalid.",
|
||||
"exists" => "The selected :attribute is invalid.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => "The :attribute must be an image.",
|
||||
"in" => "The selected :attribute is invalid.",
|
||||
"integer" => "The :attribute must be an integer.",
|
||||
"ip" => "The :attribute must be a valid IP address.",
|
||||
"max" => array(
|
||||
"numeric" => "The :attribute may not be greater than :max.",
|
||||
"file" => "The :attribute may not be greater than :max kilobytes.",
|
||||
"string" => "The :attribute may not be greater than :max characters.",
|
||||
),
|
||||
"mimes" => "The :attribute must be a file of type: :values.",
|
||||
"min" => array(
|
||||
"numeric" => "The :attribute must be at least :min.",
|
||||
"file" => "The :attribute must be at least :min kilobytes.",
|
||||
"string" => "The :attribute must be at least :min characters.",
|
||||
),
|
||||
"not_in" => "The selected :attribute is invalid.",
|
||||
"numeric" => "The :attribute must be a number.",
|
||||
"regex" => "The :attribute format is invalid.",
|
||||
"required" => "The :attribute field is required.",
|
||||
"required_if" => "The :attribute field is required when :other is :value.",
|
||||
"required_with" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "The :attribute field is required when :values is not present.",
|
||||
"same" => "The :attribute and :other must match.",
|
||||
"size" => array(
|
||||
"numeric" => "The :attribute must be :size.",
|
||||
"file" => "The :attribute must be :size kilobytes.",
|
||||
"string" => "The :attribute must be :size characters.",
|
||||
),
|
||||
"unique" => "The :attribute has already been taken.",
|
||||
"url" => "The :attribute format is invalid.",
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min - :max.',
|
||||
'file' => 'The :attribute must be between :min - :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min - :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute format is invalid.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -24,12 +24,12 @@ return array(
|
|||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'numeric' => 'The :attribute must be between :min - :max.',
|
||||
'file' => 'The :attribute must be between :min - :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min - :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'boolean' => 'The :attribute must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
|
@ -38,7 +38,7 @@ return array(
|
|||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'email' => 'The :attribute format is invalid.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'Mantenimiento de Activo creado correctamente.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Sin Completar',
|
||||
'warranty' => 'Garantía',
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Department does not exist.',
|
||||
'does_not_exist' => 'El departamento no existe.',
|
||||
'assoc_users' => 'This department is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this department and try again. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'asset' => 'Equipo',
|
||||
'bulk_checkout' => 'Asignar activos a un usuario',
|
||||
'checkin' => 'Quitar Equipo',
|
||||
'checkout' => 'Asignar a un usuario',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'Clonar Equipo',
|
||||
'deployable' => 'Desplegable',
|
||||
'deleted' => 'Este equipo ha sido eliminado. <a href="/hardware/:asset_id/restore">Click aqui para restaurarlot</a>.',
|
||||
|
|
|
@ -24,6 +24,12 @@ return array(
|
|||
'success' => 'Equipo restaurado correctamente.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'Archivo no eliminado. Por favor, vuelva a intentarlo.',
|
||||
'success' => 'Archivo eliminado correctamente.',
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Limite de alertas de expiración (en días)',
|
||||
'alert_inv_threshold' => 'Umbral de alerta del inventario',
|
||||
'asset_ids' => 'IDs de Recurso',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Generar IDs de equipo autoincrementales',
|
||||
'auto_increment_prefix' => 'Prefijo (opcional)',
|
||||
'auto_incrementing_help' => 'Activa la generación automática de IDs de equipo antes de configurar esto',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'Tipos de archivos permitidos son png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, y rar.',
|
||||
'history_user' => 'Historial de :name',
|
||||
'info' => 'Información',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'Último acceso',
|
||||
'ldap_config_text' => 'Las configuraciones de LDAP estàn en: Admin -> Settings. La ubicaciòn seleccionadada sera asignada a todos los usuarios importados.',
|
||||
'software_user' => 'Software asignado a :name',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Reporte de Equipos',
|
||||
'asset_tag' => 'Etiqueta',
|
||||
'assets_available' => 'equipos disponibles',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Equipos',
|
||||
'avatar_delete' => 'Eliminar Avatar',
|
||||
'avatar_upload' => 'Subir Avatar',
|
||||
'back' => 'Atras',
|
||||
'bad_data' => 'Ningún resultado. ¿Quizá un dato incorrecto?',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Procesar en Lote',
|
||||
'cancel' => 'Cancelar',
|
||||
'categories' => 'Categorías',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'Actual',
|
||||
'custom_report' => 'Reporte de Equipos Personalizado',
|
||||
'dashboard' => 'Tablero',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'Fecha Compra',
|
||||
'debug_warning' => '¡Advertencia!',
|
||||
'debug_warning_text' => 'Esta aplicación esta corriendo en modo producción con debugging activado. Esto puede exponer datos sensibles si su aplicación es accesible desde el exterior. Desactive el modo debug cambiando el valor <code>APP_DEBUG</code> en su archivo <code>.env</code> a <code>false</code>.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'Más Info',
|
||||
'name' => 'Nombre Localización',
|
||||
'next' => 'Siguiente',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'nuevo!',
|
||||
'no_depreciation' => 'No Amortizar',
|
||||
'no_results' => 'Sin Resultados.',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => ":attribute debe ser aceptado.",
|
||||
"active_url" => ":attribute no es una URL correcta.",
|
||||
"after" => ":attribute debe ser posterior a :date.",
|
||||
"alpha" => ":attribute solo acepta letras.",
|
||||
"alpha_dash" => ":attribute solo acepta letras, números y guiones.",
|
||||
"alpha_num" => ":attribute solo acepta letras y números.",
|
||||
"before" => ":attribute debe ser anterior a :date.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute debe estar entre :min - :max.",
|
||||
"file" => ":attribute debe estar entre :min - :max kilobytes.",
|
||||
"string" => ":attribute debe estar entre :min - :max caracteres.",
|
||||
),
|
||||
"boolean" => ":attribute debe ser verdadero o falso.",
|
||||
"confirmed" => ":attribute la confirmación no coincide.",
|
||||
"date" => ":attribute no es una fecha correcta.",
|
||||
"date_format" => ":attribute no cumple el formato :format.",
|
||||
"different" => ":attribute y :other deben ser diferentes.",
|
||||
"digits" => ":attribute debe tener :digits dígitos.",
|
||||
"digits_between" => ":attribute debe tener entre :min y :max dígitos.",
|
||||
"email" => ":attribute formato incorrecto.",
|
||||
"exists" => "El :attribute seleccionado no es correcto.",
|
||||
"email_array" => "Una o más direcciones de correo electrónico no es válido.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => ":attribute debe ser una imagen.",
|
||||
"in" => "El :attribute seleccionado no es correcto.",
|
||||
"integer" => ":attribute debe ser un número entero.",
|
||||
"ip" => ":attribute debe ser una dirección IP correcta.",
|
||||
"max" => array(
|
||||
"numeric" => ":attribute no debe ser mayor que :max.",
|
||||
"file" => ":attribute no debe ser mayor que :max kilobytes.",
|
||||
"string" => ":attribute no debe tener como máximo :max caracteres.",
|
||||
),
|
||||
"mimes" => ":attribute debe ser un archivo del tipo: :values.",
|
||||
"min" => array(
|
||||
"numeric" => ":attribute debe ser como mínimo :min.",
|
||||
"file" => ":attribute debe ser como mínimo de :min kilobytes.",
|
||||
"string" => ":attribute debe contener como mínimo :min caracteres.",
|
||||
),
|
||||
"not_in" => "El :attribute seleccionado no es correcto.",
|
||||
"numeric" => ":attribute debe ser un número.",
|
||||
"regex" => ":attribute formato incorrecto.",
|
||||
"required" => ":attribute es obligatorio.",
|
||||
"required_if" => ":attribute es obligatrio cuando :other es :value.",
|
||||
"required_with" => ":attribute es obligatrio cuando :values es present.",
|
||||
"required_without" => ":attribute es obligatrio cuando :values es not present.",
|
||||
"same" => ":attribute y :other deben coincidir.",
|
||||
"size" => array(
|
||||
"numeric" => ":attribute debe tener :size.",
|
||||
"file" => ":attribute debe tener :size kilobytes.",
|
||||
"string" => ":attribute debe tener :size caracteres.",
|
||||
),
|
||||
"unique" => ":attribute ya ha sido introducido.",
|
||||
"url" => ":attribute formato incorrecto.",
|
||||
"statuslabel_type" => "Debe seleccionar un tipo de etiqueta de estado válido",
|
||||
"unique_undeleted" => ":attribute debe ser único.",
|
||||
'accepted' => ':attribute debe ser aceptado.',
|
||||
'active_url' => ':attribute no es una URL correcta.',
|
||||
'after' => ':attribute debe ser posterior a :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => ':attribute solo acepta letras.',
|
||||
'alpha_dash' => ':attribute solo acepta letras, números y guiones.',
|
||||
'alpha_num' => ':attribute solo acepta letras y números.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => ':attribute debe ser anterior a :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute debe estar entre :min - :max.',
|
||||
'file' => ':attribute debe estar entre :min - :max kilobytes.',
|
||||
'string' => ':attribute debe estar entre :min - :max caracteres.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => ':attribute debe ser verdadero o falso.',
|
||||
'confirmed' => ':attribute la confirmación no coincide.',
|
||||
'date' => ':attribute no es una fecha correcta.',
|
||||
'date_format' => ':attribute no cumple el formato :format.',
|
||||
'different' => ':attribute y :other deben ser diferentes.',
|
||||
'digits' => ':attribute debe tener :digits dígitos.',
|
||||
'digits_between' => ':attribute debe tener entre :min y :max dígitos.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => ':attribute formato incorrecto.',
|
||||
'exists' => 'El :attribute seleccionado no es correcto.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => ':attribute debe ser una imagen.',
|
||||
'in' => 'El :attribute seleccionado no es correcto.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => ':attribute debe ser un número entero.',
|
||||
'ip' => ':attribute debe ser una dirección IP correcta.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute no debe ser mayor que :max.',
|
||||
'file' => ':attribute no debe ser mayor que :max kilobytes.',
|
||||
'string' => ':attribute no debe tener como máximo :max caracteres.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => ':attribute debe ser un archivo del tipo: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute debe ser como mínimo :min.',
|
||||
'file' => ':attribute debe ser como mínimo de :min kilobytes.',
|
||||
'string' => ':attribute debe contener como mínimo :min caracteres.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'El :attribute seleccionado no es correcto.',
|
||||
'numeric' => ':attribute debe ser un número.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => ':attribute formato incorrecto.',
|
||||
'required' => ':attribute es obligatorio.',
|
||||
'required_if' => ':attribute es obligatrio cuando :other es :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => ':attribute es obligatrio cuando :values es present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => ':attribute es obligatrio cuando :values es not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => ':attribute y :other deben coincidir.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute debe tener :size.',
|
||||
'file' => ':attribute debe tener :size kilobytes.',
|
||||
'string' => ':attribute debe tener :size caracteres.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => ':attribute ya ha sido introducido.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => ':attribute formato incorrecto.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => "El campo :attribute contiene un caracter que no está permitido.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'El Mantenimiento de Equipo fue creado de manera exitosa.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Sin Completar',
|
||||
'warranty' => 'Garantía',
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Department does not exist.',
|
||||
'does_not_exist' => 'El departamento no existe.',
|
||||
'assoc_users' => 'This department is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this department and try again. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'asset' => 'Equipo',
|
||||
'bulk_checkout' => 'Asignar activos a un usuario',
|
||||
'checkin' => 'Quitar Equipo',
|
||||
'checkout' => 'Asignar a un usuario',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'Clonar Equipo',
|
||||
'deployable' => 'Desplegable',
|
||||
'deleted' => 'Este equipo ha sido eliminado. <a href="/hardware/:asset_id/restore">Click aqui para restaurarlot</a>.',
|
||||
|
|
|
@ -24,6 +24,12 @@ return array(
|
|||
'success' => 'Equipo restaurado correctamente.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'Archivo no eliminado. Por favor, vuelva a intentarlo.',
|
||||
'success' => 'Archivo eliminado correctamente.',
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Limite de alertas de expiración (en días)',
|
||||
'alert_inv_threshold' => 'Umbral de alerta del inventario',
|
||||
'asset_ids' => 'IDs de Recurso',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Generar IDs de equipo autoincrementales',
|
||||
'auto_increment_prefix' => 'Prefijo (opcional)',
|
||||
'auto_incrementing_help' => 'Activa la generación automática de IDs de equipo antes de configurar esto',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'Tipos de archivos permitidos son png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, y rar.',
|
||||
'history_user' => 'Historial de :name',
|
||||
'info' => 'Información',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'Último acceso',
|
||||
'ldap_config_text' => 'Las configuraciones de LDAP estàn en: Admin -> Settings. La ubicaciòn seleccionadada sera asignada a todos los usuarios importados.',
|
||||
'software_user' => 'Software asignado a :name',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Reporte de Equipos',
|
||||
'asset_tag' => 'Etiqueta',
|
||||
'assets_available' => 'equipos disponibles',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Equipos',
|
||||
'avatar_delete' => 'Eliminar Avatar',
|
||||
'avatar_upload' => 'Subir Avatar',
|
||||
'back' => 'Atras',
|
||||
'bad_data' => 'Ningún resultado. ¿Quizá un dato incorrecto?',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Procesar en Lote',
|
||||
'cancel' => 'Cancelar',
|
||||
'categories' => 'Categorías',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'Actual',
|
||||
'custom_report' => 'Reporte de Equipos Personalizado',
|
||||
'dashboard' => 'Tablero',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'Fecha Compra',
|
||||
'debug_warning' => '¡Advertencia!',
|
||||
'debug_warning_text' => 'Esta aplicación esta corriendo en modo producción con debugging activado. Esto puede exponer datos sensibles si su aplicación es accesible desde el exterior. Desactive el modo debug cambiando el valor <code>APP_DEBUG</code> en su archivo <code>.env</code> a <code>false</code>.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'Más Info',
|
||||
'name' => 'Nombre Localización',
|
||||
'next' => 'Siguiente',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'nuevo!',
|
||||
'no_depreciation' => 'No Amortizar',
|
||||
'no_results' => 'Sin Resultados.',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => ":attribute debe ser aceptado.",
|
||||
"active_url" => ":attribute no es una URL correcta.",
|
||||
"after" => ":attribute debe ser posterior a :date.",
|
||||
"alpha" => ":attribute solo acepta letras.",
|
||||
"alpha_dash" => ":attribute solo acepta letras, números y guiones.",
|
||||
"alpha_num" => ":attribute solo acepta letras y números.",
|
||||
"before" => ":attribute debe ser anterior a :date.",
|
||||
"between" => array(
|
||||
"numeric" => ":attribute debe estar entre :min - :max.",
|
||||
"file" => ":attribute debe estar entre :min - :max kilobytes.",
|
||||
"string" => ":attribute debe estar entre :min - :max caracteres.",
|
||||
),
|
||||
"boolean" => ":attribute debe ser verdadero o falso.",
|
||||
"confirmed" => ":attribute la confirmación no coincide.",
|
||||
"date" => ":attribute no es una fecha correcta.",
|
||||
"date_format" => ":attribute no cumple el formato :format.",
|
||||
"different" => ":attribute y :other deben ser diferentes.",
|
||||
"digits" => ":attribute debe tener :digits dígitos.",
|
||||
"digits_between" => ":attribute debe tener entre :min y :max dígitos.",
|
||||
"email" => ":attribute formato incorrecto.",
|
||||
"exists" => "El :attribute seleccionado no es correcto.",
|
||||
"email_array" => "Una o más direcciones de correo electrónico no es válido.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => ":attribute debe ser una imagen.",
|
||||
"in" => "El :attribute seleccionado no es correcto.",
|
||||
"integer" => ":attribute debe ser un número entero.",
|
||||
"ip" => ":attribute debe ser una dirección IP correcta.",
|
||||
"max" => array(
|
||||
"numeric" => ":attribute no debe ser mayor que :max.",
|
||||
"file" => ":attribute no debe ser mayor que :max kilobytes.",
|
||||
"string" => ":attribute no debe tener como máximo :max caracteres.",
|
||||
),
|
||||
"mimes" => ":attribute debe ser un archivo del tipo: :values.",
|
||||
"min" => array(
|
||||
"numeric" => ":attribute debe ser como mínimo :min.",
|
||||
"file" => ":attribute debe ser como mínimo de :min kilobytes.",
|
||||
"string" => ":attribute debe contener como mínimo :min caracteres.",
|
||||
),
|
||||
"not_in" => "El :attribute seleccionado no es correcto.",
|
||||
"numeric" => ":attribute debe ser un número.",
|
||||
"regex" => ":attribute formato incorrecto.",
|
||||
"required" => ":attribute es obligatorio.",
|
||||
"required_if" => ":attribute es obligatrio cuando :other es :value.",
|
||||
"required_with" => ":attribute es obligatrio cuando :values es present.",
|
||||
"required_without" => ":attribute es obligatrio cuando :values es not present.",
|
||||
"same" => ":attribute y :other deben coincidir.",
|
||||
"size" => array(
|
||||
"numeric" => ":attribute debe tener :size.",
|
||||
"file" => ":attribute debe tener :size kilobytes.",
|
||||
"string" => ":attribute debe tener :size caracteres.",
|
||||
),
|
||||
"unique" => ":attribute ya ha sido introducido.",
|
||||
"url" => ":attribute formato incorrecto.",
|
||||
"statuslabel_type" => "Debe seleccionar un tipo de etiqueta de estado válido",
|
||||
"unique_undeleted" => ":attribute debe ser único.",
|
||||
'accepted' => ':attribute debe ser aceptado.',
|
||||
'active_url' => ':attribute no es una URL correcta.',
|
||||
'after' => ':attribute debe ser posterior a :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => ':attribute solo acepta letras.',
|
||||
'alpha_dash' => ':attribute solo acepta letras, números y guiones.',
|
||||
'alpha_num' => ':attribute solo acepta letras y números.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => ':attribute debe ser anterior a :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute debe estar entre :min - :max.',
|
||||
'file' => ':attribute debe estar entre :min - :max kilobytes.',
|
||||
'string' => ':attribute debe estar entre :min - :max caracteres.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => ':attribute debe ser verdadero o falso.',
|
||||
'confirmed' => ':attribute la confirmación no coincide.',
|
||||
'date' => ':attribute no es una fecha correcta.',
|
||||
'date_format' => ':attribute no cumple el formato :format.',
|
||||
'different' => ':attribute y :other deben ser diferentes.',
|
||||
'digits' => ':attribute debe tener :digits dígitos.',
|
||||
'digits_between' => ':attribute debe tener entre :min y :max dígitos.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => ':attribute formato incorrecto.',
|
||||
'exists' => 'El :attribute seleccionado no es correcto.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => ':attribute debe ser una imagen.',
|
||||
'in' => 'El :attribute seleccionado no es correcto.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => ':attribute debe ser un número entero.',
|
||||
'ip' => ':attribute debe ser una dirección IP correcta.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute no debe ser mayor que :max.',
|
||||
'file' => ':attribute no debe ser mayor que :max kilobytes.',
|
||||
'string' => ':attribute no debe tener como máximo :max caracteres.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => ':attribute debe ser un archivo del tipo: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute debe ser como mínimo :min.',
|
||||
'file' => ':attribute debe ser como mínimo de :min kilobytes.',
|
||||
'string' => ':attribute debe contener como mínimo :min caracteres.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'El :attribute seleccionado no es correcto.',
|
||||
'numeric' => ':attribute debe ser un número.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => ':attribute formato incorrecto.',
|
||||
'required' => ':attribute es obligatorio.',
|
||||
'required_if' => ':attribute es obligatrio cuando :other es :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => ':attribute es obligatrio cuando :values es present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => ':attribute es obligatrio cuando :values es not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => ':attribute y :other deben coincidir.',
|
||||
'size' => [
|
||||
'numeric' => ':attribute debe tener :size.',
|
||||
'file' => ':attribute debe tener :size kilobytes.',
|
||||
'string' => ':attribute debe tener :size caracteres.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => ':attribute ya ha sido introducido.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => ':attribute formato incorrecto.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => "El campo :attribute contiene un caracter que no está permitido.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'Asset Maintenance created successfully.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Not Completed Yet',
|
||||
'warranty' => 'Warranty',
|
||||
|
|
|
@ -7,17 +7,17 @@ return array(
|
|||
'asset' => 'Vahend',
|
||||
'bulk_checkout' => 'Checkout Assets to User',
|
||||
'checkin' => 'Checkin Asset',
|
||||
'checkout' => 'Checkout Asset to User',
|
||||
'checkout' => 'Checkout Asset',
|
||||
'clone' => 'Klooni vahend',
|
||||
'deployable' => 'Deployable',
|
||||
'deleted' => 'This asset has been deleted. <a href="/hardware/:asset_id/restore">Click here to restore it</a>.',
|
||||
'edit' => 'Muuda vahendit',
|
||||
'filetype_info' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.',
|
||||
'model_deleted' => 'This Assets model has been deleted. You must restore the model before you can restore the Asset.<br/> <a href="/hardware/models/:model_id/restore">Click here to restore the model</a>.',
|
||||
'requestable' => 'Requestable',
|
||||
'requested' => 'Requested',
|
||||
'restore' => 'Restore Asset',
|
||||
'pending' => 'Pending',
|
||||
'requestable' => 'Taodeldav',
|
||||
'requested' => 'Taotletud',
|
||||
'restore' => 'Taasta vara',
|
||||
'pending' => 'Ootel',
|
||||
'undeployable' => 'Undeployable',
|
||||
'view' => 'Vaata vahendit',
|
||||
);
|
||||
|
|
|
@ -4,13 +4,13 @@ return array(
|
|||
|
||||
'undeployable' => '<strong>Warning: </strong> This asset has been marked as currently undeployable.
|
||||
If this status has changed, please update the asset status.',
|
||||
'does_not_exist' => 'Asset does not exist.',
|
||||
'does_not_exist' => 'Vahend puudub.',
|
||||
'does_not_exist_or_not_requestable' => 'Nice try. That asset does not exist or is not requestable.',
|
||||
'assoc_users' => 'This asset is currently checked out to a user and cannot be deleted. Please check the asset in first, and then try deleting again. ',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'Asset was not created, please try again. :(',
|
||||
'success' => 'Asset created successfully. :)'
|
||||
'error' => 'Vahendit ei loodud, palun proovi uuesti. :(',
|
||||
'success' => 'Vahendi loomine õnnestus. :)'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
|
@ -24,6 +24,12 @@ return array(
|
|||
'success' => 'Asset restored successfully.'
|
||||
),
|
||||
|
||||
'audit' => array(
|
||||
'error' => 'Asset audit was unsuccessful. Please try again.',
|
||||
'success' => 'Asset audit successfully logged.'
|
||||
),
|
||||
|
||||
|
||||
'deletefile' => array(
|
||||
'error' => 'File not deleted. Please try again.',
|
||||
'success' => 'File successfully deleted.',
|
||||
|
|
|
@ -10,6 +10,10 @@ return array(
|
|||
'alert_interval' => 'Expiring Alerts Threshold (in days)',
|
||||
'alert_inv_threshold' => 'Inventory Alert Threshold',
|
||||
'asset_ids' => 'Asset IDs',
|
||||
'audit_interval' => 'Audit Interval',
|
||||
'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.',
|
||||
'audit_warning_days' => 'Audit Warning Threshold',
|
||||
'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?',
|
||||
'auto_increment_assets' => 'Generate auto-incrementing asset IDs',
|
||||
'auto_increment_prefix' => 'Prefix (optional)',
|
||||
'auto_incrementing_help' => 'Enable auto-incrementing asset IDs first to set this',
|
||||
|
|
|
@ -13,6 +13,7 @@ return array(
|
|||
'filetype_info' => 'Lubatud failitüübid on png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, ja rar.',
|
||||
'history_user' => 'Kasutaja :name ajalugu',
|
||||
'info' => 'Info',
|
||||
'restore_user' => 'Click here to restore them.',
|
||||
'last_login' => 'Viimane sisselogimine',
|
||||
'ldap_config_text' => 'LDAP configuration settings can be found Admin > Settings. The (optional) selected location will be set for all imported users.',
|
||||
'software_user' => 'Kasutaja :name valdusesse antud tarkvara',
|
||||
|
|
|
@ -18,11 +18,15 @@
|
|||
'asset_report' => 'Vahendite aruanne',
|
||||
'asset_tag' => 'Asset Tag',
|
||||
'assets_available' => 'assets available',
|
||||
'audit' => 'Audit',
|
||||
'audit_report' => 'Audit Log',
|
||||
'assets' => 'Vahendid',
|
||||
'avatar_delete' => 'Kustuta profiilipilt',
|
||||
'avatar_upload' => 'Lae profiilipilt',
|
||||
'back' => 'Tagasi',
|
||||
'bad_data' => 'Nothing found. Maybe bad data?',
|
||||
'bulkaudit' => 'Bulk Audit',
|
||||
'bulkaudit_status' => 'Audit Status',
|
||||
'bulk_checkout' => 'Bulk Checkout',
|
||||
'cancel' => 'Loobu',
|
||||
'categories' => 'Kategooriad',
|
||||
|
@ -52,6 +56,8 @@
|
|||
'current' => 'Praegune',
|
||||
'custom_report' => 'Custom Asset Report',
|
||||
'dashboard' => 'Töölaud',
|
||||
'days' => 'days',
|
||||
'days_to_next_audit' => 'Days to Next Audit',
|
||||
'date' => 'Kuupäev',
|
||||
'debug_warning' => 'Hoiatus!',
|
||||
'debug_warning_text' => 'This application is running in production mode with debugging enabled. This can expose sensitive data if your application is accessible to the outside world. Disable debug mode by setting the <code>APP_DEBUG</code> value in your <code>.env</code> file to <code>false</code>.',
|
||||
|
@ -117,6 +123,8 @@
|
|||
'moreinfo' => 'Lisainfo',
|
||||
'name' => 'Nimi',
|
||||
'next' => 'Järgmine',
|
||||
'next_audit_date' => 'Next Audit Date',
|
||||
'last_audit' => 'Last Audit',
|
||||
'new' => 'uus!',
|
||||
'no_depreciation' => 'No Depreciation',
|
||||
'no_results' => 'No Results.',
|
||||
|
|
|
@ -13,62 +13,91 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
"accepted" => "The :attribute must be accepted.",
|
||||
"active_url" => "The :attribute is not a valid URL.",
|
||||
"after" => "The :attribute must be a date after :date.",
|
||||
"alpha" => "The :attribute may only contain letters.",
|
||||
"alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
|
||||
"alpha_num" => "The :attribute may only contain letters and numbers.",
|
||||
"before" => "The :attribute must be a date before :date.",
|
||||
"between" => array(
|
||||
"numeric" => "The :attribute must be between :min - :max.",
|
||||
"file" => "The :attribute must be between :min - :max kilobytes.",
|
||||
"string" => "The :attribute must be between :min - :max characters.",
|
||||
),
|
||||
"boolean" => "The :attribute must be true or false.",
|
||||
"confirmed" => "The :attribute confirmation does not match.",
|
||||
"date" => "The :attribute is not a valid date.",
|
||||
"date_format" => "The :attribute does not match the format :format.",
|
||||
"different" => "The :attribute and :other must be different.",
|
||||
"digits" => "The :attribute must be :digits digits.",
|
||||
"digits_between" => "The :attribute must be between :min and :max digits.",
|
||||
"email" => "The :attribute format is invalid.",
|
||||
"exists" => "The selected :attribute is invalid.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"image" => "The :attribute must be an image.",
|
||||
"in" => "The selected :attribute is invalid.",
|
||||
"integer" => "The :attribute must be an integer.",
|
||||
"ip" => "The :attribute must be a valid IP address.",
|
||||
"max" => array(
|
||||
"numeric" => "The :attribute may not be greater than :max.",
|
||||
"file" => "The :attribute may not be greater than :max kilobytes.",
|
||||
"string" => "The :attribute may not be greater than :max characters.",
|
||||
),
|
||||
"mimes" => "The :attribute must be a file of type: :values.",
|
||||
"min" => array(
|
||||
"numeric" => "The :attribute must be at least :min.",
|
||||
"file" => "The :attribute must be at least :min kilobytes.",
|
||||
"string" => "The :attribute must be at least :min characters.",
|
||||
),
|
||||
"not_in" => "The selected :attribute is invalid.",
|
||||
"numeric" => "The :attribute must be a number.",
|
||||
"regex" => "The :attribute format is invalid.",
|
||||
"required" => "The :attribute field is required.",
|
||||
"required_if" => "The :attribute field is required when :other is :value.",
|
||||
"required_with" => "The :attribute field is required when :values is present.",
|
||||
"required_without" => "The :attribute field is required when :values is not present.",
|
||||
"same" => "The :attribute and :other must match.",
|
||||
"size" => array(
|
||||
"numeric" => "The :attribute must be :size.",
|
||||
"file" => "The :attribute must be :size kilobytes.",
|
||||
"string" => "The :attribute must be :size characters.",
|
||||
),
|
||||
"unique" => "The :attribute has already been taken.",
|
||||
"url" => "The :attribute format is invalid.",
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
'array' => 'The :attribute must have at least :min items.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'regex' => 'The :attribute format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_unless' => 'The :attribute field is required unless :other is in :values.',
|
||||
'required_with' => 'The :attribute field is required when :values is present.',
|
||||
'required_with_all' => 'The :attribute field is required when :values is present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Custom Validation Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify custom validation messages for attributes using the
|
||||
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||
| specify a specific custom language line for a given attribute rule.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
@ -82,8 +111,14 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'custom' => array(),
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
'custom' => [
|
||||
'alpha_space' => "The :attribute field contains a character that is not allowed.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"hashed_pass" => "Your current password is incorrect",
|
||||
'dumbpwd' => 'That password is too common.',
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
@ -96,6 +131,6 @@ return array(
|
|||
|
|
||||
*/
|
||||
|
||||
'attributes' => array(),
|
||||
'attributes' => [],
|
||||
|
||||
);
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
'success' => 'نگهدارنده دارایی با موفقیت ایجاد شد.'
|
||||
],
|
||||
'edit' => [
|
||||
'error' => 'Asset Maintenance was not created, please try again.',
|
||||
'success' => 'Asset Maintenance created successfully.'
|
||||
'error' => 'Asset Maintenance was not edited, please try again.',
|
||||
'success' => 'Asset Maintenance edited successfully.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'هنوز تکمیل نشده',
|
||||
'warranty' => 'ضمانت',
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue