mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-23 12:44:12 -08:00
Updated language strings
This commit is contained in:
parent
8aa920ca3a
commit
c8c279588f
21
resources/lang/af/admin/departments/message.php
Normal file
21
resources/lang/af/admin/departments/message.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
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. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
'success' => 'Department created successfully.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => 'Department was not updated, please try again',
|
||||
'success' => 'Department updated successfully.'
|
||||
),
|
||||
'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.'
|
||||
)
|
||||
|
||||
);
|
11
resources/lang/af/admin/departments/table.php
Normal file
11
resources/lang/af/admin/departments/table.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => 'Department Name',
|
||||
'manager' => 'Manager',
|
||||
'location' => 'Location',
|
||||
'create' => 'Create Department',
|
||||
'update' => 'Update Department',
|
||||
);
|
|
@ -48,6 +48,7 @@ return array(
|
|||
'delete' => array(
|
||||
'confirm' => 'Are you sure you wish to delete this asset?',
|
||||
'error' => 'There was an issue deleting the asset. Please try again.',
|
||||
'nothing_updated' => 'No assets were selected, so nothing was deleted.',
|
||||
'success' => 'The asset was deleted successfully.'
|
||||
),
|
||||
|
||||
|
|
|
@ -28,4 +28,9 @@ return array(
|
|||
'success' => 'Model restored successfully.'
|
||||
),
|
||||
|
||||
'bulkedit' => array(
|
||||
'error' => 'No fields were changed, so nothing was updated.',
|
||||
'success' => 'Models updated.'
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -90,6 +90,7 @@ return array(
|
|||
'about_settings_text' => 'These settings let you customize certain aspects of your installation.',
|
||||
'labels_per_page' => 'Labels per page',
|
||||
'label_dimensions' => 'Label dimensions (inches)',
|
||||
'next_auto_tag_base' => 'Next auto-increment',
|
||||
'page_padding' => 'Page margins (inches)',
|
||||
'purge' => 'Purge Deleted Records',
|
||||
'labels_display_bgutter' => 'Label bottom gutter',
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
'cancel' => 'Cancel',
|
||||
'categories' => 'Categories',
|
||||
'category' => 'Category',
|
||||
'change' => 'In/Out',
|
||||
'changeemail' => 'Change Email Address',
|
||||
'changepassword' => 'Change Password',
|
||||
'checkin' => 'Checkin',
|
||||
|
@ -57,6 +58,8 @@
|
|||
'delete' => 'Delete',
|
||||
'deleted' => 'Deleted',
|
||||
'delete_seats' => 'Deleted Seats',
|
||||
'departments' => 'Departments',
|
||||
'department' => 'Department',
|
||||
'deployed' => 'Deployed',
|
||||
'depreciation_report' => 'Depreciation Report',
|
||||
'download' => 'Download',
|
||||
|
@ -142,13 +145,14 @@
|
|||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_category' => 'Select a Category',
|
||||
'select_department' => 'Select a Department',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'select_date' => 'Select Date (YYYY-MM-DD)',
|
||||
'select_statuslabel' => 'Select Status',
|
||||
'select_company' => 'Select Company',
|
||||
'select_asset' => 'Select Asset',
|
||||
|
|
21
resources/lang/ar/admin/departments/message.php
Normal file
21
resources/lang/ar/admin/departments/message.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
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. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
'success' => 'Department created successfully.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => 'Department was not updated, please try again',
|
||||
'success' => 'Department updated successfully.'
|
||||
),
|
||||
'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.'
|
||||
)
|
||||
|
||||
);
|
11
resources/lang/ar/admin/departments/table.php
Normal file
11
resources/lang/ar/admin/departments/table.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => 'Department Name',
|
||||
'manager' => 'Manager',
|
||||
'location' => 'Location',
|
||||
'create' => 'Create Department',
|
||||
'update' => 'Update Department',
|
||||
);
|
|
@ -48,6 +48,7 @@ return array(
|
|||
'delete' => array(
|
||||
'confirm' => 'Are you sure you wish to delete this asset?',
|
||||
'error' => 'There was an issue deleting the asset. Please try again.',
|
||||
'nothing_updated' => 'No assets were selected, so nothing was deleted.',
|
||||
'success' => 'تم حذف الأصل بنجاح.'
|
||||
),
|
||||
|
||||
|
|
|
@ -28,4 +28,9 @@ return array(
|
|||
'success' => 'تم إستعادة المودير بنجاح.'
|
||||
),
|
||||
|
||||
'bulkedit' => array(
|
||||
'error' => 'No fields were changed, so nothing was updated.',
|
||||
'success' => 'Models updated.'
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -90,6 +90,7 @@ return array(
|
|||
'about_settings_text' => 'These settings let you customize certain aspects of your installation.',
|
||||
'labels_per_page' => 'Labels per page',
|
||||
'label_dimensions' => 'Label dimensions (inches)',
|
||||
'next_auto_tag_base' => 'Next auto-increment',
|
||||
'page_padding' => 'Page margins (inches)',
|
||||
'purge' => 'Purge Deleted Records',
|
||||
'labels_display_bgutter' => 'Label bottom gutter',
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
'cancel' => 'إلغاء',
|
||||
'categories' => 'التصنيفات',
|
||||
'category' => 'تصنيف',
|
||||
'change' => 'In/Out',
|
||||
'changeemail' => 'تغيير عنوان البريد الإلكتروني',
|
||||
'changepassword' => 'تغيير كلمة المرور',
|
||||
'checkin' => 'تسجيل',
|
||||
|
@ -57,6 +58,8 @@
|
|||
'delete' => 'حذف',
|
||||
'deleted' => 'تم حذفها',
|
||||
'delete_seats' => 'Deleted Seats',
|
||||
'departments' => 'Departments',
|
||||
'department' => 'Department',
|
||||
'deployed' => 'مُوزعة',
|
||||
'depreciation_report' => 'تقرير الإستهلاك',
|
||||
'download' => 'Download',
|
||||
|
@ -142,13 +145,14 @@
|
|||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_category' => 'Select a Category',
|
||||
'select_department' => 'Select a Department',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'select_date' => 'Select Date (YYYY-MM-DD)',
|
||||
'select_statuslabel' => 'Select Status',
|
||||
'select_company' => 'Select Company',
|
||||
'select_asset' => 'Select Asset',
|
||||
|
|
21
resources/lang/bg/admin/departments/message.php
Normal file
21
resources/lang/bg/admin/departments/message.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
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. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
'success' => 'Department created successfully.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => 'Department was not updated, please try again',
|
||||
'success' => 'Department updated successfully.'
|
||||
),
|
||||
'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.'
|
||||
)
|
||||
|
||||
);
|
11
resources/lang/bg/admin/departments/table.php
Normal file
11
resources/lang/bg/admin/departments/table.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => 'Department Name',
|
||||
'manager' => 'Manager',
|
||||
'location' => 'Location',
|
||||
'create' => 'Create Department',
|
||||
'update' => 'Update Department',
|
||||
);
|
|
@ -47,6 +47,7 @@ return array(
|
|||
'delete' => array(
|
||||
'confirm' => 'Сигурни ли сте, че желаете изтриване на актива?',
|
||||
'error' => 'Проблем при изтриване на актива. Моля опитайте отново.',
|
||||
'nothing_updated' => 'No assets were selected, so nothing was deleted.',
|
||||
'success' => 'Активът е изтрит успешно.'
|
||||
),
|
||||
|
||||
|
|
|
@ -17,5 +17,5 @@ return array(
|
|||
'locations' => 'Местоположения',
|
||||
'parent' => 'Присъединено към',
|
||||
'currency' => 'Валута на местоположението',
|
||||
'ldap_ou' => 'LDAP Search OU',
|
||||
'ldap_ou' => 'Търсене в LDAP OU',
|
||||
);
|
||||
|
|
|
@ -2,15 +2,15 @@
|
|||
|
||||
return array(
|
||||
'about_manufacturers_title' => 'Относно производителите',
|
||||
'about_manufacturers_text' => 'Manufacturers are the companies that create your assets. You can store important support contact information about them here, which will be displayed on your asset detail pages.',
|
||||
'about_manufacturers_text' => 'Производителите са компаниите, които създават вашите активи. Можете да трупате важна информация на контакти за поддръжка относно тях тук, която ще бъде показана на страницата за подробности на активи.',
|
||||
'asset_manufacturers' => 'Производители',
|
||||
'create' => 'Създаване на производител',
|
||||
'id' => 'ID',
|
||||
'name' => 'Name',
|
||||
'support_email' => 'Support Email',
|
||||
'support_phone' => 'Support Phone',
|
||||
'support_url' => 'Support URL',
|
||||
'name' => 'Име',
|
||||
'support_email' => 'Email за поддръжка',
|
||||
'support_phone' => 'Телефон за поддръжка',
|
||||
'support_url' => 'URL адрес за поддръжка',
|
||||
'update' => 'Обновяване на производител',
|
||||
'url' => 'URL',
|
||||
'url' => 'URL адрес',
|
||||
|
||||
);
|
||||
|
|
|
@ -28,4 +28,9 @@ return array(
|
|||
'success' => 'Моделът възстановен успешно.'
|
||||
),
|
||||
|
||||
'bulkedit' => array(
|
||||
'error' => 'No fields were changed, so nothing was updated.',
|
||||
'success' => 'Models updated.'
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -90,6 +90,7 @@ return array(
|
|||
'about_settings_text' => 'Тези настройки позволяват да конфигурирате различни аспекти на Вашата инсталация.',
|
||||
'labels_per_page' => 'Етикети на страница',
|
||||
'label_dimensions' => 'Измерения на етикети (инчове)',
|
||||
'next_auto_tag_base' => 'Next auto-increment',
|
||||
'page_padding' => 'Марж на страница (инчове)',
|
||||
'purge' => 'Пречисти изтрити записи',
|
||||
'labels_display_bgutter' => 'Обозначаване на долен канал',
|
||||
|
|
|
@ -4,15 +4,15 @@
|
|||
return array(
|
||||
|
||||
'assets_user' => 'Активи предадени на :name',
|
||||
'bulk_update_warn' => 'You are about to edit the properties of :user_count users. Please note that you cannot change your own user attributes using this form, and must make edits to your own user individually.',
|
||||
'bulk_update_help' => 'This form allows you to update multiple users at once. Only fill in the fields you need to change. Any fields left blank will remain unchanged.',
|
||||
'bulk_update_warn' => 'На път сте да редактирате свойствата на :user_count потребители. Моля обърнете внимание, че не можете да променяте собствените си атрибути използвайки този формуляр и трябва да нанесете промени към собствения си потребителски профил индивидуално.',
|
||||
'bulk_update_help' => 'Този формуляр ви позволява да обновявате няколко потребителски профила едновременно. Попълнете единствено полетата, които желаете да промените. Всички празни полета няма да бъдат променени.',
|
||||
'current_assets' => 'Активи, отписани към този потребител в момента',
|
||||
'clone' => 'Копиране на потребител',
|
||||
'contact_user' => 'Връзка :name',
|
||||
'edit' => 'Редактиране на потребител',
|
||||
'filetype_info' => 'Позволените типове файлове са png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, и rar.',
|
||||
'history_user' => 'История за :name',
|
||||
'info' => 'Info',
|
||||
'info' => 'Информация',
|
||||
'last_login' => 'Последен достъп до системата',
|
||||
'ldap_config_text' => 'LDAP конфигурационните настройки могат да бъдат намерени в Admin > Settings. Избраното (по изобр) местоположение ще бъде настроено за всички въведени потребители.',
|
||||
'software_user' => 'Софтуерни продукти, изписани на :name',
|
||||
|
|
|
@ -4,7 +4,7 @@ return array(
|
|||
|
||||
'accepted' => 'Активът беше приет.',
|
||||
'declined' => 'Активът беше отказан.',
|
||||
'bulk_manager_warn' => 'Your users have been successfully updated, however your manager entry was not saved because the manager you selected was also in the user list to be edited, and users may not be their own manager. Please select your users again, excluding the manager.',
|
||||
'bulk_manager_warn' => 'Вашите потребителски профили бяха обновени успешно, обаче вашето управителско вписване не беше запазено, защото управителят, които сте избрали бе в списъка с потребителски профили за промяна и потребителите не могат да бъдат свои управители. Моля изберете вашите потребителски профили отново, с изключение на управителя.',
|
||||
'user_exists' => 'Потребителят вече съществува!',
|
||||
'user_not_found' => 'Потребител [:id] не съществува.',
|
||||
'user_login_required' => 'Полето за вход е задължително',
|
||||
|
@ -17,7 +17,7 @@ return array(
|
|||
'success' => array(
|
||||
'create' => 'Потребителят е създаден.',
|
||||
'update' => 'Потребителят е обновен.',
|
||||
'update_bulk' => 'Users were successfully updated!',
|
||||
'update_bulk' => 'Потребителите бяха обновени успешно!',
|
||||
'delete' => 'Потребителят е изтрит.',
|
||||
'ban' => 'Потребителят беше забранен успешно.',
|
||||
'unban' => 'Потребителят възстановен успешно.',
|
||||
|
|
|
@ -27,10 +27,10 @@ return array(
|
|||
'show_current' => 'Преглед на текущите потребители',
|
||||
'show_deleted' => 'Преглед на изтритите потребители',
|
||||
'title' => 'Титла',
|
||||
'to_restore_them' => 'to restore them.',
|
||||
'to_restore_them' => 'да ги възстановите.',
|
||||
'updateuser' => 'Обновяване на потребител',
|
||||
'username' => 'Потребителско име',
|
||||
'user_deleted_text' => 'This user has been marked as deleted.',
|
||||
'user_deleted_text' => 'Потребителят бе маркиран като изтрит.',
|
||||
'username_note' => '(Използва се за достъп до Active Directory, а не за вход.)',
|
||||
'cloneuser' => 'Копиране на потребител',
|
||||
'viewusers' => 'Преглед на потребителите',
|
||||
|
|
|
@ -11,5 +11,5 @@ return array(
|
|||
'request' => 'Заявка',
|
||||
'submit' => 'Потвърди',
|
||||
'upload' => 'Качване',
|
||||
'select_file' => 'Select File...',
|
||||
'select_file' => 'Изберете файл...',
|
||||
);
|
||||
|
|
|
@ -27,18 +27,19 @@
|
|||
'cancel' => 'Отказ',
|
||||
'categories' => 'Категории',
|
||||
'category' => 'Категория',
|
||||
'change' => 'In/Out',
|
||||
'changeemail' => 'Промяна на email адрес',
|
||||
'changepassword' => 'Смяна на паролата',
|
||||
'checkin' => 'Вписване',
|
||||
'checkin_from' => 'Форма за вписване',
|
||||
'checkout' => 'Изписване',
|
||||
'city' => 'Град',
|
||||
'click_here' => 'Click here',
|
||||
'click_here' => 'Натиснете тук',
|
||||
'companies' => 'Компании',
|
||||
'company' => 'Компания',
|
||||
'component' => 'Компонент',
|
||||
'components' => 'Компоненти',
|
||||
'complete' => 'Complete',
|
||||
'complete' => 'Завърши',
|
||||
'consumable' => 'Консуматив',
|
||||
'consumables' => 'Консумативи',
|
||||
'country' => 'Държава',
|
||||
|
@ -46,7 +47,7 @@
|
|||
'created' => 'Създадени артикули',
|
||||
'created_asset' => 'създадени активи',
|
||||
'created_at' => 'Създаден на',
|
||||
'updated_at' => 'Updated at',
|
||||
'updated_at' => 'Обновено на',
|
||||
'currency' => '$', // this is deprecated
|
||||
'current' => 'Текущи',
|
||||
'custom_report' => 'Потребителски справки за активи',
|
||||
|
@ -57,6 +58,8 @@
|
|||
'delete' => 'Изтриване',
|
||||
'deleted' => 'Изтрито',
|
||||
'delete_seats' => 'Изтрити работни места за лиценз',
|
||||
'departments' => 'Departments',
|
||||
'department' => 'Department',
|
||||
'deployed' => 'Изписани',
|
||||
'depreciation_report' => 'Справка за амортизации',
|
||||
'download' => 'Изтегляне',
|
||||
|
@ -90,7 +93,7 @@
|
|||
'insufficient_permissions' => 'Нямате необходимите права!',
|
||||
'language' => 'Език',
|
||||
'last' => 'Последна',
|
||||
'last_login' => 'Last Login',
|
||||
'last_login' => 'Последен достъп до системата',
|
||||
'last_name' => 'Фамилия',
|
||||
'license' => 'Лиценз',
|
||||
'license_report' => 'Справка за лицензите',
|
||||
|
@ -142,13 +145,14 @@
|
|||
'select' => 'Избор',
|
||||
'search' => 'Търсене',
|
||||
'select_category' => 'Изберете категория',
|
||||
'select_department' => 'Select a Department',
|
||||
'select_depreciation' => 'Избор на вид амортизация',
|
||||
'select_location' => 'Избор на местоположение',
|
||||
'select_manufacturer' => 'Избор на производител',
|
||||
'select_model' => 'Избор на модел',
|
||||
'select_supplier' => 'Избор на доставчик',
|
||||
'select_user' => 'Избор на потребител',
|
||||
'select_date' => 'Избор на дата',
|
||||
'select_date' => 'Select Date (YYYY-MM-DD)',
|
||||
'select_statuslabel' => 'Избор на статус',
|
||||
'select_company' => 'Изберете компания',
|
||||
'select_asset' => 'Изберете актив',
|
||||
|
@ -162,10 +166,10 @@
|
|||
'status' => 'Статус',
|
||||
'supplier' => 'Доставчик',
|
||||
'suppliers' => 'Доставчици',
|
||||
'sure_to_delete' => 'Are you sure you wish to delete',
|
||||
'sure_to_delete' => 'Сигурни ли сте, че искате да изтриете',
|
||||
'submit' => 'Изпрати',
|
||||
'target' => 'Цел',
|
||||
'time_and_date_display' => 'Time and Date Display',
|
||||
'time_and_date_display' => 'Показване на време и дата',
|
||||
'total_assets' => 'общо активи',
|
||||
'total_licenses' => 'общо лицензи',
|
||||
'total_accessories' => 'Общ брой аксесоари',
|
||||
|
|
|
@ -25,7 +25,7 @@ return array(
|
|||
"file" => ":attribute трябва да бъде с големина между :min и :max KB.",
|
||||
"string" => ":attribute трябва да бъде с дължина между :min и :max символа.",
|
||||
),
|
||||
"boolean" => "The :attribute must be true or false.",
|
||||
"boolean" => ":attribute трябва да е верен или грешен.",
|
||||
"confirmed" => ":attribute потвърждение не съвпада.",
|
||||
"date" => ":attribute не е валидна дата.",
|
||||
"date_format" => ":attribute не съвпада с формата :format.",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
return [
|
||||
'about_companies_title' => 'O společnostech',
|
||||
'about_companies_text' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.',
|
||||
'about_companies_text' => 'Společnosti mohou být použity jako jednoduché pole identifikátorů nebo mohou být použity k omezení viditelnosti majetku, uživatelů atd., Pokud je v nastavení administrátora povolena plná podpora společnosti.',
|
||||
'select_company' => 'Zvolte společnost',
|
||||
];
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
return array(
|
||||
'about_consumables_title' => 'O spotřebním materiálu',
|
||||
'about_consumables_text' => 'Spotřební materiál jsou takové položky, které jsou v čase spotřebovávány, jako např. toner, inkoust či papír do tiskáren.',
|
||||
'checkout' => 'Checkout Consumable to User',
|
||||
'checkout' => 'Výdej spotřebního materiálu uživateli',
|
||||
'consumable_name' => 'Název sp. materiálu',
|
||||
'create' => 'Vytvořit sp. materiál',
|
||||
'item_no' => 'Položka č.',
|
||||
|
|
|
@ -6,8 +6,8 @@ return array(
|
|||
'about_fieldsets_title' => 'O sadách polí',
|
||||
'about_fieldsets_text' => 'Sady polí Vám umožňují vytvořit si vlastní hodnoty, které chcete evidovat u modelů majetku.',
|
||||
'custom_format' => 'Vlastní formát...',
|
||||
'encrypt_field' => 'Encrypt the value of this field in the database',
|
||||
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
|
||||
'encrypt_field' => 'Zašifrovat hodnotu tohoto pole v databázi',
|
||||
'encrypt_field_help' => 'UPOZORNĚNÍ: Šifrování pole je udělá nevyhledatelné.',
|
||||
'encrypted' => 'Šifrováno',
|
||||
'fieldset' => 'Sada',
|
||||
'qty_fields' => 'Počet',
|
||||
|
@ -15,7 +15,7 @@ return array(
|
|||
'fieldset_name' => 'Název sady',
|
||||
'field_name' => 'Název pole',
|
||||
'field_values' => 'Hodnota',
|
||||
'field_values_help' => 'Add selectable options, one per line. Blank lines other than the first line will be ignored.',
|
||||
'field_values_help' => 'Přidat možnosti výběru, jedna možnost na řádek. Prázdné řádky jiné než první řádek budou ignorovány.',
|
||||
'field_element' => 'Typ pole',
|
||||
'field_element_short' => 'Typ',
|
||||
'field_format' => 'Formát',
|
||||
|
@ -26,5 +26,5 @@ return array(
|
|||
'order' => 'Pořadí',
|
||||
'create_fieldset' => 'Nová sada',
|
||||
'create_field' => 'Nové vlastní pole',
|
||||
'value_encrypted' => 'The value of this field is encrypted in the database. Only admin users will be able to view the decrypted value',
|
||||
'value_encrypted' => 'Hodnota tohoto pole je zašifrována v databázi. Pouze administrátoři budou moci zobrazit dešifrovanou hodnotu',
|
||||
);
|
||||
|
|
21
resources/lang/cs/admin/departments/message.php
Normal file
21
resources/lang/cs/admin/departments/message.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
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. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
'success' => 'Department created successfully.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => 'Department was not updated, please try again',
|
||||
'success' => 'Department updated successfully.'
|
||||
),
|
||||
'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.'
|
||||
)
|
||||
|
||||
);
|
11
resources/lang/cs/admin/departments/table.php
Normal file
11
resources/lang/cs/admin/departments/table.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => 'Department Name',
|
||||
'manager' => 'Manager',
|
||||
'location' => 'Location',
|
||||
'create' => 'Create Department',
|
||||
'update' => 'Update Department',
|
||||
);
|
|
@ -4,9 +4,9 @@ return array(
|
|||
'about_asset_depreciations' => 'O amortizaci majetku',
|
||||
'about_depreciations' => 'Můžete nastavit amortizaci majetku pro jeho rovnoměrné odepisování.',
|
||||
'asset_depreciations' => 'Amortizace majetku',
|
||||
'create' => 'Create Depreciation',
|
||||
'create' => 'Vytvořit amortizaci',
|
||||
'depreciation_name' => 'Jméno amortizace',
|
||||
'number_of_months' => 'Počet měsíců',
|
||||
'update' => 'Update Depreciation',
|
||||
'update' => 'Aktualizovat amortizaci',
|
||||
|
||||
);
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
'about_groups_title' => 'About Groups',
|
||||
'about_groups' => 'Groups are used to generalize user permissions.',
|
||||
'about_groups_title' => 'O skupinách',
|
||||
'about_groups' => 'Skupiny se používají ke zobecnění uživatelských oprávnění.',
|
||||
'group_management' => 'Správa skupin',
|
||||
'create' => 'Vytvořit novou skupinu',
|
||||
'update' => 'Upravit skupinu',
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
'about_assets_title' => 'About Assets',
|
||||
'about_assets_text' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.',
|
||||
'about_assets_title' => 'O majetku',
|
||||
'about_assets_text' => 'Majetky jsou položky sledované sériovým číslem nebo značkou. Mají tendenci mít vyšší hodnotou, tam kde je důležitá identifikace určité položky.',
|
||||
'archived' => 'Archivováno',
|
||||
'asset' => 'Majetek',
|
||||
'bulk_checkout' => 'Předat majetek uživateli',
|
||||
|
|
|
@ -37,17 +37,18 @@ return array(
|
|||
),
|
||||
|
||||
'import' => array(
|
||||
'error' => 'Some items did not import correctly.',
|
||||
'errorDetail' => 'The following Items were not imported because of errors.',
|
||||
'success' => "Your file has been imported",
|
||||
'file_delete_success' => "Your file has been been successfully deleted",
|
||||
'file_delete_error' => "The file was unable to be deleted",
|
||||
'error' => 'Některé položky nebyly správně importovány.',
|
||||
'errorDetail' => 'Následující položky nebyly importovány kvůli chybám.',
|
||||
'success' => "Váš soubor byl importován",
|
||||
'file_delete_success' => "Váš soubor byl úspěšně odstraněn",
|
||||
'file_delete_error' => "Soubor nelze odstranit",
|
||||
),
|
||||
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Opravdu si přejete tento majetek odstranit?',
|
||||
'error' => 'Nepodařilo se nám tento majetek odstranit. Zkuste to prosím znovu.',
|
||||
'nothing_updated' => 'No assets were selected, so nothing was deleted.',
|
||||
'success' => 'Majetek byl úspěšně smazán.'
|
||||
),
|
||||
|
||||
|
@ -55,7 +56,7 @@ return array(
|
|||
'error' => 'Majetek nebyl předán, zkuste to prosím znovu',
|
||||
'success' => 'Majetek byl v pořádku předán.',
|
||||
'user_does_not_exist' => 'Tento uživatel je neplatný. Zkuste to prosím znovu.',
|
||||
'not_available' => 'That asset is not available for checkout!'
|
||||
'not_available' => 'Tento majetek není k dispozici pro výdej!'
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
|
@ -69,7 +70,7 @@ return array(
|
|||
'requests' => array(
|
||||
'error' => 'Majetek nebyl vyžádán, zkuste to prosím znovu',
|
||||
'success' => 'Vyžádání majetku proběhlo v pořádku.',
|
||||
'canceled' => 'Checkout request successfully canceled'
|
||||
'canceled' => 'Požadavek na výdej byl úspěšně zrušen'
|
||||
)
|
||||
|
||||
);
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
'about_licenses_title' => 'About Licenses',
|
||||
'about_licenses' => 'Licenses are used to track software. They have a specified number of seats that can be checked out to individuals',
|
||||
'about_licenses_title' => 'O licencích',
|
||||
'about_licenses' => 'Licence jsou používány ke sledování softwaru. Mají stanovený počet uživatelských licencí, které mohou být přiděleny jednotlivcům',
|
||||
'checkin' => 'Převzít jednu licenci',
|
||||
'checkout_history' => 'Historie',
|
||||
'checkout' => 'Předat jednu licenci',
|
||||
|
|
|
@ -4,9 +4,9 @@ return array(
|
|||
|
||||
'does_not_exist' => 'Licence neexistuje.',
|
||||
'user_does_not_exist' => 'Uživatel neexistuje.',
|
||||
'asset_does_not_exist' => 'The asset you are trying to associate with this license does not exist.',
|
||||
'owner_doesnt_match_asset' => 'The asset you are trying to associate with this license is owned by somene other than the person selected in the assigned to dropdown.',
|
||||
'assoc_users' => 'This license is currently checked out to a user and cannot be deleted. Please check the license in first, and then try deleting again. ',
|
||||
'asset_does_not_exist' => 'Majetek, který se pokoušíte spojit s touto licencí, neexistuje.',
|
||||
'owner_doesnt_match_asset' => 'Majetek, který se pokoušíte spojit s touto licencí, vlastní někdo jiný než osoba vybraná v rozbalovací nabídce k této licenci.',
|
||||
'assoc_users' => 'Licence je předána svému uživateli a nelze ji odstranit. Před odstraněním ji nejprve převezměte. ',
|
||||
|
||||
|
||||
'create' => array(
|
||||
|
@ -21,29 +21,29 @@ return array(
|
|||
|
||||
'upload' => array(
|
||||
'error' => 'Soubor(y) se nepodařilo nahrát. Prosím zkuste to znovu.',
|
||||
'success' => 'File(s) successfully uploaded.',
|
||||
'nofiles' => 'You did not select any files for upload, or the file you are trying to upload is too large',
|
||||
'invalidfiles' => 'One or more of your files is too large or is a filetype that is not allowed. Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, rar, rtf, xml, and lic.',
|
||||
'success' => 'Soubor(y) byly v pořádku nahrány.',
|
||||
'nofiles' => 'K nahrání jste nevybrali žádný, nebo příliš velký soubor',
|
||||
'invalidfiles' => 'Jeden nebo více označených souborů je příliš velkých nebo nejsou podporované. Povolenými příponami jsou png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, rar, rtf, xml, a lic.',
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'License was not updated, please try again',
|
||||
'success' => 'License updated successfully.'
|
||||
'error' => 'Licence nebyla aktualizována, zkuste to prosím znovu',
|
||||
'success' => 'Licence byla úspěšně aktualizována.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Are you sure you wish to delete this license?',
|
||||
'error' => 'There was an issue deleting the license. Please try again.',
|
||||
'confirm' => 'Jste si jisti, že chcete odstranit tuto licenci?',
|
||||
'error' => 'Vyskytl se problém při mazání licence. Zkuste to znovu prosím.',
|
||||
'success' => 'Licence byla úspěšně smazána.'
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
'error' => 'There was an issue checking out the license. Please try again.',
|
||||
'success' => 'The license was checked out successfully'
|
||||
'error' => 'Vyskytl se problém při výdeji licence. Zkuste to znovu prosím.',
|
||||
'success' => 'Licence byla úspěšně vydána'
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'There was an issue checking in the license. Please try again.',
|
||||
'error' => 'Vyskytl se problém při ověřování licence. Zkuste to znovu prosím.',
|
||||
'success' => 'Licence byla úspěšně zkontrolována'
|
||||
),
|
||||
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
return array(
|
||||
|
||||
'does_not_exist' => 'Místo neexistuje.',
|
||||
'assoc_users' => 'This location is currently associated with at least one user and cannot be deleted. Please update your users to no longer reference this location and try again. ',
|
||||
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
|
||||
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
|
||||
'assoc_users' => 'Toto umístění je spojeno s alespoň jedním uživatelem a nemůže být smazáno. Aktualizujte uživatele aby nenáleželi k tomuto umístění a zkuste to znovu. ',
|
||||
'assoc_assets' => 'Toto umístění je spojeno s alespoň jedním majetkem a nemůže být smazáno. Aktualizujte majetky tak aby nenáleželi k tomuto umístění a zkuste to znovu. ',
|
||||
'assoc_child_loc' => 'Toto umístění je nadřazené alespoň jednomu umístění a nelze jej smazat. Aktualizujte své umístění tak, aby na toto umístění již neodkazovalo a zkuste to znovu. ',
|
||||
|
||||
|
||||
'create' => array(
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
'about_locations_title' => 'About Locations',
|
||||
'about_locations' => 'Locations are used to track location information for users, assets, and other items',
|
||||
'about_locations_title' => 'O umístěních',
|
||||
'about_locations' => 'Umístění se používá ke sledování informací o poloze uživatelů, majetku a dalších položek',
|
||||
'assets_rtd' => 'Zařízení', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted.
|
||||
'assets_checkedout' => 'Předaných zař.',
|
||||
'id' => 'ID',
|
||||
|
@ -17,5 +17,5 @@ return array(
|
|||
'locations' => 'Umístění',
|
||||
'parent' => 'Nadřazené',
|
||||
'currency' => 'Měna',
|
||||
'ldap_ou' => 'LDAP Search OU',
|
||||
'ldap_ou' => 'LDAP Vyhledat OU',
|
||||
);
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
'about_manufacturers_title' => 'About manufacturers',
|
||||
'about_manufacturers_text' => 'Manufacturers are the companies that create your assets. You can store important support contact information about them here, which will be displayed on your asset detail pages.',
|
||||
'about_manufacturers_title' => 'O výrobcích',
|
||||
'about_manufacturers_text' => 'Výrobci jsou společnosti, které vytvářejí váš majetek. Zde můžete uložit důležitá kontaktní informace o podpoře, která se zobrazí na stránkách s podrobnostmi o majetku.',
|
||||
'asset_manufacturers' => 'Výrobci',
|
||||
'create' => 'Vytvořit výrobce',
|
||||
'id' => 'ID',
|
||||
'name' => 'Name',
|
||||
'support_email' => 'Support Email',
|
||||
'support_phone' => 'Support Phone',
|
||||
'support_url' => 'Support URL',
|
||||
'name' => 'Název',
|
||||
'support_email' => 'Emailová podpora',
|
||||
'support_phone' => 'Telefonní podpora',
|
||||
'support_url' => 'URL podpory',
|
||||
'update' => 'Upravit Výrobce',
|
||||
'url' => 'URL',
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
'about_models_title' => 'About Asset Models',
|
||||
'about_models_text' => 'Asset Models are a way to group identical assets. "MBP 2013", "IPhone 6s", etc.',
|
||||
'about_models_title' => 'O modelech majetku',
|
||||
'about_models_text' => 'Modely majetku jsou způsoby seskupení shodných majetků. "MBP 2013", "iPhone 6s" atd.',
|
||||
'deleted' => 'Model byl vymazán. <a href="/hardware/models/:model_id/restore">Klikněte sem pro jeho obnovení</a>.',
|
||||
'restore' => 'Obnovení Modelu',
|
||||
'requestable' => 'Users may request this model',
|
||||
'requestable' => 'Uživatelé můžou požádat o tento model',
|
||||
'show_mac_address' => 'Zobrazovat pole MAC adresa u zařízení tohoto druhu',
|
||||
'view_deleted' => 'Zobrazit smazané',
|
||||
'view_models' => 'Zobrazit Modely',
|
||||
|
|
|
@ -2,30 +2,35 @@
|
|||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Model does not exist.',
|
||||
'assoc_users' => 'This model is currently associated with one or more assets and cannot be deleted. Please delete the assets, and then try deleting again. ',
|
||||
'does_not_exist' => 'Model neexistuje.',
|
||||
'assoc_users' => 'Tento model je spojen s alespoň jedním majetkem a nemůže být smazán. Prosím smažte tyto majetky a pak to zkuste znovu. ',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => 'Model was not created, please try again.',
|
||||
'success' => 'Model created successfully.',
|
||||
'duplicate_set' => 'An asset model with that name, manufacturer and model number already exists.',
|
||||
'error' => 'Model nebyl vytvořen, zkuste to znovu.',
|
||||
'success' => 'Model byl úspěšně vytvořen.',
|
||||
'duplicate_set' => 'Model majetku s tímto názvem, výrobcem a číslem modelu již existuje.',
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'Model was not updated, please try again',
|
||||
'success' => 'Model updated successfully.'
|
||||
'error' => 'Model nebyl aktualizován, zkuste to prosím znovu',
|
||||
'success' => 'Model byl úspěšně aktualizován.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Are you sure you wish to delete this asset model?',
|
||||
'error' => 'There was an issue deleting the model. Please try again.',
|
||||
'success' => 'The model was deleted successfully.'
|
||||
'confirm' => 'Opravdu si přejete tento model majetku odstranit?',
|
||||
'error' => 'Vyskytl se problém se smazáním modelu. Zkuste to znovu.',
|
||||
'success' => 'Model byl úspěšně smazán.'
|
||||
),
|
||||
|
||||
'restore' => array(
|
||||
'error' => 'Model was not restored, please try again',
|
||||
'success' => 'Model restored successfully.'
|
||||
'error' => 'Model nebyl obnoven, zkuste to prosím znovu',
|
||||
'success' => 'Model byl úspěšně obnoven.'
|
||||
),
|
||||
|
||||
'bulkedit' => array(
|
||||
'error' => 'No fields were changed, so nothing was updated.',
|
||||
'success' => 'Models updated.'
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
return array(
|
||||
'ad' => 'Active Directory',
|
||||
'ad_domain' => 'Active Directory domain',
|
||||
'ad_domain_help' => 'This is sometimes the same as your email domain, but not always.',
|
||||
'is_ad' => 'This is an Active Directory server',
|
||||
'ad_domain' => 'Doména služby Active Directory',
|
||||
'ad_domain_help' => 'Toto je někdy stejné jako vaše emailová doména, ale ne vždy.',
|
||||
'is_ad' => 'Toto je server služby Active Directory',
|
||||
'alert_email' => 'Zasílat upozornění na',
|
||||
'alerts_enabled' => 'Upozornění zapnutá',
|
||||
'alert_interval' => 'Mez upozornění na vypršení (ve dnech)',
|
||||
|
@ -16,56 +16,56 @@ return array(
|
|||
'backups' => 'Zálohy',
|
||||
'barcode_settings' => 'Nastavení čárového kódu',
|
||||
'confirm_purge' => 'Potvrdit vyčištění',
|
||||
'confirm_purge_help' => 'Enter the text "DELETE" in the box below to purge your deleted records. This action cannot be undone.',
|
||||
'custom_css' => 'Custom CSS',
|
||||
'custom_css_help' => 'Enter any custom CSS overrides you would like to use. Do not include the <style></style> tags.',
|
||||
'default_currency' => 'Default Currency',
|
||||
'confirm_purge_help' => 'Do rámečku níže zadejte text "DELETE", čímž odstraníte odstraněné záznamy. Tuto akci nelze vrátit zpět.',
|
||||
'custom_css' => 'Vlastní CSS',
|
||||
'custom_css_help' => 'Zadejte libovolné vlastní CSS, které chcete použít. Nezahrnujte <style></style> tagy.',
|
||||
'default_currency' => 'Výchozí měna',
|
||||
'default_eula_text' => 'Výchozí EULA',
|
||||
'default_language' => 'Default Language',
|
||||
'default_language' => 'Výchozí jazyk',
|
||||
'default_eula_help_text' => 'Můžete také spojit vlastní EULA se specifickými kategoriemi majetku.',
|
||||
'display_asset_name' => 'Zobrazit název majetku',
|
||||
'display_checkout_date' => 'Zobrazit den převzetí',
|
||||
'display_eol' => 'Zobrazit EOL v tabulkovém zobrazení',
|
||||
'display_qr' => 'Display Square Codes',
|
||||
'display_alt_barcode' => 'Display 1D barcode',
|
||||
'barcode_type' => '2D Barcode Type',
|
||||
'alt_barcode_type' => '1D barcode type',
|
||||
'display_qr' => 'Zobrazit kódy',
|
||||
'display_alt_barcode' => 'Zobrazit 1D čárový kód',
|
||||
'barcode_type' => 'Typ 2D čárového kódu',
|
||||
'alt_barcode_type' => 'Typ 1D čárového kódu',
|
||||
'eula_settings' => 'Nastavení EULA',
|
||||
'eula_markdown' => 'Tato EULA umožňuje <a href="https://help.github.com/articles/github-flavored-markdown/">Github markdown</a>.',
|
||||
'general_settings' => 'Obecné nastavení',
|
||||
'generate_backup' => 'Generate Backup',
|
||||
'generate_backup' => 'Vytvořit zálohu',
|
||||
'header_color' => 'Barva záhlaví',
|
||||
'info' => 'Tato nastavení umožňují zvolit určité prvky instalace.',
|
||||
'laravel' => 'Verze Laravel',
|
||||
'ldap_enabled' => 'LDAP enabled',
|
||||
'ldap_integration' => 'LDAP Integration',
|
||||
'ldap_settings' => 'LDAP Settings',
|
||||
'ldap_server' => 'LDAP Server',
|
||||
'ldap_server_help' => 'This should start with ldap:// (for unencrypted or TLS) or ldaps:// (for SSL)',
|
||||
'ldap_server_cert' => 'LDAP SSL certificate validation',
|
||||
'ldap_server_cert_ignore' => 'Allow invalid SSL Certificate',
|
||||
'ldap_server_cert_help' => 'Select this checkbox if you are using a self signed SSL cert and would like to accept an invalid SSL certificate.',
|
||||
'ldap_tls' => 'Use TLS',
|
||||
'ldap_tls_help' => 'This should be checked only if you are running STARTTLS on your LDAP server. ',
|
||||
'ldap_uname' => 'LDAP Bind Username',
|
||||
'ldap_pword' => 'LDAP Bind Password',
|
||||
'ldap_basedn' => 'Base Bind DN',
|
||||
'ldap_filter' => 'LDAP Filter',
|
||||
'ldap_pw_sync' => 'LDAP Password Sync',
|
||||
'ldap_pw_sync_help' => 'Uncheck this box if you do not wish to keep LDAP passwords synced with local passwords. Disabling this means that your users may not be able to login if your LDAP server is unreachable for some reason.',
|
||||
'ldap_username_field' => 'Username Field',
|
||||
'ldap_lname_field' => 'Last Name',
|
||||
'ldap_fname_field' => 'LDAP First Name',
|
||||
'ldap_auth_filter_query' => 'LDAP Authentication query',
|
||||
'ldap_version' => 'LDAP Version',
|
||||
'ldap_enabled' => 'LDAP povoleno',
|
||||
'ldap_integration' => 'LDAP integrace',
|
||||
'ldap_settings' => 'Nastavení LDAP',
|
||||
'ldap_server' => 'LDAP server',
|
||||
'ldap_server_help' => 'Toto by mělo začít s ldap: // (pro nešifrované nebo TLS) nebo ldaps: // (pro SSL)',
|
||||
'ldap_server_cert' => 'Validace certifikátů LDAP SSL',
|
||||
'ldap_server_cert_ignore' => 'Povolit neplatný certifikát SSL',
|
||||
'ldap_server_cert_help' => 'Zaškrtněte toto políčko, pokud používáte SSL certifikát s vlastním podpisem a chcete přijmout neplatný certifikát SSL.',
|
||||
'ldap_tls' => 'Použít TLS',
|
||||
'ldap_tls_help' => 'Tuto možnost byste měli zkontrolovat pouze v případě, že používáte STARTTLS na serveru LDAP. ',
|
||||
'ldap_uname' => 'LDAP uživatelské jméno připojení',
|
||||
'ldap_pword' => 'LDAP heslo připojení',
|
||||
'ldap_basedn' => 'Základní svázání DN',
|
||||
'ldap_filter' => 'LDAP filtr',
|
||||
'ldap_pw_sync' => 'LDAP heslo synchronizace',
|
||||
'ldap_pw_sync_help' => 'Zrušte zaškrtnutí tohoto políčka, pokud si nepřejete zachovat hesla LDAP synchronizovaná s lokálními hesly. Pokud to zakážete znamená to, že se uživatelé nemusí přihlásit, pokud je váš LDAP server z nějakého důvodu nedostupný.',
|
||||
'ldap_username_field' => 'Pole uživatelského jména',
|
||||
'ldap_lname_field' => 'Příjmení',
|
||||
'ldap_fname_field' => 'LDAP jméno',
|
||||
'ldap_auth_filter_query' => 'LDAP ověřovací dotaz',
|
||||
'ldap_version' => 'Verze LDAP',
|
||||
'ldap_active_flag' => 'LDAP Active Flag',
|
||||
'ldap_emp_num' => 'LDAP Employee Number',
|
||||
'ldap_email' => 'LDAP Email',
|
||||
'load_remote_text' => 'Remote Scripts',
|
||||
'load_remote_help_text' => 'This Snipe-IT install can load scripts from the outside world.',
|
||||
'ldap_emp_num' => 'LDAP číslo zaměstnance',
|
||||
'ldap_email' => 'LDAP email',
|
||||
'load_remote_text' => 'Vzdálené skripty',
|
||||
'load_remote_help_text' => 'Tato instalace Snipe-IT může nahrávat skripty z vnějšího světa.',
|
||||
'logo' => 'Logo',
|
||||
'full_multiple_companies_support_help_text' => 'Restricting users (including admins) assigned to companies to their company\'s assets.',
|
||||
'full_multiple_companies_support_text' => 'Full Multiple Companies Support',
|
||||
'full_multiple_companies_support_help_text' => 'Omezení uživatelů (včetně správců) jsou přiřazená ke společnostem s majetkem společnosti.',
|
||||
'full_multiple_companies_support_text' => 'Plná podpora více společností',
|
||||
'optional' => 'volitelný',
|
||||
'per_page' => 'Výsledků na stránku',
|
||||
'php' => 'Verze PHP',
|
||||
|
@ -77,57 +77,58 @@ return array(
|
|||
'settings' => 'Nastavení',
|
||||
'site_name' => 'Název stránky',
|
||||
'slack_botname' => 'Slack Botname',
|
||||
'slack_channel' => 'Slack Channel',
|
||||
'slack_endpoint' => 'Slack Endpoint',
|
||||
'slack_integration' => 'Slack Settings',
|
||||
'slack_integration_help' => 'Slack integration is optional, however the endpoint and channel are required if you wish to use it. To configure Slack integration, you must first <a href=":slack_link" target="_new">create an incoming webhook</a> on your Slack account.',
|
||||
'slack_channel' => 'Slack kanál',
|
||||
'slack_endpoint' => 'Slack koncový bod',
|
||||
'slack_integration' => 'Nastavení Slack',
|
||||
'slack_integration_help' => 'Slack integrace je dobrovolná, nicméně pokud ho chcete používat jsou vyžadovány koncový bod a kanál. Chcete-li nakonfigurovat integraci Slack, nejprve <a href=":slack_link" target="_new"> ytvořte příchozí webhook</a> na vašem Slack účtu.',
|
||||
'snipe_version' => 'Verze Snipe-IT',
|
||||
'system' => 'Systémové informace',
|
||||
'update' => 'Upravit nastavení',
|
||||
'value' => 'Hodnota',
|
||||
'brand' => 'Branding',
|
||||
'about_settings_title' => 'About Settings',
|
||||
'about_settings_text' => 'These settings let you customize certain aspects of your installation.',
|
||||
'labels_per_page' => 'Labels per page',
|
||||
'label_dimensions' => 'Label dimensions (inches)',
|
||||
'page_padding' => 'Page margins (inches)',
|
||||
'purge' => 'Purge Deleted Records',
|
||||
'labels_display_bgutter' => 'Label bottom gutter',
|
||||
'labels_display_sgutter' => 'Label side gutter',
|
||||
'labels_fontsize' => 'Label font size',
|
||||
'labels_pagewidth' => 'Label sheet width',
|
||||
'labels_pageheight' => 'Label sheet height',
|
||||
'label_gutters' => 'Label spacing (inches)',
|
||||
'page_dimensions' => 'Page dimensions (inches)',
|
||||
'label_fields' => 'Label visible fields',
|
||||
'inches' => 'inches',
|
||||
'width_w' => 'w',
|
||||
'height_h' => 'h',
|
||||
'brand' => 'Opatřit značkou',
|
||||
'about_settings_title' => 'O nastavení',
|
||||
'about_settings_text' => 'Tato nastavení umožňují zvolit určité prvky instalace.',
|
||||
'labels_per_page' => 'Štítků na stránku',
|
||||
'label_dimensions' => 'Rozměry štítku (palce)',
|
||||
'next_auto_tag_base' => 'Next auto-increment',
|
||||
'page_padding' => 'Okraje stránky (palce)',
|
||||
'purge' => 'Vyčištění odstraněných záznamů',
|
||||
'labels_display_bgutter' => 'Spodní okraj štítku',
|
||||
'labels_display_sgutter' => 'Boční okraj štítku',
|
||||
'labels_fontsize' => 'Velikost písma štítku',
|
||||
'labels_pagewidth' => 'Šířka listu štítku',
|
||||
'labels_pageheight' => 'Výška listu štítku',
|
||||
'label_gutters' => 'Mezery štítku (palce)',
|
||||
'page_dimensions' => 'Rozměry stránky (palce)',
|
||||
'label_fields' => 'Viditelná pole štítku',
|
||||
'inches' => 'palce',
|
||||
'width_w' => 'š',
|
||||
'height_h' => 'v',
|
||||
'text_pt' => 'pt',
|
||||
'two_factor' => 'Two Factor Authentication',
|
||||
'two_factor_secret' => 'Two-Factor Code',
|
||||
'two_factor_enrollment' => 'Two-Factor Enrollment',
|
||||
'two_factor_enabled_text' => 'Enable Two Factor',
|
||||
'two_factor_reset' => 'Reset Two-Factor Secret',
|
||||
'two_factor_reset_help' => 'This will force the user to enroll their device with Google Authenticator again. This can be useful if their currently enrolled device is lost or stolen. ',
|
||||
'two_factor_reset_success' => 'Two factor device successfully reset',
|
||||
'two_factor_reset_error' => 'Two factor device reset failed',
|
||||
'two_factor_enabled_warning' => 'Enabling two-factor if it is not currently enabled will immediately force you to authenticate with a Google Auth enrolled device. You will have the ability to enroll your device if one is not currently enrolled.',
|
||||
'two_factor_enabled_help' => 'This will turn on two-factor authentication using Google Authenticator.',
|
||||
'two_factor_optional' => 'Selective (Users can enable or disable if permitted)',
|
||||
'two_factor_required' => 'Required for all users',
|
||||
'two_factor_disabled' => 'Disabled',
|
||||
'two_factor_enter_code' => 'Enter Two-Factor Code',
|
||||
'two_factor_config_complete' => 'Submit Code',
|
||||
'two_factor_enabled_edit_not_allowed' => 'Your administrator does not permit you to edit this setting.',
|
||||
'two_factor_enrollment_text' => "Two factor authentication is required, however your device has not been enrolled yet. Open your Google Authenticator app and scan the QR code below to enroll your device. Once you've enrolled your device, enter the code below",
|
||||
'require_accept_signature' => 'Require Signature',
|
||||
'require_accept_signature_help_text' => 'Enabling this feature will require users to physically sign off on accepting an asset.',
|
||||
'left' => 'left',
|
||||
'right' => 'right',
|
||||
'top' => 'top',
|
||||
'bottom' => 'bottom',
|
||||
'vertical' => 'vertical',
|
||||
'horizontal' => 'horizontal',
|
||||
'zerofill_count' => 'Length of asset tags, including zerofill',
|
||||
'two_factor' => 'Dvoufaktorové ověření',
|
||||
'two_factor_secret' => 'Dvojfaktorový kód',
|
||||
'two_factor_enrollment' => 'Dvojfaktorový zápis',
|
||||
'two_factor_enabled_text' => 'Povolit Dvoufaktorové ověření',
|
||||
'two_factor_reset' => 'Resetovat dvou faktorové tajemství',
|
||||
'two_factor_reset_help' => 'Tímto bude uživatel přinucen, aby znovu zaregistroval své zařízení pomocí aplikace Google Authenticator. To může být užitečné, pokud ztratil nebo mu bylo odcizeno jeho aktuálně zapsané zařízení. ',
|
||||
'two_factor_reset_success' => 'Resetování dvoufaktorového zařízení bylo úspěšné',
|
||||
'two_factor_reset_error' => 'Resetování dvoufaktorového zařízení selhalo',
|
||||
'two_factor_enabled_warning' => 'Povolení dvoufaktorového zabezpečení, pokud již není v současné době povoleno vás okamžitě donutí k ověření pomocí zařízení zapsaného v Google Auth. Pokud není v současné době žádné registrován. Budete mít možnost zapsat svoje zařízení.',
|
||||
'two_factor_enabled_help' => 'Toto zapne dvoufaktorovou autentizaci pomocí služby Google Authenticator.',
|
||||
'two_factor_optional' => 'Selektivní (Uživatelé mohou povolit nebo zakázat, je-li povolen)',
|
||||
'two_factor_required' => 'Požadováno pro všechny uživatele',
|
||||
'two_factor_disabled' => 'Zakázáno',
|
||||
'two_factor_enter_code' => 'Zadejte dvoufaktorový kód',
|
||||
'two_factor_config_complete' => 'Odeslat kód',
|
||||
'two_factor_enabled_edit_not_allowed' => 'Váš administrátor vám nedovolil upravit toto nastavení.',
|
||||
'two_factor_enrollment_text' => "Je vyžadováno dvoufaktorové ověření, nicméně vaše zařízení ještě nebylo zaregistrováno. Otevřete aplikaci Google Authenticator a oskenujte níže uvedený QR kód pro registraci vašeho zařízení. Jakmile zaregistrujete své zařízení, zadejte níže uvedený kód",
|
||||
'require_accept_signature' => 'Požadovat podpis',
|
||||
'require_accept_signature_help_text' => 'Aktivace této funkce bude vyžadovat, aby se uživatelé fyzicky přihlásili k přijetí určitého materiálu.',
|
||||
'left' => 'vlevo',
|
||||
'right' => 'vpravo',
|
||||
'top' => 'nahoře',
|
||||
'bottom' => 'dole',
|
||||
'vertical' => 'svislé',
|
||||
'horizontal' => 'vodorovné',
|
||||
'zerofill_count' => 'Délka značek majetku včetně zerofill',
|
||||
);
|
||||
|
|
|
@ -8,15 +8,15 @@ return array(
|
|||
'success' => 'Nastavení úspěšně uloženo.'
|
||||
),
|
||||
'backup' => array(
|
||||
'delete_confirm' => 'Are you sure you would like to delete this backup file? This action cannot be undone. ',
|
||||
'file_deleted' => 'The backup file was successfully deleted. ',
|
||||
'generated' => 'A new backup file was successfully created.',
|
||||
'file_not_found' => 'That backup file could not be found on the server.',
|
||||
'delete_confirm' => 'Opravdu chcete vymazat tento záložní soubor? Tuto akci nelze vrátit zpět. ',
|
||||
'file_deleted' => 'Záložní soubor byl úspěšně smazán. ',
|
||||
'generated' => 'Byla úspěšně vytvořena nová záloha.',
|
||||
'file_not_found' => 'Tento záložní soubor nebyl na serveru nalezen.',
|
||||
),
|
||||
'purge' => array(
|
||||
'error' => 'An error has occurred while purging. ',
|
||||
'validation_failed' => 'Your purge confirmation is incorrect. Please type the word "DELETE" in the confirmation box.',
|
||||
'success' => 'Deleted records successfully purged.'
|
||||
'error' => 'Během čištění došlo k chybě. ',
|
||||
'validation_failed' => 'Vaše potvrzení o čištění je nesprávné. Zadejte prosím slovo "DELETE" do potvrzovacího rámečku.',
|
||||
'success' => 'Vymazané záznamy byly úspěšně vyčištěny.'
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -2,24 +2,24 @@
|
|||
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Status Label does not exist.',
|
||||
'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ',
|
||||
'does_not_exist' => 'Stavový štítek neexistuje.',
|
||||
'assoc_assets' => 'Tento stavový štítek je právě přiřazena alespoň k jednomu modelu majetku a nemůže tak být odstraněn. Odeberte jeho vazbu z patřičných modelů a akci opakujte. ',
|
||||
|
||||
|
||||
'create' => array(
|
||||
'error' => 'Status Label was not created, please try again.',
|
||||
'success' => 'Status Label created successfully.'
|
||||
'error' => 'Stavový štítek nebyl vytvořen, zkuste to prosím znovu.',
|
||||
'success' => 'Stavový štítek byl úspěšně vytvořen.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'Status Label was not updated, please try again',
|
||||
'success' => 'Status Label updated successfully.'
|
||||
'error' => 'Stavový štítek nebyl aktualizován, zkuste to prosím znovu',
|
||||
'success' => 'Stavový štítek byl úspěšně aktualizován.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Are you sure you wish to delete this Status Label?',
|
||||
'error' => 'There was an issue deleting the Status Label. Please try again.',
|
||||
'success' => 'The Status Label was deleted successfully.'
|
||||
'confirm' => 'Opravdu si přejete odstranit tento stavový štítek?',
|
||||
'error' => 'Vyskytl se problém při mazání datového štítku. Zkuste to znovu prosím.',
|
||||
'success' => 'Stavový štítek byl úspěšně smazán.'
|
||||
)
|
||||
|
||||
);
|
||||
|
|
|
@ -4,13 +4,13 @@ return array(
|
|||
'about' => 'O označení stavu',
|
||||
'archived' => 'Archivováno',
|
||||
'create' => 'Vytvořit označení stavu',
|
||||
'color' => 'Chart Color',
|
||||
'color' => 'Barva grafu',
|
||||
'deployable' => 'Připraveno k nasazení',
|
||||
'info' => 'Označení stavu se používá k popisu různých stavů majetku. Můžou být v opravě, ztracení atd. Lze vytvořit nové stavy pro další možné stavy.',
|
||||
'name' => 'Název stavu',
|
||||
'pending' => 'Probíhající',
|
||||
'status_type' => 'Typ stavu',
|
||||
'show_in_nav' => 'Show in side nav',
|
||||
'show_in_nav' => 'Zobrazit ve vedlejším navigačním panelu',
|
||||
'title' => 'Označení stavu',
|
||||
'undeployable' => 'Nemožné připravit',
|
||||
'update' => 'Upravit označení stavu',
|
||||
|
|
|
@ -3,21 +3,21 @@
|
|||
return array(
|
||||
|
||||
'does_not_exist' => 'Dodavatel neexistuje.',
|
||||
'assoc_users' => 'This supplier is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this supplier and try again. ',
|
||||
'assoc_users' => 'Tento dodavatel je právě přiřazena alespoň k jednomu modelu majetku a nemůže tak být odstraněn. Odeberte jeho vazbu z patřičných modelů a akci opakujte. ',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'Supplier was not created, please try again.',
|
||||
'error' => 'Dodavatel nebyl vytvořen, zkuste to prosím znovu.',
|
||||
'success' => 'Dodavatel úspěšně vytvořen.'
|
||||
),
|
||||
|
||||
'update' => array(
|
||||
'error' => 'Supplier was not updated, please try again',
|
||||
'error' => 'Dodavatel nebyl aktualizován, zkuste to prosím znovu',
|
||||
'success' => 'Dodavatel úspěšně aktualizován.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
'confirm' => 'Are you sure you wish to delete this supplier?',
|
||||
'error' => 'There was an issue deleting the supplier. Please try again.',
|
||||
'confirm' => 'Opravdu si přejete odstranit tohoto dodavatele?',
|
||||
'error' => 'Vyskytl se problém při mazání dodavatele. Zkuste to prosím znovu.',
|
||||
'success' => 'Dodavatel byl úspěšně smazán.'
|
||||
)
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
'about_suppliers_title' => 'About Suppliers',
|
||||
'about_suppliers_text' => 'Suppliers are used to track the source of items',
|
||||
'about_suppliers_title' => 'O dodavatelích',
|
||||
'about_suppliers_text' => 'Dodavatelé se používají ke sledování zdroje položek',
|
||||
'address' => 'Adresa dodavatele',
|
||||
'assets' => 'Majetek',
|
||||
'city' => 'Město',
|
||||
|
@ -18,10 +18,10 @@ return array(
|
|||
'phone' => 'Telefon',
|
||||
'state' => 'Stát',
|
||||
'suppliers' => 'Dodavatelé',
|
||||
'update' => 'Update Supplier',
|
||||
'update' => 'Aktualizovat dodavatele',
|
||||
'url' => 'URL',
|
||||
'view' => 'Zobrazit dodavatele',
|
||||
'view_assets_for' => 'View Assets for',
|
||||
'view_assets_for' => 'Zobrazit majetky pro',
|
||||
'zip' => 'PSČ',
|
||||
|
||||
);
|
||||
|
|
|
@ -3,22 +3,22 @@
|
|||
|
||||
return array(
|
||||
|
||||
'assets_user' => 'Assets assigned to :name',
|
||||
'bulk_update_warn' => 'You are about to edit the properties of :user_count users. Please note that you cannot change your own user attributes using this form, and must make edits to your own user individually.',
|
||||
'bulk_update_help' => 'This form allows you to update multiple users at once. Only fill in the fields you need to change. Any fields left blank will remain unchanged.',
|
||||
'current_assets' => 'Assets currently checked out to this user',
|
||||
'assets_user' => 'Majetky přiřazené :name',
|
||||
'bulk_update_warn' => 'Chystáte se upravit vlastnosti :user_count uživatelů. Nezapomeňte, že pomocí tohoto formuláře nemůžete změnit vlastní atributy uživatele a musíte provádět vlastní úpravy individuálně.',
|
||||
'bulk_update_help' => 'Tento formulář umožňuje aktualizovat více uživatelů najednou. Vyplňte pouze pole, která potřebujete změnit. Všechna pole, která jsou prázdná, zůstanou nezměněny.',
|
||||
'current_assets' => 'Majetky které jsou v současné době vydány uživateli',
|
||||
'clone' => 'Duplikuj uživatele',
|
||||
'contact_user' => 'Kontakt na :name',
|
||||
'edit' => 'Upravit uživatele',
|
||||
'filetype_info' => 'Povolené přílohy: png, gif, jpg, jpeg, doc, docx, pdf, txt, zip, and rar.',
|
||||
'history_user' => 'Historie:',
|
||||
'info' => 'Info',
|
||||
'info' => 'Informace',
|
||||
'last_login' => 'Poslední přihlášení',
|
||||
'ldap_config_text' => 'LDAP configuration settings can be found Admin > Settings. The (optional) selected location will be set for all imported users.',
|
||||
'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',
|
||||
'view_user' => 'Zobraz uživatele',
|
||||
'usercsv' => 'CSV soubor',
|
||||
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
|
||||
'two_factor_enrolled' => '2FA Device Enrolled ',
|
||||
'two_factor_active' => '2FA Active ',
|
||||
'two_factor_admin_optin_help' => 'Vaše současná nastavení administrátora umožňují selektivní vynucení dvoufaktorového ověřování. ',
|
||||
'two_factor_enrolled' => 'Přihlášeno zařízení 2FA ',
|
||||
'two_factor_active' => '2FA aktivní ',
|
||||
);
|
||||
|
|
|
@ -2,44 +2,44 @@
|
|||
|
||||
return array(
|
||||
|
||||
'accepted' => 'You have successfully accepted this asset.',
|
||||
'declined' => 'You have successfully declined this asset.',
|
||||
'bulk_manager_warn' => 'Your users have been successfully updated, however your manager entry was not saved because the manager you selected was also in the user list to be edited, and users may not be their own manager. Please select your users again, excluding the manager.',
|
||||
'accepted' => 'Úspěšně jste přijali tento majetek.',
|
||||
'declined' => 'Úspěšně jste odmítli tento majetek.',
|
||||
'bulk_manager_warn' => 'Uživatelé byli úspěšně aktualizováni, položka správce však nebyla uložena, protože správce, který jste si vybrali, byl také v seznamu uživatelů, který má být upraven, a uživatelé nemusí být jejich vlastní správce. Zvolte své uživatele znovu, kromě správce.',
|
||||
'user_exists' => 'Uživatel již existuje!',
|
||||
'user_not_found' => 'Uživatel [:id] neexistuje.',
|
||||
'user_login_required' => 'The login field is required',
|
||||
'user_login_required' => 'Přihlašovací pole je povinné',
|
||||
'user_password_required' => 'Je vyžadováno heslo.',
|
||||
'insufficient_permissions' => 'Nedostatečná oprávnění.',
|
||||
'user_deleted_warning' => 'This user has been deleted. You will have to restore this user to edit them or assign them new assets.',
|
||||
'ldap_not_configured' => 'LDAP integration has not been configured for this installation.',
|
||||
'user_deleted_warning' => 'Tento uživatel byl smazán. Budete muset uživatele obnovit, aby jste ho mohli upravil nebo přidělil nové majetky.',
|
||||
'ldap_not_configured' => 'Integrace LDAP nebyla pro tuto instalaci nakonfigurována.',
|
||||
|
||||
|
||||
'success' => array(
|
||||
'create' => 'Uživatel byl úspěšně vytvořen.',
|
||||
'update' => 'Uživatel byl úspěšně aktualizován.',
|
||||
'update_bulk' => 'Users were successfully updated!',
|
||||
'delete' => 'User was successfully deleted.',
|
||||
'update_bulk' => 'Uživatelé byli úspěšně aktualizováni!',
|
||||
'delete' => 'Uživatel byl úspěšně smazán.',
|
||||
'ban' => 'Uživatel byl úspěšně zakázán.',
|
||||
'unban' => 'Uživatel byl úspěšně povolen.',
|
||||
'suspend' => 'User was successfully suspended.',
|
||||
'unsuspend' => 'User was successfully unsuspended.',
|
||||
'restored' => 'User was successfully restored.',
|
||||
'suspend' => 'Uživatel byl úspěšně pozastaven.',
|
||||
'unsuspend' => 'Uživatel byl úspěšně zrušen.',
|
||||
'restored' => 'Uživatel byl úspěšně obnoven.',
|
||||
'import' => 'Uživatelé úspěšně naimportování.',
|
||||
),
|
||||
|
||||
'error' => array(
|
||||
'create' => 'There was an issue creating the user. Please try again.',
|
||||
'update' => 'There was an issue updating the user. Please try again.',
|
||||
'delete' => 'There was an issue deleting the user. Please try again.',
|
||||
'unsuspend' => 'There was an issue unsuspending the user. Please try again.',
|
||||
'import' => 'There was an issue importing users. Please try again.',
|
||||
'asset_already_accepted' => 'This asset has already been accepted.',
|
||||
'accept_or_decline' => 'You must either accept or decline this asset.',
|
||||
'incorrect_user_accepted' => 'The asset you have attempted to accept was not checked out to you.',
|
||||
'ldap_could_not_connect' => 'Could not connect to the LDAP server. Please check your LDAP server configuration in the LDAP config file. <br>Error from LDAP Server:',
|
||||
'ldap_could_not_bind' => 'Could not bind to the LDAP server. Please check your LDAP server configuration in the LDAP config file. <br>Error from LDAP Server: ',
|
||||
'ldap_could_not_search' => 'Could not search the LDAP server. Please check your LDAP server configuration in the LDAP config file. <br>Error from LDAP Server:',
|
||||
'ldap_could_not_get_entries' => 'Could not get entries from the LDAP server. Please check your LDAP server configuration in the LDAP config file. <br>Error from LDAP Server:',
|
||||
'create' => 'Vyskytl se problém při vytvářením uživatele. Zkuste to znovu.',
|
||||
'update' => 'Vyskytl se problém při aktualizování uživatele. Zkuste to znovu.',
|
||||
'delete' => 'Vyskytl se problém při mazání uživatele. Zkuste to znovu.',
|
||||
'unsuspend' => 'Vyskytl se problém při rušení uživatele. Zkuste to znovu.',
|
||||
'import' => 'Vyskytl se problém při importu uživatelů. Zkuste to znovu.',
|
||||
'asset_already_accepted' => 'Tento majetek již byl odsouhlasen.',
|
||||
'accept_or_decline' => 'Musíte přijmout nebo odmítnout tento majetek.',
|
||||
'incorrect_user_accepted' => 'Majetek, který jste se pokoušeli přijmout, nebyl vydán pro vás.',
|
||||
'ldap_could_not_connect' => 'Nelze se připojit k serveru LDAP. Zkontrolujte prosím konfiguraci serveru LDAP v konfiguračním souboru LDAP. <br>Chyba serveru LDAP:',
|
||||
'ldap_could_not_bind' => 'Nelze svázat server LDAP. Zkontrolujte prosím konfiguraci serveru LDAP v konfiguračním souboru LDAP. <br>Chyba serveru LDAP: ',
|
||||
'ldap_could_not_search' => 'Nelze vyhledat server LDAP. Zkontrolujte prosím konfiguraci serveru LDAP v konfiguračním souboru LDAP. <br>Chyba serveru LDAP:',
|
||||
'ldap_could_not_get_entries' => 'Nelze získat záznamy ze serveru LDAP. Zkontrolujte prosím konfiguraci serveru LDAP v konfiguračním souboru LDAP. <br>Chyba serveru LDAP:',
|
||||
),
|
||||
|
||||
'deletefile' => array(
|
||||
|
@ -49,9 +49,9 @@ return array(
|
|||
|
||||
'upload' => array(
|
||||
'error' => 'Soubor(y) se nepodařilo nahrát. Prosím zkuste to znovu.',
|
||||
'success' => 'File(s) successfully uploaded.',
|
||||
'nofiles' => 'You did not select any files for upload',
|
||||
'invalidfiles' => 'One or more of your files is too large or is a filetype that is not allowed. Allowed filetypes are png, gif, jpg, doc, docx, pdf, and txt.',
|
||||
'success' => 'Soubor(y) byly v pořádku nahrány.',
|
||||
'nofiles' => 'Nevybrali jste žádné soubory pro nahrávání',
|
||||
'invalidfiles' => 'Jeden nebo více označených souborů je příliš velkých nebo nejsou podporované. Povolenými příponami jsou png, gif, jpg, doc, docx, pdf a txt.',
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -10,14 +10,14 @@ return array(
|
|||
'email' => 'Email',
|
||||
'employee_num' => 'Osobní číslo',
|
||||
'first_name' => 'Jméno',
|
||||
'groupnotes' => 'Select a group to assign to the user, remember that a user takes on the permissions of the group they are assigned.',
|
||||
'groupnotes' => 'Vyberte skupinu, kterou chcete přiřadit uživateli, nezapomeňte, že uživatel přebírá oprávnění skupiny, která je mu přiřazena.',
|
||||
'id' => 'ID',
|
||||
'inherit' => 'Převzít',
|
||||
'job' => 'Pracovní pozice',
|
||||
'last_login' => 'Poslední přihlášení',
|
||||
'last_name' => 'Příjmení',
|
||||
'location' => 'Umístění',
|
||||
'lock_passwords' => 'Login details cannot be changed on this installation.',
|
||||
'lock_passwords' => 'Přihlašovací údaje nelze v této instalaci měnit.',
|
||||
'manager' => 'Nadřízený',
|
||||
'name' => 'Položka',
|
||||
'notes' => 'Poznámky',
|
||||
|
@ -26,12 +26,12 @@ return array(
|
|||
'phone' => 'Telefon',
|
||||
'show_current' => 'Zobraz aktuální uživatele',
|
||||
'show_deleted' => 'Zobraz smazané uživatele',
|
||||
'title' => 'Title',
|
||||
'to_restore_them' => 'to restore them.',
|
||||
'updateuser' => 'Update User',
|
||||
'title' => 'Název',
|
||||
'to_restore_them' => 'obnovit.',
|
||||
'updateuser' => 'Aktualizace uživatele',
|
||||
'username' => 'Uživatelské jméno',
|
||||
'user_deleted_text' => 'This user has been marked as deleted.',
|
||||
'username_note' => '(This is used for Active Directory binding only, not for login.)',
|
||||
'user_deleted_text' => 'Tento uživatel byl označen jako smazaný.',
|
||||
'username_note' => '(Použije se pouze pro vazbu služby Active Directory, nikoliv pro přihlášení.)',
|
||||
'cloneuser' => 'Duplikuj uživatele',
|
||||
'viewusers' => 'Zobrazit uživatele',
|
||||
);
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
return [
|
||||
'send_password_link' => 'Poslat odkaz na obnovení hesla',
|
||||
'email_reset_password' => 'Email Password Reset',
|
||||
'email_reset_password' => 'Poslat odkaz na obnovení hesla',
|
||||
'reset_password' => 'Obnovit heslo',
|
||||
'login' => 'Přihlášení',
|
||||
'login_prompt' => 'Přihlaste se prosím',
|
||||
'forgot_password' => 'I forgot my password',
|
||||
'remember_me' => 'Remember Me',
|
||||
'forgot_password' => 'Zapomněl jsem heslo',
|
||||
'remember_me' => 'Pamatovat si mě',
|
||||
];
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'account_not_activated' => 'Uživatelský účet není aktivován.',
|
||||
'account_suspended' => 'Uživatelský účet je pozastaven.',
|
||||
'account_banned' => 'Uživatelský účet je zablokován.',
|
||||
'throttle' => 'Too many failed login attempts. Please try again in around :minutes minute(s).',
|
||||
'throttle' => 'Příliš mnoho neúspěšných pokusů o přihlášení. Zkuste to prosím znovu za :minutes minut.',
|
||||
|
||||
'signin' => array(
|
||||
'error' => 'Vyskytl se problém při přihlášení, zkuste to znovu.',
|
||||
|
|
|
@ -4,12 +4,12 @@ return array(
|
|||
'actions' => 'Akce',
|
||||
'add' => 'Přidej nový',
|
||||
'cancel' => 'Zrušit',
|
||||
'checkin_and_delete' => 'Checkin & Delete User',
|
||||
'checkin_and_delete' => 'Zkontrolovat a odstranit uživatele',
|
||||
'delete' => 'Smazat',
|
||||
'edit' => 'Upravit',
|
||||
'restore' => 'Obnovit',
|
||||
'request' => 'Požadavek',
|
||||
'submit' => 'Odeslat',
|
||||
'upload' => 'Nahrát',
|
||||
'select_file' => 'Select File...',
|
||||
'select_file' => 'Vybrat soubor...',
|
||||
);
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
'activity_report' => 'Report aktivity',
|
||||
'address' => 'Adresa',
|
||||
'admin' => 'Admin',
|
||||
'add_seats' => 'Added seats',
|
||||
'add_seats' => 'Přidaná licenční místa',
|
||||
'all_assets' => 'Všechna zařízení',
|
||||
'all' => 'Vše',
|
||||
'archived' => 'Archivováno',
|
||||
|
@ -22,75 +22,78 @@
|
|||
'avatar_delete' => 'Smazat avatara',
|
||||
'avatar_upload' => 'Nahrát avatara',
|
||||
'back' => 'Zpět',
|
||||
'bad_data' => 'Nothing found. Maybe bad data?',
|
||||
'bulk_checkout' => 'Bulk Checkout',
|
||||
'bad_data' => 'Nic nebylo nalezeno. Možná zadáváte špatná data?',
|
||||
'bulk_checkout' => 'Hromadný výdej',
|
||||
'cancel' => 'Storno',
|
||||
'categories' => 'Kategorie',
|
||||
'category' => 'Kategorie',
|
||||
'change' => 'In/Out',
|
||||
'changeemail' => 'Změnit e-mailovou adresu',
|
||||
'changepassword' => 'Změnit heslo',
|
||||
'checkin' => 'Příjem',
|
||||
'checkin_from' => 'Převzít od',
|
||||
'checkout' => 'Výdej',
|
||||
'city' => 'Město',
|
||||
'click_here' => 'Click here',
|
||||
'click_here' => 'Klikněte zde',
|
||||
'companies' => 'Firmy',
|
||||
'company' => 'Společnost',
|
||||
'component' => 'Component',
|
||||
'components' => 'Components',
|
||||
'complete' => 'Complete',
|
||||
'component' => 'Komponent',
|
||||
'components' => 'Komponenty',
|
||||
'complete' => 'Dokončit',
|
||||
'consumable' => 'Spotřební materiál',
|
||||
'consumables' => 'Spotřební materiál',
|
||||
'country' => 'Země',
|
||||
'create' => 'Vytvořit nové',
|
||||
'created' => 'Item Created',
|
||||
'created' => 'Položka vytvořena',
|
||||
'created_asset' => 'vytvořit majetek',
|
||||
'created_at' => 'Vytvořeno',
|
||||
'updated_at' => 'Updated at',
|
||||
'updated_at' => 'Aktualizováno',
|
||||
'currency' => 'Kč', // this is deprecated
|
||||
'current' => 'Aktuální',
|
||||
'custom_report' => 'Vlastní report majetku',
|
||||
'dashboard' => 'Nástěnka',
|
||||
'date' => 'Datum',
|
||||
'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>.',
|
||||
'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>.',
|
||||
'delete' => 'Odstranit',
|
||||
'deleted' => 'Odstraněno',
|
||||
'delete_seats' => 'Deleted Seats',
|
||||
'delete_seats' => 'Vymazaná licenční místa',
|
||||
'departments' => 'Departments',
|
||||
'department' => 'Department',
|
||||
'deployed' => 'Vydané',
|
||||
'depreciation_report' => 'Report zastarání',
|
||||
'download' => 'Stáhnout',
|
||||
'depreciation' => 'Amortizace',
|
||||
'editprofile' => 'Upravit profil',
|
||||
'eol' => 'Konec životnosti',
|
||||
'email_domain' => 'Email Domain',
|
||||
'email_format' => 'Email Format',
|
||||
'email_domain_help' => 'This is used to generate email addresses when importing',
|
||||
'filastname_format' => 'First Initial Last Name (jsmith@example.com)',
|
||||
'firstname_lastname_format' => 'First Name Last Name (jane.smith@example.com)',
|
||||
'email_domain' => 'Doména e-mailu',
|
||||
'email_format' => 'Formát e-mailu',
|
||||
'email_domain_help' => 'Toto je použito na generování e-mailových adres při importu',
|
||||
'filastname_format' => 'Iniciál Jména Příjmení (jsmith@example.com)',
|
||||
'firstname_lastname_format' => 'Jméno Příjmení (jane.smith@example.com)',
|
||||
'first' => 'První',
|
||||
'first_name' => 'Jméno',
|
||||
'first_name_format' => 'First Name (jane@example.com)',
|
||||
'first_name_format' => 'Jméno (jane@example.com)',
|
||||
'file_name' => 'Soubor',
|
||||
'file_uploads' => 'Nahrání souboru',
|
||||
'generate' => 'Vytvořit',
|
||||
'groups' => 'Skupiny',
|
||||
'gravatar_email' => 'Emailová adresa Gravatar',
|
||||
'history' => 'History',
|
||||
'history' => 'Historie',
|
||||
'history_for' => 'Historie uživatele',
|
||||
'id' => 'ID',
|
||||
'image_delete' => 'Smazat obrázek',
|
||||
'image_upload' => 'Nahrát obrázek',
|
||||
'import' => 'Import',
|
||||
'import-history' => 'Import History',
|
||||
'import-history' => 'Historie importu',
|
||||
'asset_maintenance' => 'Údržba zařízení',
|
||||
'asset_maintenance_report' => 'Zpráva o údržbě zařízení',
|
||||
'asset_maintenances' => 'Záznamy o údržbě zařízení',
|
||||
'item' => 'Položka',
|
||||
'insufficient_permissions' => 'Nedostatečná oprávnění!',
|
||||
'language' => 'Language',
|
||||
'language' => 'Jazyk',
|
||||
'last' => 'Poslední',
|
||||
'last_login' => 'Last Login',
|
||||
'last_login' => 'Poslední přihlášení',
|
||||
'last_name' => 'Příjmení',
|
||||
'license' => 'Licence',
|
||||
'license_report' => 'Report licencí',
|
||||
|
@ -98,28 +101,28 @@
|
|||
'licenses' => 'Licence',
|
||||
'list_all' => 'Vypsat vše',
|
||||
'loading' => 'Nahrávání',
|
||||
'lock_passwords' => 'This field cannot be edited in this installation.',
|
||||
'feature_disabled' => 'This feature has been disabled for the demo installation.',
|
||||
'lock_passwords' => 'Toto pole nelze v této instalaci upravovat.',
|
||||
'feature_disabled' => 'Tato funkce byla deaktivována pro demo instalaci.',
|
||||
'location' => 'Lokalita',
|
||||
'locations' => 'Umístění',
|
||||
'logout' => 'Odhlásit',
|
||||
'lookup_by_tag' => 'Lookup by Asset Tag',
|
||||
'lookup_by_tag' => 'Vyhledávání podle značky majetku',
|
||||
'manufacturer' => 'Výrobce',
|
||||
'manufacturers' => 'Výrobci',
|
||||
'markdown' => 'This field allows <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>.',
|
||||
'min_amt' => 'Min. QTY',
|
||||
'min_amt_help' => 'Minimum number of items that should be available before an alert gets triggered.',
|
||||
'markdown' => 'Toto pole umožňuje <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>.',
|
||||
'min_amt' => 'Minimální množství',
|
||||
'min_amt_help' => 'Minimální počet položek, které by měly být k dispozici před spuštěním výstrahy.',
|
||||
'model_no' => 'Modelové č.',
|
||||
'months' => 'měsíce',
|
||||
'moreinfo' => 'Další informace',
|
||||
'name' => 'Název',
|
||||
'next' => 'Další',
|
||||
'new' => 'new!',
|
||||
'new' => 'nový!',
|
||||
'no_depreciation' => 'Žádná amortizace',
|
||||
'no_results' => 'Žádné výsledky.',
|
||||
'no' => 'Ne',
|
||||
'notes' => 'Poznámky',
|
||||
'order_number' => 'Order Number',
|
||||
'order_number' => 'Číslo objednávky',
|
||||
'page_menu' => 'Zobrazuji _MENU_ položky',
|
||||
'pagination_info' => 'Zobrazuji _START_ to _END_ of _TOTAL_ položek',
|
||||
'pending' => 'Čeká na vyřízení',
|
||||
|
@ -128,58 +131,59 @@
|
|||
'previous' => 'Předchozí',
|
||||
'processing' => 'Pracuji',
|
||||
'profile' => 'Váš profil',
|
||||
'purchase_cost' => 'Purchase Cost',
|
||||
'purchase_date' => 'Purchase Date',
|
||||
'purchase_cost' => 'Nákupní cena',
|
||||
'purchase_date' => 'Datum nákupu',
|
||||
'qty' => 'Množství',
|
||||
'quantity' => 'Quantity',
|
||||
'quantity' => 'Množství',
|
||||
'ready_to_deploy' => 'Připraveno k přidělení',
|
||||
'recent_activity' => 'Nedávná aktivita',
|
||||
'remove_company' => 'Remove Company Association',
|
||||
'remove_company' => 'Odstraňte sdružení společnosti',
|
||||
'reports' => 'Reporty',
|
||||
'requested' => 'Požadováno',
|
||||
'request_canceled' => 'Request Canceled',
|
||||
'request_canceled' => 'Žádost zrušena',
|
||||
'save' => 'Uložit',
|
||||
'select' => 'Zvolit',
|
||||
'search' => 'Hledat',
|
||||
'select_category' => 'Select a Category',
|
||||
'select_category' => 'Vyberte kategorii',
|
||||
'select_department' => 'Select a Department',
|
||||
'select_depreciation' => 'Zvolit typ amortizace',
|
||||
'select_location' => 'Zvolit místo',
|
||||
'select_manufacturer' => 'Zvolit výrobce',
|
||||
'select_model' => 'Zvolit model',
|
||||
'select_supplier' => 'Zvolit dodavatele',
|
||||
'select_user' => 'Zvolit uživatele',
|
||||
'select_date' => 'Zvolit datum',
|
||||
'select_date' => 'Select Date (YYYY-MM-DD)',
|
||||
'select_statuslabel' => 'Vybrat stav',
|
||||
'select_company' => 'Select Company',
|
||||
'select_asset' => 'Select Asset',
|
||||
'select_company' => 'Zvolte společnost',
|
||||
'select_asset' => 'Zvolte majetek',
|
||||
'settings' => 'Nastavení',
|
||||
'sign_in' => 'Přihlásit se',
|
||||
'signature' => 'Signature',
|
||||
'some_features_disabled' => 'DEMO MODE: Some features are disabled for this installation.',
|
||||
'signature' => 'Podpis',
|
||||
'some_features_disabled' => 'REŽIM DEMO: Některé funkce jsou pro tuto instalaci zakázány.',
|
||||
'site_name' => 'Název lokality',
|
||||
'state' => 'Stát',
|
||||
'status_labels' => 'Označení stavu',
|
||||
'status' => 'Stav',
|
||||
'supplier' => 'Supplier',
|
||||
'supplier' => 'Dodavatel',
|
||||
'suppliers' => 'Dodavatelé',
|
||||
'sure_to_delete' => 'Are you sure you wish to delete',
|
||||
'submit' => 'Submit',
|
||||
'target' => 'Target',
|
||||
'time_and_date_display' => 'Time and Date Display',
|
||||
'sure_to_delete' => 'Opravdu si přejete odstranit',
|
||||
'submit' => 'Odeslat',
|
||||
'target' => 'Cíl',
|
||||
'time_and_date_display' => 'Zobrazení času a data',
|
||||
'total_assets' => 'celkem zařízení',
|
||||
'total_licenses' => 'celkem licencí',
|
||||
'total_accessories' => 'total accessories',
|
||||
'total_consumables' => 'total consumables',
|
||||
'total_accessories' => 'celkové příslušenství',
|
||||
'total_consumables' => 'celkový spotřební materiál',
|
||||
'type' => 'Typ',
|
||||
'undeployable' => 'Ne-přiřaditelné',
|
||||
'unknown_admin' => 'Neznámy správce',
|
||||
'username_format' => 'Username Format',
|
||||
'username_format' => 'Formát uživatelského jména',
|
||||
'update' => 'Aktualizace',
|
||||
'uploaded' => 'Nahráno',
|
||||
'user' => 'Uživatel',
|
||||
'accepted' => 'přijato',
|
||||
'declined' => 'zamítnuto',
|
||||
'unaccepted_asset_report' => 'Unaccepted Assets',
|
||||
'unaccepted_asset_report' => 'Nepřijatelné majetky',
|
||||
'users' => 'Uživatelé',
|
||||
'viewassets' => 'Zobrazit přiřazený majetek',
|
||||
'website' => 'Webová stránka',
|
||||
|
@ -188,5 +192,5 @@
|
|||
'yes' => 'Ano',
|
||||
'zip' => 'PSČ',
|
||||
'noimage' => 'Obrázek nebyl nahrán, nebo nebyl nalezen.',
|
||||
'token_expired' => 'Your form session has expired. Please try again.',
|
||||
'token_expired' => 'Platnost relace formuláře vypršela. Prosím zkuste to znovu.',
|
||||
];
|
||||
|
|
|
@ -1,74 +1,71 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
'a_user_canceled' => 'A user has canceled an item request on the website',
|
||||
'a_user_requested' => 'A user has requested an item on the website',
|
||||
'a_user_canceled' => 'Uživatel zrušil žádost o položku na webu',
|
||||
'a_user_requested' => 'Uživatel požádal o položku na webu',
|
||||
'accessory_name' => 'Název příslušenství:',
|
||||
'additional_notes' => 'Additional Notes:',
|
||||
'admin_has_created' => 'An administrator has created an account for you on the :web website.',
|
||||
'asset' => 'Asset:',
|
||||
'asset_name' => 'Asset Name:',
|
||||
'asset_requested' => 'Asset requested',
|
||||
'asset_tag' => 'Asset Tag:',
|
||||
'assets_warrantee_expiring' => '{1} asset with warrantee expiring in the next 60 days.|[2,Inf] assets with warrantees
|
||||
expiring in the next 60 days.',
|
||||
'assigned_to' => 'Assigned To',
|
||||
'best_regards' => 'Best regards,',
|
||||
'canceled' => 'Canceled:',
|
||||
'checkin_date' => 'Checkin Date:',
|
||||
'checkout_date' => 'Checkout Date:',
|
||||
'click_to_confirm' => 'Please click on the following link to confirm your :web account:',
|
||||
'click_on_the_link_accessory' => 'Please click on the link at the bottom to confirm that you have received the accessory.',
|
||||
'click_on_the_link_asset' => 'Please click on the link at the bottom to confirm that you have received the asset.',
|
||||
'Confirm_Asset_Checkin' => 'Confirm Asset Checkin.',
|
||||
'Confirm_Accessory_Checkin' => 'Confirm Accessory Checkin.',
|
||||
'Confirm_accessory_delivery' => 'Confirm accessory delivery.',
|
||||
'Confirm_asset_delivery' => 'Confirm asset delivery.',
|
||||
'Confirm_consumable_delivery' => 'Confirm consumable delivery.',
|
||||
'current_QTY' => 'Current QTY',
|
||||
'Days' => 'Days',
|
||||
'days' => 'Days',
|
||||
'expecting_checkin_date' => 'Expected Checkin Date:',
|
||||
'expires' => 'Expires',
|
||||
'Expiring_Assets_Report' => 'Expiring Assets Report.',
|
||||
'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
|
||||
'hello' => 'Hello',
|
||||
'hi' => 'Hi',
|
||||
'i_have_read' => 'I have read and agree to the terms of use, and have received this item.',
|
||||
'item' => 'Item:',
|
||||
'items_below_minimum' => '{1} item that is below minimum inventory or will soon be low.|[2,Inf] items that are below minimum
|
||||
inventory or will soon be low.',
|
||||
'Item_Request_Canceled' => 'Item Request Canceled',
|
||||
'Item_Requested' => 'Item Requested',
|
||||
'licenses_expiring' => '{1} license expiring next 60 days.|[2,Inf] licenses expiring next 60 days.',
|
||||
'link_to_update_password' => 'Please click on the following link to update your :web password:',
|
||||
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
|
||||
'login' => 'Login:',
|
||||
'Low_Inventory_Report' => 'Low Inventory Report',
|
||||
'min_QTY' => 'Min QTY',
|
||||
'name' => 'Name',
|
||||
'new_item_checked' => 'A new item has been checked out under your name, details are below.',
|
||||
'password' => 'Password:',
|
||||
'password_reset' => 'Password Reset',
|
||||
'additional_notes' => 'Další Poznámky:',
|
||||
'admin_has_created' => 'Administrátor pro vás vytvořil účet na stránce :web.',
|
||||
'asset' => 'Majetek:',
|
||||
'asset_name' => 'Název majetku:',
|
||||
'asset_requested' => 'Požadovaný majetek',
|
||||
'asset_tag' => 'Označení majetku:',
|
||||
'assets_warrantee_expiring' => '{1} majetek se zárukou, která vyprší v příštích 60 dnech.|[2,Inf] majetky se zárukami, které vyprší v příštích 60 dnech.',
|
||||
'assigned_to' => 'Přiděleno',
|
||||
'best_regards' => 'S pozdravem,',
|
||||
'canceled' => 'Zrušeno:',
|
||||
'checkin_date' => 'Datum převzetí:',
|
||||
'checkout_date' => 'Datum vydání:',
|
||||
'click_to_confirm' => 'Kliknutím na následující odkaz potvrdíte váš účet pro :web:',
|
||||
'click_on_the_link_accessory' => 'Kliknutím na odkaz v dolní části potvrďte, že jste obdrželi příslušné příslušenství.',
|
||||
'click_on_the_link_asset' => 'Kliknutím na odkaz v dolní části potvrďte, že jste obdrželi daný produkt.',
|
||||
'Confirm_Asset_Checkin' => 'Potvrďte převzetí majetku.',
|
||||
'Confirm_Accessory_Checkin' => 'Potvrďte převzetí příslušenství.',
|
||||
'Confirm_accessory_delivery' => 'Potvrďte dodání příslušenství.',
|
||||
'Confirm_asset_delivery' => 'Potvrďte dodání produktu.',
|
||||
'Confirm_consumable_delivery' => 'Potvrďte dodání spotřebního zboží.',
|
||||
'current_QTY' => 'Aktuální množství',
|
||||
'Days' => 'Dní',
|
||||
'days' => 'Dní',
|
||||
'expecting_checkin_date' => 'Očekávané datum převzetí:',
|
||||
'expires' => 'Vyprší',
|
||||
'Expiring_Assets_Report' => 'Hlášení o končících zárukách majetku.',
|
||||
'Expiring_Licenses_Report' => 'Hlášení o končící platnosti licencí.',
|
||||
'hello' => 'Dobrý den',
|
||||
'hi' => 'Ahoj',
|
||||
'i_have_read' => 'Přečetl/a jsem si podmínky používání, souhlasím s pravidel používání a obdržel jsem tuto položku.',
|
||||
'item' => 'Položka:',
|
||||
'items_below_minimum' => '{1} položka která je pod minimálním množstvím zásob nebo brzy bude.|[2,Inf] položky které jsou pod minimálním množstvím zásob nebo brzy budou.',
|
||||
'Item_Request_Canceled' => 'Požadavek na položku zrušen',
|
||||
'Item_Requested' => 'Požadavek na položku',
|
||||
'licenses_expiring' => '{1} licence končící v příštích 60 dnech.|[2,Inf] licence končící v příštích 60 dnech.',
|
||||
'link_to_update_password' => 'Klepnutím na následující odkaz aktualizujte své heslo pro :web:',
|
||||
'login_first_admin' => 'Přihlaste se k nové instalaci Snipe-IT pomocí níže uvedených pověření:',
|
||||
'login' => 'Uživatelské jméno:',
|
||||
'Low_Inventory_Report' => 'Hlášení o nízkých zásobách',
|
||||
'min_QTY' => 'Minimální množství',
|
||||
'name' => 'Položka',
|
||||
'new_item_checked' => 'Nová položka byla odevzdána pod vaším jménem, podrobnosti jsou uvedeny níže.',
|
||||
'password' => 'Heslo:',
|
||||
'password_reset' => 'Resetování hesla',
|
||||
|
||||
'read_the_terms' => 'Please read the terms of use below.',
|
||||
'read_the_terms_and_click' => 'Please read the terms of use below, and click on the link at the bottom to confirm that you read
|
||||
and agree to the terms of use, and have received the asset.',
|
||||
'requested' => 'Requested:',
|
||||
'reset_link' => 'Your Password Reset Link',
|
||||
'reset_password' => 'Click here to reset your password:',
|
||||
'serial' => 'Serial:',
|
||||
'supplier' => 'Supplier',
|
||||
'tag' => 'Tag',
|
||||
'test_email' => 'Test Email from Snipe-IT',
|
||||
'test_mail_text' => 'This is a test from the Snipe-IT Asset Management System. If you got this, mail is working :)',
|
||||
'the_following_item' => 'The following item has been checked in: ',
|
||||
'There_are' => '{1} There is|[2,Inf] There are',
|
||||
'to_reset' => 'To reset your :web password, complete this form:',
|
||||
'type' => 'Type',
|
||||
'user' => 'User:',
|
||||
'username' => 'Username:',
|
||||
'welcome' => 'Welcome :name',
|
||||
'welcome_to' => 'Welcome to :web!',
|
||||
'your_credentials' => 'Your Snipe-IT credentials',
|
||||
'read_the_terms' => 'Prosím přečtěte si níže uvedené podmínky použití.',
|
||||
'read_the_terms_and_click' => 'Přečtěte si prosím níže uvedené podmínky použití a klikněte na odkaz v dolní části, abyste potvrdili, že jste si přečetli a souhlasili s podmínkami používání, a že jste obdrželi majetek.',
|
||||
'requested' => 'Zažádáno:',
|
||||
'reset_link' => 'Váš odkaz pro resetování hesla',
|
||||
'reset_password' => 'Pro zresetování vašeho hesla klikněte na odkaz:',
|
||||
'serial' => 'Sériové číslo:',
|
||||
'supplier' => 'Dodavatelé',
|
||||
'tag' => 'Značka',
|
||||
'test_email' => 'Testovací email od Snipe-IT',
|
||||
'test_mail_text' => 'Toto je test ze systému Snipe-IT Asset Management System. Pokud jste ho dostali, email funguje :)',
|
||||
'the_following_item' => 'Následující položka byla převzata: ',
|
||||
'There_are' => '{1} Tady je|[2,inf] Tady jsou',
|
||||
'to_reset' => 'Pro resetování vašeho hesla vyplňte tento formulář:',
|
||||
'type' => 'Typ',
|
||||
'user' => 'Uživatel:',
|
||||
'username' => 'Uživatelské jméno:',
|
||||
'welcome' => 'Vítej uživateli :name',
|
||||
'welcome_to' => 'Vítejte na :web!',
|
||||
'your_credentials' => 'Vaše pověření Snipe-IT',
|
||||
);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'sent' => 'Your password link has been sent!',
|
||||
'user' => 'That user does not exist or does not have an email address associated',
|
||||
'sent' => 'Váš odkaz s heslem byl odeslán!',
|
||||
'user' => 'Tento uživatel neexistuje nebo nemá přidruženou e-mailovou adresu',
|
||||
];
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ return array(
|
|||
"file" => ":attribute musí být mezi :min - :max kilobajtů.",
|
||||
"string" => ":attribute smí obsahovat pouze :min - :max znaků.",
|
||||
),
|
||||
"boolean" => "The :attribute must be true or false.",
|
||||
"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.",
|
||||
|
@ -34,7 +34,7 @@ return array(
|
|||
"digits_between" => ":attribute musí být mezi hodnotami :min a :max.",
|
||||
"email" => "Formát :attribute je neplatný.",
|
||||
"exists" => "Zvolený :attribute je neplatný.",
|
||||
"email_array" => "One or more email addresses is invalid.",
|
||||
"email_array" => "Jedna nebo více e-mailových adres je neplatná.",
|
||||
"image" => ":attribute musí být obrázek.",
|
||||
"in" => "Zvolený :attribute je neplatný.",
|
||||
"integer" => ":attribute musí být celočíselný.",
|
||||
|
@ -65,8 +65,8 @@ return array(
|
|||
),
|
||||
"unique" => ":attribute byl již vybrán.",
|
||||
"url" => "Formát :attribute je neplatný.",
|
||||
"statuslabel_type" => "You must select a valid status label type",
|
||||
"unique_undeleted" => "The :attribute must be unique.",
|
||||
"statuslabel_type" => "Musíte vybrat platný status typu štítku",
|
||||
"unique_undeleted" => ":attribute musí být jedinečný.",
|
||||
|
||||
|
||||
/*
|
||||
|
|
21
resources/lang/da/admin/departments/message.php
Normal file
21
resources/lang/da/admin/departments/message.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
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. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
'success' => 'Department created successfully.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => 'Department was not updated, please try again',
|
||||
'success' => 'Department updated successfully.'
|
||||
),
|
||||
'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.'
|
||||
)
|
||||
|
||||
);
|
11
resources/lang/da/admin/departments/table.php
Normal file
11
resources/lang/da/admin/departments/table.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => 'Department Name',
|
||||
'manager' => 'Manager',
|
||||
'location' => 'Location',
|
||||
'create' => 'Create Department',
|
||||
'update' => 'Update Department',
|
||||
);
|
|
@ -48,6 +48,7 @@ return array(
|
|||
'delete' => array(
|
||||
'confirm' => 'Are you sure you wish to delete this asset?',
|
||||
'error' => 'There was an issue deleting the asset. Please try again.',
|
||||
'nothing_updated' => 'No assets were selected, so nothing was deleted.',
|
||||
'success' => 'The asset was deleted successfully.'
|
||||
),
|
||||
|
||||
|
|
|
@ -28,4 +28,9 @@ return array(
|
|||
'success' => 'Model restored successfully.'
|
||||
),
|
||||
|
||||
'bulkedit' => array(
|
||||
'error' => 'No fields were changed, so nothing was updated.',
|
||||
'success' => 'Models updated.'
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -90,6 +90,7 @@ return array(
|
|||
'about_settings_text' => 'These settings let you customize certain aspects of your installation.',
|
||||
'labels_per_page' => 'Labels per page',
|
||||
'label_dimensions' => 'Label dimensions (inches)',
|
||||
'next_auto_tag_base' => 'Next auto-increment',
|
||||
'page_padding' => 'Page margins (inches)',
|
||||
'purge' => 'Purge Deleted Records',
|
||||
'labels_display_bgutter' => 'Label bottom gutter',
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
'cancel' => 'Annuller',
|
||||
'categories' => 'Kategorier',
|
||||
'category' => 'Kategori',
|
||||
'change' => 'In/Out',
|
||||
'changeemail' => 'Skift email adresse',
|
||||
'changepassword' => 'Skift adgangskode',
|
||||
'checkin' => 'Tjek Ind',
|
||||
|
@ -57,6 +58,8 @@
|
|||
'delete' => 'Slet',
|
||||
'deleted' => 'Slettet',
|
||||
'delete_seats' => 'Deleted Seats',
|
||||
'departments' => 'Departments',
|
||||
'department' => 'Department',
|
||||
'deployed' => 'Implementeret',
|
||||
'depreciation_report' => 'Afskrivningsrapport',
|
||||
'download' => 'Hent',
|
||||
|
@ -142,13 +145,14 @@
|
|||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_category' => 'Select a Category',
|
||||
'select_department' => 'Select a Department',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'select_date' => 'Select Date (YYYY-MM-DD)',
|
||||
'select_statuslabel' => 'Select Status',
|
||||
'select_company' => 'Select Company',
|
||||
'select_asset' => 'Select Asset',
|
||||
|
|
|
@ -11,7 +11,7 @@ return array(
|
|||
'edit' => 'Kategorie bearbeiten',
|
||||
'eula_text' => 'Kategorie EULA',
|
||||
'eula_text_help' => 'Dieses Feld erlaubt Ihnen die EULA Ihren Bedürfnissen nach Asset Typ anzupassen.Wenn Sie nur eine EULA für alle Assets haben, aktivieren Sie die Checkbox unterhalb um die Standard EULA zu verwenden.',
|
||||
'name' => 'Category Name',
|
||||
'name' => 'Kategorie Name',
|
||||
'require_acceptance' => 'Benutzer müssen bei Assets in dieser Kategorie Ihre Zustimmung bestätigen.',
|
||||
'required_acceptance' => 'Dieser Benutzer erhält ein Email zur Bestätigung des Gegenstands.',
|
||||
'required_eula' => 'Dieser Benutzer erhält eine Kopie der EULA via Email',
|
||||
|
|
21
resources/lang/de/admin/departments/message.php
Normal file
21
resources/lang/de/admin/departments/message.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
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. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
'success' => 'Department created successfully.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => 'Department was not updated, please try again',
|
||||
'success' => 'Department updated successfully.'
|
||||
),
|
||||
'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.'
|
||||
)
|
||||
|
||||
);
|
11
resources/lang/de/admin/departments/table.php
Normal file
11
resources/lang/de/admin/departments/table.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => 'Department Name',
|
||||
'manager' => 'Manager',
|
||||
'location' => 'Location',
|
||||
'create' => 'Create Department',
|
||||
'update' => 'Update Department',
|
||||
);
|
|
@ -48,6 +48,7 @@ return array(
|
|||
'delete' => array(
|
||||
'confirm' => 'Sind Sie sicher, dass Sie dieses Asset entfernen möchten?',
|
||||
'error' => 'Beim Entfernen dieses Assets ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.',
|
||||
'nothing_updated' => 'No assets were selected, so nothing was deleted.',
|
||||
'success' => 'Dieses Asset wurde erfolgreich entfernt.'
|
||||
),
|
||||
|
||||
|
|
|
@ -17,5 +17,5 @@ return array(
|
|||
'locations' => 'Standorte',
|
||||
'parent' => 'Hauptkategorie',
|
||||
'currency' => 'Landeswährung',
|
||||
'ldap_ou' => 'LDAP Search OU',
|
||||
'ldap_ou' => 'LDAP OU Suche',
|
||||
);
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
return array(
|
||||
'about_manufacturers_title' => 'Hersteller',
|
||||
'about_manufacturers_text' => 'Manufacturers are the companies that create your assets. You can store important support contact information about them here, which will be displayed on your asset detail pages.',
|
||||
'about_manufacturers_text' => 'Hersteller sind Firmen, die ihre Assets herstellen. Hier können Sie wichtige Supportkontakte eintragen, welche in den Assetdetails angezeigt werden.',
|
||||
'asset_manufacturers' => 'Asset Hersteller',
|
||||
'create' => 'Hersteller anlegen',
|
||||
'id' => 'ID',
|
||||
'name' => 'Name',
|
||||
'support_email' => 'Support Email',
|
||||
'support_phone' => 'Support Phone',
|
||||
'support_url' => 'Support URL',
|
||||
'support_email' => 'Support per E-Mail',
|
||||
'support_phone' => 'Support Telefon',
|
||||
'support_url' => 'Support-URL',
|
||||
'update' => 'Hersteller aktualisieren',
|
||||
'url' => 'URL',
|
||||
|
||||
|
|
|
@ -28,4 +28,9 @@ return array(
|
|||
'success' => 'Das Modell wurde erfolgreich Wiederhergestellt.'
|
||||
),
|
||||
|
||||
'bulkedit' => array(
|
||||
'error' => 'No fields were changed, so nothing was updated.',
|
||||
'success' => 'Models updated.'
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -90,6 +90,7 @@ return array(
|
|||
'about_settings_text' => 'Mit diesen Einstellungen können Sie verschiedene Aspekte Ihrer Installation anpassen.',
|
||||
'labels_per_page' => 'Etiketten pro Seite',
|
||||
'label_dimensions' => 'Etikettengröße (Zoll)',
|
||||
'next_auto_tag_base' => 'Next auto-increment',
|
||||
'page_padding' => 'Seiten Ränder (Zoll)',
|
||||
'purge' => 'Gelöschte Einträge bereinigen',
|
||||
'labels_display_bgutter' => 'Ettiketten Spaltenzwischenraum unterhalb',
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
return array(
|
||||
|
||||
'assets_user' => 'Assets zugewiesen an :name',
|
||||
'bulk_update_warn' => 'You are about to edit the properties of :user_count users. Please note that you cannot change your own user attributes using this form, and must make edits to your own user individually.',
|
||||
'bulk_update_help' => 'This form allows you to update multiple users at once. Only fill in the fields you need to change. Any fields left blank will remain unchanged.',
|
||||
'bulk_update_warn' => 'Sie sind dabei, die Eigenschaften von :user_count Benutzern zu bearbeiten. Bitte beachten Sie, dass Sie Ihre eigenen Benutzerattribute nicht über dieses Formular ändern können. Sie müssen Ihren eigenen Benutzer einzeln bearbeiten.',
|
||||
'bulk_update_help' => 'Hier können mehrere Benutzer gleichzeitig bearbeitet werden. Nur Felder ausfüllen, welche geändert werden sollen. Leere Felder werden nicht geändert.',
|
||||
'current_assets' => 'Asset wurde an nachfolgenden Benutzer ausgegeben',
|
||||
'clone' => 'Benutzer kopieren',
|
||||
'contact_user' => 'Kontakt :name',
|
||||
|
|
|
@ -4,7 +4,7 @@ return array(
|
|||
|
||||
'accepted' => 'Sie haben diesen Gegenstand erfolgreich angenommen.',
|
||||
'declined' => 'Sie haben diesen Gegenstand abgelehnt.',
|
||||
'bulk_manager_warn' => 'Your users have been successfully updated, however your manager entry was not saved because the manager you selected was also in the user list to be edited, and users may not be their own manager. Please select your users again, excluding the manager.',
|
||||
'bulk_manager_warn' => 'Benutzer erfolgreich geändert. Vorgesetzter sollte auch bearbeitet werden und konnte nicht angepasst werden, weil er sich nicht selbst als Vorgesetzter eingetragen haben kann. Bitte Benutzer ohne den Vorgesetzten nochmal bearbeiten.',
|
||||
'user_exists' => 'Benutzer existiert bereits!',
|
||||
'user_not_found' => 'Benutzer [:id] existiert nicht.',
|
||||
'user_login_required' => 'Das Loginfeld ist erforderlich',
|
||||
|
@ -17,7 +17,7 @@ return array(
|
|||
'success' => array(
|
||||
'create' => 'Benutzer wurde erfolgreich erstellt.',
|
||||
'update' => 'Benutzer wurde erfolgreich bearbeitet.',
|
||||
'update_bulk' => 'Users were successfully updated!',
|
||||
'update_bulk' => 'Benutzer erfolgreich geändert!',
|
||||
'delete' => 'Benutzer wurde erfolgreich gelöscht.',
|
||||
'ban' => 'Benutzer wurde erfolgreich ausgeschlossen.',
|
||||
'unban' => 'Benutzer wurde erfolgreich wieder eingeschlossen.',
|
||||
|
|
|
@ -27,10 +27,10 @@ return array(
|
|||
'show_current' => 'Zeige aktuelle Benutzer',
|
||||
'show_deleted' => 'Zeige gelöschte Benutzer',
|
||||
'title' => 'Titel',
|
||||
'to_restore_them' => 'to restore them.',
|
||||
'to_restore_them' => 'zum Wiederherstellen.',
|
||||
'updateuser' => 'Benutzer aktualisieren',
|
||||
'username' => 'Benutzernamen',
|
||||
'user_deleted_text' => 'This user has been marked as deleted.',
|
||||
'user_deleted_text' => 'Dieser Benutzer wurde als gelöscht markiert.',
|
||||
'username_note' => '(Dies wird für den Bind an das Active Directory benutzt, nicht für die Anmeldung.)',
|
||||
'cloneuser' => 'Benutzer kopieren',
|
||||
'viewusers' => 'Benutzer anzeigen',
|
||||
|
|
|
@ -11,5 +11,5 @@ return array(
|
|||
'request' => 'Anfragen',
|
||||
'submit' => 'Abschicken',
|
||||
'upload' => 'Hochladen',
|
||||
'select_file' => 'Select File...',
|
||||
'select_file' => 'Datei auswählen...',
|
||||
);
|
||||
|
|
|
@ -27,18 +27,19 @@
|
|||
'cancel' => 'Abbrechen',
|
||||
'categories' => 'Kategorien',
|
||||
'category' => 'Kategorie',
|
||||
'change' => 'In/Out',
|
||||
'changeemail' => 'E-Mail Adresse ändern',
|
||||
'changepassword' => 'Passwort ändern',
|
||||
'checkin' => 'Checkin Asset',
|
||||
'checkin_from' => 'Einchecken von',
|
||||
'checkout' => 'Checkout Asset to User',
|
||||
'city' => 'Stadt',
|
||||
'click_here' => 'Click here',
|
||||
'click_here' => 'Hier klicken',
|
||||
'companies' => 'Firmen',
|
||||
'company' => 'Firma',
|
||||
'component' => 'Komponente',
|
||||
'components' => 'Komponenten',
|
||||
'complete' => 'Complete',
|
||||
'complete' => 'Vollständig',
|
||||
'consumable' => 'Verbrauchsmaterial',
|
||||
'consumables' => 'Verbrauchsmaterialien',
|
||||
'country' => 'Land',
|
||||
|
@ -46,7 +47,7 @@
|
|||
'created' => 'Eintrag erstellt',
|
||||
'created_asset' => 'Asset angelegt',
|
||||
'created_at' => 'Erstellt am',
|
||||
'updated_at' => 'Updated at',
|
||||
'updated_at' => 'Aktualisiert am',
|
||||
'currency' => '€', // this is deprecated
|
||||
'current' => 'Aktuell',
|
||||
'custom_report' => 'Spezieller Asset Report',
|
||||
|
@ -57,6 +58,8 @@
|
|||
'delete' => 'Löschen',
|
||||
'deleted' => 'Gelöscht',
|
||||
'delete_seats' => 'Gelöschte Lizenzen',
|
||||
'departments' => 'Departments',
|
||||
'department' => 'Department',
|
||||
'deployed' => 'Herausgegeben',
|
||||
'depreciation_report' => 'Abschreibunsgreport',
|
||||
'download' => 'Download',
|
||||
|
@ -90,7 +93,7 @@
|
|||
'insufficient_permissions' => 'Unzureichende Berechtigungen!',
|
||||
'language' => 'Sprache',
|
||||
'last' => 'Letztes',
|
||||
'last_login' => 'Last Login',
|
||||
'last_login' => 'Letzte Anmeldung',
|
||||
'last_name' => 'Familienname',
|
||||
'license' => 'Lizenz',
|
||||
'license_report' => 'Lizenz Report',
|
||||
|
@ -142,13 +145,14 @@
|
|||
'select' => 'auswählen',
|
||||
'search' => 'Suche',
|
||||
'select_category' => 'Kategorie auswählen',
|
||||
'select_department' => 'Select a Department',
|
||||
'select_depreciation' => 'Wähle einen Abschreibungstyp',
|
||||
'select_location' => 'Wählen Sie einen Standort',
|
||||
'select_manufacturer' => 'Wählen Sie einen Hersteller',
|
||||
'select_model' => 'Wählen Sie ein Model',
|
||||
'select_supplier' => 'wählen Sie einen Lieferant',
|
||||
'select_user' => 'wähle einen Benutzer',
|
||||
'select_date' => 'Datum auswählen',
|
||||
'select_date' => 'Select Date (YYYY-MM-DD)',
|
||||
'select_statuslabel' => 'Status auswählen',
|
||||
'select_company' => 'Firma auswählen',
|
||||
'select_asset' => 'Asset auswählen',
|
||||
|
@ -162,10 +166,10 @@
|
|||
'status' => 'Status',
|
||||
'supplier' => 'Lieferant',
|
||||
'suppliers' => 'Lieferanten',
|
||||
'sure_to_delete' => 'Are you sure you wish to delete',
|
||||
'sure_to_delete' => 'Sind Sie sich sicher, dass Sie löschen möchten?',
|
||||
'submit' => 'Abschicken',
|
||||
'target' => 'Ziel',
|
||||
'time_and_date_display' => 'Time and Date Display',
|
||||
'time_and_date_display' => 'Zeit und Datum',
|
||||
'total_assets' => 'Gesamte Assets',
|
||||
'total_licenses' => 'Lizenzen insgesamt',
|
||||
'total_accessories' => 'gesamtes Zubehör',
|
||||
|
|
|
@ -25,7 +25,7 @@ return array(
|
|||
"file" => ":attribute darf nur zwischen :min und :max kilobytes groß sein.",
|
||||
"string" => ":attribute muss mindestens :min und maximal :max Zeichen enthalten.",
|
||||
),
|
||||
"boolean" => "The :attribute must be true or false.",
|
||||
"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.",
|
||||
|
|
21
resources/lang/el/admin/departments/message.php
Normal file
21
resources/lang/el/admin/departments/message.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
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. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
'success' => 'Department created successfully.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => 'Department was not updated, please try again',
|
||||
'success' => 'Department updated successfully.'
|
||||
),
|
||||
'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.'
|
||||
)
|
||||
|
||||
);
|
11
resources/lang/el/admin/departments/table.php
Normal file
11
resources/lang/el/admin/departments/table.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => 'Department Name',
|
||||
'manager' => 'Manager',
|
||||
'location' => 'Location',
|
||||
'create' => 'Create Department',
|
||||
'update' => 'Update Department',
|
||||
);
|
|
@ -48,6 +48,7 @@ return array(
|
|||
'delete' => array(
|
||||
'confirm' => 'Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το πάγιο;',
|
||||
'error' => 'There was an issue deleting the asset. Please try again.',
|
||||
'nothing_updated' => 'No assets were selected, so nothing was deleted.',
|
||||
'success' => 'Το πάγιο διαγράφηκε με επιτυχία.'
|
||||
),
|
||||
|
||||
|
|
|
@ -28,4 +28,9 @@ return array(
|
|||
'success' => 'Το μοντέλο επαναφέρθηκε με επιτυχία.'
|
||||
),
|
||||
|
||||
'bulkedit' => array(
|
||||
'error' => 'No fields were changed, so nothing was updated.',
|
||||
'success' => 'Models updated.'
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -90,6 +90,7 @@ return array(
|
|||
'about_settings_text' => 'These settings let you customize certain aspects of your installation.',
|
||||
'labels_per_page' => 'Labels per page',
|
||||
'label_dimensions' => 'Label dimensions (inches)',
|
||||
'next_auto_tag_base' => 'Next auto-increment',
|
||||
'page_padding' => 'Περιθώρια σελίδας (ίντσες)',
|
||||
'purge' => 'Purge Deleted Records',
|
||||
'labels_display_bgutter' => 'Label bottom gutter',
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
'cancel' => 'Ακύρωση',
|
||||
'categories' => 'Kατηγορίες',
|
||||
'category' => 'Κατηγορία',
|
||||
'change' => 'In/Out',
|
||||
'changeemail' => 'Change Email Address',
|
||||
'changepassword' => 'Αλλαγή κωδικού',
|
||||
'checkin' => 'Μεταβίβαση ελέγχου',
|
||||
|
@ -57,6 +58,8 @@
|
|||
'delete' => 'Διαγραφή',
|
||||
'deleted' => 'Διαγράφηκε',
|
||||
'delete_seats' => 'Deleted Seats',
|
||||
'departments' => 'Departments',
|
||||
'department' => 'Department',
|
||||
'deployed' => 'Έχουν αναπτυχθεί',
|
||||
'depreciation_report' => 'Αναφορά απόσβεσης',
|
||||
'download' => 'Λήψη',
|
||||
|
@ -142,13 +145,14 @@
|
|||
'select' => 'Επιλογή',
|
||||
'search' => 'Αναζήτηση',
|
||||
'select_category' => 'Επιλέξτε μια κατηγορία',
|
||||
'select_department' => 'Select a Department',
|
||||
'select_depreciation' => 'Επιλέξτε τύπο απόσβεσης',
|
||||
'select_location' => 'Επιλέξτε τοποθεσία',
|
||||
'select_manufacturer' => 'Επιλέξτε έναν κατασκευαστή',
|
||||
'select_model' => 'Επιλέξτε ένα μοντέλο',
|
||||
'select_supplier' => 'Επιλέξτε έναν προμηθευτή',
|
||||
'select_user' => 'Επιλέξτε χρήστη',
|
||||
'select_date' => 'Επιλέξτε Ημερομηνία',
|
||||
'select_date' => 'Select Date (YYYY-MM-DD)',
|
||||
'select_statuslabel' => 'Επιλέξτε τύπο',
|
||||
'select_company' => 'Επιλογή εταιρείας',
|
||||
'select_asset' => 'Επιλογή παγίου',
|
||||
|
|
21
resources/lang/en-GB/admin/departments/message.php
Normal file
21
resources/lang/en-GB/admin/departments/message.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
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. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
'success' => 'Department created successfully.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => 'Department was not updated, please try again',
|
||||
'success' => 'Department updated successfully.'
|
||||
),
|
||||
'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.'
|
||||
)
|
||||
|
||||
);
|
11
resources/lang/en-GB/admin/departments/table.php
Normal file
11
resources/lang/en-GB/admin/departments/table.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => 'Department Name',
|
||||
'manager' => 'Manager',
|
||||
'location' => 'Location',
|
||||
'create' => 'Create Department',
|
||||
'update' => 'Update Department',
|
||||
);
|
|
@ -48,6 +48,7 @@ return array(
|
|||
'delete' => array(
|
||||
'confirm' => 'Are you sure you wish to delete this asset?',
|
||||
'error' => 'There was an issue deleting the asset. Please try again.',
|
||||
'nothing_updated' => 'No assets were selected, so nothing was deleted.',
|
||||
'success' => 'The asset was deleted successfully.'
|
||||
),
|
||||
|
||||
|
|
|
@ -28,4 +28,9 @@ return array(
|
|||
'success' => 'Model restored successfully.'
|
||||
),
|
||||
|
||||
'bulkedit' => array(
|
||||
'error' => 'No fields were changed, so nothing was updated.',
|
||||
'success' => 'Models updated.'
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -90,6 +90,7 @@ return array(
|
|||
'about_settings_text' => 'These settings let you customize certain aspects of your installation.',
|
||||
'labels_per_page' => 'Labels per page',
|
||||
'label_dimensions' => 'Label dimensions (inches)',
|
||||
'next_auto_tag_base' => 'Next auto-increment',
|
||||
'page_padding' => 'Page margins (inches)',
|
||||
'purge' => 'Purge Deleted Records',
|
||||
'labels_display_bgutter' => 'Label bottom gutter',
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
'cancel' => 'Cancel',
|
||||
'categories' => 'Categories',
|
||||
'category' => 'Category',
|
||||
'change' => 'In/Out',
|
||||
'changeemail' => 'Change Email Address',
|
||||
'changepassword' => 'Change Password',
|
||||
'checkin' => 'Checkin',
|
||||
|
@ -57,6 +58,8 @@
|
|||
'delete' => 'Delete',
|
||||
'deleted' => 'Deleted',
|
||||
'delete_seats' => 'Deleted Seats',
|
||||
'departments' => 'Departments',
|
||||
'department' => 'Department',
|
||||
'deployed' => 'Deployed',
|
||||
'depreciation_report' => 'Depreciation Report',
|
||||
'download' => 'Download',
|
||||
|
@ -142,13 +145,14 @@
|
|||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_category' => 'Select a Category',
|
||||
'select_department' => 'Select a Department',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'select_date' => 'Select Date (YYYY-MM-DD)',
|
||||
'select_statuslabel' => 'Select Status',
|
||||
'select_company' => 'Select Company',
|
||||
'select_asset' => 'Select Asset',
|
||||
|
|
|
@ -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' => 'Pemeliharaan Aset gagal dirubah, silakan coba lagi.',
|
||||
'success' => 'Pemeliharaan Aset berhasil dibuat.'
|
||||
],
|
||||
'asset_maintenance_incomplete' => 'Belum selesai',
|
||||
'warranty' => 'Jaminan',
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
return [
|
||||
'title' => 'Pemeliharaan Aset',
|
||||
'asset_name' => 'Asset Name',
|
||||
'asset_name' => 'Nama Aset',
|
||||
'is_warranty' => 'Jaminan',
|
||||
'dl_csv' => 'Unduh CSV'
|
||||
];
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
'about_categories_title' => 'About Categories',
|
||||
'about_categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.',
|
||||
'about_categories_title' => 'Tentang Kategori',
|
||||
'about_categories' => 'Kategori membantu mengatur barang-barang anda. Beberapa contoh kategori seperti "Desktop", "Laptop", "Mobile Phones", "Tablet", dan sebagainya, namun Anda tetap dapat menggunakan kategori dengan cara apapun yang masuk akal bagi Anda.',
|
||||
'asset_categories' => 'Kategori Aset',
|
||||
'category_name' => 'Nama Kategori',
|
||||
'checkin_email' => 'Kirim email ke pengguna saat pengecekan.',
|
||||
|
@ -11,7 +11,7 @@ return array(
|
|||
'edit' => 'Edit Kategori',
|
||||
'eula_text' => 'Kategori EULA',
|
||||
'eula_text_help' => 'Bidang ini memungkinkan Anda untuk menyesuaikan EULA Anda untuk jenis tertentu dari aset. Jika Anda hanya memiliki satu EULA untuk semua aset Anda, Anda dapat memeriksa kotak di bawah untuk menggunakan default primer.',
|
||||
'name' => 'Category Name',
|
||||
'name' => 'Nama Kategori',
|
||||
'require_acceptance' => 'Mengharuskan pengguna untuk mengkonfirmasi penerimaan aset dalam kategori ini.',
|
||||
'required_acceptance' => 'Pengguna ini akan dikirimkan melalui email dengan link untuk mengkonfirmasi penerimaan item ini.',
|
||||
'required_eula' => 'Pengguna ini akan dikirimkan melalui email salinan EULA',
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
return [
|
||||
'about_companies_title' => 'About Companies',
|
||||
'about_companies_text' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.',
|
||||
'about_companies_title' => 'Tentang Perusahaan',
|
||||
'about_companies_text' => 'Cabang dapat digunakan untuk identitas atau untuk mengatur akses terhadap aset, user, dll.',
|
||||
'select_company' => 'Pilih Perusahaan',
|
||||
];
|
||||
|
|
21
resources/lang/en-ID/admin/departments/message.php
Normal file
21
resources/lang/en-ID/admin/departments/message.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
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. ',
|
||||
'create' => array(
|
||||
'error' => 'Department was not created, please try again.',
|
||||
'success' => 'Department created successfully.'
|
||||
),
|
||||
'update' => array(
|
||||
'error' => 'Department was not updated, please try again',
|
||||
'success' => 'Department updated successfully.'
|
||||
),
|
||||
'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.'
|
||||
)
|
||||
|
||||
);
|
11
resources/lang/en-ID/admin/departments/table.php
Normal file
11
resources/lang/en-ID/admin/departments/table.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'id' => 'ID',
|
||||
'name' => 'Department Name',
|
||||
'manager' => 'Manager',
|
||||
'location' => 'Location',
|
||||
'create' => 'Create Department',
|
||||
'update' => 'Update Department',
|
||||
);
|
|
@ -48,6 +48,7 @@ return array(
|
|||
'delete' => array(
|
||||
'confirm' => 'Are you sure you wish to delete this asset?',
|
||||
'error' => 'There was an issue deleting the asset. Please try again.',
|
||||
'nothing_updated' => 'No assets were selected, so nothing was deleted.',
|
||||
'success' => 'The asset was deleted successfully.'
|
||||
),
|
||||
|
||||
|
|
|
@ -28,4 +28,9 @@ return array(
|
|||
'success' => 'Model restored successfully.'
|
||||
),
|
||||
|
||||
'bulkedit' => array(
|
||||
'error' => 'No fields were changed, so nothing was updated.',
|
||||
'success' => 'Models updated.'
|
||||
),
|
||||
|
||||
);
|
||||
|
|
|
@ -90,6 +90,7 @@ return array(
|
|||
'about_settings_text' => 'These settings let you customize certain aspects of your installation.',
|
||||
'labels_per_page' => 'Labels per page',
|
||||
'label_dimensions' => 'Label dimensions (inches)',
|
||||
'next_auto_tag_base' => 'Next auto-increment',
|
||||
'page_padding' => 'Page margins (inches)',
|
||||
'purge' => 'Purge Deleted Records',
|
||||
'labels_display_bgutter' => 'Label bottom gutter',
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
'cancel' => 'Cancel',
|
||||
'categories' => 'Categories',
|
||||
'category' => 'Category',
|
||||
'change' => 'In/Out',
|
||||
'changeemail' => 'Change Email Address',
|
||||
'changepassword' => 'Change Password',
|
||||
'checkin' => 'Checkin',
|
||||
|
@ -57,6 +58,8 @@
|
|||
'delete' => 'Delete',
|
||||
'deleted' => 'Deleted',
|
||||
'delete_seats' => 'Deleted Seats',
|
||||
'departments' => 'Departments',
|
||||
'department' => 'Department',
|
||||
'deployed' => 'Deployed',
|
||||
'depreciation_report' => 'Depreciation Report',
|
||||
'download' => 'Download',
|
||||
|
@ -142,13 +145,14 @@
|
|||
'select' => 'Select',
|
||||
'search' => 'Search',
|
||||
'select_category' => 'Select a Category',
|
||||
'select_department' => 'Select a Department',
|
||||
'select_depreciation' => 'Select a Depreciation Type',
|
||||
'select_location' => 'Select a Location',
|
||||
'select_manufacturer' => 'Select a Manufacturer',
|
||||
'select_model' => 'Select a Model',
|
||||
'select_supplier' => 'Select a Supplier',
|
||||
'select_user' => 'Select a User',
|
||||
'select_date' => 'Select Date',
|
||||
'select_date' => 'Select Date (YYYY-MM-DD)',
|
||||
'select_statuslabel' => 'Select Status',
|
||||
'select_company' => 'Select Company',
|
||||
'select_asset' => 'Select Asset',
|
||||
|
|
|
@ -7,7 +7,7 @@ return array(
|
|||
'account_not_activated' => 'This user account is not activated.',
|
||||
'account_suspended' => 'This user account is suspended.',
|
||||
'account_banned' => 'This user account is banned.',
|
||||
'throttle' => 'Too many failed login attempts. Please try again in around :minutes minute(s).',
|
||||
'throttle' => 'Too many failed login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
'signin' => array(
|
||||
'error' => 'There was a problem while trying to log you in, please try again.',
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue