Merge remote-tracking branch 'origin/develop'

This commit is contained in:
snipe 2024-01-24 15:36:45 +00:00
commit f760397837
768 changed files with 1393 additions and 677 deletions

View file

@ -41,29 +41,29 @@ class LabelsController extends Controller
$exampleAsset->status_id = 1; $exampleAsset->status_id = 1;
$exampleAsset->company = new Company([ $exampleAsset->company = new Company([
'name' => 'Test Company Limited', 'name' => trans('admin/labels/table.example_company'),
'phone' => '1-555-555-5555', 'phone' => '1-555-555-5555',
'email' => 'company@example.com', 'email' => 'company@example.com',
]); ]);
$exampleAsset->setRelation('assignedTo', new User(['first_name' => 'Luke', 'last_name' => 'Skywalker'])); $exampleAsset->setRelation('assignedTo', new User(['first_name' => 'Luke', 'last_name' => 'Skywalker']));
$exampleAsset->defaultLoc = new Location(['name' => 'Building 1', 'phone' => '1-555-555-5555']); $exampleAsset->defaultLoc = new Location(['name' => trans('admin/labels/table.example_defaultloc'), 'phone' => '1-555-555-5555']);
$exampleAsset->location = new Location(['name' => 'Building 2', 'phone' => '1-555-555-5555']); $exampleAsset->location = new Location(['name' => trans('admin/labels/table.example_location'), 'phone' => '1-555-555-5555']);
$exampleAsset->model = new AssetModel(); $exampleAsset->model = new AssetModel();
$exampleAsset->model->id = 999999; $exampleAsset->model->id = 999999;
$exampleAsset->model->name = 'Test Model'; $exampleAsset->model->name = trans('admin/labels/table.example_model');
$exampleAsset->model->model_number = 'MDL5678'; $exampleAsset->model->model_number = 'MDL5678';
$exampleAsset->model->manufacturer = new Manufacturer(); $exampleAsset->model->manufacturer = new Manufacturer();
$exampleAsset->model->manufacturer->id = 999999; $exampleAsset->model->manufacturer->id = 999999;
$exampleAsset->model->manufacturer->name = 'Test Manufacturing Inc.'; $exampleAsset->model->manufacturer->name = trans('admin/labels/table.example_manufacturer');
$exampleAsset->model->manufacturer->support_email = 'support@test.com'; $exampleAsset->model->manufacturer->support_email = 'support@test.com';
$exampleAsset->model->manufacturer->support_phone = '1-555-555-5555'; $exampleAsset->model->manufacturer->support_phone = '1-555-555-5555';
$exampleAsset->model->manufacturer->support_url = 'https://example.com'; $exampleAsset->model->manufacturer->support_url = 'https://example.com';
$exampleAsset->supplier = new Supplier(['name' => 'Test Company Limited']); $exampleAsset->supplier = new Supplier(['name' => trans('admin/labels/table.example_company')]);
$exampleAsset->model->category = new Category(); $exampleAsset->model->category = new Category();
$exampleAsset->model->category->id = 999999; $exampleAsset->model->category->id = 999999;
$exampleAsset->model->category->name = 'Test Category'; $exampleAsset->model->category->name = trans('admin/labels/table.example_category');
$settings = Setting::getSettings(); $settings = Setting::getSettings();
if (request()->has('settings')) { if (request()->has('settings')) {

View file

@ -126,6 +126,7 @@ class LicenseSeat extends SnipeModel implements ICompanyableChild
{ {
return $query->leftJoin('users as license_seat_users', 'license_seats.assigned_to', '=', 'license_seat_users.id') return $query->leftJoin('users as license_seat_users', 'license_seats.assigned_to', '=', 'license_seat_users.id')
->leftJoin('departments as license_user_dept', 'license_user_dept.id', '=', 'license_seat_users.department_id') ->leftJoin('departments as license_user_dept', 'license_user_dept.id', '=', 'license_seat_users.department_id')
->whereNotNull('license_seats.assigned_to')
->orderBy('license_user_dept.name', $order); ->orderBy('license_user_dept.name', $order);
} }
} }

View file

@ -2,7 +2,9 @@
return array( return array(
'companies' => 'maatskappye', 'companies' => 'maatskappye',
'create' => 'Skep maatskappy', 'create' => 'Skep maatskappy',
'email' => 'Company Email',
'title' => 'maatskappy', 'title' => 'maatskappy',
'phone' => 'Company Phone',
'update' => 'Update Company', 'update' => 'Update Company',
'name' => 'maatskappynaam', 'name' => 'maatskappynaam',
'id' => 'ID', 'id' => 'ID',

View file

@ -23,6 +23,7 @@ return [
'depreciation' => 'waardevermindering', 'depreciation' => 'waardevermindering',
'depreciates_on' => 'Depresiate On', 'depreciates_on' => 'Depresiate On',
'default_location' => 'Verstek Ligging', 'default_location' => 'Verstek Ligging',
'default_location_phone' => 'Default Location Phone',
'eol_date' => 'EOL Datum', 'eol_date' => 'EOL Datum',
'eol_rate' => 'EOL-tarief', 'eol_rate' => 'EOL-tarief',
'expected_checkin' => 'Verwagte tjekdatum', 'expected_checkin' => 'Verwagte tjekdatum',

View file

@ -4,6 +4,7 @@ return [
'asset_tag' => 'Bate-tag', 'asset_tag' => 'Bate-tag',
'asset_model' => 'model', 'asset_model' => 'model',
'assigned_to' => 'Toevertrou aan',
'book_value' => 'Current Value', 'book_value' => 'Current Value',
'change' => 'In uit', 'change' => 'In uit',
'checkout_date' => 'Checkout Datum', 'checkout_date' => 'Checkout Datum',

View file

@ -1,7 +1,13 @@
<?php <?php
return [ return [
'example_company' => 'Test Company Limited',
'example_defaultloc' => 'Building 1',
'example_category' => 'Test Category',
'example_location' => 'Building 2',
'example_manufacturer' => 'Test Manufacturing Inc.',
'example_model' => 'Test Model',
'example_supplier' => 'Test Company Limited',
'labels_per_page' => 'Labels', 'labels_per_page' => 'Labels',
'support_fields' => 'Fields', 'support_fields' => 'Fields',
'support_asset_tag' => 'tag', 'support_asset_tag' => 'tag',

View file

@ -34,6 +34,7 @@ return [
'asset_checked_out' => 'Gekontroleer', 'asset_checked_out' => 'Gekontroleer',
'asset_expected_checkin' => 'Expected Checkin', 'asset_expected_checkin' => 'Expected Checkin',
'date' => 'datum:', 'date' => 'datum:',
'phone' => 'Location Phone',
'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):',
'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):',
'signed_by_location_manager' => 'Signed By (Location Manager):', 'signed_by_location_manager' => 'Signed By (Location Manager):',

View file

@ -2,7 +2,7 @@
return array( return array(
'support_url_help' => 'Variables <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, and <code>{MODEL_NAME}</code> may be used in your URL to have those values auto-populate when viewing assets - for example https://support.apple.com/{LOCALE}/{SERIAL}.', 'support_url_help' => 'Variables <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, and <code>{MODEL_NAME}</code> may be used in your URL to have those values auto-populate when viewing assets - for example https://checkcoverage.apple.com/{LOCALE}/{SERIAL}.',
'does_not_exist' => 'Vervaardiger bestaan nie.', 'does_not_exist' => 'Vervaardiger bestaan nie.',
'assoc_users' => 'Hierdie vervaardiger word tans geassosieer met ten minste een model en kan nie verwyder word nie. Dateer asseblief jou modelle op om nie meer hierdie vervaardiger te gebruik nie en probeer weer.', 'assoc_users' => 'Hierdie vervaardiger word tans geassosieer met ten minste een model en kan nie verwyder word nie. Dateer asseblief jou modelle op om nie meer hierdie vervaardiger te gebruik nie en probeer weer.',

View file

@ -12,6 +12,5 @@ return array(
'support_url' => 'Ondersteunings-URL', 'support_url' => 'Ondersteunings-URL',
'warranty_lookup_url' => 'Warranty Lookup URL', 'warranty_lookup_url' => 'Warranty Lookup URL',
'update' => 'Update Fabrikant', 'update' => 'Update Fabrikant',
'url' => 'URL',
); );

View file

@ -19,7 +19,6 @@ return array(
'state' => 'staat', 'state' => 'staat',
'suppliers' => 'Verskaffers', 'suppliers' => 'Verskaffers',
'update' => 'Update Verskaffer', 'update' => 'Update Verskaffer',
'url' => 'URL',
'view' => 'Kyk verskaffer', 'view' => 'Kyk verskaffer',
'view_assets_for' => 'Bekyk bates vir', 'view_assets_for' => 'Bekyk bates vir',
'zip' => 'Poskode', 'zip' => 'Poskode',

View file

@ -12,7 +12,7 @@ return [
'remember_me' => 'Onthou my', 'remember_me' => 'Onthou my',
'username_help_top' => 'Enter your <strong>username</strong> to be emailed a password reset link.', 'username_help_top' => 'Enter your <strong>username</strong> to be emailed a password reset link.',
'username_help_bottom' => 'Your username and email address <em>may</em> be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator. <br><br><strong>Usernames without an associated email address will not be emailed a password reset link.</strong> ', 'username_help_bottom' => 'Your username and email address <em>may</em> be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator. <br><br><strong>Usernames without an associated email address will not be emailed a password reset link.</strong> ',
'google_login' => 'Or login with Google Workspace', 'google_login' => 'Login with Google Workspace',
'google_login_failed' => 'Google Login failed, please try again.', 'google_login_failed' => 'Google Login failed, please try again.',
]; ];

View file

@ -499,5 +499,7 @@ return [
'action_permission_generic' => 'You do not have permission to :action this :item_type', 'action_permission_generic' => 'You do not have permission to :action this :item_type',
'edit' => 'wysig', 'edit' => 'wysig',
'action_source' => 'Action Source', 'action_source' => 'Action Source',
'or' => 'or',
'url' => 'URL',
]; ];

View file

@ -96,7 +96,7 @@ return [
'url' => 'Die: Attribuutformaat is ongeldig.', 'url' => 'Die: Attribuutformaat is ongeldig.',
'unique_undeleted' => 'Die: Attribuut moet uniek wees.', 'unique_undeleted' => 'Die: Attribuut moet uniek wees.',
'non_circular' => 'The :attribute must not create a circular reference.', 'non_circular' => 'The :attribute must not create a circular reference.',
'not_array' => ':atribute harus array.', 'not_array' => ':attribute cannot be an array.',
'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.',
'letters' => 'Password must contain at least one letter.', 'letters' => 'Password must contain at least one letter.',
'numbers' => 'Password must contain at least one number.', 'numbers' => 'Password must contain at least one number.',

View file

@ -2,7 +2,9 @@
return array( return array(
'companies' => 'Companies', 'companies' => 'Companies',
'create' => 'Create Company', 'create' => 'Create Company',
'email' => 'Company Email',
'title' => 'Company', 'title' => 'Company',
'phone' => 'Company Phone',
'update' => 'Update Company', 'update' => 'Update Company',
'name' => 'Company Name', 'name' => 'Company Name',
'id' => 'ID', 'id' => 'ID',

View file

@ -23,6 +23,7 @@ return [
'depreciation' => 'Depreciation', 'depreciation' => 'Depreciation',
'depreciates_on' => 'Depreciates On', 'depreciates_on' => 'Depreciates On',
'default_location' => 'Default Location', 'default_location' => 'Default Location',
'default_location_phone' => 'Default Location Phone',
'eol_date' => 'EOL Date', 'eol_date' => 'EOL Date',
'eol_rate' => 'EOL Rate', 'eol_rate' => 'EOL Rate',
'expected_checkin' => 'Expected Checkin Date', 'expected_checkin' => 'Expected Checkin Date',

View file

@ -4,6 +4,7 @@ return [
'asset_tag' => 'የንብረት መለያ', 'asset_tag' => 'የንብረት መለያ',
'asset_model' => 'ሞዴል', 'asset_model' => 'ሞዴል',
'assigned_to' => 'Assigned To',
'book_value' => 'Current Value', 'book_value' => 'Current Value',
'change' => 'In/Out', 'change' => 'In/Out',
'checkout_date' => 'Checkout Date', 'checkout_date' => 'Checkout Date',

View file

@ -1,7 +1,13 @@
<?php <?php
return [ return [
'example_company' => 'Test Company Limited',
'example_defaultloc' => 'Building 1',
'example_category' => 'Test Category',
'example_location' => 'Building 2',
'example_manufacturer' => 'Test Manufacturing Inc.',
'example_model' => 'Test Model',
'example_supplier' => 'Test Company Limited',
'labels_per_page' => 'Labels', 'labels_per_page' => 'Labels',
'support_fields' => 'Fields', 'support_fields' => 'Fields',
'support_asset_tag' => 'Tag', 'support_asset_tag' => 'Tag',

View file

@ -34,6 +34,7 @@ return [
'asset_checked_out' => 'Checked Out', 'asset_checked_out' => 'Checked Out',
'asset_expected_checkin' => 'Expected Checkin', 'asset_expected_checkin' => 'Expected Checkin',
'date' => 'Date:', 'date' => 'Date:',
'phone' => 'Location Phone',
'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):',
'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):',
'signed_by_location_manager' => 'Signed By (Location Manager):', 'signed_by_location_manager' => 'Signed By (Location Manager):',

View file

@ -2,7 +2,7 @@
return array( return array(
'support_url_help' => 'Variables <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, and <code>{MODEL_NAME}</code> may be used in your URL to have those values auto-populate when viewing assets - for example https://support.apple.com/{LOCALE}/{SERIAL}.', 'support_url_help' => 'Variables <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, and <code>{MODEL_NAME}</code> may be used in your URL to have those values auto-populate when viewing assets - for example https://checkcoverage.apple.com/{LOCALE}/{SERIAL}.',
'does_not_exist' => 'Manufacturer does not exist.', 'does_not_exist' => 'Manufacturer does not exist.',
'assoc_users' => 'This manufacturer is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this manufacturer and try again. ', 'assoc_users' => 'This manufacturer is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this manufacturer and try again. ',

View file

@ -12,6 +12,5 @@ return array(
'support_url' => 'Support URL', 'support_url' => 'Support URL',
'warranty_lookup_url' => 'Warranty Lookup URL', 'warranty_lookup_url' => 'Warranty Lookup URL',
'update' => 'Update Manufacturer', 'update' => 'Update Manufacturer',
'url' => 'URL',
); );

View file

@ -19,7 +19,6 @@ return array(
'state' => 'State', 'state' => 'State',
'suppliers' => 'Suppliers', 'suppliers' => 'Suppliers',
'update' => 'Update Supplier', 'update' => 'Update Supplier',
'url' => 'URL',
'view' => 'View Supplier', 'view' => 'View Supplier',
'view_assets_for' => 'View Assets for', 'view_assets_for' => 'View Assets for',
'zip' => 'Postal Code', 'zip' => 'Postal Code',

View file

@ -12,7 +12,7 @@ return [
'remember_me' => 'Remember Me', 'remember_me' => 'Remember Me',
'username_help_top' => 'Enter your <strong>username</strong> to be emailed a password reset link.', 'username_help_top' => 'Enter your <strong>username</strong> to be emailed a password reset link.',
'username_help_bottom' => 'Your username and email address <em>may</em> be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator. <br><br><strong>Usernames without an associated email address will not be emailed a password reset link.</strong> ', 'username_help_bottom' => 'Your username and email address <em>may</em> be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator. <br><br><strong>Usernames without an associated email address will not be emailed a password reset link.</strong> ',
'google_login' => 'Or login with Google Workspace', 'google_login' => 'Login with Google Workspace',
'google_login_failed' => 'Google Login failed, please try again.', 'google_login_failed' => 'Google Login failed, please try again.',
]; ];

View file

@ -499,5 +499,7 @@ return [
'action_permission_generic' => 'You do not have permission to :action this :item_type', 'action_permission_generic' => 'You do not have permission to :action this :item_type',
'edit' => 'edit', 'edit' => 'edit',
'action_source' => 'Action Source', 'action_source' => 'Action Source',
'or' => 'or',
'url' => 'URL',
]; ];

View file

@ -96,7 +96,7 @@ return [
'url' => 'The :attribute format is invalid.', 'url' => 'The :attribute format is invalid.',
'unique_undeleted' => 'The :attribute must be unique.', 'unique_undeleted' => 'The :attribute must be unique.',
'non_circular' => 'The :attribute must not create a circular reference.', 'non_circular' => 'The :attribute must not create a circular reference.',
'not_array' => ':atribute harus array.', 'not_array' => ':attribute cannot be an array.',
'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.',
'letters' => 'Password must contain at least one letter.', 'letters' => 'Password must contain at least one letter.',
'numbers' => 'Password must contain at least one number.', 'numbers' => 'Password must contain at least one number.',

View file

@ -2,7 +2,9 @@
return array( return array(
'companies' => 'الشركات', 'companies' => 'الشركات',
'create' => 'إنشاء شركة', 'create' => 'إنشاء شركة',
'email' => 'البريد الإلكتروني للشركة',
'title' => 'شركة', 'title' => 'شركة',
'phone' => 'هاتف الشركة',
'update' => 'تحديث الشركة', 'update' => 'تحديث الشركة',
'name' => 'إسم الشركة', 'name' => 'إسم الشركة',
'id' => 'رقم التعريف', 'id' => 'رقم التعريف',

View file

@ -23,6 +23,7 @@ return [
'depreciation' => 'الاستهلاك', 'depreciation' => 'الاستهلاك',
'depreciates_on' => 'ينتهي الاستهلاك في', 'depreciates_on' => 'ينتهي الاستهلاك في',
'default_location' => 'الموقع الافتراضي', 'default_location' => 'الموقع الافتراضي',
'default_location_phone' => 'هاتف الموقع الافتراضي',
'eol_date' => 'تاريخ نهاية العمر', 'eol_date' => 'تاريخ نهاية العمر',
'eol_rate' => 'معدل انتهاء العمر', 'eol_rate' => 'معدل انتهاء العمر',
'expected_checkin' => 'تاريخ الادخال المتوقع', 'expected_checkin' => 'تاريخ الادخال المتوقع',

View file

@ -4,6 +4,7 @@ return [
'asset_tag' => 'ترميز الأصل', 'asset_tag' => 'ترميز الأصل',
'asset_model' => 'الموديل', 'asset_model' => 'الموديل',
'assigned_to' => 'تعيين إلى',
'book_value' => 'القيمة الحالية', 'book_value' => 'القيمة الحالية',
'change' => 'ادخال \\ اخراج', 'change' => 'ادخال \\ اخراج',
'checkout_date' => 'تاريخ الاخراج', 'checkout_date' => 'تاريخ الاخراج',

View file

@ -1,7 +1,13 @@
<?php <?php
return [ return [
'example_company' => 'شركة اختبار محدودة',
'example_defaultloc' => 'المبنى 1',
'example_category' => 'اختبار الفئة',
'example_location' => 'المبنى 2',
'example_manufacturer' => 'شركة اختبار التصنيع.',
'example_model' => 'اختبار الموديل',
'example_supplier' => 'شركة اختبار محدودة',
'labels_per_page' => 'التسميات', 'labels_per_page' => 'التسميات',
'support_fields' => 'حقول', 'support_fields' => 'حقول',
'support_asset_tag' => 'الترميز', 'support_asset_tag' => 'الترميز',

View file

@ -34,6 +34,7 @@ return [
'asset_checked_out' => 'الاخراج', 'asset_checked_out' => 'الاخراج',
'asset_expected_checkin' => 'تاريخ الادخال المتوقع', 'asset_expected_checkin' => 'تاريخ الادخال المتوقع',
'date' => 'التاريخ:', 'date' => 'التاريخ:',
'phone' => 'هاتف الموقع',
'signed_by_asset_auditor' => 'موقعة من قبل (مراجع الأصل):', 'signed_by_asset_auditor' => 'موقعة من قبل (مراجع الأصل):',
'signed_by_finance_auditor' => 'موقعة من قبل (مراجع الحسابات المالي):', 'signed_by_finance_auditor' => 'موقعة من قبل (مراجع الحسابات المالي):',
'signed_by_location_manager' => 'توقيع بواسطة (مدير الموقع):', 'signed_by_location_manager' => 'توقيع بواسطة (مدير الموقع):',

View file

@ -2,7 +2,7 @@
return array( return array(
'support_url_help' => 'المتغيرات <code>{LOCALE}</code>، <code>{SERIAL}</code>، <code>{MODEL_NUMBER}</code>، و <code>{MODEL_NAME}</code> قد يستخدم في عنوان URL الخاص بك للحصول على هذه القيم للتعبئة التلقائية عند عرض الأصول-على سبيل المثال https://support. pple.com/{LOCALE}/{SERIAL}.', 'support_url_help' => 'المتغيرات <code>{LOCALE}</code>، <code>{SERIAL}</code>، <code>{MODEL_NUMBER}</code>، و <code>{MODEL_NAME}</code> قد يستخدم في عنوان URL الخاص بك للحصول على هذه القيم للتعبئة التلقائية عند عرض الأصول - على سبيل المثال https://checkcoverage. pple.com/{LOCALE}/{SERIAL}.',
'does_not_exist' => 'الشركة المصنعة غير موجودة.', 'does_not_exist' => 'الشركة المصنعة غير موجودة.',
'assoc_users' => 'هذه الشركة المصنعة مرتبطة حاليا مع موديل واحد على الأقل وبالتالي لا يمكن حذفها. يرجى تحديث الموديلات الخاصة بك بحيث لا تشير لهذه الشركة المصنعة وحاول مرة أخرى. ', 'assoc_users' => 'هذه الشركة المصنعة مرتبطة حاليا مع موديل واحد على الأقل وبالتالي لا يمكن حذفها. يرجى تحديث الموديلات الخاصة بك بحيث لا تشير لهذه الشركة المصنعة وحاول مرة أخرى. ',

View file

@ -12,6 +12,5 @@ return array(
'support_url' => 'رابط الدعم التقني', 'support_url' => 'رابط الدعم التقني',
'warranty_lookup_url' => 'رابط البحث عن الضمان', 'warranty_lookup_url' => 'رابط البحث عن الضمان',
'update' => 'تحديث الشركة المصنعة', 'update' => 'تحديث الشركة المصنعة',
'url' => 'الرابط',
); );

View file

@ -19,7 +19,6 @@ return array(
'state' => 'الحالة', 'state' => 'الحالة',
'suppliers' => 'الموردون', 'suppliers' => 'الموردون',
'update' => 'تحديث المورد', 'update' => 'تحديث المورد',
'url' => 'الرابط',
'view' => 'مشاهدة المورد', 'view' => 'مشاهدة المورد',
'view_assets_for' => 'عرض الأصول لـ', 'view_assets_for' => 'عرض الأصول لـ',
'zip' => 'الرمز البريدي', 'zip' => 'الرمز البريدي',

View file

@ -12,7 +12,7 @@ return [
'remember_me' => 'تذكرني', 'remember_me' => 'تذكرني',
'username_help_top' => 'أدخل اسم المستخدم الخاص بك <strong></strong> ليتم إرسال رابط إعادة تعيين كلمة المرور إلى البريد الإلكتروني.', 'username_help_top' => 'أدخل اسم المستخدم الخاص بك <strong></strong> ليتم إرسال رابط إعادة تعيين كلمة المرور إلى البريد الإلكتروني.',
'username_help_bottom' => 'قد يكون اسم المستخدم وعنوان البريد الإلكتروني الخاصين بك متماثلين، ولكن قد لا يكونا كذلك، بناءً على الإعدادات الخاصة بك. إذا كنت لا تستطيع تذكر اسم المستخدم الخاص بك، اتصل بالمسؤول. لن يتم إرسال رابط إعادة تعيين كلمة المرور عبر البريد الإلكتروني إلى أسماء المستخدمين التي لا تحتوي على عنوان بريد إلكتروني مرتبط بها ', 'username_help_bottom' => 'قد يكون اسم المستخدم وعنوان البريد الإلكتروني الخاصين بك متماثلين، ولكن قد لا يكونا كذلك، بناءً على الإعدادات الخاصة بك. إذا كنت لا تستطيع تذكر اسم المستخدم الخاص بك، اتصل بالمسؤول. لن يتم إرسال رابط إعادة تعيين كلمة المرور عبر البريد الإلكتروني إلى أسماء المستخدمين التي لا تحتوي على عنوان بريد إلكتروني مرتبط بها ',
'google_login' => 'أو تسجيل الدخول باستخدام مساحة عمل جوجل', 'google_login' => 'تسجيل الدخول باستخدام مساحة عمل جوجل',
'google_login_failed' => 'فشل تسجيل دخول جوجل، الرجاء المحاولة مرة أخرى.', 'google_login_failed' => 'فشل تسجيل دخول جوجل، الرجاء المحاولة مرة أخرى.',
]; ];

View file

@ -499,5 +499,7 @@ return [
'action_permission_generic' => 'ليس لديك الإذن لـ :action هذا :item_type', 'action_permission_generic' => 'ليس لديك الإذن لـ :action هذا :item_type',
'edit' => 'تعديل', 'edit' => 'تعديل',
'action_source' => 'مصدر العمل', 'action_source' => 'مصدر العمل',
'or' => 'أو',
'url' => 'URL',
]; ];

View file

@ -12,7 +12,7 @@ return [
'bg-BG'=> 'البلغاري', 'bg-BG'=> 'البلغاري',
'zh-CN'=> 'الصينية المبسطة', 'zh-CN'=> 'الصينية المبسطة',
'zh-TW'=> 'الصينية التقليدية', 'zh-TW'=> 'الصينية التقليدية',
'ca-ES' => 'Catalan', 'ca-ES' => 'الكاتالونية',
'hr-HR'=> 'الكرواتية', 'hr-HR'=> 'الكرواتية',
'cs-CZ'=> 'التشيكية', 'cs-CZ'=> 'التشيكية',
'da-DK'=> 'الدانماركية', 'da-DK'=> 'الدانماركية',
@ -31,15 +31,15 @@ return [
'id-ID'=> 'الإندونيسية', 'id-ID'=> 'الإندونيسية',
'ga-IE'=> 'الأيرلندية', 'ga-IE'=> 'الأيرلندية',
'it-IT'=> 'الإيطالية', 'it-IT'=> 'الإيطالية',
'ja-JP'=> 'يابانية', 'ja-JP'=> 'اليابانية',
'km-KH'=>'Khmer', 'km-KH'=>'Khmer',
'ko-KR'=> 'الكورية', 'ko-KR'=> 'الكورية',
'lt-LT'=>'ليتوانية', 'lt-LT'=>'اليتوانية',
'lv-LV'=> 'لاتفيا', 'lv-LV'=> 'اللاتفية',
'mk-MK'=> 'مقدونية', 'mk-MK'=> 'المقدونية',
'ms-MY'=> 'الملايو', 'ms-MY'=> 'الملايو',
'mi-NZ'=> 'Maori', 'mi-NZ'=> 'Maori',
'mn-MN'=> 'منغولي', 'mn-MN'=> 'المنغولية',
'no-NO'=> 'النرويجية', 'no-NO'=> 'النرويجية',
'fa-IR'=> 'الفارسية', 'fa-IR'=> 'الفارسية',
'pl-PL'=> 'البولندية', 'pl-PL'=> 'البولندية',
@ -48,21 +48,21 @@ return [
'ro-RO'=> 'الرومانية', 'ro-RO'=> 'الرومانية',
'ru-RU'=> 'الروسية', 'ru-RU'=> 'الروسية',
'sr-CS' => 'Serbian (Latin)', 'sr-CS' => 'Serbian (Latin)',
'sk-SK'=> 'Slovak', 'sk-SK'=> 'السلوفاكية',
'sl-SI'=> 'Slovenian', 'sl-SI'=> 'السلوفينية',
'es-ES'=> 'الإسبانية', 'es-ES'=> 'الإسبانية',
'es-CO'=> 'الإسبانية، كولومبيا', 'es-CO'=> 'الإسبانية، كولومبيا',
'es-MX'=> 'الإسبانية، المكسيك', 'es-MX'=> 'الإسبانية، المكسيك',
'es-VE'=> 'الإسبانية، فنـزويلا', 'es-VE'=> 'الإسبانية، فنـزويلا',
'sv-SE'=> 'السويدية', 'sv-SE'=> 'السويدية',
'tl-PH'=> 'Tagalog', 'tl-PH'=> 'لغة التاجالوج',
'ta-IN'=> 'Tamil', 'ta-IN'=> 'التاميلية',
'th-TH'=> 'التايلندية', 'th-TH'=> 'التايلندية',
'tr-TR'=> 'تركية', 'tr-TR'=> 'التركية',
'uk-UA'=> 'الأوكرانية', 'uk-UA'=> 'الأوكرانية',
'vi-VN'=> 'Vietnamese', 'vi-VN'=> 'الفيتنامية',
'cy-GB'=> 'الويلزية', 'cy-GB'=> 'الويلزية',
'zu-ZA'=> 'Zulu', 'zu-ZA'=> 'الزولو',
], ],
'select_country' => 'اختر دولة', 'select_country' => 'اختر دولة',

View file

@ -96,7 +96,7 @@ return [
'url' => 'ان تنسيق :attribute غير صالح.', 'url' => 'ان تنسيق :attribute غير صالح.',
'unique_undeleted' => ':attribute يجب ان تكون فريدة.', 'unique_undeleted' => ':attribute يجب ان تكون فريدة.',
'non_circular' => 'يجب ألا تنشئ السمة مرجعًا دائريًا.', 'non_circular' => 'يجب ألا تنشئ السمة مرجعًا دائريًا.',
'not_array' => ':atribute harus array.', 'not_array' => ':attribute لا يمكن أن يكون مصفوف.',
'disallow_same_pwd_as_user_fields' => 'كلمة المرور لا يمكن أن تكون نفس اسم المستخدم.', 'disallow_same_pwd_as_user_fields' => 'كلمة المرور لا يمكن أن تكون نفس اسم المستخدم.',
'letters' => 'يجب أن تحتوي كلمة المرور على حرف واحد على الأقل.', 'letters' => 'يجب أن تحتوي كلمة المرور على حرف واحد على الأقل.',
'numbers' => 'يجب أن تحتوي كلمة المرور على رقم واحد على الأقل.', 'numbers' => 'يجب أن تحتوي كلمة المرور على رقم واحد على الأقل.',

View file

@ -2,7 +2,9 @@
return array( return array(
'companies' => 'Компании', 'companies' => 'Компании',
'create' => 'Създаване на компания', 'create' => 'Създаване на компания',
'email' => 'Company Email',
'title' => 'Компания', 'title' => 'Компания',
'phone' => 'Company Phone',
'update' => 'Редакция на комания', 'update' => 'Редакция на комания',
'name' => 'Име на компания', 'name' => 'Име на компания',
'id' => 'ID', 'id' => 'ID',

View file

@ -23,6 +23,7 @@ return [
'depreciation' => 'амортизация', 'depreciation' => 'амортизация',
'depreciates_on' => 'Амортизира се на', 'depreciates_on' => 'Амортизира се на',
'default_location' => 'Местоположение по подразбиране', 'default_location' => 'Местоположение по подразбиране',
'default_location_phone' => 'Default Location Phone',
'eol_date' => 'EOL дата', 'eol_date' => 'EOL дата',
'eol_rate' => 'EOL съотношение', 'eol_rate' => 'EOL съотношение',
'expected_checkin' => 'Очаквана дата на вписване', 'expected_checkin' => 'Очаквана дата на вписване',

View file

@ -4,6 +4,7 @@ return [
'asset_tag' => 'Инвентарен номер', 'asset_tag' => 'Инвентарен номер',
'asset_model' => 'Модел', 'asset_model' => 'Модел',
'assigned_to' => 'Предоставен на',
'book_value' => 'Текуща стойност', 'book_value' => 'Текуща стойност',
'change' => 'Предоставяне', 'change' => 'Предоставяне',
'checkout_date' => 'Дата на изписване', 'checkout_date' => 'Дата на изписване',
@ -24,7 +25,7 @@ return [
'image' => 'Изображение на устройството', 'image' => 'Изображение на устройството',
'days_without_acceptance' => 'Дни без да е предаден', 'days_without_acceptance' => 'Дни без да е предаден',
'monthly_depreciation' => 'Месечна Амортизация', 'monthly_depreciation' => 'Месечна Амортизация',
'assigned_to' => 'Предоставен на', 'assigned_to' => 'Възложени на',
'requesting_user' => 'Изискан от', 'requesting_user' => 'Изискан от',
'requested_date' => 'Дата на заявката', 'requested_date' => 'Дата на заявката',
'changed' => 'Променен', 'changed' => 'Променен',

View file

@ -1,7 +1,13 @@
<?php <?php
return [ return [
'example_company' => 'Test Company Limited',
'example_defaultloc' => 'Building 1',
'example_category' => 'Test Category',
'example_location' => 'Building 2',
'example_manufacturer' => 'Test Manufacturing Inc.',
'example_model' => 'Test Model',
'example_supplier' => 'Test Company Limited',
'labels_per_page' => 'Етикети', 'labels_per_page' => 'Етикети',
'support_fields' => 'Полета', 'support_fields' => 'Полета',
'support_asset_tag' => 'Таг', 'support_asset_tag' => 'Таг',

View file

@ -34,6 +34,7 @@ return [
'asset_checked_out' => 'Изписано на', 'asset_checked_out' => 'Изписано на',
'asset_expected_checkin' => 'Очаквана дата на вписване', 'asset_expected_checkin' => 'Очаквана дата на вписване',
'date' => 'Дата:', 'date' => 'Дата:',
'phone' => 'Location Phone',
'signed_by_asset_auditor' => 'Подписан от (проверяващ):', 'signed_by_asset_auditor' => 'Подписан от (проверяващ):',
'signed_by_finance_auditor' => 'Подписан от (счетоводител):', 'signed_by_finance_auditor' => 'Подписан от (счетоводител):',
'signed_by_location_manager' => 'Подписан от (мениджър):', 'signed_by_location_manager' => 'Подписан от (мениджър):',

View file

@ -2,7 +2,7 @@
return array( return array(
'support_url_help' => 'Променливите <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, и <code>{MODEL_NAME}</code> могат да бъдат използвани в URL, за да бъдат автоматично попълнени за активите - например https://support.apple.com/{LOCALE}/{SERIAL}.', 'support_url_help' => 'Променливите <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, и <code>{MODEL_NAME}</code> могат да бъдат използвани в URL, за да бъдат автоматично попълнени за активите - например https://checkcoverage.apple.com/{LOCALE}/{SERIAL}.',
'does_not_exist' => 'Несъществуващ производител.', 'does_not_exist' => 'Несъществуващ производител.',
'assoc_users' => 'Този производител е асоцииран с поне един от моделите и не може да бъде изтрит. Моля, променете връзките на моделите по отношение на този производител и опитайте отново. ', 'assoc_users' => 'Този производител е асоцииран с поне един от моделите и не може да бъде изтрит. Моля, променете връзките на моделите по отношение на този производител и опитайте отново. ',

View file

@ -12,6 +12,5 @@ return array(
'support_url' => 'URL адрес за поддръжка', 'support_url' => 'URL адрес за поддръжка',
'warranty_lookup_url' => 'Адрес за проверка на гаранцията URL', 'warranty_lookup_url' => 'Адрес за проверка на гаранцията URL',
'update' => 'Обновяване на производител', 'update' => 'Обновяване на производител',
'url' => 'URL адрес',
); );

View file

@ -19,7 +19,6 @@ return array(
'state' => 'Област', 'state' => 'Област',
'suppliers' => 'Доставчици', 'suppliers' => 'Доставчици',
'update' => 'Обновяване на доставчик', 'update' => 'Обновяване на доставчик',
'url' => 'URL адрес',
'view' => 'Преглед на доставчик', 'view' => 'Преглед на доставчик',
'view_assets_for' => 'Преглед на активите за', 'view_assets_for' => 'Преглед на активите за',
'zip' => 'Пощенски код', 'zip' => 'Пощенски код',

View file

@ -12,7 +12,7 @@ return [
'remember_me' => 'Запомни ме', 'remember_me' => 'Запомни ме',
'username_help_top' => 'Въведете вашето <strong>потребителско име</strong> за да получите линк за смяна на парола.', 'username_help_top' => 'Въведете вашето <strong>потребителско име</strong> за да получите линк за смяна на парола.',
'username_help_bottom' => 'Вашето потребителско име и е-майл адрес <em>може да</em> са еднакви или да не са, зависимост от вашата конфигурация. Ако не помните вашето потребителско име се свържете с Администратора. <br><br><strong>Потребители които нямат въведен е-майл адрес няма да получат линк за смяна на парола.</strong> ', 'username_help_bottom' => 'Вашето потребителско име и е-майл адрес <em>може да</em> са еднакви или да не са, зависимост от вашата конфигурация. Ако не помните вашето потребителско име се свържете с Администратора. <br><br><strong>Потребители които нямат въведен е-майл адрес няма да получат линк за смяна на парола.</strong> ',
'google_login' => 'Или вход с Google Workspace', 'google_login' => 'Login with Google Workspace',
'google_login_failed' => 'Неуспешен вход с Google Login, пробвайте отново.', 'google_login_failed' => 'Неуспешен вход с Google Login, пробвайте отново.',
]; ];

View file

@ -499,5 +499,7 @@ return [
'action_permission_generic' => 'You do not have permission to :action this :item_type', 'action_permission_generic' => 'You do not have permission to :action this :item_type',
'edit' => 'редакция', 'edit' => 'редакция',
'action_source' => 'Action Source', 'action_source' => 'Action Source',
'or' => 'or',
'url' => 'URL адрес',
]; ];

View file

@ -96,7 +96,7 @@ return [
'url' => 'Форматът на :attribute е невалиден.', 'url' => 'Форматът на :attribute е невалиден.',
'unique_undeleted' => ':attribute трябва да бъде уникален.', 'unique_undeleted' => ':attribute трябва да бъде уникален.',
'non_circular' => ':attribute не трябва да създава препрадка към себе си.', 'non_circular' => ':attribute не трябва да създава препрадка към себе си.',
'not_array' => ':atribute harus array.', 'not_array' => ':attribute cannot be an array.',
'disallow_same_pwd_as_user_fields' => 'Паролата не може да бъде същата, като потребителското име.', 'disallow_same_pwd_as_user_fields' => 'Паролата не може да бъде същата, като потребителското име.',
'letters' => 'Паролата трябва да съдържа поне една буква.', 'letters' => 'Паролата трябва да съдържа поне една буква.',
'numbers' => 'Паролата трябва да съдържа поне една цифра.', 'numbers' => 'Паролата трябва да съдържа поне една цифра.',

View file

@ -2,7 +2,9 @@
return array( return array(
'companies' => 'Empreses', 'companies' => 'Empreses',
'create' => 'Create Company', 'create' => 'Create Company',
'email' => 'Company Email',
'title' => 'Empresa', 'title' => 'Empresa',
'phone' => 'Company Phone',
'update' => 'Update Company', 'update' => 'Update Company',
'name' => 'Company Name', 'name' => 'Company Name',
'id' => 'ID', 'id' => 'ID',

View file

@ -23,6 +23,7 @@ return [
'depreciation' => 'Depreciation', 'depreciation' => 'Depreciation',
'depreciates_on' => 'Depreciates On', 'depreciates_on' => 'Depreciates On',
'default_location' => 'Default Location', 'default_location' => 'Default Location',
'default_location_phone' => 'Default Location Phone',
'eol_date' => 'EOL Date', 'eol_date' => 'EOL Date',
'eol_rate' => 'EOL Rate', 'eol_rate' => 'EOL Rate',
'expected_checkin' => 'Expected Checkin Date', 'expected_checkin' => 'Expected Checkin Date',

View file

@ -4,6 +4,7 @@ return [
'asset_tag' => 'Etiqueta de Recurs', 'asset_tag' => 'Etiqueta de Recurs',
'asset_model' => 'Model', 'asset_model' => 'Model',
'assigned_to' => 'Assigned To',
'book_value' => 'Current Value', 'book_value' => 'Current Value',
'change' => 'In/Out', 'change' => 'In/Out',
'checkout_date' => 'Checkout Date', 'checkout_date' => 'Checkout Date',

View file

@ -1,7 +1,13 @@
<?php <?php
return [ return [
'example_company' => 'Test Company Limited',
'example_defaultloc' => 'Building 1',
'example_category' => 'Test Category',
'example_location' => 'Building 2',
'example_manufacturer' => 'Test Manufacturing Inc.',
'example_model' => 'Test Model',
'example_supplier' => 'Test Company Limited',
'labels_per_page' => 'Labels', 'labels_per_page' => 'Labels',
'support_fields' => 'Fields', 'support_fields' => 'Fields',
'support_asset_tag' => 'Tag', 'support_asset_tag' => 'Tag',

View file

@ -34,6 +34,7 @@ return [
'asset_checked_out' => 'Checked Out', 'asset_checked_out' => 'Checked Out',
'asset_expected_checkin' => 'Expected Checkin', 'asset_expected_checkin' => 'Expected Checkin',
'date' => 'Date:', 'date' => 'Date:',
'phone' => 'Location Phone',
'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):',
'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):',
'signed_by_location_manager' => 'Signed By (Location Manager):', 'signed_by_location_manager' => 'Signed By (Location Manager):',

View file

@ -2,7 +2,7 @@
return array( return array(
'support_url_help' => 'Variables <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, and <code>{MODEL_NAME}</code> may be used in your URL to have those values auto-populate when viewing assets - for example https://support.apple.com/{LOCALE}/{SERIAL}.', 'support_url_help' => 'Variables <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, and <code>{MODEL_NAME}</code> may be used in your URL to have those values auto-populate when viewing assets - for example https://checkcoverage.apple.com/{LOCALE}/{SERIAL}.',
'does_not_exist' => 'Manufacturer does not exist.', 'does_not_exist' => 'Manufacturer does not exist.',
'assoc_users' => 'This manufacturer is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this manufacturer and try again. ', 'assoc_users' => 'This manufacturer is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this manufacturer and try again. ',

View file

@ -12,6 +12,5 @@ return array(
'support_url' => 'Support URL', 'support_url' => 'Support URL',
'warranty_lookup_url' => 'Warranty Lookup URL', 'warranty_lookup_url' => 'Warranty Lookup URL',
'update' => 'Update Manufacturer', 'update' => 'Update Manufacturer',
'url' => 'URL',
); );

View file

@ -19,7 +19,6 @@ return array(
'state' => 'State', 'state' => 'State',
'suppliers' => 'Suppliers', 'suppliers' => 'Suppliers',
'update' => 'Update Supplier', 'update' => 'Update Supplier',
'url' => 'URL',
'view' => 'View Supplier', 'view' => 'View Supplier',
'view_assets_for' => 'View Assets for', 'view_assets_for' => 'View Assets for',
'zip' => 'Postal Code', 'zip' => 'Postal Code',

View file

@ -12,7 +12,7 @@ return [
'remember_me' => 'Remember Me', 'remember_me' => 'Remember Me',
'username_help_top' => 'Enter your <strong>username</strong> to be emailed a password reset link.', 'username_help_top' => 'Enter your <strong>username</strong> to be emailed a password reset link.',
'username_help_bottom' => 'Your username and email address <em>may</em> be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator. <br><br><strong>Usernames without an associated email address will not be emailed a password reset link.</strong> ', 'username_help_bottom' => 'Your username and email address <em>may</em> be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator. <br><br><strong>Usernames without an associated email address will not be emailed a password reset link.</strong> ',
'google_login' => 'Or login with Google Workspace', 'google_login' => 'Login with Google Workspace',
'google_login_failed' => 'Google Login failed, please try again.', 'google_login_failed' => 'Google Login failed, please try again.',
]; ];

View file

@ -499,5 +499,7 @@ return [
'action_permission_generic' => 'You do not have permission to :action this :item_type', 'action_permission_generic' => 'You do not have permission to :action this :item_type',
'edit' => 'edit', 'edit' => 'edit',
'action_source' => 'Action Source', 'action_source' => 'Action Source',
'or' => 'or',
'url' => 'URL',
]; ];

View file

@ -96,7 +96,7 @@ return [
'url' => 'The :attribute format is invalid.', 'url' => 'The :attribute format is invalid.',
'unique_undeleted' => 'The :attribute must be unique.', 'unique_undeleted' => 'The :attribute must be unique.',
'non_circular' => 'The :attribute must not create a circular reference.', 'non_circular' => 'The :attribute must not create a circular reference.',
'not_array' => ':atribute harus array.', 'not_array' => ':attribute cannot be an array.',
'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.',
'letters' => 'Password must contain at least one letter.', 'letters' => 'Password must contain at least one letter.',
'numbers' => 'Password must contain at least one number.', 'numbers' => 'Password must contain at least one number.',

View file

@ -2,7 +2,9 @@
return array( return array(
'companies' => 'Společnosti', 'companies' => 'Společnosti',
'create' => 'Založit společnost', 'create' => 'Založit společnost',
'email' => 'E-mail společnosti',
'title' => 'Společnost', 'title' => 'Společnost',
'phone' => 'Telefon společnosti',
'update' => 'Upravit společnost', 'update' => 'Upravit společnost',
'name' => 'Název společnosti', 'name' => 'Název společnosti',
'id' => 'ID', 'id' => 'ID',

View file

@ -23,6 +23,7 @@ return [
'depreciation' => 'Amortizace', 'depreciation' => 'Amortizace',
'depreciates_on' => 'Odepisuje se', 'depreciates_on' => 'Odepisuje se',
'default_location' => 'Výchozí umístění', 'default_location' => 'Výchozí umístění',
'default_location_phone' => 'Výchozí telefon',
'eol_date' => 'Konec životnosti', 'eol_date' => 'Konec životnosti',
'eol_rate' => 'Míra ukončení životnosti', 'eol_rate' => 'Míra ukončení životnosti',
'expected_checkin' => 'Očekávané datum převzetí', 'expected_checkin' => 'Očekávané datum převzetí',

View file

@ -4,6 +4,7 @@ return [
'asset_tag' => 'Označení majetku', 'asset_tag' => 'Označení majetku',
'asset_model' => 'Model', 'asset_model' => 'Model',
'assigned_to' => 'Přiděleno',
'book_value' => 'Aktuální hodnota', 'book_value' => 'Aktuální hodnota',
'change' => 'Příjem/Výdej', 'change' => 'Příjem/Výdej',
'checkout_date' => 'Datum vydání', 'checkout_date' => 'Datum vydání',

View file

@ -1,7 +1,13 @@
<?php <?php
return [ return [
'example_company' => 'Test Company Limited',
'example_defaultloc' => 'Budova 1',
'example_category' => 'Zkušební kategorie',
'example_location' => 'Budova 2',
'example_manufacturer' => 'Zkoušky výrobce',
'example_model' => 'Zkušební model',
'example_supplier' => 'Test Company Limited',
'labels_per_page' => 'Štítky', 'labels_per_page' => 'Štítky',
'support_fields' => 'Pole', 'support_fields' => 'Pole',
'support_asset_tag' => 'Značka', 'support_asset_tag' => 'Značka',

View file

@ -34,6 +34,7 @@ return [
'asset_checked_out' => 'Vydané', 'asset_checked_out' => 'Vydané',
'asset_expected_checkin' => 'Očekávané datum vrácení', 'asset_expected_checkin' => 'Očekávané datum vrácení',
'date' => 'Datum:', 'date' => 'Datum:',
'phone' => 'Telefon polohy',
'signed_by_asset_auditor' => 'Podepsáno (auditor majetku):', 'signed_by_asset_auditor' => 'Podepsáno (auditor majetku):',
'signed_by_finance_auditor' => 'Podepsáno (Finanční auditor):', 'signed_by_finance_auditor' => 'Podepsáno (Finanční auditor):',
'signed_by_location_manager' => 'Podepsáno (Manager):', 'signed_by_location_manager' => 'Podepsáno (Manager):',

View file

@ -2,7 +2,7 @@
return array( return array(
'support_url_help' => 'Proměnné <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>a <code>{MODEL_NAME}</code> může být použito ve vaší URL pro automatické vyplnění těchto hodnot při prohlížení aktiv - například https://support. pple.com/{LOCALE}/{SERIAL}.', 'support_url_help' => 'Proměnné <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>a <code>{MODEL_NAME}</code> může být použito v URL pro automatické vyplnění těchto hodnot při prohlížení aktiv - například https://checkcoverage. pple.com/{LOCALE}/{SERIAL}.',
'does_not_exist' => 'Výrobce neexistuje.', 'does_not_exist' => 'Výrobce neexistuje.',
'assoc_users' => 'Tento výrobce je uveden minimálně u jednoho modelu a nemůže být smazán. Odstraňte výrobce z modelů a zkuste to znovu. ', 'assoc_users' => 'Tento výrobce je uveden minimálně u jednoho modelu a nemůže být smazán. Odstraňte výrobce z modelů a zkuste to znovu. ',

View file

@ -12,6 +12,5 @@ return array(
'support_url' => 'URL podpory', 'support_url' => 'URL podpory',
'warranty_lookup_url' => 'Adresa URL pro vyhledání záruky', 'warranty_lookup_url' => 'Adresa URL pro vyhledání záruky',
'update' => 'Upravit Výrobce', 'update' => 'Upravit Výrobce',
'url' => 'URL',
); );

View file

@ -19,7 +19,6 @@ return array(
'state' => 'Stát', 'state' => 'Stát',
'suppliers' => 'Dodavatelé', 'suppliers' => 'Dodavatelé',
'update' => 'Aktualizovat dodavatele', 'update' => 'Aktualizovat dodavatele',
'url' => 'URL',
'view' => 'Zobrazit dodavatele', 'view' => 'Zobrazit dodavatele',
'view_assets_for' => 'Zobrazit majetky pro', 'view_assets_for' => 'Zobrazit majetky pro',
'zip' => 'PSČ', 'zip' => 'PSČ',

View file

@ -12,7 +12,7 @@ return [
'remember_me' => 'Pamatovat si mě', 'remember_me' => 'Pamatovat si mě',
'username_help_top' => 'Zadejte své <strong>uživatelské jméno</strong> pro zaslání e-mailu s odkazem pro obnovení hesla.', 'username_help_top' => 'Zadejte své <strong>uživatelské jméno</strong> pro zaslání e-mailu s odkazem pro obnovení hesla.',
'username_help_bottom' => 'Vaše uživatelské jméno a e-mailová adresa <em>mohou</em> být stejná, ale nemusí být, záleží na Vašem nastavení. Pokud si nepamatujete Vaše uživatelské jméno, kontaktujte Vašeho správce. <br><br><strong>Uživatelským jménům bez přidružené e-mailové adresy nebude zaslán odkaz pro obnovu hesla.</strong> ', 'username_help_bottom' => 'Vaše uživatelské jméno a e-mailová adresa <em>mohou</em> být stejná, ale nemusí být, záleží na Vašem nastavení. Pokud si nepamatujete Vaše uživatelské jméno, kontaktujte Vašeho správce. <br><br><strong>Uživatelským jménům bez přidružené e-mailové adresy nebude zaslán odkaz pro obnovu hesla.</strong> ',
'google_login' => 'Nebo se přihlaste pomocí Google Workspace', 'google_login' => 'Přihlásit se pomocí Google Workspace',
'google_login_failed' => 'Přihlášení Google se nezdařilo, zkuste to prosím znovu.', 'google_login_failed' => 'Přihlášení Google se nezdařilo, zkuste to prosím znovu.',
]; ];

View file

@ -499,5 +499,7 @@ return [
'action_permission_generic' => 'Nemáte oprávnění k :action tohoto :item_type', 'action_permission_generic' => 'Nemáte oprávnění k :action tohoto :item_type',
'edit' => 'upravit', 'edit' => 'upravit',
'action_source' => 'Zdroj akcí', 'action_source' => 'Zdroj akcí',
'or' => 'nebo',
'url' => 'URL',
]; ];

View file

@ -12,7 +12,7 @@ return [
'bg-BG'=> 'Bulharština', 'bg-BG'=> 'Bulharština',
'zh-CN'=> 'Zjednodušená čínština', 'zh-CN'=> 'Zjednodušená čínština',
'zh-TW'=> 'Tradiční čínština', 'zh-TW'=> 'Tradiční čínština',
'ca-ES' => 'Catalan', 'ca-ES' => 'Katalánština',
'hr-HR'=> 'Chorvatština', 'hr-HR'=> 'Chorvatština',
'cs-CZ'=> 'Čeština', 'cs-CZ'=> 'Čeština',
'da-DK'=> 'Dánština', 'da-DK'=> 'Dánština',
@ -48,7 +48,7 @@ return [
'ro-RO'=> 'Rumunština', 'ro-RO'=> 'Rumunština',
'ru-RU'=> 'Ruština', 'ru-RU'=> 'Ruština',
'sr-CS' => 'Serbian (Latin)', 'sr-CS' => 'Serbian (Latin)',
'sk-SK'=> 'Slovak', 'sk-SK'=> 'Slovenština',
'sl-SI'=> 'Slovinština', 'sl-SI'=> 'Slovinština',
'es-ES'=> 'Španělština', 'es-ES'=> 'Španělština',
'es-CO'=> 'Španělština, Kolumbie', 'es-CO'=> 'Španělština, Kolumbie',

View file

@ -96,7 +96,7 @@ return [
'url' => 'Formát :attribute je neplatný.', 'url' => 'Formát :attribute je neplatný.',
'unique_undeleted' => 'Je třeba, aby se :attribute neopakoval.', 'unique_undeleted' => 'Je třeba, aby se :attribute neopakoval.',
'non_circular' => ':attribute nesmí vytvořit kruhový odkaz.', 'non_circular' => ':attribute nesmí vytvořit kruhový odkaz.',
'not_array' => ':atribute harus array.', 'not_array' => ':attribute nemůže být pole.',
'disallow_same_pwd_as_user_fields' => 'Heslo nemůže být stejné jako uživatelské jméno.', 'disallow_same_pwd_as_user_fields' => 'Heslo nemůže být stejné jako uživatelské jméno.',
'letters' => 'Heslo musí obsahovat nejméně jedno písmeno.', 'letters' => 'Heslo musí obsahovat nejméně jedno písmeno.',
'numbers' => 'Heslo musí obsahovat alespoň jednu číslici.', 'numbers' => 'Heslo musí obsahovat alespoň jednu číslici.',

View file

@ -2,7 +2,9 @@
return array( return array(
'companies' => 'Cwmniau', 'companies' => 'Cwmniau',
'create' => 'Creu Cwmni', 'create' => 'Creu Cwmni',
'email' => 'Company Email',
'title' => 'Cwmni', 'title' => 'Cwmni',
'phone' => 'Company Phone',
'update' => 'Diweddaru Cwmni', 'update' => 'Diweddaru Cwmni',
'name' => 'Enw Cwmni', 'name' => 'Enw Cwmni',
'id' => 'Rhif Unigryw', 'id' => 'Rhif Unigryw',

View file

@ -23,6 +23,7 @@ return [
'depreciation' => 'Dibrisiant', 'depreciation' => 'Dibrisiant',
'depreciates_on' => 'Dibrisio Ar', 'depreciates_on' => 'Dibrisio Ar',
'default_location' => 'Lleoliad diofyn', 'default_location' => 'Lleoliad diofyn',
'default_location_phone' => 'Default Location Phone',
'eol_date' => 'Dyddiad DB', 'eol_date' => 'Dyddiad DB',
'eol_rate' => 'Cyfradd DB', 'eol_rate' => 'Cyfradd DB',
'expected_checkin' => 'Dyddiad disgwl i mewn', 'expected_checkin' => 'Dyddiad disgwl i mewn',

View file

@ -4,6 +4,7 @@ return [
'asset_tag' => 'Rhif Ased (tag)', 'asset_tag' => 'Rhif Ased (tag)',
'asset_model' => 'Model', 'asset_model' => 'Model',
'assigned_to' => 'Wedi Neilltuo i',
'book_value' => 'Current Value', 'book_value' => 'Current Value',
'change' => 'Mewn/Allan', 'change' => 'Mewn/Allan',
'checkout_date' => 'Dyddiad Allan', 'checkout_date' => 'Dyddiad Allan',

View file

@ -1,7 +1,13 @@
<?php <?php
return [ return [
'example_company' => 'Test Company Limited',
'example_defaultloc' => 'Building 1',
'example_category' => 'Test Category',
'example_location' => 'Building 2',
'example_manufacturer' => 'Test Manufacturing Inc.',
'example_model' => 'Test Model',
'example_supplier' => 'Test Company Limited',
'labels_per_page' => 'Labelau', 'labels_per_page' => 'Labelau',
'support_fields' => 'Fields', 'support_fields' => 'Fields',
'support_asset_tag' => 'Tag', 'support_asset_tag' => 'Tag',

View file

@ -34,6 +34,7 @@ return [
'asset_checked_out' => 'Allan', 'asset_checked_out' => 'Allan',
'asset_expected_checkin' => 'Expected Checkin', 'asset_expected_checkin' => 'Expected Checkin',
'date' => 'Dyddiad:', 'date' => 'Dyddiad:',
'phone' => 'Location Phone',
'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):',
'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):',
'signed_by_location_manager' => 'Signed By (Location Manager):', 'signed_by_location_manager' => 'Signed By (Location Manager):',

View file

@ -2,7 +2,7 @@
return array( return array(
'support_url_help' => 'Variables <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, and <code>{MODEL_NAME}</code> may be used in your URL to have those values auto-populate when viewing assets - for example https://support.apple.com/{LOCALE}/{SERIAL}.', 'support_url_help' => 'Variables <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, and <code>{MODEL_NAME}</code> may be used in your URL to have those values auto-populate when viewing assets - for example https://checkcoverage.apple.com/{LOCALE}/{SERIAL}.',
'does_not_exist' => 'Nid yw\'r gwneuthyrwr yn bodoli.', 'does_not_exist' => 'Nid yw\'r gwneuthyrwr yn bodoli.',
'assoc_users' => 'Mae\'r gwneuthyrwr yma wedi perthnasu i oleiaf un model a nid yw\'n bosib dileu. Diweddarwch eich modelau i beidio cyfeirio at y gwneuthyrwr yma ac yna ceisiwch eto. ', 'assoc_users' => 'Mae\'r gwneuthyrwr yma wedi perthnasu i oleiaf un model a nid yw\'n bosib dileu. Diweddarwch eich modelau i beidio cyfeirio at y gwneuthyrwr yma ac yna ceisiwch eto. ',

View file

@ -12,6 +12,5 @@ return array(
'support_url' => 'Wefan cefnogaeth', 'support_url' => 'Wefan cefnogaeth',
'warranty_lookup_url' => 'Warranty Lookup URL', 'warranty_lookup_url' => 'Warranty Lookup URL',
'update' => 'Diweddaru Gwneuthyrwr', 'update' => 'Diweddaru Gwneuthyrwr',
'url' => 'URL',
); );

View file

@ -19,7 +19,6 @@ return array(
'state' => 'Talaith', 'state' => 'Talaith',
'suppliers' => 'Cyflenwyr', 'suppliers' => 'Cyflenwyr',
'update' => 'Diweddaru Cyflenwr', 'update' => 'Diweddaru Cyflenwr',
'url' => 'URL',
'view' => 'Gweld Cyflenwr', 'view' => 'Gweld Cyflenwr',
'view_assets_for' => 'Gweld asedau ar gyfer', 'view_assets_for' => 'Gweld asedau ar gyfer',
'zip' => 'Côd Post', 'zip' => 'Côd Post',

View file

@ -12,7 +12,7 @@ return [
'remember_me' => 'Cofiwch fi', 'remember_me' => 'Cofiwch fi',
'username_help_top' => 'Enter your <strong>username</strong> to be emailed a password reset link.', 'username_help_top' => 'Enter your <strong>username</strong> to be emailed a password reset link.',
'username_help_bottom' => 'Your username and email address <em>may</em> be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator. <br><br><strong>Usernames without an associated email address will not be emailed a password reset link.</strong> ', 'username_help_bottom' => 'Your username and email address <em>may</em> be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator. <br><br><strong>Usernames without an associated email address will not be emailed a password reset link.</strong> ',
'google_login' => 'Or login with Google Workspace', 'google_login' => 'Login with Google Workspace',
'google_login_failed' => 'Google Login failed, please try again.', 'google_login_failed' => 'Google Login failed, please try again.',
]; ];

View file

@ -499,5 +499,7 @@ return [
'action_permission_generic' => 'You do not have permission to :action this :item_type', 'action_permission_generic' => 'You do not have permission to :action this :item_type',
'edit' => 'addasu', 'edit' => 'addasu',
'action_source' => 'Action Source', 'action_source' => 'Action Source',
'or' => 'or',
'url' => 'URL',
]; ];

View file

@ -96,7 +96,7 @@ return [
'url' => 'Mae fformat :attribute yn annilys.', 'url' => 'Mae fformat :attribute yn annilys.',
'unique_undeleted' => 'Rhaid i\'r :attribute bod yn unigryw.', 'unique_undeleted' => 'Rhaid i\'r :attribute bod yn unigryw.',
'non_circular' => 'The :attribute must not create a circular reference.', 'non_circular' => 'The :attribute must not create a circular reference.',
'not_array' => ':atribute harus array.', 'not_array' => ':attribute cannot be an array.',
'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.', 'disallow_same_pwd_as_user_fields' => 'Password cannot be the same as the username.',
'letters' => 'Password must contain at least one letter.', 'letters' => 'Password must contain at least one letter.',
'numbers' => 'Password must contain at least one number.', 'numbers' => 'Password must contain at least one number.',

View file

@ -2,7 +2,9 @@
return array( return array(
'companies' => 'Virksomheder', 'companies' => 'Virksomheder',
'create' => 'Oprette virksomhed', 'create' => 'Oprette virksomhed',
'email' => 'Virksomhedens E-Mail',
'title' => 'Virksomheden', 'title' => 'Virksomheden',
'phone' => 'Firma Telefon',
'update' => 'Opdater virksomhed', 'update' => 'Opdater virksomhed',
'name' => 'Virksomhedens navn', 'name' => 'Virksomhedens navn',
'id' => 'ID', 'id' => 'ID',

View file

@ -23,6 +23,7 @@ return [
'depreciation' => 'Afskrivninger', 'depreciation' => 'Afskrivninger',
'depreciates_on' => 'Afskrives Den', 'depreciates_on' => 'Afskrives Den',
'default_location' => 'Standardplacering', 'default_location' => 'Standardplacering',
'default_location_phone' => 'Standard Lokationstelefon',
'eol_date' => 'EOL Dato', 'eol_date' => 'EOL Dato',
'eol_rate' => 'EOL Rate', 'eol_rate' => 'EOL Rate',
'expected_checkin' => 'Forventet indtjekningsdato', 'expected_checkin' => 'Forventet indtjekningsdato',

View file

@ -4,6 +4,7 @@ return [
'asset_tag' => 'Asset Tag', 'asset_tag' => 'Asset Tag',
'asset_model' => 'Model', 'asset_model' => 'Model',
'assigned_to' => 'Tildelt',
'book_value' => 'Nuværende Værdi', 'book_value' => 'Nuværende Værdi',
'change' => 'Ind ud', 'change' => 'Ind ud',
'checkout_date' => 'Checkout dato', 'checkout_date' => 'Checkout dato',

View file

@ -1,7 +1,13 @@
<?php <?php
return [ return [
'example_company' => 'Test Company Limited',
'example_defaultloc' => 'Bygning 1',
'example_category' => 'Test Kategori',
'example_location' => 'Bygning 2',
'example_manufacturer' => 'Test Manufacturing Inc.',
'example_model' => 'Prøvningsmodel',
'example_supplier' => 'Test Company Limited',
'labels_per_page' => 'Etiketter', 'labels_per_page' => 'Etiketter',
'support_fields' => 'Felter', 'support_fields' => 'Felter',
'support_asset_tag' => 'Mærkat', 'support_asset_tag' => 'Mærkat',

View file

@ -34,6 +34,7 @@ return [
'asset_checked_out' => 'Tjekket ud', 'asset_checked_out' => 'Tjekket ud',
'asset_expected_checkin' => 'Forventet indtjekning', 'asset_expected_checkin' => 'Forventet indtjekning',
'date' => 'Dato:', 'date' => 'Dato:',
'phone' => 'Adresse Telefon',
'signed_by_asset_auditor' => 'Godkendt af (aktivkontrollant):', 'signed_by_asset_auditor' => 'Godkendt af (aktivkontrollant):',
'signed_by_finance_auditor' => 'Godkendt af (finanskontrollant):', 'signed_by_finance_auditor' => 'Godkendt af (finanskontrollant):',
'signed_by_location_manager' => 'Godkendt af (Lokationsadministrator):', 'signed_by_location_manager' => 'Godkendt af (Lokationsadministrator):',

View file

@ -2,7 +2,7 @@
return array( return array(
'support_url_help' => 'Variabler <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, <code>{MODEL_NAME}</code> kan bruges i din URL til at have disse værdier automatisk udfylde, når du ser aktiver - for eksempel https://support. pple.com/{LOCALE}/{SERIAL}.', 'support_url_help' => 'Variabler <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, <code>{MODEL_NAME}</code> kan bruges i din URL til at have disse værdier automatisk udfyldes ved visning af aktiver - for eksempel https://checkcoverage. pple.com/{LOCALE}/{SERIAL}.',
'does_not_exist' => 'Fabrikant eksistere ikke.', 'does_not_exist' => 'Fabrikant eksistere ikke.',
'assoc_users' => 'Denne producent er i øjeblikket forbundet med mindst en model og kan ikke slettes. Opdater dine modeller for ikke længere at henvise til denne producent, og prøv igen.', 'assoc_users' => 'Denne producent er i øjeblikket forbundet med mindst en model og kan ikke slettes. Opdater dine modeller for ikke længere at henvise til denne producent, og prøv igen.',

View file

@ -12,6 +12,5 @@ return array(
'support_url' => 'Support URL', 'support_url' => 'Support URL',
'warranty_lookup_url' => 'Garanti Opslag URL', 'warranty_lookup_url' => 'Garanti Opslag URL',
'update' => 'Opdater Fabrikant', 'update' => 'Opdater Fabrikant',
'url' => 'URL',
); );

View file

@ -19,7 +19,6 @@ return array(
'state' => 'Stat', 'state' => 'Stat',
'suppliers' => 'leverandører', 'suppliers' => 'leverandører',
'update' => 'Opdater leverandør', 'update' => 'Opdater leverandør',
'url' => 'URL',
'view' => 'Se leverandør', 'view' => 'Se leverandør',
'view_assets_for' => 'Se aktiver for', 'view_assets_for' => 'Se aktiver for',
'zip' => 'Postnummer', 'zip' => 'Postnummer',

View file

@ -12,7 +12,7 @@ return [
'remember_me' => 'Husk mig', 'remember_me' => 'Husk mig',
'username_help_top' => 'Indtast dit <strong>brugernavn</strong> for at få tilsendt et link til nulstilling af adgangskoden.', 'username_help_top' => 'Indtast dit <strong>brugernavn</strong> for at få tilsendt et link til nulstilling af adgangskoden.',
'username_help_bottom' => 'Dit brugernavn og din emailadresse <em>kan</em> være den samme; men din konfiguration kan kæve at de er forskellige. Hvis du ikke kan huske dit brugernavn, så kontakt administratoren. <br><br><strong>Brugernavne uden tilhørende emailadresse vil ikke få tilsendt mail med link til reset af kodeord.</strong> ', 'username_help_bottom' => 'Dit brugernavn og din emailadresse <em>kan</em> være den samme; men din konfiguration kan kæve at de er forskellige. Hvis du ikke kan huske dit brugernavn, så kontakt administratoren. <br><br><strong>Brugernavne uden tilhørende emailadresse vil ikke få tilsendt mail med link til reset af kodeord.</strong> ',
'google_login' => 'Eller log ind med Google Workspace', 'google_login' => 'Log ind med Google Workspace',
'google_login_failed' => 'Google Log ind mislykkedes, prøv igen.', 'google_login_failed' => 'Google Log ind mislykkedes, prøv igen.',
]; ];

View file

@ -499,5 +499,7 @@ return [
'action_permission_generic' => 'Du har ikke tilladelse til at :action denne :item_type', 'action_permission_generic' => 'Du har ikke tilladelse til at :action denne :item_type',
'edit' => 'rediger', 'edit' => 'rediger',
'action_source' => 'Handling Kilde', 'action_source' => 'Handling Kilde',
'or' => 'eller',
'url' => 'URL',
]; ];

View file

@ -12,7 +12,7 @@ return [
'bg-BG'=> 'Bulgarsk', 'bg-BG'=> 'Bulgarsk',
'zh-CN'=> 'Kinesisk (forsimplet)', 'zh-CN'=> 'Kinesisk (forsimplet)',
'zh-TW'=> 'Kinesisk (traditionel)', 'zh-TW'=> 'Kinesisk (traditionel)',
'ca-ES' => 'Catalan', 'ca-ES' => 'Catalansk',
'hr-HR'=> 'Krotatisk', 'hr-HR'=> 'Krotatisk',
'cs-CZ'=> 'Tjekkisk', 'cs-CZ'=> 'Tjekkisk',
'da-DK'=> 'Dansk', 'da-DK'=> 'Dansk',
@ -48,7 +48,7 @@ return [
'ro-RO'=> 'Rumænsk', 'ro-RO'=> 'Rumænsk',
'ru-RU'=> 'Russisk', 'ru-RU'=> 'Russisk',
'sr-CS' => 'Serbisk (latin)', 'sr-CS' => 'Serbisk (latin)',
'sk-SK'=> 'Slovak', 'sk-SK'=> 'Slovakisk',
'sl-SI'=> 'Slovensk', 'sl-SI'=> 'Slovensk',
'es-ES'=> 'Spansk', 'es-ES'=> 'Spansk',
'es-CO'=> 'Spansk (Colombia)', 'es-CO'=> 'Spansk (Colombia)',

View file

@ -96,7 +96,7 @@ return [
'url' => ':attribute formatet er ugyldigt.', 'url' => ':attribute formatet er ugyldigt.',
'unique_undeleted' => ':attribute skal være unik.', 'unique_undeleted' => ':attribute skal være unik.',
'non_circular' => ':attribute må ikke oprette en cirkulær reference.', 'non_circular' => ':attribute må ikke oprette en cirkulær reference.',
'not_array' => ':atribute harus array.', 'not_array' => ':attribute kan ikke være et array.',
'disallow_same_pwd_as_user_fields' => 'Adgangskoden må ikke være det samme som brugernavnet.', 'disallow_same_pwd_as_user_fields' => 'Adgangskoden må ikke være det samme som brugernavnet.',
'letters' => 'Adgangskoden skal indeholde mindst ét bogstav.', 'letters' => 'Adgangskoden skal indeholde mindst ét bogstav.',
'numbers' => 'Adgangskoden skal indeholde mindst ét tal.', 'numbers' => 'Adgangskoden skal indeholde mindst ét tal.',

View file

@ -2,7 +2,9 @@
return array( return array(
'companies' => 'Firmen', 'companies' => 'Firmen',
'create' => 'Firma erstellen', 'create' => 'Firma erstellen',
'email' => 'Firma E-Mail',
'title' => 'Firma', 'title' => 'Firma',
'phone' => 'Firmentelefon',
'update' => 'Firma aktualisieren', 'update' => 'Firma aktualisieren',
'name' => 'Firmenname', 'name' => 'Firmenname',
'id' => 'ID', 'id' => 'ID',

View file

@ -23,6 +23,7 @@ return [
'depreciation' => 'Abschreibung', 'depreciation' => 'Abschreibung',
'depreciates_on' => 'Abschreiben auf', 'depreciates_on' => 'Abschreiben auf',
'default_location' => 'Standard-Standort', 'default_location' => 'Standard-Standort',
'default_location_phone' => 'Standard-Telefon',
'eol_date' => 'Ende der Nutzungsdauer', 'eol_date' => 'Ende der Nutzungsdauer',
'eol_rate' => 'EOL Rate', 'eol_rate' => 'EOL Rate',
'expected_checkin' => 'Erwartetes Rückgabedatum', 'expected_checkin' => 'Erwartetes Rückgabedatum',

View file

@ -4,6 +4,7 @@ return [
'asset_tag' => 'Asset Tag', 'asset_tag' => 'Asset Tag',
'asset_model' => 'Modell', 'asset_model' => 'Modell',
'assigned_to' => 'Zugewiesen an',
'book_value' => 'Aktueller Wert', 'book_value' => 'Aktueller Wert',
'change' => 'Zurücknehmen/Herausgeben', 'change' => 'Zurücknehmen/Herausgeben',
'checkout_date' => 'Herausgabedatum', 'checkout_date' => 'Herausgabedatum',

View file

@ -37,7 +37,7 @@ return [
'accessory_detached' => 'Zubehör wurde erfolgreich getrennt', 'accessory_detached' => 'Zubehör wurde erfolgreich getrennt',
'accessory_error' => 'Zubehör bereits an Kit angeschlossen', 'accessory_error' => 'Zubehör bereits an Kit angeschlossen',
'accessory_deleted' => 'Löschen war erfolgreich', 'accessory_deleted' => 'Löschen war erfolgreich',
'accessory_none' => 'Zubehör existiert nicht', 'accessory_none' => 'Das Zubehör existiert nicht',
'checkout_success' => 'Herausgabe war erfolgreich', 'checkout_success' => 'Herausgabe war erfolgreich',
'checkout_error' => 'Herausgabe Fehler', 'checkout_error' => 'Herausgabe Fehler',
'kit_none' => 'Kit existiert nicht', 'kit_none' => 'Kit existiert nicht',

View file

@ -1,7 +1,13 @@
<?php <?php
return [ return [
'example_company' => 'Testfirma limitiert',
'example_defaultloc' => 'Gebäude 1',
'example_category' => 'Testkategorie',
'example_location' => 'Baue 2',
'example_manufacturer' => 'Test Manufacturing Inc.',
'example_model' => 'Testmodell',
'example_supplier' => 'Testfirma limitiert',
'labels_per_page' => 'Label', 'labels_per_page' => 'Label',
'support_fields' => 'Felder', 'support_fields' => 'Felder',
'support_asset_tag' => 'Tag', 'support_asset_tag' => 'Tag',

View file

@ -34,6 +34,7 @@ return [
'asset_checked_out' => 'Herausgegeben', 'asset_checked_out' => 'Herausgegeben',
'asset_expected_checkin' => 'Erwartete Rückgabe', 'asset_expected_checkin' => 'Erwartete Rückgabe',
'date' => 'Datum:', 'date' => 'Datum:',
'phone' => 'Standort Telefon',
'signed_by_asset_auditor' => 'Unterschrieben von (Assetprüfer):', 'signed_by_asset_auditor' => 'Unterschrieben von (Assetprüfer):',
'signed_by_finance_auditor' => 'Unterschrieben von (Finanzprüfer):', 'signed_by_finance_auditor' => 'Unterschrieben von (Finanzprüfer):',
'signed_by_location_manager' => 'Unterschrieben von (Standortmanager):', 'signed_by_location_manager' => 'Unterschrieben von (Standortmanager):',

View file

@ -2,7 +2,7 @@
return array( return array(
'support_url_help' => 'Variablen <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, und <code>{MODEL_NAME}</code> kann in Ihrer URL verwendet werden, um diese Werte automatisch zu füllen, wenn Sie Assets anzeigen - zum Beispiel https://support. pple.com/{LOCALE}/{SERIAL}.', 'support_url_help' => 'Variablen <code>{LOCALE}</code>, <code>{SERIAL}</code>, <code>{MODEL_NUMBER}</code>, und <code>{MODEL_NAME}</code> kann in Ihrer URL verwendet werden, um diese Werte automatisch zu füllen, wenn Sie Assets sehen - zum Beispiel https://checkcoverage. pple.com/{LOCALE}/{SERIAL}.',
'does_not_exist' => 'Hersteller existiert nicht.', 'does_not_exist' => 'Hersteller existiert nicht.',
'assoc_users' => 'Dieser Hersteller ist bereits mit einem Model verknüpft und kann nicht gelöscht werden. Bitte trennen sie Ihre Modelle von diesem Hersteller und versuchen Sie es Erneut.', 'assoc_users' => 'Dieser Hersteller ist bereits mit einem Model verknüpft und kann nicht gelöscht werden. Bitte trennen sie Ihre Modelle von diesem Hersteller und versuchen Sie es Erneut.',

Some files were not shown because too many files have changed in this diff Show more