Merge remote-tracking branch 'origin/develop'
This commit is contained in:
@@ -218,6 +218,7 @@ class LocationsController extends Controller
|
||||
'locations.updated_at',
|
||||
'locations.image',
|
||||
'locations.currency',
|
||||
'locations.company_id',
|
||||
'locations.notes',
|
||||
])
|
||||
->withCount('assignedAssets as assigned_assets_count')
|
||||
|
||||
@@ -37,8 +37,8 @@ class StoreLabelSettings extends FormRequest
|
||||
|
||||
return [
|
||||
'labels_per_page' => 'numeric',
|
||||
'labels_width' => 'numeric',
|
||||
'labels_height' => 'numeric',
|
||||
'labels_width' => 'numeric|min:0.1',
|
||||
'labels_height' => 'numeric|min:0.1',
|
||||
'labels_pmargin_left' => 'numeric|nullable',
|
||||
'labels_pmargin_right' => 'numeric|nullable',
|
||||
'labels_pmargin_top' => 'numeric|nullable',
|
||||
|
||||
@@ -43,8 +43,8 @@ class DefaultLabel extends RectangleSheet
|
||||
|
||||
$this->textSize = Helper::convertUnit($settings->labels_fontsize, 'pt', 'in');
|
||||
|
||||
$this->labelWidth = $settings->labels_width;
|
||||
$this->labelHeight = $settings->labels_height;
|
||||
$this->labelWidth = $this->setLabelWidth($settings);
|
||||
$this->labelHeight = $this->setLabelHeight($settings);
|
||||
|
||||
$this->labelSpacingH = $settings->labels_display_sgutter;
|
||||
$this->labelSpacingV = $settings->labels_display_bgutter;
|
||||
@@ -181,6 +181,25 @@ class DefaultLabel extends RectangleSheet
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
private function setLabelWidth(Setting $settings)
|
||||
{
|
||||
$labelWidth = $settings->labels_width;
|
||||
|
||||
?>
|
||||
if ($labelWidth == 0) {
|
||||
$labelWidth = 0.1;
|
||||
}
|
||||
|
||||
return $labelWidth;
|
||||
}
|
||||
|
||||
private function setLabelHeight(?Setting $settings)
|
||||
{
|
||||
$labelHeight = $settings->labels_height;
|
||||
|
||||
if ($labelHeight == 0) {
|
||||
$labelHeight = 0.1;
|
||||
}
|
||||
|
||||
return $labelHeight;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'crwdns6501:0crwdne6501:0',
|
||||
'field' => 'crwdns1487:0crwdne1487:0',
|
||||
'about_fieldsets_title' => 'crwdns1488:0crwdne1488:0',
|
||||
'about_fieldsets_text' => 'crwdns13226:0crwdne13226:0',
|
||||
'about_fieldsets_text' => 'crwdns13242:0crwdne13242:0',
|
||||
'custom_format' => 'crwdns6505:0crwdne6505:0',
|
||||
'encrypt_field' => 'crwdns1792:0crwdne1792:0',
|
||||
'encrypt_field_help' => 'crwdns1683:0crwdne1683:0',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'crwdns11843:0crwdne11843:0',
|
||||
'error_misc' => 'crwdns11383:0crwdne11383:0',
|
||||
'webhook_fail' => 'crwdns12830:0crwdne12830:0',
|
||||
'webhook_channel_not_found' => 'crwdns12876:0crwdne12876:0'
|
||||
'webhook_channel_not_found' => 'crwdns12876:0crwdne12876:0',
|
||||
'ms_teams_deprecation' => 'crwdns13246:0crwdne13246:0',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'crwdns13053:0crwdne13053:0',
|
||||
'mismatch' => 'crwdns13055:0crwdne13055:0',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -521,7 +521,7 @@ return [
|
||||
'checked_out_to_fields' => 'crwdns12214:0crwdne12214:0',
|
||||
'percent_complete' => 'crwdns11811:0crwdne11811:0',
|
||||
'uploading' => 'crwdns11813:0crwdne11813:0',
|
||||
'upload_error' => 'crwdns11884:0crwdne11884:0',
|
||||
'upload_error' => 'crwdns13244:0crwdne13244:0',
|
||||
'copy_to_clipboard' => 'crwdns11837:0crwdne11837:0',
|
||||
'copied' => 'crwdns11839:0crwdne11839:0',
|
||||
'status_compatibility' => 'crwdns11910:0crwdne11910:0',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Manage',
|
||||
'field' => 'veld',
|
||||
'about_fieldsets_title' => 'Oor Fieldsets',
|
||||
'about_fieldsets_text' => 'Veldstelle stel jou in staat om groepe van persoonlike velde te skep wat gereeld hergebruik word vir spesifieke tipe bates.',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
|
||||
'custom_format' => 'Custom Regex format...',
|
||||
'encrypt_field' => 'Enkripteer die waarde van hierdie veld in die databasis',
|
||||
'encrypt_field_help' => 'WAARSKUWING: Om \'n veld te enkripteer, maak dit onondersoekbaar.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||
'error_misc' => 'Something went wrong. :( ',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'Oor Status Etikette',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'argief',
|
||||
'create' => 'Skep statusetiket',
|
||||
'color' => 'Grafiek Kleur',
|
||||
'default_label' => 'Default Label',
|
||||
'default_label_help' => 'This is used to ensure your most commonly used status labels appear at the top of the select box when creating/editing assets.',
|
||||
'deployable' => 'verbintenis',
|
||||
'info' => 'Statusetikette word gebruik om die verskillende state waarin u bates kan wees, te beskryf. Hulle kan dalk herstel, verlore / gesteel wees, ens. U kan nuwe statusetikette skep vir ontplooibare, hangende en geargiveerde bates.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Status Naam',
|
||||
'pending' => 'hangende',
|
||||
'status_type' => 'Status Tipe',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Checked Out To Fields',
|
||||
'percent_complete' => '% volledige',
|
||||
'uploading' => 'Uploading... ',
|
||||
'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'Copy to Clipboard',
|
||||
'copied' => 'Copied!',
|
||||
'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Manage',
|
||||
'field' => 'Field',
|
||||
'about_fieldsets_title' => 'About Fieldsets',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
|
||||
'custom_format' => 'Custom Regex format...',
|
||||
'encrypt_field' => 'Encrypt the value of this field in the database',
|
||||
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||
'error_misc' => 'Something went wrong. :( ',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'About Status Labels',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'የተመኸደረ',
|
||||
'create' => 'Create Status Label',
|
||||
'color' => 'Chart Color',
|
||||
'default_label' => 'Default Label',
|
||||
'default_label_help' => 'This is used to ensure your most commonly used status labels appear at the top of the select box when creating/editing assets.',
|
||||
'deployable' => 'Deployable',
|
||||
'info' => 'Status labels are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for deployable, pending and archived assets.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Status Name',
|
||||
'pending' => 'Pending',
|
||||
'status_type' => 'Status Type',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Checked Out To Fields',
|
||||
'percent_complete' => '% complete',
|
||||
'uploading' => 'Uploading... ',
|
||||
'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'Copy to Clipboard',
|
||||
'copied' => 'Copied!',
|
||||
'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'إدارة',
|
||||
'field' => 'حقل',
|
||||
'about_fieldsets_title' => 'حول مجموعة الحقول',
|
||||
'about_fieldsets_text' => '(مجموعات الحقول) تسمح لك بإنشاء مجموعات من الحقول اللتي يمكن إعادة إستخدامها مع موديل محدد.',
|
||||
'about_fieldsets_text' => 'مجموعات الحقول تسمح لك بإنشاء مجموعات من الحقول المخصصة التي يعاد استخدامها في كثير من الأحيان لأنواع معينة من نماذج الأصول.',
|
||||
'custom_format' => 'تنسيق Regex المخصص...',
|
||||
'encrypt_field' => 'تشفير قيمة هذا الحقل في قاعدة البيانات',
|
||||
'encrypt_field_help' => 'تحذير: تشفير الحقل يجعله غير قابل للبحث.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'خطأ: 301/302 :endpoint يرجع إعادة توجيه. لأسباب أمنية، نحن لا نتابع إعادة التوجيه. الرجاء استخدام نقطة النهاية الفعلية.',
|
||||
'error_misc' => 'حدث خطأ ما. :( ',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'حول تسميات الحالة',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'مؤرشف',
|
||||
'create' => 'إنشاء تسمية الحالة',
|
||||
'color' => 'لون الرسم البياني',
|
||||
'default_label' => 'الوسم الافتراضي',
|
||||
'default_label_help' => 'يستخدم هذا للتأكد من أن تسميات الحالة الأكثر استخداما تظهر في الجزء العلوي من المربع المحدد عند إنشاء/تحرير الأصول.',
|
||||
'deployable' => 'قابل للتوزيع',
|
||||
'info' => 'يتم استخدام تسميات الحالة لوصف الحالات المحتملة للأصول التابعة لك. قد تكون قيد الصيانة أو ضمن المفقودة أو المسروقة، وما إلى ذلك. يمكنك إنشاء تسميات حالة جديدة للأصول القابلة للتوزيع وقيد الانتظار والمؤرشفة.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'اسم الحالة',
|
||||
'pending' => 'قيد الانتظار',
|
||||
'status_type' => 'نوع الحالة',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Checked Out To Fields',
|
||||
'percent_complete' => '% اكتمال',
|
||||
'uploading' => 'تحميل... ',
|
||||
'upload_error' => 'خطأ في تحميل الملف. الرجاء التحقق من أنه لا توجد صفوف فارغة وأنه لا يوجد تكرار لأسماء الأعمدة.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'نسخ إلى الحافظة',
|
||||
'copied' => 'نسخ!',
|
||||
'status_compatibility' => 'إذا تم تعيين الأصول بالفعل، فإنه لا يمكن تغييرها إلى نوع حالة غير قابل للنشر وسيتم تخطي هذا التغيير في القيمة.',
|
||||
|
||||
@@ -18,7 +18,7 @@ return array(
|
||||
'confirm' => 'Сигурни ли сте, че желаете да изтриете този компонент?',
|
||||
'error' => 'Възникна проблем при изтриването на компонента. Моля опитайте отново.',
|
||||
'success' => 'Компонентът бе изтрит успешно.',
|
||||
'error_qty' => 'Some components of this type are still checked out. Please check them in and try again.',
|
||||
'error_qty' => 'Някой компоненти от този тип са все още изписани. Моля проверете ги и пробвайте отново.',
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
return array(
|
||||
|
||||
'invalid_category_type' => 'The category must be a consumable category.',
|
||||
'invalid_category_type' => 'Категоряита трябва да бъде от консумативи.',
|
||||
'does_not_exist' => 'Консуматива не съществува.',
|
||||
|
||||
'create' => array(
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Управление',
|
||||
'field' => 'Поле',
|
||||
'about_fieldsets_title' => 'Относно Fieldsets',
|
||||
'about_fieldsets_text' => 'Fieldsets позволяват създаването на групи от персонализирани полета, които се използват и преизползват често за специфични типове модели на активи.',
|
||||
'about_fieldsets_text' => '"Група от полета" позволяват създаването на групи от персонализирани полета, които се използват и преизползват често за специфични типове модели на активи.',
|
||||
'custom_format' => 'Персонализиран формат...',
|
||||
'encrypt_field' => 'Шифроване на стойността на това поле в базата данни',
|
||||
'encrypt_field_help' => 'ВНИМАНИЕ: Шифроване на поле го прави невалидно за търсене.',
|
||||
@@ -57,8 +57,8 @@ return [
|
||||
'show_in_requestable_list_short' => 'Покажи в списъка на изискуемите артикули',
|
||||
'show_in_requestable_list' => 'Покажи стойноста в списъка на изискуемите артикули. Криптираните полета няма да се покажат',
|
||||
'encrypted_options' => 'Това поле е криптирано, затова някой настройки няма да бъдат налични.',
|
||||
'display_checkin' => 'Display in checkin forms',
|
||||
'display_checkout' => 'Display in checkout forms',
|
||||
'display_audit' => 'Display in audit forms',
|
||||
'display_checkin' => 'Покажи в форма за вписване',
|
||||
'display_checkout' => 'Покажи в форма за изписване',
|
||||
'display_audit' => 'Покажи в форма за одит',
|
||||
|
||||
];
|
||||
|
||||
@@ -5,7 +5,7 @@ return array(
|
||||
'field' => array(
|
||||
'invalid' => 'Това поле не съществува.',
|
||||
'already_added' => 'Вече е добавено поле',
|
||||
'none_selected' => 'No field selected',
|
||||
'none_selected' => 'Не е избрано поле',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'Поле не беше създадено, моля опитайте отново.',
|
||||
|
||||
@@ -14,7 +14,7 @@ return [
|
||||
Нямате нагласена амортизация.
|
||||
Моля настройте поне една амортизация за да видите справката.',
|
||||
'depreciation_method' => 'Справка за амортизации',
|
||||
'linear_depreciation' => 'Linear (Default)',
|
||||
'half_1' => 'Half-year convention, always applied',
|
||||
'half_2' => 'Half-year convention, applied with condition',
|
||||
'linear_depreciation' => 'Линеен (по подразбиране)',
|
||||
'half_1' => 'Полугодишна, винаги се приложена',
|
||||
'half_2' => 'Полугодишна, приложена с условие',
|
||||
];
|
||||
|
||||
@@ -55,11 +55,11 @@ return [
|
||||
'asset_location_update_default' => 'Актуализиране на местоположението по подразбиране',
|
||||
'asset_location_update_actual' => 'Актуализиране само на местоположението',
|
||||
'asset_not_deployable' => 'Актива не може да бъде предоставен. Този активк не може да бъде изписан.',
|
||||
'asset_not_deployable_checkin' => 'That asset status is not deployable. Using this status label will checkin the asset.',
|
||||
'asset_deployable' => 'This asset can be checked out.',
|
||||
'asset_not_deployable_checkin' => 'Статуса на този актив е със забрана за изписване. Използвайки този статус ще впише актива обратно.',
|
||||
'asset_deployable' => 'Този актив може да бъде изписан.',
|
||||
'processing_spinner' => 'Обработка...(Това може да отнеме време при големи файлове)',
|
||||
'processing' => 'В процес на изпълнение... ',
|
||||
'optional_infos' => 'Допълнителна информация',
|
||||
'order_details' => 'Информация за състоянието на поръчка',
|
||||
'calc_eol' => 'If nulling the EOL date, use automatic EOL calculation based on the purchase date and EOL rate.',
|
||||
'calc_eol' => 'Ако нулирате EOL датата, ще се използва EOL дата базирана на дата на закупуване + EOL норма.',
|
||||
];
|
||||
|
||||
@@ -6,7 +6,7 @@ return [
|
||||
'archived' => 'Архивиран',
|
||||
'asset' => 'Актив',
|
||||
'bulk_checkout' => 'Общо отписване',
|
||||
'bulk_checkin' => 'Bulk Checkin',
|
||||
'bulk_checkin' => 'Общо вписване',
|
||||
'checkin' => 'Връщане на актив',
|
||||
'checkout' => 'Изписване на актив',
|
||||
'clone' => 'Копиране на актив',
|
||||
@@ -27,7 +27,7 @@ return [
|
||||
'undeployable_tooltip' => 'Този актив е забранен за изписване и не може да се изпише в момента.',
|
||||
'view' => 'Преглед на актив',
|
||||
'csv_error' => 'Имате грешка във вашият CSV файл:',
|
||||
'import_text' => '<p>Upload a CSV that contains asset history. The assets and users MUST already exist in the system, or they will be skipped. Matching assets for history import happens against the asset tag. We will try to find a matching user based on the user\'s name you provide, and the criteria you select below. If you do not select any criteria below, it will simply try to match on the username format you configured in the <code>Admin > General Settings</code>.</p><p>Fields included in the CSV must match the headers: <strong>Asset Tag, Name, Checkout Date, Checkin Date</strong>. Any additional fields will be ignored. </p><p>Checkin Date: blank or future checkin dates will checkout items to associated user. Excluding the Checkin Date column will create a checkin date with todays date.</p> ',
|
||||
'import_text' => '<p>Качи CSV файл, който съдържа историята на активите. Активите и потребителите ТРЯБВА да ги има създадени в системата в противен слуай няма да се импортират. При импортиране на историята на активите, съвпадението се прави по техния инвентарен номер. Ще се опитаме да намерим потребителя на база неговото потребителско име и критерия който сте избрали по-долу. Ще се опита да намери съвпадение по формата на потребителско име избран в <code>Admin > General Settings</code>.</p><p>Полетата включени в CSV файла, трябва да съвпадат с <strong>Инвентарен номер, Име, Дата на изписване, Дата на вписване</strong>. Всякакви допълнителни полета ще бъдат игнорирани. </p><p> Празна дата на вписване или дата в бъдещето ще изпише актива към асоцийрания потребител. Ако не се включи колона с дата на вписване, същата ще бъде създадена със текущата дата.</p> ',
|
||||
'csv_import_match_f-l' => 'Опитай да намериш съвпадение на потребителите по <strong>Име.Фамилия</strong> (<code>Иван.Иванов</code>)',
|
||||
'csv_import_match_initial_last' => 'Опитай да намериш съвпадение на потребителите по <strong>Първа буква, Фамилия</strong> (<code>ииванов</code>)',
|
||||
'csv_import_match_first' => 'Опитай да намериш съвпадение на потребителите по <strong>Име</strong> (<code>Иван</code>)',
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
|
||||
return [
|
||||
|
||||
'undeployable' => '<strong>Warning: </strong> This asset has been marked as currently undeployable. If this status has changed, please update the asset status.',
|
||||
'undeployable' => '<strong>Внимание:</strong> Този актив е маркиран, като забранен за изписване. Ако статусът е променен, моля обновете актива.',
|
||||
'does_not_exist' => 'Активът не съществува.',
|
||||
'does_not_exist_var' => 'Активът с етике :asset_tag не е намерен.',
|
||||
'no_tag' => 'Не е предоставен етикет на актив.',
|
||||
'does_not_exist_or_not_requestable' => 'Актива не съществува или не може да бъде предоставян.',
|
||||
'assoc_users' => 'Активът е изписан на потребител и не може да бъде изтрит. Моля впишете го обратно и след това опитайте да го изтриете отново.',
|
||||
'warning_audit_date_mismatch' => 'Следващата дата на одит на този актив (:next_audit_date) е преди последната дата на одит (:last_audit_date). Моля, актуализирайте следващата дата на одита.',
|
||||
'labels_generated' => 'Labels were successfully generated.',
|
||||
'error_generating_labels' => 'Error while generating labels.',
|
||||
'no_assets_selected' => 'No assets selected.',
|
||||
'labels_generated' => 'Етиката е успешно генериран.',
|
||||
'error_generating_labels' => 'Грешка при генериране на етикети.',
|
||||
'no_assets_selected' => 'Няма избрани активи.',
|
||||
|
||||
'create' => [
|
||||
'error' => 'Активът не беше създаден. Моля опитайте отново.',
|
||||
'success' => 'Активът създаден успешно.',
|
||||
'success_linked' => 'Артикул с етикет :tag беше създаден успешно. <strong><a href=":link" style="color: white;">Щракнете тук за да го видите</a></strong>.',
|
||||
'multi_success_linked' => 'Asset with tag :links was created successfully.|:count assets were created succesfully. :links.',
|
||||
'partial_failure' => 'An asset was unable to be created. Reason: :failures|:count assets were unable to be created. Reasons: :failures',
|
||||
'multi_success_linked' => 'Актив с етикет :links беше създаден успешно.|:count активи бяха създадено успешно. :links.',
|
||||
'partial_failure' => 'Грешка при създаване на актив. Съобщението за грешка е: :failures|:count актива не бяха създадени. Съобщението за грешка е: :failures',
|
||||
],
|
||||
|
||||
'update' => [
|
||||
@@ -56,24 +56,24 @@ return [
|
||||
],
|
||||
|
||||
'import' => [
|
||||
'import_button' => 'Process Import',
|
||||
'import_button' => 'Импортирай',
|
||||
'error' => 'Някои елементи не бяха въведени правилно.',
|
||||
'errorDetail' => 'Следните елементи не бяха въведени поради грешки.',
|
||||
'success' => 'Вашият файл беше въведен.',
|
||||
'file_delete_success' => 'Вашият файл беше изтрит успешно.',
|
||||
'file_delete_error' => 'Файлът не е в състояние да бъде изтрит',
|
||||
'file_missing' => 'Избраният файл липсва',
|
||||
'file_already_deleted' => 'The file selected was already deleted',
|
||||
'file_already_deleted' => 'Избрания файл беше вече изтрит',
|
||||
'header_row_has_malformed_characters' => 'Един или повече атрибути на заглавния ред съдържат неправилни UTF-8 символи',
|
||||
'content_row_has_malformed_characters' => 'Един или повече атрибути на заглавния ред съдържат неправилни UTF-8 символи',
|
||||
'transliterate_failure' => 'Transliteration from :encoding to UTF-8 failed due to invalid characters in input'
|
||||
'transliterate_failure' => 'Транслитерацията от :encoding към UTF-8 беше неуспешна, поради невалидни символи'
|
||||
],
|
||||
|
||||
|
||||
'delete' => [
|
||||
'confirm' => 'Сигурни ли сте, че желаете изтриване на актива?',
|
||||
'error' => 'Проблем при изтриване на актива. Моля опитайте отново.',
|
||||
'assigned_to_error' => '{1}Asset Tag: :asset_tag is currently checked out. Check in this device before deletion.|[2,*]Asset Tags: :asset_tag are currently checked out. Check in these devices before deletion.',
|
||||
'assigned_to_error' => '{1}Актива: :asset_tag е изписан. Впишете го обратно преди изтриване.|[2,*] Активите :asset_tag са изписани. Впишете ги обратно преди изтриване.',
|
||||
'nothing_updated' => 'Няма избрани активи, така че нищо не бе изтрито.',
|
||||
'success' => 'Активът е изтрит успешно.',
|
||||
],
|
||||
@@ -87,8 +87,8 @@ return [
|
||||
],
|
||||
|
||||
'multi-checkout' => [
|
||||
'error' => 'Asset was not checked out, please try again|Assets were not checked out, please try again',
|
||||
'success' => 'Asset checked out successfully.|Assets checked out successfully.',
|
||||
'error' => 'Актива не беше изписан, моля опитайте отново|Активите не бяха изписани, моля опитайте отново',
|
||||
'success' => 'Актива е изписан успешно.|Активите са изписани успешно.',
|
||||
],
|
||||
|
||||
'checkin' => [
|
||||
@@ -100,9 +100,9 @@ return [
|
||||
],
|
||||
|
||||
'requests' => [
|
||||
'error' => 'Request was not successful, please try again.',
|
||||
'success' => 'Request successfully submitted.',
|
||||
'canceled' => 'Request successfully canceled.',
|
||||
'error' => 'Опитат беше неуспешен, моля опитайте отново.',
|
||||
'success' => 'Заявката е успешно подадена.',
|
||||
'canceled' => 'Заявката е отменена.',
|
||||
'cancel' => 'Отмени тази заявка за артикул',
|
||||
],
|
||||
|
||||
|
||||
@@ -47,5 +47,5 @@ return [
|
||||
'kit_deleted' => 'Комплектът беше изтрит',
|
||||
'kit_model_updated' => 'Модела беше успешно обновен',
|
||||
'kit_model_detached' => 'Модела беше премахнат успешно',
|
||||
'model_already_attached' => 'Model already attached to kit',
|
||||
'model_already_attached' => 'Модела е добавен в комплекта',
|
||||
];
|
||||
|
||||
@@ -14,7 +14,7 @@ return array(
|
||||
'info' => 'Информация за лиценз',
|
||||
'license_seats' => 'Потребителски лицензи',
|
||||
'seat' => 'Потребителски лиценз',
|
||||
'seat_count' => 'Seat :count',
|
||||
'seat_count' => 'Брой места :count',
|
||||
'seats' => 'Потребителски лицензи',
|
||||
'software_licenses' => 'Софтуерни лицензи',
|
||||
'user' => 'Потребител',
|
||||
@@ -24,12 +24,12 @@ return array(
|
||||
[
|
||||
'checkin_all' => [
|
||||
'button' => 'Връщане на всички бройки',
|
||||
'modal' => 'This action will checkin one seat. | This action will checkin all :checkedout_seats_count seats for this license.',
|
||||
'modal' => 'Това действие ще впише едно работно място. | Това действие ще впише всички :checkedout_seats_count работни места от този лиценз.',
|
||||
'enabled_tooltip' => 'Вписване на всички бройки от този лиценз за потребителите и активите',
|
||||
'disabled_tooltip' => 'Това е забранено защото няма изписани бройки',
|
||||
'disabled_tooltip_reassignable' => 'Това е деактивирано, защото лиценза не може да се прехвърля',
|
||||
'success' => 'Лиценза е заведен успешно! | Всички лицензи са заведени успешно!',
|
||||
'log_msg' => 'Checked in via bulk license checkin in license GUI',
|
||||
'log_msg' => 'Вписване чрез групово лиценз вписване в GUI',
|
||||
],
|
||||
|
||||
'checkout_all' => [
|
||||
|
||||
@@ -44,13 +44,13 @@ return array(
|
||||
'error' => 'Възникна проблем при изписването на лиценза. Моля, опитайте отново.',
|
||||
'success' => 'Лицензът е изписан',
|
||||
'not_enough_seats' => 'Няма достатъчно лицензи за изписване',
|
||||
'mismatch' => 'The license seat provided does not match the license',
|
||||
'unavailable' => 'This seat is not available for checkout.',
|
||||
'mismatch' => 'Броя лицензни места не отговаря на броя лицензи',
|
||||
'unavailable' => 'Този лиценз за работно място не е наличен за изписване.',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'Възникна проблем при вписването на лиценза. Моля, опитайте отново.',
|
||||
'not_reassignable' => 'License not reassignable',
|
||||
'not_reassignable' => 'Лиценза не може да се прехвърля',
|
||||
'success' => 'Лицензът е вписан'
|
||||
),
|
||||
|
||||
|
||||
@@ -3,12 +3,12 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Местоположението не съществува.',
|
||||
'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
|
||||
'assoc_users' => 'Това местоположение не може да бъде изтрито, защото има поне един запис на актив или потребител, зачислен към него или съдържа под локаций. Моля обновете вашите записи, така че да не съдържат това местоположение и пробвайте да го изтриете отново. ',
|
||||
'assoc_assets' => 'Местоположението е свързано с поне един актив и не може да бъде изтрито. Моля, актуализирайте активите, така че да не са свързани с това местоположение и опитайте отново. ',
|
||||
'assoc_child_loc' => 'В избраното местоположение е присъединено едно или повече местоположения. Моля преместете ги в друго и опитайте отново.',
|
||||
'assigned_assets' => 'Изписани Активи',
|
||||
'current_location' => 'Текущо местоположение',
|
||||
'open_map' => 'Open in :map_provider_icon Maps',
|
||||
'open_map' => 'Отвори в :map_provider_icon карти',
|
||||
|
||||
|
||||
'create' => array(
|
||||
@@ -22,8 +22,8 @@ return array(
|
||||
),
|
||||
|
||||
'restore' => array(
|
||||
'error' => 'Location was not restored, please try again',
|
||||
'success' => 'Location restored successfully.'
|
||||
'error' => 'Местоположението не беше възстановено, моля опитайте отново',
|
||||
'success' => 'Местоположението е възстановено.'
|
||||
),
|
||||
|
||||
'delete' => array(
|
||||
|
||||
@@ -39,5 +39,5 @@ return [
|
||||
'signed_by_finance_auditor' => 'Подписан от (счетоводител):',
|
||||
'signed_by_location_manager' => 'Подписан от (мениджър):',
|
||||
'signed_by' => 'Подписано от:',
|
||||
'clone' => 'Clone Location',
|
||||
'clone' => 'Клонирай местоположението',
|
||||
];
|
||||
|
||||
@@ -7,7 +7,7 @@ return array(
|
||||
'no_association' => 'ВНИМАНИЕ! Модела за този актив е неправилен или липсва!',
|
||||
'no_association_fix' => 'Това ще счупи нещата по много лош начин. Редактирайте артикула сега и го зачислете към модел.',
|
||||
'assoc_users' => 'Този модел е асоцииран с един или повече активи и не може да бъде изтрит. Моля изтрийте активите и опитайте отново.',
|
||||
'invalid_category_type' => 'This category must be an asset category.',
|
||||
'invalid_category_type' => 'Тази категоря трябва да бъде за модели.',
|
||||
|
||||
'create' => array(
|
||||
'error' => 'Моделът не беше създаден. Моля опитайте отново.',
|
||||
|
||||
@@ -4,7 +4,7 @@ return [
|
||||
'info' => 'Изберете опциите, които желаете за справката за активи.',
|
||||
'deleted_user' => 'Изтрит потребител',
|
||||
'send_reminder' => 'Изпрати напомняне',
|
||||
'cannot_send_reminder' => 'User has been deleted or does not have an email address so cannot receive a reminder',
|
||||
'cannot_send_reminder' => 'Потребителя е бил изтрит или няма валиден е-майл адрес и не може да получи напомняне',
|
||||
'reminder_sent' => 'Напомнянето изпратено',
|
||||
'acceptance_deleted' => 'Заявката за приемане е изтрита',
|
||||
'acceptance_request' => 'Заявка за приемане',
|
||||
@@ -15,9 +15,9 @@ return [
|
||||
'user_country' => 'Държава на потребителя',
|
||||
'user_zip' => 'Пощенски код на потребителя'
|
||||
],
|
||||
'open_saved_template' => 'Open Saved Template',
|
||||
'save_template' => 'Save Template',
|
||||
'select_a_template' => 'Select a Template',
|
||||
'template_name' => 'Template Name',
|
||||
'update_template' => 'Update Template',
|
||||
'open_saved_template' => 'Отвори записан шаблон',
|
||||
'save_template' => 'Запиши шаблон',
|
||||
'select_a_template' => 'Избери шаблон',
|
||||
'template_name' => 'Име на шаблон',
|
||||
'update_template' => 'Обнови шаблон',
|
||||
];
|
||||
|
||||
@@ -8,7 +8,7 @@ return [
|
||||
'ad_append_domain' => 'Добави името на домейна към потребителското име',
|
||||
'ad_append_domain_help' => 'От потребителя не се изисква да въвежда "username@domain.local", достатъчно е да напише само "username".',
|
||||
'admin_cc_email' => 'CC електронна поща',
|
||||
'admin_cc_email_help' => 'Send a copy of checkin/checkout emails to this address.',
|
||||
'admin_cc_email_help' => 'Изпращай копие на известията за вписване/изписване на следния е-майл адрес.',
|
||||
'admin_settings' => 'Админ настройки',
|
||||
'is_ad' => 'Това е активна директория на сървър',
|
||||
'alerts' => 'Известия',
|
||||
@@ -31,18 +31,18 @@ return [
|
||||
'backups' => 'Архивиране',
|
||||
'backups_help' => 'Създаване, сваляне и възстановяване на архиви ',
|
||||
'backups_restoring' => 'Възстановяване от архив',
|
||||
'backups_clean' => 'Clean the backed-up database before restore',
|
||||
'backups_clean_helptext' => "This can be useful if you're changing between database versions",
|
||||
'backups_clean' => 'Почисти архива на базата преди възстановяване',
|
||||
'backups_clean_helptext' => "Това може да е полесно при смяна на версията на базата",
|
||||
'backups_upload' => 'Качване на архив',
|
||||
'backups_path' => 'Архивите на сървъра са записани в <code>:path</code>',
|
||||
'backups_restore_warning' => 'Use the restore button <small><span class="btn btn-xs btn-warning"><i class="text-white fas fa-retweet" aria-hidden="true"></i></span></small> to restore from a previous backup. (This does not currently work with S3 file storage or Docker.)<br><br>Your <strong>entire :app_name database and any uploaded files will be completely replaced</strong> by what\'s in the backup file ',
|
||||
'backups_restore_warning' => 'Използвайте бутона за възстановяване <small><span class="btn btn-xs btn-warning"><i class="text-white fas fa-retweet" aria-hidden="true"></i></span></small> ,за да възстановите архивно копие. (Това не работи с S3 файлова система или Docker.)<br><br>Вашата <strong>цяла :app_name датабаза и всички качени файлове ще бъдат заменени</strong> от съдържанието на архива. ',
|
||||
'backups_logged_out' => 'Всички потребители, включително и вие, ще бъдат отписани след възстановяването.',
|
||||
'backups_large' => 'Много големите архиви може да не могат да се възстановят поради изтичане на времето на сесията и ще трябва да се възстановят ръчно през команден ред. ',
|
||||
'barcode_settings' => 'Настройки на баркод',
|
||||
'confirm_purge' => 'Потвърдете пречистване ',
|
||||
'confirm_purge_help' => 'Моля да потвърдите изтриването като въведете думата "DELETE" в полето. Изтриването не може да се прекрати и всички записи който са маркирани за истриване, ще бъдат безвъзвратно изтрити. (Добре е да направите архив преди това.)',
|
||||
'custom_css' => 'Потребителски CSS',
|
||||
'custom_css_placeholder' => 'Add your custom CSS',
|
||||
'custom_css_placeholder' => 'Добавете ваш персонализиран CSS',
|
||||
'custom_css_help' => 'Включете вашите CSS правила тук. Не използвайте <style></style> тагове.',
|
||||
'custom_forgot_pass_url' => 'Персонализиран адрес за възстановяване на паролата',
|
||||
'custom_forgot_pass_url_help' => 'Това URL ще замени вградения механизъм за възстановяване на паролата на входния екран, което е полезно за потребителите, използващи външни оторизации като LDAP. Това ефективно ще спре възможността за възстановяване на паролата за потребителите, управлявани през Sinpe-it.',
|
||||
@@ -50,28 +50,28 @@ return [
|
||||
'dashboard_message_help' => 'Този текст ще се появи на таблото на всички потребители с права за достъп до таблото.',
|
||||
'default_currency' => 'Валута по подразбиране',
|
||||
'default_eula_text' => 'EULA по подразбиране',
|
||||
'default_eula_text_placeholder' => 'Add your default EULA text',
|
||||
'default_eula_text_placeholder' => 'Добавете ваш EULA',
|
||||
'default_language' => 'Език по подразбиране',
|
||||
'default_eula_help_text' => 'Можете да асоциирате специфична EULA към всяка избрана категория.',
|
||||
'acceptance_note' => 'Добавете бележка за вашето решение (По желание)',
|
||||
'display_asset_name' => 'Визуализиране на актив',
|
||||
'display_checkout_date' => 'Визуализиране на дата на изписване',
|
||||
'display_eol' => 'Визуализиране на EOL в таблиците',
|
||||
'display_qr' => 'Display 2D barcode',
|
||||
'display_qr' => 'Показвай 2D баркод',
|
||||
'display_alt_barcode' => 'Показване на 1D баркод',
|
||||
'barcode_type' => '2D тип на баркод',
|
||||
'alt_barcode_type' => '1D тип на баркод',
|
||||
'enabled' => 'Активно',
|
||||
'eula_settings' => 'Настройки на EULA',
|
||||
'eula_markdown' => 'Съдържанието на EULA може да бъде форматирано с <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>.',
|
||||
'empty_row_count' => 'Field Start Offset (Empty Rows)',
|
||||
'empty_row_count_help' => 'Fields will begin populating after this many empty rows are skipped at the top of the label.',
|
||||
'empty_row_count' => 'Отместване на началото на полето (Празни редове)',
|
||||
'empty_row_count_help' => 'Полетата ще започнат да се попълват след като празните редове се презкочат в началото на етикета.',
|
||||
'favicon' => 'Favicon',
|
||||
'favicon_format' => 'Приетите файлови формати са ico, png, и gif. Другите формати на снимки може да не работят в всъчки браузъри.',
|
||||
'favicon_size' => 'Favicons трябва да бъдат квадратна снимка с размери, 16х16 пиксела.',
|
||||
'footer_text' => 'Допълнителен текст във футъра',
|
||||
'footer_text_help' => 'Този текст ще се визуализира в дясната част на футъра. Връзки могат да бъдат добавяни с използването на <a href="https://help.github.com/articles/github-flavored-markdown/">Github тип markdown</a>. Нови редове, хедър тагове, изображения и т.н. могат да доведат до непредвидими резултати.',
|
||||
'footer_text_placeholder' => 'Optional footer text',
|
||||
'footer_text_placeholder' => 'Опционален текст на долния колонтитул',
|
||||
'general_settings' => 'Общи настройки',
|
||||
'general_settings_help' => 'Общи условия и други',
|
||||
'generate_backup' => 'Създаване на архив',
|
||||
@@ -97,7 +97,7 @@ return [
|
||||
'ldap_login_sync_help' => 'Това единствено проверява дали LDAP може да се синхронизира успешно. Ако вашата LDAP заявка за оторизация не е коректна е възможно потребителите да не могат да влязат. НЕОБХОДИМО Е ДА ЗАПИШЕТЕ LDAP НАСТРОЙКИТЕ ПРЕДИ ТОВА.',
|
||||
'ldap_manager' => 'LDAP мениджър',
|
||||
'ldap_server' => 'LDAP сървър',
|
||||
'ldap_server_help' => 'This should start with ldap:// (for unencrypted) or ldaps:// (for TLS or SSL)',
|
||||
'ldap_server_help' => 'Това трябва да започва с Idap:// (for unencrypted) или Idaps:// (for TLS or SSL)',
|
||||
'ldap_server_cert' => 'Валидация на LDAP SSL сертификата',
|
||||
'ldap_server_cert_ignore' => 'Допускане на невалиден SSL сертификат',
|
||||
'ldap_server_cert_help' => 'Изберете тази опция ако използвате самоподписан SSL сертификат.',
|
||||
@@ -111,8 +111,8 @@ return [
|
||||
'ldap_pword' => 'LDAP парола на потребител за връзка',
|
||||
'ldap_basedn' => 'Базов DN',
|
||||
'ldap_filter' => 'LDAP филтър',
|
||||
'ldap_pw_sync' => 'Cache LDAP Passwords',
|
||||
'ldap_pw_sync_help' => 'Uncheck this box if you do not wish to keep LDAP passwords cached as local hashed passwords. Disabling this means that your users may not be able to login if your LDAP server is unreachable for some reason.',
|
||||
'ldap_pw_sync' => 'Кеш за LDAP Пароли',
|
||||
'ldap_pw_sync_help' => 'Махнете отметката, ако не желаете да се пази кеш за LDAP пароли, като локален хеш. Забранявайки този опция означава, че вашите потребители няма да могат да се впишат ако не работи LDAP сървъра поради някаква причина.',
|
||||
'ldap_username_field' => 'Поле за потребителско име',
|
||||
'ldap_lname_field' => 'Фамилия',
|
||||
'ldap_fname_field' => 'LDAP собствено име',
|
||||
@@ -120,8 +120,8 @@ return [
|
||||
'ldap_version' => 'LDAP версия',
|
||||
'ldap_active_flag' => 'LDAP флаг за активност',
|
||||
'ldap_activated_flag_help' => 'Тази стойност определя дали синхронизирания потребител може да се логва в Snipe-IT. <strong>Не се премахва възможността да се изписват активи към потребителя</strong> и полето трябва да бъде <strong>attribute name</strong> от вашата AD/LDAP, а не <strong>неговата стройност</strong>. <br><br>Ако това поле не съществува във вашата AD/LDAP или стойността е <code>0</code> или <code>false</code> <strong>достъпа на потребителя ще бъде забранен</strong>. Ако стойността в AD/LDAP полето е <code>1</code> или <code>true</code> означава че потребителя може да се логва. Когато това поле е празно във вашата AD се приема <code>userAccountControl</code> атрибута, който обикновенно позволява не блокираните потребители да се логват.',
|
||||
'ldap_invert_active_flag' => 'LDAP Invert Active Flag',
|
||||
'ldap_invert_active_flag_help' => 'If enabled: when the value returned by LDAP Active Flag is <code>0</code> or <code>false</code> the user account will be active.',
|
||||
'ldap_invert_active_flag' => 'LDAP Инвертиране на активния флаг',
|
||||
'ldap_invert_active_flag_help' => 'Ако е включено, когато стойноста на полето LDAP Active Flag е <code>0</code> или <code>false</code> потребителя ще е активен.',
|
||||
'ldap_emp_num' => 'LDAP номер на служител',
|
||||
'ldap_email' => 'LDAP електронна поща',
|
||||
'ldap_test' => 'Тест LDAP',
|
||||
@@ -136,7 +136,7 @@ return [
|
||||
'login_user_agent' => 'Потребителски агент',
|
||||
'login_help' => 'Списък на опитите за достъп',
|
||||
'login_note' => 'Вход забележка',
|
||||
'login_note_placeholder' => "If you do not have a login or have found a device belonging to this company, please call technical support at 888-555-1212. Thank you.",
|
||||
'login_note_placeholder' => "Ако нямате потребител или сте намерили загубено устройство принадлежащо на тази компания, моля свържете се на официалният им телефон.",
|
||||
'login_note_help' => 'По избор включете няколко изречения на екрана за вход, например, за да помогнете на хора, които са намерили изгубено или откраднато устройство. Това поле приема <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>',
|
||||
'login_remote_user_text' => 'Опции за вход с Remote User',
|
||||
'login_remote_user_enabled_text' => 'Включване на вход с HTTP хедър Remote User',
|
||||
@@ -152,15 +152,15 @@ return [
|
||||
'logo_print_assets_help' => 'Показвай логото при печат на листа с артикули ',
|
||||
'full_multiple_companies_support_help_text' => 'Ограничаване на потребителите (включително административните) до активите на собствената им компания.',
|
||||
'full_multiple_companies_support_text' => 'Поддръжка на множество компании',
|
||||
'scope_locations_fmcs_support_text' => 'Scope Locations with Full Multiple Companies Support',
|
||||
'scope_locations_fmcs_support_help_text' => 'Restrict locations to their selected company.',
|
||||
'scope_locations_fmcs_check_button' => 'Check Compatibility',
|
||||
'scope_locations_fmcs_support_disabled_text' => 'This option is disabled because you have conflicting locations set for :count or more items.',
|
||||
'scope_locations_fmcs_support_text' => 'Подружка на множество местоположения и много фирми',
|
||||
'scope_locations_fmcs_support_help_text' => 'Ограничи местоположенията до техните избрани фирми.',
|
||||
'scope_locations_fmcs_check_button' => 'Проверка за съвместимост',
|
||||
'scope_locations_fmcs_support_disabled_text' => 'Тази опция е забранена, защото имате конфликт на настройката на местоположение на :count или повече артикула.',
|
||||
'show_in_model_list' => 'Показване в падащите менюта на моделите',
|
||||
'optional' => 'незадължително',
|
||||
'per_page' => 'Резултати на страница',
|
||||
'php' => 'PHP версия',
|
||||
'php_info' => 'PHP info',
|
||||
'php_info' => 'PHP инфо',
|
||||
'php_overview' => 'PHP',
|
||||
'php_overview_help' => 'PHP Системна информация',
|
||||
'php_gd_info' => 'Необходимо е да инсталирате php-gd, за да визуализирате QR кодове. Моля прегледайте инструкцията за инсталация.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'Грешка 301/302 :endpoint върна пренасочване. От съображения за сигурност, ние не отваряме пренасочванията. Моля ползвайте действителната крайна точка.',
|
||||
'error_misc' => 'Възникна грешка. :( ',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'Относно статус етикетите',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'Архивирани',
|
||||
'create' => 'Създаване на статус етикет',
|
||||
'color' => 'Цвят на диаграма',
|
||||
'default_label' => 'Етикет по подразбиране',
|
||||
'default_label_help' => 'Позиционира най-често използваните етикети в началото на падащото меню за избор при създаване и редактиране на активи.',
|
||||
'deployable' => 'Може да бъде предоставен',
|
||||
'info' => 'Статусите се използват за описване на различните състояния на Вашите активи. Например, това са Предаден за ремонт, Изгубен/откраднат и др. Можете да създавате нови статуси за активите, които могат да бъдат предоставяни, очакващи набавяне и архивирани.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Статус',
|
||||
'pending' => 'Изчакване',
|
||||
'status_type' => 'Тип на статуса',
|
||||
|
||||
@@ -23,16 +23,16 @@ return [
|
||||
'asset_models' => 'Модели на активи',
|
||||
'asset_model' => 'Модел',
|
||||
'asset' => 'Актив',
|
||||
'asset_previous' => 'Asset (Previously Assigned)',
|
||||
'asset_previous' => 'Актив (Предходно зачислен)',
|
||||
'asset_report' => 'Справка за активите',
|
||||
'asset_tag' => 'Инвентарен номер',
|
||||
'asset_tags' => 'Етикет на актив',
|
||||
'assets_available' => 'Налични активи',
|
||||
'accept_assets' => 'Приеми Актив :name',
|
||||
'accept_assets_menu' => 'Приеми активите',
|
||||
'accept_item' => 'Accept Item',
|
||||
'accept_item' => 'Приеми артикул',
|
||||
'audit' => 'проверка',
|
||||
'audits' => 'Audits',
|
||||
'audits' => 'Одити',
|
||||
'audit_report' => 'Отчет за одита',
|
||||
'assets' => 'Активи',
|
||||
'assets_audited' => 'одитирани активи',
|
||||
@@ -64,12 +64,12 @@ return [
|
||||
'changepassword' => 'Смяна на паролата',
|
||||
'checkin' => 'Вписване',
|
||||
'checkin_from' => 'Форма за вписване',
|
||||
'checkin_note' => 'Checkin Note',
|
||||
'checkout_note' => 'Checkout Note',
|
||||
'checkin_note' => 'Забележка Вписване',
|
||||
'checkout_note' => 'Забележка Изписване',
|
||||
'checkout' => 'Изписване',
|
||||
'checkouts_count' => 'Изписвания',
|
||||
'checkins_count' => 'Вписвания',
|
||||
'checkin_and_delete' => 'Checkin and Delete',
|
||||
'checkin_and_delete' => 'Впиши и Изтрий',
|
||||
'user_requests_count' => 'Заявки',
|
||||
'city' => 'Град',
|
||||
'click_here' => 'Натиснете тук',
|
||||
@@ -83,7 +83,7 @@ return [
|
||||
'consumables' => 'Консумативи',
|
||||
'country' => 'Държава',
|
||||
'could_not_restore' => 'Грешка при възстановяване :item_type: :error',
|
||||
'not_deleted' => 'The :item_type was not deleted and therefore cannot be restored',
|
||||
'not_deleted' => ':item_type не е изтрит и не може да бъде възстановен',
|
||||
'create' => 'Създаване на нов',
|
||||
'created' => 'Създадени артикули',
|
||||
'created_asset' => 'създадени активи',
|
||||
@@ -98,7 +98,7 @@ return [
|
||||
'customize_report' => 'Персонализиран отчет',
|
||||
'custom_report' => 'Потребителски справки за активи',
|
||||
'dashboard' => 'Табло',
|
||||
'data_source' => 'Data Source',
|
||||
'data_source' => 'Източник на Данни',
|
||||
'days' => 'дни',
|
||||
'days_to_next_audit' => 'Дни до следващия одит',
|
||||
'date' => 'Дата',
|
||||
@@ -106,7 +106,7 @@ return [
|
||||
'debug_warning_text' => 'Това приложение се изпълнява в режим на производство с разрешено отстраняване на грешки. Това може да изложи чувствителни данни, ако приложението ви е достъпно за външния свят. Забранете режим отстраняване на грешки чрез задаване на стойността <code>APP_DEBUF</code> <code>.env</code> във файла <code>false</code>.',
|
||||
'delete' => 'Изтриване',
|
||||
'delete_confirm' => 'Сигурни ли сте, че желаете изтриването на :item?',
|
||||
'delete_confirm_no_undo' => 'Are you sure, you wish to delete :item? This cannot be undone.',
|
||||
'delete_confirm_no_undo' => 'Сигурни ли сте, че искате да изтриете :item? Това не може да бъде върнато на обратно.',
|
||||
'deleted' => 'Изтрито',
|
||||
'delete_seats' => 'Изтрити работни места за лиценз',
|
||||
'deletion_failed' => 'Неуспешно изтриване',
|
||||
@@ -150,7 +150,7 @@ return [
|
||||
'image_upload' => 'Качване на изображение',
|
||||
'filetypes_accepted_help' => 'Позволенoто разширенe на файлa е :types. Максимално позволения размер е :size.|Позволените разширения на файловете са :types. Максимално позволен размер :size.',
|
||||
'filetypes_size_help' => 'Максимално позволен размер на файла е :size.',
|
||||
'image_filetypes_help' => 'Accepted Filetypes are jpg, webp, png, gif, svg, and avif. The maximum upload size allowed is :size.',
|
||||
'image_filetypes_help' => 'Допустимите файлови типове са jpg, webp, png, gif, svg и avif. Максималният разрешен размер за качване е :size.',
|
||||
'unaccepted_image_type' => 'Снимката не може да се прочете. Типовете файлови разширения са jpg, webp, png, gif и svg. Разширението на този файл е :mimetype.',
|
||||
'import' => 'Зареждане',
|
||||
'import_this_file' => 'Асоциирайте полетата и обработете този файл',
|
||||
@@ -212,14 +212,14 @@ return [
|
||||
'no_results' => 'Няма резултат.',
|
||||
'no' => 'Не',
|
||||
'notes' => 'Бележки',
|
||||
'note_added' => 'Note Added',
|
||||
'options' => 'Options',
|
||||
'preview' => 'Preview',
|
||||
'add_note' => 'Add Note',
|
||||
'note_edited' => 'Note Edited',
|
||||
'edit_note' => 'Edit Note',
|
||||
'note_deleted' => 'Note Deleted',
|
||||
'delete_note' => 'Delete Note',
|
||||
'note_added' => 'Бележката е добавена',
|
||||
'options' => 'Настройки',
|
||||
'preview' => 'Преглед',
|
||||
'add_note' => 'Добави бележка',
|
||||
'note_edited' => 'Бележката е редактирана',
|
||||
'edit_note' => 'Редактиране на бележка',
|
||||
'note_deleted' => 'Бележката е изтрита',
|
||||
'delete_note' => 'Изтрий бележката',
|
||||
'order_number' => 'Номер на поръчка',
|
||||
'only_deleted' => 'Само изтрити активи',
|
||||
'page_menu' => 'Показване на _MENU_ записа',
|
||||
@@ -234,7 +234,7 @@ return [
|
||||
'purchase_date' => 'Дата на закупуване',
|
||||
'qty' => 'Количество',
|
||||
'quantity' => 'Kоличество',
|
||||
'quantity_minimum' => 'You have one item below or almost below minimum quantity levels|You have :count items below or almost below minimum quantity levels',
|
||||
'quantity_minimum' => 'Имате един артикул под или почти под минимум налично количество|Имате :count артикула под или почти под монимум налично количесто',
|
||||
'quickscan_checkin' => 'Бързо сканиране и Вписване',
|
||||
'quickscan_checkin_status' => 'Статус вписване',
|
||||
'ready_to_deploy' => 'Готово за предоставяне',
|
||||
@@ -284,10 +284,10 @@ return [
|
||||
'site_name' => 'Име на системата',
|
||||
'state' => 'Област',
|
||||
'status_labels' => 'Статус етикети',
|
||||
'status_label' => 'Status Label',
|
||||
'status_label' => 'Статус етикет',
|
||||
'status' => 'Статус',
|
||||
'accept_eula' => 'Споразумение за приемане',
|
||||
'show_or_hide_eulas' => 'Show/Hide EULAs',
|
||||
'show_or_hide_eulas' => 'Покажи/Скрий EULAs',
|
||||
'supplier' => 'Доставчик',
|
||||
'suppliers' => 'Доставчици',
|
||||
'sure_to_delete' => 'Сигурни ли сте, че искате да изтриете',
|
||||
@@ -305,7 +305,7 @@ return [
|
||||
'unknown_admin' => 'Непознат администратор',
|
||||
'username' => 'Потребител',
|
||||
'update' => 'Обновяване',
|
||||
'updating_item' => 'Updating :item',
|
||||
'updating_item' => 'Обновяване :item',
|
||||
'upload_filetypes_help' => 'Позволените файлови разширения са png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf и rar. Максималният размер на файла е :size.',
|
||||
'uploaded' => 'Качен',
|
||||
'user' => 'Потребител',
|
||||
@@ -330,10 +330,10 @@ return [
|
||||
'token_expired' => 'Вашата сесия за формуляр изтече. Моля опитайте отново.',
|
||||
'login_enabled' => 'Разрешен вход',
|
||||
'audit_due' => 'За Одит',
|
||||
'audit_due_days' => '{}Assets Due or Overdue for Audit|[1]Assets Due or Overdue for Audit Within a Day|[2,*]Assets Due or Overdue for Audit Within :days Days',
|
||||
'audit_due_days' => '{}Активи чакащи или просрочили Одит|[1]Активи чакащи или просрочили одит, за следващия ден|[2,*]Активи чакащи или просрочили одит за следващите :days дни',
|
||||
'checkin_due' => 'Предстои проверка',
|
||||
'checkin_overdue' => 'Просрочен срок за регистрация',
|
||||
'checkin_due_days' => '{}Due for Checkin|[1]Assets Due for Checkin Within :days Day|[2,*]Assets Due for Checkin Within :days Days',
|
||||
'checkin_due_days' => '{}Чакащи за вписване|[1]Активи чакащи за вписване в следващя :days ден|[2,*]Активи чакащи за вписване за следващите :days дни',
|
||||
'audit_overdue' => 'Просрочен Одит',
|
||||
'accept' => 'Приеми :asset',
|
||||
'i_accept' => 'Съгласен съм',
|
||||
@@ -355,7 +355,7 @@ return [
|
||||
'setup_step_4' => 'Стъпка 4',
|
||||
'setup_config_check' => 'Проверка на конфигурацията',
|
||||
'setup_create_database' => 'Създай таблиците в датабазата',
|
||||
'setup_create_admin' => 'Create an admin user',
|
||||
'setup_create_admin' => 'Създай Админ потребител',
|
||||
'setup_done' => 'Готово!',
|
||||
'bulk_edit_about_to' => 'Вие ще редактирате следното: ',
|
||||
'checked_out' => 'Изписан',
|
||||
@@ -390,8 +390,8 @@ return [
|
||||
'new_license' => 'Нов Лиценз',
|
||||
'new_accessory' => 'Нов аксесоар',
|
||||
'new_consumable' => 'Нов Консуматив',
|
||||
'new_component' => 'New Component',
|
||||
'new_user' => 'New User',
|
||||
'new_component' => 'Нов компонент',
|
||||
'new_user' => 'Нов потребител',
|
||||
'collapse' => 'Свий',
|
||||
'assigned' => 'Възложен',
|
||||
'asset_count' => 'Брой Активи',
|
||||
@@ -427,20 +427,20 @@ return [
|
||||
'bulk_soft_delete' =>'Също маркирай за изтриване потребителите. Историята на тяхните активи ще остане докато не изчистите изтритите записи през административните настройки.',
|
||||
'bulk_checkin_delete_success' => 'Избраните потребители бяха изтрити и техните активи вписани обратно.',
|
||||
'bulk_checkin_success' => 'Активите за избраните потребители бяха вписани обратно.',
|
||||
'set_to_null' => 'Delete values for this selection|Delete values for all :selection_count selections ',
|
||||
'set_to_null' => 'Изтрий стойностите за маркираното|Изтрий стойностите за свички :selection_count маркирания ',
|
||||
'set_users_field_to_null' => 'Изтрий стойноста :field за този потребител|Изтрий стойността :field за всичките :user_count потребителя ',
|
||||
'na_no_purchase_date' => 'N/A - Няма дата на закупуване',
|
||||
'assets_by_status' => 'Статус на Активи',
|
||||
'assets_by_status_type' => 'Статус тип по Активи',
|
||||
'pie_chart_type' => 'Кръгова диаграма на таблото',
|
||||
'hello_name' => 'Здравейте, :name!',
|
||||
'unaccepted_profile_warning' => 'You have one item requiring acceptance. Click here to accept or decline it | You have :count items requiring acceptance. Click here to accept or decline them',
|
||||
'unaccepted_profile_warning' => 'Имате един артикул за приемане. Щракнете тук, за да го приемете или откажете | Имате :count артикула за приемане. Щракнете тук, за да ги приемете или откажете',
|
||||
'start_date' => 'Начална дата',
|
||||
'end_date' => 'Крайна дата',
|
||||
'alt_uploaded_image_thumbnail' => 'Качено умалено изображение',
|
||||
'placeholder_kit' => 'Изберете комплект',
|
||||
'file_not_found' => 'Файлът не е намерен',
|
||||
'log_record_not_found' => 'No record for that log entry was found.',
|
||||
'log_record_not_found' => 'Няма намерени записи.',
|
||||
'preview_not_available' => '(няма преглед)',
|
||||
'setup' => 'Настройка',
|
||||
'pre_flight' => 'Тест',
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Checked Out To полета',
|
||||
'percent_complete' => '% завърешен',
|
||||
'uploading' => 'Качване... ',
|
||||
'upload_error' => 'Грешка при качване на файл. Моля проверете да няма празни редове или повтарящи се колони.',
|
||||
'upload_error' => 'Грешка при качване на файл. Моля проверете да нямате празни редове или повтарящи се колони във вашият CSV файл и дали имате права за качване на сървъра.',
|
||||
'copy_to_clipboard' => 'Копиране в клипборда',
|
||||
'copied' => 'Копирано!',
|
||||
'status_compatibility' => 'Ако артикула е вече асоцииран, не може да се му се смени статуса на забранен за изписване и тази стойност ще бъде игнорирана.',
|
||||
@@ -567,62 +567,62 @@ return [
|
||||
'something_went_wrong' => 'При обработката нещо се обърка.',
|
||||
'close' => 'Затвори',
|
||||
'expires' => 'Изтича',
|
||||
'map_fields'=> 'Map :item_type Fields',
|
||||
'map_fields'=> 'Зачисли полетата към :item_type',
|
||||
'remaining_var' => 'остават :count',
|
||||
'label' => 'Label',
|
||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||
'accessories_assigned' => 'Assigned Accessories',
|
||||
'user_managed_passwords' => 'Password Management',
|
||||
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||
'from' => 'From',
|
||||
'label' => 'Етикет',
|
||||
'import_asset_tag_exists' => 'Актив с етикет :asset_tag вече съществува и обновяването не е необходимо. Не са извършени промени.',
|
||||
'countries_manually_entered_help' => 'Стойностите със звезда (*) са ръчно създадени и не са от ISO 3166 стойности',
|
||||
'accessories_assigned' => 'Зачислени Аксесоари',
|
||||
'user_managed_passwords' => 'Управление на пароли',
|
||||
'user_managed_passwords_disallow' => 'Забраняване на потребителите да управляват собствените си пароли',
|
||||
'user_managed_passwords_allow' => 'Позволяване на потребителите да управляват собствените си пароли',
|
||||
'from' => 'От',
|
||||
'by' => 'От',
|
||||
|
||||
// Add form placeholders here
|
||||
'placeholders' => [
|
||||
'notes' => 'Add a note',
|
||||
'notes' => 'Добавете бележка',
|
||||
],
|
||||
|
||||
'breadcrumb_button_actions' => [
|
||||
'edit_item' => 'Edit :name',
|
||||
'checkout_item' => 'Checkout :name',
|
||||
'checkin_item' => 'Checkin :name',
|
||||
'edit_item' => 'Редактирай :name',
|
||||
'checkout_item' => 'Изпиши :name',
|
||||
'checkin_item' => 'Впиши :name',
|
||||
],
|
||||
|
||||
'skins' => [
|
||||
'site_default' => 'Site Default',
|
||||
'default_blue' => 'Default Blue',
|
||||
'blue_dark' => 'Blue (Dark Mode)',
|
||||
'green' => 'Green Dark',
|
||||
'green_dark' => 'Green (Dark Mode)',
|
||||
'red' => 'Red Dark',
|
||||
'red_dark' => 'Red (Dark Mode)',
|
||||
'orange' => 'Orange Dark',
|
||||
'orange_dark' => 'Orange (Dark Mode)',
|
||||
'black' => 'Black',
|
||||
'black_dark' => 'Black (Dark Mode)',
|
||||
'purple' => 'Purple',
|
||||
'purple_dark' => 'Purple (Dark Mode)',
|
||||
'yellow' => 'Yellow',
|
||||
'yellow_dark' => 'Yellow (Dark Mode)',
|
||||
'high_contrast' => 'High Contrast',
|
||||
'site_default' => 'Настройки по подразбиране на сайта',
|
||||
'default_blue' => 'По подразбиране Синьо',
|
||||
'blue_dark' => 'Синьо (тъмен режим)',
|
||||
'green' => 'Тъмно Зелено',
|
||||
'green_dark' => 'Зелено (тъмен режим)',
|
||||
'red' => 'Тъмно Червено',
|
||||
'red_dark' => 'Червено (тъмен режим)',
|
||||
'orange' => 'Тъмно Оранжево',
|
||||
'orange_dark' => 'Оранжево (тъмен режим)',
|
||||
'black' => 'Черно',
|
||||
'black_dark' => 'Черно (тъмен режим)',
|
||||
'purple' => 'Лилаво',
|
||||
'purple_dark' => 'Лилаво (тъмен режим)',
|
||||
'yellow' => 'Жълто',
|
||||
'yellow_dark' => 'Жълто (тъмен режим)',
|
||||
'high_contrast' => 'Висок контраст',
|
||||
|
||||
],
|
||||
|
||||
'select_all_none' => 'Select/Unselect All',
|
||||
'generic_model_not_found' => 'That :model was not found or you do not have permission to access it',
|
||||
'deleted_models' => 'Deleted Asset Models',
|
||||
'deleted_users' => 'Deleted Users',
|
||||
'cost_each' => ':amount each',
|
||||
'remove_current_image' => 'Remove current :type image',
|
||||
'select_all_none' => 'Маркирай всички',
|
||||
'generic_model_not_found' => ':model не беше намерен или вие нямате права да го достъпите',
|
||||
'deleted_models' => 'Изтрити Модели',
|
||||
'deleted_users' => 'Изтрити Потребители',
|
||||
'cost_each' => ':amount от всеки',
|
||||
'remove_current_image' => 'Премахни текущата :type снимка',
|
||||
|
||||
'seeding' => [
|
||||
'manufacturers' => [
|
||||
'button' => 'Create Manufacturers',
|
||||
'prompt' => 'You do not have any manufacturers yet. Would you like to seed a list of common manufacturers? (THIS WILL OVERWRITE EXISTING MANUFACTURERS, including those that have been soft-deleted.)',
|
||||
'success' => 'Manufacturers seeded successfully',
|
||||
'error' => 'Could not seed manufacturers. A manufacturer record already exists and seeding would overwrite it.|Could not seed manufacturers. :count manufacturer records already exist and seeding would overwrite them.',
|
||||
'button' => 'Създаване на производители',
|
||||
'prompt' => 'Нямате създадени никакви производители все още. Изкатели да се създадат най-често срещаните пройзводители по подразбиране? (Това ще презапише всички съществуващи и вече създадени производители, включително тези който са били изтрити и са в коша.)',
|
||||
'success' => 'Създаването на производителите е успешно',
|
||||
'error' => 'Създаването на производителите върна грешка. Запис на производител вече съществува и това действие ще го презапише.|Създаването на производителите върна грешка. Има :count производителя вече създадени и това действие ще ги презапише.',
|
||||
],
|
||||
],
|
||||
|
||||
|
||||
+122
-122
@@ -13,148 +13,148 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'accepted' => 'The :attribute field must be accepted.',
|
||||
'accepted_if' => 'The :attribute field must be accepted when :other is :value.',
|
||||
'active_url' => 'The :attribute field must be a valid URL.',
|
||||
'after' => 'The :attribute field must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute field must only contain letters.',
|
||||
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.',
|
||||
'alpha_num' => 'The :attribute field must only contain letters and numbers.',
|
||||
'array' => 'The :attribute field must be an array.',
|
||||
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
|
||||
'before' => 'The :attribute field must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.',
|
||||
'accepted' => 'Полето :attribute трябва да бъде прието.',
|
||||
'accepted_if' => 'Полето :attribute трябва да бъде прието, когато :other е :value.',
|
||||
'active_url' => 'Полето :attribute трябва да съдържа валиден URL.',
|
||||
'after' => 'Полето :attribute трябва да бъде дата след :date.',
|
||||
'after_or_equal' => 'Полето :attribute трябва да бъде дата след или равна на :date.',
|
||||
'alpha' => 'Полето :attribute трябва да съдържа само букви.',
|
||||
'alpha_dash' => 'Полето :attribute трябва да съдържа само букви, цифри, тирета и подчертавания.',
|
||||
'alpha_num' => 'Полето :attribute трябва да съдържа само букви и цифри.',
|
||||
'array' => 'Полето :attribute трябва да е масив.',
|
||||
'ascii' => 'Полето :attribute трябва да съдържа еднобайтови буквено-цифрови знаци и символи.',
|
||||
'before' => 'Полето :attribute трябва да бъде дата преди :date.',
|
||||
'before_or_equal' => 'Полето :attribute трябва да бъде дата преди или равна на :date.',
|
||||
'between' => [
|
||||
'array' => 'The :attribute field must have between :min and :max items.',
|
||||
'file' => 'The :attribute field must be between :min and :max kilobytes.',
|
||||
'numeric' => 'The :attribute field must be between :min and :max.',
|
||||
'string' => 'The :attribute field must be between :min and :max characters.',
|
||||
'array' => 'Полето :attribute трябва да има между :min и :max .',
|
||||
'file' => 'Полето :attribute трябва да бъде между :min и :max килобайта.',
|
||||
'numeric' => 'Полето :attribute трябва да бъде между :min и :max .',
|
||||
'string' => 'Полето :attribute трябва да бъде между :min и :max символа.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'can' => 'The :attribute field contains an unauthorized value.',
|
||||
'confirmed' => 'The :attribute field confirmation does not match.',
|
||||
'contains' => 'The :attribute field is missing a required value.',
|
||||
'current_password' => 'The password is incorrect.',
|
||||
'date' => 'The :attribute field must be a valid date.',
|
||||
'date_equals' => 'The :attribute field must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute field must match the format :format.',
|
||||
'decimal' => 'The :attribute field must have :decimal decimal places.',
|
||||
'declined' => 'The :attribute field must be declined.',
|
||||
'declined_if' => 'The :attribute field must be declined when :other is :value.',
|
||||
'different' => 'The :attribute field and :other must be different.',
|
||||
'digits' => 'The :attribute field must be :digits digits.',
|
||||
'digits_between' => 'The :attribute field must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute field has invalid image dimensions.',
|
||||
'boolean' => 'Полето :attribute трябва да бъде Да или Не.',
|
||||
'can' => 'Полето :attribute съдържа неприемлива стойност.',
|
||||
'confirmed' => 'Полето :attribute не съвпада.',
|
||||
'contains' => 'Полето :attribute липсва необходимата стойност.',
|
||||
'current_password' => 'Паролата е грешна.',
|
||||
'date' => 'Полето :attribute трябва да съдържа валидна дата.',
|
||||
'date_equals' => 'Полето :attribute трябва да бъде дата равна на :date.',
|
||||
'date_format' => 'Полето :attribute трябва да има формат :format.',
|
||||
'decimal' => 'Полето :attribute трябва да има :decimal десетични знака.',
|
||||
'declined' => 'Полето :attribute трябва да бъде отказано.',
|
||||
'declined_if' => 'Полето :attribute трябва да бъде отказано, когато :other е :value.',
|
||||
'different' => 'Полето :attribute и :other трябва да са различни.',
|
||||
'digits' => 'Полето :attribute трябва да съдържа :digits цифри.',
|
||||
'digits_between' => 'Полето :attribute трябва да бъде между :min и :max цифри.',
|
||||
'dimensions' => 'Полето :attribute има невалидни размери на снимката.',
|
||||
'distinct' => 'Полето: atribut има дублираща се стойност.',
|
||||
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.',
|
||||
'email' => 'The :attribute field must be a valid email address.',
|
||||
'ends_with' => 'The :attribute field must end with one of the following: :values.',
|
||||
'doesnt_end_with' => 'Полето :attribute трябва да не завършва на: :values.',
|
||||
'doesnt_start_with' => 'Полето :attribute трябва да не започва с: :values.',
|
||||
'email' => 'Полето :attribute трябва да съдържа валиден е-майл адрес.',
|
||||
'ends_with' => 'Полето :attribute трябва да завършва на: :values.',
|
||||
'enum' => 'Избраният :attribute е невалиден.',
|
||||
'exists' => 'Избраният :attribute е невалиден.',
|
||||
'extensions' => 'The :attribute field must have one of the following extensions: :values.',
|
||||
'file' => 'The :attribute field must be a file.',
|
||||
'extensions' => 'Полето :attribute трябва да има едно от следните разширения: :values.',
|
||||
'file' => 'Полето :attribute трябва да бъде файл.',
|
||||
'filled' => 'Полето на атрибута: трябва да има стойност.',
|
||||
'gt' => [
|
||||
'array' => 'The :attribute field must have more than :value items.',
|
||||
'file' => 'The :attribute field must be greater than :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be greater than :value.',
|
||||
'string' => 'The :attribute field must be greater than :value characters.',
|
||||
'array' => 'Полето :attribute трябва да съдържа повече от :value стойности.',
|
||||
'file' => 'Полето :attribute трябва да бъде по-голямо от :value килобайта.',
|
||||
'numeric' => 'Полето :attribute трябва да бъде по-голямо от :value.',
|
||||
'string' => 'Полето :attribute трябва да бъде по-голямо от :value символа.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'The :attribute field must have :value items or more.',
|
||||
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be greater than or equal to :value.',
|
||||
'string' => 'The :attribute field must be greater than or equal to :value characters.',
|
||||
'array' => 'Полето :attribute трябва да има :value или повече неща.',
|
||||
'file' => 'Полето :attribute трябва да бъде повече или равно на :value килобайта.',
|
||||
'numeric' => 'Полето :attribute трябва да бъде повече или равно на :value.',
|
||||
'string' => 'Полето :attribute трябва да бъде повече или равно на :value символа.',
|
||||
],
|
||||
'hex_color' => 'The :attribute field must be a valid hexadecimal color.',
|
||||
'image' => 'The :attribute field must be an image.',
|
||||
'hex_color' => 'Полето :attribute трябва да съдържа валиден шестнадесетичен цвят.',
|
||||
'image' => 'Полето :attribute трябва да бъде снимка.',
|
||||
'import_field_empty' => 'Стойността за :fieldname не може да бъде празна.',
|
||||
'in' => 'Избраният :attribute е невалиден.',
|
||||
'in_array' => 'The :attribute field must exist in :other.',
|
||||
'integer' => 'The :attribute field must be an integer.',
|
||||
'ip' => 'The :attribute field must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute field must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute field must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute field must be a valid JSON string.',
|
||||
'list' => 'The :attribute field must be a list.',
|
||||
'lowercase' => 'The :attribute field must be lowercase.',
|
||||
'in_array' => 'Полето :attribute трябва да се съдържа в :other.',
|
||||
'integer' => 'Полето :attribute трябва да бъде цяло число.',
|
||||
'ip' => 'Полето :attribute трябва да бъде валиден IP адрес.',
|
||||
'ipv4' => 'Полето :attribute трябва да бъде валиден IPv4 адрес.',
|
||||
'ipv6' => 'Полето :attribute трябва да бъде валиден IPv6 адрес.',
|
||||
'json' => 'Полето :attribute трябва да бъде валиден JSON низ.',
|
||||
'list' => 'Полето :attribute трябва да бъде списък.',
|
||||
'lowercase' => 'Полето :attribute трябва да бъде с малки букви.',
|
||||
'lt' => [
|
||||
'array' => 'The :attribute field must have less than :value items.',
|
||||
'file' => 'The :attribute field must be less than :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be less than :value.',
|
||||
'string' => 'The :attribute field must be less than :value characters.',
|
||||
'array' => 'Полето :attribute трябва да бъде по-малко от :value .',
|
||||
'file' => 'Полето :attribute трябва да бъде по-малко от :value килобайта.',
|
||||
'numeric' => 'Полето :attribute трябва да бъде по-малко от :value.',
|
||||
'string' => 'Полето :attribute трябва да бъде помалко от :value символа.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'The :attribute field must not have more than :value items.',
|
||||
'file' => 'The :attribute field must be less than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be less than or equal to :value.',
|
||||
'string' => 'The :attribute field must be less than or equal to :value characters.',
|
||||
'array' => 'Полето :attribute не трябва да съдържа повече от :value стойности.',
|
||||
'file' => 'Полето :attribute трябва да бъде по-малко или равно на :value килобайта.',
|
||||
'numeric' => 'Полето :attribute трябва да бъде по-малко или равно на :value.',
|
||||
'string' => 'Полето :attribute трябва да бъде по-малко или равно на :value символа.',
|
||||
],
|
||||
'mac_address' => 'The :attribute field must be a valid MAC address.',
|
||||
'mac_address' => 'Полето :attribute трябва да бъде валиден MAC адрес.',
|
||||
'max' => [
|
||||
'array' => 'The :attribute field must not have more than :max items.',
|
||||
'file' => 'The :attribute field must not be greater than :max kilobytes.',
|
||||
'numeric' => 'The :attribute field must not be greater than :max.',
|
||||
'string' => 'The :attribute field must not be greater than :max characters.',
|
||||
'array' => 'Полето :attribute не трябва да е повече от :max .',
|
||||
'file' => 'Полето :attribute не трябва да е повече от :max килобайта.',
|
||||
'numeric' => 'Полето :attribute не трябва да е повече от :max.',
|
||||
'string' => 'Полето :attribute не трябва да е повече от :max символа.',
|
||||
],
|
||||
'max_digits' => 'The :attribute field must not have more than :max digits.',
|
||||
'mimes' => 'The :attribute field must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute field must be a file of type: :values.',
|
||||
'max_digits' => 'Полето :attribute не трябва да съдържа повече от :max цифри.',
|
||||
'mimes' => 'Полето :attribute трябва да бъде файл от тип: :values.',
|
||||
'mimetypes' => 'Полето :attribute трябва да бъде файл от тип: :values.',
|
||||
'min' => [
|
||||
'array' => 'The :attribute field must have at least :min items.',
|
||||
'file' => 'The :attribute field must be at least :min kilobytes.',
|
||||
'numeric' => 'The :attribute field must be at least :min.',
|
||||
'string' => 'The :attribute field must be at least :min characters.',
|
||||
'array' => 'Полето :attribute трябва да съдържа най-малко :min стойности.',
|
||||
'file' => 'Полето :attribute трябва да бъде най-малко :min килобайта.',
|
||||
'numeric' => 'Полето :attribute трябва да бъде най-малко :min.',
|
||||
'string' => 'Полето :attribute трябва да бъде минимум :min символа.',
|
||||
],
|
||||
'min_digits' => 'The :attribute field must have at least :min digits.',
|
||||
'missing' => 'The :attribute field must be missing.',
|
||||
'missing_if' => 'The :attribute field must be missing when :other is :value.',
|
||||
'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
|
||||
'missing_with' => 'The :attribute field must be missing when :values is present.',
|
||||
'missing_with_all' => 'The :attribute field must be missing when :values are present.',
|
||||
'multiple_of' => 'The :attribute field must be a multiple of :value.',
|
||||
'min_digits' => 'Полето :attribute трябва да бъде минимум :min цифри.',
|
||||
'missing' => 'Полето :attribute трябва да липсва.',
|
||||
'missing_if' => 'Полето :attribute трябва да липсва, когато :other е :value.',
|
||||
'missing_unless' => 'Полето :attribute трябва да липсва, освен когато :other e :value.',
|
||||
'missing_with' => 'Полето :attribute трябва да липсва, когато :values е налице.',
|
||||
'missing_with_all' => 'Полето :attribute трябва да липсва, когато :values е налице.',
|
||||
'multiple_of' => 'Полето :attribute трябва да е кратно на :value.',
|
||||
'not_in' => 'Избраният :attribute е невалиден.',
|
||||
'not_regex' => 'The :attribute field format is invalid.',
|
||||
'numeric' => 'The :attribute field must be a number.',
|
||||
'not_regex' => 'Полето :attribute е с невалиден формат.',
|
||||
'numeric' => 'Полето :attribute трябва да бъде число.',
|
||||
'password' => [
|
||||
'letters' => 'The :attribute field must contain at least one letter.',
|
||||
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute field must contain at least one number.',
|
||||
'symbols' => 'The :attribute field must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
'letters' => 'Полето :attribute трябва да съдръжа поне една буква.',
|
||||
'mixed' => 'Полето :attribute трябва да съдържа поне една главна и една малка буква.',
|
||||
'numbers' => 'Полето :attribute трябва да съдържа поне една цифра.',
|
||||
'symbols' => 'Полето :attribute трябва да съдържа поне един символ.',
|
||||
'uncompromised' => 'Избраната :attribute e намерена в хакнати пароли. Моля изберете друга :attribute.',
|
||||
],
|
||||
'percent' => 'The depreciation minimum must be between 0 and 100 when depreciation type is percentage.',
|
||||
'percent' => 'Минималната стойност на амортизацията трябва да бъде между 0 и 100, когато типът амортизация е процент.',
|
||||
|
||||
'present' => 'Полето на атрибута трябва да е налице.',
|
||||
'present_if' => 'The :attribute field must be present when :other is :value.',
|
||||
'present_unless' => 'The :attribute field must be present unless :other is :value.',
|
||||
'present_with' => 'The :attribute field must be present when :values is present.',
|
||||
'present_with_all' => 'The :attribute field must be present when :values are present.',
|
||||
'prohibited' => 'The :attribute field is prohibited.',
|
||||
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
||||
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'regex' => 'The :attribute field format is invalid.',
|
||||
'present_if' => 'Полето :attribute трябва да е попълнено, когато :other е :value.',
|
||||
'present_unless' => 'Полето :attribute трябва да е попълнено, освен когато :other е :value.',
|
||||
'present_with' => 'Полето :attribute трябва да е попълнено, когато :values е налице.',
|
||||
'present_with_all' => 'Полето :attribute трябва да е попълнено, когато :values са на лице.',
|
||||
'prohibited' => 'Полето :attribute е забранено.',
|
||||
'prohibited_if' => 'Полето :attribute е забранено, когато :other е :value.',
|
||||
'prohibited_unless' => 'Полето :attribute е забранено, освен когато :other е в :values.',
|
||||
'prohibits' => 'Полето :attribute забранява :other да бъде налично.',
|
||||
'regex' => 'Полето :attribute е с невалиден формат.',
|
||||
'required' => 'Полето :attribute е задължително.',
|
||||
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
||||
'required_array_keys' => 'Полето :attribute трябва да съдържа записи за: :values.',
|
||||
'required_if' => 'Полето :attribute е задължително, когато :other е :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'required_if_declined' => 'The :attribute field is required when :other is declined.',
|
||||
'required_if_accepted' => 'Полето :attribute е задължително, когато :other e приет.',
|
||||
'required_if_declined' => 'Полето :attribute е задължително, когато :other e отхвърлен.',
|
||||
'required_unless' => 'Полето: атрибут се изисква, освен ако: другият не е в: стойности.',
|
||||
'required_with' => ':attribute е задължителен, когато са избрани :values.',
|
||||
'required_with_all' => 'The :attribute field is required when :values are present.',
|
||||
'required_with_all' => 'Полето :attribute е задъклжително, когато :values имат стойност.',
|
||||
'required_without' => ':attribute е задължителен, когато не са избрани :values.',
|
||||
'required_without_all' => 'Полето: атрибут се изисква, когато няма стойности: стойности.',
|
||||
'same' => 'The :attribute field must match :other.',
|
||||
'same' => 'Полето :attribute трябва да съвпада с :other.',
|
||||
'size' => [
|
||||
'array' => 'The :attribute field must contain :size items.',
|
||||
'file' => 'The :attribute field must be :size kilobytes.',
|
||||
'numeric' => 'The :attribute field must be :size.',
|
||||
'string' => 'The :attribute field must be :size characters.',
|
||||
'array' => 'Полето :attribute трябва да съдържа :size елементи.',
|
||||
'file' => 'Полето :attribute трябва да бъде с големина :size килобайта.',
|
||||
'numeric' => 'Полето :attribute трябва да бъде :size.',
|
||||
'string' => 'Полето :attribute трябва да бъде с дължина :size символа.',
|
||||
],
|
||||
'starts_with' => 'The :attribute field must start with one of the following: :values.',
|
||||
'starts_with' => 'Полето :attribute трябва да започва с: :values.',
|
||||
'string' => 'Атрибутът: трябва да е низ.',
|
||||
'two_column_unique_undeleted' => ':attribute трябва да бъде уникален за :table1 и :table2. ',
|
||||
'unique_undeleted' => ':attribute трябва да бъде уникален.',
|
||||
@@ -165,14 +165,14 @@ return [
|
||||
'numbers' => 'Паролата трябва да съдържа поне една цифра.',
|
||||
'case_diff' => 'Паролата трябва да съдържа главни и малки букви.',
|
||||
'symbols' => 'Паролата трябва да съдържа символи.',
|
||||
'timezone' => 'The :attribute field must be a valid timezone.',
|
||||
'timezone' => 'Полето :attribute трябва да бъде валидна часова зона.',
|
||||
'unique' => ':attribute вече е вписан.',
|
||||
'uploaded' => 'Атрибутът: не успя да качи.',
|
||||
'uppercase' => 'The :attribute field must be uppercase.',
|
||||
'url' => 'The :attribute field must be a valid URL.',
|
||||
'ulid' => 'The :attribute field must be a valid ULID.',
|
||||
'uuid' => 'The :attribute field must be a valid UUID.',
|
||||
'fmcs_location' => 'Full multiple company support and location scoping is enabled in the Admin Settings, and the selected location and selected company are not compatible.',
|
||||
'uppercase' => 'Полето :attribute трябва да бъде с главни букви.',
|
||||
'url' => 'Полето :attribute трябва да съдържа валиден URL.',
|
||||
'ulid' => 'Полето :attribute трябва да бъде валиден ULID.',
|
||||
'uuid' => 'Полето :attribute трябва да съдържа валиден UUID.',
|
||||
'fmcs_location' => 'Пълна поддръжка за множество компаний и местоположения е включена в админ настройките, но избраната локация и компания не са съвместими.',
|
||||
|
||||
|
||||
/*
|
||||
@@ -196,8 +196,8 @@ return [
|
||||
'hashed_pass' => 'Текущата ви парола е неправилна',
|
||||
'dumbpwd' => 'Тази парола е твърде често срещана.',
|
||||
'statuslabel_type' => 'Трябва да изберете валиден тип етикет на състоянието',
|
||||
'custom_field_not_found' => 'This field does not seem to exist, please double check your custom field names.',
|
||||
'custom_field_not_found_on_model' => 'This field seems to exist, but is not available on this Asset Model\'s fieldset.',
|
||||
'custom_field_not_found' => 'Това поле не съществува, моля проверете името на полето по избор.',
|
||||
'custom_field_not_found_on_model' => 'Това поле вече съществува, но не е налично за избрания дълготраен актив.',
|
||||
|
||||
// date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :(
|
||||
// We use this because the default error message for date_format reflects php Y-m-d, which non-PHP
|
||||
@@ -212,10 +212,10 @@ return [
|
||||
'invalid_value_in_field' => 'В това поле е включена невалидна стойност',
|
||||
|
||||
'ldap_username_field' => [
|
||||
'not_in' => '<code>sAMAccountName</code> (mixed case) will likely not work. You should use <code>samaccountname</code> (lowercase) instead.'
|
||||
'not_in' => '<code>sAMAccountName</code> (mixed case) няма да работи. Трябва да използвате <code>samaccountname</code> (lowercase) вместо това.'
|
||||
],
|
||||
'ldap_auth_filter_query' => ['not_in' => '<code>uid=samaccountname</code> is probably not a valid auth filter. You probably want <code>uid=</code> '],
|
||||
'ldap_filter' => ['regex' => 'This value should probably not be wrapped in parentheses.'],
|
||||
'ldap_auth_filter_query' => ['not_in' => '<code>uid=samaccountname</code> не е валиден филтър за автентикация. Ползвайте <code>uid=</code> '],
|
||||
'ldap_filter' => ['regex' => 'Стойността не трябва да е в кавички.'],
|
||||
|
||||
],
|
||||
/*
|
||||
@@ -240,8 +240,8 @@ return [
|
||||
|
||||
'generic' => [
|
||||
'invalid_value_in_field' => 'В това поле е включена невалидна стойност',
|
||||
'required' => 'This field is required',
|
||||
'email' => 'Please enter a valid email address',
|
||||
'required' => 'Това поле е задължително',
|
||||
'email' => 'Моля, въведете валиден имейл адрес',
|
||||
],
|
||||
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Manage',
|
||||
'field' => 'Field',
|
||||
'about_fieldsets_title' => 'About Fieldsets',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
|
||||
'custom_format' => 'Custom Regex format...',
|
||||
'encrypt_field' => 'Encrypt the value of this field in the database',
|
||||
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||
'error_misc' => 'Something went wrong. :( ',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'About Status Labels',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'Arxivat',
|
||||
'create' => 'Create Status Label',
|
||||
'color' => 'Chart Color',
|
||||
'default_label' => 'Default Label',
|
||||
'default_label_help' => 'This is used to ensure your most commonly used status labels appear at the top of the select box when creating/editing assets.',
|
||||
'deployable' => 'Deployable',
|
||||
'info' => 'Status labels are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for deployable, pending and archived assets.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Status Name',
|
||||
'pending' => 'Pending',
|
||||
'status_type' => 'Status Type',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Checked Out To Fields',
|
||||
'percent_complete' => '% completar',
|
||||
'uploading' => 'Uploading... ',
|
||||
'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'Copy to Clipboard',
|
||||
'copied' => 'Copied!',
|
||||
'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Manage',
|
||||
'field' => 'Field',
|
||||
'about_fieldsets_title' => 'About Fieldsets',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
|
||||
'custom_format' => 'Custom Regex format...',
|
||||
'encrypt_field' => 'Encrypt the value of this field in the database',
|
||||
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||
'error_misc' => 'Something went wrong. :( ',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'About Status Labels',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'Archived',
|
||||
'create' => 'Create Status Label',
|
||||
'color' => 'Chart Color',
|
||||
'default_label' => 'Default Label',
|
||||
'default_label_help' => 'This is used to ensure your most commonly used status labels appear at the top of the select box when creating/editing assets.',
|
||||
'deployable' => 'Deployable',
|
||||
'info' => 'Status labels are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for deployable, pending and archived assets.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Status Name',
|
||||
'pending' => 'Pending',
|
||||
'status_type' => 'Status Type',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Checked Out To Fields',
|
||||
'percent_complete' => '% complete',
|
||||
'uploading' => 'Uploading... ',
|
||||
'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'Copy to Clipboard',
|
||||
'copied' => 'Copied!',
|
||||
'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.',
|
||||
|
||||
@@ -28,7 +28,8 @@ return array(
|
||||
'unavailable' => 'Příslušenství nelze vydat. Zkontrolujte skladové zásoby.',
|
||||
'user_does_not_exist' => 'Neplatný uživatel. Zkuste to znovu.',
|
||||
'checkout_qty' => array(
|
||||
'lte' => 'There is currently only one available accessory of this type, and you are trying to check out :checkout_qty. Please adjust the checkout quantity or the total stock of this accessory and try again.|There are :number_currently_remaining total available accessories, and you are trying to check out :checkout_qty. Please adjust the checkout quantity or the total stock of this accessory and try again.',
|
||||
'lte' => 'V současné době je k dispozici pouze jeden doplněk tohoto příslušenství a snažíte se vydat :checkout_qty. Upravte prosím množství k výdeji nebo celkový počet dostupných doplňků a zkuste to znovu.
|
||||
K dispozici je celkem :number_currently_remaining doplňků, přičemž se pokoušíte vydat :checkout_qty. Upravte prosím množství k výdeji nebo celkový počet a zkuste to znovu.',
|
||||
),
|
||||
|
||||
),
|
||||
|
||||
@@ -18,7 +18,7 @@ return array(
|
||||
'confirm' => 'Opravdu si přejete odstranit tento díl?',
|
||||
'error' => 'Nepodařilo se díl odstranit. Zkuste to prosím později.',
|
||||
'success' => 'Díl byl v pořádku odstraněn.',
|
||||
'error_qty' => 'Some components of this type are still checked out. Please check them in and try again.',
|
||||
'error_qty' => 'Některé komponenty tohoto typu jsou stále vydané. Nejprve je prosím vraťte a poté akci opakujte.',
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
|
||||
@@ -8,5 +8,5 @@ return array(
|
||||
'remaining' => 'Zbývá',
|
||||
'total' => 'Celkem',
|
||||
'update' => 'Upravit sp. materiál',
|
||||
'inventory_warning' => 'The inventory of this consumable is below the minimum amount of :min_count',
|
||||
'inventory_warning' => 'Zásoba tohoto spotřebního materiálu klesla pod minimální hodnotu :min_count',
|
||||
);
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'CHYBA: 301/302 :endpoint vrací přesměrování. Z bezpečnostních důvodů nesledujeme přesměrování. Použijte prosím skutečný koncový bod.',
|
||||
'error_misc' => 'Něco se nepovedlo.',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'O označení stavu',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'Archivováno',
|
||||
'create' => 'Vytvořit označení stavu',
|
||||
'color' => 'Barva grafu',
|
||||
'default_label' => 'Výchozí štítek',
|
||||
'default_label_help' => 'Toto se používá k zajištění zobrazení nejčastěji používaných štítků v horní části rozbalovacího pole, při vytváření nebo úpravách položek majetku.',
|
||||
'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.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Název stavu',
|
||||
'pending' => 'Probíhající',
|
||||
'status_type' => 'Typ stavu',
|
||||
|
||||
@@ -23,16 +23,16 @@ return [
|
||||
'asset_models' => 'Modely majetku',
|
||||
'asset_model' => 'model',
|
||||
'asset' => 'Zařízeni',
|
||||
'asset_previous' => 'Asset (Previously Assigned)',
|
||||
'asset_previous' => 'Zařízení (původně přiřazené)',
|
||||
'asset_report' => 'Report majetku',
|
||||
'asset_tag' => 'Označení majetku',
|
||||
'asset_tags' => 'Označení majetku',
|
||||
'assets_available' => 'Dostupný majatek',
|
||||
'accept_assets' => 'Příjmout majetek :name',
|
||||
'accept_assets_menu' => 'Přijmout majetek',
|
||||
'accept_item' => 'Accept Item',
|
||||
'accept_item' => 'Potvrdit převzetí',
|
||||
'audit' => 'Audit',
|
||||
'audits' => 'Audits',
|
||||
'audits' => 'Audity',
|
||||
'audit_report' => 'Záznamy auditu',
|
||||
'assets' => 'Zařízení',
|
||||
'assets_audited' => 'aktiva, u nichž byl proveden audit',
|
||||
@@ -64,12 +64,12 @@ return [
|
||||
'changepassword' => 'Změnit heslo',
|
||||
'checkin' => 'Příjem',
|
||||
'checkin_from' => 'Převzít od',
|
||||
'checkin_note' => 'Checkin Note',
|
||||
'checkout_note' => 'Checkout Note',
|
||||
'checkin_note' => 'Poznámka k převzetí',
|
||||
'checkout_note' => 'Poznámka k vyřazení',
|
||||
'checkout' => 'Výdej',
|
||||
'checkouts_count' => 'Vyskladnění',
|
||||
'checkins_count' => 'Naskladnění',
|
||||
'checkin_and_delete' => 'Checkin and Delete',
|
||||
'checkin_and_delete' => 'Převzít a odstranit',
|
||||
'user_requests_count' => 'Požadavky',
|
||||
'city' => 'Město',
|
||||
'click_here' => 'Klikněte zde',
|
||||
@@ -83,7 +83,7 @@ return [
|
||||
'consumables' => 'Spotřební materiál',
|
||||
'country' => 'Země',
|
||||
'could_not_restore' => 'Chyba při obnově :item_type: :chyba',
|
||||
'not_deleted' => 'The :item_type was not deleted and therefore cannot be restored',
|
||||
'not_deleted' => 'Položka typu :item_type nebyla smazána, takže ji není možné obnovit',
|
||||
'create' => 'Vytvořit nové',
|
||||
'created' => 'Položka vytvořena',
|
||||
'created_asset' => 'vytvořit majetek',
|
||||
@@ -98,7 +98,7 @@ return [
|
||||
'customize_report' => 'Přizpůsobit report',
|
||||
'custom_report' => 'Vlastní report majetku',
|
||||
'dashboard' => 'Nástěnka',
|
||||
'data_source' => 'Data Source',
|
||||
'data_source' => 'Zdroj dat',
|
||||
'days' => 'dnů',
|
||||
'days_to_next_audit' => 'Dny k dalšímu auditu',
|
||||
'date' => 'Datum',
|
||||
@@ -106,7 +106,7 @@ return [
|
||||
'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',
|
||||
'delete_confirm' => 'Opravdu chcete smazat :item?',
|
||||
'delete_confirm_no_undo' => 'Are you sure, you wish to delete :item? This cannot be undone.',
|
||||
'delete_confirm_no_undo' => 'Opravdu si přejete odstranit :item? Tuto akci nelze vrátit zpět.',
|
||||
'deleted' => 'Odstraněno',
|
||||
'delete_seats' => 'Vymazaná licenční místa',
|
||||
'deletion_failed' => 'Odstranění se nezdařilo',
|
||||
@@ -148,9 +148,9 @@ return [
|
||||
'image_delete' => 'Smazat obrázek',
|
||||
'include_deleted' => 'Zahrnout odstraněné položky',
|
||||
'image_upload' => 'Nahrát obrázek',
|
||||
'filetypes_accepted_help' => 'Accepted filetype is :types. The maximum size allowed is :size.|Accepted filetypes are :types. The maximum upload size allowed is :size.',
|
||||
'filetypes_size_help' => 'The maximum upload size allowed is :size.',
|
||||
'image_filetypes_help' => 'Accepted Filetypes are jpg, webp, png, gif, svg, and avif. The maximum upload size allowed is :size.',
|
||||
'filetypes_accepted_help' => 'Povolený typ souboru je :types. Maximální povolená velikost je :size.|Povolený typ souborů je :types. Maximální povolená velikost je :size.',
|
||||
'filetypes_size_help' => 'Maximální povolená velikost nahrávaného souboru je :size.',
|
||||
'image_filetypes_help' => 'Povolené formáty: jpg, webp, png, gif, svg a avif. Max. velikost nahrávaného souboru: :size.',
|
||||
'unaccepted_image_type' => 'Soubor s obrázkem nebyl čitelný. Přijatelné druhy souborů jsou jpg, webp, png, gif, a svg. Tento soubor je druhu: :mimetype.',
|
||||
'import' => 'Import',
|
||||
'import_this_file' => 'Mapa polí a zpracovávat tento soubor',
|
||||
@@ -180,7 +180,7 @@ return [
|
||||
'licenses_available' => 'Dostupné licence',
|
||||
'licenses' => 'Licence',
|
||||
'list_all' => 'Vypsat vše',
|
||||
'loading' => 'Loading... please wait...',
|
||||
'loading' => 'Načítání... Prosím, vyčkejte...',
|
||||
'lock_passwords' => 'Tato hodnota pole nebude uložena v ukázkové instalaci.',
|
||||
'feature_disabled' => 'Tato funkce byla deaktivována pro demo instalaci.',
|
||||
'location' => 'Lokalita',
|
||||
@@ -190,7 +190,7 @@ return [
|
||||
'logout' => 'Odhlásit',
|
||||
'lookup_by_tag' => 'Vyhledávání podle značky majetku',
|
||||
'maintenances' => 'Údržby',
|
||||
'manage_api_keys' => 'Manage API keys',
|
||||
'manage_api_keys' => 'Spravovat API klíče',
|
||||
'manufacturer' => 'Výrobce',
|
||||
'manufacturers' => 'Výrobci',
|
||||
'markdown' => 'Toto pole umožňuje <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>.',
|
||||
@@ -212,14 +212,14 @@ return [
|
||||
'no_results' => 'Žádné výsledky.',
|
||||
'no' => 'Ne',
|
||||
'notes' => 'Poznámky',
|
||||
'note_added' => 'Note Added',
|
||||
'options' => 'Options',
|
||||
'preview' => 'Preview',
|
||||
'add_note' => 'Add Note',
|
||||
'note_edited' => 'Note Edited',
|
||||
'edit_note' => 'Edit Note',
|
||||
'note_deleted' => 'Note Deleted',
|
||||
'delete_note' => 'Delete Note',
|
||||
'note_added' => 'Poznámka přidána',
|
||||
'options' => 'Možnosti',
|
||||
'preview' => 'Náhled',
|
||||
'add_note' => 'Přidat poznámku',
|
||||
'note_edited' => 'Poznámka byla upravena',
|
||||
'edit_note' => 'Upravit poznámku',
|
||||
'note_deleted' => 'Poznámka odstraněna',
|
||||
'delete_note' => 'Odstranit poznámku',
|
||||
'order_number' => 'Číslo objednávky',
|
||||
'only_deleted' => 'Pouze odstraněné položky',
|
||||
'page_menu' => 'Zobrazuji _MENU_ položky',
|
||||
@@ -234,7 +234,7 @@ return [
|
||||
'purchase_date' => 'Datum nákupu',
|
||||
'qty' => 'Množství',
|
||||
'quantity' => 'Množství',
|
||||
'quantity_minimum' => 'You have one item below or almost below minimum quantity levels|You have :count items below or almost below minimum quantity levels',
|
||||
'quantity_minimum' => 'Máte jednu položku pod nebo téměř pod minimální hladinou množství | Máte :count položek pod nebo téměř pod minimální hladinou množství',
|
||||
'quickscan_checkin' => 'Rychlé skenování přivlastněných počítačů',
|
||||
'quickscan_checkin_status' => 'Stav převzetí',
|
||||
'ready_to_deploy' => 'Připraveno k přidělení',
|
||||
@@ -245,7 +245,7 @@ return [
|
||||
'restored' => 'obnoveno',
|
||||
'restore' => 'Obnovit',
|
||||
'requestable_models' => 'Požadované modely',
|
||||
'requestable_items' => 'Requestable Items',
|
||||
'requestable_items' => 'Položky, o které lze požádat',
|
||||
'requested' => 'Požadováno',
|
||||
'requested_date' => 'Požadované datum',
|
||||
'requested_assets' => 'Vyžádaný majetek',
|
||||
@@ -259,7 +259,7 @@ return [
|
||||
'select_all' => 'Vybrat vše',
|
||||
'search' => 'Hledat',
|
||||
'select_category' => 'Vyberte kategorii',
|
||||
'select_datasource' => 'Select a data source',
|
||||
'select_datasource' => 'Vyberte zdroj dat',
|
||||
'select_department' => 'Vyberte Oddělení',
|
||||
'select_depreciation' => 'Zvolit typ amortizace',
|
||||
'select_location' => 'Zvolit místo',
|
||||
@@ -279,15 +279,15 @@ return [
|
||||
'signed_off_by' => 'Odepsal:',
|
||||
'skin' => 'Vzhled',
|
||||
'webhook_msg_note' => 'Oznámení zavolá webhook',
|
||||
'webhook_test_msg' => 'Oh hai! It looks like your :app integration with Snipe-IT is working!',
|
||||
'webhook_test_msg' => 'Ahoj! Vypadá to, že propojení s :app funguje!',
|
||||
'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_label' => 'Status Label',
|
||||
'status_label' => 'Označení stavu',
|
||||
'status' => 'Stav',
|
||||
'accept_eula' => 'Licenční podmínky',
|
||||
'show_or_hide_eulas' => 'Show/Hide EULAs',
|
||||
'show_or_hide_eulas' => 'Zobrazit/schovat EULA',
|
||||
'supplier' => 'Dodavatel',
|
||||
'suppliers' => 'Dodavatelé',
|
||||
'sure_to_delete' => 'Opravdu si přejete odstranit',
|
||||
@@ -305,7 +305,7 @@ return [
|
||||
'unknown_admin' => 'Neznámy správce',
|
||||
'username' => 'Uživatelské jméno',
|
||||
'update' => 'Aktualizace',
|
||||
'updating_item' => 'Updating :item',
|
||||
'updating_item' => 'Probíhá aktualizace položky :item',
|
||||
'upload_filetypes_help' => 'Podporované typy souborů jsou png, gif, jpg, jpeg, doc, docx, pdf, xls, txt, lic, xlsx, xml, rtf, zip, a rar. Velikost může být až :size.',
|
||||
'uploaded' => 'Nahráno',
|
||||
'user' => 'Uživatel',
|
||||
@@ -330,10 +330,10 @@ return [
|
||||
'token_expired' => 'Platnost relace formuláře vypršela. Prosím zkuste to znovu.',
|
||||
'login_enabled' => 'Přihlášení povoleno',
|
||||
'audit_due' => 'Ke inventuře',
|
||||
'audit_due_days' => '{}Assets Due or Overdue for Audit|[1]Assets Due or Overdue for Audit Within a Day|[2,*]Assets Due or Overdue for Audit Within :days Days',
|
||||
'audit_due_days' => '{}Zařízení čekající na audit nebo po termínu|[1]Zařízení čekající na audit do jednoho dne|[2,*]]Zařízení čekající na audit do :days dnů',
|
||||
'checkin_due' => 'Kvůli přihlášení',
|
||||
'checkin_overdue' => 'Po termínu pro přihlášení',
|
||||
'checkin_due_days' => '{}Due for Checkin|[1]Assets Due for Checkin Within :days Day|[2,*]Assets Due for Checkin Within :days Days',
|
||||
'checkin_due_days' => '{}Zařízení čekající na vrácení nebo po termínu|[1]Zařízení čekající na vrácení do jednoho dne|[2,*]Zařízení čekající na vrácení do :days dnů',
|
||||
'audit_overdue' => 'Po termínu inventury',
|
||||
'accept' => 'Přijmout :asset',
|
||||
'i_accept' => 'Přijímám',
|
||||
@@ -346,16 +346,16 @@ return [
|
||||
'view_all' => 'zobrazit vše',
|
||||
'hide_deleted' => 'Skrýt smazané',
|
||||
'email' => 'Email',
|
||||
'do_not_change' => 'Do not change',
|
||||
'bug_report' => 'Report a bug',
|
||||
'do_not_change' => 'Nechat beze změny',
|
||||
'bug_report' => 'Nahlásit chybu',
|
||||
'user_manual' => 'Uživatelská příručka',
|
||||
'setup_step_1' => 'Krok 1',
|
||||
'setup_step_2' => 'Krok 2',
|
||||
'setup_step_3' => 'Krok 3',
|
||||
'setup_step_4' => 'Krok 4',
|
||||
'setup_config_check' => 'Kontrola konfigurace',
|
||||
'setup_create_database' => 'Create database tables',
|
||||
'setup_create_admin' => 'Create an admin user',
|
||||
'setup_create_database' => 'Vytvořit tabulky v databázi',
|
||||
'setup_create_admin' => 'Přidat správce',
|
||||
'setup_done' => 'Hotovo!',
|
||||
'bulk_edit_about_to' => 'Tímto upravíte následující možnosti: ',
|
||||
'checked_out' => 'K výdeji',
|
||||
@@ -390,8 +390,8 @@ return [
|
||||
'new_license' => 'Nová licence',
|
||||
'new_accessory' => 'Nové příslušenství',
|
||||
'new_consumable' => 'Nový spotřební materiál',
|
||||
'new_component' => 'New Component',
|
||||
'new_user' => 'New User',
|
||||
'new_component' => 'Nový komponent',
|
||||
'new_user' => 'Nový uživatel',
|
||||
'collapse' => 'Sbalit',
|
||||
'assigned' => 'Přiřazené',
|
||||
'asset_count' => 'Počet aktiv',
|
||||
@@ -427,20 +427,22 @@ return [
|
||||
'bulk_soft_delete' =>'Také odstranit tyto uživatele. Historie jejich majetku zůstane neporušená/dokud tvrvale nevymažete smazané záznamy v nastavení správce.',
|
||||
'bulk_checkin_delete_success' => 'Vybraní uživatelé byli odstraněni a jejich položky byly odebrány.',
|
||||
'bulk_checkin_success' => 'Položky vybraných uživatelů byly odebrány.',
|
||||
'set_to_null' => 'Delete values for this selection|Delete values for all :selection_count selections ',
|
||||
'set_to_null' => 'Smazat hodnoty pro tento výběr|Smazat hodnoty pro všech :selection_count výběrů ',
|
||||
'set_users_field_to_null' => 'Odstranit hodnoty :field pro tohoto uživatele|Odstranit :field hodnoty pro všechny :user_count uživatele ',
|
||||
'na_no_purchase_date' => 'N/A – neznámé datum nákupu',
|
||||
'assets_by_status' => 'Majetek podle stavu',
|
||||
'assets_by_status_type' => 'Majetek podle stavu',
|
||||
'pie_chart_type' => 'Typ koláčového grafu na hlavní stránce',
|
||||
'hello_name' => 'Ahoj, :name!',
|
||||
'unaccepted_profile_warning' => 'You have one item requiring acceptance. Click here to accept or decline it | You have :count items requiring acceptance. Click here to accept or decline them',
|
||||
'unaccepted_profile_warning' => 'Máte jednu položku čekající na schválení. Klikněte sem pro přijetí nebo odmítnutí | Máte :count položek čekajících na schválení. Klikněte sem pro přijetí nebo odmítnutí
|
||||
|
||||
',
|
||||
'start_date' => 'Od',
|
||||
'end_date' => 'Do',
|
||||
'alt_uploaded_image_thumbnail' => 'Nahraný náhledový obrázek',
|
||||
'placeholder_kit' => 'Vyberte sadu',
|
||||
'file_not_found' => 'Soubor nebyl nalezen',
|
||||
'log_record_not_found' => 'No record for that log entry was found.',
|
||||
'log_record_not_found' => 'Záznam v protokolu nebyl nalezen.',
|
||||
'preview_not_available' => '(žádný náhled)',
|
||||
'setup' => 'Nastavení',
|
||||
'pre_flight' => 'Předletový',
|
||||
@@ -519,10 +521,10 @@ return [
|
||||
'import_note' => 'Importováno pomocí csv importu',
|
||||
],
|
||||
'remove_customfield_association' => 'Odstranění tohoto pole ze sady polí. Tím se neodstraní vlastní pole, ale pouze spojení tohoto pole s touto sadou polí.',
|
||||
'checked_out_to_fields' => 'Checked Out To Fields',
|
||||
'checked_out_to_fields' => 'Údaje o zapůjčení',
|
||||
'percent_complete' => '% dokončit',
|
||||
'uploading' => 'Nahrávám... ',
|
||||
'upload_error' => 'Chyba při nahrávání souboru. Zkontrolujte, zda nejsou žádné prázdné řádky a že nejsou duplicitní názvy sloupců.',
|
||||
'upload_error' => 'Chyba při nahrávání souboru. Zkontrolujte, že v CSV nejsou prázdné řádky nebo duplicitní názvy sloupců a že server umožňuje nahrávání.',
|
||||
'copy_to_clipboard' => 'Kopírovat do schránky',
|
||||
'copied' => 'Zkopírováno!',
|
||||
'status_compatibility' => 'Pokud jsou položky již přiřazeny, nelze je změnit na typ stavu bez použití souboru a tato změna hodnoty bude přeskočena.',
|
||||
@@ -538,7 +540,7 @@ return [
|
||||
'permission_denied_superuser_demo' => 'Oprávnění bylo odepřeno. Nemůžete aktualizovat informace o uživateli pro superadminy na demo.',
|
||||
'pwd_reset_not_sent' => 'Uživatel není aktivován, LDAP je synchronizován, nebo nemá e-mailovou adresu',
|
||||
'error_sending_email' => 'Chyba při odesílání e-mailu',
|
||||
'sad_panda' => 'Sad panda. You are not authorized to do the thing. Maybe <a href=":link">return to the dashboard</a>, or contact your administrator.',
|
||||
'sad_panda' => 'Nemáte oprávnění tohle provést. <a href=":link">Zpět na přehled</a> nebo kontaktujte správce.',
|
||||
'bulk' => [
|
||||
'delete' =>
|
||||
[
|
||||
@@ -562,67 +564,67 @@ return [
|
||||
],
|
||||
|
||||
'more_info' => 'Více informací',
|
||||
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
|
||||
'whoops' => 'Whoops!',
|
||||
'something_went_wrong' => 'Something went wrong with your request.',
|
||||
'close' => 'Close',
|
||||
'quickscan_bulk_help' => 'Zaškrtnutím tohoto políčka se aktualizuje záznam zařízení na novou lokaci. Nezaškrtnutí pouze zaznamená lokaci v auditním záznamu. Pokud je zařízení zapůjčeno, nezmění to lokaci osoby, zařízení nebo místa, kam je zapůjčeno.',
|
||||
'whoops' => 'Jejda!',
|
||||
'something_went_wrong' => 'Při zpracování požadavku došlo k chybě.',
|
||||
'close' => 'Zavřít',
|
||||
'expires' => 'Vyprší',
|
||||
'map_fields'=> 'Map :item_type Fields',
|
||||
'remaining_var' => ':count Remaining',
|
||||
'label' => 'Label',
|
||||
'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
|
||||
'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
|
||||
'accessories_assigned' => 'Assigned Accessories',
|
||||
'user_managed_passwords' => 'Password Management',
|
||||
'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
|
||||
'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
|
||||
'from' => 'From',
|
||||
'map_fields'=> 'Mapovat pole typu :item_type',
|
||||
'remaining_var' => 'Zbývá:count',
|
||||
'label' => 'Štítek',
|
||||
'import_asset_tag_exists' => 'Zařízení s označením :asset_tag již existuje a aktualizace není požadována. Nebyla provedena žádná změna.',
|
||||
'countries_manually_entered_help' => 'Hodnoty s hvězdičkou (*) byly zadány ručně a neodpovídají oficiálním hodnotám podle ISO 3166',
|
||||
'accessories_assigned' => 'Přiřazené příslušenství',
|
||||
'user_managed_passwords' => 'Správa hesel',
|
||||
'user_managed_passwords_disallow' => 'Zakázat uživatelům správu vlastních hesel',
|
||||
'user_managed_passwords_allow' => 'Povolit uživatelům správu vlastních hesel',
|
||||
'from' => 'Od',
|
||||
'by' => 'Vytvořil',
|
||||
|
||||
// Add form placeholders here
|
||||
'placeholders' => [
|
||||
'notes' => 'Add a note',
|
||||
'notes' => 'Přidat poznámku',
|
||||
],
|
||||
|
||||
'breadcrumb_button_actions' => [
|
||||
'edit_item' => 'Edit :name',
|
||||
'checkout_item' => 'Checkout :name',
|
||||
'checkin_item' => 'Checkin :name',
|
||||
'edit_item' => 'Upravit :name',
|
||||
'checkout_item' => 'Vydat :name',
|
||||
'checkin_item' => 'Převzít :name',
|
||||
],
|
||||
|
||||
'skins' => [
|
||||
'site_default' => 'Site Default',
|
||||
'default_blue' => 'Default Blue',
|
||||
'blue_dark' => 'Blue (Dark Mode)',
|
||||
'green' => 'Green Dark',
|
||||
'green_dark' => 'Green (Dark Mode)',
|
||||
'red' => 'Red Dark',
|
||||
'red_dark' => 'Red (Dark Mode)',
|
||||
'orange' => 'Orange Dark',
|
||||
'orange_dark' => 'Orange (Dark Mode)',
|
||||
'black' => 'Black',
|
||||
'black_dark' => 'Black (Dark Mode)',
|
||||
'purple' => 'Purple',
|
||||
'purple_dark' => 'Purple (Dark Mode)',
|
||||
'yellow' => 'Yellow',
|
||||
'yellow_dark' => 'Yellow (Dark Mode)',
|
||||
'high_contrast' => 'High Contrast',
|
||||
'site_default' => 'Výchozí nastavení webu',
|
||||
'default_blue' => 'Modrá – výchozí',
|
||||
'blue_dark' => 'Modrá (tmavý režim)',
|
||||
'green' => 'Tmavě zelená',
|
||||
'green_dark' => 'Zelená (tmavý režim)',
|
||||
'red' => 'Tmavě červená',
|
||||
'red_dark' => 'Červená (tmavý režim)',
|
||||
'orange' => 'Tmavě Oranžová',
|
||||
'orange_dark' => 'Oranžová (tmavý režim)',
|
||||
'black' => 'Černá',
|
||||
'black_dark' => 'Černá (tmavý režim)',
|
||||
'purple' => 'Fialová',
|
||||
'purple_dark' => 'Fialová (tmavý režim)',
|
||||
'yellow' => 'Žlutá',
|
||||
'yellow_dark' => 'Žlutá (tmavý režim)',
|
||||
'high_contrast' => 'Vysoký kontrast',
|
||||
|
||||
],
|
||||
|
||||
'select_all_none' => 'Select/Unselect All',
|
||||
'generic_model_not_found' => 'That :model was not found or you do not have permission to access it',
|
||||
'deleted_models' => 'Deleted Asset Models',
|
||||
'deleted_users' => 'Deleted Users',
|
||||
'cost_each' => ':amount each',
|
||||
'remove_current_image' => 'Remove current :type image',
|
||||
'select_all_none' => 'Označit/odznačit vše',
|
||||
'generic_model_not_found' => ':model nebyl nalezen, nebo k němu nemáte oprávnění.',
|
||||
'deleted_models' => 'Smazané modely zařízení',
|
||||
'deleted_users' => 'Smazaní uživatelé',
|
||||
'cost_each' => ':amount za kus',
|
||||
'remove_current_image' => 'Odebrat aktuální obrázek typu :type',
|
||||
|
||||
'seeding' => [
|
||||
'manufacturers' => [
|
||||
'button' => 'Create Manufacturers',
|
||||
'prompt' => 'You do not have any manufacturers yet. Would you like to seed a list of common manufacturers? (THIS WILL OVERWRITE EXISTING MANUFACTURERS, including those that have been soft-deleted.)',
|
||||
'success' => 'Manufacturers seeded successfully',
|
||||
'error' => 'Could not seed manufacturers. A manufacturer record already exists and seeding would overwrite it.|Could not seed manufacturers. :count manufacturer records already exist and seeding would overwrite them.',
|
||||
'button' => 'Přidat výrobce',
|
||||
'prompt' => 'Zatím nemáte žádné výrobce. Chcete načíst seznam běžných výrobců? (TÍM DOJDE K PŘEPSÁNÍ STÁVAJÍCÍCH VÝROBCŮ, včetně těch, kteří byli označeni jako smazaní.)',
|
||||
'success' => 'Výrobci byli úspěšně vloženi',
|
||||
'error' => 'Výrobce se nepodařilo načíst – již nějaký existuje a nový by ho přepsal.|Výrobce se nepodařilo načíst – existuje už :count záznamů a došlo by k jejich přepsání.',
|
||||
],
|
||||
],
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Manage',
|
||||
'field' => 'Meysydd',
|
||||
'about_fieldsets_title' => 'Amdan grwpiau meysydd',
|
||||
'about_fieldsets_text' => 'Mae grwpiau meysydd yn caniatau i chi creu grwpiau o meysydd addasedig sydd yn cael ei defnyddio yn amal ar gyfer mathau penodol o asedau.',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
|
||||
'custom_format' => 'Custom Regex format...',
|
||||
'encrypt_field' => 'Hamcryptio gwerth y maes yma yn y basdata',
|
||||
'encrypt_field_help' => 'RHYBUDD: Mae hamcryptio maes yn feddwl nid oes modd chwilio amdano.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||
'error_misc' => 'Something went wrong. :( ',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'Amdan Labeli Statws',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'Archifwyd',
|
||||
'create' => 'Creu Label Statws',
|
||||
'color' => 'Lliw Siart',
|
||||
'default_label' => 'Label diofyn',
|
||||
'default_label_help' => 'Defnyddir hyn i sicrhau bod y label statws rydych yn defnyddio mwyaf yn ymddangos gyntaf wrth cre/addasu asedau.',
|
||||
'deployable' => 'Gellir ei ddefnyddio',
|
||||
'info' => 'Defnyddir labeli statws i ddisgrifio os yw ased allan i\'w drwsio, ar goll ayyb. Cewch creu labeli newydd ar gyfer asedau sydd ar gael, angen sylw neu wedi archifio.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Enw Statws',
|
||||
'pending' => 'Yn aros',
|
||||
'status_type' => 'Math Statws',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Checked Out To Fields',
|
||||
'percent_complete' => '% wedi cwbwlhau',
|
||||
'uploading' => 'Uploading... ',
|
||||
'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'Copy to Clipboard',
|
||||
'copied' => 'Copied!',
|
||||
'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Administrer',
|
||||
'field' => 'Felt',
|
||||
'about_fieldsets_title' => 'Om Feltsæt',
|
||||
'about_fieldsets_text' => 'Fieldsets giver dig mulighed for at oprette grupper af brugerdefinerede felter, der ofte bruges igen til specifikke aktivmodeltyper.',
|
||||
'about_fieldsets_text' => 'Feltsæt giver dig mulighed for at oprette grupper af brugerdefinerede felter, der ofte genbruges til specifikke asset-modeltyper.',
|
||||
'custom_format' => 'Tilpasset Regex format...',
|
||||
'encrypt_field' => 'Kryptere værdien af dette felt i databasen',
|
||||
'encrypt_field_help' => 'Advarsel: Kryptere et felt gør det uransagelige.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'FEJL: 301/302: endpoint returnerer en omdirigering. Af sikkerhedsmæssige årsager følger vi ikke omdirigeringer. Brug det faktiske slutpunkt.',
|
||||
'error_misc' => 'Noget gik galt. :( ',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'Om status labels',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'arkiverede',
|
||||
'create' => 'Opret status label',
|
||||
'color' => 'Diagramfarve',
|
||||
'default_label' => 'Default etiket',
|
||||
'default_label_help' => 'Dette anvendes for at sikre at din mest anvendte statusetiket ses øverst i valgene når du opretter/retter aktiver.',
|
||||
'deployable' => 'Deployable',
|
||||
'info' => 'Statusetiketter bruges til at beskrive de forskellige stater, dine aktiver kan være i. De kan være ude til reparation, tabt / stjålet osv. Du kan oprette nye statusetiketter til implementerbare, ventende og arkiverede aktiver.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Status navn',
|
||||
'pending' => 'Verserende',
|
||||
'status_type' => 'Status Type',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Checked Out To Fields',
|
||||
'percent_complete' => '% komplet',
|
||||
'uploading' => 'Uploader... ',
|
||||
'upload_error' => 'Fejl under upload af fil. Kontroller, at der ikke er nogen tomme rækker og at ingen kolonnenavne er duplikeret.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'Kopiér til udklipsholder',
|
||||
'copied' => 'Kopieret!',
|
||||
'status_compatibility' => 'Hvis aktiverne allerede er tildelt, kan de ikke ændres til en ikke-deployérbar statustype og denne værdiændring vil blive sprunget over.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Verwalten',
|
||||
'field' => 'Feld',
|
||||
'about_fieldsets_title' => 'Über Feldsätze',
|
||||
'about_fieldsets_text' => 'Feldsätze erlauben es, Gruppen aus benutzerdefinierten Feldern zu erstellen, die regelmäßig für spezifische Modelltypen benutzt werden.',
|
||||
'about_fieldsets_text' => 'Feldsätze sind Gruppen von benutzerdefinierten Feldern, die häufig für bestimmte Asset-Modelltypen wiederverwendet werden.',
|
||||
'custom_format' => 'Benutzerdefiniertes Regex-Format...',
|
||||
'encrypt_field' => 'Den Wert dieses Feldes in der Datenbank verschlüsseln',
|
||||
'encrypt_field_help' => 'WARNUNG: Ein verschlüsseltes Feld kann nicht durchsucht werden.',
|
||||
|
||||
@@ -39,5 +39,5 @@ return [
|
||||
'signed_by_finance_auditor' => 'Unterschrieben von (Finanzprüfer):',
|
||||
'signed_by_location_manager' => 'Unterschrieben von (Standortmanager):',
|
||||
'signed_by' => 'Unterschrieben von:',
|
||||
'clone' => 'Clone Location',
|
||||
'clone' => 'Standort klonen',
|
||||
];
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'FEHLER: 301/302 :endpoint gibt eine Umleitung zurück. Aus Sicherheitsgründen folgen wir keinen Umleitungen. Bitte verwenden Sie den aktuellen Endpunkt.',
|
||||
'error_misc' => 'Etwas ist schiefgelaufen. :( ',
|
||||
'webhook_fail' => ' Webhook-Benachrichtigung fehlgeschlagen: Überprüfen Sie, ob die URL noch gültig ist.',
|
||||
'webhook_channel_not_found' => ' Webhook-Channel nicht gefunden.'
|
||||
'webhook_channel_not_found' => ' Webhook-Channel nicht gefunden.',
|
||||
'ms_teams_deprecation' => 'Die ausgewählte Microsoft Teams-Webhook-URL wird zum 31. Dezember 2025 eingestellt. Bitte verwenden Sie stattdessen eine Workflow-URL. Die Dokumentation von Microsoft zur Erstellung eines Workflows finden Sie <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank">hier.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Ihre Einstellungen wurden nicht gespeichert.',
|
||||
'mismatch' => 'Es gibt 1 Element in der Datenbank, das Ihre Aufmerksamkeit benötigt, bevor Sie die Standortbereicherung aktivieren können. Es gibt :count Elemente in der Datenbank, die Ihre Aufmerksamkeit benötigen, bevor Sie die Standortbereicherung aktivieren können.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'Über Statusbezeichnungen',
|
||||
'about' => 'Statusbezeichnungen erklärt',
|
||||
'archived' => 'Archiviert',
|
||||
'create' => 'Statusbezeichnung erstellen',
|
||||
'color' => 'Diagrammfarbe',
|
||||
'default_label' => 'Standardbezeichnung',
|
||||
'default_label_help' => 'Dies wird verwendet, um sicherzustellen, dass die am häufigsten verwendeten Statusbeschriftungen beim Erstellen / Bearbeiten von Assets oben im Auswahlfeld angezeigt werden.',
|
||||
'deployable' => 'Einsetzbar',
|
||||
'info' => 'Statusbezeichnungen werden eingesetzt, um diverse Zustände Ihrer Assets zu beschreiben. Diese können z. B. in Reparatur, gestohlen oder verloren sein. Sie können neue Statusbezeichnungen für einsetzbare, ausstehende und archivierte Assets erstellen.',
|
||||
'info' => 'Statusbezeichnungen werden verwendet, um die verschiedenen Zustände Ihrer Assets zu beschreiben. Diese können z. B. in Reparatur, verloren oder gestohlen sein. Sie können eigene Statusbezeichnungen für einsetzbare, ausstehende und archivierte Assets gemäß Ihrem Workflow erstellen. Weitere Informationen finden Sie in der <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">Dokumentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Statusname',
|
||||
'pending' => 'Ausstehend',
|
||||
'status_type' => 'Statustyp',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Folgenden Feldern zugewiesen',
|
||||
'percent_complete' => '% vollständig',
|
||||
'uploading' => 'Wird hochgeladen ... ',
|
||||
'upload_error' => 'Fehler beim Hochladen der Datei. Bitte überprüfen Sie, dass keine leeren Zeilen vorhanden sind und keine Spaltennamen dupliziert werden.',
|
||||
'upload_error' => 'Fehler beim Hochladen der Datei. Bitte überprüfen Sie, ob Sie keine leeren Zeilen oder doppelte Spaltennamen in Ihrem CSV haben und dass die Serverrechte das Hochladen erlauben.',
|
||||
'copy_to_clipboard' => 'In die Zwischenablage kopieren',
|
||||
'copied' => 'Kopiert!',
|
||||
'status_compatibility' => 'Wenn Assets bereits zugewiesen sind, können sie nicht zu einem nicht einsetzbaren Statustyp geändert werden, und diese Änderung wird übersprungen.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Verwalten',
|
||||
'field' => 'Feld',
|
||||
'about_fieldsets_title' => 'Über Feldsätze',
|
||||
'about_fieldsets_text' => 'Feldsätze erlauben es, Gruppen aus benutzerdefinierten Feldern zu erstellen, die regelmäßig für spezifische Modelltypen wiederverwendet werden.',
|
||||
'about_fieldsets_text' => 'Feldsätze sind Gruppen von benutzerdefinierten Feldern, die häufig für bestimmte Asset-Modelltypen wiederverwendet werden.',
|
||||
'custom_format' => 'Benutzerdefiniertes Regex-Format...',
|
||||
'encrypt_field' => 'Den Wert dieses Feldes in der Datenbank verschlüsseln',
|
||||
'encrypt_field_help' => 'WARNUNG: Ein verschlüsseltes Feld kann nicht durchsucht werden.',
|
||||
|
||||
@@ -39,5 +39,5 @@ return [
|
||||
'signed_by_finance_auditor' => 'Unterschrieben von (Finanzprüfer):',
|
||||
'signed_by_location_manager' => 'Unterschrieben von (Standortmanager):',
|
||||
'signed_by' => 'Unterschrieben von:',
|
||||
'clone' => 'Clone Location',
|
||||
'clone' => 'Standort klonen',
|
||||
];
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'FEHLER: 301/302 :endpoint gibt eine Umleitung zurück. Aus Sicherheitsgründen folgen wir keine Umleitungen. Bitte verwende den aktuellen Endpunkt.',
|
||||
'error_misc' => 'Etwas ist schiefgelaufen! :( ',
|
||||
'webhook_fail' => ' Webhook-Benachrichtigung fehlgeschlagen: Überprüfe, ob die URL noch gültig ist.',
|
||||
'webhook_channel_not_found' => ' Webhook-Channel nicht gefunden.'
|
||||
'webhook_channel_not_found' => ' Webhook-Channel nicht gefunden.',
|
||||
'ms_teams_deprecation' => 'Die ausgewählte Microsoft Teams-Webhook-URL wird am 31. Dezember 2025 abgeschaltet. Bitte nutze stattdessen eine Workflow-URL. Wie du so einen Workflow erstellst, steht in der Microsoft-Dokumentation <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank">hier.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Deine Einstellungen wurden nicht gespeichert.',
|
||||
'mismatch' => 'Es gibt 1 Element in der Datenbank, das Deine Aufmerksamkeit benötigt, bevor Du die Standortbereicherung aktivieren kannst. Es gibt :count Elemente in der Datenbank, die Deine Aufmerksamkeit benötigen, bevor Du die Standortbereicherung aktivieren kannst.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'Über Statusbezeichnungen',
|
||||
'about' => 'Statusbezeichnungen erklärt',
|
||||
'archived' => 'Archiviert',
|
||||
'create' => 'Statusbezeichnung erstellen',
|
||||
'color' => 'Diagrammfarbe',
|
||||
'default_label' => 'Standardbezeichnung',
|
||||
'default_label_help' => 'Dies wird verwendet, um sicherzustellen, dass die am häufigsten verwendeten Statusbeschriftungen beim Erstellen / Bearbeiten von Assets oben im Auswahlfeld angezeigt werden.',
|
||||
'deployable' => 'Einsetzbar',
|
||||
'info' => 'Statusbezeichnungen werden eingesetzt, um diverse Zustände Deiner Assets zu beschreiben. Diese können z. B. in Reparatur sein, gestohlen oder verloren worden sein. Du kannst neue Statusbezeichnungen für einsetzbare, ausstehende und archivierte Assets erstellen.',
|
||||
'info' => 'Statusbezeichnungen beschreiben die verschiedenen Zustände, in denen sich deine Assets befinden können – z. B. zur Reparatur, verloren oder gestohlen. Du kannst eigene Statusbezeichnungen für einsetzbare, ausstehende und archivierte Assets anlegen, passend zu deinem Workflow. Mehr Infos findest du in der <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">Dokumentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Statusname',
|
||||
'pending' => 'Ausstehend',
|
||||
'status_type' => 'Statustyp',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Auf folgende Felder herausgegeben',
|
||||
'percent_complete' => '% vollständig',
|
||||
'uploading' => 'Hochladen... ',
|
||||
'upload_error' => 'Fehler beim Hochladen der Datei. Bitte überprüfe, dass keine leeren Zeilen vorhanden sind und keine Spaltennamen dupliziert werden.',
|
||||
'upload_error' => 'Fehler beim Hochladen der Datei. Bitte überprüfen Sie, ob Sie keine leeren Zeilen oder doppelte Spaltennamen in Ihrem CSV haben und dass die Serverrechte das Hochladen erlauben.',
|
||||
'copy_to_clipboard' => 'In Zwischenablage kopieren',
|
||||
'copied' => 'Kopiert!',
|
||||
'status_compatibility' => 'Wenn Assets bereits zugewiesen sind, können sie nicht zu einem nicht einsetzbaren Statustyp geändert werden, und diese Änderung wird übersprungen.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Διαχείριση',
|
||||
'field' => 'Πεδίο',
|
||||
'about_fieldsets_title' => 'Σχετικά με τα σύνολα πεδίων',
|
||||
'about_fieldsets_text' => 'Τα πεδία των πεδίων σάς επιτρέπουν να δημιουργείτε ομάδες προσαρμοσμένων πεδίων που χρησιμοποιούνται συχνά ξανά για συγκεκριμένους τύπους μοντέλων στοιχείων ενεργητικού.',
|
||||
'about_fieldsets_text' => 'Τα Fieldsets σας επιτρέπουν να δημιουργήσετε ομάδες προσαρμοσμένων πεδίων που συχνά επαναχρησιμοποιούνται για συγκεκριμένους τύπους μοντέλου στοιχείων ενεργητικού.',
|
||||
'custom_format' => 'Προσαρμοσμένη μορφή Regex...',
|
||||
'encrypt_field' => 'Κρυπτογράφηση της αξίας του πεδίου στη βάση δεδομένων',
|
||||
'encrypt_field_help' => 'Προειδοποίηση: H κρυπτογράφηση ενός πεδίου την καθιστά ανεξερεύνητη.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'ΣΦΑΛΜΑ: 301/302:endpoint επιστρέφει μια ανακατεύθυνση. Για λόγους ασφαλείας, δεν ακολουθούμε ανακατευθύνσεις. Παρακαλούμε χρησιμοποιήστε το πραγματικό τελικό σημείο.',
|
||||
'error_misc' => 'Κάτι πήγε στραβά. :( ',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'Σχετικά με το καθεστώς ετικετών',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'Αρχειοθετημένα',
|
||||
'create' => 'Δημιουργία ετικέτας κατάστασης',
|
||||
'color' => 'Χρώμα Γραφήματος',
|
||||
'default_label' => 'Προεπιλεγμένη Ετικέτα',
|
||||
'default_label_help' => 'Αυτό χρησιμοποιείται για να εξασφαλίσει ότι οι ετικέτες κατάστασης που χρησιμοποιούνται πιο συχνά εμφανίζονται στην κορυφή του πλαισίου επιλογής κατά τη δημιουργία/επεξεργασία των περιουσιακών στοιχείων.',
|
||||
'deployable' => 'Προς ανάπτυξη',
|
||||
'info' => 'Οι ετικέτες κατάστασης χρησιμοποιούνται για να περιγράψουν τις διάφορες καταστάσεις στις οποίες θα μπορούσαν να βρίσκονται τα περιουσιακά στοιχεία σας. Μπορεί να είναι έξω για επισκευή, απώλεια / κλοπή κ.λπ. Μπορείτε να δημιουργήσετε νέες ετικέτες κατάστασης για αναπτυσσόμενα, εκκρεμή και αρχειοθετημένα στοιχεία ενεργητικού.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Όνομα κατάστασης',
|
||||
'pending' => 'Εκκρεμεί',
|
||||
'status_type' => 'Τύπος κατάστασης',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Checked Out To Fields',
|
||||
'percent_complete' => '% πλήρης',
|
||||
'uploading' => 'Μεταφόρτωση... ',
|
||||
'upload_error' => 'Σφάλμα κατά τη μεταφόρτωση του αρχείου. Παρακαλώ ελέγξτε ότι δεν υπάρχουν κενές γραμμές και ότι δεν υπάρχουν διπλότυπα ονόματα στηλών.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'Αντιγραφή στο πρόχειρο',
|
||||
'copied' => 'Αντιγράφηκε!',
|
||||
'status_compatibility' => 'Εάν τα περιουσιακά στοιχεία έχουν ήδη εκχωρηθεί, δεν μπορούν να αλλάξουν σε μη εγκατεστημένο τύπο κατάστασης και αυτή η αλλαγή αξίας θα παραλειφθεί.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Manage',
|
||||
'field' => 'Field',
|
||||
'about_fieldsets_title' => 'About Fieldsets',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
|
||||
'custom_format' => 'Custom Regex format...',
|
||||
'encrypt_field' => 'Encrypt the value of this field in the database',
|
||||
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||
'error_misc' => 'Something went wrong. :( ',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'About Status Labels',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'Archived',
|
||||
'create' => 'Create Status Label',
|
||||
'color' => 'Chart Color',
|
||||
'default_label' => 'Default Label',
|
||||
'default_label_help' => 'This is used to ensure your most commonly used status labels appear at the top of the select box when creating/editing assets.',
|
||||
'deployable' => 'Deployable',
|
||||
'info' => 'Status labels are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for deployable, pending and archived assets.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Status Name',
|
||||
'pending' => 'Pending',
|
||||
'status_type' => 'Status Type',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Checked Out To Fields',
|
||||
'percent_complete' => '% complete',
|
||||
'uploading' => 'Uploading... ',
|
||||
'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'Copy to Clipboard',
|
||||
'copied' => 'Copied!',
|
||||
'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Manage',
|
||||
'field' => 'Bidang',
|
||||
'about_fieldsets_title' => 'Tentang Fieldsets',
|
||||
'about_fieldsets_text' => 'Fieldsets memungkinkan Anda membuat kelompok bidang khusus yang sering digunakan kembali untuk jenis model aset tertentu.',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
|
||||
'custom_format' => 'Custom Regex format...',
|
||||
'encrypt_field' => 'Enkripsikan nilai bidang ini di database',
|
||||
'encrypt_field_help' => 'PERINGATAN: Mengenkripsi sebuah field membuatnya tidak bisa ditelusuri.
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
|
||||
'error_misc' => 'Something went wrong. :( ',
|
||||
'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'Tentang Label Status',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'Diarsipkan',
|
||||
'create' => 'Buat label status',
|
||||
'color' => 'Warna bagan',
|
||||
'default_label' => 'Label standar',
|
||||
'default_label_help' => 'Ini digunakan untuk memastikan label status yang paling sering digunakan muncul di bagian atas kotak pilih saat membuat / mengedit aset.',
|
||||
'deployable' => 'Bisa disebarkan',
|
||||
'info' => 'Label status digunakan untuk menggambarkan berbagai keadaan aset Anda. Mungkin ada perbaikan, kehilangan / pencurian, dll. Anda dapat membuat label status baru untuk aset yang dapat dideplesikan, tertunda dan diarsipkan.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Nama status',
|
||||
'pending' => 'Tertunda',
|
||||
'status_type' => 'Tipe status',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Checked Out To Fields',
|
||||
'percent_complete' => '% lengkap',
|
||||
'uploading' => 'Uploading... ',
|
||||
'upload_error' => 'Error uploading file. Please check that there are no empty rows and that no column names are duplicated.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'Copy to Clipboard',
|
||||
'copied' => 'Copied!',
|
||||
'status_compatibility' => 'If assets are already assigned, they cannot be changed to a non-deployable status type and this value change will be skipped.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Manage',
|
||||
'field' => 'Field',
|
||||
'about_fieldsets_title' => 'About Fieldsets',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
|
||||
'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
|
||||
'custom_format' => 'Custom Regex format...',
|
||||
'encrypt_field' => 'Encrypt the value of this field in the database',
|
||||
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Administrar',
|
||||
'field' => 'Campo',
|
||||
'about_fieldsets_title' => 'Acerca de los grupos de campos',
|
||||
'about_fieldsets_text' => 'Fieldsets te permite crear grupos de campos personalizados que son frecuentemente reutilizados para modelos específicos de equipos.',
|
||||
'about_fieldsets_text' => 'Los grupos de campos le permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.',
|
||||
'custom_format' => 'Expresión regular personalizada...',
|
||||
'encrypt_field' => 'Cifrar el valor de este campo en la base de datos',
|
||||
'encrypt_field_help' => 'ADVERTENCIA: Cifrar un campo hace que no se pueda buscar.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'ERROR: 301/302 :endpoint devuelve una redirección. Por razones de seguridad, no seguimos redirecciones. Por favor, utilice el punto final actual.',
|
||||
'error_misc' => 'Algo salió mal. :( ',
|
||||
'webhook_fail' => ' Notificación de webhook fallida: Compruebe que la URL sigue siendo válida.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'Acerca de las etiquetas de estado',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'Archivado',
|
||||
'create' => 'Crear etiqueta de estado',
|
||||
'color' => 'Color en el gráfico',
|
||||
'default_label' => 'Etiqueta predeterminada',
|
||||
'default_label_help' => 'Esto se usa para asegurar que sus etiquetas de estado que utiliza con más frecuencia aparezcan en la parte superior del cuadro de selección al crear / editar activos.',
|
||||
'deployable' => 'Utilizable',
|
||||
'info' => 'Las etiquetas de estado se usan para describir los diferentes estados en que pueden estar sus activos. Por ejemplo: en reparación, perdidos/robados, etc. Puede crear nuevas etiquetas de estado para equipos utilizables, pendientes o archivados.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Nombre de estado',
|
||||
'pending' => 'Pendiente',
|
||||
'status_type' => 'Tipo de estado',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Campos de la persona que tiene asignado el elemento',
|
||||
'percent_complete' => '% completo',
|
||||
'uploading' => 'Subiendo... ',
|
||||
'upload_error' => 'Error al cargar el archivo. Por favor, compruebe que no hay filas vacías y que no hay nombres de columna duplicados.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'Copiar al portapapeles',
|
||||
'copied' => '¡Copiado!',
|
||||
'status_compatibility' => 'Si los activos ya están asignados, no se pueden cambiar a un tipo de estado no utilizable y este cambio de valor se omitirá.',
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Administrar',
|
||||
'field' => 'Campo',
|
||||
'about_fieldsets_title' => 'Acerca de los grupos de campos',
|
||||
'about_fieldsets_text' => 'Los grupos de campos personalizados te permiten agrupar campos que se usan frecuentemente para determinados modelos de equipos.',
|
||||
'about_fieldsets_text' => 'Los grupos de campos le permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.',
|
||||
'custom_format' => 'Expresión regular personalizada...',
|
||||
'encrypt_field' => 'Cifrar el valor de este campo en la base de datos',
|
||||
'encrypt_field_help' => 'ADVERTENCIA: Cifrar un campo hace que no se pueda buscar.',
|
||||
|
||||
@@ -49,12 +49,11 @@ return [
|
||||
'error_redirect' => 'ERROR: 301/302 :endpoint devuelve una redirección. Por razones de seguridad, no seguimos redirecciones. Por favor, utilice el punto final actual.',
|
||||
'error_misc' => 'Algo salió mal. :( ',
|
||||
'webhook_fail' => ' Notificación de webhook fallida: Compruebe que la URL sigue siendo válida.',
|
||||
'webhook_channel_not_found' => ' webhook channel not found.'
|
||||
'webhook_channel_not_found' => ' webhook channel not found.',
|
||||
'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found <a href="https://support.microsoft.com/en-us/office/create-incoming-webhooks-with-workflows-for-microsoft-teams-8ae491c7-0394-4861-ba59-055e33f75498" target="_blank"> here.</a>',
|
||||
],
|
||||
|
||||
'location_scoping' => [
|
||||
'not_saved' => 'Your settings were not saved.',
|
||||
'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
'about' => 'Acerca de las etiquetas de estado',
|
||||
'about' => 'About Status Types',
|
||||
'archived' => 'Archivado',
|
||||
'create' => 'Crear etiqueta de estado',
|
||||
'color' => 'Color en el gráfico',
|
||||
'default_label' => 'Etiqueta predeterminada',
|
||||
'default_label_help' => 'Esto se usa para asegurar que sus etiquetas de estado que utiliza con más frecuencia aparezcan en la parte superior del cuadro de selección al crear / editar activos.',
|
||||
'deployable' => 'Utilizable',
|
||||
'info' => 'Las etiquetas de estado se usan para describir los diferentes estados en que pueden estar sus activos. Por ejemplo: en reparación, perdidos/robados, etc. Puede crear nuevas etiquetas de estado para equipos utilizables, pendientes o archivados.',
|
||||
'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, <a href="https://snipe-it.readme.io/docs/overview#status-labels" target="_blank">see the documentation <i class="fa fa-external-link"></i></a>.',
|
||||
'name' => 'Nombre de estado',
|
||||
'pending' => 'Pendiente',
|
||||
'status_type' => 'Tipo de estado',
|
||||
|
||||
@@ -522,7 +522,7 @@ return [
|
||||
'checked_out_to_fields' => 'Campos de la persona que tiene asignado el elemento',
|
||||
'percent_complete' => '% completo',
|
||||
'uploading' => 'Subiendo... ',
|
||||
'upload_error' => 'Error al cargar el archivo. Por favor, compruebe que no hay filas vacías y que no hay nombres de columna duplicados.',
|
||||
'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
|
||||
'copy_to_clipboard' => 'Copiar al portapapeles',
|
||||
'copied' => '¡Copiado!',
|
||||
'status_compatibility' => 'Si los activos ya están asignados, no se pueden cambiar a un tipo de estado no utilizable y este cambio de valor se omitirá.',
|
||||
|
||||
@@ -18,7 +18,7 @@ return array(
|
||||
'confirm' => '¿Está seguro de que desea eliminar este componente?',
|
||||
'error' => 'Hubo un problema eliminando el componente. Por favor, inténtelo de nuevo.',
|
||||
'success' => 'El componente fue borrado correctamente.',
|
||||
'error_qty' => 'Some components of this type are still checked out. Please check them in and try again.',
|
||||
'error_qty' => 'Algunos componentes de este tipo todavía están desactivados. Por favor, compruébalos e inténtalo de nuevo.',
|
||||
),
|
||||
|
||||
'checkout' => array(
|
||||
|
||||
@@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'Administrar',
|
||||
'field' => 'Campo',
|
||||
'about_fieldsets_title' => 'Acerca de los grupos de campos',
|
||||
'about_fieldsets_text' => 'Los grupos de campos personalizados te permiten agrupar campos que se usan frecuentemente para determinados modelos de equipos.',
|
||||
'about_fieldsets_text' => 'Los grupos de campos le permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.',
|
||||
'custom_format' => 'Expresión regular personalizada...',
|
||||
'encrypt_field' => 'Cifrar el valor de este campo en la base de datos',
|
||||
'encrypt_field_help' => 'ADVERTENCIA: Cifrar un campo hace que no se pueda buscar.',
|
||||
|
||||
@@ -14,7 +14,7 @@ return [
|
||||
No tiene ninguna depreciación configurada.
|
||||
Por favor, configure al menos una depreciación para ver el informe de depreciación.',
|
||||
'depreciation_method' => 'Informe de amortización',
|
||||
'linear_depreciation' => 'Linear (Default)',
|
||||
'half_1' => 'Half-year convention, always applied',
|
||||
'linear_depreciation' => 'Lineal (por defecto)',
|
||||
'half_1' => 'Convención de Half-year siempre aplicada',
|
||||
'half_2' => 'Convención semestral, aplicada con condición',
|
||||
];
|
||||
|
||||
@@ -56,7 +56,7 @@ return [
|
||||
'asset_location_update_actual' => 'Actualizar sólo la ubicación actual',
|
||||
'asset_not_deployable' => 'Ese estado de activos es no utilizable. Este activo no puede ser asignado.',
|
||||
'asset_not_deployable_checkin' => 'Ese estado del activo no es utilizable. El uso de esta etiqueta de estado ingresará el activo.',
|
||||
'asset_deployable' => 'This asset can be checked out.',
|
||||
'asset_deployable' => 'Este activo puede ser revisado.',
|
||||
'processing_spinner' => 'Procesando... (Esto puede tomar un poco de tiempo en archivos grandes)',
|
||||
'processing' => 'Procesando... ',
|
||||
'optional_infos' => 'Información opcional',
|
||||
|
||||
@@ -27,7 +27,7 @@ return [
|
||||
'undeployable_tooltip' => 'Este activo tiene una etiqueta de estado que es no utilizable y no puede ser asignado en este momento.',
|
||||
'view' => 'Ver activo',
|
||||
'csv_error' => 'Hay un error en su archivo CSV:',
|
||||
'import_text' => '<p>Upload a CSV that contains asset history. The assets and users MUST already exist in the system, or they will be skipped. Matching assets for history import happens against the asset tag. We will try to find a matching user based on the user\'s name you provide, and the criteria you select below. If you do not select any criteria below, it will simply try to match on the username format you configured in the <code>Admin > General Settings</code>.</p><p>Fields included in the CSV must match the headers: <strong>Asset Tag, Name, Checkout Date, Checkin Date</strong>. Any additional fields will be ignored. </p><p>Checkin Date: blank or future checkin dates will checkout items to associated user. Excluding the Checkin Date column will create a checkin date with todays date.</p> ',
|
||||
'import_text' => '<p>Cargue un archivo CSV que contenga el historial de los activos. Los activos y los usuarios DEBEN existir ya en el sistema, o serán omitidos. La comparación de activos para importar el historial se realiza con la placa del activo. Intentaremos encontrar un usuario usando el nombre del usuario que proporcione y los criterios que seleccione a continuación. Si no selecciona ningún criterio, el sistema simplemente intentará usar el formato de nombre de usuario configurado en <code>Administrador > Configuración General</code>.</p><p>Los campos incluidos en el CSV deben coincidir con los encabezados: <strong>Asset Tag, Name, Checkout Date, Checkin Date</strong>. Cualquier campo adicional será ignorado.</p><p>Checkin Date(Fecha de recepción): dejar en blanco o usar fechas futuras asignará los elementos al usuario asociado. Excluir la columna Checkin Date creará una fecha de recepción con la fecha de hoy.</p> ',
|
||||
'csv_import_match_f-l' => 'Intente asociar usuarios usando el formato <strong>nombre.apellido</strong> (<code>jane.smith</code>)',
|
||||
'csv_import_match_initial_last' => 'Intente asociar los usuarios usando el formato <strong>inicial del nombre y apellido</strong> (<code>jsmith</code>)',
|
||||
'csv_import_match_first' => 'Intentar asociar los usuarios usando el formato <strong>primer nombre</strong> (<code>jane</code>)',
|
||||
|
||||
@@ -66,14 +66,14 @@ return [
|
||||
'file_already_deleted' => 'El archivo seleccionado ya fue eliminado',
|
||||
'header_row_has_malformed_characters' => 'Uno o más atributos de la fila de encabezado contiene caracteres UTF-8 mal formados',
|
||||
'content_row_has_malformed_characters' => 'Uno o más atributos en la primera fila contienen caracteres UTF-8 mal formados',
|
||||
'transliterate_failure' => 'Transliteration from :encoding to UTF-8 failed due to invalid characters in input'
|
||||
'transliterate_failure' => 'La transliteración de :encoding a UTF-8 falló debido a caracteres no válidos en la entrada'
|
||||
],
|
||||
|
||||
|
||||
'delete' => [
|
||||
'confirm' => '¿Está seguro de que desea eliminar este activo?',
|
||||
'error' => 'Hubo un problema al eliminar el activo. Por favor, inténtelo de nuevo.',
|
||||
'assigned_to_error' => '{1}Asset Tag: :asset_tag is currently checked out. Check in this device before deletion.|[2,*]Asset Tags: :asset_tag are currently checked out. Check in these devices before deletion.',
|
||||
'assigned_to_error' => '{1}Tag de activos: :asset_tag está actualmente desprotegido. Compruebe este dispositivo antes de eliminarlo. [2,*]Etiquetas de activos: :asset_tag están desactivadas. Revisa estos dispositivos antes de eliminarlos.',
|
||||
'nothing_updated' => 'No se seleccionaron los activos, por lo que no se eliminó nada.',
|
||||
'success' => 'El activo se ha eliminado correctamente.',
|
||||
],
|
||||
@@ -100,9 +100,9 @@ return [
|
||||
],
|
||||
|
||||
'requests' => [
|
||||
'error' => 'Request was not successful, please try again.',
|
||||
'success' => 'Request successfully submitted.',
|
||||
'canceled' => 'Request successfully canceled.',
|
||||
'error' => 'Solicitud no exitosa, por favor inténtelo de nuevo.',
|
||||
'success' => 'Solicitud enviada con éxito.',
|
||||
'canceled' => 'Solicitud cancelada con éxito.',
|
||||
'cancel' => 'Cancelar solicitud para este elemento',
|
||||
],
|
||||
|
||||
|
||||
@@ -39,5 +39,5 @@ return [
|
||||
'signed_by_finance_auditor' => 'Firmado por (Auditor de Finanzas):',
|
||||
'signed_by_location_manager' => 'Firmado por (Supervisor de la ubicación):',
|
||||
'signed_by' => 'Firmado por:',
|
||||
'clone' => 'Clone Location',
|
||||
'clone' => 'Clonar ubicación',
|
||||
];
|
||||
|
||||
@@ -4,7 +4,7 @@ return [
|
||||
'info' => 'Seleccione las opciones que desee para su informe de activos.',
|
||||
'deleted_user' => 'Usuario eliminado',
|
||||
'send_reminder' => 'Enviar recordatorio',
|
||||
'cannot_send_reminder' => 'User has been deleted or does not have an email address so cannot receive a reminder',
|
||||
'cannot_send_reminder' => 'El usuario ha sido eliminado o no tiene una dirección de correo electrónico, por lo que no puede recibir un recordatorio',
|
||||
'reminder_sent' => 'Recordatorio enviado',
|
||||
'acceptance_deleted' => 'Solicitud de aceptación eliminada',
|
||||
'acceptance_request' => 'Solicitud de aceptación',
|
||||
|
||||
@@ -8,7 +8,7 @@ return [
|
||||
'ad_append_domain' => 'Asignar nombre de dominio al campo del nombre de usuario',
|
||||
'ad_append_domain_help' => 'El usuario no necesita escribir "usuario@dominio.local", puede escribir únicamente "usuario".',
|
||||
'admin_cc_email' => 'Copiar en correo electrónico',
|
||||
'admin_cc_email_help' => 'Send a copy of checkin/checkout emails to this address.',
|
||||
'admin_cc_email_help' => 'Enviar una copia de los correos electrónicos de checkin/checkout a esta dirección.',
|
||||
'admin_settings' => 'Configuración de administración',
|
||||
'is_ad' => 'Este es un servidor de Directorio Activo',
|
||||
'alerts' => 'Alertas',
|
||||
@@ -35,14 +35,14 @@ return [
|
||||
'backups_clean_helptext' => "Esto puede ser útil si está cambiando entre versiones de bases de datos",
|
||||
'backups_upload' => 'Cargar copia de seguridad',
|
||||
'backups_path' => 'Las copias de seguridad en el servidor se almacenan en <code>:path</code>',
|
||||
'backups_restore_warning' => 'Use the restore button <small><span class="btn btn-xs btn-warning"><i class="text-white fas fa-retweet" aria-hidden="true"></i></span></small> to restore from a previous backup. (This does not currently work with S3 file storage or Docker.)<br><br>Your <strong>entire :app_name database and any uploaded files will be completely replaced</strong> by what\'s in the backup file ',
|
||||
'backups_restore_warning' => 'Utilice el botón de restauración <small><span class="btn btn-xs btn-warning"><i class="text-white fas fa-retweet" aria-hidden="true"></i></span></small> para restaurar desde una copia de seguridad anterior. (Actualmente esto no funciona con almacenamiento de archivos S3 o Docker).<br><br>Su <strong>base de datos completa de :app_name y cualquier archivo cargado será completamente reemplazado</strong> por lo que hay en la copia de seguridad. ',
|
||||
'backups_logged_out' => 'A todos los usuarios existentes, incluido usted, se le cerrará la sesión una vez que la restauración haya finalizado.',
|
||||
'backups_large' => 'Las copias de seguridad muy grandes pueden agotar el tiempo de espera en el intento de restauración y todavía pueden necesitar ser ejecutadas a través de la línea de comandos. ',
|
||||
'barcode_settings' => 'Configuración del código de barras',
|
||||
'confirm_purge' => 'Confirmar la purga',
|
||||
'confirm_purge_help' => 'Introduzca el texto "DELETE" en la casilla de abajo para purgar sus registros borrados. Esta acción no se puede deshacer y borrará PERMANENTAMENTE todos los elementos y usuarios eliminados. Debería hacer primero una copia de seguridad, para estar seguro.',
|
||||
'custom_css' => 'CSS Personalizado',
|
||||
'custom_css_placeholder' => 'Add your custom CSS',
|
||||
'custom_css_placeholder' => 'Añade tu CSS personalizado',
|
||||
'custom_css_help' => 'Introduzca cualquier CSS personalizado que desee utilizar. No incluya las etiquetas <style></style>.',
|
||||
'custom_forgot_pass_url' => 'URL de restablecimiento de contraseña personalizada',
|
||||
'custom_forgot_pass_url_help' => 'Esto reemplaza la URL de contraseña olvidada incorporada en la pantalla de inicio de sesión, es útil para dirigir a las personas a la funcionalidad de restablecimiento de contraseña LDAP interna o alojada. Deshabilitará efectivamente la funcionalidad de olvido de contraseña del usuario local.',
|
||||
@@ -50,7 +50,7 @@ return [
|
||||
'dashboard_message_help' => 'Este texto aparecerá en el panel para cualquiera que tenga permiso de ver el Panel.',
|
||||
'default_currency' => 'Divisa predeterminada',
|
||||
'default_eula_text' => 'Acuerdo de uso predeterminado',
|
||||
'default_eula_text_placeholder' => 'Add your default EULA text',
|
||||
'default_eula_text_placeholder' => 'Añade tu texto de EULA por defecto',
|
||||
'default_language' => 'Idioma predeterminado',
|
||||
'default_eula_help_text' => 'También puede asociar acuerdos de uso personalizados a categorías específicas.',
|
||||
'acceptance_note' => 'Añada una nota para su decisión (opcional)',
|
||||
@@ -64,8 +64,8 @@ return [
|
||||
'enabled' => 'Habilitado',
|
||||
'eula_settings' => 'Configuración de los acuerdos de uso',
|
||||
'eula_markdown' => 'Estos acuerdos de uso permiten <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>.',
|
||||
'empty_row_count' => 'Field Start Offset (Empty Rows)',
|
||||
'empty_row_count_help' => 'Fields will begin populating after this many empty rows are skipped at the top of the label.',
|
||||
'empty_row_count' => 'Desplazamiento de inicio de campo (filas vacías)',
|
||||
'empty_row_count_help' => 'Los campos comenzarán a rellenar después de que se omitan muchas filas vacías en la parte superior de la etiqueta.',
|
||||
'favicon' => 'Favicon',
|
||||
'favicon_format' => 'Los tipos de archivo aceptados son ico, png y gif. Es posible que otros formatos de imagen no funcionen en todos los navegadores.',
|
||||
'favicon_size' => 'Los Favicons deben ser imágenes cuadradas, de 16x16 píxeles.',
|
||||
@@ -111,7 +111,7 @@ return [
|
||||
'ldap_pword' => 'Contraseña de enlace LDAP',
|
||||
'ldap_basedn' => 'Enlazar base DN',
|
||||
'ldap_filter' => 'Filtro LDAP',
|
||||
'ldap_pw_sync' => 'Cache LDAP Passwords',
|
||||
'ldap_pw_sync' => 'Cachear contraseñas LDAP',
|
||||
'ldap_pw_sync_help' => 'Uncheck this box if you do not wish to keep LDAP passwords cached as local hashed 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' => 'Campo nombre de usuario',
|
||||
'ldap_lname_field' => 'Apellido',
|
||||
@@ -136,7 +136,7 @@ return [
|
||||
'login_user_agent' => 'Agente de usuario',
|
||||
'login_help' => 'Lista de intentos de inicio de sesión',
|
||||
'login_note' => 'Nota en inicio de sesión',
|
||||
'login_note_placeholder' => "If you do not have a login or have found a device belonging to this company, please call technical support at 888-555-1212. Thank you.",
|
||||
'login_note_placeholder' => "Si no tiene acceso o ha encontrado un dispositivo perteneciente a esta empresa, llame al soporte técnico al 888-555-1212. Gracias.",
|
||||
'login_note_help' => 'Opcionalmente incluya algunas frases en su pantalla de inicio de sesión, por ejemplo para ayudar a las personas que han encontrado un dispositivo perdido o robado. Este campo acepta <a href="https://help.github.com/articles/github-flavored-markdown/">markdown estilo Github</a>',
|
||||
'login_remote_user_text' => 'Opciones de inicio de sesión de usuario remoto',
|
||||
'login_remote_user_enabled_text' => 'Habilitar inicio de sesión con encabezado de usuario remoto',
|
||||
@@ -152,10 +152,10 @@ return [
|
||||
'logo_print_assets_help' => 'Utilice la marca de la empresa en las listas de activos imprimibles ',
|
||||
'full_multiple_companies_support_help_text' => 'Limitar los usuarios asignados a compañías (incluyendo administradores) solo a los activos de esa compañía.',
|
||||
'full_multiple_companies_support_text' => 'Soporte completo a múltiples compañías',
|
||||
'scope_locations_fmcs_support_text' => 'Scope Locations with Full Multiple Companies Support',
|
||||
'scope_locations_fmcs_support_help_text' => 'Restrict locations to their selected company.',
|
||||
'scope_locations_fmcs_check_button' => 'Check Compatibility',
|
||||
'scope_locations_fmcs_support_disabled_text' => 'This option is disabled because you have conflicting locations set for :count or more items.',
|
||||
'scope_locations_fmcs_support_text' => 'Lugares de Alcance con soporte completo para múltiples empresas',
|
||||
'scope_locations_fmcs_support_help_text' => 'Restringir las ubicaciones a su empresa seleccionada.',
|
||||
'scope_locations_fmcs_check_button' => 'Comprobar compatibilidad',
|
||||
'scope_locations_fmcs_support_disabled_text' => 'Esta opción está deshabilitada porque tienes lugares en conflicto establecidos para :count o más elementos.',
|
||||
'show_in_model_list' => 'Mostrar en menús desplegables de modelos',
|
||||
'optional' => 'opcional',
|
||||
'per_page' => 'Resultados por página',
|
||||
@@ -339,10 +339,10 @@ return [
|
||||
'purge_help' => 'Purgar registros eliminados',
|
||||
'ldap_extension_warning' => 'No parece que la extensión LDAP esté instalada o habilitada en este servidor. Todavía puede guardar su configuración, pero necesitará habilitar la extensión LDAP para PHP antes de que funcione la sincronización LDAP o el inicio de sesión.',
|
||||
'ldap_ad' => 'LDAP/AD',
|
||||
'ldap_test_label' => 'Test LDAP Sync',
|
||||
'ldap_test_login' => ' Test LDAP Login',
|
||||
'ldap_username_placeholder' => 'LDAP Username',
|
||||
'ldap_password_placeholder' => 'LDAP Password',
|
||||
'ldap_test_label' => 'Probar sincronización LDAP',
|
||||
'ldap_test_login' => ' Probar Login LDAP',
|
||||
'ldap_username_placeholder' => 'Usuario LDAP',
|
||||
'ldap_password_placeholder' => 'Contraseña LDAP',
|
||||
'employee_number' => 'Número de empleado',
|
||||
'create_admin_user' => 'Crear un usuario ::',
|
||||
'create_admin_success' => '¡Éxito! ¡Su usuario admin ha sido añadido!',
|
||||
@@ -354,8 +354,8 @@ return [
|
||||
'setup_migration_create_user' => 'Siguiente: Crear usuario',
|
||||
'ldap_settings_link' => 'Página de configuración de LDAP',
|
||||
'slack_test' => 'Prueba de integración de <i class="fab fa-slack"></i>',
|
||||
'status_label_name' => 'Status Label Name',
|
||||
'super_admin_only' => 'Super Admin Only',
|
||||
'status_label_name' => 'Etiqueta de estado',
|
||||
'super_admin_only' => 'Sólo Super Admin',
|
||||
'label2_enable' => 'Nuevo motor de etiquetas',
|
||||
'label2_enable_help' => 'Cambiar al nuevo motor de etiquetas. <b>Nota: Deberá guardar esta configuración antes de configurar otros parámetros.</b>',
|
||||
'label2_template' => 'Plantilla',
|
||||
@@ -390,31 +390,31 @@ return [
|
||||
'database_driver' => 'Controlador de base de datos',
|
||||
'bs_table_storage' => 'Almacenamiento de tabla',
|
||||
'timezone' => 'Zona horaria',
|
||||
'test_mail' => 'Test Mail',
|
||||
'test_mail' => 'Probar Correo',
|
||||
'profile_edit' => 'Editar perfil',
|
||||
'profile_edit_help' => 'Permitir que los usuarios editen sus propios perfiles.',
|
||||
'default_avatar' => 'Custom Default Avatar',
|
||||
'default_avatar' => 'Avatar personalizado por defecto',
|
||||
'default_avatar_help' => 'Esta imagen se mostrará como la imagen de perfil si el usuario no tiene foto de perfil.',
|
||||
'restore_default_avatar' => 'Restaurar <a href=":default_avatar" data-toggle="lightbox" data-type="image">avatar original por defecto del sistema</a>',
|
||||
'restore_default_avatar_help' => '',
|
||||
'due_checkin_days' => 'Advertencia para próximos ingresos',
|
||||
'due_checkin_days_help' => '¿Cuántos días antes de la fecha prevista de ingreso de un activo debe figurar en la página «Próximos a ingresar»?',
|
||||
'no_groups' => 'Todavía no se han creado grupos. Para agregar uno, visite<code>Configuración de administración > Grupos de permisos</code>.',
|
||||
'text' => 'Text',
|
||||
'text' => 'Texto',
|
||||
|
||||
'username_formats' => [
|
||||
'username_format' => 'Formato del nombre de usuario',
|
||||
'firstname_lastname_format' => 'First Name Last Name (jane.smith)',
|
||||
'first_name_format' => 'First Name (jane)',
|
||||
'last_name_format' => 'Last Name (doe)',
|
||||
'filastname_format' => 'First Initial Last Name (jsmith)',
|
||||
'lastnamefirstinitial_format' => 'Last Name First Initial (smithj)',
|
||||
'firstname_lastname_format' => 'Nombre y Apellido (jane.smith)',
|
||||
'first_name_format' => 'Nombre',
|
||||
'last_name_format' => 'Apellido',
|
||||
'filastname_format' => 'Inicial del nombre y apellido (jsmith)',
|
||||
'lastnamefirstinitial_format' => 'Apellido e inicial del nombre (smithj)',
|
||||
'firstname_lastname_underscore_format' => 'First Name Last Name (jane_smith)',
|
||||
'firstinitial.lastname' => 'First Initial Last Name (j.smith)',
|
||||
'lastname_firstinitial' => 'Last Name First Initial (smith_j)',
|
||||
'lastname_dot_firstinitial_format' => 'Last Name First Initial (smith.j)',
|
||||
'firstnamelastname' => 'First Name Last Name (janesmith)',
|
||||
'firstnamelastinitial' => 'First Name Last Initial (janes)',
|
||||
'firstinitial.lastname' => 'Inicial del nombre y apellido (j.smith)',
|
||||
'lastname_firstinitial' => 'Apellido e inicial del nombre (smith_j)',
|
||||
'lastname_dot_firstinitial_format' => 'Apellido e inicial del nombre (smithj.)',
|
||||
'firstnamelastname' => 'Nombre y apellido (janesmith)',
|
||||
'firstnamelastinitial' => 'Nombre e inicial del apellido(janes)',
|
||||
'lastnamefirstname' => 'Apellido.Nombre (smith.jane)',
|
||||
],
|
||||
|
||||
@@ -422,7 +422,7 @@ return [
|
||||
'email_format' => 'Formato de correo electrónico',
|
||||
'firstname_lastname_format' => 'Nombre y apellido (jane.smith@ejemplo.com)',
|
||||
'first_name_format' => 'Nombre (jane@ejemplo.com)',
|
||||
'last_name_format' => 'Last Name (doe@example.com)',
|
||||
'last_name_format' => 'Apellido (castillo@ejemplo.com)',
|
||||
'filastname_format' => 'Inicial del nombre y apellido (jsmith@ejemplo.com)',
|
||||
'lastnamefirstinitial_format' => 'Apellido e inicial del nombre (smithj@example.com)',
|
||||
'firstname_lastname_underscore_format' => 'Nombre y apellido (jane_smith@example.com)',
|
||||
@@ -437,10 +437,10 @@ return [
|
||||
|
||||
|
||||
'logo_labels' => [
|
||||
'acceptance_pdf_logo' => 'PDF Logo',
|
||||
'acceptance_pdf_logo' => 'Logo PDF',
|
||||
'email_logo' => 'Logo de correo electrónico',
|
||||
'label_logo' => 'Logo de etiqueta',
|
||||
'logo' => 'Site Logo',
|
||||
'logo' => 'Logotipo del sitio',
|
||||
'favicon' => 'Favicon',
|
||||
],
|
||||
|
||||
@@ -449,26 +449,26 @@ return [
|
||||
],
|
||||
|
||||
'logo_option_types' => [
|
||||
'text' => 'Text',
|
||||
'text' => 'Texto',
|
||||
'logo' => 'Logo',
|
||||
'logo_and_text' => 'Logo and Text',
|
||||
'logo_and_text' => 'Logo y texto',
|
||||
],
|
||||
|
||||
|
||||
'legends' => [
|
||||
'scoping' => 'Scoping',
|
||||
'formats' => 'Default Formats',
|
||||
'profiles' => 'User Profiles',
|
||||
'eula' => 'EULA & Acceptance Preferences',
|
||||
'scoping' => 'Alcance',
|
||||
'formats' => 'Formatos por defecto',
|
||||
'profiles' => 'Perfiles de Usuario',
|
||||
'eula' => 'Preferencias de aceptación y EULA',
|
||||
'misc_display' => 'Miscellaneous Display Options',
|
||||
'email' => 'Email Preferences',
|
||||
'email' => 'Preferencias de correo electrónico',
|
||||
'checkin' => 'Checkin Preferences',
|
||||
'dashboard' => 'Login & Dashboard Preferences',
|
||||
'misc' => 'Miscellaneous',
|
||||
'logos' => 'Logos & Display',
|
||||
'colors' => 'Colors & Skins',
|
||||
'footer' => 'Footer Preferences',
|
||||
'security' => 'Security Preferences',
|
||||
'dashboard' => 'Preferencias de Inicio de Sesión e Interfaz',
|
||||
'misc' => 'Varios',
|
||||
'logos' => 'Logos y pantalla',
|
||||
'colors' => 'Colores y aspectos',
|
||||
'footer' => 'Preferencias del pie de página',
|
||||
'security' => 'Preferencias de seguridad',
|
||||
'general' => 'General',
|
||||
'intervals' => 'Intervals & Thresholds',
|
||||
],
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user