mirror of
https://github.com/snipe/snipe-it.git
synced 2025-10-29 11:21:21 +00:00
Merge remote-tracking branch 'origin/develop'
# Conflicts: # config/version.php
This commit is contained in:
commit
0ea9c0647f
@ -77,7 +77,6 @@ class AcceptanceController extends Controller
|
||||
$acceptance = CheckoutAcceptance::find($id);
|
||||
$assigned_user = User::find($acceptance->assigned_to_id);
|
||||
$settings = Setting::getSettings();
|
||||
$path_logo = '';
|
||||
$sig_filename='';
|
||||
|
||||
|
||||
@ -138,6 +137,13 @@ class AcceptanceController extends Controller
|
||||
}
|
||||
|
||||
|
||||
// Convert PDF logo to base64 for TCPDF
|
||||
// This is needed for TCPDF to properly embed the image if it's a png and the cache isn't writable
|
||||
$encoded_logo = null;
|
||||
if ($settings->acceptance_pdf_logo) {
|
||||
$encoded_logo = base64_encode(file_get_contents(public_path() . '/uploads/' . $settings->acceptance_pdf_logo));
|
||||
}
|
||||
|
||||
// Get the data array ready for the notifications and PDF generation
|
||||
$data = [
|
||||
'item_tag' => $item->asset_tag,
|
||||
@ -153,8 +159,8 @@ class AcceptanceController extends Controller
|
||||
'assigned_to' => $assigned_user->display_name,
|
||||
'site_name' => $settings->site_name,
|
||||
'company_name' => $item->company?->name?? $settings->site_name,
|
||||
'signature' => ($sig_filename) ? storage_path() . '/private_uploads/signatures/' . $sig_filename : null,
|
||||
'logo' => ($settings->acceptance_pdf_logo) ? public_path() . '/uploads/' . $settings->acceptance_pdf_logo : null,
|
||||
'signature' => (($sig_filename && array_key_exists('1', $encoded_image))) ? $encoded_image[1] : null,
|
||||
'logo' => ($encoded_logo) ?? null,
|
||||
'date_settings' => $settings->date_display_format,
|
||||
'admin' => auth()->user()->present()?->fullName,
|
||||
'qty' => $acceptance->qty ?? 1,
|
||||
|
||||
@ -184,7 +184,7 @@ class CheckoutAcceptance extends Model
|
||||
|
||||
$pdf->AddPage();
|
||||
if ($data['logo'] != null) {
|
||||
$pdf->writeHTML('<img src="'.$data['logo'].'">', true, 0, true, 0, '');
|
||||
$pdf->writeHTML('<img src="@'.$data['logo'].'">', true, 0, true, 0, '');
|
||||
} else {
|
||||
$pdf->writeHTML('<h3>'.$data['site_name'].'</h3><br /><br />', true, 0, true, 0, 'C');
|
||||
}
|
||||
@ -230,7 +230,7 @@ class CheckoutAcceptance extends Model
|
||||
$pdf->Ln();
|
||||
|
||||
if ($data['signature'] != null) {
|
||||
$pdf->writeHTML('<img src="'.$data['signature'].'">', true, 0, true, 0, '');
|
||||
$pdf->writeHTML('<img src="@'.$data['signature'].'">', true, 0, true, 0, '');
|
||||
$pdf->writeHTML('<hr>', true, 0, true, 0, '');
|
||||
$pdf->writeHTML(e($data['assigned_to']), true, 0, true, 0, 'C');
|
||||
$pdf->Ln();
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
<?php
|
||||
return array (
|
||||
'app_version' => 'v8.3.2',
|
||||
'full_app_version' => 'v8.3.2 - build 19905-g028b4e7b7',
|
||||
'build_version' => '19905',
|
||||
'app_version' => 'v8.3.3',
|
||||
'full_app_version' => 'v8.3.3 - build 20061-g884d2a955',
|
||||
'build_version' => '20061',
|
||||
'prerelease_version' => '',
|
||||
'hash_version' => 'g028b4e7b7',
|
||||
'full_hash' => 'v8.3.2-319-g028b4e7b7',
|
||||
'hash_version' => 'g884d2a955',
|
||||
'full_hash' => 'v8.3.3-154-g884d2a955',
|
||||
'branch' => 'master',
|
||||
);
|
||||
@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'crwdns6501:0crwdne6501:0',
|
||||
'field' => 'crwdns1487:0crwdne1487:0',
|
||||
'about_fieldsets_title' => 'crwdns1488:0crwdne1488:0',
|
||||
'about_fieldsets_text' => 'crwdns13508:0crwdne13508:0',
|
||||
'about_fieldsets_text' => 'crwdns13746:0crwdne13746:0',
|
||||
'custom_format' => 'crwdns6505:0crwdne6505:0',
|
||||
'encrypt_field' => 'crwdns1792:0crwdne1792:0',
|
||||
'encrypt_field_help' => 'crwdns1683:0crwdne1683:0',
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
return [
|
||||
'about_asset_depreciations' => 'crwdns819:0crwdne819:0',
|
||||
'about_depreciations' => 'crwdns820:0crwdne820:0',
|
||||
'about_depreciations' => 'crwdns13748:0crwdne13748:0',
|
||||
'asset_depreciations' => 'crwdns821:0crwdne821:0',
|
||||
'create' => 'crwdns1799:0crwdne1799:0',
|
||||
'depreciation_name' => 'crwdns823:0crwdne823:0',
|
||||
|
||||
@ -44,6 +44,8 @@ return [
|
||||
'redirect_to_checked_out_to' => 'crwdns12226:0crwdne12226:0',
|
||||
'select_statustype' => 'crwdns1167:0crwdne1167:0',
|
||||
'serial' => 'crwdns716:0crwdne716:0',
|
||||
'serial_required' => 'crwdns13774:0crwdne13774:0',
|
||||
'serial_required_post_model_update' => 'crwdns13776:0crwdne13776:0',
|
||||
'status' => 'crwdns717:0crwdne717:0',
|
||||
'tag' => 'crwdns719:0crwdne719:0',
|
||||
'update' => 'crwdns720:0crwdne720:0',
|
||||
|
||||
@ -22,6 +22,8 @@ return [
|
||||
'requested' => 'crwdns1697:0crwdne1697:0',
|
||||
'not_requestable' => 'crwdns6555:0crwdne6555:0',
|
||||
'requestable_status_warning' => 'crwdns11681:0crwdne11681:0',
|
||||
'require_serial' => 'crwdns13770:0crwdne13770:0',
|
||||
'require_serial_help' => 'crwdns13772:0crwdne13772:0',
|
||||
'restore' => 'crwdns1178:0crwdne1178:0',
|
||||
'pending' => 'crwdns1170:0crwdne1170:0',
|
||||
'undeployable' => 'crwdns1171:0crwdne1171:0',
|
||||
|
||||
@ -46,11 +46,12 @@ return array(
|
||||
'not_enough_seats' => 'crwdns11902:0crwdne11902:0',
|
||||
'mismatch' => 'crwdns12574:0crwdne12574:0',
|
||||
'unavailable' => 'crwdns12576:0crwdne12576:0',
|
||||
'license_is_inactive' => 'crwdns13798:0crwdne13798:0',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'crwdns948:0crwdne948:0',
|
||||
'not_reassignable' => 'crwdns12802:0crwdne12802:0',
|
||||
'not_reassignable' => 'crwdns13778:0crwdne13778:0',
|
||||
'success' => 'crwdns949:0crwdne949:0'
|
||||
),
|
||||
|
||||
|
||||
@ -3,12 +3,13 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'crwdns650:0crwdne650:0',
|
||||
'assoc_users' => 'crwdns13150:0crwdne13150:0',
|
||||
'assoc_users' => 'crwdns13788:0crwdne13788:0',
|
||||
'assoc_assets' => 'crwdns1404:0crwdne1404:0',
|
||||
'assoc_child_loc' => 'crwdns1405:0crwdne1405:0',
|
||||
'assigned_assets' => 'crwdns11179:0crwdne11179:0',
|
||||
'current_location' => 'crwdns11181:0crwdne11181:0',
|
||||
'open_map' => 'crwdns12696:0crwdne12696:0',
|
||||
'deleted_warning' => 'crwdns13790:0crwdne13790:0',
|
||||
|
||||
|
||||
'create' => array(
|
||||
|
||||
@ -12,7 +12,8 @@ return [
|
||||
'create' => 'crwdns644:0crwdne644:0',
|
||||
'update' => 'crwdns645:0crwdne645:0',
|
||||
'print_assigned' => 'crwdns6062:0crwdne6062:0',
|
||||
'print_all_assigned' => 'crwdns6064:0crwdne6064:0',
|
||||
'print_inventory' => 'crwdns13792:0crwdne13792:0',
|
||||
'print_all_assigned' => 'crwdns13794:0crwdne13794:0',
|
||||
'name' => 'crwdns646:0crwdne646:0',
|
||||
'address' => 'crwdns647:0crwdne647:0',
|
||||
'address2' => 'crwdns11880:0crwdne11880:0',
|
||||
|
||||
@ -11,7 +11,6 @@ return array(
|
||||
'title' => 'crwdns665:0crwdne665:0',
|
||||
'update' => 'crwdns666:0crwdne666:0',
|
||||
'view' => 'crwdns667:0crwdne667:0',
|
||||
'update' => 'crwdns666:0crwdne666:0',
|
||||
'clone' => 'crwdns669:0crwdne669:0',
|
||||
'edit' => 'crwdns670:0crwdne670:0',
|
||||
'clone' => 'crwdns669:0crwdne669:0',
|
||||
'edit' => 'crwdns670:0crwdne670:0',
|
||||
);
|
||||
|
||||
@ -24,7 +24,6 @@ return [
|
||||
'auto_assign_label' => 'crwdns11345:0crwdne11345:0',
|
||||
'auto_assign_help' => 'crwdns11347:0crwdne11347:0',
|
||||
'software_user' => 'crwdns1131:0crwdne1131:0',
|
||||
'send_email_help' => 'crwdns5920:0crwdne5920:0',
|
||||
'view_user' => 'crwdns1132:0crwdne1132:0',
|
||||
'usercsv' => 'crwdns1193:0crwdne1193:0',
|
||||
'two_factor_admin_optin_help' => 'crwdns1823:0crwdne1823:0',
|
||||
|
||||
@ -160,7 +160,7 @@ return [
|
||||
'import' => 'crwdns1411:0crwdne1411:0',
|
||||
'import_this_file' => 'crwdns11922:0crwdne11922:0',
|
||||
'importing' => 'crwdns6034:0crwdne6034:0',
|
||||
'importing_help' => 'crwdns6036:0crwdne6036:0',
|
||||
'importing_help' => 'crwdns13750:0crwdne13750:0',
|
||||
'import-history' => 'crwdns1694:0crwdne1694:0',
|
||||
'asset_maintenance' => 'crwdns1335:0crwdne1335:0',
|
||||
'asset_maintenance_report' => 'crwdns1336:0crwdne1336:0',
|
||||
@ -309,10 +309,12 @@ return [
|
||||
'total_licenses' => 'crwdns1092:0crwdne1092:0',
|
||||
'total_accessories' => 'crwdns1771:0crwdne1771:0',
|
||||
'total_consumables' => 'crwdns1772:0crwdne1772:0',
|
||||
'total_cost' => 'crwdns13822:0crwdne13822:0',
|
||||
'type' => 'crwdns1203:0crwdne1203:0',
|
||||
'undeployable' => 'crwdns1093:0crwdne1093:0',
|
||||
'unknown_admin' => 'crwdns1094:0crwdne1094:0',
|
||||
'unknown_user' => 'crwdns13404:0crwdne13404:0',
|
||||
'unit_cost' => 'crwdns13820:0crwdne13820:0',
|
||||
'username' => 'crwdns10464:0crwdne10464:0',
|
||||
'update' => 'crwdns1341:0crwdne1341:0',
|
||||
'updating_item' => 'crwdns12804:0crwdne12804:0',
|
||||
@ -353,9 +355,11 @@ return [
|
||||
'audit_overdue' => 'crwdns5988:0crwdne5988:0',
|
||||
'accept' => 'crwdns6016:0crwdne6016:0',
|
||||
'i_accept' => 'crwdns6018:0crwdne6018:0',
|
||||
'i_decline_item' => 'crwdns13490:0crwdne13490:0',
|
||||
'i_accept_item' => 'crwdns13492:0crwdne13492:0',
|
||||
'i_accept_with_count' => 'crwdns13780:0crwdne13780:0',
|
||||
'i_decline_item' => 'crwdns13782:0crwdne13782:0',
|
||||
'i_accept_item' => 'crwdns13784:0crwdne13784:0',
|
||||
'i_decline' => 'crwdns6020:0crwdne6020:0',
|
||||
'i_decline_with_count' => 'crwdns13786:0crwdne13786:0',
|
||||
'accept_decline' => 'crwdns6163:0crwdne6163:0',
|
||||
'sign_tos' => 'crwdns6022:0crwdne6022:0',
|
||||
'clear_signature' => 'crwdns6024:0crwdne6024:0',
|
||||
@ -393,6 +397,7 @@ return [
|
||||
'permissions' => 'crwdns6223:0crwdne6223:0',
|
||||
'managed_ldap' => 'crwdns6225:0crwdne6225:0',
|
||||
'export' => 'crwdns6227:0crwdne6227:0',
|
||||
'export_all_to_csv' => 'crwdns13832:0crwdne13832:0',
|
||||
'ldap_sync' => 'crwdns6229:0crwdne6229:0',
|
||||
'ldap_user_sync' => 'crwdns6231:0crwdne6231:0',
|
||||
'synchronize' => 'crwdns6233:0crwdne6233:0',
|
||||
@ -482,7 +487,9 @@ return [
|
||||
'update_existing_values' => 'crwdns11457:0crwdne11457:0',
|
||||
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'crwdns11493:0crwdne11493:0',
|
||||
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'crwdns11495:0crwdne11495:0',
|
||||
'send_welcome_email_to_users' => 'crwdns13514:0crwdne13514:0',
|
||||
'send_welcome_email_to_users' => 'crwdns13752:0crwdne13752:0',
|
||||
'send_welcome_email_help' => 'crwdns13754:0crwdne13754:0',
|
||||
'send_welcome_email_import_help' => 'crwdns13756:0crwdne13756:0',
|
||||
'send_email' => 'crwdns12108:0crwdne12108:0',
|
||||
'call' => 'crwdns12110:0crwdne12110:0',
|
||||
'back_before_importing' => 'crwdns11461:0crwdne11461:0',
|
||||
@ -512,7 +519,10 @@ return [
|
||||
'item_notes' => 'crwdns11635:0crwdne11635:0',
|
||||
'item_name_var' => 'crwdns11637:0crwdne11637:0',
|
||||
'error_user_company' => 'crwdns11833:0crwdne11833:0',
|
||||
'error_user_company_multiple' => 'crwdns13828:0crwdne13828:0',
|
||||
'error_user_company_accept_view' => 'crwdns11787:0crwdne11787:0',
|
||||
'error_assets_already_checked_out' => 'crwdns13826:0crwdne13826:0',
|
||||
'assigned_assets_removed' => 'crwdns13830:0crwdne13830:0',
|
||||
'importer' => [
|
||||
'checked_out_to_fullname' => 'crwdns11639:0crwdne11639:0',
|
||||
'checked_out_to_first_name' => 'crwdns11641:0crwdne11641:0',
|
||||
@ -584,6 +594,8 @@ return [
|
||||
'components' => 'crwdns12146:0crwdne12146:0',
|
||||
],
|
||||
|
||||
'show_inactive' => 'crwdns13818:0crwdne13818:0',
|
||||
'show_expiring' => 'crwdns13834:0crwdne13834:0',
|
||||
'more_info' => 'crwdns12288:0crwdne12288:0',
|
||||
'quickscan_bulk_help' => 'crwdns12290:0crwdne12290:0',
|
||||
'whoops' => 'crwdns12304:0crwdne12304:0',
|
||||
@ -608,6 +620,8 @@ return [
|
||||
'use_cloned_no_image_help' => 'crwdns13526:0crwdne13526:0',
|
||||
'footer_credit' => 'crwdns13282:0crwdne13282:0',
|
||||
'set_password' => 'crwdns13494:0crwdne13494:0',
|
||||
'upload_deleted' => 'crwdns13768:0crwdne13768:0',
|
||||
'child_locations' => 'crwdns13796:0crwdne13796:0',
|
||||
|
||||
// Add form placeholders here
|
||||
'placeholders' => [
|
||||
@ -624,11 +638,11 @@ return [
|
||||
'site_default' => 'crwdns13057:0crwdne13057:0',
|
||||
'default_blue' => 'crwdns13059:0crwdne13059:0',
|
||||
'blue_dark' => 'crwdns13061:0crwdne13061:0',
|
||||
'green' => 'crwdns13063:0crwdne13063:0',
|
||||
'green' => 'crwdns13758:0crwdne13758:0',
|
||||
'green_dark' => 'crwdns13065:0crwdne13065:0',
|
||||
'red' => 'crwdns13067:0crwdne13067:0',
|
||||
'red' => 'crwdns13760:0crwdne13760:0',
|
||||
'red_dark' => 'crwdns13069:0crwdne13069:0',
|
||||
'orange' => 'crwdns13071:0crwdne13071:0',
|
||||
'orange' => 'crwdns13762:0crwdne13762:0',
|
||||
'orange_dark' => 'crwdns13073:0crwdne13073:0',
|
||||
'black' => 'crwdns13075:0crwdne13075:0',
|
||||
'black_dark' => 'crwdns13077:0crwdne13077:0',
|
||||
|
||||
@ -3,9 +3,9 @@
|
||||
return [
|
||||
|
||||
'Accessory_Checkin_Notification' => 'crwdns6004:0crwdne6004:0',
|
||||
'Accessory_Checkout_Notification' => 'crwdns12060:0crwdne12060:0',
|
||||
'Asset_Checkin_Notification' => 'crwdns13620:0crwdne13620:0',
|
||||
'Asset_Checkout_Notification' => 'crwdns13622:0crwdne13622:0',
|
||||
'Accessory_Checkout_Notification' => 'crwdns13800:0crwdne13800:0',
|
||||
'Asset_Checkin_Notification' => 'crwdns13764:0crwdne13764:0',
|
||||
'Asset_Checkout_Notification' => 'crwdns13766:0crwdne13766:0',
|
||||
'Confirm_Accessory_Checkin' => 'crwdns5992:0crwdne5992:0',
|
||||
'Confirm_Asset_Checkin' => 'crwdns5990:0crwdne5990:0',
|
||||
'Confirm_component_checkin' => 'crwdns13500:0crwdne13500:0',
|
||||
@ -21,8 +21,8 @@ return [
|
||||
'Expected_Checkin_Date' => 'crwdns6012:0crwdne6012:0',
|
||||
'Expected_Checkin_Notification' => 'crwdns6030:0crwdne6030:0',
|
||||
'Expected_Checkin_Report' => 'crwdns6028:0crwdne6028:0',
|
||||
'Expiring_Assets_Report' => 'crwdns1732:0crwdne1732:0',
|
||||
'Expiring_Licenses_Report' => 'crwdns1733:0crwdne1733:0',
|
||||
'Expiring_Assets_Report' => 'crwdns13808:0crwdne13808:0',
|
||||
'Expiring_Licenses_Report' => 'crwdns13810:0crwdne13810:0',
|
||||
'Item_Request_Canceled' => 'crwdns1739:0crwdne1739:0',
|
||||
'Item_Requested' => 'crwdns1740:0crwdne1740:0',
|
||||
'License_Checkin_Notification' => 'crwdns6008:0crwdne6008:0',
|
||||
@ -31,7 +31,7 @@ return [
|
||||
'Low_Inventory_Report' => 'crwdns1745:0crwdne1745:0',
|
||||
'a_user_canceled' => 'crwdns1704:0crwdne1704:0',
|
||||
'a_user_requested' => 'crwdns1705:0crwdne1705:0',
|
||||
'acceptance_asset_accepted_to_user' => 'crwdns13478:0crwdne13478:0',
|
||||
'acceptance_asset_accepted_to_user' => 'crwdns13824:0crwdne13824:0',
|
||||
'acceptance_asset_accepted' => 'crwdns10552:0crwdne10552:0',
|
||||
'acceptance_asset_declined' => 'crwdns10554:0crwdne10554:0',
|
||||
'send_pdf_copy' => 'crwdns13480:0crwdne13480:0',
|
||||
@ -42,8 +42,9 @@ return [
|
||||
'asset_name' => 'crwdns12716:0crwdne12716:0',
|
||||
'asset_requested' => 'crwdns1711:0crwdne1711:0',
|
||||
'asset_tag' => 'crwdns6068:0crwdne6068:0',
|
||||
'assets_warrantee_alert' => 'crwdns6313:0crwdne6313:0',
|
||||
'assets_warrantee_alert' => 'crwdns13812:0crwdne13812:0',
|
||||
'assigned_to' => 'crwdns1714:0crwdne1714:0',
|
||||
'eol' => 'crwdns13814:0crwdne13814:0',
|
||||
'best_regards' => 'crwdns1715:0crwdne1715:0',
|
||||
'canceled' => 'crwdns12718:0crwdne12718:0',
|
||||
'checkin_date' => 'crwdns12720:0crwdne12720:0',
|
||||
@ -58,6 +59,7 @@ return [
|
||||
'days' => 'crwdns1729:0crwdne1729:0',
|
||||
'expecting_checkin_date' => 'crwdns12724:0crwdne12724:0',
|
||||
'expires' => 'crwdns1731:0crwdne1731:0',
|
||||
'terminates' => 'crwdns13836:0crwdne13836:0',
|
||||
'following_accepted' => 'crwdns13434:0crwdne13434:0',
|
||||
'following_declined' => 'crwdns13436:0crwdne13436:0',
|
||||
'hello' => 'crwdns1734:0crwdne1734:0',
|
||||
@ -68,16 +70,16 @@ return [
|
||||
'inventory_report' => 'crwdns11243:0crwdne11243:0',
|
||||
'item' => 'crwdns12726:0crwdne12726:0',
|
||||
'item_checked_reminder' => 'crwdns12322:0crwdne12322:0',
|
||||
'license_expiring_alert' => 'crwdns2048:0crwdne2048:0',
|
||||
'license_expiring_alert' => 'crwdns13816:0crwdne13816:0',
|
||||
'link_to_update_password' => 'crwdns1742:0crwdne1742:0',
|
||||
'login' => 'crwdns12792:0crwdne12792:0',
|
||||
'login_first_admin' => 'crwdns1743:0crwdne1743:0',
|
||||
'low_inventory_alert' => 'crwdns2046:0crwdne2046:0',
|
||||
'min_QTY' => 'crwdns1746:0crwdne1746:0',
|
||||
'name' => 'crwdns1747:0crwdne1747:0',
|
||||
'new_item_checked' => 'crwdns1748:0crwdne1748:0',
|
||||
'new_item_checked_with_acceptance' => 'crwdns13007:0crwdne13007:0',
|
||||
'new_item_checked_location' => 'crwdns13744:0crwdne13744:0',
|
||||
'new_item_checked' => 'crwdns13802:0crwdne13802:0',
|
||||
'new_item_checked_with_acceptance' => 'crwdns13804:0crwdne13804:0',
|
||||
'new_item_checked_location' => 'crwdns13806:0crwdne13806:0',
|
||||
'recent_item_checked' => 'crwdns13009:0crwdne13009:0',
|
||||
'notes' => 'crwdns12070:0crwdne12070:0',
|
||||
'password' => 'crwdns12728:0crwdne12728: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.',
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
return [
|
||||
'about_asset_depreciations' => 'Oor bate afskrywing',
|
||||
'about_depreciations' => 'U kan bate-afskrywings opstel om bates te deprecieer gebaseer op reguit-waardevermindering.',
|
||||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
|
||||
'asset_depreciations' => 'Bate afskrywing',
|
||||
'create' => 'Skep waardevermindering',
|
||||
'depreciation_name' => 'Waardevermindering Naam',
|
||||
|
||||
@ -44,6 +44,8 @@ return [
|
||||
'redirect_to_checked_out_to' => 'Go to Checked Out to',
|
||||
'select_statustype' => 'Kies Status Tipe',
|
||||
'serial' => 'Serial',
|
||||
'serial_required' => 'Asset :number requires a serial number',
|
||||
'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
|
||||
'status' => 'status',
|
||||
'tag' => 'Bate-tag',
|
||||
'update' => 'Asset Update',
|
||||
|
||||
@ -22,6 +22,8 @@ return [
|
||||
'requested' => 'versoek',
|
||||
'not_requestable' => 'Not Requestable',
|
||||
'requestable_status_warning' => 'Do not change requestable status',
|
||||
'require_serial' => 'Require Serial Number',
|
||||
'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
|
||||
'restore' => 'Herstel bate',
|
||||
'pending' => 'hangende',
|
||||
'undeployable' => 'Undeployable',
|
||||
|
||||
@ -46,11 +46,12 @@ return array(
|
||||
'not_enough_seats' => 'Not enough license seats available for checkout',
|
||||
'mismatch' => 'The license seat provided does not match the license',
|
||||
'unavailable' => 'This seat is not available for checkout.',
|
||||
'license_is_inactive' => 'This license is expired or terminated.',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'Daar was \'n probleem om die lisensie te kontroleer. Probeer asseblief weer.',
|
||||
'not_reassignable' => 'License not reassignable',
|
||||
'not_reassignable' => 'Seat has been used',
|
||||
'success' => 'Die lisensie is suksesvol nagegaan'
|
||||
),
|
||||
|
||||
|
||||
@ -3,12 +3,13 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Ligging bestaan nie.',
|
||||
'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' => 'This location is not currently deletable because it is the location of record for at least one item 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_assets' => 'Hierdie ligging is tans geassosieer met ten minste een bate en kan nie uitgevee word nie. Dateer asseblief jou bates op om nie meer hierdie ligging te verwys nie en probeer weer.',
|
||||
'assoc_child_loc' => 'Hierdie ligging is tans die ouer van ten minste een kind se plek en kan nie uitgevee word nie. Werk asseblief jou liggings by om nie meer hierdie ligging te verwys nie en probeer weer.',
|
||||
'assigned_assets' => 'Assigned Assets',
|
||||
'current_location' => 'Current Location',
|
||||
'open_map' => 'Open in :map_provider_icon Maps',
|
||||
'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
|
||||
|
||||
|
||||
'create' => array(
|
||||
|
||||
@ -12,7 +12,8 @@ return [
|
||||
'create' => 'Skep Ligging',
|
||||
'update' => 'Opdateer Plek',
|
||||
'print_assigned' => 'Print Assigned',
|
||||
'print_all_assigned' => 'Print All Assigned',
|
||||
'print_inventory' => 'Print Inventory',
|
||||
'print_all_assigned' => 'Print Inventory and Assigned',
|
||||
'name' => 'Pleknaam',
|
||||
'address' => 'adres',
|
||||
'address2' => 'Address Line 2',
|
||||
|
||||
@ -11,7 +11,6 @@ return array(
|
||||
'title' => 'Bate Modelle',
|
||||
'update' => 'Update Bate Model',
|
||||
'view' => 'Bekyk bate-model',
|
||||
'update' => 'Update Bate Model',
|
||||
'clone' => 'Klone Model',
|
||||
'edit' => 'Wysig Model',
|
||||
'clone' => 'Klone Model',
|
||||
'edit' => 'Wysig Model',
|
||||
);
|
||||
|
||||
@ -24,7 +24,6 @@ return [
|
||||
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
|
||||
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
|
||||
'software_user' => 'Sagteware Uitgesoek na: naam',
|
||||
'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
|
||||
'view_user' => 'Sien gebruiker: naam',
|
||||
'usercsv' => 'CSV-lêer',
|
||||
'two_factor_admin_optin_help' => 'Jou huidige administrasie-instellings laat selektiewe handhawing van twee-faktor-verifikasie toe.',
|
||||
|
||||
@ -160,7 +160,7 @@ return [
|
||||
'import' => 'invoer',
|
||||
'import_this_file' => 'Map fields and process this file',
|
||||
'importing' => 'Importing',
|
||||
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'import-history' => 'Invoer Geskiedenis',
|
||||
'asset_maintenance' => 'Bate Onderhoud',
|
||||
'asset_maintenance_report' => 'Asset Maintenance Report',
|
||||
@ -309,10 +309,12 @@ return [
|
||||
'total_licenses' => 'totale lisensies',
|
||||
'total_accessories' => 'totale toebehore',
|
||||
'total_consumables' => 'totale verbruiksgoedere',
|
||||
'total_cost' => 'Total Cost',
|
||||
'type' => 'tipe',
|
||||
'undeployable' => 'Un-verbintenis',
|
||||
'unknown_admin' => 'Onbekende Admin',
|
||||
'unknown_user' => 'Unknown User',
|
||||
'unit_cost' => 'Unit Cost',
|
||||
'username' => 'Gebruikersnaam',
|
||||
'update' => 'Opdateer',
|
||||
'updating_item' => 'Updating :item',
|
||||
@ -353,9 +355,11 @@ return [
|
||||
'audit_overdue' => 'Overdue for Audit',
|
||||
'accept' => 'Accept :asset',
|
||||
'i_accept' => 'I accept',
|
||||
'i_decline_item' => 'Decline this item',
|
||||
'i_accept_item' => 'Accept this item',
|
||||
'i_accept_with_count' => 'I accept :count item|I accept :count items',
|
||||
'i_decline_item' => 'Decline this item|Decline these items',
|
||||
'i_accept_item' => 'Accept this item|Accept these items',
|
||||
'i_decline' => 'I decline',
|
||||
'i_decline_with_count' => 'I decline :count item|I decline :count items',
|
||||
'accept_decline' => 'Accept/Decline',
|
||||
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
|
||||
'clear_signature' => 'Clear Signature',
|
||||
@ -394,6 +398,7 @@ return [
|
||||
'permissions' => 'Permissions',
|
||||
'managed_ldap' => '(Managed via LDAP)',
|
||||
'export' => 'Export',
|
||||
'export_all_to_csv' => 'Export all to CSV',
|
||||
'ldap_sync' => 'LDAP Sync',
|
||||
'ldap_user_sync' => 'LDAP User Sync',
|
||||
'synchronize' => 'Synchronize',
|
||||
@ -483,7 +488,9 @@ return [
|
||||
'update_existing_values' => 'Update Existing Values?',
|
||||
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
|
||||
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
|
||||
'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
|
||||
'send_welcome_email_to_users' => ' Send welcome email to new users',
|
||||
'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
|
||||
'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
|
||||
'send_email' => 'Send Email',
|
||||
'call' => 'Call number',
|
||||
'back_before_importing' => 'Backup before importing?',
|
||||
@ -513,7 +520,10 @@ return [
|
||||
'item_notes' => ':item Notes',
|
||||
'item_name_var' => ':item Name',
|
||||
'error_user_company' => 'Checkout target company and asset company do not match',
|
||||
'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
|
||||
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
|
||||
'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
|
||||
'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
|
||||
'importer' => [
|
||||
'checked_out_to_fullname' => 'Checked Out to: Full Name',
|
||||
'checked_out_to_first_name' => 'Checked Out to: First Name',
|
||||
@ -585,6 +595,8 @@ return [
|
||||
'components' => ':count Component|:count Components',
|
||||
],
|
||||
|
||||
'show_inactive' => 'Expired or Terminated',
|
||||
'show_expiring' => 'Expiring or Terminating Soon',
|
||||
'more_info' => 'Meer inligting',
|
||||
'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!',
|
||||
@ -609,6 +621,8 @@ return [
|
||||
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
|
||||
'footer_credit' => '<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software, made with <i class="fa fa-heart" aria-hidden="true" style="color: #a94442; font-size: 10px" /></i><span class="sr-only">love</span> by <a href="https://bsky.app/profile/snipeitapp.com" rel="noopener">@snipeitapp.com</a>.',
|
||||
'set_password' => 'Set a Password',
|
||||
'upload_deleted' => 'Upload Deleted',
|
||||
'child_locations' => 'Child Locations',
|
||||
|
||||
// Add form placeholders here
|
||||
'placeholders' => [
|
||||
@ -625,11 +639,11 @@ return [
|
||||
'site_default' => 'Site Default',
|
||||
'default_blue' => 'Default Blue',
|
||||
'blue_dark' => 'Blue (Dark Mode)',
|
||||
'green' => 'Green Dark',
|
||||
'green' => 'Green',
|
||||
'green_dark' => 'Green (Dark Mode)',
|
||||
'red' => 'Red Dark',
|
||||
'red' => 'Red',
|
||||
'red_dark' => 'Red (Dark Mode)',
|
||||
'orange' => 'Orange Dark',
|
||||
'orange' => 'Orange',
|
||||
'orange_dark' => 'Orange (Dark Mode)',
|
||||
'black' => 'Black',
|
||||
'black_dark' => 'Black (Dark Mode)',
|
||||
|
||||
@ -3,9 +3,9 @@
|
||||
return [
|
||||
|
||||
'Accessory_Checkin_Notification' => 'Accessory checked in',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: :tag',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: :tag',
|
||||
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
|
||||
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
|
||||
'Confirm_component_checkin' => 'Component checkin confirmation',
|
||||
@ -21,8 +21,8 @@ return [
|
||||
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
|
||||
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
|
||||
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
||||
'Expiring_Assets_Report' => 'Verlenging van bateverslag.',
|
||||
'Expiring_Licenses_Report' => 'Verlenging van lisensiesverslag.',
|
||||
'Expiring_Assets_Report' => 'Verlenging van bateverslag',
|
||||
'Expiring_Licenses_Report' => 'Verlenging van lisensiesverslag',
|
||||
'Item_Request_Canceled' => 'Item Versoek gekanselleer',
|
||||
'Item_Requested' => 'Item gevra',
|
||||
'License_Checkin_Notification' => 'License checked in',
|
||||
@ -31,7 +31,7 @@ return [
|
||||
'Low_Inventory_Report' => 'Lae voorraadverslag',
|
||||
'a_user_canceled' => '\'N Gebruiker het \'n itemversoek op die webwerf gekanselleer',
|
||||
'a_user_requested' => '\'N Gebruiker het \'n item op die webwerf versoek',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
|
||||
'acceptance_asset_accepted' => 'A user has accepted an item',
|
||||
'acceptance_asset_declined' => 'A user has declined an item',
|
||||
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
|
||||
@ -42,8 +42,9 @@ return [
|
||||
'asset_name' => 'Bate Naam',
|
||||
'asset_requested' => 'Bate aangevra',
|
||||
'asset_tag' => 'Bate-tag',
|
||||
'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
|
||||
'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
|
||||
'assigned_to' => 'Toevertrou aan',
|
||||
'eol' => 'EOL',
|
||||
'best_regards' => 'Beste wense,',
|
||||
'canceled' => 'Gekanselleer',
|
||||
'checkin_date' => 'Incheckdatum',
|
||||
@ -58,6 +59,7 @@ return [
|
||||
'days' => 'dae',
|
||||
'expecting_checkin_date' => 'Verwagte tjekdatum',
|
||||
'expires' => 'verstryk',
|
||||
'terminates' => 'Terminates',
|
||||
'following_accepted' => 'The following was accepted',
|
||||
'following_declined' => 'The following was declined',
|
||||
'hello' => 'hallo',
|
||||
@ -68,16 +70,16 @@ return [
|
||||
'inventory_report' => 'Inventory Report',
|
||||
'item' => 'item',
|
||||
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
|
||||
'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
|
||||
'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
|
||||
'link_to_update_password' => 'Klik asseblief op die volgende skakel om u webtuiste te verander:',
|
||||
'login' => 'Teken aan',
|
||||
'login_first_admin' => 'Teken in op jou nuwe Snipe-IT-installasie deur die volgende inligting te gebruik:',
|
||||
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
|
||||
'min_QTY' => 'Min QTY',
|
||||
'name' => 'naam',
|
||||
'new_item_checked' => '\'N Nuwe item is onder u naam nagegaan, besonderhede is hieronder.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
|
||||
'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
|
||||
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
|
||||
'notes' => 'notas',
|
||||
'password' => 'wagwoord',
|
||||
|
||||
@ -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.',
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
return [
|
||||
'about_asset_depreciations' => 'About Asset Depreciations',
|
||||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
|
||||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
|
||||
'asset_depreciations' => 'Asset Depreciations',
|
||||
'create' => 'Create Depreciation',
|
||||
'depreciation_name' => 'Depreciation Name',
|
||||
|
||||
@ -44,6 +44,8 @@ return [
|
||||
'redirect_to_checked_out_to' => 'Go to Checked Out to',
|
||||
'select_statustype' => 'Select Status Type',
|
||||
'serial' => 'Serial',
|
||||
'serial_required' => 'Asset :number requires a serial number',
|
||||
'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
|
||||
'status' => 'Status',
|
||||
'tag' => 'የንብረት መለያ',
|
||||
'update' => 'Asset Update',
|
||||
|
||||
@ -22,6 +22,8 @@ return [
|
||||
'requested' => 'Requested',
|
||||
'not_requestable' => 'Not Requestable',
|
||||
'requestable_status_warning' => 'Do not change requestable status',
|
||||
'require_serial' => 'Require Serial Number',
|
||||
'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
|
||||
'restore' => 'Restore Asset',
|
||||
'pending' => 'Pending',
|
||||
'undeployable' => 'Undeployable',
|
||||
|
||||
@ -46,11 +46,12 @@ return array(
|
||||
'not_enough_seats' => 'Not enough license seats available for checkout',
|
||||
'mismatch' => 'The license seat provided does not match the license',
|
||||
'unavailable' => 'This seat is not available for checkout.',
|
||||
'license_is_inactive' => 'This license is expired or terminated.',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'There was an issue checking in the license. Please try again.',
|
||||
'not_reassignable' => 'License not reassignable',
|
||||
'not_reassignable' => 'Seat has been used',
|
||||
'success' => 'The license was checked in successfully'
|
||||
),
|
||||
|
||||
|
||||
@ -3,12 +3,13 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Location 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' => 'This location is not currently deletable because it is the location of record for at least one item 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_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
|
||||
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
|
||||
'assigned_assets' => 'Assigned Assets',
|
||||
'current_location' => 'Current Location',
|
||||
'open_map' => 'Open in :map_provider_icon Maps',
|
||||
'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
|
||||
|
||||
|
||||
'create' => array(
|
||||
|
||||
@ -12,7 +12,8 @@ return [
|
||||
'create' => 'Create Location',
|
||||
'update' => 'Update Location',
|
||||
'print_assigned' => 'Print Assigned',
|
||||
'print_all_assigned' => 'Print All Assigned',
|
||||
'print_inventory' => 'Print Inventory',
|
||||
'print_all_assigned' => 'Print Inventory and Assigned',
|
||||
'name' => 'Location Name',
|
||||
'address' => 'አድራሻ',
|
||||
'address2' => 'Address Line 2',
|
||||
|
||||
@ -11,7 +11,6 @@ return array(
|
||||
'title' => 'የንብረት ዓይነቶች',
|
||||
'update' => 'Update Asset Model',
|
||||
'view' => 'View Asset Model',
|
||||
'update' => 'Update Asset Model',
|
||||
'clone' => 'Clone Model',
|
||||
'edit' => 'Edit Model',
|
||||
'clone' => 'Clone Model',
|
||||
'edit' => 'Edit Model',
|
||||
);
|
||||
|
||||
@ -24,7 +24,6 @@ return [
|
||||
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
|
||||
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
|
||||
'software_user' => 'Software Checked out to :name',
|
||||
'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
|
||||
'view_user' => 'View User :name',
|
||||
'usercsv' => 'CSV file',
|
||||
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
|
||||
|
||||
@ -160,7 +160,7 @@ return [
|
||||
'import' => 'Import',
|
||||
'import_this_file' => 'Map fields and process this file',
|
||||
'importing' => 'Importing',
|
||||
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'import-history' => 'Import History',
|
||||
'asset_maintenance' => 'Asset Maintenance',
|
||||
'asset_maintenance_report' => 'Asset Maintenance Report',
|
||||
@ -309,10 +309,12 @@ return [
|
||||
'total_licenses' => 'total licenses',
|
||||
'total_accessories' => 'total accessories',
|
||||
'total_consumables' => 'total consumables',
|
||||
'total_cost' => 'Total Cost',
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Un-deployable',
|
||||
'unknown_admin' => 'Unknown Admin',
|
||||
'unknown_user' => 'Unknown User',
|
||||
'unit_cost' => 'Unit Cost',
|
||||
'username' => 'Username',
|
||||
'update' => 'Update',
|
||||
'updating_item' => 'Updating :item',
|
||||
@ -353,9 +355,11 @@ return [
|
||||
'audit_overdue' => 'Overdue for Audit',
|
||||
'accept' => 'Accept :asset',
|
||||
'i_accept' => 'I accept',
|
||||
'i_decline_item' => 'Decline this item',
|
||||
'i_accept_item' => 'Accept this item',
|
||||
'i_accept_with_count' => 'I accept :count item|I accept :count items',
|
||||
'i_decline_item' => 'Decline this item|Decline these items',
|
||||
'i_accept_item' => 'Accept this item|Accept these items',
|
||||
'i_decline' => 'I decline',
|
||||
'i_decline_with_count' => 'I decline :count item|I decline :count items',
|
||||
'accept_decline' => 'Accept/Decline',
|
||||
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
|
||||
'clear_signature' => 'Clear Signature',
|
||||
@ -394,6 +398,7 @@ return [
|
||||
'permissions' => 'Permissions',
|
||||
'managed_ldap' => '(Managed via LDAP)',
|
||||
'export' => 'Export',
|
||||
'export_all_to_csv' => 'Export all to CSV',
|
||||
'ldap_sync' => 'LDAP Sync',
|
||||
'ldap_user_sync' => 'LDAP User Sync',
|
||||
'synchronize' => 'Synchronize',
|
||||
@ -483,7 +488,9 @@ return [
|
||||
'update_existing_values' => 'Update Existing Values?',
|
||||
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
|
||||
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
|
||||
'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
|
||||
'send_welcome_email_to_users' => ' Send welcome email to new users',
|
||||
'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
|
||||
'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
|
||||
'send_email' => 'Send Email',
|
||||
'call' => 'Call number',
|
||||
'back_before_importing' => 'Backup before importing?',
|
||||
@ -513,7 +520,10 @@ return [
|
||||
'item_notes' => ':item Notes',
|
||||
'item_name_var' => ':item Name',
|
||||
'error_user_company' => 'Checkout target company and asset company do not match',
|
||||
'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
|
||||
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
|
||||
'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
|
||||
'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
|
||||
'importer' => [
|
||||
'checked_out_to_fullname' => 'Checked Out to: Full Name',
|
||||
'checked_out_to_first_name' => 'Checked Out to: First Name',
|
||||
@ -585,6 +595,8 @@ return [
|
||||
'components' => ':count Component|:count Components',
|
||||
],
|
||||
|
||||
'show_inactive' => 'Expired or Terminated',
|
||||
'show_expiring' => 'Expiring or Terminating Soon',
|
||||
'more_info' => 'More Info',
|
||||
'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!',
|
||||
@ -609,6 +621,8 @@ return [
|
||||
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
|
||||
'footer_credit' => '<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software, made with <i class="fa fa-heart" aria-hidden="true" style="color: #a94442; font-size: 10px" /></i><span class="sr-only">love</span> by <a href="https://bsky.app/profile/snipeitapp.com" rel="noopener">@snipeitapp.com</a>.',
|
||||
'set_password' => 'Set a Password',
|
||||
'upload_deleted' => 'Upload Deleted',
|
||||
'child_locations' => 'Child Locations',
|
||||
|
||||
// Add form placeholders here
|
||||
'placeholders' => [
|
||||
@ -625,11 +639,11 @@ return [
|
||||
'site_default' => 'Site Default',
|
||||
'default_blue' => 'Default Blue',
|
||||
'blue_dark' => 'Blue (Dark Mode)',
|
||||
'green' => 'Green Dark',
|
||||
'green' => 'Green',
|
||||
'green_dark' => 'Green (Dark Mode)',
|
||||
'red' => 'Red Dark',
|
||||
'red' => 'Red',
|
||||
'red_dark' => 'Red (Dark Mode)',
|
||||
'orange' => 'Orange Dark',
|
||||
'orange' => 'Orange',
|
||||
'orange_dark' => 'Orange (Dark Mode)',
|
||||
'black' => 'Black',
|
||||
'black_dark' => 'Black (Dark Mode)',
|
||||
|
||||
@ -3,9 +3,9 @@
|
||||
return [
|
||||
|
||||
'Accessory_Checkin_Notification' => 'Accessory checked in',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: :tag',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: :tag',
|
||||
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
|
||||
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
|
||||
'Confirm_component_checkin' => 'Component checkin confirmation',
|
||||
@ -21,8 +21,8 @@ return [
|
||||
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
|
||||
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
|
||||
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
||||
'Expiring_Assets_Report' => 'Expiring Assets Report.',
|
||||
'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
|
||||
'Expiring_Assets_Report' => 'Expiring Assets Report',
|
||||
'Expiring_Licenses_Report' => 'Expiring Licenses Report',
|
||||
'Item_Request_Canceled' => 'Item Request Canceled',
|
||||
'Item_Requested' => 'Item Requested',
|
||||
'License_Checkin_Notification' => 'License checked in',
|
||||
@ -31,7 +31,7 @@ return [
|
||||
'Low_Inventory_Report' => 'Low Inventory Report',
|
||||
'a_user_canceled' => 'A user has canceled an item request on the website',
|
||||
'a_user_requested' => 'A user has requested an item on the website',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
|
||||
'acceptance_asset_accepted' => 'A user has accepted an item',
|
||||
'acceptance_asset_declined' => 'A user has declined an item',
|
||||
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
|
||||
@ -42,8 +42,9 @@ return [
|
||||
'asset_name' => 'Asset Name',
|
||||
'asset_requested' => 'Asset requested',
|
||||
'asset_tag' => 'የንብረት መለያ',
|
||||
'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
|
||||
'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
|
||||
'assigned_to' => 'Assigned To',
|
||||
'eol' => 'EOL',
|
||||
'best_regards' => 'Best regards,',
|
||||
'canceled' => 'Canceled',
|
||||
'checkin_date' => 'Checkin Date',
|
||||
@ -58,6 +59,7 @@ return [
|
||||
'days' => 'Days',
|
||||
'expecting_checkin_date' => 'Expected Checkin Date',
|
||||
'expires' => 'Expires',
|
||||
'terminates' => 'Terminates',
|
||||
'following_accepted' => 'The following was accepted',
|
||||
'following_declined' => 'The following was declined',
|
||||
'hello' => 'Hello',
|
||||
@ -68,16 +70,16 @@ return [
|
||||
'inventory_report' => 'Inventory Report',
|
||||
'item' => 'Item',
|
||||
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
|
||||
'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
|
||||
'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
|
||||
'link_to_update_password' => 'Please click on the following link to update your :web password:',
|
||||
'login' => 'Login',
|
||||
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
|
||||
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
|
||||
'min_QTY' => 'Min QTY',
|
||||
'name' => 'Name',
|
||||
'new_item_checked' => 'A new item has been checked out under your name, details are below.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
|
||||
'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
|
||||
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
|
||||
'notes' => 'Notes',
|
||||
'password' => 'Password',
|
||||
|
||||
@ -5,7 +5,7 @@ return [
|
||||
'manage' => 'إدارة',
|
||||
'field' => 'حقل',
|
||||
'about_fieldsets_title' => 'حول مجموعة الحقول',
|
||||
'about_fieldsets_text' => '(مجموعات الحقول) تسمح لك بإنشاء مجموعات من الحقول اللتي يمكن إعادة إستخدامها مع موديل محدد.',
|
||||
'about_fieldsets_text' => 'مجموعات الحقول تسمح لك بإنشاء مجموعات من الحقول المخصصة التي يعاد استخدامها في كثير من الأحيان لأنواع معينة من نماذج الأصول.',
|
||||
'custom_format' => 'تنسيق Regex المخصص...',
|
||||
'encrypt_field' => 'تشفير قيمة هذا الحقل في قاعدة البيانات',
|
||||
'encrypt_field_help' => 'تحذير: تشفير الحقل يجعله غير قابل للبحث.',
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
return [
|
||||
'about_asset_depreciations' => 'حول استهلاك الأصول',
|
||||
'about_depreciations' => 'يمكنك إعداد استهلاك الأصول لخفض قيمة الأصول على اساس القسط الثابت للاستهلاك.',
|
||||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
|
||||
'asset_depreciations' => 'استهلاك الأصول',
|
||||
'create' => 'إنشاء الاستهلاك',
|
||||
'depreciation_name' => 'اسم الاستهلاك',
|
||||
|
||||
@ -44,6 +44,8 @@ return [
|
||||
'redirect_to_checked_out_to' => 'Go to Checked Out to',
|
||||
'select_statustype' => 'حدد نوع الحالة',
|
||||
'serial' => 'التسلسل',
|
||||
'serial_required' => 'Asset :number requires a serial number',
|
||||
'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
|
||||
'status' => 'الحالة',
|
||||
'tag' => 'ترميز الأصل',
|
||||
'update' => 'تحديث الأصل',
|
||||
|
||||
@ -22,6 +22,8 @@ return [
|
||||
'requested' => 'تم الطلب',
|
||||
'not_requestable' => 'غير مطلوب',
|
||||
'requestable_status_warning' => 'لا تقم بتغيير حالة الطلب',
|
||||
'require_serial' => 'Require Serial Number',
|
||||
'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
|
||||
'restore' => 'استعادة الأصل',
|
||||
'pending' => 'قيد الانتظار',
|
||||
'undeployable' => 'غير قابل للتوزيع',
|
||||
|
||||
@ -46,11 +46,12 @@ return array(
|
||||
'not_enough_seats' => 'لا توجد مقاعد ترخيص كافية متاحة للدفع',
|
||||
'mismatch' => 'The license seat provided does not match the license',
|
||||
'unavailable' => 'This seat is not available for checkout.',
|
||||
'license_is_inactive' => 'This license is expired or terminated.',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'حدثت مشكلة في التحقق من الترخيص. يرجى إعادة المحاولة.',
|
||||
'not_reassignable' => 'License not reassignable',
|
||||
'not_reassignable' => 'Seat has been used',
|
||||
'success' => 'تم ادخال الترخيص بنجاح'
|
||||
),
|
||||
|
||||
|
||||
@ -3,12 +3,13 @@
|
||||
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' => 'This location is not currently deletable because it is the location of record for at least one item 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_assets' => 'هذا الموقع مرتبط حاليا بمادة عرض واحدة على الأقل ولا يمكن حذفها. يرجى تحديث مواد العرض لم تعد تشير إلى هذا الموقع ثم أعد المحاولة. ',
|
||||
'assoc_child_loc' => 'هذا الموقع هو حاليا أحد الوالدين لموقع طفل واحد على الأقل ولا يمكن حذفه. يرجى تحديث مواقعك لم تعد تشير إلى هذا الموقع ثم أعد المحاولة.',
|
||||
'assigned_assets' => 'الأصول المعينة',
|
||||
'current_location' => 'الموقع الحالي',
|
||||
'open_map' => 'Open in :map_provider_icon Maps',
|
||||
'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
|
||||
|
||||
|
||||
'create' => array(
|
||||
|
||||
@ -12,7 +12,8 @@ return [
|
||||
'create' => 'إنشاء موقع',
|
||||
'update' => 'تحديث الموقع',
|
||||
'print_assigned' => 'طباعة كل الممتلكات',
|
||||
'print_all_assigned' => 'طباعة كل المعين',
|
||||
'print_inventory' => 'Print Inventory',
|
||||
'print_all_assigned' => 'Print Inventory and Assigned',
|
||||
'name' => 'إسم الموقع',
|
||||
'address' => 'العنوان',
|
||||
'address2' => 'سطر العنوان 2',
|
||||
|
||||
@ -11,7 +11,6 @@ return array(
|
||||
'title' => 'موديلات الأصول',
|
||||
'update' => 'تحديث موديل الأصول',
|
||||
'view' => 'عرض موديل الأصول',
|
||||
'update' => 'تحديث موديل الأصول',
|
||||
'clone' => 'استنساخ الموديل',
|
||||
'edit' => 'تعديل الموديل',
|
||||
'clone' => 'استنساخ الموديل',
|
||||
'edit' => 'تعديل الموديل',
|
||||
);
|
||||
|
||||
@ -24,7 +24,6 @@ return [
|
||||
'auto_assign_label' => 'تضمين هذا المستخدم عند التعيين التلقائي للتراخيص المؤهلة',
|
||||
'auto_assign_help' => 'تخطي هذا المستخدم في التعيين التلقائي للترخيص',
|
||||
'software_user' => 'البرامج المخرجة الى: :name',
|
||||
'send_email_help' => 'يجب عليك توفير عنوان بريد إلكتروني لهذا المستخدم لإرسال بيانات اعتماده. لا يمكن إرسال بيانات الاعتماد البريدية إلا عند إنشاء المستخدم. يتم تخزين كلمات المرور في تجزئة ذات اتجاه واحد ولا يمكن استرجاعها بمجرد الحفظ.',
|
||||
'view_user' => 'عرض المستخدم :name',
|
||||
'usercsv' => 'ملف CSV',
|
||||
'two_factor_admin_optin_help' => 'تسمح إعدادات المشرف الحالية بإنفاذ انتقائي للمصادقة الثنائية.',
|
||||
|
||||
@ -160,7 +160,7 @@ return [
|
||||
'import' => 'استيراد',
|
||||
'import_this_file' => 'حقول الخريطة ومعالجة هذا الملف',
|
||||
'importing' => 'الاستيراد',
|
||||
'importing_help' => 'يمكنك استيراد الأصول، الملحقات، التراخيص، المكونات، المواد الاستهلاكية، والمستخدمين عبر ملف CSV. <br><br>يجب أن تكون CSV محددة بفواصل وأن يتم تنسيقها مع رؤوس تطابق تلك الموجودة في <a href="https://snipe-it.readme.io/docs/importing" target="_new">عينة CSVs في الوثائق</a>.',
|
||||
'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'import-history' => 'استيراد الأرشيف',
|
||||
'asset_maintenance' => 'صيانة الأصول',
|
||||
'asset_maintenance_report' => 'تقرير صيانة الأصول',
|
||||
@ -309,10 +309,12 @@ return [
|
||||
'total_licenses' => 'مجموع التراخيص',
|
||||
'total_accessories' => 'مجموع الملحقات',
|
||||
'total_consumables' => 'مجموع المواد الاستهلاكية',
|
||||
'total_cost' => 'Total Cost',
|
||||
'type' => 'اكتب',
|
||||
'undeployable' => 'غير قابلة للتوزيع',
|
||||
'unknown_admin' => 'إداري غير معروف',
|
||||
'unknown_user' => 'Unknown User',
|
||||
'unit_cost' => 'Unit Cost',
|
||||
'username' => 'اسم المستخدم',
|
||||
'update' => 'تحديث',
|
||||
'updating_item' => 'Updating :item',
|
||||
@ -353,9 +355,11 @@ return [
|
||||
'audit_overdue' => 'مراجعة الحسابات المتأخرة',
|
||||
'accept' => 'قبول :asset',
|
||||
'i_accept' => 'قبول',
|
||||
'i_decline_item' => 'Decline this item',
|
||||
'i_accept_item' => 'Accept this item',
|
||||
'i_accept_with_count' => 'I accept :count item|I accept :count items',
|
||||
'i_decline_item' => 'Decline this item|Decline these items',
|
||||
'i_accept_item' => 'Accept this item|Accept these items',
|
||||
'i_decline' => 'أنا أرفض',
|
||||
'i_decline_with_count' => 'I decline :count item|I decline :count items',
|
||||
'accept_decline' => 'قبول/رفض',
|
||||
'sign_tos' => 'قم بتسجيل الدخول أدناه للإشارة إلى أنك توافق على شروط الخدمة:',
|
||||
'clear_signature' => 'مسح التوقيع',
|
||||
@ -394,6 +398,7 @@ return [
|
||||
'permissions' => 'الأذونات',
|
||||
'managed_ldap' => '(تدار عبر LDAP)',
|
||||
'export' => 'تصدير',
|
||||
'export_all_to_csv' => 'Export all to CSV',
|
||||
'ldap_sync' => 'مزامنة LDAP',
|
||||
'ldap_user_sync' => 'مزامنة مستخدم LDAP',
|
||||
'synchronize' => 'مزامنة',
|
||||
@ -483,7 +488,9 @@ return [
|
||||
'update_existing_values' => 'تحديث القيم الموجودة؟',
|
||||
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'تم تعطيل إنشاء علامات الأصول التزايدية التلقائية لذلك يجب أن يكون لجميع الصفوف عمود "علامة الأصول" مأهول.',
|
||||
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'ملاحظة: تم تمكين إنشاء علامات الأصول التزايدية التلقائية لذلك سيتم إنشاء أصول للصفوف التي لا تحتوي على "علامة الأصول" مأهولة. الصفوف التي تحتوي على "علامة أصول" مأهولة سيتم تحديثها مع المعلومات المقدمة.',
|
||||
'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
|
||||
'send_welcome_email_to_users' => ' Send welcome email to new users',
|
||||
'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
|
||||
'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
|
||||
'send_email' => 'إرسال البريد الإلكتروني',
|
||||
'call' => 'رقم المكالمة',
|
||||
'back_before_importing' => 'النسخ الاحتياطي قبل الاستيراد؟',
|
||||
@ -513,7 +520,10 @@ return [
|
||||
'item_notes' => ':item ملاحظات',
|
||||
'item_name_var' => ':إسم العنصر',
|
||||
'error_user_company' => 'لا تتطابق الشركة المستهدفة وشركة الأصول',
|
||||
'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
|
||||
'error_user_company_accept_view' => 'الأصل الذي تم تعيينه لك ينتمي إلى شركة أخرى لذلك لا يمكنك قبوله أو رفضه، يرجى التحقق من المدير الخاص بك',
|
||||
'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
|
||||
'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
|
||||
'importer' => [
|
||||
'checked_out_to_fullname' => 'تم الخروج إلى: الاسم الكامل',
|
||||
'checked_out_to_first_name' => 'تم الخروج إلى: الاسم الأول',
|
||||
@ -585,6 +595,8 @@ return [
|
||||
'components' => ':count مكون<unk> :count مكونات',
|
||||
],
|
||||
|
||||
'show_inactive' => 'Expired or Terminated',
|
||||
'show_expiring' => 'Expiring or Terminating Soon',
|
||||
'more_info' => 'المزيد من المعلومات',
|
||||
'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!',
|
||||
@ -609,6 +621,8 @@ return [
|
||||
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
|
||||
'footer_credit' => '<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software, made with <i class="fa fa-heart" aria-hidden="true" style="color: #a94442; font-size: 10px" /></i><span class="sr-only">love</span> by <a href="https://bsky.app/profile/snipeitapp.com" rel="noopener">@snipeitapp.com</a>.',
|
||||
'set_password' => 'Set a Password',
|
||||
'upload_deleted' => 'Upload Deleted',
|
||||
'child_locations' => 'Child Locations',
|
||||
|
||||
// Add form placeholders here
|
||||
'placeholders' => [
|
||||
@ -625,11 +639,11 @@ return [
|
||||
'site_default' => 'Site Default',
|
||||
'default_blue' => 'Default Blue',
|
||||
'blue_dark' => 'Blue (Dark Mode)',
|
||||
'green' => 'Green Dark',
|
||||
'green' => 'Green',
|
||||
'green_dark' => 'Green (Dark Mode)',
|
||||
'red' => 'Red Dark',
|
||||
'red' => 'Red',
|
||||
'red_dark' => 'Red (Dark Mode)',
|
||||
'orange' => 'Orange Dark',
|
||||
'orange' => 'Orange',
|
||||
'orange_dark' => 'Orange (Dark Mode)',
|
||||
'black' => 'Black',
|
||||
'black_dark' => 'Black (Dark Mode)',
|
||||
|
||||
@ -3,9 +3,9 @@
|
||||
return [
|
||||
|
||||
'Accessory_Checkin_Notification' => 'تم تسحيل الملحق',
|
||||
'Accessory_Checkout_Notification' => 'تم التحقق من الملحق',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: :tag',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: :tag',
|
||||
'Confirm_Accessory_Checkin' => 'تأكيد تسجيل الأصول',
|
||||
'Confirm_Asset_Checkin' => 'تأكيد تسجيل الأصول',
|
||||
'Confirm_component_checkin' => 'Component checkin confirmation',
|
||||
@ -21,8 +21,8 @@ return [
|
||||
'Expected_Checkin_Date' => 'من المقرر أن يتم التحقق من الأصول التي تم إخراجها إليك في :date',
|
||||
'Expected_Checkin_Notification' => 'تذكير: تاريخ تحقق :name يقترب من الموعد النهائي',
|
||||
'Expected_Checkin_Report' => 'تقرير تسجيل الأصول المتوقع',
|
||||
'Expiring_Assets_Report' => 'تقرير الأصول المنتهية الصلاحية.',
|
||||
'Expiring_Licenses_Report' => 'تقرير التراخيص المنتهية الصلاحية.',
|
||||
'Expiring_Assets_Report' => 'تقرير الأصول المنتهية الصلاحية',
|
||||
'Expiring_Licenses_Report' => 'تقرير التراخيص المنتهية الصلاحية',
|
||||
'Item_Request_Canceled' => 'تم إلغاء طلب العنصر',
|
||||
'Item_Requested' => 'العنصر المطلوب',
|
||||
'License_Checkin_Notification' => 'تم تسجيل الرخصة',
|
||||
@ -31,7 +31,7 @@ return [
|
||||
'Low_Inventory_Report' => 'تقرير المخزون المنخفض',
|
||||
'a_user_canceled' => 'ألغى المستخدم طلب عنصر على الموقع',
|
||||
'a_user_requested' => 'طلب مستخدم عنصر على الموقع',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
|
||||
'acceptance_asset_accepted' => 'قام مستخدم بقبول عنصر',
|
||||
'acceptance_asset_declined' => 'قام مستخدم برفض عنصر',
|
||||
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
|
||||
@ -42,8 +42,9 @@ return [
|
||||
'asset_name' => 'اسم الأصل',
|
||||
'asset_requested' => 'تم طلب مادة العرض',
|
||||
'asset_tag' => 'وسم الأصل',
|
||||
'assets_warrantee_alert' => 'هناك :count أصل مع ضمان تنتهي صلاحيته في :threshold أيام.<unk> هناك :count أصول مع ضمانات تنتهي صلاحيتها في :threshold أيام.',
|
||||
'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
|
||||
'assigned_to' => 'عينت الى',
|
||||
'eol' => 'نهاية العمر',
|
||||
'best_regards' => 'أفضل التحيات،',
|
||||
'canceled' => 'ملغى',
|
||||
'checkin_date' => 'تاريخ الادخال',
|
||||
@ -58,6 +59,7 @@ return [
|
||||
'days' => 'أيام',
|
||||
'expecting_checkin_date' => 'تاريخ الادخال المتوقع',
|
||||
'expires' => 'ينتهي',
|
||||
'terminates' => 'Terminates',
|
||||
'following_accepted' => 'The following was accepted',
|
||||
'following_declined' => 'The following was declined',
|
||||
'hello' => 'مرحبا',
|
||||
@ -68,16 +70,16 @@ return [
|
||||
'inventory_report' => 'تقرير المخزون',
|
||||
'item' => 'عنصر',
|
||||
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
|
||||
'license_expiring_alert' => 'هنالك :count رخص سوف تنتهي في الأيام :threshold القادمة.',
|
||||
'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
|
||||
'link_to_update_password' => 'يرجى النقر على الرابط التالي لتحديث كلمة المرور الخاصة بك على :web :',
|
||||
'login' => 'الدخول',
|
||||
'login_first_admin' => 'قم بتسجيل الدخول إلى التثبيت الجديد من Snipe-IT باستخدام البيانات أدناه:',
|
||||
'low_inventory_alert' => 'هنالك :count عناصر أقل من الحد الأدنى للمخزون أول سوف تصبح أقل منه قريباً.',
|
||||
'min_QTY' => 'دقيقة الكمية',
|
||||
'name' => 'اسم',
|
||||
'new_item_checked' => 'تم فحص عنصر جديد تحت اسمك، التفاصيل أدناه.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
|
||||
'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
|
||||
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
|
||||
'notes' => 'ملاحظات',
|
||||
'password' => 'كلمة المرور',
|
||||
|
||||
@ -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' => 'ВНИМАНИЕ: Шифроване на поле го прави невалидно за търсене.',
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
return [
|
||||
'about_asset_depreciations' => 'Относно амортизацията на активи',
|
||||
'about_depreciations' => 'Тук можете да конфигурирате линейна амортизация на активи във времето.',
|
||||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
|
||||
'asset_depreciations' => 'Амортизация на активи',
|
||||
'create' => 'Създаване на амортизация',
|
||||
'depreciation_name' => 'Амортизация',
|
||||
|
||||
@ -44,6 +44,8 @@ return [
|
||||
'redirect_to_checked_out_to' => 'Отидете на Checked Out to',
|
||||
'select_statustype' => 'Избиране на тип на статуса',
|
||||
'serial' => 'Сериен номер',
|
||||
'serial_required' => 'Asset :number requires a serial number',
|
||||
'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
|
||||
'status' => 'Статус',
|
||||
'tag' => 'Инвентарен номер',
|
||||
'update' => 'Обновяване на актив',
|
||||
|
||||
@ -22,6 +22,8 @@ return [
|
||||
'requested' => 'Изискан',
|
||||
'not_requestable' => 'Не може да бъде изискан',
|
||||
'requestable_status_warning' => 'Да не се сменя статуса за изискване',
|
||||
'require_serial' => 'Require Serial Number',
|
||||
'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
|
||||
'restore' => 'Възстановяване на актив',
|
||||
'pending' => 'Предстоящ',
|
||||
'undeployable' => 'Не може да бъде предоставян',
|
||||
|
||||
@ -46,11 +46,12 @@ return array(
|
||||
'not_enough_seats' => 'Няма достатъчно лицензи за изписване',
|
||||
'mismatch' => 'Броя лицензни места не отговаря на броя лицензи',
|
||||
'unavailable' => 'Този лиценз за работно място не е наличен за изписване.',
|
||||
'license_is_inactive' => 'This license is expired or terminated.',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'Възникна проблем при вписването на лиценза. Моля, опитайте отново.',
|
||||
'not_reassignable' => 'Лиценза не може да се прехвърля',
|
||||
'not_reassignable' => 'Seat has been used',
|
||||
'success' => 'Лицензът е вписан'
|
||||
),
|
||||
|
||||
|
||||
@ -3,12 +3,13 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Местоположението не съществува.',
|
||||
'assoc_users' => 'Това местоположение не може да бъде изтрито, защото има поне един запис на актив или потребител, зачислен към него или съдържа под локаций. Моля обновете вашите записи, така че да не съдържат това местоположение и пробвайте да го изтриете отново. ',
|
||||
'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item 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_assets' => 'Местоположението е свързано с поне един актив и не може да бъде изтрито. Моля, актуализирайте активите, така че да не са свързани с това местоположение и опитайте отново. ',
|
||||
'assoc_child_loc' => 'В избраното местоположение е присъединено едно или повече местоположения. Моля преместете ги в друго и опитайте отново.',
|
||||
'assigned_assets' => 'Изписани Активи',
|
||||
'current_location' => 'Текущо местоположение',
|
||||
'open_map' => 'Отвори в :map_provider_icon карти',
|
||||
'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
|
||||
|
||||
|
||||
'create' => array(
|
||||
|
||||
@ -12,7 +12,8 @@ return [
|
||||
'create' => 'Създаване на местоположение',
|
||||
'update' => 'Обновяване на местоположение',
|
||||
'print_assigned' => 'Печат',
|
||||
'print_all_assigned' => 'Печат на всички отдадени',
|
||||
'print_inventory' => 'Print Inventory',
|
||||
'print_all_assigned' => 'Print Inventory and Assigned',
|
||||
'name' => 'Местоположение',
|
||||
'address' => 'Aдрес',
|
||||
'address2' => 'Адрес ред 2',
|
||||
|
||||
@ -11,7 +11,6 @@ return array(
|
||||
'title' => 'Модели на активи',
|
||||
'update' => 'Обновяване на модел на актив',
|
||||
'view' => 'Преглед на модел на актив',
|
||||
'update' => 'Обновяване на модел на актив',
|
||||
'clone' => 'Копиране на модел',
|
||||
'edit' => 'Редакция на модел',
|
||||
'clone' => 'Копиране на модел',
|
||||
'edit' => 'Редакция на модел',
|
||||
);
|
||||
|
||||
@ -24,7 +24,6 @@ return [
|
||||
'auto_assign_label' => 'Включи този потребител при автоматичното асоцииране на лицензи',
|
||||
'auto_assign_help' => 'Не включвай този потребител при автоматичното асоцииране на лицензи',
|
||||
'software_user' => 'Софтуерни продукти, изписани на :name',
|
||||
'send_email_help' => 'Трябва да предоставите е-майл адрес за този потребител за да му се изпратят името и паролата. Изпращането на име и парола може да стане при създаването на потребителя. Паролите се съхраняват криптирани и не могат да се възстановят.',
|
||||
'view_user' => 'Преглед на потребител :name',
|
||||
'usercsv' => 'CSV файл',
|
||||
'two_factor_admin_optin_help' => 'Текущите настройки на администратор позволяват избирателно прилагане на двуфакторова автентификация. ',
|
||||
|
||||
@ -160,7 +160,7 @@ return [
|
||||
'import' => 'Зареждане',
|
||||
'import_this_file' => 'Асоциирайте полетата и обработете този файл',
|
||||
'importing' => 'Импортиране',
|
||||
'importing_help' => 'Може да импортирате активи, аксесоари, лицензи, компоненти, консумативи и потребители чрез CSV файл. <br><br>CSV файла трябва да е разделен със запетая и форматирани колони, като тези от <a href="https://snipe-it.readme.io/docs/importing" target="_new">примерен CSV файл</a>.',
|
||||
'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'import-history' => 'История на въвеждане',
|
||||
'asset_maintenance' => 'Поддръжка на активи',
|
||||
'asset_maintenance_report' => 'Справка за поддръжка на активи',
|
||||
@ -309,10 +309,12 @@ return [
|
||||
'total_licenses' => 'общо лицензи',
|
||||
'total_accessories' => 'Общ брой аксесоари',
|
||||
'total_consumables' => 'Общ брой консумативи',
|
||||
'total_cost' => 'Total Cost',
|
||||
'type' => 'Тип',
|
||||
'undeployable' => 'Не може да бъде предоставян',
|
||||
'unknown_admin' => 'Непознат администратор',
|
||||
'unknown_user' => 'Unknown User',
|
||||
'unit_cost' => 'Unit Cost',
|
||||
'username' => 'Потребител',
|
||||
'update' => 'Обновяване',
|
||||
'updating_item' => 'Обновяване :item',
|
||||
@ -353,9 +355,11 @@ return [
|
||||
'audit_overdue' => 'Просрочен Одит',
|
||||
'accept' => 'Приеми :asset',
|
||||
'i_accept' => 'Съгласен съм',
|
||||
'i_decline_item' => 'Decline this item',
|
||||
'i_accept_item' => 'Accept this item',
|
||||
'i_accept_with_count' => 'I accept :count item|I accept :count items',
|
||||
'i_decline_item' => 'Decline this item|Decline these items',
|
||||
'i_accept_item' => 'Accept this item|Accept these items',
|
||||
'i_decline' => 'Отказ',
|
||||
'i_decline_with_count' => 'I decline :count item|I decline :count items',
|
||||
'accept_decline' => 'Премане/отказване',
|
||||
'sign_tos' => 'Подпишете се за да се съгласите с условията за ползване:',
|
||||
'clear_signature' => 'Изчисти подписа',
|
||||
@ -394,6 +398,7 @@ return [
|
||||
'permissions' => 'Права за достъп',
|
||||
'managed_ldap' => '(Управляван през LDAP)',
|
||||
'export' => 'Експорт',
|
||||
'export_all_to_csv' => 'Export all to CSV',
|
||||
'ldap_sync' => 'LDAP синхронизация',
|
||||
'ldap_user_sync' => 'LDAP синхронизация на потребител',
|
||||
'synchronize' => 'Синхронизиране',
|
||||
@ -483,7 +488,9 @@ return [
|
||||
'update_existing_values' => 'Обнови същестуващите стойности?',
|
||||
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Автоматичното номериране на активите е забранено, така че всички редове трябва да имат попълнен номер на актив.',
|
||||
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Бележка: Генериране на пореден номер на актив е включено, така че активите, които нямат номер ще бъдат зъздадени, докато тези, които имат номер ще бъдат обновени с предоставената информация.',
|
||||
'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
|
||||
'send_welcome_email_to_users' => ' Send welcome email to new users',
|
||||
'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
|
||||
'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
|
||||
'send_email' => 'Изпращане на имейл',
|
||||
'call' => 'Обаждане',
|
||||
'back_before_importing' => 'Архивно копие преди импортиране?',
|
||||
@ -513,7 +520,10 @@ return [
|
||||
'item_notes' => ':item бележки',
|
||||
'item_name_var' => ':item Име',
|
||||
'error_user_company' => 'Изписването към посочената фирма и асоциираната фирма към артикула не съвпадат',
|
||||
'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
|
||||
'error_user_company_accept_view' => 'Актива заведен на вас пренадлежи към друга фирма, затова не можете да го приемете или откажете. Свържете се с вашият администратор',
|
||||
'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
|
||||
'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
|
||||
'importer' => [
|
||||
'checked_out_to_fullname' => 'Изписан на: Full Name',
|
||||
'checked_out_to_first_name' => 'Изписан на: First Name',
|
||||
@ -585,6 +595,8 @@ return [
|
||||
'components' => ':count Компонент|:count Компоненти',
|
||||
],
|
||||
|
||||
'show_inactive' => 'Expired or Terminated',
|
||||
'show_expiring' => 'Expiring or Terminating Soon',
|
||||
'more_info' => 'Повече информация',
|
||||
'quickscan_bulk_help' => 'Поставянето на отметка в това квадратче ще редактира записа на актива, за да отрази това ново местоположение. Оставянето му без отметка просто ще отбележи местоположението в журнала за проверка. Обърнете внимание, че ако този актив бъде извлечен, той няма да промени местоположението на лицето, актива или местоположението, към които е извлечен.',
|
||||
'whoops' => 'Упс!',
|
||||
@ -609,6 +621,8 @@ return [
|
||||
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
|
||||
'footer_credit' => '<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software, made with <i class="fa fa-heart" aria-hidden="true" style="color: #a94442; font-size: 10px" /></i><span class="sr-only">love</span> by <a href="https://bsky.app/profile/snipeitapp.com" rel="noopener">@snipeitapp.com</a>.',
|
||||
'set_password' => 'Set a Password',
|
||||
'upload_deleted' => 'Upload Deleted',
|
||||
'child_locations' => 'Child Locations',
|
||||
|
||||
// Add form placeholders here
|
||||
'placeholders' => [
|
||||
@ -625,11 +639,11 @@ return [
|
||||
'site_default' => 'Настройки по подразбиране на сайта',
|
||||
'default_blue' => 'По подразбиране Синьо',
|
||||
'blue_dark' => 'Синьо (тъмен режим)',
|
||||
'green' => 'Тъмно Зелено',
|
||||
'green' => 'Green',
|
||||
'green_dark' => 'Зелено (тъмен режим)',
|
||||
'red' => 'Тъмно Червено',
|
||||
'red' => 'Red',
|
||||
'red_dark' => 'Червено (тъмен режим)',
|
||||
'orange' => 'Тъмно Оранжево',
|
||||
'orange' => 'Orange',
|
||||
'orange_dark' => 'Оранжево (тъмен режим)',
|
||||
'black' => 'Черно',
|
||||
'black_dark' => 'Черно (тъмен режим)',
|
||||
|
||||
@ -3,9 +3,9 @@
|
||||
return [
|
||||
|
||||
'Accessory_Checkin_Notification' => 'Аксесоарат е вписан',
|
||||
'Accessory_Checkout_Notification' => 'Изписани Аксесоари',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: :tag',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: :tag',
|
||||
'Confirm_Accessory_Checkin' => 'Потвърждение при връщане на аксесоар',
|
||||
'Confirm_Asset_Checkin' => 'Потвърждение при връщане на актив',
|
||||
'Confirm_component_checkin' => 'Component checkin confirmation',
|
||||
@ -21,8 +21,8 @@ return [
|
||||
'Expected_Checkin_Date' => 'Наближава срока за връщане на актив който е заведен на Вас, трябва да се върна на :date',
|
||||
'Expected_Checkin_Notification' => 'Напомняне: :name крайната дата за вписване наближава',
|
||||
'Expected_Checkin_Report' => 'Очакван рапорт за вписване на актив',
|
||||
'Expiring_Assets_Report' => 'Доклад за изтичащи активи.',
|
||||
'Expiring_Licenses_Report' => 'Доклад за изтичащи лицензи.',
|
||||
'Expiring_Assets_Report' => 'Доклад за изтичащи активи',
|
||||
'Expiring_Licenses_Report' => 'Доклад за изтичащи лицензи',
|
||||
'Item_Request_Canceled' => 'Заявка за артикул отменена',
|
||||
'Item_Requested' => 'Артикул заявен',
|
||||
'License_Checkin_Notification' => 'Лиценза е вписан',
|
||||
@ -31,7 +31,7 @@ return [
|
||||
'Low_Inventory_Report' => 'Доклад за нисък запас',
|
||||
'a_user_canceled' => 'Потребител е отменил заявка за елемент в уебсайта',
|
||||
'a_user_requested' => 'Потребител е направил заявка за елемент в уебсайта',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
|
||||
'acceptance_asset_accepted' => 'Потребителя прие актива',
|
||||
'acceptance_asset_declined' => 'Потребителя отказа актива',
|
||||
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
|
||||
@ -42,8 +42,9 @@ return [
|
||||
'asset_name' => 'Име на актив',
|
||||
'asset_requested' => 'Заявка за актив',
|
||||
'asset_tag' => 'Инвентарен номер',
|
||||
'assets_warrantee_alert' => 'Има :count актив(а) с гаранция, която ще изтече в следващите :threshold дни.|Има :count активa с гаранции, която ще изтече в следващите :threshold дни.',
|
||||
'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
|
||||
'assigned_to' => 'Възложени на',
|
||||
'eol' => 'EOL',
|
||||
'best_regards' => 'С най-добри пожелания.',
|
||||
'canceled' => 'Отменено',
|
||||
'checkin_date' => 'Дата на вписване',
|
||||
@ -58,6 +59,7 @@ return [
|
||||
'days' => 'Дни',
|
||||
'expecting_checkin_date' => 'Очаквана дата на вписване',
|
||||
'expires' => 'Изтича',
|
||||
'terminates' => 'Terminates',
|
||||
'following_accepted' => 'The following was accepted',
|
||||
'following_declined' => 'The following was declined',
|
||||
'hello' => 'Здравейте',
|
||||
@ -68,16 +70,16 @@ return [
|
||||
'inventory_report' => 'Списък активи',
|
||||
'item' => 'Информация',
|
||||
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
|
||||
'license_expiring_alert' => 'Има :count лиценз, който изтича в следващите :threshold дни.|Има :count лиценза, които изтичат в следващите :threshold дни.',
|
||||
'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
|
||||
'link_to_update_password' => 'Моля щракенете върху следния линк за да обновите своята :web password:',
|
||||
'login' => 'Логин',
|
||||
'login_first_admin' => 'Влезте в своята Snipe-IT инсталация използвайки данните по-долу:',
|
||||
'low_inventory_alert' => 'Има :count артикул, който е под минималния праг за наличност или скоро ще се изчерпа.| Има :count артикула, които са под минималния праг за наличност или скоро ще се изчерпат.',
|
||||
'min_QTY' => 'Минимално количество',
|
||||
'name' => 'Име',
|
||||
'new_item_checked' => 'Нов артикул беше изписан под вашето име, детайлите са отдолу.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
|
||||
'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
|
||||
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
|
||||
'notes' => 'Бележки',
|
||||
'password' => 'Парола',
|
||||
|
||||
@ -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.',
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
return [
|
||||
'about_asset_depreciations' => 'About Asset Depreciations',
|
||||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
|
||||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
|
||||
'asset_depreciations' => 'Asset Depreciations',
|
||||
'create' => 'Create Depreciation',
|
||||
'depreciation_name' => 'Depreciation Name',
|
||||
|
||||
@ -44,6 +44,8 @@ return [
|
||||
'redirect_to_checked_out_to' => 'Go to Checked Out to',
|
||||
'select_statustype' => 'Select Status Type',
|
||||
'serial' => 'Serial',
|
||||
'serial_required' => 'Asset :number requires a serial number',
|
||||
'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
|
||||
'status' => 'Status',
|
||||
'tag' => 'Etiqueta de Recurs',
|
||||
'update' => 'Asset Update',
|
||||
|
||||
@ -22,6 +22,8 @@ return [
|
||||
'requested' => 'Requested',
|
||||
'not_requestable' => 'Not Requestable',
|
||||
'requestable_status_warning' => 'Do not change requestable status',
|
||||
'require_serial' => 'Require Serial Number',
|
||||
'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
|
||||
'restore' => 'Restore Asset',
|
||||
'pending' => 'Pending',
|
||||
'undeployable' => 'Undeployable',
|
||||
|
||||
@ -46,11 +46,12 @@ return array(
|
||||
'not_enough_seats' => 'Not enough license seats available for checkout',
|
||||
'mismatch' => 'The license seat provided does not match the license',
|
||||
'unavailable' => 'This seat is not available for checkout.',
|
||||
'license_is_inactive' => 'This license is expired or terminated.',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'There was an issue checking in the license. Please try again.',
|
||||
'not_reassignable' => 'License not reassignable',
|
||||
'not_reassignable' => 'Seat has been used',
|
||||
'success' => 'The license was checked in successfully'
|
||||
),
|
||||
|
||||
|
||||
@ -3,12 +3,13 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Location 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' => 'This location is not currently deletable because it is the location of record for at least one item 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_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
|
||||
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
|
||||
'assigned_assets' => 'Assigned Assets',
|
||||
'current_location' => 'Current Location',
|
||||
'open_map' => 'Open in :map_provider_icon Maps',
|
||||
'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
|
||||
|
||||
|
||||
'create' => array(
|
||||
|
||||
@ -12,7 +12,8 @@ return [
|
||||
'create' => 'Create Location',
|
||||
'update' => 'Update Location',
|
||||
'print_assigned' => 'Print Assigned',
|
||||
'print_all_assigned' => 'Print All Assigned',
|
||||
'print_inventory' => 'Print Inventory',
|
||||
'print_all_assigned' => 'Print Inventory and Assigned',
|
||||
'name' => 'Location Name',
|
||||
'address' => 'Adreça',
|
||||
'address2' => 'Address Line 2',
|
||||
|
||||
@ -11,7 +11,6 @@ return array(
|
||||
'title' => 'Models de Recurs',
|
||||
'update' => 'Update Asset Model',
|
||||
'view' => 'View Asset Model',
|
||||
'update' => 'Update Asset Model',
|
||||
'clone' => 'Clone Model',
|
||||
'edit' => 'Edit Model',
|
||||
'clone' => 'Clone Model',
|
||||
'edit' => 'Edit Model',
|
||||
);
|
||||
|
||||
@ -24,7 +24,6 @@ return [
|
||||
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
|
||||
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
|
||||
'software_user' => 'Software Checked out to :name',
|
||||
'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
|
||||
'view_user' => 'View User :name',
|
||||
'usercsv' => 'CSV file',
|
||||
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
|
||||
|
||||
@ -160,7 +160,7 @@ return [
|
||||
'import' => 'Import',
|
||||
'import_this_file' => 'Map fields and process this file',
|
||||
'importing' => 'Importing',
|
||||
'importing_help' => 'Podeu importar recursos, accessoris, llicències, components, consumibles, and usuaris via fitxer CSV. <br><br>El CSV cal que estigui delimitat per comes i formatat amb capçaleres que coincideixin amb les de les <a href="https://snipe-it.readme.io/docs/importing" target="_new">mostres de CSV a la documentació</a>.',
|
||||
'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'import-history' => 'Import History',
|
||||
'asset_maintenance' => 'Manteniment de Recursos',
|
||||
'asset_maintenance_report' => 'Informe de Manteniment de Recursos',
|
||||
@ -309,10 +309,12 @@ return [
|
||||
'total_licenses' => 'total licenses',
|
||||
'total_accessories' => 'total accessories',
|
||||
'total_consumables' => 'total consumables',
|
||||
'total_cost' => 'Total Cost',
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Un-deployable',
|
||||
'unknown_admin' => 'Unknown Admin',
|
||||
'unknown_user' => 'Unknown User',
|
||||
'unit_cost' => 'Unit Cost',
|
||||
'username' => 'Username',
|
||||
'update' => 'Update',
|
||||
'updating_item' => 'Updating :item',
|
||||
@ -353,9 +355,11 @@ return [
|
||||
'audit_overdue' => 'Overdue for Audit',
|
||||
'accept' => 'Acceptar :recurs',
|
||||
'i_accept' => 'I accept',
|
||||
'i_decline_item' => 'Decline this item',
|
||||
'i_accept_item' => 'Accept this item',
|
||||
'i_accept_with_count' => 'I accept :count item|I accept :count items',
|
||||
'i_decline_item' => 'Decline this item|Decline these items',
|
||||
'i_accept_item' => 'Accept this item|Accept these items',
|
||||
'i_decline' => 'I decline',
|
||||
'i_decline_with_count' => 'I decline :count item|I decline :count items',
|
||||
'accept_decline' => 'Accept/Decline',
|
||||
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
|
||||
'clear_signature' => 'Clear Signature',
|
||||
@ -394,6 +398,7 @@ return [
|
||||
'permissions' => 'Permissions',
|
||||
'managed_ldap' => '(Managed via LDAP)',
|
||||
'export' => 'Export',
|
||||
'export_all_to_csv' => 'Export all to CSV',
|
||||
'ldap_sync' => 'LDAP Sync',
|
||||
'ldap_user_sync' => 'LDAP User Sync',
|
||||
'synchronize' => 'Synchronize',
|
||||
@ -483,7 +488,9 @@ return [
|
||||
'update_existing_values' => 'Update Existing Values?',
|
||||
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
|
||||
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
|
||||
'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
|
||||
'send_welcome_email_to_users' => ' Send welcome email to new users',
|
||||
'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
|
||||
'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
|
||||
'send_email' => 'Send Email',
|
||||
'call' => 'Call number',
|
||||
'back_before_importing' => 'Backup before importing?',
|
||||
@ -513,7 +520,10 @@ return [
|
||||
'item_notes' => ':item Notes',
|
||||
'item_name_var' => ':item Name',
|
||||
'error_user_company' => 'Checkout target company and asset company do not match',
|
||||
'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
|
||||
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
|
||||
'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
|
||||
'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
|
||||
'importer' => [
|
||||
'checked_out_to_fullname' => 'Checked Out to: Full Name',
|
||||
'checked_out_to_first_name' => 'Checked Out to: First Name',
|
||||
@ -585,6 +595,8 @@ return [
|
||||
'components' => ':count Component|:count Components',
|
||||
],
|
||||
|
||||
'show_inactive' => 'Expired or Terminated',
|
||||
'show_expiring' => 'Expiring or Terminating Soon',
|
||||
'more_info' => 'More Info',
|
||||
'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!',
|
||||
@ -609,6 +621,8 @@ return [
|
||||
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
|
||||
'footer_credit' => '<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software, made with <i class="fa fa-heart" aria-hidden="true" style="color: #a94442; font-size: 10px" /></i><span class="sr-only">love</span> by <a href="https://bsky.app/profile/snipeitapp.com" rel="noopener">@snipeitapp.com</a>.',
|
||||
'set_password' => 'Set a Password',
|
||||
'upload_deleted' => 'Upload Deleted',
|
||||
'child_locations' => 'Child Locations',
|
||||
|
||||
// Add form placeholders here
|
||||
'placeholders' => [
|
||||
@ -625,11 +639,11 @@ return [
|
||||
'site_default' => 'Site Default',
|
||||
'default_blue' => 'Default Blue',
|
||||
'blue_dark' => 'Blue (Dark Mode)',
|
||||
'green' => 'Green Dark',
|
||||
'green' => 'Green',
|
||||
'green_dark' => 'Green (Dark Mode)',
|
||||
'red' => 'Red Dark',
|
||||
'red' => 'Red',
|
||||
'red_dark' => 'Red (Dark Mode)',
|
||||
'orange' => 'Orange Dark',
|
||||
'orange' => 'Orange',
|
||||
'orange_dark' => 'Orange (Dark Mode)',
|
||||
'black' => 'Black',
|
||||
'black_dark' => 'Black (Dark Mode)',
|
||||
|
||||
@ -3,9 +3,9 @@
|
||||
return [
|
||||
|
||||
'Accessory_Checkin_Notification' => 'Accessory checked in',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: :tag',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: :tag',
|
||||
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
|
||||
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
|
||||
'Confirm_component_checkin' => 'Component checkin confirmation',
|
||||
@ -21,8 +21,8 @@ return [
|
||||
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
|
||||
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
|
||||
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
||||
'Expiring_Assets_Report' => 'Expiring Assets Report.',
|
||||
'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
|
||||
'Expiring_Assets_Report' => 'Expiring Assets Report',
|
||||
'Expiring_Licenses_Report' => 'Expiring Licenses Report',
|
||||
'Item_Request_Canceled' => 'Item Request Canceled',
|
||||
'Item_Requested' => 'Item Requested',
|
||||
'License_Checkin_Notification' => 'License checked in',
|
||||
@ -31,7 +31,7 @@ return [
|
||||
'Low_Inventory_Report' => 'Low Inventory Report',
|
||||
'a_user_canceled' => 'A user has canceled an item request on the website',
|
||||
'a_user_requested' => 'A user has requested an item on the website',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
|
||||
'acceptance_asset_accepted' => 'A user has accepted an item',
|
||||
'acceptance_asset_declined' => 'A user has declined an item',
|
||||
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
|
||||
@ -42,8 +42,9 @@ return [
|
||||
'asset_name' => 'Asset Name',
|
||||
'asset_requested' => 'Asset requested',
|
||||
'asset_tag' => 'Etiqueta de Recurs',
|
||||
'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
|
||||
'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
|
||||
'assigned_to' => 'Assigned To',
|
||||
'eol' => 'EOL',
|
||||
'best_regards' => 'Best regards,',
|
||||
'canceled' => 'Canceled',
|
||||
'checkin_date' => 'Checkin Date',
|
||||
@ -58,6 +59,7 @@ return [
|
||||
'days' => 'Days',
|
||||
'expecting_checkin_date' => 'Expected Checkin Date',
|
||||
'expires' => 'Expires',
|
||||
'terminates' => 'Terminates',
|
||||
'following_accepted' => 'The following was accepted',
|
||||
'following_declined' => 'The following was declined',
|
||||
'hello' => 'Hello',
|
||||
@ -68,16 +70,16 @@ return [
|
||||
'inventory_report' => 'Inventory Report',
|
||||
'item' => 'Item',
|
||||
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
|
||||
'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
|
||||
'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
|
||||
'link_to_update_password' => 'Please click on the following link to update your :web password:',
|
||||
'login' => 'Login',
|
||||
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
|
||||
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
|
||||
'min_QTY' => 'Min QTY',
|
||||
'name' => 'Name',
|
||||
'new_item_checked' => 'A new item has been checked out under your name, details are below.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
|
||||
'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
|
||||
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
|
||||
'notes' => 'Notes',
|
||||
'password' => 'Password',
|
||||
|
||||
@ -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.',
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
return [
|
||||
'about_asset_depreciations' => 'About Asset Depreciations',
|
||||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
|
||||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
|
||||
'asset_depreciations' => 'Asset Depreciations',
|
||||
'create' => 'Create Depreciation',
|
||||
'depreciation_name' => 'Depreciation Name',
|
||||
|
||||
@ -44,6 +44,8 @@ return [
|
||||
'redirect_to_checked_out_to' => 'Go to Checked Out to',
|
||||
'select_statustype' => 'Select Status Type',
|
||||
'serial' => 'Serial',
|
||||
'serial_required' => 'Asset :number requires a serial number',
|
||||
'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
|
||||
'status' => 'Status',
|
||||
'tag' => 'Asset Tag',
|
||||
'update' => 'Asset Update',
|
||||
|
||||
@ -22,6 +22,8 @@ return [
|
||||
'requested' => 'Requested',
|
||||
'not_requestable' => 'Not Requestable',
|
||||
'requestable_status_warning' => 'Do not change requestable status',
|
||||
'require_serial' => 'Require Serial Number',
|
||||
'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
|
||||
'restore' => 'Restore Asset',
|
||||
'pending' => 'Pending',
|
||||
'undeployable' => 'Undeployable',
|
||||
|
||||
@ -46,11 +46,12 @@ return array(
|
||||
'not_enough_seats' => 'Not enough license seats available for checkout',
|
||||
'mismatch' => 'The license seat provided does not match the license',
|
||||
'unavailable' => 'This seat is not available for checkout.',
|
||||
'license_is_inactive' => 'This license is expired or terminated.',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'There was an issue checking in the license. Please try again.',
|
||||
'not_reassignable' => 'License not reassignable',
|
||||
'not_reassignable' => 'Seat has been used',
|
||||
'success' => 'The license was checked in successfully'
|
||||
),
|
||||
|
||||
|
||||
@ -3,12 +3,13 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Location 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' => 'This location is not currently deletable because it is the location of record for at least one item 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_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
|
||||
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
|
||||
'assigned_assets' => 'Assigned Assets',
|
||||
'current_location' => 'Current Location',
|
||||
'open_map' => 'Open in :map_provider_icon Maps',
|
||||
'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
|
||||
|
||||
|
||||
'create' => array(
|
||||
|
||||
@ -12,7 +12,8 @@ return [
|
||||
'create' => 'Create Location',
|
||||
'update' => 'Update Location',
|
||||
'print_assigned' => 'Print Assigned',
|
||||
'print_all_assigned' => 'Print All Assigned',
|
||||
'print_inventory' => 'Print Inventory',
|
||||
'print_all_assigned' => 'Print Inventory and Assigned',
|
||||
'name' => 'Location Name',
|
||||
'address' => 'Address',
|
||||
'address2' => 'Address Line 2',
|
||||
|
||||
@ -11,7 +11,6 @@ return array(
|
||||
'title' => 'Asset Models',
|
||||
'update' => 'Update Asset Model',
|
||||
'view' => 'View Asset Model',
|
||||
'update' => 'Update Asset Model',
|
||||
'clone' => 'Clone Model',
|
||||
'edit' => 'Edit Model',
|
||||
'clone' => 'Clone Model',
|
||||
'edit' => 'Edit Model',
|
||||
);
|
||||
|
||||
@ -24,7 +24,6 @@ return [
|
||||
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
|
||||
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
|
||||
'software_user' => 'Software Checked out to :name',
|
||||
'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
|
||||
'view_user' => 'View User :name',
|
||||
'usercsv' => 'CSV file',
|
||||
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
|
||||
|
||||
@ -160,7 +160,7 @@ return [
|
||||
'import' => 'Import',
|
||||
'import_this_file' => 'Map fields and process this file',
|
||||
'importing' => 'Importing',
|
||||
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'import-history' => 'Import History',
|
||||
'asset_maintenance' => 'Asset Maintenance',
|
||||
'asset_maintenance_report' => 'Asset Maintenance Report',
|
||||
@ -309,10 +309,12 @@ return [
|
||||
'total_licenses' => 'total licenses',
|
||||
'total_accessories' => 'total accessories',
|
||||
'total_consumables' => 'total consumables',
|
||||
'total_cost' => 'Total Cost',
|
||||
'type' => 'Type',
|
||||
'undeployable' => 'Un-deployable',
|
||||
'unknown_admin' => 'Unknown Admin',
|
||||
'unknown_user' => 'Unknown User',
|
||||
'unit_cost' => 'Unit Cost',
|
||||
'username' => 'Username',
|
||||
'update' => 'Update',
|
||||
'updating_item' => 'Updating :item',
|
||||
@ -353,9 +355,11 @@ return [
|
||||
'audit_overdue' => 'Overdue for Audit',
|
||||
'accept' => 'Accept :asset',
|
||||
'i_accept' => 'I accept',
|
||||
'i_decline_item' => 'Decline this item',
|
||||
'i_accept_item' => 'Accept this item',
|
||||
'i_accept_with_count' => 'I accept :count item|I accept :count items',
|
||||
'i_decline_item' => 'Decline this item|Decline these items',
|
||||
'i_accept_item' => 'Accept this item|Accept these items',
|
||||
'i_decline' => 'I decline',
|
||||
'i_decline_with_count' => 'I decline :count item|I decline :count items',
|
||||
'accept_decline' => 'Accept/Decline',
|
||||
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
|
||||
'clear_signature' => 'Clear Signature',
|
||||
@ -394,6 +398,7 @@ return [
|
||||
'permissions' => 'Permissions',
|
||||
'managed_ldap' => '(Managed via LDAP)',
|
||||
'export' => 'Export',
|
||||
'export_all_to_csv' => 'Export all to CSV',
|
||||
'ldap_sync' => 'LDAP Sync',
|
||||
'ldap_user_sync' => 'LDAP User Sync',
|
||||
'synchronize' => 'Synchronize',
|
||||
@ -483,7 +488,9 @@ return [
|
||||
'update_existing_values' => 'Update Existing Values?',
|
||||
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
|
||||
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
|
||||
'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
|
||||
'send_welcome_email_to_users' => ' Send welcome email to new users',
|
||||
'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
|
||||
'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
|
||||
'send_email' => 'Send Email',
|
||||
'call' => 'Call number',
|
||||
'back_before_importing' => 'Backup before importing?',
|
||||
@ -513,7 +520,10 @@ return [
|
||||
'item_notes' => ':item Notes',
|
||||
'item_name_var' => ':item Name',
|
||||
'error_user_company' => 'Checkout target company and asset company do not match',
|
||||
'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
|
||||
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
|
||||
'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
|
||||
'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
|
||||
'importer' => [
|
||||
'checked_out_to_fullname' => 'Checked Out to: Full Name',
|
||||
'checked_out_to_first_name' => 'Checked Out to: First Name',
|
||||
@ -585,6 +595,8 @@ return [
|
||||
'components' => ':count Component|:count Components',
|
||||
],
|
||||
|
||||
'show_inactive' => 'Expired or Terminated',
|
||||
'show_expiring' => 'Expiring or Terminating Soon',
|
||||
'more_info' => 'More Info',
|
||||
'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!',
|
||||
@ -609,6 +621,8 @@ return [
|
||||
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
|
||||
'footer_credit' => '<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software, made with <i class="fa fa-heart" aria-hidden="true" style="color: #a94442; font-size: 10px" /></i><span class="sr-only">love</span> by <a href="https://bsky.app/profile/snipeitapp.com" rel="noopener">@snipeitapp.com</a>.',
|
||||
'set_password' => 'Set a Password',
|
||||
'upload_deleted' => 'Upload Deleted',
|
||||
'child_locations' => 'Child Locations',
|
||||
|
||||
// Add form placeholders here
|
||||
'placeholders' => [
|
||||
@ -625,11 +639,11 @@ return [
|
||||
'site_default' => 'Site Default',
|
||||
'default_blue' => 'Default Blue',
|
||||
'blue_dark' => 'Blue (Dark Mode)',
|
||||
'green' => 'Green Dark',
|
||||
'green' => 'Green',
|
||||
'green_dark' => 'Green (Dark Mode)',
|
||||
'red' => 'Red Dark',
|
||||
'red' => 'Red',
|
||||
'red_dark' => 'Red (Dark Mode)',
|
||||
'orange' => 'Orange Dark',
|
||||
'orange' => 'Orange',
|
||||
'orange_dark' => 'Orange (Dark Mode)',
|
||||
'black' => 'Black',
|
||||
'black_dark' => 'Black (Dark Mode)',
|
||||
|
||||
@ -3,9 +3,9 @@
|
||||
return [
|
||||
|
||||
'Accessory_Checkin_Notification' => 'Accessory checked in',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: :tag',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: :tag',
|
||||
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
|
||||
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
|
||||
'Confirm_component_checkin' => 'Component checkin confirmation',
|
||||
@ -21,8 +21,8 @@ return [
|
||||
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
|
||||
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
|
||||
'Expected_Checkin_Report' => 'Expected asset checkin report',
|
||||
'Expiring_Assets_Report' => 'Expiring Assets Report.',
|
||||
'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
|
||||
'Expiring_Assets_Report' => 'Expiring Assets Report',
|
||||
'Expiring_Licenses_Report' => 'Expiring Licenses Report',
|
||||
'Item_Request_Canceled' => 'Item Request Canceled',
|
||||
'Item_Requested' => 'Item Requested',
|
||||
'License_Checkin_Notification' => 'License checked in',
|
||||
@ -31,7 +31,7 @@ return [
|
||||
'Low_Inventory_Report' => 'Low Inventory Report',
|
||||
'a_user_canceled' => 'A user has canceled an item request on the website',
|
||||
'a_user_requested' => 'A user has requested an item on the website',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
|
||||
'acceptance_asset_accepted' => 'A user has accepted an item',
|
||||
'acceptance_asset_declined' => 'A user has declined an item',
|
||||
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
|
||||
@ -42,8 +42,9 @@ return [
|
||||
'asset_name' => 'Asset Name',
|
||||
'asset_requested' => 'Asset requested',
|
||||
'asset_tag' => 'Asset Tag',
|
||||
'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
|
||||
'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
|
||||
'assigned_to' => 'Assigned To',
|
||||
'eol' => 'EOL',
|
||||
'best_regards' => 'Best regards,',
|
||||
'canceled' => 'Canceled',
|
||||
'checkin_date' => 'Checkin Date',
|
||||
@ -58,6 +59,7 @@ return [
|
||||
'days' => 'Days',
|
||||
'expecting_checkin_date' => 'Expected Checkin Date',
|
||||
'expires' => 'Expires',
|
||||
'terminates' => 'Terminates',
|
||||
'following_accepted' => 'The following was accepted',
|
||||
'following_declined' => 'The following was declined',
|
||||
'hello' => 'Hello',
|
||||
@ -68,16 +70,16 @@ return [
|
||||
'inventory_report' => 'Inventory Report',
|
||||
'item' => 'Item',
|
||||
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
|
||||
'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
|
||||
'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
|
||||
'link_to_update_password' => 'Please click on the following link to update your :web password:',
|
||||
'login' => 'Login',
|
||||
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
|
||||
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
|
||||
'min_QTY' => 'Min QTY',
|
||||
'name' => 'Name',
|
||||
'new_item_checked' => 'A new item has been checked out under your name, details are below.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
|
||||
'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
|
||||
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
|
||||
'notes' => 'Notes',
|
||||
'password' => 'Password',
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
return [
|
||||
'about_asset_depreciations' => 'O amortizaci majetku',
|
||||
'about_depreciations' => 'Můžete nastavit amortizaci majetku pro jeho rovnoměrné odepisování.',
|
||||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
|
||||
'asset_depreciations' => 'Amortizace majetku',
|
||||
'create' => 'Vytvořit amortizaci',
|
||||
'depreciation_name' => 'Jméno amortizace',
|
||||
|
||||
@ -44,6 +44,8 @@ return [
|
||||
'redirect_to_checked_out_to' => 'Přejít na přiřazeného uživatele',
|
||||
'select_statustype' => 'Zvolte typ stavu',
|
||||
'serial' => 'Sériové číslo',
|
||||
'serial_required' => 'Asset :number requires a serial number',
|
||||
'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
|
||||
'status' => 'Stav',
|
||||
'tag' => 'Označení majetku',
|
||||
'update' => 'Úprava majetku',
|
||||
|
||||
@ -22,6 +22,8 @@ return [
|
||||
'requested' => 'Požadováno',
|
||||
'not_requestable' => 'Nelze vyžádat',
|
||||
'requestable_status_warning' => 'Neměnit stav K vyžádání',
|
||||
'require_serial' => 'Require Serial Number',
|
||||
'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
|
||||
'restore' => 'Obnovit zařízení',
|
||||
'pending' => 'Čekající',
|
||||
'undeployable' => 'Nelze vyskladnit',
|
||||
|
||||
@ -46,11 +46,12 @@ return array(
|
||||
'not_enough_seats' => 'Není k dispozici dostatek licenčních míst pro pokladnu',
|
||||
'mismatch' => 'Poskytnutá licence se neshoduje s licencí',
|
||||
'unavailable' => 'Tuto licenci nelze aktuálně přidělit.',
|
||||
'license_is_inactive' => 'This license is expired or terminated.',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'Vyskytl se problém při ověřování licence. Zkuste to znovu prosím.',
|
||||
'not_reassignable' => 'Licence není znovu přiřazitelná',
|
||||
'not_reassignable' => 'Seat has been used',
|
||||
'success' => 'Licence byla úspěšně zkontrolována'
|
||||
),
|
||||
|
||||
|
||||
@ -3,12 +3,13 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Místo neexistuje.',
|
||||
'assoc_users' => 'Toto umístění nelze aktuálně odstranit, protože je evidováno jako výchozí umístění alespoň jednoho zařízení nebo uživatele, má k sobě přiřazená zařízení, nebo je nadřazeným umístěním jiného umístění. Aktualizujte prosím záznamy tak, aby se na toto umístění již neodkazovalo, a zkuste to znovu ',
|
||||
'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item 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_assets' => 'Toto umístění je spojeno s alespoň jedním majetkem a nemůže být smazáno. Aktualizujte majetky tak aby nenáleželi k tomuto umístění a zkuste to znovu. ',
|
||||
'assoc_child_loc' => 'Toto umístění je nadřazené alespoň jednomu umístění a nelze jej smazat. Aktualizujte své umístění tak, aby na toto umístění již neodkazovalo a zkuste to znovu. ',
|
||||
'assigned_assets' => 'Přiřazený majetek',
|
||||
'current_location' => 'Současné umístění',
|
||||
'open_map' => 'Otevřít v :map_provider_icon mapách',
|
||||
'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
|
||||
|
||||
|
||||
'create' => array(
|
||||
|
||||
@ -12,7 +12,8 @@ return [
|
||||
'create' => 'Vytvořit umístění',
|
||||
'update' => 'Upravit umístění',
|
||||
'print_assigned' => 'Vytisknout přiřazené',
|
||||
'print_all_assigned' => 'Vytisknout všechny přiřazené',
|
||||
'print_inventory' => 'Print Inventory',
|
||||
'print_all_assigned' => 'Print Inventory and Assigned',
|
||||
'name' => 'Název umístění',
|
||||
'address' => 'Adresa',
|
||||
'address2' => 'Adresa 2',
|
||||
|
||||
@ -11,7 +11,6 @@ return array(
|
||||
'title' => 'Model',
|
||||
'update' => 'Upravit vzor majetku',
|
||||
'view' => 'Zobrazit vzor majetku',
|
||||
'update' => 'Upravit vzor majetku',
|
||||
'clone' => 'Kopíruj modelovou řadu',
|
||||
'edit' => 'Edituj model',
|
||||
'clone' => 'Kopíruj modelovou řadu',
|
||||
'edit' => 'Edituj model',
|
||||
);
|
||||
|
||||
@ -24,7 +24,6 @@ return [
|
||||
'auto_assign_label' => 'Zahrnout tohoto uživatele do automatického přiřazování licencí',
|
||||
'auto_assign_help' => 'Nezahrnout tohoto uživatele do automatického přiřazování licencí',
|
||||
'software_user' => 'Software vydaný pro :name',
|
||||
'send_email_help' => 'Musíte zadat e-mailovou adresu tohoto uživatele pro odeslání přihlašovacích údajů. Odeslání přihlašovacích údajů lze provést pouze při vytvoření uživatele. Hesla jsou zašifrována a nelze je zjistit po tom, co jsou uložena.',
|
||||
'view_user' => 'Zobraz uživatele',
|
||||
'usercsv' => 'CSV soubor',
|
||||
'two_factor_admin_optin_help' => 'Vaše současná nastavení administrátora umožňují selektivní vynucení dvoufaktorového ověřování. ',
|
||||
|
||||
@ -160,7 +160,7 @@ return [
|
||||
'import' => 'Import',
|
||||
'import_this_file' => 'Mapa polí a zpracovávat tento soubor',
|
||||
'importing' => 'Importování',
|
||||
'importing_help' => 'Prostřednictvím souboru CSV můžete importovat majetek, příslušenství, licence, komponenty, spotřební materiál a uživatele. <br><br>CSV by měl být oddělený čárkou a formátovaný s hlavičkami, které odpovídají <a href="https://snipe-it.readme.io/docs/importing" target="_new">vzorovému CSV</a>.',
|
||||
'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'import-history' => 'Historie importu',
|
||||
'asset_maintenance' => 'Údržba zařízení',
|
||||
'asset_maintenance_report' => 'Zpráva o údržbě zařízení',
|
||||
@ -309,10 +309,12 @@ return [
|
||||
'total_licenses' => 'celkem licencí',
|
||||
'total_accessories' => 'celkové příslušenství',
|
||||
'total_consumables' => 'celkový spotřební materiál',
|
||||
'total_cost' => 'Total Cost',
|
||||
'type' => 'Typ',
|
||||
'undeployable' => 'Ne-přiřaditelné',
|
||||
'unknown_admin' => 'Neznámy správce',
|
||||
'unknown_user' => 'Neznámý uživatel',
|
||||
'unit_cost' => 'Unit Cost',
|
||||
'username' => 'Uživatelské jméno',
|
||||
'update' => 'Aktualizace',
|
||||
'updating_item' => 'Probíhá aktualizace položky :item',
|
||||
@ -353,9 +355,11 @@ return [
|
||||
'audit_overdue' => 'Po termínu inventury',
|
||||
'accept' => 'Přijmout :asset',
|
||||
'i_accept' => 'Přijímám',
|
||||
'i_decline_item' => 'Decline this item',
|
||||
'i_accept_item' => 'Accept this item',
|
||||
'i_accept_with_count' => 'I accept :count item|I accept :count items',
|
||||
'i_decline_item' => 'Decline this item|Decline these items',
|
||||
'i_accept_item' => 'Accept this item|Accept these items',
|
||||
'i_decline' => 'Odmítám',
|
||||
'i_decline_with_count' => 'I decline :count item|I decline :count items',
|
||||
'accept_decline' => 'Přijímat/zamítnout',
|
||||
'sign_tos' => 'Podepsáním níže souhlasíte s podmínkami služby:',
|
||||
'clear_signature' => 'Vymazat podpis',
|
||||
@ -394,6 +398,7 @@ return [
|
||||
'permissions' => 'Oprávnění',
|
||||
'managed_ldap' => '(Spravováno přes LDAP)',
|
||||
'export' => 'Exportovat',
|
||||
'export_all_to_csv' => 'Export all to CSV',
|
||||
'ldap_sync' => 'LDAP synchronizace',
|
||||
'ldap_user_sync' => 'LDAP synchronizace uživatelů',
|
||||
'synchronize' => 'Synchronizovat',
|
||||
@ -485,7 +490,9 @@ return [
|
||||
'update_existing_values' => 'Aktualizovat existující hodnoty?',
|
||||
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generování automatického zvyšování značek majetku je zakázáno, takže všechny řádky musí mít vyplněný sloupec "Značka majetku".',
|
||||
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Poznámka: Generování auto-rostoucí značky majetku je povoleno, takže aktiva budou vytvořena pro řádky, které nemají "Asset Tag". Řádky, které mají vyplněnou značku "Aktiva", budou aktualizovány s poskytnutými informacemi.',
|
||||
'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
|
||||
'send_welcome_email_to_users' => ' Send welcome email to new users',
|
||||
'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
|
||||
'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
|
||||
'send_email' => 'Poslat e-mail',
|
||||
'call' => 'Volat číslo',
|
||||
'back_before_importing' => 'Zálohovat před importem?',
|
||||
@ -515,7 +522,10 @@ return [
|
||||
'item_notes' => ':item Notes',
|
||||
'item_name_var' => ':název položky',
|
||||
'error_user_company' => 'Objednat cílovou společnost a společnost aktiv se neshodují',
|
||||
'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
|
||||
'error_user_company_accept_view' => 'Majetek přiřazený vám patří jiné společnosti, takže ho nemůžete přijmout ani odmítnout, zkontrolujte si prosím svůj manažer',
|
||||
'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
|
||||
'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
|
||||
'importer' => [
|
||||
'checked_out_to_fullname' => 'Odškrtnuto na: Celé jméno',
|
||||
'checked_out_to_first_name' => 'Odškrtnuto na: křestní jméno',
|
||||
@ -587,6 +597,8 @@ return [
|
||||
'components' => ':count komponenta|:count komponenty',
|
||||
],
|
||||
|
||||
'show_inactive' => 'Expired or Terminated',
|
||||
'show_expiring' => 'Expiring or Terminating Soon',
|
||||
'more_info' => 'Více informací',
|
||||
'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!',
|
||||
@ -611,6 +623,8 @@ return [
|
||||
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
|
||||
'footer_credit' => '<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> Je open-source software, vytvořený s <i class="fa fa-heart" aria-hidden="true" style="color: #a94442; font-size: 10px" /></i><span class="sr-only">láskou</span> od <a href="https://bsky.app/profile/snipeitapp.com" rel="noopener">@snipeitapp.com</a>.',
|
||||
'set_password' => 'Set a Password',
|
||||
'upload_deleted' => 'Upload Deleted',
|
||||
'child_locations' => 'Child Locations',
|
||||
|
||||
// Add form placeholders here
|
||||
'placeholders' => [
|
||||
@ -627,11 +641,11 @@ return [
|
||||
'site_default' => 'Výchozí nastavení webu',
|
||||
'default_blue' => 'Modrá – výchozí',
|
||||
'blue_dark' => 'Modrá (tmavý režim)',
|
||||
'green' => 'Tmavě zelená',
|
||||
'green' => 'Green',
|
||||
'green_dark' => 'Zelená (tmavý režim)',
|
||||
'red' => 'Tmavě červená',
|
||||
'red' => 'Red',
|
||||
'red_dark' => 'Červená (tmavý režim)',
|
||||
'orange' => 'Tmavě Oranžová',
|
||||
'orange' => 'Orange',
|
||||
'orange_dark' => 'Oranžová (tmavý režim)',
|
||||
'black' => 'Černá',
|
||||
'black_dark' => 'Černá (tmavý režim)',
|
||||
|
||||
@ -3,9 +3,9 @@
|
||||
return [
|
||||
|
||||
'Accessory_Checkin_Notification' => 'Příslušenství přidáno v',
|
||||
'Accessory_Checkout_Notification' => 'Příslušenství zkontrolováno',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
|
||||
'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
|
||||
'Asset_Checkin_Notification' => 'Asset checked in: :tag',
|
||||
'Asset_Checkout_Notification' => 'Asset checked out: :tag',
|
||||
'Confirm_Accessory_Checkin' => 'Potvrzení odevzdání příslušenství',
|
||||
'Confirm_Asset_Checkin' => 'Potvrzení odevzdání předmětu',
|
||||
'Confirm_component_checkin' => 'Component checkin confirmation',
|
||||
@ -21,8 +21,8 @@ return [
|
||||
'Expected_Checkin_Date' => 'Majetek, který vám byl předán, musí být vrácen zpět do :date',
|
||||
'Expected_Checkin_Notification' => 'Připomenutí: blížící se lhůta pro :name',
|
||||
'Expected_Checkin_Report' => 'Předpokládaný report o dostupném majetku',
|
||||
'Expiring_Assets_Report' => 'Hlášení o končících zárukách majetku.',
|
||||
'Expiring_Licenses_Report' => 'Hlášení o končící platnosti licencí.',
|
||||
'Expiring_Assets_Report' => 'Hlášení o končících zárukách majetku',
|
||||
'Expiring_Licenses_Report' => 'Hlášení o končící platnosti licencí',
|
||||
'Item_Request_Canceled' => 'Požadavek na položku zrušen',
|
||||
'Item_Requested' => 'Požadavek na položku',
|
||||
'License_Checkin_Notification' => 'Licence přidána v',
|
||||
@ -31,7 +31,7 @@ return [
|
||||
'Low_Inventory_Report' => 'Hlášení o nízkých zásobách',
|
||||
'a_user_canceled' => 'Uživatel zrušil žádost o položku na webu',
|
||||
'a_user_requested' => 'Uživatel požádal o položku na webu',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
|
||||
'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
|
||||
'acceptance_asset_accepted' => 'Uživatel potvrdil vlastnictví',
|
||||
'acceptance_asset_declined' => 'Uživatel zamítl vlastnictví',
|
||||
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
|
||||
@ -42,8 +42,9 @@ return [
|
||||
'asset_name' => 'Název majetku',
|
||||
'asset_requested' => 'Požadovaný majetek',
|
||||
'asset_tag' => 'Inventární číslo',
|
||||
'assets_warrantee_alert' => 'Je zde :count položka se zárukou končící v následujících :threshold dnech.|Jsou zde :count položek se zárukou končící v následujících :threshold dnech.',
|
||||
'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
|
||||
'assigned_to' => 'Přiděleno',
|
||||
'eol' => 'KŽ',
|
||||
'best_regards' => 'S pozdravem,',
|
||||
'canceled' => 'Zrušeno',
|
||||
'checkin_date' => 'Datum převzetí',
|
||||
@ -58,6 +59,7 @@ return [
|
||||
'days' => 'Dní',
|
||||
'expecting_checkin_date' => 'Očekávané datum převzetí',
|
||||
'expires' => 'Vyprší',
|
||||
'terminates' => 'Terminates',
|
||||
'following_accepted' => 'The following was accepted',
|
||||
'following_declined' => 'The following was declined',
|
||||
'hello' => 'Dobrý den',
|
||||
@ -69,16 +71,16 @@ return [
|
||||
'item' => 'Položka',
|
||||
'item_checked_reminder' => 'Toto je připomínka, že máte aktuálně přiřazeno :count položek, které jste dosud nepřijal ani neodmítl.
|
||||
Klikněte prosím na odkaz níže a potvrďte své rozhodnutí.',
|
||||
'license_expiring_alert' => 'Je zde :count licence, které končí platnost v příštích :threshold dnech.|Jsou zde :count licence, kterým končí platnost v příštích :threshold dnech.',
|
||||
'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
|
||||
'link_to_update_password' => 'Klepnutím na následující odkaz aktualizujte své heslo pro :web:',
|
||||
'login' => 'Přihlášení',
|
||||
'login_first_admin' => 'Přihlaste se k nové instalaci Snipe-IT pomocí níže uvedených pověření:',
|
||||
'low_inventory_alert' => 'Je zde :count položka která je pod minimálním stavem nebo brzy bude.|Jsou zde :count položky které jsou pod minimálním stavem nebo brzy budou.',
|
||||
'min_QTY' => 'Minimální množství',
|
||||
'name' => 'Položka',
|
||||
'new_item_checked' => 'Nová položka byla odevzdána pod vaším jménem, podrobnosti jsou uvedeny níže.',
|
||||
'new_item_checked_with_acceptance' => 'Nová položka byla přiřazena na vaše jméno a vyžaduje potvrzení. Podrobnosti najdete níže.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
|
||||
'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
|
||||
'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
|
||||
'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
|
||||
'recent_item_checked' => 'Položka byla přiřazena na vaše jméno a vyžaduje potvrzení. Podrobnosti najdete níže.',
|
||||
'notes' => 'Poznámky',
|
||||
'password' => 'Heslo',
|
||||
|
||||
@ -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.',
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
return [
|
||||
'about_asset_depreciations' => 'Amdan Dibrisiant Asedau',
|
||||
'about_depreciations' => 'Cewch creu mathau o dibrisiant i dibrisio asedau yn seiliedig ar dibrisiant llinell syth.',
|
||||
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
|
||||
'asset_depreciations' => 'Dibrisiant Asedau',
|
||||
'create' => 'Creu Dibrisiant',
|
||||
'depreciation_name' => 'Enw Dibrisiant',
|
||||
|
||||
@ -44,6 +44,8 @@ return [
|
||||
'redirect_to_checked_out_to' => 'Go to Checked Out to',
|
||||
'select_statustype' => 'Dewis Math o Statws',
|
||||
'serial' => 'Serial',
|
||||
'serial_required' => 'Asset :number requires a serial number',
|
||||
'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
|
||||
'status' => 'Statws',
|
||||
'tag' => 'Tag Ased',
|
||||
'update' => 'Diweddaru Ased',
|
||||
|
||||
@ -22,6 +22,8 @@ return [
|
||||
'requested' => 'Gofynnwyd amdano',
|
||||
'not_requestable' => 'Ddim ar gael',
|
||||
'requestable_status_warning' => 'Do not change requestable status',
|
||||
'require_serial' => 'Require Serial Number',
|
||||
'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
|
||||
'restore' => 'Adfer Ased',
|
||||
'pending' => 'Yn disgwl',
|
||||
'undeployable' => 'Dim ar gael',
|
||||
|
||||
@ -46,11 +46,12 @@ return array(
|
||||
'not_enough_seats' => 'Not enough license seats available for checkout',
|
||||
'mismatch' => 'The license seat provided does not match the license',
|
||||
'unavailable' => 'This seat is not available for checkout.',
|
||||
'license_is_inactive' => 'This license is expired or terminated.',
|
||||
),
|
||||
|
||||
'checkin' => array(
|
||||
'error' => 'Nid oedd yn bosib nodi\'r trwydded i mewn. Ceisiwch eto o. g. y. dd.',
|
||||
'not_reassignable' => 'License not reassignable',
|
||||
'not_reassignable' => 'Seat has been used',
|
||||
'success' => 'Trwydded wedi nodi i fewn yn llwyddiannus'
|
||||
),
|
||||
|
||||
|
||||
@ -3,12 +3,13 @@
|
||||
return array(
|
||||
|
||||
'does_not_exist' => 'Nid yw\'r lleoliad yn bodoli.',
|
||||
'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' => 'This location is not currently deletable because it is the location of record for at least one item 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_assets' => 'Mae\'r lleoliad yma wedi perthnasu i oleiaf un ased a nid yw\'n bosib dileu. Diweddarwch eich asedau i beidio cyfeirio at y lleoliad yma ac yna ceisiwch eto. ',
|
||||
'assoc_child_loc' => 'Mae\'r lleoliad yma yn rhiant i oleiaf un lleoliad a nid yw\'n bosib dileu. Diweddarwch eich lleoliadau i beidio cyfeirio at y lleoliad yma ac yna ceisiwch eto. ',
|
||||
'assigned_assets' => 'Assigned Assets',
|
||||
'current_location' => 'Current Location',
|
||||
'open_map' => 'Open in :map_provider_icon Maps',
|
||||
'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
|
||||
|
||||
|
||||
'create' => array(
|
||||
|
||||
@ -12,7 +12,8 @@ return [
|
||||
'create' => 'Creu Lleoliad',
|
||||
'update' => 'Diweddaru Lleoliad',
|
||||
'print_assigned' => 'Print Assigned',
|
||||
'print_all_assigned' => 'Argraffu Asedau',
|
||||
'print_inventory' => 'Print Inventory',
|
||||
'print_all_assigned' => 'Print Inventory and Assigned',
|
||||
'name' => 'Enw Lleoliad',
|
||||
'address' => 'Cyfeiriad',
|
||||
'address2' => 'Address Line 2',
|
||||
|
||||
@ -11,7 +11,6 @@ return array(
|
||||
'title' => 'Model Ased',
|
||||
'update' => 'Diweddaru Model Ased',
|
||||
'view' => 'Gweld Model Ased',
|
||||
'update' => 'Diweddaru Model Ased',
|
||||
'clone' => 'Dyblygu Model',
|
||||
'edit' => 'Newid Model',
|
||||
'clone' => 'Dyblygu Model',
|
||||
'edit' => 'Newid Model',
|
||||
);
|
||||
|
||||
@ -24,7 +24,6 @@ return [
|
||||
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
|
||||
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
|
||||
'software_user' => 'Meddalwedd allan i :name',
|
||||
'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
|
||||
'view_user' => 'Gweld Defnyddiwr :name',
|
||||
'usercsv' => 'Ffeil CSV',
|
||||
'two_factor_admin_optin_help' => 'Mae eich gosodiadau admin yn caniatau gorfodaeth dewisol o dilysiant dau-factor. ',
|
||||
|
||||
@ -160,7 +160,7 @@ return [
|
||||
'import' => 'Mewnforio',
|
||||
'import_this_file' => 'Map fields and process this file',
|
||||
'importing' => 'Importing',
|
||||
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. <br><br>The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the <a href="https://snipe-it.readme.io/docs/importing" target="_new">sample CSVs in the documentation</a>.',
|
||||
'import-history' => 'Mewnforio hanes',
|
||||
'asset_maintenance' => 'Cynnal a chadw Ased',
|
||||
'asset_maintenance_report' => 'Adroddiad cynnal a chadw ased',
|
||||
@ -309,10 +309,12 @@ return [
|
||||
'total_licenses' => 'cyfanswm trwyddedau',
|
||||
'total_accessories' => 'cyfanswm ategolion',
|
||||
'total_consumables' => 'cyfanswm nwyddau traul',
|
||||
'total_cost' => 'Total Cost',
|
||||
'type' => 'Math',
|
||||
'undeployable' => 'Ddim modd nodi allan',
|
||||
'unknown_admin' => 'Gweinydd Anhysbys',
|
||||
'unknown_user' => 'Unknown User',
|
||||
'unit_cost' => 'Unit Cost',
|
||||
'username' => 'Enw defnyddiwr',
|
||||
'update' => 'Diweddaru',
|
||||
'updating_item' => 'Updating :item',
|
||||
@ -353,9 +355,11 @@ return [
|
||||
'audit_overdue' => 'Overdue for Audit',
|
||||
'accept' => 'Accept :asset',
|
||||
'i_accept' => 'I accept',
|
||||
'i_decline_item' => 'Decline this item',
|
||||
'i_accept_item' => 'Accept this item',
|
||||
'i_accept_with_count' => 'I accept :count item|I accept :count items',
|
||||
'i_decline_item' => 'Decline this item|Decline these items',
|
||||
'i_accept_item' => 'Accept this item|Accept these items',
|
||||
'i_decline' => 'I decline',
|
||||
'i_decline_with_count' => 'I decline :count item|I decline :count items',
|
||||
'accept_decline' => 'Accept/Decline',
|
||||
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
|
||||
'clear_signature' => 'Clear Signature',
|
||||
@ -394,6 +398,7 @@ return [
|
||||
'permissions' => 'Permissions',
|
||||
'managed_ldap' => '(Managed via LDAP)',
|
||||
'export' => 'Export',
|
||||
'export_all_to_csv' => 'Export all to CSV',
|
||||
'ldap_sync' => 'LDAP Sync',
|
||||
'ldap_user_sync' => 'LDAP User Sync',
|
||||
'synchronize' => 'Synchronize',
|
||||
@ -483,7 +488,9 @@ return [
|
||||
'update_existing_values' => 'Update Existing Values?',
|
||||
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
|
||||
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
|
||||
'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
|
||||
'send_welcome_email_to_users' => ' Send welcome email to new users',
|
||||
'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
|
||||
'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
|
||||
'send_email' => 'Send Email',
|
||||
'call' => 'Call number',
|
||||
'back_before_importing' => 'Backup before importing?',
|
||||
@ -513,7 +520,10 @@ return [
|
||||
'item_notes' => ':item Notes',
|
||||
'item_name_var' => ':item Name',
|
||||
'error_user_company' => 'Checkout target company and asset company do not match',
|
||||
'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
|
||||
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
|
||||
'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
|
||||
'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
|
||||
'importer' => [
|
||||
'checked_out_to_fullname' => 'Checked Out to: Full Name',
|
||||
'checked_out_to_first_name' => 'Checked Out to: First Name',
|
||||
@ -585,6 +595,8 @@ return [
|
||||
'components' => ':count Component|:count Components',
|
||||
],
|
||||
|
||||
'show_inactive' => 'Expired or Terminated',
|
||||
'show_expiring' => 'Expiring or Terminating Soon',
|
||||
'more_info' => 'Mwy o wybodaeth',
|
||||
'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!',
|
||||
@ -609,6 +621,8 @@ return [
|
||||
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
|
||||
'footer_credit' => '<a target="_blank" href="https://snipeitapp.com" rel="noopener">Snipe-IT</a> is open source software, made with <i class="fa fa-heart" aria-hidden="true" style="color: #a94442; font-size: 10px" /></i><span class="sr-only">love</span> by <a href="https://bsky.app/profile/snipeitapp.com" rel="noopener">@snipeitapp.com</a>.',
|
||||
'set_password' => 'Set a Password',
|
||||
'upload_deleted' => 'Upload Deleted',
|
||||
'child_locations' => 'Child Locations',
|
||||
|
||||
// Add form placeholders here
|
||||
'placeholders' => [
|
||||
@ -625,11 +639,11 @@ return [
|
||||
'site_default' => 'Site Default',
|
||||
'default_blue' => 'Default Blue',
|
||||
'blue_dark' => 'Blue (Dark Mode)',
|
||||
'green' => 'Green Dark',
|
||||
'green' => 'Green',
|
||||
'green_dark' => 'Green (Dark Mode)',
|
||||
'red' => 'Red Dark',
|
||||
'red' => 'Red',
|
||||
'red_dark' => 'Red (Dark Mode)',
|
||||
'orange' => 'Orange Dark',
|
||||
'orange' => 'Orange',
|
||||
'orange_dark' => 'Orange (Dark Mode)',
|
||||
'black' => 'Black',
|
||||
'black_dark' => 'Black (Dark Mode)',
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user