diff --git a/.all-contributorsrc b/.all-contributorsrc index 10f450be42..bb0c8ce07c 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -2603,6 +2603,24 @@ "contributions": [ "code" ] + }, + { + "login": "QveenSi", + "name": "Yevhenii Huzii", + "avatar_url": "https://avatars.githubusercontent.com/u/19945501?v=4", + "profile": "https://github.com/QveenSi", + "contributions": [ + "code" + ] + }, + { + "login": "chrisweirich", + "name": "Christian Weirich", + "avatar_url": "https://avatars.githubusercontent.com/u/97299851?v=4", + "profile": "https://github.com/chrisweirich", + "contributions": [ + "code" + ] } ] } diff --git a/app/Console/Commands/MoveUploadsToNewDisk.php b/app/Console/Commands/MoveUploadsToNewDisk.php index 9de6781fb6..798ab99874 100644 --- a/app/Console/Commands/MoveUploadsToNewDisk.php +++ b/app/Console/Commands/MoveUploadsToNewDisk.php @@ -46,18 +46,18 @@ class MoveUploadsToNewDisk extends Command } $delete_local = $this->argument('delete_local'); - $public_uploads['accessories'] = glob('public/uploads/accessories' . "/*.*"); - $public_uploads['assets'] = glob('public/uploads/assets' . "/*.*"); - $public_uploads['avatars'] = glob('public/uploads/avatars' . "/*.*"); - $public_uploads['categories'] = glob('public/uploads/categories' . "/*.*"); - $public_uploads['companies'] = glob('public/uploads/companies' . "/*.*"); - $public_uploads['components'] = glob('public/uploads/components' . "/*.*"); - $public_uploads['consumables'] = glob('public/uploads/consumables' . "/*.*"); - $public_uploads['departments'] = glob('public/uploads/departments' . "/*.*"); - $public_uploads['locations'] = glob('public/uploads/locations' . "/*.*"); - $public_uploads['manufacturers'] = glob('public/uploads/manufacturers' . "/*.*"); - $public_uploads['suppliers'] = glob('public/uploads/suppliers' . "/*.*"); - $public_uploads['assetmodels'] = glob('public/uploads/models' . "/*.*"); + $public_uploads['accessories'] = glob('public/uploads/accessories'."/*.*"); + $public_uploads['assets'] = glob('public/uploads/assets'."/*.*"); + $public_uploads['avatars'] = glob('public/uploads/avatars'."/*.*"); + $public_uploads['categories'] = glob('public/uploads/categories'."/*.*"); + $public_uploads['companies'] = glob('public/uploads/companies'."/*.*"); + $public_uploads['components'] = glob('public/uploads/components'."/*.*"); + $public_uploads['consumables'] = glob('public/uploads/consumables'."/*.*"); + $public_uploads['departments'] = glob('public/uploads/departments'."/*.*"); + $public_uploads['locations'] = glob('public/uploads/locations'."/*.*"); + $public_uploads['manufacturers'] = glob('public/uploads/manufacturers'."/*.*"); + $public_uploads['suppliers'] = glob('public/uploads/suppliers'."/*.*"); + $public_uploads['assetmodels'] = glob('public/uploads/models'."/*.*"); // iterate files @@ -69,10 +69,10 @@ class MoveUploadsToNewDisk extends Command $type_count++; $filename = basename($public_upload[$i]); - try { - Storage::disk('public')->put('uploads/' . $public_type . '/' . $filename, file_get_contents($public_upload[$i])); - $new_url = Storage::disk('public')->url('uploads/' . $public_type . '/' . $filename, $filename); - $this->info($type_count . '. PUBLIC: ' . $filename . ' was copied to ' . $new_url); + try { + Storage::disk('public')->put('uploads/'.$public_type.'/'.$filename, file_get_contents($public_upload[$i])); + $new_url = Storage::disk('public')->url('uploads/'.$public_type.'/'.$filename, $filename); + $this->info($type_count.'. PUBLIC: '.$filename.' was copied to '.$new_url); } catch (\Exception $e) { \Log::debug($e); $this->error($e); @@ -80,8 +80,8 @@ class MoveUploadsToNewDisk extends Command } } - $logos = glob('public/uploads/setting*.*'); - $this->info('- There are ' . count($logos) . ' files that might be logos.'); + $logos = glob("public/uploads/setting*.*"); + $this->info("- There are ".count($logos).' files that might be logos.'); $type_count = 0; foreach ($logos as $logo) { @@ -92,14 +92,15 @@ class MoveUploadsToNewDisk extends Command $this->info($type_count . '. LOGO: ' . $filename . ' was copied to ' . env('PUBLIC_AWS_URL') . '/uploads/' . $filename); } - $private_uploads['assets'] = glob('storage/private_uploads/assets' . '/*.*'); - $private_uploads['signatures'] = glob('storage/private_uploads/signatures' . '/*.*'); - $private_uploads['audits'] = glob('storage/private_uploads/audits' . '/*.*'); - $private_uploads['assetmodels'] = glob('storage/private_uploads/assetmodels' . '/*.*'); - $private_uploads['imports'] = glob('storage/private_uploads/imports' . '/*.*'); - $private_uploads['licenses'] = glob('storage/private_uploads/licenses' . '/*.*'); - $private_uploads['users'] = glob('storage/private_uploads/users' . '/*.*'); - $private_uploads['backups'] = glob('storage/private_uploads/users' . '/*.*'); + $private_uploads['assets'] = glob('storage/private_uploads/assets'."/*.*"); + $private_uploads['signatures'] = glob('storage/private_uploads/signatures'."/*.*"); + $private_uploads['audits'] = glob('storage/private_uploads/audits'."/*.*"); + $private_uploads['assetmodels'] = glob('storage/private_uploads/assetmodels'."/*.*"); + $private_uploads['imports'] = glob('storage/private_uploads/imports'."/*.*"); + $private_uploads['licenses'] = glob('storage/private_uploads/licenses'."/*.*"); + $private_uploads['users'] = glob('storage/private_uploads/users'."/*.*"); + $private_uploads['backups'] = glob('storage/private_uploads/backups'."/*.*"); + foreach ($private_uploads as $private_type => $private_upload) { { diff --git a/app/Http/Controllers/Api/AssetsController.php b/app/Http/Controllers/Api/AssetsController.php index 13b745cdff..05c81b3cf5 100644 --- a/app/Http/Controllers/Api/AssetsController.php +++ b/app/Http/Controllers/Api/AssetsController.php @@ -786,6 +786,9 @@ class AssetsController extends Controller $error_payload['target_type'] = 'user'; } + if ($request->filled('status_id')) { + $asset->status_id = $request->get('status_id'); + } if (! isset($target)) { diff --git a/app/Http/Controllers/Api/LicensesController.php b/app/Http/Controllers/Api/LicensesController.php index 5a4c7d90d3..ad0055c223 100644 --- a/app/Http/Controllers/Api/LicensesController.php +++ b/app/Http/Controllers/Api/LicensesController.php @@ -26,7 +26,8 @@ class LicensesController extends Controller public function index(Request $request) { $this->authorize('view', License::class); - $licenses = Company::scopeCompanyables(License::with('company', 'manufacturer', 'supplier', 'category')->withCount('freeSeats as free_seats_count')); + $licenses = Company::scopeCompanyables(License::with('company', 'manufacturer', 'supplier','category')->withCount('freeSeats as free_seats_count')); + if ($request->filled('company_id')) { $licenses->where('company_id', '=', $request->input('company_id')); @@ -148,9 +149,10 @@ class LicensesController extends Controller } $total = $licenses->count(); - $licenses = $licenses->skip($offset)->take($limit)->get(); + $licenses = $licenses->skip($offset)->take($limit)->get(); return (new LicensesTransformer)->transformLicenses($licenses, $total); + } /** diff --git a/app/Http/Controllers/Api/ProfileController.php b/app/Http/Controllers/Api/ProfileController.php index fd98225320..8a06a268dd 100644 --- a/app/Http/Controllers/Api/ProfileController.php +++ b/app/Http/Controllers/Api/ProfileController.php @@ -29,11 +29,11 @@ class ProfileController extends Controller // Make sure the asset and request still exist if ($checkoutRequest && $checkoutRequest->itemRequested()) { $results['rows'][] = [ - 'image' => $checkoutRequest->itemRequested()->present()->getImageUrl(), - 'name' => $checkoutRequest->itemRequested()->present()->name(), - 'type' => $checkoutRequest->itemType(), - 'qty' => $checkoutRequest->quantity, - 'location' => ($checkoutRequest->location()) ? $checkoutRequest->location()->name : null, + 'image' => e($checkoutRequest->itemRequested()->present()->getImageUrl()), + 'name' => e($checkoutRequest->itemRequested()->present()->name()), + 'type' => e($checkoutRequest->itemType()), + 'qty' => (int) $checkoutRequest->quantity, + 'location' => ($checkoutRequest->location()) ? e($checkoutRequest->location()->name) : null, 'expected_checkin' => Helper::getFormattedDateObject($checkoutRequest->itemRequested()->expected_checkin, 'datetime'), 'request_date' => Helper::getFormattedDateObject($checkoutRequest->created_at, 'datetime'), ]; diff --git a/app/Http/Controllers/Api/StatuslabelsController.php b/app/Http/Controllers/Api/StatuslabelsController.php index 48cb20018c..f94600e1d1 100644 --- a/app/Http/Controllers/Api/StatuslabelsController.php +++ b/app/Http/Controllers/Api/StatuslabelsController.php @@ -178,6 +178,7 @@ class StatuslabelsController extends Controller } + /** * Show a count of assets by status label for pie chart * diff --git a/app/Http/Controllers/Assets/AssetCheckinController.php b/app/Http/Controllers/Assets/AssetCheckinController.php index 3ebd777865..8acc0a7b62 100644 --- a/app/Http/Controllers/Assets/AssetCheckinController.php +++ b/app/Http/Controllers/Assets/AssetCheckinController.php @@ -101,6 +101,7 @@ class AssetCheckinController extends Controller \Log::debug('After Location ID: '.$asset->location_id); \Log::debug('After RTD Location ID: '.$asset->rtd_location_id); + if ($request->filled('location_id')) { \Log::debug('NEW Location ID: '.$request->get('location_id')); $asset->location_id = e($request->get('location_id')); diff --git a/app/Http/Controllers/Assets/AssetsController.php b/app/Http/Controllers/Assets/AssetsController.php index e022334062..28ac51be13 100755 --- a/app/Http/Controllers/Assets/AssetsController.php +++ b/app/Http/Controllers/Assets/AssetsController.php @@ -867,6 +867,7 @@ class AssetsController extends Controller public function getRequestedIndex($user_id = null) { + $this->authorize('index', Asset::class); $requestedItems = CheckoutRequest::with('user', 'requestedItem')->whereNull('canceled_at')->with('user', 'requestedItem'); if ($user_id) { diff --git a/app/Http/Controllers/Licenses/LicensesController.php b/app/Http/Controllers/Licenses/LicensesController.php index 62b7529902..a0467654ca 100755 --- a/app/Http/Controllers/Licenses/LicensesController.php +++ b/app/Http/Controllers/Licenses/LicensesController.php @@ -134,6 +134,7 @@ class LicensesController extends Controller ->with('maintained_list', $maintained_list); } + /** * Validates and stores the license form data submitted from the edit * license form. diff --git a/app/Http/Controllers/Users/BulkUsersController.php b/app/Http/Controllers/Users/BulkUsersController.php index 43e1cfa0f4..007bb3763d 100644 --- a/app/Http/Controllers/Users/BulkUsersController.php +++ b/app/Http/Controllers/Users/BulkUsersController.php @@ -51,8 +51,8 @@ class BulkUsersController extends Controller }); } } - return redirect()->back()->with('success', trans('admin/users/message.password_resets_sent')); + } } @@ -103,7 +103,6 @@ class BulkUsersController extends Controller if (! $manager_conflict) { $this->conditionallyAddItem('manager_id'); } - // Save the updated info User::whereIn('id', $user_raw_array) ->where('id', '!=', Auth::id())->update($this->update_array); @@ -179,6 +178,7 @@ class BulkUsersController extends Controller $accessories = DB::table('accessories_users')->whereIn('assigned_to', $user_raw_array)->get(); $licenses = DB::table('license_seats')->whereIn('assigned_to', $user_raw_array)->get(); + $this->logItemCheckinAndDelete($assets, Asset::class); $this->logItemCheckinAndDelete($accessories, Accessory::class); $this->logItemCheckinAndDelete($licenses, LicenseSeat::class); @@ -189,6 +189,7 @@ class BulkUsersController extends Controller 'assigned_type' => null, ]); + LicenseSeat::whereIn('id', $licenses->pluck('id'))->update(['assigned_to' => null]); foreach ($users as $user) { diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index af1b4b43ff..10f9fd3235 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -39,6 +39,7 @@ class Kernel extends HttpKernel \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, \App\Http\Middleware\VerifyCsrfToken::class, \App\Http\Middleware\CheckLocale::class, + \App\Http\Middleware\CheckUserIsActivated::class, \App\Http\Middleware\CheckForTwoFactor::class, \Laravel\Passport\Http\Middleware\CreateFreshApiToken::class, \App\Http\Middleware\AssetCountForSidebar::class, diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/CheckUserIsActivated.php similarity index 60% rename from app/Http/Middleware/Authenticate.php rename to app/Http/Middleware/CheckUserIsActivated.php index 2ac322ff29..9872e99541 100644 --- a/app/Http/Middleware/Authenticate.php +++ b/app/Http/Middleware/CheckUserIsActivated.php @@ -4,8 +4,9 @@ namespace App\Http\Middleware; use Closure; use Illuminate\Contracts\Auth\Guard; +use Auth; -class Authenticate +class CheckUserIsActivated { /** * The Guard implementation. @@ -34,14 +35,16 @@ class Authenticate */ public function handle($request, Closure $next) { - if ($this->auth->guest()) { - if ($request->ajax()) { - return response('Unauthorized.', 401); - } else { - return redirect()->guest('login'); - } + + // If there is a user AND the user is NOT activated, send them to the login page + // This prevents people who still have active sessions logged in and their status gets toggled + // to inactive (aka unable to login) + if (($request->user()) && (!$request->user()->isActivated())) { + Auth::logout(); + return redirect()->guest('login'); } return $next($request); + } } diff --git a/app/Http/Requests/AssetCheckoutRequest.php b/app/Http/Requests/AssetCheckoutRequest.php index d6ed2d590a..a4c6f8e00d 100644 --- a/app/Http/Requests/AssetCheckoutRequest.php +++ b/app/Http/Requests/AssetCheckoutRequest.php @@ -25,6 +25,7 @@ class AssetCheckoutRequest extends Request 'assigned_user' => 'required_without_all:assigned_asset,assigned_location', 'assigned_asset' => 'required_without_all:assigned_user,assigned_location', 'assigned_location' => 'required_without_all:assigned_user,assigned_asset', + 'status_id' => 'exists:status_labels,id,deployable,1', 'checkout_to_type' => 'required|in:asset,location,user', ]; diff --git a/app/Http/Transformers/DepreciationReportTransformer.php b/app/Http/Transformers/DepreciationReportTransformer.php index 592fb877b4..03e55714c3 100644 --- a/app/Http/Transformers/DepreciationReportTransformer.php +++ b/app/Http/Transformers/DepreciationReportTransformer.php @@ -98,7 +98,7 @@ class DepreciationReportTransformer 'purchase_cost' => Helper::formatCurrencyOutput($asset->purchase_cost), 'book_value' => Helper::formatCurrencyOutput($depreciated_value), 'monthly_depreciation' => $monthly_depreciation, - 'checked_out_to' => $checkout_target, + 'checked_out_to' => ($checkout_target) ? e($checkout_target) : null, 'diff' => Helper::formatCurrencyOutput($diff), 'number_of_months' => ($asset->model && $asset->model->depreciation) ? e($asset->model->depreciation->months) : null, 'depreciation' => (($asset->model) && ($asset->model->depreciation)) ? e($asset->model->depreciation->name) : null, diff --git a/app/Models/Actionlog.php b/app/Models/Actionlog.php index de313a1b26..8d430c79d9 100755 --- a/app/Models/Actionlog.php +++ b/app/Models/Actionlog.php @@ -34,7 +34,7 @@ class Actionlog extends SnipeModel * * @var array */ - protected $searchableAttributes = ['action_type', 'note', 'log_meta']; + protected $searchableAttributes = ['action_type', 'note', 'log_meta','user_id']; /** * The relations and their attributes that should be included when searching the model. @@ -43,6 +43,7 @@ class Actionlog extends SnipeModel */ protected $searchableRelations = [ 'company' => ['name'], + 'user' => ['first_name','last_name','username'], ]; /** @@ -69,6 +70,7 @@ class Actionlog extends SnipeModel }); } + /** * Establishes the actionlog -> item relationship * @@ -125,6 +127,7 @@ class Actionlog extends SnipeModel return camel_case(class_basename($this->target_type)); } + /** * Establishes the actionlog -> uploads relationship * @@ -188,6 +191,7 @@ class Actionlog extends SnipeModel return $this->belongsTo(\App\Models\Location::class, 'location_id')->withTrashed(); } + /** * Check if the file exists, and if it does, force a download * diff --git a/app/Models/License.php b/app/Models/License.php index bcdcf3128e..2c7efacf23 100755 --- a/app/Models/License.php +++ b/app/Models/License.php @@ -186,6 +186,7 @@ class License extends Depreciable ]; } //Chunk and use DB transactions to prevent timeouts. + collect($licenseInsert)->chunk(1000)->each(function ($chunk) { DB::transaction(function () use ($chunk) { LicenseSeat::insert($chunk->toArray()); @@ -388,6 +389,7 @@ class License extends Depreciable ->orderBy('created_at', 'desc'); } + /** * Establishes the license -> admin user relationship * @@ -617,6 +619,7 @@ class License extends Depreciable ->first(); } + /** * Establishes the license -> free seats relationship * diff --git a/app/Models/Loggable.php b/app/Models/Loggable.php index 33e66d44e0..cf5eabc67b 100644 --- a/app/Models/Loggable.php +++ b/app/Models/Loggable.php @@ -114,6 +114,9 @@ trait Loggable $log->location_id = null; $log->note = $note; $log->action_date = $action_date; + if (! $log->action_date) { + $log->action_date = date('Y-m-d H:i:s'); + } if (! $log->action_date) { $log->action_date = date('Y-m-d H:i:s'); diff --git a/app/Models/User.php b/app/Models/User.php index c54b144725..1cd39abbf1 100755 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -258,6 +258,7 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo return $this->endpoint; } + /** * Establishes the user -> assets relationship * @@ -497,13 +498,15 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo $last_name = ''; $username = $users_name; } else { + list($first_name, $last_name) = explode(' ', $users_name, 2); // Assume filastname by default $username = str_slug(substr($first_name, 0, 1).$last_name); - if ($format == 'firstname.lastname') { - $username = str_slug($first_name).'.'.str_slug($last_name); + if ($format=='firstname.lastname') { + $username = str_slug($first_name) . '.' . str_slug($last_name); + } elseif ($format == 'lastnamefirstinitial') { $username = str_slug($last_name.substr($first_name, 0, 1)); } elseif ($format == 'firstintial.lastname') { @@ -527,6 +530,7 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo $user['last_name'] = $last_name; $user['username'] = strtolower($username); + return $user; } @@ -581,8 +585,8 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo elseif ((Setting::getSettings()->two_factor_enabled == '2') && ($this->two_factor_enrolled)) { return true; } - return false; + } @@ -640,6 +644,7 @@ class User extends SnipeModel implements AuthenticatableContract, AuthorizableCo }); } + /** * Query builder scope to order on manager * diff --git a/app/Observers/AssetObserver.php b/app/Observers/AssetObserver.php index 3c23f59c83..78fd4c451c 100644 --- a/app/Observers/AssetObserver.php +++ b/app/Observers/AssetObserver.php @@ -18,14 +18,14 @@ class AssetObserver public function updating(Asset $asset) { $attributes = $asset->getAttributes(); - $attributesOriginal = $asset->getAttributes(); + $attributesOriginal = $asset->getOriginal(); // If the asset isn't being checked out or audited, log the update. // (Those other actions already create log entries.) if (($attributes['assigned_to'] == $attributesOriginal['assigned_to']) && ((isset( $attributes['next_audit_date']) ? $attributes['next_audit_date'] : null) == (isset($attributesOriginal['next_audit_date']) ? $attributesOriginal['next_audit_date']: null)) - && ($attributes['last_checkout'] == $attributesOriginal['last_checkout'])) { - + && ($attributes['last_checkout'] == $attributesOriginal['last_checkout'])) + { $changed = []; foreach ($asset->getOriginal() as $key => $value) { diff --git a/config/version.php b/config/version.php index deb79729dd..67ceb383e9 100644 --- a/config/version.php +++ b/config/version.php @@ -1,10 +1,10 @@ 'v6.0.0-RC-7', - 'full_app_version' => 'v6.0.0-RC-7 - build 6787-gd56552a8a', - 'build_version' => '6787', + 'app_version' => 'v6.0.0-RC-8', + 'full_app_version' => 'v6.0.0-RC-8 - build 6825-g173ec44b9', + 'build_version' => '6825', 'prerelease_version' => '', - 'hash_version' => 'gd56552a8a', - 'full_hash' => 'v6.0.0-RC-7-34-gd56552a8a', + 'hash_version' => 'g173ec44b9', + 'full_hash' => 'v6.0.0-RC-8-10-g173ec44b9', 'branch' => 'develop', ); \ No newline at end of file diff --git a/database/factories/LicenseFactory.php b/database/factories/LicenseFactory.php index 30bcaca755..2aa681c0d2 100644 --- a/database/factories/LicenseFactory.php +++ b/database/factories/LicenseFactory.php @@ -1,5 +1,4 @@ 10, 'category_id' => 14, ]; + return $data; }); diff --git a/database/migrations/2015_09_21_235926_create_custom_field_custom_fieldset.php b/database/migrations/2015_09_21_235926_create_custom_field_custom_fieldset.php index 6e56769d5c..ff22d14b16 100644 --- a/database/migrations/2015_09_21_235926_create_custom_field_custom_fieldset.php +++ b/database/migrations/2015_09_21_235926_create_custom_field_custom_fieldset.php @@ -1,7 +1,7 @@ bigIncrements('id'); $table->integer('custom_field_id'); $table->integer('custom_fieldset_id'); - $table->integer('order'); $table->boolean('required'); $table->engine = 'InnoDB'; }); + } /** diff --git a/database/migrations/2022_04_05_135340_add_primary_key_to_custom_fields_pivot.php b/database/migrations/2022_04_05_135340_add_primary_key_to_custom_fields_pivot.php new file mode 100644 index 0000000000..35f2f15415 --- /dev/null +++ b/database/migrations/2022_04_05_135340_add_primary_key_to_custom_fields_pivot.php @@ -0,0 +1,39 @@ +bigIncrements('id')->first(); + } + }); + + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('custom_field_custom_fieldset', function (Blueprint $table) { + if (Schema::hasColumn('custom_field_custom_fieldset', 'id')) { + $table->dropColumn('id'); + } + }); + } +} diff --git a/resources/lang/af/admin/custom_fields/general.php b/resources/lang/af/admin/custom_fields/general.php index e440728058..8022ffdcb0 100644 --- a/resources/lang/af/admin/custom_fields/general.php +++ b/resources/lang/af/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/af/admin/hardware/general.php b/resources/lang/af/admin/hardware/general.php index 5e6cad4a3d..c6fc9f0bb9 100644 --- a/resources/lang/af/admin/hardware/general.php +++ b/resources/lang/af/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'argief', 'asset' => 'bate', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Kontrole bate', 'checkout' => 'Checkout Asset', 'clone' => 'Klone Bate', diff --git a/resources/lang/af/admin/settings/general.php b/resources/lang/af/admin/settings/general.php index de3f005c02..be84588847 100644 --- a/resources/lang/af/admin/settings/general.php +++ b/resources/lang/af/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Alerts aangeskakel', 'alert_interval' => 'Uitgaande Alert Drempel (in dae)', 'alert_inv_threshold' => 'Voorraadwaarskuwingsdrempel', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Bate ID\'s', 'audit_interval' => 'Ouditinterval', - 'audit_interval_help' => 'As u gereeld u bates fisies moet kontroleer, vul die interval in maande in.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Oudit Waarskuwing Drempel', 'audit_warning_days_help' => 'Hoeveel dae vooruit moet ons u waarsku wanneer bates verskuldig is vir ouditering?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Barcode-instellings', 'confirm_purge' => 'Bevestig skoonmaak', diff --git a/resources/lang/af/general.php b/resources/lang/af/general.php index 3ebd677ee8..1978cdbae2 100644 --- a/resources/lang/af/general.php +++ b/resources/lang/af/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'E-pos Domein', 'email_format' => 'E-pos formaat', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Dit word gebruik om e-posadresse te genereer wanneer u dit invoer', 'error' => 'Error', 'filastname_format' => 'Eerste Voorletter (jsmith@voorbeeld.com)', @@ -192,6 +193,8 @@ 'qty' => 'HOEV', 'quantity' => 'hoeveelheid', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Klaar om te implementeer', 'recent_activity' => 'Onlangse aktiwiteite', 'remaining' => 'Remaining', diff --git a/resources/lang/am/admin/custom_fields/general.php b/resources/lang/am/admin/custom_fields/general.php index 8483c67c69..4c7442b2d5 100644 --- a/resources/lang/am/admin/custom_fields/general.php +++ b/resources/lang/am/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/am/admin/hardware/general.php b/resources/lang/am/admin/hardware/general.php index 1ac49efef1..67226061b1 100644 --- a/resources/lang/am/admin/hardware/general.php +++ b/resources/lang/am/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archived', 'asset' => 'Asset', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Clone Asset', diff --git a/resources/lang/am/admin/settings/general.php b/resources/lang/am/admin/settings/general.php index 3e7a60f89f..6bbab229e3 100644 --- a/resources/lang/am/admin/settings/general.php +++ b/resources/lang/am/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Email Alerts Enabled', 'alert_interval' => 'Expiring Alerts Threshold (in days)', 'alert_inv_threshold' => 'Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Asset IDs', 'audit_interval' => 'Audit Interval', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Barcode Settings', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/am/general.php b/resources/lang/am/general.php index 2e358c77f9..0e38b21939 100644 --- a/resources/lang/am/general.php +++ b/resources/lang/am/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Error', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ready to Deploy', 'recent_activity' => 'Recent Activity', 'remaining' => 'Remaining', diff --git a/resources/lang/ar/admin/custom_fields/general.php b/resources/lang/ar/admin/custom_fields/general.php index ed0406422f..e4865630c4 100644 --- a/resources/lang/ar/admin/custom_fields/general.php +++ b/resources/lang/ar/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'يجب أن تكون هذه القيمة فريدة من نوعها عبر جميع الأصول', + 'unique' => 'غير مكرر', ]; diff --git a/resources/lang/ar/admin/hardware/general.php b/resources/lang/ar/admin/hardware/general.php index 65ab33ddcf..f6718b34bb 100644 --- a/resources/lang/ar/admin/hardware/general.php +++ b/resources/lang/ar/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'مؤرشفة', 'asset' => 'أصل', 'bulk_checkout' => 'إخراج الأصول', + 'bulk_checkin' => 'ادخال الأصل', 'checkin' => 'ادخال الأصل', 'checkout' => 'اخراج الأصل', 'clone' => 'استنساخ الأصل', diff --git a/resources/lang/ar/admin/settings/general.php b/resources/lang/ar/admin/settings/general.php index 249150e4f8..88965382a2 100644 --- a/resources/lang/ar/admin/settings/general.php +++ b/resources/lang/ar/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'التحقق من هذا المربع سيسمح للمستخدم باستخدام مظهر واجهة المستخدم بمظهر آخر.', 'asset_ids' => 'ارقام تعريف الاصول', 'audit_interval' => 'مدة التدقيق', - 'audit_interval_help' => 'إذا كان مطلوبا منك مراجعة أصولك الفعلية بشكل دوري، قم بإدخال المدة بالأشهر.', + 'audit_interval_help' => 'إذا كان مطلوبا منك التدقيق المادي بانتظام في الأصول الخاصة بك، قم بإدخال الفاصل الزمني بالأشهر التي تستخدمها. إذا قمت بتحديث هذه القيمة، كل "تواريخ المراجعة التالية" للأصول مع تاريخ مراجعة الحسابات المقبل.', 'audit_warning_days' => 'عتبة تحذير التدقيق', 'audit_warning_days_help' => 'كم يوما مقدما يجب أن نحذركم عندما تكون الأصول مستحقة للتدقيق؟', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'سيتم تسجيل الخروج من جميع المستخدمين الحاليين، بما في ذلك انت، بمجرد اكتمال الاستعادة.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'إعدادات الباركود', 'confirm_purge' => 'تأكيد التطهير', diff --git a/resources/lang/ar/admin/users/general.php b/resources/lang/ar/admin/users/general.php index 13477cc3b8..f8c41d59ac 100644 --- a/resources/lang/ar/admin/users/general.php +++ b/resources/lang/ar/admin/users/general.php @@ -30,7 +30,7 @@ return [ 'superadmin_permission_warning' => 'Only superadmins may grant a user superadmin access.', 'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.', 'remove_group_memberships' => 'Remove Group Memberships', - 'warning_deletion' => 'WARNING:', + 'warning_deletion' => 'تحذير:', 'warning_deletion_information' => 'You are about to delete the :count user(s) listed below. Super admin names are highlighted in red.', 'update_user_asssets_status' => 'Update all assets for these users to this status', 'checkin_user_properties' => 'Check in all properties associated with these users', diff --git a/resources/lang/bg/admin/custom_fields/general.php b/resources/lang/bg/admin/custom_fields/general.php index 731cb0752c..ffa01b6bd8 100644 --- a/resources/lang/bg/admin/custom_fields/general.php +++ b/resources/lang/bg/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/bg/admin/hardware/general.php b/resources/lang/bg/admin/hardware/general.php index 608e0c7cc5..2acde0c4ad 100644 --- a/resources/lang/bg/admin/hardware/general.php +++ b/resources/lang/bg/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Архивиран', 'asset' => 'Актив', 'bulk_checkout' => 'Изписване на активи', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Връщане на актив', 'checkout' => 'Проверка на активите', 'clone' => 'Копиране на актив', diff --git a/resources/lang/bg/admin/settings/general.php b/resources/lang/bg/admin/settings/general.php index c37f18b8aa..d2f5e80647 100644 --- a/resources/lang/bg/admin/settings/general.php +++ b/resources/lang/bg/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Поставянето на отметка тук, ще позволи на потребителя да ползва различна UI тема от основната.', 'asset_ids' => 'ID на активи', 'audit_interval' => 'Одитен интервал', - 'audit_interval_help' => 'Ако се изисква редовно да извършвате физически одит на активите си, въведете интервала в месеци.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Праг за предупреждение за одит', 'audit_warning_days_help' => 'Колко дни предварително трябва да ви предупреждаваме, когато активите са дължими за одит?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Настройки на баркод', 'confirm_purge' => 'Потвърдете пречистване ', diff --git a/resources/lang/bg/general.php b/resources/lang/bg/general.php index 4482af8472..a9afe11969 100644 --- a/resources/lang/bg/general.php +++ b/resources/lang/bg/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email домейн', 'email_format' => 'Email формат', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Използвайте това за да генерирате email адреси при въвеждане', 'error' => 'Error', 'filastname_format' => 'Инициал на името Фамилия (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Количество', 'quantity' => 'Kоличество', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Готово за предоставяне', 'recent_activity' => 'Последни действия', 'remaining' => 'Remaining', diff --git a/resources/lang/ca/admin/custom_fields/general.php b/resources/lang/ca/admin/custom_fields/general.php index 8483c67c69..4c7442b2d5 100644 --- a/resources/lang/ca/admin/custom_fields/general.php +++ b/resources/lang/ca/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/ca/admin/hardware/general.php b/resources/lang/ca/admin/hardware/general.php index 1ac49efef1..67226061b1 100644 --- a/resources/lang/ca/admin/hardware/general.php +++ b/resources/lang/ca/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archived', 'asset' => 'Asset', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Clone Asset', diff --git a/resources/lang/ca/admin/settings/general.php b/resources/lang/ca/admin/settings/general.php index 3e7a60f89f..6bbab229e3 100644 --- a/resources/lang/ca/admin/settings/general.php +++ b/resources/lang/ca/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Email Alerts Enabled', 'alert_interval' => 'Expiring Alerts Threshold (in days)', 'alert_inv_threshold' => 'Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Asset IDs', 'audit_interval' => 'Audit Interval', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Barcode Settings', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/ca/general.php b/resources/lang/ca/general.php index 9492e2b321..d81378e67e 100644 --- a/resources/lang/ca/general.php +++ b/resources/lang/ca/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Error', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ready to Deploy', 'recent_activity' => 'Recent Activity', 'remaining' => 'Remaining', diff --git a/resources/lang/cs/admin/custom_fields/general.php b/resources/lang/cs/admin/custom_fields/general.php index 1dd5923599..a45f3af701 100644 --- a/resources/lang/cs/admin/custom_fields/general.php +++ b/resources/lang/cs/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/cs/admin/hardware/general.php b/resources/lang/cs/admin/hardware/general.php index 4a921490df..f581ba6319 100644 --- a/resources/lang/cs/admin/hardware/general.php +++ b/resources/lang/cs/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archivováno', 'asset' => 'Majetek', 'bulk_checkout' => 'Vyskladnit majetek', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Převzít majetek', 'checkout' => 'Pokladní majetek', 'clone' => 'Klonovat majetek', diff --git a/resources/lang/cs/admin/settings/general.php b/resources/lang/cs/admin/settings/general.php index 3cb7e7a0bb..33f798dedc 100644 --- a/resources/lang/cs/admin/settings/general.php +++ b/resources/lang/cs/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Zaškrtnutí tohoto políčka umožní uživateli přepsat vzhled uživatelského rozhraní jiným.', 'asset_ids' => 'ID majetku', 'audit_interval' => 'Interval auditu', - 'audit_interval_help' => 'Pokud budete muset pravidelně fyzicky kontrolovat svůj majetek, zadejte interval v měsících.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Prah výstrahy auditu', 'audit_warning_days_help' => 'Kolik dní předem bychom vás měli varovat, když jsou aktiva splatná pro audit?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Nastavení čárového kódu', 'confirm_purge' => 'Potvrdit vyčištění', diff --git a/resources/lang/cy/admin/custom_fields/general.php b/resources/lang/cy/admin/custom_fields/general.php index da82ab507b..42e87baa94 100644 --- a/resources/lang/cy/admin/custom_fields/general.php +++ b/resources/lang/cy/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/cy/admin/hardware/general.php b/resources/lang/cy/admin/hardware/general.php index df8bf55b0e..f73085895d 100644 --- a/resources/lang/cy/admin/hardware/general.php +++ b/resources/lang/cy/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archifwyd', 'asset' => 'Ased', 'bulk_checkout' => 'Nodi Asedau Allan', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Nodi Asedau I Mewn', 'checkout' => 'Nodi Asedau Allan', 'clone' => 'Dyblygu Ased', diff --git a/resources/lang/cy/admin/settings/general.php b/resources/lang/cy/admin/settings/general.php index 439ba49505..4ad23c5878 100644 --- a/resources/lang/cy/admin/settings/general.php +++ b/resources/lang/cy/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Rhybuddion ebost wedi alluogi', 'alert_interval' => 'Trothwy Rhybuddion sy\'n Dod i Ben (mewn dyddiau)', 'alert_inv_threshold' => 'Trothwy Rhybudd Rhestr', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Rhifau Unigryw Asedau', 'audit_interval' => 'Cyfnod Awdit', - 'audit_interval_help' => 'Os ydych angen gwneud awdit ffisegol, rhowch y cyfnod mewn misoedd.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Trothwy Rhybuddio Awdit', 'audit_warning_days_help' => 'Sawl diwrnod o flaen llaw ddylswn rhybuddio chi o asedau sydd angen awdit?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Gosodiadau Barcode', 'confirm_purge' => 'Cadarnhau Clirio', diff --git a/resources/lang/cy/general.php b/resources/lang/cy/general.php index b63f707c68..d40089d5f3 100644 --- a/resources/lang/cy/general.php +++ b/resources/lang/cy/general.php @@ -96,6 +96,7 @@ 'eol' => 'DB', 'email_domain' => 'Parth Ebost', 'email_format' => 'Fformat Ebost', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Defnyddir hwn i gynhyrchu cyfeiriadau e-bost wrth fewnforio', 'error' => 'Error', 'filastname_format' => 'Llythyren Cyntaf Enw Cyntaf Cyfenw (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Nifer', 'quantity' => 'Nifer', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Barod i\'w defnyddio', 'recent_activity' => 'Gweithgareddau Diweddar', 'remaining' => 'Remaining', diff --git a/resources/lang/da/admin/custom_fields/general.php b/resources/lang/da/admin/custom_fields/general.php index bd0b441278..274d1f1f1b 100644 --- a/resources/lang/da/admin/custom_fields/general.php +++ b/resources/lang/da/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/da/admin/hardware/general.php b/resources/lang/da/admin/hardware/general.php index 5ebffda312..6429177b88 100644 --- a/resources/lang/da/admin/hardware/general.php +++ b/resources/lang/da/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'arkiverede', 'asset' => 'Asset', 'bulk_checkout' => 'Udtjek aktiv', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Klonaktiver', diff --git a/resources/lang/da/admin/settings/general.php b/resources/lang/da/admin/settings/general.php index 4d60c23f38..8c41560cd7 100644 --- a/resources/lang/da/admin/settings/general.php +++ b/resources/lang/da/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Afkrydsning her giver brugeren afgang til at overskrive UI skin med et andet skin.', 'asset_ids' => 'Aktiv-id\'er', 'audit_interval' => 'Revisionsinterval', - 'audit_interval_help' => 'Hvis du skal regelmæssigt kontrollere dine aktiver fysisk, skal du indtaste intervallet i måneder.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'Hvor mange dage i forvejen skal vi advare dig, når aktiver skal betales for revision?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Stregkodeindstillinger', 'confirm_purge' => 'Bekræft rensning', diff --git a/resources/lang/da/general.php b/resources/lang/da/general.php index d33c6a30ba..196da410ec 100644 --- a/resources/lang/da/general.php +++ b/resources/lang/da/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email domæne', 'email_format' => 'Email formattering', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Dette bruges til at generere email-adresser ved importering', 'error' => 'Error', 'filastname_format' => 'Fornavnskarakter Efternavn (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'STK', 'quantity' => 'Antal', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Klar til Implementering', 'recent_activity' => 'Seneste aktivitet', 'remaining' => 'Remaining', diff --git a/resources/lang/de/admin/depreciations/general.php b/resources/lang/de/admin/depreciations/general.php index ce43edcdab..40bfc843cc 100644 --- a/resources/lang/de/admin/depreciations/general.php +++ b/resources/lang/de/admin/depreciations/general.php @@ -10,7 +10,7 @@ return [ 'number_of_months' => 'Anzahl der Monate', 'update' => 'Abschreibung aktualisieren', 'depreciation_min' => 'Minimaler Wert nach Abschreibung', - 'no_depreciations_warning' => 'Warning: - You do not currently have any depreciations set up. - Please set up at least one depreciation to view the depreciation report.', + 'no_depreciations_warning' => 'Warnung: + Sie haben derzeit keine Abschreibungen eingerichtet. + Bitte richten Sie mindestens eine Abschreibung ein, um den Abschreibungsbericht anzuzeigen.', ]; diff --git a/resources/lang/de/admin/depreciations/table.php b/resources/lang/de/admin/depreciations/table.php index d0b557d208..c9f6b3d865 100644 --- a/resources/lang/de/admin/depreciations/table.php +++ b/resources/lang/de/admin/depreciations/table.php @@ -6,6 +6,6 @@ return [ 'months' => 'Monate', 'term' => 'Laufzeit', 'title' => 'Name ', - 'depreciation_min' => 'Floor Value', + 'depreciation_min' => 'Minimalwert', ]; diff --git a/resources/lang/de/admin/hardware/general.php b/resources/lang/de/admin/hardware/general.php index 15724de85c..204c8d9d0f 100644 --- a/resources/lang/de/admin/hardware/general.php +++ b/resources/lang/de/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archiviert', 'asset' => 'Asset', 'bulk_checkout' => 'Assets herausgeben', + 'bulk_checkin' => 'Assets zurücknehmen', 'checkin' => 'Asset zurücknehmen', 'checkout' => 'Asset herausgeben', 'clone' => 'Asset duplizieren', diff --git a/resources/lang/de/general.php b/resources/lang/de/general.php index 8b603ad91d..45593d0fc1 100644 --- a/resources/lang/de/general.php +++ b/resources/lang/de/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'E-Mail-Domain', 'email_format' => 'E-Mail-Format', + 'employee_number' => 'Mitarbeiternummer', 'email_domain_help' => 'Dies wird verwendet, um E-Mail-Adressen beim Importieren zu generieren', 'error' => 'Fehler', 'filastname_format' => 'Initial des Vornamen + Nachname (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Menge', 'quantity' => 'Anzahl', 'quantity_minimum' => ':count Artikel sind unter oder fast unter der Mindestmenge', + 'quickscan_checkin' => 'Schnell Rücknahme', + 'quickscan_checkin_status' => 'Rückgabe Status', 'ready_to_deploy' => 'Bereit zum Herausgeben', 'recent_activity' => 'Letzte Aktivität', 'remaining' => 'Übrig', diff --git a/resources/lang/el/admin/custom_fields/general.php b/resources/lang/el/admin/custom_fields/general.php index 081af52e49..e689cfe647 100644 --- a/resources/lang/el/admin/custom_fields/general.php +++ b/resources/lang/el/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/el/admin/hardware/general.php b/resources/lang/el/admin/hardware/general.php index ce53b01940..a0bb7b6b15 100644 --- a/resources/lang/el/admin/hardware/general.php +++ b/resources/lang/el/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Αρχειοθετημένα', 'asset' => 'Πάγιο', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Ταμείο ελέγχου', 'clone' => 'Κλώνος χρήστη', diff --git a/resources/lang/el/admin/settings/general.php b/resources/lang/el/admin/settings/general.php index 8a60b98a44..08f61d9e81 100644 --- a/resources/lang/el/admin/settings/general.php +++ b/resources/lang/el/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Ειδοποιήσεις ενεργοποιημένες', 'alert_interval' => 'Ελάχιστο όριο λήξης ειδοποιήσεων (σε ημέρες)', 'alert_inv_threshold' => 'Ειδοποιήση ορίου αποθήκης', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Στοιχεία ταυτότητας περιουσιακών στοιχείων', 'audit_interval' => 'Διάρκεια ελέγχου', - 'audit_interval_help' => 'Αν απαιτείται να ελέγχετε τακτικά τα πάγια σας, εισάγετε το διάστημα σε μήνες.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Όριο προειδοποίησης ελέγχου', 'audit_warning_days_help' => 'Πόσες μέρες νωρίτερα θα πρέπει να σας προειδοποιήσουμε όταν τα περιουσιακά στοιχεία οφείλονται για έλεγχο;', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Ρυθμίσεις γραμμωτού κώδικα', 'confirm_purge' => 'Επιβεβαίωση καθαρισμού', diff --git a/resources/lang/el/general.php b/resources/lang/el/general.php index a15e066ff1..10c0dd8d97 100644 --- a/resources/lang/el/general.php +++ b/resources/lang/el/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Μορφή ηλεκτρονικού ταχυδρομείου', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Αυτό χρησιμοποιείται για τη δημιουργία διευθύνσεων ηλεκτρονικού ταχυδρομείου κατά την εισαγωγή', 'error' => 'Error', 'filastname_format' => 'Πρώτο αρχικό όνομα (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Τεμάχια', 'quantity' => 'Ποσότητα', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Είστε έτοιμοι να αναπτύξετε', 'recent_activity' => 'Πρόσφατη Δραστηριότητα', 'remaining' => 'Remaining', diff --git a/resources/lang/en-GB/admin/custom_fields/general.php b/resources/lang/en-GB/admin/custom_fields/general.php index 90169b44b5..d8965e96d1 100644 --- a/resources/lang/en-GB/admin/custom_fields/general.php +++ b/resources/lang/en-GB/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/en-GB/admin/hardware/general.php b/resources/lang/en-GB/admin/hardware/general.php index 1ac49efef1..67226061b1 100644 --- a/resources/lang/en-GB/admin/hardware/general.php +++ b/resources/lang/en-GB/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archived', 'asset' => 'Asset', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Clone Asset', diff --git a/resources/lang/en-GB/admin/settings/general.php b/resources/lang/en-GB/admin/settings/general.php index 193272d0c7..f86c493cd5 100644 --- a/resources/lang/en-GB/admin/settings/general.php +++ b/resources/lang/en-GB/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Asset IDs', 'audit_interval' => 'Audit Interval', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Barcode Settings', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/en-GB/general.php b/resources/lang/en-GB/general.php index 3cced6bc98..2bb25ccfc5 100644 --- a/resources/lang/en-GB/general.php +++ b/resources/lang/en-GB/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Error', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ready to Deploy', 'recent_activity' => 'Recent Activity', 'remaining' => 'Remaining', diff --git a/resources/lang/en-ID/admin/custom_fields/general.php b/resources/lang/en-ID/admin/custom_fields/general.php index a3bbc7a1f2..5e50e0bb59 100644 --- a/resources/lang/en-ID/admin/custom_fields/general.php +++ b/resources/lang/en-ID/admin/custom_fields/general.php @@ -42,5 +42,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/en-ID/admin/hardware/general.php b/resources/lang/en-ID/admin/hardware/general.php index bb50da94eb..550d2d7c1f 100644 --- a/resources/lang/en-ID/admin/hardware/general.php +++ b/resources/lang/en-ID/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Diarsipkan', 'asset' => 'Aset', 'bulk_checkout' => 'Pengeluaran Aset', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Mendaftar aset', 'checkout' => 'Periksa aset', 'clone' => 'Gandakan aset', diff --git a/resources/lang/en-ID/admin/settings/general.php b/resources/lang/en-ID/admin/settings/general.php index a719fcbe07..36e135b3d2 100644 --- a/resources/lang/en-ID/admin/settings/general.php +++ b/resources/lang/en-ID/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Mencentang kotak ini akan mengizinkan seorang pengguna untuk menimpa skin UI dengan sesuatu yang berbeda.', 'asset_ids' => 'ID Aset', 'audit_interval' => 'Memeriksa perbedaan', - 'audit_interval_help' => 'Jika anda diminta untuk melakukan audit aset secara fisik dengan teratur, maka masukkan selang waktu dalam beberapa bulan.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Ambang Peringatan Audit', 'audit_warning_days_help' => 'Berapa hari sebelum kami harus memperingatkan aset yang akan dilelang?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Pengaturan Kode batang', 'confirm_purge' => 'Konfirmasi Pembersihan', diff --git a/resources/lang/en-ID/general.php b/resources/lang/en-ID/general.php index cd6d97c9ff..72cb7c3041 100644 --- a/resources/lang/en-ID/general.php +++ b/resources/lang/en-ID/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Format Surel', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Ini digunakan untuk menghasilkan alamat surel ketika saat mengimpor', 'error' => 'Error', 'filastname_format' => 'Nama Depan Nama Belakang (jane.smith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'JML', 'quantity' => 'Jumlah', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Siap digunakan', 'recent_activity' => 'Aktifitas tebaru', 'remaining' => 'Remaining', diff --git a/resources/lang/en/auth/message.php b/resources/lang/en/auth/message.php index f086d8c04c..507dfad15a 100644 --- a/resources/lang/en/auth/message.php +++ b/resources/lang/en/auth/message.php @@ -3,7 +3,7 @@ return array( 'account_already_exists' => 'An account with the this email already exists.', - 'account_not_found' => 'The username or password is incorrect.', + 'account_not_found' => 'The username or password is incorrect or this user is not approved to login.', 'account_not_activated' => 'This user account is not activated.', 'account_suspended' => 'This user account is suspended.', 'account_banned' => 'This user account is banned.', diff --git a/resources/lang/es-CO/admin/custom_fields/general.php b/resources/lang/es-CO/admin/custom_fields/general.php index 8b42979809..05eb31f1ff 100644 --- a/resources/lang/es-CO/admin/custom_fields/general.php +++ b/resources/lang/es-CO/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/es-CO/admin/hardware/general.php b/resources/lang/es-CO/admin/hardware/general.php index 79c8123a28..cdbedae4ab 100644 --- a/resources/lang/es-CO/admin/hardware/general.php +++ b/resources/lang/es-CO/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archivado', 'asset' => 'Equipo', 'bulk_checkout' => 'Asignar Equipos', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Devolver Equipo', 'checkout' => 'Asignar Equipo', 'clone' => 'Clonar Equipo', diff --git a/resources/lang/es-CO/admin/settings/general.php b/resources/lang/es-CO/admin/settings/general.php index bea75f538e..c908abee9d 100644 --- a/resources/lang/es-CO/admin/settings/general.php +++ b/resources/lang/es-CO/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Marcar esta casilla permitirá al usuario reemplazar la apariencia de la interfaz con una diferente.', 'asset_ids' => 'IDs de Recurso', 'audit_interval' => 'Intervalo de auditoría', - 'audit_interval_help' => 'Si tiene que auditar físicamente sus activos periódicamente, ingrese el intervalo en meses.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Umbral de advertencia de auditoría', 'audit_warning_days_help' => '¿Con cuántos días de antelación debemos advertirle cuándo se deben auditar los activos?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Configuración de Código de Barras', 'confirm_purge' => 'Confirmar la purga', diff --git a/resources/lang/es-CO/general.php b/resources/lang/es-CO/general.php index 01aa41f5da..e1d7e647bc 100644 --- a/resources/lang/es-CO/general.php +++ b/resources/lang/es-CO/general.php @@ -20,9 +20,9 @@ 'asset_report' => 'Reporte de Activos', 'asset_tag' => 'Etiqueta de activo', 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', - 'accept_assets' => 'Accept Assets :name', - 'accept_assets_menu' => 'Accept Assets', + 'assets_available' => 'Equipos disponibles', + 'accept_assets' => 'Activos Aceptados :name', + 'accept_assets_menu' => 'Activos Aceptados', 'audit' => 'Auditoría', 'audit_report' => 'Registro de auditoría', 'assets' => 'Activos', @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Dominio de correo electrónico', 'email_format' => 'Formato de correo electrónico', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Esto se utiliza para generar direcciones de correo electrónico cuando se importan', 'error' => 'Error', 'filastname_format' => 'Primera Inicial del Apellido (jsmith@ejemplo.com)', @@ -138,7 +139,7 @@ 'asset_maintenance_report' => 'Reporte de Mantenimiento de Equipo', 'asset_maintenances' => 'Mantenimientos de Equipo', 'item' => 'Item', - 'item_name' => 'Item Name', + 'item_name' => 'Nombre del ítem', 'insufficient_permissions' => '¡Permisos insuficientes!', 'kits' => 'Equipamiento predefinido', 'language' => 'Lenguaje', @@ -192,6 +193,8 @@ 'qty' => 'Cant', 'quantity' => 'Cantidad', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Disponibles', 'recent_activity' => 'Actividad Reciente', 'remaining' => 'Remaining', diff --git a/resources/lang/es-ES/admin/custom_fields/general.php b/resources/lang/es-ES/admin/custom_fields/general.php index ac8b9915d1..23841aa2e2 100644 --- a/resources/lang/es-ES/admin/custom_fields/general.php +++ b/resources/lang/es-ES/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/es-ES/admin/hardware/general.php b/resources/lang/es-ES/admin/hardware/general.php index 00e1df7a84..38afd99ada 100644 --- a/resources/lang/es-ES/admin/hardware/general.php +++ b/resources/lang/es-ES/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archivado', 'asset' => 'Equipo', 'bulk_checkout' => 'Activos Asignados', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Quitar Equipo', 'checkout' => 'Activo de pago', 'clone' => 'Clonar Equipo', diff --git a/resources/lang/es-ES/admin/settings/general.php b/resources/lang/es-ES/admin/settings/general.php index bea75f538e..c908abee9d 100644 --- a/resources/lang/es-ES/admin/settings/general.php +++ b/resources/lang/es-ES/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Marcar esta casilla permitirá al usuario reemplazar la apariencia de la interfaz con una diferente.', 'asset_ids' => 'IDs de Recurso', 'audit_interval' => 'Intervalo de auditoría', - 'audit_interval_help' => 'Si tiene que auditar físicamente sus activos periódicamente, ingrese el intervalo en meses.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Umbral de advertencia de auditoría', 'audit_warning_days_help' => '¿Con cuántos días de antelación debemos advertirle cuándo se deben auditar los activos?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Configuración de Código de Barras', 'confirm_purge' => 'Confirmar la purga', diff --git a/resources/lang/es-ES/general.php b/resources/lang/es-ES/general.php index fd85264e61..703987c046 100644 --- a/resources/lang/es-ES/general.php +++ b/resources/lang/es-ES/general.php @@ -20,9 +20,9 @@ 'asset_report' => 'Reporte de Equipos', 'asset_tag' => 'Etiqueta', 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', - 'accept_assets' => 'Accept Assets :name', - 'accept_assets_menu' => 'Accept Assets', + 'assets_available' => 'Equipos disponibles', + 'accept_assets' => 'Activos Aceptados :name', + 'accept_assets_menu' => 'Activos Aceptados', 'audit' => 'Auditoría', 'audit_report' => 'Registro de auditoría', 'assets' => 'Equipos', @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Dominio de correo electrónico', 'email_format' => 'Formato de correo electrónico', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Esto se utiliza para generar direcciones de correo electrónico cuando se importan', 'error' => 'Error', 'filastname_format' => 'Primera Inicial del Apellido (jsmith@ejemplo.com)', @@ -138,7 +139,7 @@ 'asset_maintenance_report' => 'Reporte de Mantenimiento de Equipo', 'asset_maintenances' => 'Mantenimientos de Equipo', 'item' => 'Item', - 'item_name' => 'Item Name', + 'item_name' => 'Nombre del ítem', 'insufficient_permissions' => '¡Permisos insuficientes!', 'kits' => 'Equipamiento predefinido', 'language' => 'Lenguaje', @@ -192,6 +193,8 @@ 'qty' => 'Cant', 'quantity' => 'Cantidad', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Disponibles', 'recent_activity' => 'Actividad Reciente', 'remaining' => 'Remaining', diff --git a/resources/lang/es-MX/admin/custom_fields/general.php b/resources/lang/es-MX/admin/custom_fields/general.php index 935b135b24..a4e964ae08 100644 --- a/resources/lang/es-MX/admin/custom_fields/general.php +++ b/resources/lang/es-MX/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/es-MX/admin/hardware/general.php b/resources/lang/es-MX/admin/hardware/general.php index d02a9dcc13..18957591f1 100644 --- a/resources/lang/es-MX/admin/hardware/general.php +++ b/resources/lang/es-MX/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archivado', 'asset' => 'Equipo', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Quitar Equipo', 'checkout' => 'Activo de pago', 'clone' => 'Clonar Equipo', diff --git a/resources/lang/es-MX/admin/settings/general.php b/resources/lang/es-MX/admin/settings/general.php index 79cca394e8..70d21579e1 100644 --- a/resources/lang/es-MX/admin/settings/general.php +++ b/resources/lang/es-MX/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Al marcar esta casilla se permitirá al usuario sustituir el tema de la interfase con uno diferente.', 'asset_ids' => 'IDs de Recurso', 'audit_interval' => 'Intervalo de auditoría', - 'audit_interval_help' => 'Si tiene que auditar físicamente sus activos periódicamente, ingrese el intervalo en meses.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Umbral de advertencia de auditoría', 'audit_warning_days_help' => '¿Con cuántos días de antelación debemos advertirle cuándo se deben auditar los activos?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Configuración de Código de Barras', 'confirm_purge' => 'Confirmar la purga', diff --git a/resources/lang/es-MX/general.php b/resources/lang/es-MX/general.php index e9bd7229c1..2dba5ddb3e 100644 --- a/resources/lang/es-MX/general.php +++ b/resources/lang/es-MX/general.php @@ -20,9 +20,9 @@ 'asset_report' => 'Reporte de Equipos', 'asset_tag' => 'Etiqueta', 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', - 'accept_assets' => 'Accept Assets :name', - 'accept_assets_menu' => 'Accept Assets', + 'assets_available' => 'Equipos disponibles', + 'accept_assets' => 'Activos Aceptados :name', + 'accept_assets_menu' => 'Activos Aceptados', 'audit' => 'Auditoría', 'audit_report' => 'Registro de auditoría', 'assets' => 'Equipos', @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Dominio de correo electrónico', 'email_format' => 'Formato de correo electrónico', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Esto se utiliza para generar direcciones de correo electrónico cuando se importan', 'error' => 'Error', 'filastname_format' => 'Primera Inicial del Apellido (jsmith@ejemplo.com)', @@ -138,7 +139,7 @@ 'asset_maintenance_report' => 'Reporte de Mantenimiento de Equipo', 'asset_maintenances' => 'Mantenimientos de Equipo', 'item' => 'Item', - 'item_name' => 'Item Name', + 'item_name' => 'Nombre del ítem', 'insufficient_permissions' => '¡Permisos insuficientes!', 'kits' => 'Kits predefinidos', 'language' => 'Lenguaje', @@ -192,6 +193,8 @@ 'qty' => 'Cant', 'quantity' => 'Cantidad', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Disponibles', 'recent_activity' => 'Actividad Reciente', 'remaining' => 'Remaining', diff --git a/resources/lang/es-VE/admin/custom_fields/general.php b/resources/lang/es-VE/admin/custom_fields/general.php index 4613498798..6359adea5e 100644 --- a/resources/lang/es-VE/admin/custom_fields/general.php +++ b/resources/lang/es-VE/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/es-VE/admin/hardware/general.php b/resources/lang/es-VE/admin/hardware/general.php index 6c6240a634..b167084b54 100644 --- a/resources/lang/es-VE/admin/hardware/general.php +++ b/resources/lang/es-VE/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archivado', 'asset' => 'Activo', 'bulk_checkout' => 'Activos Asignados', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Ingresar Activo', 'checkout' => 'Retirar Activo', 'clone' => 'Clonar Activo', diff --git a/resources/lang/es-VE/admin/settings/general.php b/resources/lang/es-VE/admin/settings/general.php index a6a3352472..f690a20a2b 100644 --- a/resources/lang/es-VE/admin/settings/general.php +++ b/resources/lang/es-VE/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Marcar esta casilla permitirá al usuario reemplazar la apariencia de la interfaz con una diferente.', 'asset_ids' => 'IDs de activos', 'audit_interval' => 'Intervalo de Auditoría', - 'audit_interval_help' => 'Si tienes la obligación de auditar física y regularmente tus activos, ingresa el intervalo en meses.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Umbral de Aviso de Auditoría', 'audit_warning_days_help' => '¿Con cuántos días de antelación deberíamos advertirte que tus activos se deben auditar?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Configuración del Código de Barras', 'confirm_purge' => 'Confirmar Purga', diff --git a/resources/lang/es-VE/general.php b/resources/lang/es-VE/general.php index 1b6e544913..2b4d9ba483 100644 --- a/resources/lang/es-VE/general.php +++ b/resources/lang/es-VE/general.php @@ -20,9 +20,9 @@ 'asset_report' => 'Reporte de Activo', 'asset_tag' => 'Etiqueta de Activo', 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', - 'accept_assets' => 'Accept Assets :name', - 'accept_assets_menu' => 'Accept Assets', + 'assets_available' => 'Equipos disponibles', + 'accept_assets' => 'Activos Aceptados :name', + 'accept_assets_menu' => 'Activos Aceptados', 'audit' => 'Auditar', 'audit_report' => 'Registro de Auditoría', 'assets' => 'Activos', @@ -96,6 +96,7 @@ 'eol' => 'Fin de Vida', 'email_domain' => 'Dominio de Correo Electrónico', 'email_format' => 'Formato de Correo Electrónico', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Este se utiliza para generar direcciones de correo al importar', 'error' => 'Error', 'filastname_format' => 'Primera Inicial y Apellido (jsmith@example.com)', @@ -138,7 +139,7 @@ 'asset_maintenance_report' => 'Reporte de Mantenimiento de Activo', 'asset_maintenances' => 'Mantenimientos de Activo', 'item' => 'Elemento', - 'item_name' => 'Item Name', + 'item_name' => 'Nombre del ítem', 'insufficient_permissions' => '¡Permisos insuficientes!', 'kits' => 'Equipamiento predefinido', 'language' => 'Lenguaje', @@ -192,6 +193,8 @@ 'qty' => 'Cantidad', 'quantity' => 'Cantidad', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Listo para enviar', 'recent_activity' => 'Actividad Reciente', 'remaining' => 'Remaining', diff --git a/resources/lang/et/admin/custom_fields/general.php b/resources/lang/et/admin/custom_fields/general.php index 33fab4f889..8df03da089 100644 --- a/resources/lang/et/admin/custom_fields/general.php +++ b/resources/lang/et/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/et/admin/hardware/general.php b/resources/lang/et/admin/hardware/general.php index a5ca441b34..86c5d05c84 100644 --- a/resources/lang/et/admin/hardware/general.php +++ b/resources/lang/et/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arhiveeritud', 'asset' => 'Vahend', 'bulk_checkout' => 'Vara kasutusele võtt', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Klooni vahend', diff --git a/resources/lang/et/admin/settings/general.php b/resources/lang/et/admin/settings/general.php index 1a2c9317bd..dfd736560e 100644 --- a/resources/lang/et/admin/settings/general.php +++ b/resources/lang/et/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Varade ID-d', 'audit_interval' => 'Auditi intervall', - 'audit_interval_help' => 'Kui teil on kohustus kontrollida oma vara füüsiliselt, sisestage intervall kuude kaupa.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Auditi hoiatuslävi', 'audit_warning_days_help' => 'Kui mitu päeva ette peaksime hoiatama, kui vara on auditeerimiseks ette nähtud?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Triipkoodide seadistused', 'confirm_purge' => 'Kinnitage puhastamine', diff --git a/resources/lang/et/general.php b/resources/lang/et/general.php index 35b6d9b1b9..1e6a8a97e0 100644 --- a/resources/lang/et/general.php +++ b/resources/lang/et/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'E-posti domeen', 'email_format' => 'E-maili formaat', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Seda kasutatakse importimisel e-posti aadresside loomiseks', 'error' => 'Error', 'filastname_format' => 'Esimene esmane perekonnanimi (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Hulk', 'quantity' => 'Hulk', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Kasutamine valmis', 'recent_activity' => 'Viimane tegevus', 'remaining' => 'Remaining', diff --git a/resources/lang/fa/admin/custom_fields/general.php b/resources/lang/fa/admin/custom_fields/general.php index 6346d63f23..1cd8ffb6f8 100644 --- a/resources/lang/fa/admin/custom_fields/general.php +++ b/resources/lang/fa/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/fa/admin/hardware/form.php b/resources/lang/fa/admin/hardware/form.php index abda479e88..234f07f6a6 100644 --- a/resources/lang/fa/admin/hardware/form.php +++ b/resources/lang/fa/admin/hardware/form.php @@ -54,10 +54,10 @@ return [ 'warranty' => 'گارانتی', 'warranty_expires' => 'انقضای ضمانت', 'years' => 'سال ها', - 'asset_location' => 'Update Asset Location', - 'asset_location_update_default_current' => 'Update default location AND actual location', - 'asset_location_update_default' => 'Update only default location', - 'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.', - 'asset_deployable' => 'That status is deployable. This asset can be checked out.', - 'processing_spinner' => 'Processing...', + 'asset_location' => 'بروزرسانی مکان دارایی', + 'asset_location_update_default_current' => 'بروزرسانی مکان پیش‌فرض AND مکان فعلی', + 'asset_location_update_default' => 'فقط بروزرسانی مکان پیش‌فرض', + 'asset_not_deployable' => 'این وضعیت دارایی قابل استقرار نیست. این دارایی قابل پذیرش نیست.', + 'asset_deployable' => 'این وضعیت دارایی قابل استقرار است. این دارایی قابل پذیرش است.', + 'processing_spinner' => 'در حال پردازش...', ]; diff --git a/resources/lang/fa/admin/hardware/general.php b/resources/lang/fa/admin/hardware/general.php index 3ffaac8676..0bb25fd1ec 100644 --- a/resources/lang/fa/admin/hardware/general.php +++ b/resources/lang/fa/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'بایگانی شد', 'asset' => 'دارایی', 'bulk_checkout' => 'خروج دارایی ها', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'دارایی checkin', 'checkout' => 'دارایی پرداخت', 'clone' => 'دارایی شگرف', diff --git a/resources/lang/fa/admin/models/message.php b/resources/lang/fa/admin/models/message.php index 1b7d46a15e..0ae5ab14d1 100644 --- a/resources/lang/fa/admin/models/message.php +++ b/resources/lang/fa/admin/models/message.php @@ -34,7 +34,7 @@ return array( ), 'bulkdelete' => array( - 'error' => 'No models were selected, so nothing was deleted.', + 'error' => 'هیچ مدلی انتخاب نشده بود، بنابراین هیچ چیز حذف نشد.', 'success' => ':success_count model(s) deleted!', 'success_partial' => ':success_count model(s) were deleted, however :fail_count were unable to be deleted because they still have assets associated with them.' ), diff --git a/resources/lang/fa/admin/settings/general.php b/resources/lang/fa/admin/settings/general.php index 3be4a47c99..201348ed08 100644 --- a/resources/lang/fa/admin/settings/general.php +++ b/resources/lang/fa/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'هشدارها فعال شد', 'alert_interval' => 'آستانه ی انقضای هشدارها( به روز)', 'alert_inv_threshold' => 'فهرست آستانه ی هشدار', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'ID حساب', 'audit_interval' => 'فاصله حسابرسی', - 'audit_interval_help' => 'اگر شما ملزم هستید که به طور منظم از دارایی های خود حسابرسی کنید، فاصله را در ماه وارد کنید.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'آستانه هشدار حسابرسی', 'audit_warning_days_help' => 'چند روز پیش باید به شما هشدار می دهیم هنگامی که دارایی ها برای حسابرسی مورد نیاز است؟', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'تنظیمات بارکد', 'confirm_purge' => 'تایید پاکسازی', diff --git a/resources/lang/fa/admin/statuslabels/message.php b/resources/lang/fa/admin/statuslabels/message.php index 20f106c5a6..852ad7dca6 100644 --- a/resources/lang/fa/admin/statuslabels/message.php +++ b/resources/lang/fa/admin/statuslabels/message.php @@ -23,7 +23,7 @@ return [ 'help' => [ 'undeployable' => 'این دارایی ها را نمی توان به کسی اختصاص داد.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'این دارایی ها قابل بررسی هستند. هنگامی که آن‌ها تخصیص داده شدند، وضعیت متا Deployed نظر گرفته می‌شود.', 'archived' => 'این دارایی ها قابل چک نیست و فقط در نمای Archived نمایش داده می شوند. این امر برای حفظ اطلاعات مربوط به دارایی ها برای بودجه بندی / اهداف تاریخی مفید است اما نگه داشتن آنها از فهرست دارایی روزمره.', 'pending' => 'این دارایی ها هنوز نمی توانند به هر کسی اختصاص داده شوند، که اغلب برای مواردی که برای تعمیر وجود دارد، مورد استفاده قرار می گیرند، اما انتظار می رود که به گردش درآید.', ], diff --git a/resources/lang/fa/admin/statuslabels/table.php b/resources/lang/fa/admin/statuslabels/table.php index 94bef55219..81e7a969ae 100644 --- a/resources/lang/fa/admin/statuslabels/table.php +++ b/resources/lang/fa/admin/statuslabels/table.php @@ -5,8 +5,8 @@ return array( 'archived' => 'آرشیو', 'create' => 'ساخت برچسب وضعیت', 'color' => 'رنگ نمودار', - 'default_label' => 'Default Label', - 'default_label_help' => 'This is used to ensure your most commonly used status labels appear at the top of the select box when creating/editing assets.', + 'default_label' => 'برچسب پیش‌فرض', + 'default_label_help' => 'این برای اطمینان از اینکه پرکاربردترین برچسب‌های وضعیت شما هنگام ایجاد/ویرایش دارایی‌ها در بالای کادر انتخاب ظاهر شوند استفاده می‌شود.', 'deployable' => 'گسترش', 'info' => 'برچسب های وضعیت، برای توصیف وضعیت های مختلفی که دارایی های شما می توانند داشته باشند، استفاده می شود. آن ها می توانند برای تعمیر، گمشده/دزدیده شده و غیره باشند. شما می توانید برچسب های وضعیت جدیدی برای گسترش کار، انتظار و آرشیو دارایی ها بسازید.', 'name' => 'نام وضعیت', diff --git a/resources/lang/fa/general.php b/resources/lang/fa/general.php index 0d6dddc2b4..4c085b38e1 100644 --- a/resources/lang/fa/general.php +++ b/resources/lang/fa/general.php @@ -98,6 +98,7 @@ 'eol' => 'EOL', 'email_domain' => 'دامنه ایمیل', 'email_format' => 'فرمت ایمیل', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'این برای تولید آدرس های ایمیل هنگام وارد کردن استفاده می شود', 'error' => 'Error', 'filastname_format' => 'اولین نام خانوادگی (jsmith@example.com)', @@ -195,6 +196,8 @@ 'qty' => 'QTY', 'quantity' => 'مقدار', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'آماده اعزام', 'recent_activity' => 'کارکرد اخیر', 'remaining' => 'Remaining', diff --git a/resources/lang/fi/admin/custom_fields/general.php b/resources/lang/fi/admin/custom_fields/general.php index cc45b0b80c..b961fce03d 100644 --- a/resources/lang/fi/admin/custom_fields/general.php +++ b/resources/lang/fi/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/fi/admin/hardware/general.php b/resources/lang/fi/admin/hardware/general.php index 2abe47b0e5..97e51d6611 100644 --- a/resources/lang/fi/admin/hardware/general.php +++ b/resources/lang/fi/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arkistoitu', 'asset' => 'Laite', 'bulk_checkout' => 'Laitteiden luovutus', + 'bulk_checkin' => 'Palauta laitteita', 'checkin' => 'Palauta laite', 'checkout' => 'Luovuta laite', 'clone' => 'Monista laite', diff --git a/resources/lang/fi/admin/settings/general.php b/resources/lang/fi/admin/settings/general.php index 7672a1d0e8..16a1186639 100644 --- a/resources/lang/fi/admin/settings/general.php +++ b/resources/lang/fi/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Voit valita tässä voivatko käyttäjät määritellä haluamansa ulkoasun käyttöönsä.', 'asset_ids' => 'Laitetunnisteet', 'audit_interval' => 'Tarkastusväli', - 'audit_interval_help' => 'Jos sinun on säännöllisesti tarkastettava laitteesi, anna aikaväli kuukausina.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Tarkastuksen ennakkovaroitus', 'audit_warning_days_help' => 'Kuinka monta päivää etukäteen varoitamme, kun laitteet on tarkoitus tarkastaa?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Viivakoodi asetukset', 'confirm_purge' => 'Vahvista puhdistus', diff --git a/resources/lang/fi/general.php b/resources/lang/fi/general.php index b7569d03c5..634bb77cdd 100644 --- a/resources/lang/fi/general.php +++ b/resources/lang/fi/general.php @@ -96,6 +96,7 @@ 'eol' => 'Elinikä', 'email_domain' => 'Sähköpostin verkkotunnus', 'email_format' => 'Sähköpostiosoitteen muotoilu', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Käytetään sähköpostiosoitteiden luontiin tietoja tuotaessa', 'error' => 'Error', 'filastname_format' => 'Ensimmäinen nimikirjain sukunimi (pvirtanen@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'KPL', 'quantity' => 'Määrä', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Valmis käyttöönottoon', 'recent_activity' => 'Viimeisin toiminta', 'remaining' => 'Remaining', diff --git a/resources/lang/fil/admin/custom_fields/general.php b/resources/lang/fil/admin/custom_fields/general.php index 7153b311eb..4b30f9fa14 100644 --- a/resources/lang/fil/admin/custom_fields/general.php +++ b/resources/lang/fil/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/fil/admin/hardware/general.php b/resources/lang/fil/admin/hardware/general.php index 68bb1eff81..f9b84a1924 100644 --- a/resources/lang/fil/admin/hardware/general.php +++ b/resources/lang/fil/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Ang Archive', 'asset' => 'Ang Asset', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'I-checkin ang Asset', 'checkout' => 'I-checkout ang Asset', 'clone' => 'I-clone ang Asset', diff --git a/resources/lang/fil/admin/settings/general.php b/resources/lang/fil/admin/settings/general.php index 85a38cff22..fed9213259 100644 --- a/resources/lang/fil/admin/settings/general.php +++ b/resources/lang/fil/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Ang Email Alerts ay Pinagana', 'alert_interval' => 'Ang Alerts Threshold ay Mag-expire (sa iilang araw)', 'alert_inv_threshold' => 'Ang Threshold ng Inventory Alert', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Ang mga ID ng asset', 'audit_interval' => 'Ang Pagitan ng Audit', - 'audit_interval_help' => 'Kung ikaw ay kinakailangan na regular na magbilang ng iyomg mga pag-aari, ilagay ang agwat sa buwan.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Ang Warning Threshold ng Audit', 'audit_warning_days_help' => 'Mga ilang araw na makaadvans kami sa pagpaalala sa iyo kapag ang mga asset ay nakasaad na para sa pag-audit?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Ang mga Setting sa Barcode', 'confirm_purge' => 'I-kumperma ang Pag-purge', diff --git a/resources/lang/fil/general.php b/resources/lang/fil/general.php index ca78a9b8e7..fda98468e2 100644 --- a/resources/lang/fil/general.php +++ b/resources/lang/fil/general.php @@ -96,6 +96,7 @@ 'eol' => 'Ang EOL', 'email_domain' => 'Ang Dominyo ng Email', 'email_format' => 'Ang Pormat ng Email', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Ito ay ginagamit para makapagsagawa ng email address kapag mag-import', 'error' => 'Error', 'filastname_format' => 'Ang Unang Inisyal Huling Pangalan (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Ang QTY', 'quantity' => 'Ang Dami', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Handa nang I-deploy', 'recent_activity' => 'Ang Kasalukuyang Aktibidad', 'remaining' => 'Remaining', diff --git a/resources/lang/fr/admin/settings/general.php b/resources/lang/fr/admin/settings/general.php index cda1df0df2..21cc347b9a 100644 --- a/resources/lang/fr/admin/settings/general.php +++ b/resources/lang/fr/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Cocher cette case permettra à un utilisateur de remplacer le thème de l\'interface utilisateur par un autre.', 'asset_ids' => 'ID de l\'actif', 'audit_interval' => 'Intervalle d\'audit', - 'audit_interval_help' => 'Si vous devez régulièrement vérifier physiquement vos actifs, entrez l\'intervalle en mois.', + 'audit_interval_help' => 'Si vous auditez physiquement vos actifs, entrez l\'intervalle en mois entre deux audits. La mise à jour de cette valeur s\'appliquera à toutes les « prochaines dates d\'audit » pour les actifs avec une date d\'audit dans le futur.', 'audit_warning_days' => 'Seuil d\'avertissement d\'audit', 'audit_warning_days_help' => 'Combien de jours à l\'avance devrions-nous vous avertir lorsque les actifs doivent être vérifiés?', 'auto_increment_assets' => 'Générer des numéros d\'inventaire auto-incrémentés', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Téléverser la sauvegarde', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'Tous les utilisateurs existants, y compris vous, seront déconnectés une fois la restauration achevée.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Configuration des codes à barres', 'confirm_purge' => 'Confirmer la purge', diff --git a/resources/lang/fr/general.php b/resources/lang/fr/general.php index 3f0fc01c98..41f61c7dca 100644 --- a/resources/lang/fr/general.php +++ b/resources/lang/fr/general.php @@ -96,6 +96,7 @@ 'eol' => 'Fin de vie', 'email_domain' => 'Domaine de l\'e-mail', 'email_format' => 'Format de l\'e-mail', + 'employee_number' => 'Numéro d’employé', 'email_domain_help' => 'C\'est utilisé pour générer des adresses e-mail lors de l\'importation', 'error' => 'Erreur', 'filastname_format' => 'Première lettre du prénom Nom de famille (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTÉ', 'quantity' => 'Quantité', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Prêt à être déployé', 'recent_activity' => 'Activité récente', 'remaining' => 'Restant', diff --git a/resources/lang/ga-IE/admin/custom_fields/general.php b/resources/lang/ga-IE/admin/custom_fields/general.php index 22a2f44612..ac002cb5b9 100644 --- a/resources/lang/ga-IE/admin/custom_fields/general.php +++ b/resources/lang/ga-IE/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/ga-IE/admin/hardware/general.php b/resources/lang/ga-IE/admin/hardware/general.php index defdb03507..8d3df87687 100644 --- a/resources/lang/ga-IE/admin/hardware/general.php +++ b/resources/lang/ga-IE/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archived', 'asset' => 'Sócmhainn', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Sócmhainn Checkin', 'checkout' => 'Seiceáil Seiceáil', 'clone' => 'Sócmhainn Clón', diff --git a/resources/lang/ga-IE/admin/settings/general.php b/resources/lang/ga-IE/admin/settings/general.php index 3a665eea58..554deb0a8a 100644 --- a/resources/lang/ga-IE/admin/settings/general.php +++ b/resources/lang/ga-IE/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Cumarsáid Cumarsáide', 'alert_interval' => 'Tairseach Alerts ag dul in éag (i laethanta)', 'alert_inv_threshold' => 'Tairseach Alert Fardail', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'IDanna Sócmhainní', 'audit_interval' => 'Agallamh Iniúchta', - 'audit_interval_help' => 'Más gá duit do chuid sócmhainní a iniúchadh go rialta, cuir isteach an t-eatramh i mí.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Tairseach Rabhaidh Iniúchta', 'audit_warning_days_help' => 'Cé mhéad lá roimh ré ba chóir dúinn rabhadh a thabhairt duit nuair a bhíonn sócmhainní dlite le hiniúchadh?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Socruithe Barcode', 'confirm_purge' => 'Dearbhaigh Purge', diff --git a/resources/lang/ga-IE/general.php b/resources/lang/ga-IE/general.php index 85f5bb6ba9..edfa8f8964 100644 --- a/resources/lang/ga-IE/general.php +++ b/resources/lang/ga-IE/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Fearann ​​Ríomhphoist', 'email_format' => 'Foirm Ríomhphoist', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Úsáidtear é seo chun seoltaí ríomhphoist a ghiniúint nuair a allmhairítear iad', 'error' => 'Error', 'filastname_format' => 'An Chéad Ainm Deiridh Tosaigh (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Cainníocht', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Réidh le Imscaradh', 'recent_activity' => 'Gníomhaíocht le déanaí', 'remaining' => 'Remaining', diff --git a/resources/lang/he/admin/custom_fields/general.php b/resources/lang/he/admin/custom_fields/general.php index c5261bd87d..184ebaceb0 100644 --- a/resources/lang/he/admin/custom_fields/general.php +++ b/resources/lang/he/admin/custom_fields/general.php @@ -36,10 +36,12 @@ return [ 'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.', 'about_custom_fields_title' => 'About Custom Fields', 'about_custom_fields_text' => 'Custom fields allow you to add arbitrary attributes to assets.', - 'add_field_to_fieldset' => 'Add Field to Fieldset', - 'make_optional' => 'Required - click to make optional', - 'make_required' => 'Optional - click to make required', + 'add_field_to_fieldset' => 'הוסף שדה למערך', + 'make_optional' => 'חובה - בחר כדי להפוך לאופציונלי', + 'make_required' => 'אופציונלי - בחר כדי להפוך לחובה', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'ערך זה חייב להיות ייחודי בכל הנכסים', + 'unique' => 'ייחודי', ]; diff --git a/resources/lang/he/admin/groups/titles.php b/resources/lang/he/admin/groups/titles.php index 2411b8f0dd..9e43c1ef9d 100644 --- a/resources/lang/he/admin/groups/titles.php +++ b/resources/lang/he/admin/groups/titles.php @@ -12,5 +12,5 @@ return [ 'deny' => 'לְהַכּחִישׁ', 'permission' => 'Permission', 'grant' => 'Grant', - 'no_permissions' => 'This group has no permissions.' + 'no_permissions' => 'לקבוצה זו אין הרשאות.' ]; diff --git a/resources/lang/he/admin/hardware/form.php b/resources/lang/he/admin/hardware/form.php index 97adfc2ae8..7f9dadbe06 100644 --- a/resources/lang/he/admin/hardware/form.php +++ b/resources/lang/he/admin/hardware/form.php @@ -40,10 +40,10 @@ return [ 'warranty' => 'אַחֲרָיוּת', 'warranty_expires' => 'תפוגת האחריות', 'years' => 'שנים', - 'asset_location' => 'Update Asset Location', - 'asset_location_update_default_current' => 'Update default location AND actual location', - 'asset_location_update_default' => 'Update only default location', - 'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.', - 'asset_deployable' => 'That status is deployable. This asset can be checked out.', - 'processing_spinner' => 'Processing...', + 'asset_location' => 'עדכן מיקום הנכס', + 'asset_location_update_default_current' => 'עדכן מיקומים', + 'asset_location_update_default' => 'עדכן מיקום ברירת מחדל', + 'asset_not_deployable' => 'הנכס הזה לא זמין. לא ניתן לספק ללקוח.', + 'asset_deployable' => 'הנכס זמין. ניתן לשייך למיקום.', + 'processing_spinner' => 'מעבד...', ]; diff --git a/resources/lang/he/admin/hardware/general.php b/resources/lang/he/admin/hardware/general.php index 931c3580e8..ab45bd1b85 100644 --- a/resources/lang/he/admin/hardware/general.php +++ b/resources/lang/he/admin/hardware/general.php @@ -5,14 +5,15 @@ return [ 'about_assets_text' => 'נכסים הם פריטים במעקב לפי מספר סידורי או תג נכס. הם נוטים להיות פריטים בעלי ערך גבוה יותר, כאשר מזהים פריטים ספציפיים.', 'archived' => 'בארכיון', 'asset' => 'נכס', - 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkout' => 'שייך נכס', + 'bulk_checkin' => 'החזר נכסים לזמינות', 'checkin' => 'רכוש', 'checkout' => 'רכוש Checkout', 'clone' => 'נכס משוכפל', 'deployable' => 'ניתן לפריסה', - 'deleted' => 'This asset has been deleted.', + 'deleted' => 'הנכס הזה נמחק.', 'edit' => 'ערוך נכס', - 'model_deleted' => 'This Assets model has been deleted. You must restore the model before you can restore the Asset.', + 'model_deleted' => 'המודל של הנכס נמחק. יש לשחזר את המודל לפני שניתן לשחזר את הנכס.', 'requestable' => 'ניתן לבקש', 'requested' => 'מבוקש', 'not_requestable' => 'Not Requestable', @@ -21,7 +22,7 @@ return [ 'pending' => 'ממתין ל', 'undeployable' => 'לא ניתן לפריסה', 'view' => 'הצג נכס', - 'csv_error' => 'You have an error in your CSV file:', + 'csv_error' => 'קיימת שגיאה בקובץ ה-CSV שלך:', 'import_text' => '

Upload a CSV that contains asset history. The assets and users MUST already exist in the system, or they will be skipped. Matching assets for history import happens against the asset tag. We will try to find a matching user based on the user\'s name you provide, and the criteria you select below. If you do not select any criteria below, it will simply try to match on the username format you configured in the Admin > General Settings. @@ -36,8 +37,8 @@ return [ 'csv_import_match_first' => 'Try to match users by first name (jane) format', 'csv_import_match_email' => 'Try to match users by email as username', 'csv_import_match_username' => 'Try to match users by username', - 'error_messages' => 'Error messages:', - 'success_messages' => 'Success messages:', - 'alert_details' => 'Please see below for details.', - 'custom_export' => 'Custom Export' + 'error_messages' => 'שגיאות:', + 'success_messages' => 'אישור:', + 'alert_details' => 'נא ראה הסבר בהמשך.', + 'custom_export' => 'יבוא מותאם' ]; diff --git a/resources/lang/he/admin/hardware/message.php b/resources/lang/he/admin/hardware/message.php index 1095a8e44c..34dca0298b 100644 --- a/resources/lang/he/admin/hardware/message.php +++ b/resources/lang/he/admin/hardware/message.php @@ -4,7 +4,7 @@ return [ 'undeployable' => ' אזהרה: הנכס הזה סומן כבלתי ניתן לפריסה כעת. אם סטטוס זה השתנה, עדכן את סטטוס הנכס.', 'does_not_exist' => 'הנכס אינו קיים.', - 'does_not_exist_or_not_requestable' => 'That asset does not exist or is not requestable.', + 'does_not_exist_or_not_requestable' => 'הנכס אינו קיים או לא זמין.', 'assoc_users' => 'הנכס הזה מסומן כרגע למשתמש ולא ניתן למחוק אותו. בדוק תחילה את הנכס ולאחר מכן נסה למחוק שוב.', 'create' => [ diff --git a/resources/lang/he/admin/hardware/table.php b/resources/lang/he/admin/hardware/table.php index 40c9407733..9312732ffd 100644 --- a/resources/lang/he/admin/hardware/table.php +++ b/resources/lang/he/admin/hardware/table.php @@ -4,11 +4,11 @@ return [ 'asset_tag' => 'תג נכס', 'asset_model' => 'דֶגֶם', - 'book_value' => 'Current Value', + 'book_value' => 'הערך הנוכחי', 'change' => 'בפנים בחוץ', 'checkout_date' => 'תבדוק את התאריך', 'checkoutto' => 'נבדק', - 'current_value' => 'Current Value', + 'current_value' => 'הערך הנוכחי', 'diff' => 'דיף', 'dl_csv' => 'הורד CSV', 'eol' => 'EOL', @@ -21,10 +21,10 @@ return [ 'title' => 'נכס', 'image' => 'תמונה של מכשיר', 'days_without_acceptance' => 'ימים ללא קבלה', - 'monthly_depreciation' => 'Monthly Depreciation', - 'assigned_to' => 'Assigned To', - 'requesting_user' => 'Requesting User', - 'requested_date' => 'Requested Date', - 'changed' => 'Changed', - 'icon' => 'Icon', + 'monthly_depreciation' => 'פחות חודשי', + 'assigned_to' => 'שוייך ל', + 'requesting_user' => 'דרישה של', + 'requested_date' => 'תאריך דרישה', + 'changed' => 'שונה', + 'icon' => 'סמל', ]; diff --git a/resources/lang/he/admin/kits/general.php b/resources/lang/he/admin/kits/general.php index f724ecbf07..f763544bb7 100644 --- a/resources/lang/he/admin/kits/general.php +++ b/resources/lang/he/admin/kits/general.php @@ -17,9 +17,9 @@ return [ 'update_appended_accessory' => 'Update appended Accessory', 'append_consumable' => 'Append Consumable', 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', + 'append_license' => 'הוסף רשיון', + 'update_appended_license' => 'עדכן רשיון נוסף', + 'append_model' => 'הוסף מודל', 'update_appended_model' => 'Update appended model', 'license_error' => 'License already attached to kit', 'license_added_success' => 'License added successfully', diff --git a/resources/lang/he/admin/locations/table.php b/resources/lang/he/admin/locations/table.php index 2a83003ef1..d181bc4ff0 100644 --- a/resources/lang/he/admin/locations/table.php +++ b/resources/lang/he/admin/locations/table.php @@ -30,8 +30,8 @@ return [ 'asset_model' => 'Model', 'asset_serial' => 'Serial', 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', - 'asset_expected_checkin' => 'Expected Checkin', + 'asset_checked_out' => 'הנכס שוייך', + 'asset_expected_checkin' => 'תאריך חזרה למלאי', 'date' => 'Date:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', diff --git a/resources/lang/he/admin/settings/general.php b/resources/lang/he/admin/settings/general.php index 009a3360c7..cf5a8165a9 100644 --- a/resources/lang/he/admin/settings/general.php +++ b/resources/lang/he/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'סימון התיבה הזאת יאפשר למשתמשים לדרוס את עיצוב המערכת בעיצוב שונה.', 'asset_ids' => 'מזהי נכסים', 'audit_interval' => 'מרווח ביקורת', - 'audit_interval_help' => 'אם אתה נדרש באופן קבוע לביקורת פיזית של הנכסים שלך, הזן את מרווח בחודשים.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'סף אזהרות ביקורת', 'audit_warning_days_help' => 'כמה ימים מראש עלינו להזהיר אותך כאשר הנכסים צפויים לביקורת?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'הגדרות ברקוד', 'confirm_purge' => 'אשר את הטיהור', @@ -118,9 +118,9 @@ return [ 'login' => 'Login Attempts', 'login_attempt' => 'Login Attempt', 'login_ip' => 'IP Address', - 'login_success' => 'Success?', + 'login_success' => 'הצליח?', 'login_user_agent' => 'User Agent', - 'login_help' => 'List of attempted logins', + 'login_help' => 'רשימת נסיונות כניסה למערכת', 'login_note' => 'הערה התחברות', 'login_note_help' => 'אופציונלי לכלול כמה משפטים במסך הכניסה שלך, למשל כדי לעזור לאנשים שמצאו מכשיר אבוד או נגנב. השדה הזה מקבל Github בטעם מרקדון ', 'login_remote_user_text' => 'אפשרויות כניסת משתמש מרוחק', @@ -186,9 +186,9 @@ return [ 'setting' => 'הגדרה', 'settings' => 'הגדרות', 'show_alerts_in_menu' => 'Show alerts in top menu', - 'show_archived_in_list' => 'Archived Assets', - 'show_archived_in_list_text' => 'Show archived assets in the "all assets" listing', - 'show_assigned_assets' => 'Show assets assigned to assets', + 'show_archived_in_list' => 'נכסים בארכיון', + 'show_archived_in_list_text' => 'הצג גם נכסים בארכיון ברשימת "כל הנכסים"', + 'show_assigned_assets' => 'הצג נכסים משוייכים לנכסים', 'show_assigned_assets_help' => 'Display assets which were assigned to the other assets in View User -> Assets, View User -> Info -> Print All Assigned and in Account -> View Assigned Assets.', 'show_images_in_email' => 'Show images in emails', 'show_images_in_email_help' => 'Uncheck this box if your Snipe-IT installation is behind a VPN or closed network and users outside the network will not be able to load images served from this installation in their emails.', @@ -276,7 +276,7 @@ return [ 'oauth_help' => 'Oauth Endpoint Settings', 'asset_tag_title' => 'Update Asset Tag Settings', 'barcode_title' => 'Update Barcode Settings', - 'barcodes' => 'Barcodes', + 'barcodes' => 'ברקודים', 'barcodes_help_overview' => 'Barcode & QR settings', 'barcodes_help' => 'This will attempt to delete cached barcodes. This would typically only be used if your barcode settings have changed, or if your Snipe-IT URL has changed. Barcodes will be re-generated when accessed next.', 'barcodes_spinner' => 'Attempting to delete files...', @@ -286,7 +286,7 @@ return [ 'mail_test' => 'Send Test', 'mail_test_help' => 'This will attempt to send a test mail to :replyto.', 'filter_by_keyword' => 'Filter by setting keyword', - 'security' => 'Security', + 'security' => 'אבטחה', 'security_title' => 'Update Security Settings', 'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication', 'security_help' => 'Two-factor, Password Restrictions', @@ -307,8 +307,8 @@ return [ 'purge_help' => 'Purge Deleted Records', 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', - 'create_admin_user' => 'Create a User ::', + 'employee_number' => 'מספר עובד', + 'create_admin_user' => 'צור משתמש ::', 'create_admin_success' => 'Success! Your admin user has been added!', 'create_admin_redirect' => 'Click here to go to your app login!', 'setup_migrations' => 'Database Migrations ::', diff --git a/resources/lang/he/admin/settings/message.php b/resources/lang/he/admin/settings/message.php index 20059789d7..278ff0b234 100644 --- a/resources/lang/he/admin/settings/message.php +++ b/resources/lang/he/admin/settings/message.php @@ -22,8 +22,8 @@ return [ 'mail' => [ 'sending' => 'Sending Test Email...', 'success' => 'Mail sent!', - 'error' => 'Mail could not be sent.', - 'additional' => 'No additional error message provided. Check your mail settings and your app log.' + 'error' => 'מייל לא נשלח.', + 'additional' => 'קיימות שגיאות נוספות. בדוק במייל שלך ובלוגים.' ], 'ldap' => [ 'testing' => 'Testing LDAP Connection, Binding & Query ...', diff --git a/resources/lang/he/admin/statuslabels/message.php b/resources/lang/he/admin/statuslabels/message.php index ab5dd55942..055d27afc6 100644 --- a/resources/lang/he/admin/statuslabels/message.php +++ b/resources/lang/he/admin/statuslabels/message.php @@ -23,7 +23,7 @@ return [ 'help' => [ 'undeployable' => 'לא ניתן להקצות נכסים אלה לאף אחד.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'ניתן להסיר את הנכסים האלו. לאחר שיוך הם יקבלו סטטוס של Deployed.', 'archived' => 'לא ניתן לבדוק את הנכסים האלה, והם יופיעו רק בתצוגה המפורטת בארכיון. אפשרות זו שימושית לשמירת מידע על נכסים לצורך תקצוב / מטרות היסטוריות, אך שמירה על רשימת הנכסים היומיומית.', 'pending' => 'נכסים אלה עדיין לא ניתן להקצות לאף אחד, משמש לעתים קרובות עבור פריטים כי הם לתיקון, אבל הם צפויים לחזור למחזור.', ], diff --git a/resources/lang/he/admin/users/general.php b/resources/lang/he/admin/users/general.php index 7cb66fdffe..3c721ab240 100644 --- a/resources/lang/he/admin/users/general.php +++ b/resources/lang/he/admin/users/general.php @@ -30,7 +30,7 @@ return [ 'superadmin_permission_warning' => 'Only superadmins may grant a user superadmin access.', 'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.', 'remove_group_memberships' => 'Remove Group Memberships', - 'warning_deletion' => 'WARNING:', + 'warning_deletion' => 'אזהרה:', 'warning_deletion_information' => 'You are about to delete the :count user(s) listed below. Super admin names are highlighted in red.', 'update_user_asssets_status' => 'Update all assets for these users to this status', 'checkin_user_properties' => 'Check in all properties associated with these users', diff --git a/resources/lang/he/button.php b/resources/lang/he/button.php index 1fa3f3aeb3..ab5784e5e7 100644 --- a/resources/lang/he/button.php +++ b/resources/lang/he/button.php @@ -19,6 +19,6 @@ return [ 'go' => 'Go', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', - 'append' => 'Append', + 'append' => 'הוסף', 'new' => 'New', ]; diff --git a/resources/lang/he/general.php b/resources/lang/he/general.php index e4283ecdfb..f4abcd196f 100644 --- a/resources/lang/he/general.php +++ b/resources/lang/he/general.php @@ -19,10 +19,10 @@ 'asset' => 'נכס', 'asset_report' => 'דוח נכסים', 'asset_tag' => 'תג נכס', - 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', - 'accept_assets' => 'Accept Assets :name', - 'accept_assets_menu' => 'Accept Assets', + 'asset_tags' => 'תגיות נכס', + 'assets_available' => 'נכסים זמינים', + 'accept_assets' => 'אשר נכס :name', + 'accept_assets_menu' => 'אשר הנכסים', 'audit' => 'בְּדִיקָה', 'audit_report' => 'יומן ביקורת', 'assets' => 'נכסים', @@ -33,10 +33,10 @@ 'bulkaudit' => 'ביקורת גורפת', 'bulkaudit_status' => 'סטטוס ביקורת', 'bulk_checkout' => 'יציאה גורפת', - 'bulk_edit' => 'Bulk Edit', - 'bulk_delete' => 'Bulk Delete', - 'bulk_actions' => 'Bulk Actions', - 'bulk_checkin_delete' => 'Bulk Checkin & Delete', + 'bulk_edit' => 'עריכה גורפת', + 'bulk_delete' => 'מחיקה גורפת', + 'bulk_actions' => 'פעולות גורפות', + 'bulk_checkin_delete' => 'העבר הכול & Delete', 'bystatus' => 'לפי סטאטוס', 'cancel' => 'לְבַטֵל', 'categories' => 'קטגוריות', @@ -47,8 +47,8 @@ 'checkin' => 'קבלה', 'checkin_from' => 'Checkin מ', 'checkout' => 'לבדוק', - 'checkouts_count' => 'Checkouts', - 'checkins_count' => 'Checkins', + 'checkouts_count' => 'הסרת נכס', + 'checkins_count' => 'העברות נכסים', 'user_requests_count' => 'בקשות', 'city' => 'עִיר', 'click_here' => 'לחץ כאן', @@ -69,7 +69,7 @@ 'updated_at' => 'עודכן ב', 'currency' => '$', // this is deprecated 'current' => 'נוֹכְחִי', - 'current_password' => 'Current Password', + 'current_password' => 'סיסמא נוכחית', 'customize_report' => 'Customize Report', 'custom_report' => 'דוח נכס מותאם אישית', 'dashboard' => 'לוּחַ מַחווָנִים', @@ -82,12 +82,12 @@ 'delete_confirm' => 'האם אתה בטוח שברצונך למחוק?', 'deleted' => 'נמחק', 'delete_seats' => 'מושבים שנמחקו', - 'deletion_failed' => 'Deletion failed', + 'deletion_failed' => 'המחיקה נכשלה', 'departments' => 'מחלקות', 'department' => 'מַחלָקָה', 'deployed' => 'פרוס', 'depreciation' => 'פְּחָת', - 'depreciations' => 'Depreciations', + 'depreciations' => 'פְּחָת', 'depreciation_report' => 'דוח פחת', 'details' => 'פרטים', 'download' => 'הורד', @@ -96,8 +96,9 @@ 'eol' => 'EOL', 'email_domain' => 'דומיין דוא"ל', 'email_format' => 'תבנית אימייל', + 'employee_number' => 'מספר עובד', 'email_domain_help' => 'זה משמש ליצירת כתובות דוא"ל בעת ייבוא', - 'error' => 'Error', + 'error' => 'שגיאה', 'filastname_format' => 'שם משפחה ראשוני ראשון (jsmith@example.com)', 'firstname_lastname_format' => 'שם משפחה של שם פרטי (jane.smith@example.com)', 'firstname_lastname_underscore_format' => 'שם פרטי שם משפחה (jane_smith@example.com)', @@ -114,21 +115,21 @@ 'file_name' => 'קוֹבֶץ', 'file_type' => 'סוג קובץ', 'file_uploads' => 'העלאות קבצים', - 'file_upload' => 'File Upload', + 'file_upload' => 'טעינת קובץ', 'generate' => 'לִיצוֹר', - 'generate_labels' => 'Generate Labels', + 'generate_labels' => 'כותרות כלליות', 'github_markdown' => 'שדה זה מאפשר Github בסגנון markdown .', 'groups' => 'קבוצות', 'gravatar_email' => 'כתובת דוא"ל Gravatar', - 'gravatar_url' => 'Change your avatar at Gravatar.com.', + 'gravatar_url' => 'החלף את האווטר שלך ב Gravatar.com.', 'history' => 'הִיסטוֹרִיָה', 'history_for' => 'היסטוריה עבור', 'id' => 'תְעוּדַת זֶהוּת', 'image' => 'תמונה', 'image_delete' => 'מחק תמונה', 'image_upload' => 'העלאת תמונה', - 'filetypes_accepted_help' => 'Accepted filetype is :types. Max upload size allowed is :size.|Accepted filetypes are :types. Max upload size allowed is :size.', - 'filetypes_size_help' => 'Max upload size allowed is :size.', + 'filetypes_accepted_help' => 'סוגי קובץ אפשריים הם :types. גודל קובץ אפשרי מקסימלי:size.', + 'filetypes_size_help' => 'גודל קובץ מותר הוא :size.', 'image_filetypes_help' => 'סוגי הקבצים המותרים הם jpg,‏ webp,‏ png,‏ gif ו־svg. גודל ההעלאה המרבי המותר הוא :size.', 'import' => 'יְבוּא', 'importing' => 'מייבא', @@ -138,7 +139,7 @@ 'asset_maintenance_report' => 'דוח אחזקה בנכסים', 'asset_maintenances' => 'אחזקת נכסים', 'item' => 'פריט', - 'item_name' => 'Item Name', + 'item_name' => 'שם פריט', 'insufficient_permissions' => 'הרשאות לא מספיקות!', 'kits' => 'ערכות מוגדרות מראש', 'language' => 'שפה', @@ -150,7 +151,7 @@ 'licenses_available' => 'רשיונות זמינים', 'licenses' => 'רישיונות', 'list_all' => 'רשימת הכל', - 'loading' => 'Loading... please wait....', + 'loading' => 'טעינה... אנא המתן....', 'lock_passwords' => 'השדה הזה לא ישמר במצב הדגמה.', 'feature_disabled' => 'תכונה זו הושבתה עבור התקנת ההדגמה.', 'location' => 'מקום', @@ -169,7 +170,7 @@ 'months' => 'חודשים', 'moreinfo' => 'עוד מידע', 'name' => 'שֵׁם', - 'new_password' => 'New Password', + 'new_password' => 'סיסמה חדשה', 'next' => 'הַבָּא', 'next_audit_date' => 'תאריך הביקורת', 'last_audit' => 'ביקורת אחרונה', @@ -192,22 +193,24 @@ 'qty' => 'QTY', 'quantity' => 'כַּמוּת', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'בדוק סטטוס', 'ready_to_deploy' => 'מוכן לפריסה', 'recent_activity' => 'פעילות אחרונה', - 'remaining' => 'Remaining', + 'remaining' => 'נוֹתָר', 'remove_company' => 'הסר התאחדות החברה', 'reports' => 'דיווחים', 'restored' => 'שוחזר', - 'restore' => 'Restore', - 'requestable_models' => 'Requestable Models', + 'restore' => 'שחזר', + 'requestable_models' => 'מודלים שנדרשו', 'requested' => 'מבוקש', - 'requested_date' => 'Requested Date', + 'requested_date' => 'התאריך המבוקש', 'requested_assets' => 'Requested Assets', - 'requested_assets_menu' => 'Requested Assets', + 'requested_assets_menu' => 'נכסים שנדרשו', 'request_canceled' => 'הבקשה בוטלה', 'save' => 'להציל', 'select' => 'בחר', - 'select_all' => 'Select All', + 'select_all' => 'בחר הכל', 'search' => 'חפש', 'select_category' => 'בחר קטגוריה', 'select_department' => 'בחר מחלקה', @@ -222,12 +225,12 @@ 'select_company' => 'בחר חברה', 'select_asset' => 'בחר נכס', 'settings' => 'הגדרות', - 'show_deleted' => 'Show Deleted', - 'show_current' => 'Show Current', + 'show_deleted' => 'הצג מחוקים', + 'show_current' => 'הצג נוכחי', 'sign_in' => 'היכנס', 'signature' => 'חֲתִימָה', 'skin' => 'ערכת עיצוב', - 'slack_msg_note' => 'A slack message will be sent', + 'slack_msg_note' => 'הודעת סלאק תישלח', 'slack_test_msg' => 'יאי! נראה שהשילוב של Slack עם Snipe-IT עובד!', 'some_features_disabled' => 'DEMO MODE: תכונות מסוימות מושבתות עבור התקנה זו.', 'site_name' => 'שם אתר', @@ -270,24 +273,24 @@ 'login_enabled' => 'Login Enabled', 'audit_due' => 'Due for Audit', 'audit_overdue' => 'Overdue for Audit', - 'accept' => 'Accept :asset', + 'accept' => 'אשר :asset', 'i_accept' => 'קיבלתי', 'i_decline' => 'דחיתי', - 'accept_decline' => 'Accept/Decline', + 'accept_decline' => 'קבל/דחה', 'sign_tos' => 'יש לחתום להלן כדי לציין שתנאי השימוש מוסכמים עליך:', 'clear_signature' => 'מחיקת החתימה', 'show_help' => 'הצגת עזרה', 'hide_help' => 'הסתרת עזרה', - 'view_all' => 'view all', - 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', - 'do_not_change' => 'Do Not Change', - 'bug_report' => 'Report a Bug', - 'user_manual' => 'User\'s Manual', - 'setup_step_1' => 'Step 1', - 'setup_step_2' => 'Step 2', - 'setup_step_3' => 'Step 3', - 'setup_step_4' => 'Step 4', + 'view_all' => 'הצג הכל', + 'hide_deleted' => 'הסתר מחוקים', + 'email' => 'דוא"ל', + 'do_not_change' => 'לא לשינוי', + 'bug_report' => 'דווח על באג', + 'user_manual' => 'חוברת משתמש', + 'setup_step_1' => 'שלב 1', + 'setup_step_2' => 'שלב 2', + 'setup_step_3' => 'שלב 3', + 'setup_step_4' => 'שלב 4', 'setup_config_check' => 'Configuration Check', 'setup_create_database' => 'Create Database Tables', 'setup_create_admin' => 'Create Admin User', @@ -298,7 +301,7 @@ 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', 'due_to_checkin' => 'The following :count items are due to be checked in soon:', - 'expected_checkin' => 'Expected Checkin', + 'expected_checkin' => 'תאריך התקנה צפוי', 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', 'changed' => 'Changed', 'to' => 'To', @@ -324,19 +327,19 @@ 'new_license' => 'New License', 'new_accessory' => 'New Accessory', 'new_consumable' => 'New Consumable', - 'collapse' => 'Collapse', - 'assigned' => 'Assigned', - 'asset_count' => 'Asset Count', - 'accessories_count' => 'Accessories Count', - 'consumables_count' => 'Consumables Count', - 'components_count' => 'Components Count', - 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error:', + 'collapse' => 'מזער', + 'assigned' => 'משוייך', + 'asset_count' => 'ספירת נכסים', + 'accessories_count' => 'ספירת אביזרים', + 'consumables_count' => 'ספירת מתכלים', + 'components_count' => 'ספירת רכיבים', + 'licenses_count' => 'ספירת רשיונות', + 'notification_error' => 'שגיאה:', 'notification_error_hint' => 'Please check the form below for errors', 'notification_success' => 'Success:', 'notification_warning' => 'Warning:', 'notification_info' => 'Info:', - 'asset_information' => 'Asset Information', + 'asset_information' => 'מידע על נכסים', 'model_name' => 'Model Name:', 'asset_name' => 'Asset Name:', 'consumable_information' => 'Consumable Information:', @@ -345,6 +348,6 @@ 'accessory_name' => 'Accessory Name:', 'clone_item' => 'Clone Item', 'checkout_tooltip' => 'Check this item out', - 'checkin_tooltip' => 'Check this item in', + 'checkin_tooltip' => 'העבר פריט זה', 'checkout_user_tooltip' => 'Check this item out to a user', ]; diff --git a/resources/lang/hr/admin/custom_fields/general.php b/resources/lang/hr/admin/custom_fields/general.php index 06970a595c..bdba078115 100644 --- a/resources/lang/hr/admin/custom_fields/general.php +++ b/resources/lang/hr/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/hr/admin/hardware/general.php b/resources/lang/hr/admin/hardware/general.php index 98e83a27b2..10a2e708cc 100644 --- a/resources/lang/hr/admin/hardware/general.php +++ b/resources/lang/hr/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arhivirano', 'asset' => 'Imovina', 'bulk_checkout' => 'Provjera imovine', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Provjera imovine', 'checkout' => 'Asset Checkout', 'clone' => 'Klonska imovina', diff --git a/resources/lang/hr/admin/settings/general.php b/resources/lang/hr/admin/settings/general.php index c7dd7660b9..1e31977c22 100644 --- a/resources/lang/hr/admin/settings/general.php +++ b/resources/lang/hr/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Upozorenja su omogućena', 'alert_interval' => 'Prag prekoračenja upozorenja (u danima)', 'alert_inv_threshold' => 'Prag upozorenja inventara', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'ID atributi', 'audit_interval' => 'Interval revizije', - 'audit_interval_help' => 'Ako morate redovito fizički provjeravati svoju imovinu, unesite interval u mjesecima.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Prag za upozorenje na reviziju', 'audit_warning_days_help' => 'Koliko dana unaprijed trebamo vas upozoriti kada imamo sredstva za reviziju?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Postavke crtičnog koda', 'confirm_purge' => 'Potvrdite čišćenje', diff --git a/resources/lang/hr/general.php b/resources/lang/hr/general.php index 7099cd51f7..af17f48ac3 100644 --- a/resources/lang/hr/general.php +++ b/resources/lang/hr/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Domena e-pošte', 'email_format' => 'Format e-pošte', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Ovo se koristi za generiranje e-adresa prilikom uvoza', 'error' => 'Error', 'filastname_format' => 'Prvo početno prezime (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Kol', 'quantity' => 'Količina', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Spremni za implementaciju', 'recent_activity' => 'Nedavna aktivnost', 'remaining' => 'Remaining', diff --git a/resources/lang/hu/admin/hardware/general.php b/resources/lang/hu/admin/hardware/general.php index 701bee80e8..ec4899329c 100644 --- a/resources/lang/hu/admin/hardware/general.php +++ b/resources/lang/hu/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arhivált', 'asset' => 'Eszköz', 'bulk_checkout' => 'Eszközök kiadása', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Eszköz visszavétele', 'checkout' => 'Checkout Asset', 'clone' => 'Eszköz klónozása', diff --git a/resources/lang/id/admin/custom_fields/general.php b/resources/lang/id/admin/custom_fields/general.php index d6208e3ddd..0d4e96b805 100644 --- a/resources/lang/id/admin/custom_fields/general.php +++ b/resources/lang/id/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/id/admin/hardware/general.php b/resources/lang/id/admin/hardware/general.php index 2488e58e89..6f0ebf6572 100644 --- a/resources/lang/id/admin/hardware/general.php +++ b/resources/lang/id/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Diarsipkan', 'asset' => 'Aset', 'bulk_checkout' => 'Pengeluaran Aset', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Pengembalian aset', 'checkout' => 'Aset Checkout', 'clone' => 'Klon Aset', diff --git a/resources/lang/id/admin/settings/general.php b/resources/lang/id/admin/settings/general.php index effc630d66..2415e67775 100644 --- a/resources/lang/id/admin/settings/general.php +++ b/resources/lang/id/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Mencentang kotak ini akan memungkinkan pengguna untuk mengganti skin UI yang berbeda.', 'asset_ids' => 'Aset id', 'audit_interval' => 'Interval Audit', - 'audit_interval_help' => 'Jika Anda diminta untuk secara teratur melakukan audit aset secara fisik, masukkan selang waktu dalam beberapa bulan.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Ambang Peringatan Audit', 'audit_warning_days_help' => 'Berapa hari sebelumnya yang harus kami peringatkan saat aset akan dilelang?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Pengaturan barcode', 'confirm_purge' => 'Konfirmasi pembersihan', diff --git a/resources/lang/id/general.php b/resources/lang/id/general.php index 20eb48c8b9..fd3f95dc28 100644 --- a/resources/lang/id/general.php +++ b/resources/lang/id/general.php @@ -96,6 +96,7 @@ 'eol' => 'MHP', 'email_domain' => 'Domain email', 'email_format' => 'Format email', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Ini digunakan untuk untuk membuat email ketika melakukan proses import', 'error' => 'Error', 'filastname_format' => 'Inisial pertama - Nama belakang (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'JML', 'quantity' => 'Jumlah', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Siap digunakan', 'recent_activity' => 'Aktivitas Terakhir', 'remaining' => 'Remaining', diff --git a/resources/lang/is/admin/custom_fields/general.php b/resources/lang/is/admin/custom_fields/general.php index 729ef7bbd1..a0dae66b24 100644 --- a/resources/lang/is/admin/custom_fields/general.php +++ b/resources/lang/is/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/is/admin/hardware/general.php b/resources/lang/is/admin/hardware/general.php index 0d5229ffb7..9e439226f7 100644 --- a/resources/lang/is/admin/hardware/general.php +++ b/resources/lang/is/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Safnvistað', 'asset' => 'Eign', 'bulk_checkout' => 'Ráðstafa eignum', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Skila eign', 'checkout' => 'Ráðstafa eign', 'clone' => 'Clone Asset', diff --git a/resources/lang/is/admin/settings/general.php b/resources/lang/is/admin/settings/general.php index 2b54824df6..02ccb5ef1d 100644 --- a/resources/lang/is/admin/settings/general.php +++ b/resources/lang/is/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Email Alerts Enabled', 'alert_interval' => 'Expiring Alerts Threshold (in days)', 'alert_inv_threshold' => 'Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Asset IDs', 'audit_interval' => 'Tími milli úttekta', - 'audit_interval_help' => 'Ef þú þarft reglulega að framkvæmda efnislegar úttektir á eignunum þínum, skráðu þá hér þann tíma sem á að líða milli úttekta.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'Með hversu margra daga fyrirvara eigum við að vara þig við því að komið sé að því að framkvæma úttektir á eignum?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Strikamerkja stillingar', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/is/general.php b/resources/lang/is/general.php index 4d277bc3ad..1ee52de970 100644 --- a/resources/lang/is/general.php +++ b/resources/lang/is/general.php @@ -96,6 +96,7 @@ 'eol' => 'Lok línu', 'email_domain' => 'Lén tölvupósts', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Error', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Fj', 'quantity' => 'Fjöldi', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Tilbúin til notkunar', 'recent_activity' => 'Nýleg virkni', 'remaining' => 'Remaining', diff --git a/resources/lang/it/admin/custom_fields/general.php b/resources/lang/it/admin/custom_fields/general.php index 864c05c1ec..228c1ffe2d 100644 --- a/resources/lang/it/admin/custom_fields/general.php +++ b/resources/lang/it/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'Questo valore deve essere univoco per tutti i beni', + 'unique' => 'Univoco', ]; diff --git a/resources/lang/it/admin/hardware/general.php b/resources/lang/it/admin/hardware/general.php index e5337ca867..e76d84b7b3 100644 --- a/resources/lang/it/admin/hardware/general.php +++ b/resources/lang/it/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archiviato', 'asset' => 'Asset', 'bulk_checkout' => 'Ritiro Asset', + 'bulk_checkin' => 'Check-in Bene', 'checkin' => 'Ingresso Asset', 'checkout' => 'Asset Checkout', 'clone' => 'Copia Asset', diff --git a/resources/lang/it/general.php b/resources/lang/it/general.php index 492e62a1c9..ddacaf8fb6 100644 --- a/resources/lang/it/general.php +++ b/resources/lang/it/general.php @@ -33,7 +33,7 @@ 'bulkaudit' => 'Audit di massa', 'bulkaudit_status' => 'Stato di controllo', 'bulk_checkout' => 'Checkout Bulk', - 'bulk_edit' => 'Bulk Edit', + 'bulk_edit' => 'Modifica in blocco', 'bulk_delete' => 'Bulk Delete', 'bulk_actions' => 'Bulk Actions', 'bulk_checkin_delete' => 'Bulk Checkin & Delete', @@ -69,8 +69,8 @@ 'updated_at' => 'Aggiornato a', 'currency' => '$', // this is deprecated 'current' => 'Attuale', - 'current_password' => 'Current Password', - 'customize_report' => 'Customize Report', + 'current_password' => 'Password attuale', + 'customize_report' => 'Personalizza Report', 'custom_report' => 'Report assets personalizzato', 'dashboard' => 'Pannello amministrativo', 'days' => 'giorni', @@ -82,7 +82,7 @@ 'delete_confirm' => 'Sei sicuro di voler eliminare :item?', 'deleted' => 'Eliminata', 'delete_seats' => 'Posti Cancellati', - 'deletion_failed' => 'Deletion failed', + 'deletion_failed' => 'Eliminazione fallita', 'departments' => 'dipartimenti', 'department' => 'Dipartimento', 'deployed' => 'Distribuita', @@ -96,8 +96,9 @@ 'eol' => 'EOL', 'email_domain' => 'Dominio di posta elettronica', 'email_format' => 'Formato di posta elettronica', + 'employee_number' => 'Numero Dipendente', 'email_domain_help' => 'Questo viene utilizzato per generare indirizzi e-mail durante l\'importazione', - 'error' => 'Error', + 'error' => 'Errore', 'filastname_format' => 'Prima cognome iniziale (jsmith@example.com)', 'firstname_lastname_format' => 'Nome cognome (jane.smith@example.com)', 'firstname_lastname_underscore_format' => 'Nome cognome (jane.smith@example.com)', @@ -116,7 +117,7 @@ 'file_uploads' => 'Carica i file', 'file_upload' => 'File Upload', 'generate' => 'Genera', - 'generate_labels' => 'Generate Labels', + 'generate_labels' => 'Genera Etichette', 'github_markdown' => 'Questo campo consente a Markdown Github.', 'groups' => 'Gruppi', 'gravatar_email' => 'Indirizzo Email Gravatar', @@ -150,7 +151,7 @@ 'licenses_available' => 'Licenze Disponibili', 'licenses' => 'Licenze', 'list_all' => 'Visualizza Tutti', - 'loading' => 'Loading... please wait....', + 'loading' => 'Caricamento... attendere prego....', 'lock_passwords' => 'Questo valore non verrà salvato in un\'installazione demo.', 'feature_disabled' => 'Questa funzionalità è stata disabilitata per l\'installazione demo.', 'location' => 'Luogo', @@ -169,7 +170,7 @@ 'months' => 'mesi', 'moreinfo' => 'Altre informazioni', 'name' => 'Nome', - 'new_password' => 'New Password', + 'new_password' => 'Nuova password', 'next' => 'Successivo', 'next_audit_date' => 'Prossima data di verifica', 'last_audit' => 'Ultimo controllo', @@ -192,6 +193,8 @@ 'qty' => 'Quantità', 'quantity' => 'Quantità', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Check-in a Scansione Rapida', + 'quickscan_checkin_status' => 'Stato Check-in', 'ready_to_deploy' => 'Pronto per il rilascio', 'recent_activity' => 'Attività Recenti', 'remaining' => 'Remaining', @@ -207,7 +210,7 @@ 'request_canceled' => 'Richiesta annullata', 'save' => 'Salva', 'select' => 'Seleziona', - 'select_all' => 'Select All', + 'select_all' => 'Seleziona tutto', 'search' => 'Cerca', 'select_category' => 'Seleziona una categoria', 'select_department' => 'Seleziona un Dipartimento', @@ -273,7 +276,7 @@ 'accept' => 'Accetta :asset', 'i_accept' => 'Accetto', 'i_decline' => 'Rifiuto', - 'accept_decline' => 'Accept/Decline', + 'accept_decline' => 'Accetta/Rifiuta', 'sign_tos' => 'Firma qui sotto per indicare che accetti i termini di servizio:', 'clear_signature' => 'Cancella Firma', 'show_help' => 'Mostra aiuto', @@ -284,13 +287,13 @@ 'do_not_change' => 'Do Not Change', 'bug_report' => 'Report a Bug', 'user_manual' => 'User\'s Manual', - 'setup_step_1' => 'Step 1', - 'setup_step_2' => 'Step 2', - 'setup_step_3' => 'Step 3', - 'setup_step_4' => 'Step 4', + 'setup_step_1' => 'Passo 1', + 'setup_step_2' => 'Passo 2', + 'setup_step_3' => 'Passo 3', + 'setup_step_4' => 'Passo 4', 'setup_config_check' => 'Configuration Check', - 'setup_create_database' => 'Create Database Tables', - 'setup_create_admin' => 'Create Admin User', + 'setup_create_database' => 'Crea tabelle database', + 'setup_create_admin' => 'Crea utente amministratore', 'setup_done' => 'Finished!', 'bulk_edit_about_to' => 'You are about to edit the following: ', 'checked_out' => 'Checked Out', diff --git a/resources/lang/iu/admin/custom_fields/general.php b/resources/lang/iu/admin/custom_fields/general.php index 8483c67c69..4c7442b2d5 100644 --- a/resources/lang/iu/admin/custom_fields/general.php +++ b/resources/lang/iu/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/iu/admin/hardware/general.php b/resources/lang/iu/admin/hardware/general.php index 1ac49efef1..67226061b1 100644 --- a/resources/lang/iu/admin/hardware/general.php +++ b/resources/lang/iu/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archived', 'asset' => 'Asset', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Clone Asset', diff --git a/resources/lang/iu/admin/settings/general.php b/resources/lang/iu/admin/settings/general.php index 3e7a60f89f..6bbab229e3 100644 --- a/resources/lang/iu/admin/settings/general.php +++ b/resources/lang/iu/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Email Alerts Enabled', 'alert_interval' => 'Expiring Alerts Threshold (in days)', 'alert_inv_threshold' => 'Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Asset IDs', 'audit_interval' => 'Audit Interval', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Barcode Settings', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/iu/general.php b/resources/lang/iu/general.php index 2e358c77f9..0e38b21939 100644 --- a/resources/lang/iu/general.php +++ b/resources/lang/iu/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Error', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ready to Deploy', 'recent_activity' => 'Recent Activity', 'remaining' => 'Remaining', diff --git a/resources/lang/ja/admin/custom_fields/general.php b/resources/lang/ja/admin/custom_fields/general.php index ed2169a91a..17c7b82f34 100644 --- a/resources/lang/ja/admin/custom_fields/general.php +++ b/resources/lang/ja/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/ja/admin/hardware/general.php b/resources/lang/ja/admin/hardware/general.php index f9981ff446..8d61aec286 100644 --- a/resources/lang/ja/admin/hardware/general.php +++ b/resources/lang/ja/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'アーカイブ', 'asset' => '資産', 'bulk_checkout' => '一括チェックアウト', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => '資産をチェックイン', 'checkout' => '資産をチェックアウト', 'clone' => '資産を複製', diff --git a/resources/lang/ja/admin/settings/general.php b/resources/lang/ja/admin/settings/general.php index 894da82961..d48a25f1ee 100644 --- a/resources/lang/ja/admin/settings/general.php +++ b/resources/lang/ja/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => '資産ID', 'audit_interval' => '監査の間隔', - 'audit_interval_help' => '定期的にあなたの資産を監査する必要がある場合は、間隔を月で入力します。', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => '監査警告しきい値', 'audit_warning_days_help' => '資産の監査期限は何日前に警告する必要がありますか?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'バーコード設定', 'confirm_purge' => 'パージを確定', diff --git a/resources/lang/ja/general.php b/resources/lang/ja/general.php index dcfcbf6b89..df0724fed2 100644 --- a/resources/lang/ja/general.php +++ b/resources/lang/ja/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Eメール ドメイン', 'email_format' => 'Eメールフォーマット', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'インポート時に作成するe-mail アドレス', 'error' => 'Error', 'filastname_format' => '名 イニシャル 姓 (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => '数量', 'quantity' => '数量', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => '配備可能', 'recent_activity' => '最近のアクティビティ', 'remaining' => 'Remaining', diff --git a/resources/lang/ko/admin/custom_fields/general.php b/resources/lang/ko/admin/custom_fields/general.php index ae1699179a..f457522216 100644 --- a/resources/lang/ko/admin/custom_fields/general.php +++ b/resources/lang/ko/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/ko/admin/hardware/general.php b/resources/lang/ko/admin/hardware/general.php index d0ca5e3deb..75007708e6 100644 --- a/resources/lang/ko/admin/hardware/general.php +++ b/resources/lang/ko/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => '보관됨', 'asset' => '자산', 'bulk_checkout' => '반출 자산', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => '반입 자산', 'checkout' => '반출 자산', 'clone' => '자산 복제', diff --git a/resources/lang/ko/admin/locations/table.php b/resources/lang/ko/admin/locations/table.php index 5c52ba2fd0..648b36c7c5 100644 --- a/resources/lang/ko/admin/locations/table.php +++ b/resources/lang/ko/admin/locations/table.php @@ -20,16 +20,16 @@ return [ 'parent' => '상위', 'currency' => '현지 통화', 'ldap_ou' => 'LDAP 검색 OU', - 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', - 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', + 'user_name' => '사용자 이름', + 'department' => '부서', + 'location' => '위치', + 'asset_tag' => '자산 태그', + 'asset_name' => '이름', + 'asset_category' => '항목', + 'asset_manufacturer' => '제조사', + 'asset_model' => '모델명', + 'asset_serial' => '일련번호', + 'asset_location' => '위치', 'asset_checked_out' => 'Checked Out', 'asset_expected_checkin' => 'Expected Checkin', 'date' => 'Date:', diff --git a/resources/lang/ko/admin/settings/general.php b/resources/lang/ko/admin/settings/general.php index 2af31f3e62..b20c878709 100644 --- a/resources/lang/ko/admin/settings/general.php +++ b/resources/lang/ko/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => '이 항목을 선택하면 사용자가 다른 UI 스킨을 다른 스킨으로 변경하는 것을 허용합니다.', 'asset_ids' => '자산 ID', 'audit_interval' => '감사 간격', - 'audit_interval_help' => '자산을 정기적으로 물리적인 감사를 해야하는 경우, 간격을 개월 단위로 입력하십시오.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => '감사 경고 임계값', 'audit_warning_days_help' => '자산 회계 감사가 예정되어 있을 때 몇 일 전에 경고할까요?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => '바코드 설정', 'confirm_purge' => '삭제 확인', diff --git a/resources/lang/ko/button.php b/resources/lang/ko/button.php index 20d033db05..79097dc0d3 100644 --- a/resources/lang/ko/button.php +++ b/resources/lang/ko/button.php @@ -8,7 +8,7 @@ return [ 'delete' => '삭제', 'edit' => '편집', 'restore' => '복원', - 'remove' => 'Remove', + 'remove' => '삭제', 'request' => '요청', 'submit' => '제출', 'upload' => '올리기', @@ -18,7 +18,7 @@ return [ 'send_password_link' => '패스워드 재설정 메일 전송', 'go' => 'Go', 'bulk_actions' => 'Bulk Actions', - 'add_maintenance' => 'Add Maintenance', + 'add_maintenance' => '유지 보수 정보 추가', 'append' => 'Append', - 'new' => 'New', + 'new' => '신규', ]; diff --git a/resources/lang/ko/general.php b/resources/lang/ko/general.php index f084be0110..b4c2413c5d 100644 --- a/resources/lang/ko/general.php +++ b/resources/lang/ko/general.php @@ -19,8 +19,8 @@ 'asset' => '자산', 'asset_report' => '자산 보고서', 'asset_tag' => '자산 태그', - 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', + 'asset_tags' => '자산 태그', + 'assets_available' => '사용 가능한 자산', 'accept_assets' => 'Accept Assets :name', 'accept_assets_menu' => 'Accept Assets', 'audit' => '감사', @@ -96,6 +96,7 @@ 'eol' => '폐기일', 'email_domain' => '전자 우편 도메인', 'email_format' => '전자 우편 형식', + 'employee_number' => 'Employee Number', 'email_domain_help' => '읽어오기시 전자 우편 주소를 생성하는데 사용됩니다.', 'error' => '오류', 'filastname_format' => '초기 성명 (jsmith@example.com)', @@ -150,8 +151,8 @@ 'licenses_available' => '사용가능 라이선스', 'licenses' => '라이선스', 'list_all' => '전체 목록보기', - 'loading' => 'Loading... please wait....', - 'lock_passwords' => 'This field value will not be saved in a demo installation.', + 'loading' => '로딩 중입니다. 잠시만 기다려 주십시오.', + 'lock_passwords' => '이 항목은 데모에서 저장이 불가능합니다.', 'feature_disabled' => '데모 설치본에서는 이 기능을 사용할 수 없습니다.', 'location' => '장소', 'locations' => '위치', @@ -159,7 +160,7 @@ 'logout' => '로그아웃', 'lookup_by_tag' => '자산 태그로 조회', 'maintenances' => '유지 관리', - 'manage_api_keys' => 'Manage API Keys', + 'manage_api_keys' => 'API Key 관리', 'manufacturer' => '제조업체', 'manufacturers' => '제조업체', 'markdown' => '이 항목은 GFM을 따릅니다.', @@ -169,7 +170,7 @@ 'months' => '개월', 'moreinfo' => '추가 정보', 'name' => '이름', - 'new_password' => 'New Password', + 'new_password' => '새로운 비밀번호', 'next' => '다음', 'next_audit_date' => '다음 감사 일자', 'last_audit' => '최근 감사', @@ -192,6 +193,8 @@ 'qty' => '수량', 'quantity' => '수량', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => '사용 준비', 'recent_activity' => '최근 활동', 'remaining' => 'Remaining', @@ -280,7 +283,7 @@ 'hide_help' => '도움말 숨기기', 'view_all' => '모두 보기', 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', + 'email' => '이메일', 'do_not_change' => 'Do Not Change', 'bug_report' => '오류 보고', 'user_manual' => '사용자 설명서', @@ -311,14 +314,14 @@ 'permissions' => '권한', 'managed_ldap' => '(Managed via LDAP)', 'export' => '내보내기', - 'ldap_sync' => 'LDAP Sync', - 'ldap_user_sync' => 'LDAP User Sync', - 'synchronize' => 'Synchronize', - 'sync_results' => 'Synchronization Results', - 'license_serial' => 'Serial/Product Key', + 'ldap_sync' => 'LDAP 동기화', + 'ldap_user_sync' => 'LDAP 사용자 동기화', + 'synchronize' => '동기화', + 'sync_results' => '동기화 결과', + 'license_serial' => '제품 번호', 'invalid_category' => 'Invalid category', 'dashboard_info' => 'This is your dashboard. There are many like it, but this one is yours.', - '60_percent_warning' => '60% Complete (warning)', + '60_percent_warning' => '60% 완료(경고)', 'dashboard_empty' => 'It looks like you haven not added anything yet, so we do not have anything awesome to display. Get started by adding some assets, accessories, consumables, or licenses now!', 'new_asset' => '새 자산', 'new_license' => '새 라이센스', diff --git a/resources/lang/ko/mail.php b/resources/lang/ko/mail.php index 59966066da..8f647e6497 100644 --- a/resources/lang/ko/mail.php +++ b/resources/lang/ko/mail.php @@ -20,9 +20,9 @@ return [ 'click_on_the_link_asset' => '자산을 받았다면 아래 링크를 클릭하세요.', 'Confirm_Asset_Checkin' => '자산 반입 확인', 'Confirm_Accessory_Checkin' => '부속품 반입 확인', - 'Confirm_accessory_delivery' => 'Accessory delivery confirmation', + 'Confirm_accessory_delivery' => '액세서리 지급 확인', 'Confirm_license_delivery' => '라이센스 전달 확인', - 'Confirm_asset_delivery' => 'Asset delivery confirmation', + 'Confirm_asset_delivery' => '자산 지급 확인', 'Confirm_consumable_delivery' => 'Consumable delivery confirmation', 'current_QTY' => '현재 수량', 'Days' => '일', diff --git a/resources/lang/lt/admin/custom_fields/general.php b/resources/lang/lt/admin/custom_fields/general.php index acd76ba8f3..47dc3b3971 100644 --- a/resources/lang/lt/admin/custom_fields/general.php +++ b/resources/lang/lt/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/lt/admin/hardware/general.php b/resources/lang/lt/admin/hardware/general.php index 94ce341e14..7953ce86a2 100644 --- a/resources/lang/lt/admin/hardware/general.php +++ b/resources/lang/lt/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archyvuota', 'asset' => 'Įranga', 'bulk_checkout' => 'Išduota įranga', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Išduota įranga', 'checkout' => 'Patikros turtas', 'clone' => 'Kopijuoti įrangą', diff --git a/resources/lang/lt/admin/settings/general.php b/resources/lang/lt/admin/settings/general.php index 75ecc88422..aea39d911c 100644 --- a/resources/lang/lt/admin/settings/general.php +++ b/resources/lang/lt/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Perspėjimai įjungti', 'alert_interval' => 'Galiojanti įspėjimų slenkstis (dienomis)', 'alert_inv_threshold' => 'Inventoriaus įspėjimo slenkstis', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Įrangos ID', 'audit_interval' => 'Audito intervalas', - 'audit_interval_help' => 'Jei turite reguliariai fiziškai tikrinti savo turtą, įveskite intervalą per mėnesius.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audito įspėjimo slenkstis', 'audit_warning_days_help' => 'Kiek dienų iš anksto turėtume įspėti, kada turėtume atlikti auditą?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Prekės kodo nustatymai', 'confirm_purge' => 'Patvirtinkite švarą', diff --git a/resources/lang/lt/general.php b/resources/lang/lt/general.php index d0f0c8de17..7478e246da 100644 --- a/resources/lang/lt/general.php +++ b/resources/lang/lt/general.php @@ -96,6 +96,7 @@ 'eol' => 'Nurašymo data', 'email_domain' => 'El. pašto domenas', 'email_format' => 'El. pašto formatas', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Tai naudojama importuojant importuojamus el. Pašto adresus', 'error' => 'Error', 'filastname_format' => 'V. Pavardė (vpavarde@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Vnt', 'quantity' => 'Kiekis', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Paruošta naudojimui', 'recent_activity' => 'Paskutiniai veiksmai', 'remaining' => 'Remaining', diff --git a/resources/lang/lv/admin/custom_fields/general.php b/resources/lang/lv/admin/custom_fields/general.php index 8bc39ef999..180054e38a 100644 --- a/resources/lang/lv/admin/custom_fields/general.php +++ b/resources/lang/lv/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/lv/admin/hardware/general.php b/resources/lang/lv/admin/hardware/general.php index b4781d79c5..183c66309f 100644 --- a/resources/lang/lv/admin/hardware/general.php +++ b/resources/lang/lv/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arhivēts', 'asset' => 'Aktīvs', 'bulk_checkout' => 'Lielapjoma izsniegšana', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Reģistrēšanās aktīvs', 'checkout' => 'Checkout Asset', 'clone' => 'Clone Asset', diff --git a/resources/lang/lv/admin/settings/general.php b/resources/lang/lv/admin/settings/general.php index 8923043492..aec9936ace 100644 --- a/resources/lang/lv/admin/settings/general.php +++ b/resources/lang/lv/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Brīdinājumi ir iespējoti', 'alert_interval' => 'Pabeidzamo brīdinājumu slieksnis (dienās)', 'alert_inv_threshold' => 'Inventāra trauksmes slieksnis', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Aktīvu ID', 'audit_interval' => 'Audita intervāls', - 'audit_interval_help' => 'Ja jums ir pienākums regulāri fiziski pārbaudīt savus aktīvus, ievadiet intervālu mēnešos.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Revīzijas brīdinājuma slieksnis', 'audit_warning_days_help' => 'Cik dienas iepriekš mēs brīdinātu jūs, kad aktīvi ir jāmaksā par revīziju?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Svītru kodu iestatījumi', 'confirm_purge' => 'Apstipriniet iztīrīšanu', diff --git a/resources/lang/lv/general.php b/resources/lang/lv/general.php index c3779f783d..68a887c470 100644 --- a/resources/lang/lv/general.php +++ b/resources/lang/lv/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'E-pasta domēns', 'email_format' => 'E-pasta formāts', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'To izmanto, lai importētu e-pasta adreses', 'error' => 'Error', 'filastname_format' => 'Pirmais sākotnējais uzvārds (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Daudzums', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Gatavs izvietot', 'recent_activity' => 'Pēdējās aktivitātes', 'remaining' => 'Remaining', diff --git a/resources/lang/mi/admin/custom_fields/general.php b/resources/lang/mi/admin/custom_fields/general.php index aaedc8b17c..1891d6bd1e 100644 --- a/resources/lang/mi/admin/custom_fields/general.php +++ b/resources/lang/mi/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/mi/admin/hardware/general.php b/resources/lang/mi/admin/hardware/general.php index b954c26913..54e87ab6da 100644 --- a/resources/lang/mi/admin/hardware/general.php +++ b/resources/lang/mi/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Whakamahia', 'asset' => 'Tahua', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Tirohia te Ahua', 'checkout' => 'Whakaritehia te Ahua', 'clone' => 'Te Tino Tae', diff --git a/resources/lang/mi/admin/settings/general.php b/resources/lang/mi/admin/settings/general.php index 8d9b58ce21..a17476acec 100644 --- a/resources/lang/mi/admin/settings/general.php +++ b/resources/lang/mi/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Kua Whakahohea nga Aler', 'alert_interval' => 'Nga Mahinga Whakamutunga Nga Tae (i nga ra)', 'alert_inv_threshold' => 'Waehere Awhearanga Inventory', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Ngā ID tahua', 'audit_interval' => 'Whirihoranga Arotake', - 'audit_interval_help' => 'Mena ka hiahia koe ki te tirotiro i nga rawa o taau, ka uru ki roto i nga marama.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Poari Whakatupato Aitea', 'audit_warning_days_help' => 'E hia nga ra i mua i te wa e tika ana kia whakatupato koe ki a koe i te wa e tika ana nga moni mo te tirotiro?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Tautuhinga Karauna', 'confirm_purge' => 'Whakaatu Whakataunga', diff --git a/resources/lang/mi/general.php b/resources/lang/mi/general.php index dda8f7fd67..abf83d169c 100644 --- a/resources/lang/mi/general.php +++ b/resources/lang/mi/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Ingoa Īmēra', 'email_format' => 'Hōputu Īmēra', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Ka whakamahia tenei ki te whakaputa i nga wahitau īmēra ina kawemai', 'error' => 'Error', 'filastname_format' => 'Tuatahi Ingoa Tuatahi (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Maha', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Kua rite ki te Whakamahia', 'recent_activity' => 'Mahi Hou', 'remaining' => 'Remaining', diff --git a/resources/lang/mk/admin/custom_fields/general.php b/resources/lang/mk/admin/custom_fields/general.php index 6d970d1ef2..751171150e 100644 --- a/resources/lang/mk/admin/custom_fields/general.php +++ b/resources/lang/mk/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/mk/admin/hardware/general.php b/resources/lang/mk/admin/hardware/general.php index e902ab93e5..581c6ec990 100644 --- a/resources/lang/mk/admin/hardware/general.php +++ b/resources/lang/mk/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Архивирано', 'asset' => 'Основно средство', 'bulk_checkout' => 'Раздолжи основно средство', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Раздолжи основно средство', 'checkout' => 'Задолжи основно средство', 'clone' => 'Клонирај основно средство', diff --git a/resources/lang/mk/admin/settings/general.php b/resources/lang/mk/admin/settings/general.php index 95949ce6fd..cbaa6d7805 100644 --- a/resources/lang/mk/admin/settings/general.php +++ b/resources/lang/mk/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Овозможени аларми по е-пошта', 'alert_interval' => 'Праг на застарување на аларм (денови)', 'alert_inv_threshold' => 'Праг на аларм за инвентар', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'ID на основни средства', 'audit_interval' => 'Интервал на ревизија', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Поставки за баркод', 'confirm_purge' => 'Потврди чистка', diff --git a/resources/lang/mk/general.php b/resources/lang/mk/general.php index d30af62d17..ebc36ce3ba 100644 --- a/resources/lang/mk/general.php +++ b/resources/lang/mk/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Домен за е-пошта', 'email_format' => 'Формат на е-пошта', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Ова се користи за генерирање на адреси на е-пошта при увоз', 'error' => 'Error', 'filastname_format' => 'Почетна буква од име, Презиме (jjankov@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Количина', 'quantity' => 'Квантитет', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Подготвен за распоредување', 'recent_activity' => 'Скорешна активност', 'remaining' => 'Remaining', diff --git a/resources/lang/ml-IN/admin/custom_fields/general.php b/resources/lang/ml-IN/admin/custom_fields/general.php index 8483c67c69..4c7442b2d5 100644 --- a/resources/lang/ml-IN/admin/custom_fields/general.php +++ b/resources/lang/ml-IN/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/ml-IN/admin/hardware/general.php b/resources/lang/ml-IN/admin/hardware/general.php index 1ac49efef1..67226061b1 100644 --- a/resources/lang/ml-IN/admin/hardware/general.php +++ b/resources/lang/ml-IN/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archived', 'asset' => 'Asset', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Clone Asset', diff --git a/resources/lang/ml-IN/admin/settings/general.php b/resources/lang/ml-IN/admin/settings/general.php index 3e7a60f89f..6bbab229e3 100644 --- a/resources/lang/ml-IN/admin/settings/general.php +++ b/resources/lang/ml-IN/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Email Alerts Enabled', 'alert_interval' => 'Expiring Alerts Threshold (in days)', 'alert_inv_threshold' => 'Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Asset IDs', 'audit_interval' => 'Audit Interval', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Barcode Settings', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/ml-IN/general.php b/resources/lang/ml-IN/general.php index 2e358c77f9..0e38b21939 100644 --- a/resources/lang/ml-IN/general.php +++ b/resources/lang/ml-IN/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Error', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ready to Deploy', 'recent_activity' => 'Recent Activity', 'remaining' => 'Remaining', diff --git a/resources/lang/mn/admin/custom_fields/general.php b/resources/lang/mn/admin/custom_fields/general.php index 12b4c741cb..4d4b1063bb 100644 --- a/resources/lang/mn/admin/custom_fields/general.php +++ b/resources/lang/mn/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/mn/admin/hardware/general.php b/resources/lang/mn/admin/hardware/general.php index b6a46b3feb..f5fa31dce4 100644 --- a/resources/lang/mn/admin/hardware/general.php +++ b/resources/lang/mn/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Архивлагдсан', 'asset' => 'Актив', 'bulk_checkout' => 'Хөрөнгийг олгох', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Тооцоот Хөрөнгийн', 'clone' => 'Clone Asset', diff --git a/resources/lang/mn/admin/settings/general.php b/resources/lang/mn/admin/settings/general.php index 15c65d8ed5..f7d9163559 100644 --- a/resources/lang/mn/admin/settings/general.php +++ b/resources/lang/mn/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Идэвхжүүлсэн дохиог', 'alert_interval' => 'Exped Alerts (босоо хоногоор)', 'alert_inv_threshold' => 'Бараа материалын Alert босго', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Хөрөнгийн дугаар', 'audit_interval' => 'Аудитын интервал', - 'audit_interval_help' => 'Хэрэв та хөрөнгөө тогтмол шалгаж байх шаардлагатай бол сар бүрийн интервалыг оруул.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Аудитын анхааруулах босго', 'audit_warning_days_help' => 'Хөрөнгө аудит хийхэд бэлэн байх үед танд хэдэн өдөр урьдчилан урьдчилан анхааруулах ёстой вэ?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Бар кодын тохиргоо', 'confirm_purge' => 'Цэвэршүүлэлтийг баталгаажуулна уу', diff --git a/resources/lang/mn/general.php b/resources/lang/mn/general.php index aae8c8ee19..f67b1347fc 100644 --- a/resources/lang/mn/general.php +++ b/resources/lang/mn/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Домэйн мэйл', 'email_format' => 'И-мэйл формат', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Энэ нь импортлох үед имэйл хаяг үүсгэхэд ашиглагддаг', 'error' => 'Error', 'filastname_format' => 'Эхний анхны нэр (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Тоо хэмжээ', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Хэрэглэхэд бэлэн байна', 'recent_activity' => 'Сүүлийн үеийн үйл ажиллагаа', 'remaining' => 'Remaining', diff --git a/resources/lang/ms/admin/custom_fields/general.php b/resources/lang/ms/admin/custom_fields/general.php index aca0cca15d..14549f163a 100644 --- a/resources/lang/ms/admin/custom_fields/general.php +++ b/resources/lang/ms/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/ms/admin/hardware/general.php b/resources/lang/ms/admin/hardware/general.php index a8372396be..0e28ead96e 100644 --- a/resources/lang/ms/admin/hardware/general.php +++ b/resources/lang/ms/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Diarkibkan', 'asset' => 'Harta', 'bulk_checkout' => 'Daftar Keluar Aset', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Terima Harta', 'checkout' => 'Aset Checkout', 'clone' => 'Pendua Harta', diff --git a/resources/lang/ms/admin/settings/general.php b/resources/lang/ms/admin/settings/general.php index e8d0b9ce87..9b1dd736cc 100644 --- a/resources/lang/ms/admin/settings/general.php +++ b/resources/lang/ms/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Menandai kotak ini akan membolehkan pengguna mengatasi kulit UI dengan kulit yang berbeza.', 'asset_ids' => 'ID Aset', 'audit_interval' => 'Selang Audit', - 'audit_interval_help' => 'Sekiranya anda dikehendaki untuk secara tetap mengaudit aset anda, masukkan selang waktu dalam bulan.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Ambang Amaran Audit', 'audit_warning_days_help' => 'Berapa hari lebih awal haruskah kami memberi amaran kepada anda apabila aset perlu untuk pengauditan?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Tetapan Kod Bar', 'confirm_purge' => 'Mengesahkan Purge', diff --git a/resources/lang/ms/general.php b/resources/lang/ms/general.php index ca81c01918..91ecb7e7cc 100644 --- a/resources/lang/ms/general.php +++ b/resources/lang/ms/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Domain E-mel', 'email_format' => 'Format E-mel', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Ini digunakan untuk menjana alamat e-mel semasa mengimport', 'error' => 'Error', 'filastname_format' => 'Nama Akhir Permulaan Pertama (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Kuantiti', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Sedia untuk diagihkan', 'recent_activity' => 'Aktiviti Terkini', 'remaining' => 'Remaining', diff --git a/resources/lang/nl/admin/hardware/general.php b/resources/lang/nl/admin/hardware/general.php index a7b72a2dcd..ffe543e2ff 100644 --- a/resources/lang/nl/admin/hardware/general.php +++ b/resources/lang/nl/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Gearchiveerd', 'asset' => 'Asset', 'bulk_checkout' => 'Asset uitchecken', + 'bulk_checkin' => 'Assets inchecken', 'checkin' => 'Asset inchecken', 'checkout' => 'Asset uitchecken', 'clone' => 'Dupliceer Asset', diff --git a/resources/lang/no/admin/custom_fields/general.php b/resources/lang/no/admin/custom_fields/general.php index 973edd60e1..42d82d4b79 100644 --- a/resources/lang/no/admin/custom_fields/general.php +++ b/resources/lang/no/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Valgfritt - klikk for å gjøre påkrevd', 'reorder' => 'Endre rekkefølge', 'db_field' => 'DB-felt', - 'db_convert_warning' => 'ADVARSEL: Dette feltet er i tabellen for egendefinerte felt som :db_column, men burde være :expected.' + 'db_convert_warning' => 'ADVARSEL: Dette feltet er i tabellen for egendefinerte felt som :db_column, men burde være :expected.', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/no/admin/hardware/general.php b/resources/lang/no/admin/hardware/general.php index 1d098623df..4914d52ae9 100644 --- a/resources/lang/no/admin/hardware/general.php +++ b/resources/lang/no/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arkivert', 'asset' => 'Eiendel', 'bulk_checkout' => 'Sjekk ut Eiendeler', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Sjekk inn eiendel', 'checkout' => 'Sjekk ut asset', 'clone' => 'Klon eiendel', diff --git a/resources/lang/no/admin/settings/general.php b/resources/lang/no/admin/settings/general.php index 9daaeffec3..cac12a0893 100644 --- a/resources/lang/no/admin/settings/general.php +++ b/resources/lang/no/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Kryss av denne boksen for å la brukere overstyre standardutseendet med et annet.', 'asset_ids' => 'Eiendels-IDer', 'audit_interval' => 'Audit intervall', - 'audit_interval_help' => 'Hvis du regelmessig må fysisk overvåke dine eiendeler, angi intervallet i måneder.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit terskelverdi for advarsel', 'audit_warning_days_help' => 'Hvor mange dager i forveien bør vi advare deg når eiendeler forfaller for overvåking?', 'auto_increment_assets' => 'Generer automatisk økende eiendelsmerker', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Last opp sikkerhetskopi', 'backups_path' => 'Sikkerhetskopier på tjeneren lagres i :path', 'backups_restore_warning' => 'Bruk gjenopprettingsknappen for å gjenopprette fra en tidligere sikkerhetskopi. (Dette fungerer ikke med S3-fillagring eller Docker.

Din hele :app_name databasen og eventuelle opplastede filer vil bli fullstendig erstattet av det som er i sikkerhetskopifilen. ', - 'backups_logged_out' => 'Du vil bli logget ut når gjenopprettingen er fullført.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Veldig store sikkerhetskopier kan få tidsavbrudd under gjenopprettingsforsøket og må fortsatt kjøres via kommandolinjen. ', 'barcode_settings' => 'Strekkodeinnstillinger', 'confirm_purge' => 'Bekreft rensking', diff --git a/resources/lang/no/general.php b/resources/lang/no/general.php index 36c9181292..b6e2013da0 100644 --- a/resources/lang/no/general.php +++ b/resources/lang/no/general.php @@ -96,6 +96,7 @@ 'eol' => 'Livstid', 'email_domain' => 'E-postdomene', 'email_format' => 'E-postformat', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Brukes til å generere e-postadresser ved import', 'error' => 'Feil', 'filastname_format' => 'Fornavn (kun initial) Etternavn (oladunk@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Antall', 'quantity' => 'Antall', 'quantity_minimum' => 'Du har :count enheter under eller nesten under minimum antall', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Klar for utlevering', 'recent_activity' => 'Nylig aktivitet', 'remaining' => 'Gjenstår', diff --git a/resources/lang/pl/admin/hardware/general.php b/resources/lang/pl/admin/hardware/general.php index b7b16e835b..747e6e5d11 100644 --- a/resources/lang/pl/admin/hardware/general.php +++ b/resources/lang/pl/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Zarchiwizowane', 'asset' => 'Nabytek', 'bulk_checkout' => 'Przypisz aktywa', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Potwierdzanie zasobu/aktywa', 'checkout' => 'Przypisz zasób', 'clone' => 'Klonuj zasób', diff --git a/resources/lang/pl/admin/settings/general.php b/resources/lang/pl/admin/settings/general.php index 5f32caea2c..48433a20d6 100644 --- a/resources/lang/pl/admin/settings/general.php +++ b/resources/lang/pl/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Zaznaczenie tego pola pozwoli użytkownikowi zastąpić skórkę interfejsu użytkownika na inną.', 'asset_ids' => 'ID Aktywa', 'audit_interval' => 'Interwał audytu', - 'audit_interval_help' => 'Jeśli wymagane są regularne kontrole fizycznie aktyw, wprowadź interwał w miesiącach.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Próg ostrzegania przed audytem', 'audit_warning_days_help' => 'Ile dni wcześniej powinniśmy ostrzec Cię, gdy majątek ma zostać poddany audytowi?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Prześlij kopię zapasową', 'backups_path' => 'Kopie zapasowe na serwerze są przechowywane w :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'Zostaniesz wylogowany po zakończeniu przywracania.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Ustawienia Kodów Kreskowych', 'confirm_purge' => 'Potwierdź wyczyszczenie', diff --git a/resources/lang/pl/general.php b/resources/lang/pl/general.php index b918773b08..3069102792 100644 --- a/resources/lang/pl/general.php +++ b/resources/lang/pl/general.php @@ -68,7 +68,7 @@ 'record_created' => 'Rekord utworzony', 'updated_at' => 'Zaktualizowano', 'currency' => 'PLN', // this is deprecated - 'current' => 'Lista urzytkowników', + 'current' => 'Lista użytkowników', 'current_password' => 'Bieżące hasło', 'customize_report' => 'Dostosuj raport', 'custom_report' => 'Raport niestandardowy składnik aktywów', @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Domena poczty e-mail', 'email_format' => 'Format e-mail', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'To jest używane do generowania e-maili podczas importowania', 'error' => 'Błąd', 'filastname_format' => 'Pierwsza litera imienia i nazwisko (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Ilość', 'quantity' => 'Ilość', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Gotowe do wdrożenia', 'recent_activity' => 'Ostatnia aktywność', 'remaining' => 'Pozostało', diff --git a/resources/lang/pt-BR/admin/custom_fields/general.php b/resources/lang/pt-BR/admin/custom_fields/general.php index c96be7cb09..3fb13cf457 100644 --- a/resources/lang/pt-BR/admin/custom_fields/general.php +++ b/resources/lang/pt-BR/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/pt-BR/admin/hardware/general.php b/resources/lang/pt-BR/admin/hardware/general.php index ff5904feb5..43e418976f 100644 --- a/resources/lang/pt-BR/admin/hardware/general.php +++ b/resources/lang/pt-BR/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arquivado', 'asset' => 'Ativo', 'bulk_checkout' => 'Alocação de Ativos', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Retornar Ativo', 'checkout' => 'Checkout de Ativo', 'clone' => 'Clonar Ativo', diff --git a/resources/lang/pt-BR/admin/settings/general.php b/resources/lang/pt-BR/admin/settings/general.php index bf5b47a8eb..253c87a0fa 100644 --- a/resources/lang/pt-BR/admin/settings/general.php +++ b/resources/lang/pt-BR/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Marcando essa caixa, permitirá que usuário substitua a interface por outra diferente.', 'asset_ids' => 'ID do ativo', 'audit_interval' => 'Intervalo de auditoria', - 'audit_interval_help' => 'Se você precisa verificar fisicamente seus ativos com frequência, insira um intervalo em meses.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Limiar de aviso de auditoria', 'audit_warning_days_help' => 'Com quantos dias de antecedência deseja ser avisado sobre a verificação de seus ativos?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Configuração do código de barras', 'confirm_purge' => 'Confirmar a Exclusão em Lote', diff --git a/resources/lang/pt-BR/general.php b/resources/lang/pt-BR/general.php index 1306840cee..84919be3d4 100644 --- a/resources/lang/pt-BR/general.php +++ b/resources/lang/pt-BR/general.php @@ -19,10 +19,10 @@ 'asset' => 'Ativo', 'asset_report' => 'Relatório de Ativos', 'asset_tag' => 'Marcação do Ativo', - 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', - 'accept_assets' => 'Accept Assets :name', - 'accept_assets_menu' => 'Accept Assets', + 'asset_tags' => 'Etiquetas de Ativo', + 'assets_available' => 'Ativos disponíveis', + 'accept_assets' => 'Aceitar Ativos :name', + 'accept_assets_menu' => 'Aceitar Ativos', 'audit' => 'Auditoria', 'audit_report' => 'Registro de auditoria', 'assets' => 'Ativos', @@ -33,10 +33,10 @@ 'bulkaudit' => 'Auditoria em massa', 'bulkaudit_status' => 'Status da auditoria', 'bulk_checkout' => 'Check-out em massa', - 'bulk_edit' => 'Bulk Edit', - 'bulk_delete' => 'Bulk Delete', - 'bulk_actions' => 'Bulk Actions', - 'bulk_checkin_delete' => 'Bulk Checkin & Delete', + 'bulk_edit' => 'Edição em massa', + 'bulk_delete' => 'Exclusão em massa', + 'bulk_actions' => 'Ações em massa', + 'bulk_checkin_delete' => 'Check-in em Massa & Excluir', 'bystatus' => 'por status', 'cancel' => 'Cancelar', 'categories' => 'Categorias', @@ -69,8 +69,8 @@ 'updated_at' => 'Atualizado por', 'currency' => '$', // this is deprecated 'current' => 'Atuais', - 'current_password' => 'Current Password', - 'customize_report' => 'Customize Report', + 'current_password' => 'Senha atual', + 'customize_report' => 'Personalizar relatório', 'custom_report' => 'Relatório de Ativos Personalizado', 'dashboard' => 'Painel de Controle', 'days' => 'dias', @@ -82,12 +82,12 @@ 'delete_confirm' => 'Você tem certeza que deseja excluir :item?', 'deleted' => 'Excluído', 'delete_seats' => 'Utilizadores apagados', - 'deletion_failed' => 'Deletion failed', + 'deletion_failed' => 'Erro ao Excluir', 'departments' => 'Departamentos', 'department' => 'Departamento', 'deployed' => 'Implantado', 'depreciation' => 'Depreciação', - 'depreciations' => 'Depreciations', + 'depreciations' => 'Depreciações', 'depreciation_report' => 'Relatório de Depreciações', 'details' => 'Detalhes', 'download' => 'Download', @@ -96,8 +96,9 @@ 'eol' => 'EOL', 'email_domain' => 'E-mail Domínio', 'email_format' => 'E-mail Formato', + 'employee_number' => 'Número de funcionário', 'email_domain_help' => 'Isto é usado para gerar endereços de e-mail na importação', - 'error' => 'Error', + 'error' => 'Erro', 'filastname_format' => 'Primeira Inicial com sobrenome (jsmith@example.com)', 'firstname_lastname_format' => 'Primeiro nome com sobrenome (jane.smith@example.com)', 'firstname_lastname_underscore_format' => 'Primeiro nome com sobrenome (jane.smith@example.com)', @@ -114,21 +115,21 @@ 'file_name' => 'Arquivo', 'file_type' => 'Tipo de arquivo', 'file_uploads' => 'Carregamentos de Arquivos', - 'file_upload' => 'File Upload', + 'file_upload' => 'Upload de Arquivo', 'generate' => 'Gerar', - 'generate_labels' => 'Generate Labels', + 'generate_labels' => 'Gerar Etiquetas', 'github_markdown' => 'Este campo permite Github flavored markdown.', 'groups' => 'Grupos', 'gravatar_email' => 'Endereço de E-mail do Gravatar', - 'gravatar_url' => 'Change your avatar at Gravatar.com.', + 'gravatar_url' => 'Modifique seu avatar em Gravatar.com.', 'history' => 'Histórico', 'history_for' => 'Histórico de', 'id' => 'ID', 'image' => 'Imagem', 'image_delete' => 'Excluir Imagem', 'image_upload' => 'Carregar Imagem', - 'filetypes_accepted_help' => 'Accepted filetype is :types. Max upload size allowed is :size.|Accepted filetypes are :types. Max upload size allowed is :size.', - 'filetypes_size_help' => 'Max upload size allowed is :size.', + 'filetypes_accepted_help' => 'O tipo de arquivo aceito é :types. O tamanho máximo de upload permitido é :size.|Tipos de arquivos aceitos são :types. O tamanho máximo de upload é :size.', + 'filetypes_size_help' => 'O tamanho máximo de upload permitido é :size.', 'image_filetypes_help' => 'Os tipos de arquivo aceitos são jpg, webp, png, gif e svg. O tamanho máximo de upload permitido é: tamanho.', 'import' => 'Importar', 'importing' => 'Importando', @@ -138,7 +139,7 @@ 'asset_maintenance_report' => 'Relatório de Manutenção em Ativo', 'asset_maintenances' => 'Manutenções em Ativo', 'item' => 'Item', - 'item_name' => 'Item Name', + 'item_name' => 'Nome do Item', 'insufficient_permissions' => 'Você não tem permissão!', 'kits' => 'Kits predefinidos', 'language' => 'Idioma', @@ -150,7 +151,7 @@ 'licenses_available' => 'licenças disponíveis', 'licenses' => 'Licenças', 'list_all' => 'Listar Todos', - 'loading' => 'Loading... please wait....', + 'loading' => 'Carregando, aguarde...', 'lock_passwords' => 'Este valor de campo não será salvo em uma instalação de demonstração.', 'feature_disabled' => 'Esta funcionalidade foi desativada na versão de demonstração.', 'location' => 'Local', @@ -159,17 +160,17 @@ 'logout' => 'Sair', 'lookup_by_tag' => 'Pesquisa pela Tag ativos', 'maintenances' => 'Manutenções', - 'manage_api_keys' => 'Manage API Keys', + 'manage_api_keys' => 'Gerenciar chaves da API', 'manufacturer' => 'Fabricante', 'manufacturers' => 'Fabricantes', 'markdown' => 'Este campo permite Github flavored markdown.', 'min_amt' => 'Min. Qt', - 'min_amt_help' => 'Minimum number of items that should be available before an alert gets triggered. Leave Min. QTY blank if you do not want to receive alerts for low inventory.', + 'min_amt_help' => 'Número mínimo de itens que devem estar disponíveis antes de um alerta ser gerado. Deixe a quantidade mínima em branco se não quiser receber alertas de inventário baixo.', 'model_no' => 'Nº do Modelo', 'months' => 'meses', 'moreinfo' => 'Mais Informações', 'name' => 'Nome', - 'new_password' => 'New Password', + 'new_password' => 'Nova Senha', 'next' => 'Próxima', 'next_audit_date' => 'Próxima Data de Auditoria', 'last_audit' => 'Última auditoria', @@ -191,23 +192,25 @@ 'purchase_date' => 'Data da compra', 'qty' => 'QTD', 'quantity' => 'Quantidade', - 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quantity_minimum' => 'Você tem :count itens abaixo ou quase abaixo dos níveis de quantidade mínima', + 'quickscan_checkin' => 'Check-in por Escaneamento Rápido', + 'quickscan_checkin_status' => 'Estado do Check-in', 'ready_to_deploy' => 'Pronto para Implantar', 'recent_activity' => 'Atividade Recente', - 'remaining' => 'Remaining', + 'remaining' => 'Restante', 'remove_company' => 'Remover associação de empresa', 'reports' => 'Relatórios', 'restored' => 'restaurado', - 'restore' => 'Restore', - 'requestable_models' => 'Requestable Models', + 'restore' => 'Restaurar', + 'requestable_models' => 'Modelos Solicitáveis', 'requested' => 'Solicitado', - 'requested_date' => 'Requested Date', - 'requested_assets' => 'Requested Assets', - 'requested_assets_menu' => 'Requested Assets', + 'requested_date' => 'Data de Solicitação', + 'requested_assets' => 'Ativos solicitados', + 'requested_assets_menu' => 'Ativos solicitados', 'request_canceled' => 'Pedido cancelado', 'save' => 'Salvar', 'select' => 'Selecionar', - 'select_all' => 'Select All', + 'select_all' => 'Selecionar todos', 'search' => 'Buscar', 'select_category' => 'Selecione uma categoria', 'select_department' => 'Selecione um Departamento', @@ -227,7 +230,7 @@ 'sign_in' => 'Entrar', 'signature' => 'Assinatura', 'skin' => 'Temas', - 'slack_msg_note' => 'A slack message will be sent', + 'slack_msg_note' => 'Uma mensagem será enviada via Slack', 'slack_test_msg' => 'Ah é! Parece que sua integração com o Snipe-IT está funcionando!', 'some_features_disabled' => 'MODO DE DEMONSTRAÇÃO: Algumas funcionalidades estão desativadas nesta instalação.', 'site_name' => 'Nome do Site', @@ -239,7 +242,7 @@ 'sure_to_delete' => 'Você tem certeza que deseja apagar', 'submit' => 'Confirmar', 'target' => 'Meta', - 'toggle_navigation' => 'Toogle Navigation', + 'toggle_navigation' => 'Ativar Navegação', 'time_and_date_display' => 'Exibição de Hora e Data', 'total_assets' => 'ativos no total', 'total_licenses' => 'licenças no total', @@ -259,7 +262,7 @@ 'users' => 'Usuários', 'viewall' => 'Visualizar Todos', 'viewassets' => 'Ver Ativos Atribuídos', - 'viewassetsfor' => 'View Assets for :name', + 'viewassetsfor' => 'Ver Ativos para :name', 'website' => 'Site', 'welcome' => 'Bem-vindo(a), :name', 'years' => 'anos', @@ -273,28 +276,28 @@ 'accept' => 'Aceitar :asset', 'i_accept' => 'Eu aceito', 'i_decline' => 'Eu recuso', - 'accept_decline' => 'Accept/Decline', + 'accept_decline' => 'Aceitar/Recusar', 'sign_tos' => 'Assine abaixo para indicar que você concorda com os termos do serviço:', 'clear_signature' => 'Limpar assinatura', 'show_help' => 'Mostrar ajuda', 'hide_help' => 'Ocultar ajuda', - 'view_all' => 'view all', - 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', - 'do_not_change' => 'Do Not Change', - 'bug_report' => 'Report a Bug', - 'user_manual' => 'User\'s Manual', - 'setup_step_1' => 'Step 1', - 'setup_step_2' => 'Step 2', - 'setup_step_3' => 'Step 3', - 'setup_step_4' => 'Step 4', - 'setup_config_check' => 'Configuration Check', - 'setup_create_database' => 'Create Database Tables', - 'setup_create_admin' => 'Create Admin User', - 'setup_done' => 'Finished!', - 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', - 'checked_out_to' => 'Checked out to', + 'view_all' => 'ver todos', + 'hide_deleted' => 'Ocultar excluídos', + 'email' => 'E-mail', + 'do_not_change' => 'Não alterar', + 'bug_report' => 'Relatar um Erro/Problema', + 'user_manual' => 'Manual do Usuário', + 'setup_step_1' => 'Passo 1', + 'setup_step_2' => 'Passo 2', + 'setup_step_3' => 'Passo 3', + 'setup_step_4' => 'Passo 4', + 'setup_config_check' => 'Verificar Configuração', + 'setup_create_database' => 'Criar tabelas no banco de dados', + 'setup_create_admin' => 'Criar usuário administrativo', + 'setup_done' => 'Concluído!', + 'bulk_edit_about_to' => 'Você está prestes a editar o seguinte: ', + 'checked_out' => 'Alocado', + 'checked_out_to' => 'Alocado para', 'fields' => 'Fields', 'last_checkout' => 'Last Checkout', 'due_to_checkin' => 'The following :count items are due to be checked in soon:', @@ -341,10 +344,10 @@ 'asset_name' => 'Asset Name:', 'consumable_information' => 'Consumable Information:', 'consumable_name' => 'Consumable Name:', - 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', - 'clone_item' => 'Clone Item', - 'checkout_tooltip' => 'Check this item out', - 'checkin_tooltip' => 'Check this item in', - 'checkout_user_tooltip' => 'Check this item out to a user', + 'accessory_information' => 'Informações do acessório:', + 'accessory_name' => 'Nome do Acessório:', + 'clone_item' => 'Clonar Item', + 'checkout_tooltip' => 'Fazer check-out do item', + 'checkin_tooltip' => 'Fazer check-in do item', + 'checkout_user_tooltip' => 'Fazer check-out deste item para um usuário', ]; diff --git a/resources/lang/pt-PT/admin/custom_fields/general.php b/resources/lang/pt-PT/admin/custom_fields/general.php index d12b67315d..fd5d9dccfd 100644 --- a/resources/lang/pt-PT/admin/custom_fields/general.php +++ b/resources/lang/pt-PT/admin/custom_fields/general.php @@ -42,5 +42,7 @@ return [ 'make_required' => 'Opcional - clique para tornar obrigatório', 'reorder' => 'Reordenar', 'db_field' => 'Campo DB', - 'db_convert_warning' => 'AVISO. Este campo está na tabela de campos personalizados como :db_column mas deve ser :expected .' + 'db_convert_warning' => 'AVISO. Este campo está na tabela de campos personalizados como :db_column mas deve ser :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/pt-PT/admin/hardware/general.php b/resources/lang/pt-PT/admin/hardware/general.php index dcf55ba085..8059333449 100644 --- a/resources/lang/pt-PT/admin/hardware/general.php +++ b/resources/lang/pt-PT/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arquivado', 'asset' => 'Ativo', 'bulk_checkout' => 'Artigos em checktout', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Devolver Ativo', 'checkout' => 'Ativo de compras', 'clone' => 'Clonar Ativo', diff --git a/resources/lang/pt-PT/admin/settings/general.php b/resources/lang/pt-PT/admin/settings/general.php index 508f2b9f54..1addf0437e 100644 --- a/resources/lang/pt-PT/admin/settings/general.php +++ b/resources/lang/pt-PT/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Alertas ativos', 'alert_interval' => 'Alertas expiram (em dias)', 'alert_inv_threshold' => 'Alerta limite do inventário', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'IDs dos Artigos', 'audit_interval' => 'Intervalo de auditoria', - 'audit_interval_help' => 'Se você for obrigado a auditar fisicamente seus ativos, insira o intervalo em meses.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Limiar de aviso de auditoria', 'audit_warning_days_help' => 'Quantos dias de antecedência devemos avisar quando os ativos são devidos para a auditoria?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Definições de Código de Barras', 'confirm_purge' => 'Confirmar remoção', diff --git a/resources/lang/pt-PT/general.php b/resources/lang/pt-PT/general.php index 60d3ad4831..a6a933b57b 100644 --- a/resources/lang/pt-PT/general.php +++ b/resources/lang/pt-PT/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL (Fim de vida)', 'email_domain' => 'Email do Domínio', 'email_format' => 'Formato do Email', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Isto é usado para criar endereços de email ao importar', 'error' => 'Erro', 'filastname_format' => 'Primeira Inicial Último Nome(jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTD', 'quantity' => 'Quantidade', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Pronto para implementar', 'recent_activity' => 'Actividade Recente', 'remaining' => 'Restantes', diff --git a/resources/lang/ro/admin/custom_fields/general.php b/resources/lang/ro/admin/custom_fields/general.php index f39eb30be1..9e630df03d 100644 --- a/resources/lang/ro/admin/custom_fields/general.php +++ b/resources/lang/ro/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Opțional - faceți clic pentru a deveni obligatoriu', 'reorder' => 'Reordonare', 'db_field' => 'Câmp în baza de date', - 'db_convert_warning' => 'AVERTISMENT. Acest câmp este în tabelul câmpurilor personalizate ca :db_column dar ar trebui să fie :expected .' + 'db_convert_warning' => 'AVERTISMENT. Acest câmp este în tabelul câmpurilor personalizate ca :db_column dar ar trebui să fie :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/ro/admin/hardware/general.php b/resources/lang/ro/admin/hardware/general.php index 042269fafc..b4869865da 100644 --- a/resources/lang/ro/admin/hardware/general.php +++ b/resources/lang/ro/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arhivate', 'asset' => 'Activ', 'bulk_checkout' => 'Predă activ', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Verifica activ', 'checkout' => 'Checkout Asset', 'clone' => 'Cloneaza activ', diff --git a/resources/lang/ro/admin/settings/general.php b/resources/lang/ro/admin/settings/general.php index e1013571b8..077f98f5f0 100644 --- a/resources/lang/ro/admin/settings/general.php +++ b/resources/lang/ro/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Alerte activată', 'alert_interval' => 'Termenul de expirare a alertelor (în zile)', 'alert_inv_threshold' => 'Ajustarea pragului de inventar', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'ID-uri de active', 'audit_interval' => 'Interval de audit', - 'audit_interval_help' => 'Dacă vi se cere să efectuați un audit fizic în mod regulat, introduceți intervalul în luni.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Prag de avertizare privind auditul', 'audit_warning_days_help' => 'Câte zile în avans trebuie să vă avertizăm când activele sunt scadente pentru audit?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Setări cod de bare', 'confirm_purge' => 'Confirmați purjarea', diff --git a/resources/lang/ro/general.php b/resources/lang/ro/general.php index cb747bd366..9bb4a17569 100644 --- a/resources/lang/ro/general.php +++ b/resources/lang/ro/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Domeniul de e-mail', 'email_format' => 'Formatul e-mailului', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Acesta este folosit pentru a genera adrese de e-mail atunci când importați', 'error' => 'Error', 'filastname_format' => 'Primul nume inițial (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Cantitate', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Gata de lansare', 'recent_activity' => 'Activitate recentă', 'remaining' => 'Remaining', diff --git a/resources/lang/ru/admin/custom_fields/general.php b/resources/lang/ru/admin/custom_fields/general.php index 4149989f36..fe92f5f168 100644 --- a/resources/lang/ru/admin/custom_fields/general.php +++ b/resources/lang/ru/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Необязательное - нажмите чтобы сделать обязательным', 'reorder' => 'Изменить порядок', 'db_field' => 'Поле БД', - 'db_convert_warning' => 'ВНИМАНИЕ. Это поле находится в пользовательской таблице как :db_column но должно быть :expected .' + 'db_convert_warning' => 'ВНИМАНИЕ. Это поле находится в пользовательской таблице как :db_column но должно быть :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/ru/admin/hardware/general.php b/resources/lang/ru/admin/hardware/general.php index 671fb6fa25..99bfa6e129 100644 --- a/resources/lang/ru/admin/hardware/general.php +++ b/resources/lang/ru/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Архивированные', 'asset' => 'Актив', 'bulk_checkout' => 'Выдать актив пользователю', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Вернуть актив на склад', 'checkout' => 'Выдать актив пользователю', 'clone' => 'Клонировать актив', diff --git a/resources/lang/ru/admin/settings/general.php b/resources/lang/ru/admin/settings/general.php index 24fd3a968f..ef54695cdf 100644 --- a/resources/lang/ru/admin/settings/general.php +++ b/resources/lang/ru/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'ID актива', 'audit_interval' => 'Интервал аудита', - 'audit_interval_help' => 'Если вам требуется регулярно физически проверять свои активы, введите интервал в месяцах.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Предупреждающий порог предупреждения', 'audit_warning_days_help' => 'За сколько дней мы должны предупредить вас, когда активы подлежат аудиту?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Настройки штрихкода', 'confirm_purge' => 'Подтвердить удаление', diff --git a/resources/lang/ru/general.php b/resources/lang/ru/general.php index 00b45c3ac3..386daa259f 100644 --- a/resources/lang/ru/general.php +++ b/resources/lang/ru/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Домен адреса электронной почты', 'email_format' => 'Формат адреса электронной почты', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Он используется для генерации адреса при импорте', 'error' => 'Ошибка', 'filastname_format' => 'Первая буква имени и фамилия (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Кол-во', 'quantity' => 'Количество', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Готов к установке', 'recent_activity' => 'Недавняя активность', 'remaining' => 'Remaining', diff --git a/resources/lang/si-LK/admin/custom_fields/general.php b/resources/lang/si-LK/admin/custom_fields/general.php index 8483c67c69..4c7442b2d5 100644 --- a/resources/lang/si-LK/admin/custom_fields/general.php +++ b/resources/lang/si-LK/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/si-LK/admin/hardware/general.php b/resources/lang/si-LK/admin/hardware/general.php index 1ac49efef1..67226061b1 100644 --- a/resources/lang/si-LK/admin/hardware/general.php +++ b/resources/lang/si-LK/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archived', 'asset' => 'Asset', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Clone Asset', diff --git a/resources/lang/si-LK/admin/settings/general.php b/resources/lang/si-LK/admin/settings/general.php index 3e7a60f89f..6bbab229e3 100644 --- a/resources/lang/si-LK/admin/settings/general.php +++ b/resources/lang/si-LK/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Email Alerts Enabled', 'alert_interval' => 'Expiring Alerts Threshold (in days)', 'alert_inv_threshold' => 'Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Asset IDs', 'audit_interval' => 'Audit Interval', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Barcode Settings', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/si-LK/general.php b/resources/lang/si-LK/general.php index 2e358c77f9..0e38b21939 100644 --- a/resources/lang/si-LK/general.php +++ b/resources/lang/si-LK/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Error', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ready to Deploy', 'recent_activity' => 'Recent Activity', 'remaining' => 'Remaining', diff --git a/resources/lang/sk/admin/custom_fields/general.php b/resources/lang/sk/admin/custom_fields/general.php index 8483c67c69..4c7442b2d5 100644 --- a/resources/lang/sk/admin/custom_fields/general.php +++ b/resources/lang/sk/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/sk/admin/hardware/general.php b/resources/lang/sk/admin/hardware/general.php index eeac78fc7b..12713367cb 100644 --- a/resources/lang/sk/admin/hardware/general.php +++ b/resources/lang/sk/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archivované', 'asset' => 'Majetok', 'bulk_checkout' => 'Vyskladniť majetky', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Prevziať majetok', 'checkout' => 'Vyskladniť majetok', 'clone' => 'Duplikovať majetok', diff --git a/resources/lang/sk/admin/settings/general.php b/resources/lang/sk/admin/settings/general.php index 7d654e5a4c..6c7de81b44 100644 --- a/resources/lang/sk/admin/settings/general.php +++ b/resources/lang/sk/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Zaškrtnutím tohto políčka sa povolíí používateľovi nahradiť UI tému vlastnou.', 'asset_ids' => 'ID-čka majetku', 'audit_interval' => 'Interval pre auditovanie', - 'audit_interval_help' => 'Pokiaľ budete musieť pravidelne fyzicky auditovať svoj majetok, zadajte interval v mesiacoch.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Prah výstrahy auditu', 'audit_warning_days_help' => 'Koľko dní dopredu by sme vás mali upozorňovať, keď je majetok čakajúci na audit?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Nastavnia čiarového kódu', 'confirm_purge' => 'Potvrdiť čistenie', diff --git a/resources/lang/sk/general.php b/resources/lang/sk/general.php index c3798cc491..e952ccf2b6 100644 --- a/resources/lang/sk/general.php +++ b/resources/lang/sk/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Chyba', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ready to Deploy', 'recent_activity' => 'Recent Activity', 'remaining' => 'Remaining', diff --git a/resources/lang/sl/admin/custom_fields/general.php b/resources/lang/sl/admin/custom_fields/general.php index bb88ad4b38..eec95f6643 100644 --- a/resources/lang/sl/admin/custom_fields/general.php +++ b/resources/lang/sl/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/sl/admin/hardware/general.php b/resources/lang/sl/admin/hardware/general.php index a610470fa9..b522a2ea8d 100644 --- a/resources/lang/sl/admin/hardware/general.php +++ b/resources/lang/sl/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arhivirano', 'asset' => 'Sredstev', 'bulk_checkout' => 'Izdaja sredstev', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Sprejem sredstev', 'checkout' => 'Izdaja sredstev', 'clone' => 'Klonska sredstvo', diff --git a/resources/lang/sl/admin/settings/general.php b/resources/lang/sl/admin/settings/general.php index b38f08bcdc..3c636b62a0 100644 --- a/resources/lang/sl/admin/settings/general.php +++ b/resources/lang/sl/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Potrditev tega polja bo uporabnikom omogočila spremembo preobleke uporabniškega vmesnika z drugo.', 'asset_ids' => 'ID sredstva', 'audit_interval' => 'Revizijski interval', - 'audit_interval_help' => 'Če boste morali redno fizično pregledovati svoja sredstva, vnesite interval v mesecih.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Prag za opozorilo o reviziji', 'audit_warning_days_help' => 'Koliko dni vnaprej vas opozorimo, kdaj so sredstva namenjena za revizijo?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Nastavitve črtne kode', 'confirm_purge' => 'Potrdi čiščenje', diff --git a/resources/lang/sl/general.php b/resources/lang/sl/general.php index f715588078..702a79163c 100644 --- a/resources/lang/sl/general.php +++ b/resources/lang/sl/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'E-poštna domena', 'email_format' => 'Format e-pošte', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'To se uporablja za ustvarjanje e-poštnih naslovov pri uvozu', 'error' => 'Error', 'filastname_format' => 'Prva črka imena priimek (jsmith@example.com)', @@ -193,6 +194,8 @@ 'qty' => 'KOLIČINA', 'quantity' => 'Količina', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Pripravljeni za uporabo', 'recent_activity' => 'Nedavne dejavnosti', 'remaining' => 'Remaining', diff --git a/resources/lang/sr-CS/admin/custom_fields/general.php b/resources/lang/sr-CS/admin/custom_fields/general.php index e98bcd5bd5..f04d3b6ba4 100644 --- a/resources/lang/sr-CS/admin/custom_fields/general.php +++ b/resources/lang/sr-CS/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/sr-CS/admin/hardware/general.php b/resources/lang/sr-CS/admin/hardware/general.php index 2d78b952d2..571777a5f6 100644 --- a/resources/lang/sr-CS/admin/hardware/general.php +++ b/resources/lang/sr-CS/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arhivirano', 'asset' => 'Imovina', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Kloniraj imovinu', diff --git a/resources/lang/sr-CS/admin/settings/general.php b/resources/lang/sr-CS/admin/settings/general.php index ba723e0603..d898ee2c8d 100644 --- a/resources/lang/sr-CS/admin/settings/general.php +++ b/resources/lang/sr-CS/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Upozorenja na email su omogućena', 'alert_interval' => 'Expiring Alerts Threshold (in days)', 'alert_inv_threshold' => 'Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Čekiranjem ovog polja omogućava se korisniku da premosti UI \'skin\' sa nekim drugim.', 'asset_ids' => 'Asset IDs', 'audit_interval' => 'Interval revizije', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Barcode Settings', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/sr-CS/general.php b/resources/lang/sr-CS/general.php index d9bd4cf7fc..0c889660a9 100644 --- a/resources/lang/sr-CS/general.php +++ b/resources/lang/sr-CS/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Ovo se koristi za generisanje e-mail adrese prilikom uvoza', 'error' => 'Error', 'filastname_format' => 'Prvo slovo imena Prezime (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'KOL', 'quantity' => 'Količina', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Spremna za raspoređivanje', 'recent_activity' => 'Nedavna aktivnost', 'remaining' => 'Remaining', diff --git a/resources/lang/sv-SE/admin/categories/general.php b/resources/lang/sv-SE/admin/categories/general.php index 1dcde26972..42187664a1 100644 --- a/resources/lang/sv-SE/admin/categories/general.php +++ b/resources/lang/sv-SE/admin/categories/general.php @@ -18,6 +18,6 @@ return array( 'update' => 'Uppdatera kategori', 'use_default_eula' => 'Använd standard-licensavtal, EULA istället.', 'use_default_eula_disabled' => 'Använd den primära licensavtalet, EULA:n, istället. Inget primärt licensavtal, EULA, är satt. Vänligen lägg till en under Inställningar.', - 'use_default_eula_column' => 'Use default EULA', + 'use_default_eula_column' => 'Använd standard EULA', ); diff --git a/resources/lang/sv-SE/admin/companies/general.php b/resources/lang/sv-SE/admin/companies/general.php index ed9dbba9ac..b8d22a2523 100644 --- a/resources/lang/sv-SE/admin/companies/general.php +++ b/resources/lang/sv-SE/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Välj företag', - 'about_companies' => 'About Companies', - 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', + 'about_companies' => 'Om företag', + 'about_companies_description' => ' Du kan använda företag som ett enkelt informativt fält, eller så kan du använda dem för att begränsa tillgångar och tillgängligheten för användare med ett visst företag genom att aktivera Full Företagssupport i dina administratörsinställningar.', ]; diff --git a/resources/lang/sv-SE/admin/custom_fields/general.php b/resources/lang/sv-SE/admin/custom_fields/general.php index 1958ad1688..b47177d693 100644 --- a/resources/lang/sv-SE/admin/custom_fields/general.php +++ b/resources/lang/sv-SE/admin/custom_fields/general.php @@ -2,11 +2,11 @@ return [ 'custom_fields' => 'Anpassade fält', - 'manage' => 'Manage', + 'manage' => 'Hantera', 'field' => 'Fält', 'about_fieldsets_title' => 'Om fältsamlingar', - '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...', + 'about_fieldsets_text' => 'Fältsamlingar låter dig skapa grupper av fält som är anpassade efter ofta använda av en viss typ av tillgång. Ex. "Cpu", "Ram", "Hdd", etc.', + 'custom_format' => 'Anpassat Regex-format...', 'encrypt_field' => 'Kryptera värdet på det här fältet i databasen', 'encrypt_field_help' => 'VARNING: Kryptering av ett fält gör det oförsvarligt.', 'encrypted' => 'krypterad', @@ -27,19 +27,21 @@ return [ 'used_by_models' => 'Används av modeller', 'order' => 'Sortering', 'create_fieldset' => 'Ny fältsamling', - 'create_fieldset_title' => 'Create a new fieldset', + 'create_fieldset_title' => 'Skapa en ny fältsamling', 'create_field' => 'Nytt anpassat fält', - 'create_field_title' => 'Create a new custom field', + 'create_field_title' => 'Skapa ett nytt anpassat fält', 'value_encrypted' => 'Värdet på det här fältet är krypterat i databasen. Endast adminanvändare kan se det dekrypterade värdet', 'show_in_email' => 'Inkludera värdet på det här fältet i utcheckning mailen som skickas till användarna? Krypterade fält kan inte inkluderas i e-postmeddelanden.', - 'help_text' => 'Help Text', - 'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.', - 'about_custom_fields_title' => 'About Custom Fields', - 'about_custom_fields_text' => 'Custom fields allow you to add arbitrary attributes to assets.', - 'add_field_to_fieldset' => 'Add Field to Fieldset', - 'make_optional' => 'Required - click to make optional', - 'make_required' => 'Optional - click to make required', - 'reorder' => 'Reorder', - 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'help_text' => 'Hjälptext', + 'help_text_description' => 'Detta är valfri text som visas under formulärelementen medan du redigerar en tillgång för att ge sammanhang på fältet.', + 'about_custom_fields_title' => 'Om anpassade fält', + 'about_custom_fields_text' => 'Anpassade fält låter dig lägga till egna attribut till tillgångar.', + 'add_field_to_fieldset' => 'Lägg till fält till fältsamlingar', + 'make_optional' => 'Obligatoriskt - klicka för att göra valfritt', + 'make_required' => 'Valfritt - klicka för att begära', + 'reorder' => 'Ändra ordning', + 'db_field' => 'DB Fält', + 'db_convert_warning' => 'VARNING. Detta fält finns i tabellen för anpassade fält som :db_column men bör vara :expected .', + 'is_unique' => 'Detta värde måste vara unikt för alla tillgångar', + 'unique' => 'Unik', ]; diff --git a/resources/lang/sv-SE/admin/depreciations/general.php b/resources/lang/sv-SE/admin/depreciations/general.php index 1cc4689850..22bf7d4f8e 100644 --- a/resources/lang/sv-SE/admin/depreciations/general.php +++ b/resources/lang/sv-SE/admin/depreciations/general.php @@ -6,11 +6,11 @@ return [ 'asset_depreciations' => 'Avskrivningar av tillgångar', 'create' => 'Skapa avskrivningar', 'depreciation_name' => 'Avskrivningsnamn', - 'depreciation_min' => 'Floor Value of Depreciation', + 'depreciation_min' => 'Nuvarande värde', 'number_of_months' => 'Antal Månader', 'update' => 'Uppdatera avskrivningar', - 'depreciation_min' => 'Minimum Value after Depreciation', - 'no_depreciations_warning' => 'Warning: - You do not currently have any depreciations set up. - Please set up at least one depreciation to view the depreciation report.', + 'depreciation_min' => 'Minsta värde efter avskrivningar', + 'no_depreciations_warning' => 'Varning: + Du har för närvarande inte några avskrivningar. + Vänligen ställ in minst en avskrivning för att se avskrivningsrapporten.', ]; diff --git a/resources/lang/sv-SE/admin/depreciations/table.php b/resources/lang/sv-SE/admin/depreciations/table.php index bf4190db3b..f52fdaec1e 100644 --- a/resources/lang/sv-SE/admin/depreciations/table.php +++ b/resources/lang/sv-SE/admin/depreciations/table.php @@ -6,6 +6,6 @@ return [ 'months' => 'Månader', 'term' => 'Löptid', 'title' => 'Namn ', - 'depreciation_min' => 'Floor Value', + 'depreciation_min' => 'Nuvarande värde', ]; diff --git a/resources/lang/sv-SE/admin/groups/titles.php b/resources/lang/sv-SE/admin/groups/titles.php index 1711718563..a8ae514e4c 100644 --- a/resources/lang/sv-SE/admin/groups/titles.php +++ b/resources/lang/sv-SE/admin/groups/titles.php @@ -10,7 +10,7 @@ return [ 'group_admin' => 'Gruppadministratör', 'allow' => 'Tillåt', 'deny' => 'Neka', - 'permission' => 'Permission', - 'grant' => 'Grant', - 'no_permissions' => 'This group has no permissions.' + 'permission' => 'Behörighet', + 'grant' => 'Bevilja', + 'no_permissions' => 'Denna grupp har inga behörigheter.' ]; diff --git a/resources/lang/sv-SE/admin/hardware/form.php b/resources/lang/sv-SE/admin/hardware/form.php index f942981313..4e94112187 100644 --- a/resources/lang/sv-SE/admin/hardware/form.php +++ b/resources/lang/sv-SE/admin/hardware/form.php @@ -40,10 +40,10 @@ return [ 'warranty' => 'Garanti', 'warranty_expires' => 'Garantin löper ut', 'years' => 'år', - 'asset_location' => 'Update Asset Location', - 'asset_location_update_default_current' => 'Update default location AND actual location', - 'asset_location_update_default' => 'Update only default location', - 'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.', - 'asset_deployable' => 'That status is deployable. This asset can be checked out.', - 'processing_spinner' => 'Processing...', + 'asset_location' => 'Uppdatera tillgångsplats', + 'asset_location_update_default_current' => 'Uppdatera standardplats och aktuell plats', + 'asset_location_update_default' => 'Uppdatera endast standardplats', + 'asset_not_deployable' => 'Denna tillgångs status kan inte distribueras. Denna tillgång kan inte checkas ut.', + 'asset_deployable' => 'Denna status är distribuerbar. Denna tillgång kan checkas ut.', + 'processing_spinner' => 'Bearbetar...', ]; diff --git a/resources/lang/sv-SE/admin/hardware/general.php b/resources/lang/sv-SE/admin/hardware/general.php index 4ca07a0d08..f63e0baa02 100644 --- a/resources/lang/sv-SE/admin/hardware/general.php +++ b/resources/lang/sv-SE/admin/hardware/general.php @@ -6,38 +6,39 @@ return [ 'archived' => 'Arkiverade', 'asset' => 'Tillgång', 'bulk_checkout' => 'Checkout tillgångar', + 'bulk_checkin' => 'Återta tillgångar', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Klon tillgång', 'deployable' => 'Deployable', - 'deleted' => 'This asset has been deleted.', + 'deleted' => 'Denna tillgång har tagits bort.', 'edit' => 'Redigera tillgång', - 'model_deleted' => 'This Assets model has been deleted. You must restore the model before you can restore the Asset.', + 'model_deleted' => 'Denna tillgångsmodell har tagits bort. Du måste återställa modellen innan du kan återställa tillgången.', 'requestable' => 'Tillgängliga', 'requested' => 'Begärda', - 'not_requestable' => 'Not Requestable', - 'requestable_status_warning' => 'Do not change requestable status', + 'not_requestable' => 'Inte begärbar', + 'requestable_status_warning' => 'Ändra inte begärbar status', 'restore' => 'Återställ tillgången', 'pending' => 'Väntande', 'undeployable' => 'Undeployable', 'view' => 'Visa tillgång', - 'csv_error' => 'You have an error in your CSV file:', + 'csv_error' => 'Du har ett fel i din CSV-fil:', 'import_text' => '

- Upload a CSV that contains asset history. The assets and users MUST already exist in the system, or they will be skipped. Matching assets for history import happens against the asset tag. We will try to find a matching user based on the user\'s name you provide, and the criteria you select below. If you do not select any criteria below, it will simply try to match on the username format you configured in the Admin > General Settings. + Ladda upp en CSV som innehåller tillgångshistorik. Tillgångar och användare MÅSTE redan finns i systemet, annars kommer de att hoppas över. Matchande tillgångar för historikimport sker mot tillgångstaggen. Vi kommer att försöka hitta en matchande användare baserat på användarens namn du anger, och kriterierna du väljer nedan. Om du inte väljer några kriterier nedan, kommer den helt enkelt att försöka matcha användarnamn formatet du konfigurerat i Admin > Allmänna inställningar.

-

Fields included in the CSV must match the headers: Asset Tag, Name, Checkout Date, Checkin Date. Any additional fields will be ignored.

+

Fält som ingår i CSV måste matcha rubrikerna: Asset Tag, Namn, Checkout datum, Checkin datum. Eventuella ytterligare fält kommer att ignoreras.

-

Checkin Date: blank or future checkin dates will checkout items to associated user. Excluding the Checkin Date column will create a checkin date with todays date.

+

Checkin Datum: tomt eller framtida checkin datum kommer att checka ut objekt till associerad användare. Exklusive kolumnen Checkin Date kommer en checkin datum med dagens datum.

', - 'csv_import_match_f-l' => 'Try to match users by firstname.lastname (jane.smith) format', - 'csv_import_match_initial_last' => 'Try to match users by first initial last name (jsmith) format', - 'csv_import_match_first' => 'Try to match users by first name (jane) format', - 'csv_import_match_email' => 'Try to match users by email as username', - 'csv_import_match_username' => 'Try to match users by username', - 'error_messages' => 'Error messages:', - 'success_messages' => 'Success messages:', - 'alert_details' => 'Please see below for details.', - 'custom_export' => 'Custom Export' + 'csv_import_match_f-l' => 'Försök att matcha användare med firstname.lastname (jane.smith) format', + 'csv_import_match_initial_last' => 'Försök att matcha användare med första förnamnet (jsmith) format', + 'csv_import_match_first' => 'Försök att matcha användare med förnamn (jane) format', + 'csv_import_match_email' => 'Försök att matcha användare via e-post som användarnamn', + 'csv_import_match_username' => 'Försök att matcha användare med användarnamn', + 'error_messages' => 'Felmeddelanden:', + 'success_messages' => 'Lyckade meddelande:', + 'alert_details' => 'Se nedan för detaljer.', + 'custom_export' => 'Anpassad export' ]; diff --git a/resources/lang/sv-SE/admin/hardware/message.php b/resources/lang/sv-SE/admin/hardware/message.php index 05aa9db52e..108cce61b9 100644 --- a/resources/lang/sv-SE/admin/hardware/message.php +++ b/resources/lang/sv-SE/admin/hardware/message.php @@ -4,7 +4,7 @@ return [ 'undeployable' => 'Varning: Den här tillgången har markerats som omöjlig för närvarande. Om denna status har ändrats uppdaterar du tillgångsstatusen.', 'does_not_exist' => 'Tillgång existerar inte.', - 'does_not_exist_or_not_requestable' => 'That asset does not exist or is not requestable.', + 'does_not_exist_or_not_requestable' => 'Den tillgången finns inte eller är inte önskvärd.', 'assoc_users' => 'Denna tillgång kontrolleras för närvarande till en användare och kan inte raderas. Kontrollera tillgången först och försök sedan radera igen.', 'create' => [ diff --git a/resources/lang/sv-SE/admin/hardware/table.php b/resources/lang/sv-SE/admin/hardware/table.php index aaed337c5d..fac6703404 100644 --- a/resources/lang/sv-SE/admin/hardware/table.php +++ b/resources/lang/sv-SE/admin/hardware/table.php @@ -4,11 +4,11 @@ return [ 'asset_tag' => 'Asset Tag', 'asset_model' => 'Modell', - 'book_value' => 'Current Value', + 'book_value' => 'Nuvarande värde', 'change' => 'In ut', 'checkout_date' => 'Checkout Date', 'checkoutto' => 'Checkat ut', - 'current_value' => 'Current Value', + 'current_value' => 'Nuvarande värde', 'diff' => 'Diff', 'dl_csv' => 'Hämta CSV', 'eol' => 'EOL', @@ -22,9 +22,9 @@ return [ 'image' => 'Enhetsbild', 'days_without_acceptance' => 'Dagar utan godkännande', 'monthly_depreciation' => 'Månatlig avskrivning', - 'assigned_to' => 'Assigned To', - 'requesting_user' => 'Requesting User', - 'requested_date' => 'Requested Date', - 'changed' => 'Changed', - 'icon' => 'Icon', + 'assigned_to' => 'Tilldelad till', + 'requesting_user' => 'Begär användare', + 'requested_date' => 'Begärt datum', + 'changed' => 'Ändrad', + 'icon' => 'Ikon', ]; diff --git a/resources/lang/sv-SE/admin/kits/general.php b/resources/lang/sv-SE/admin/kits/general.php index 0841e647fd..0c9e78b2aa 100644 --- a/resources/lang/sv-SE/admin/kits/general.php +++ b/resources/lang/sv-SE/admin/kits/general.php @@ -13,38 +13,38 @@ return [ 'none_licenses' => 'Det finns inte tillräckligt med tillgängliga licenser av : license att checka ut. :qty krävs. ', 'none_consumables' => 'Det finns inte tillräckligt antal tillgängliga av : consumable att checka ut. :qty krävs. ', 'none_accessory' => 'Det finns inte tillräckligt antal tillgängliga av : accessory att checka ut. :qty krävs. ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', + 'append_accessory' => 'Lägg till tillbehör', + 'update_appended_accessory' => 'Uppdatera tillagad tillbehör', + 'append_consumable' => 'Lägg till förbrukningsmaterial', + 'update_appended_consumable' => 'Uppdatera tillagda förbrukningsvara', + 'append_license' => 'Lägg till licens', + 'update_appended_license' => 'Uppdatera tillagda licensen', + 'append_model' => 'Lägg till modell', + 'update_appended_model' => 'Uppdatera tillagda modell', + 'license_error' => 'Licensen är redan kopplad till kit', + 'license_added_success' => 'Licensen har lagts till', + 'license_updated' => 'Licensen har uppdaterats', + 'license_none' => 'Licensen finns inte', + 'license_detached' => 'Licensen har tagits bort', + 'consumable_added_success' => 'Förbrukningsvaror har lagts till', + 'consumable_updated' => 'Förbrukningsvaror har uppdaterats', + 'consumable_error' => 'Förbrukningsvaror som är redan i en kit', + 'consumable_deleted' => 'Radering lyckades', + 'consumable_none' => 'Förbrukningsvaror finns inte', + 'consumable_detached' => 'Förbrukningsvaror har tagits bort', + 'accessory_added_success' => 'Tillbehöret har lagts till', + 'accessory_updated' => 'Tillbehöret har uppdaterats', + 'accessory_detached' => 'Tillbehöret har kopplats bort', + 'accessory_error' => 'Tillbehören är redan i en kit', + 'accessory_deleted' => 'Radering lyckades', + 'accessory_none' => 'Tillbehöret finns inte', + 'checkout_success' => 'Utcheckning lyckades', + 'checkout_error' => 'Utcheckningen blev fel', + 'kit_none' => 'Kit finns inte', + 'kit_created' => 'Kit har skapats', + 'kit_updated' => 'Kit har uppdaterats', + 'kit_not_found' => 'Kit hittades inte', + 'kit_deleted' => 'Kit har tagits bort', + 'kit_model_updated' => 'Modellen har uppdaterats', + 'kit_model_detached' => 'Modellen har tagits bort', ]; diff --git a/resources/lang/sv-SE/admin/locations/table.php b/resources/lang/sv-SE/admin/locations/table.php index 5f4137b7ad..8a30c4456a 100644 --- a/resources/lang/sv-SE/admin/locations/table.php +++ b/resources/lang/sv-SE/admin/locations/table.php @@ -20,21 +20,21 @@ return [ 'parent' => 'Förälder', 'currency' => 'Platsvaluta', 'ldap_ou' => 'LDAP-sökning OU', - 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', - 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', - 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', - 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', - 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', - 'signed_by_location_manager' => 'Signed By (Location Manager):', - 'signed_by' => 'Signed Off By:', + 'user_name' => 'Användarnamn', + 'department' => 'Avdelning', + 'location' => 'Plats', + 'asset_tag' => 'Stöldnummer', + 'asset_name' => 'Namn', + 'asset_category' => 'Kategori', + 'asset_manufacturer' => 'Tillverkare', + 'asset_model' => 'Modell', + 'asset_serial' => 'Serienummer', + 'asset_location' => 'Plats', + 'asset_checked_out' => 'Checkat ut', + 'asset_expected_checkin' => 'Förväntad incheckning', + 'date' => 'Datum:', + 'signed_by_asset_auditor' => 'Signerad av (Asset Auditor):', + 'signed_by_finance_auditor' => 'Undertecknad av (Finansrevisor):', + 'signed_by_location_manager' => 'Undertecknad av (Platschef):', + 'signed_by' => 'Undertecknad av:', ]; diff --git a/resources/lang/sv-SE/admin/models/general.php b/resources/lang/sv-SE/admin/models/general.php index 86a3308e61..cc398bf01f 100644 --- a/resources/lang/sv-SE/admin/models/general.php +++ b/resources/lang/sv-SE/admin/models/general.php @@ -3,7 +3,7 @@ return array( 'about_models_title' => 'Om modeller', 'about_models_text' => 'Modeller är ett sätt att gruppera identiska tillgångar. "Galaxy S20", "iPhone 12", etc.', - 'deleted' => 'This model has been deleted.', + 'deleted' => 'Denna modell har tagits bort.', 'bulk_delete' => 'Bulk Radera modeller', 'bulk_delete_help' => 'Använd kryssrutan här under för att bekräfta borttagning av valda modeller. Modeller som har tillgångar kopplade till sig kan inte raderas innan dessa är kopplade till en annan modell.', 'bulk_delete_warn' => 'Du håller på att ta bort: model_count modeller.', diff --git a/resources/lang/sv-SE/admin/reports/general.php b/resources/lang/sv-SE/admin/reports/general.php index 808228a155..3e6b05da1b 100644 --- a/resources/lang/sv-SE/admin/reports/general.php +++ b/resources/lang/sv-SE/admin/reports/general.php @@ -2,9 +2,9 @@ return [ 'info' => 'Välj de alternativ du vill ha för din tillgångsrapport.', - 'deleted_user' => 'Deleted user', - 'send_reminder' => 'Send reminder', - 'reminder_sent' => 'Reminder sent', - 'acceptance_deleted' => 'Acceptance request deleted', - 'acceptance_request' => 'Acceptance request' + 'deleted_user' => 'Raderad användare', + 'send_reminder' => 'Skicka påminnelse', + 'reminder_sent' => 'Påminnelse har skickats', + 'acceptance_deleted' => 'Begäran om godkännande borttagen', + 'acceptance_request' => 'Godkänn begäran' ]; \ No newline at end of file diff --git a/resources/lang/sv-SE/admin/settings/general.php b/resources/lang/sv-SE/admin/settings/general.php index 73a762d6e8..e56a64cc6e 100644 --- a/resources/lang/sv-SE/admin/settings/general.php +++ b/resources/lang/sv-SE/admin/settings/general.php @@ -10,10 +10,10 @@ return [ 'admin_cc_email' => 'CC Email', 'admin_cc_email_help' => 'Om du vill skicka en kopia av checkin / checkout-e-postmeddelanden som skickas till användare till ett extra e-postkonto, skriv det här. Annars lämnar du fältet tomt.', 'is_ad' => 'Detta är en Active Directory-server', - 'alerts' => 'Alerts', - 'alert_title' => 'Update Alert Settings', + 'alerts' => 'Varningar', + 'alert_title' => 'Uppdatera varningsinställningar', 'alert_email' => 'Skicka larm till', - 'alert_email_help' => 'Email addresses or distribution lists you want alerts to be sent to, comma separated', + 'alert_email_help' => 'E-postadresser eller distributionslistor som du vill att varningar ska skickas till, kommaseparerade', 'alerts_enabled' => 'Larm aktivt', 'alert_interval' => 'Utgående varningströskel (i dagar)', 'alert_inv_threshold' => 'Varna om lågt lagersaldo', @@ -21,19 +21,19 @@ return [ 'allow_user_skin_help_text' => 'Genom att markera denna ruta kan en användare åsidosätta gränssnittet med ett annat.', 'asset_ids' => 'Tillgångs-ID', 'audit_interval' => 'Inventeringsintervall', - 'audit_interval_help' => 'Om ni är i behov av regelbunden fysisk inventering av era tillgångar anger du intervallet i månader.', + 'audit_interval_help' => 'Om du behöver fysiskt granska dina tillgångar regelbundet, ange intervallet i månader som du använder. Om du uppdaterar detta värde, alla "nästa revisionsdatum" för tillgångar med ett kommande revisionsdatum.', 'audit_warning_days' => 'Gränsvärde för varning om nästa inventering', 'audit_warning_days_help' => 'Hur många dagar i förväg vill du bli varnad när det närmar sig revision av tillgångar?', - 'auto_increment_assets' => 'Generate auto-incrementing asset tags', + 'auto_increment_assets' => 'Generera automatisk ökning av tillgångstaggar', 'auto_increment_prefix' => 'Prefix (frivilligt)', - 'auto_incrementing_help' => 'Enable auto-incrementing asset tags first to set this', + 'auto_incrementing_help' => 'Aktivera automatisk ökning av anläggningstillgångar först innan du ställer in detta', 'backups' => 'Säkerhetskopior', - 'backups_restoring' => 'Restoring from Backup', - 'backups_upload' => 'Upload Backup', - 'backups_path' => 'Backups on the server are stored in :path', - 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', - 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', + 'backups_restoring' => 'Återställ från säkerhetskopia', + 'backups_upload' => 'Ladda upp säkerhetskopia', + 'backups_path' => 'Säkerhetskopior på servern lagras i :path', + 'backups_restore_warning' => 'Använd återställningsknappen för att återställa från en tidigare säkerhetskopia. (Detta fungerar för närvarande inte med S3-fillagring eller Docker.

Din hela :app_name databas och alla uppladdade filer kommer att helt ersättas av vad som finns i backupfilen. ', + 'backups_logged_out' => 'Alla befintliga användare, inklusive du, kommer att loggas ut när din återställning är klar.', + 'backups_large' => 'Mycket stora säkerhetskopior kan stoppa omställningsprocessen och behöver köras via kommandoraden. ', 'barcode_settings' => 'Streckkodsinställningar', 'confirm_purge' => 'Bekräfta tömning', 'confirm_purge_help' => 'Ange texten "DELETE" i rutan nedan för att rensa dina raderade poster. Denna åtgärd kan inte ångras och kommer PERMANENT ta bort alla mjuk-raderade objekt och användare. (Du bör göra en säkerhetskopia först, för att vara säker.)', @@ -56,7 +56,7 @@ return [ 'barcode_type' => '2D streckkodstyp', 'alt_barcode_type' => '1D streckkodstyp', 'email_logo_size' => 'Kvadratiska logotyper i e-post ser bäst ut. ', - 'enabled' => 'Enabled', + 'enabled' => 'Aktiverad', 'eula_settings' => 'EULA-inställningar', 'eula_markdown' => 'Detta EULA tillåter Github smaksatt markdown.', 'favicon' => 'Favicon', @@ -65,8 +65,8 @@ return [ 'footer_text' => 'Ytterligare Footer Text ', 'footer_text_help' => 'Denna text kommer visas i höger sidfot. Länkar ska anges enligt Github flavored markdown. Radbrytningar, rubriker, bilder, etc kan ge oförutsägbara resultat.', 'general_settings' => 'Allmänna inställningar', - 'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, tos, dashboard, privacy', - 'general_settings_help' => 'Default EULA and more', + 'general_settings_keywords' => 'företagets support, signatur, acceptans, e-postformat, användarnamn format, bilder, per sida, miniatyr, eula, tos, instrumentbräda, integritet', + 'general_settings_help' => 'Standard EULA och mer', 'generate_backup' => 'Skapa säkerhetskopia', 'header_color' => 'Sidhuvudets färg', 'info' => 'Med dessa inställningar kan du anpassa vissa delar av din installation.', @@ -75,13 +75,13 @@ return [ 'laravel' => 'Laravel Version', 'ldap' => 'LDAP', 'ldap_help' => 'LDAP/Active Directory', - 'ldap_client_tls_key' => 'LDAP Client TLS Key', - 'ldap_client_tls_cert' => 'LDAP Client-Side TLS Certificate', + 'ldap_client_tls_key' => 'LDAP-klient TLS-nyckel', + 'ldap_client_tls_cert' => 'LDAP Client-Side TLS-certifikat', 'ldap_enabled' => 'LDAP aktiverad', 'ldap_integration' => 'LDAP-integration', 'ldap_settings' => 'LDAP-inställningar', - 'ldap_client_tls_cert_help' => 'Client-Side TLS Certificate and Key for LDAP connections are usually only useful in Google Workspace configurations with "Secure LDAP." Both are required.', - 'ldap_client_tls_key' => 'LDAP Client-Side TLS key', + 'ldap_client_tls_cert_help' => 'TLS-certifikat och nyckel för LDAP-anslutningar från klientsidan är vanligtvis bara användbara i Google Workspace-konfigurationer med "Secure LDAP". Båda krävs.', + 'ldap_client_tls_key' => 'LDAP-klient TLS-nyckel', 'ldap_login_test_help' => 'Ange ett giltigt LDAP användarnamn och lösenord från basen DN du angav ovan för att testa om LDAP-inloggningen är korrekt konfigurerad. DU MÅSTE SPARA DINA UPPDATERADE LDAPINSTÄLLNINGAR FÖRST.', 'ldap_login_sync_help' => 'Detta testar bara att LDAP kan synkroniseras korrekt. Om din LDAP-autentiseringsfråga inte är korrekt kan användarna fortfarande inte logga in. DU MÅSTE SPARA DINA UPPDATERADE LDAPINSTÄLLNINGAR FÖRST.', 'ldap_server' => 'LDAP-server', @@ -110,17 +110,17 @@ return [ 'ldap_activated_flag_help' => 'Denna flagga används för att avgöra om en användare kan logga in på Snipe-IT och påverkar inte möjligheten att checka in eller ut objekt till dem.', 'ldap_emp_num' => 'LDAP anställd nummer', 'ldap_email' => 'LDAP-e-post', - 'ldap_test' => 'Test LDAP', - 'ldap_test_sync' => 'Test LDAP Synchronization', + 'ldap_test' => 'Testa LDAP', + 'ldap_test_sync' => 'Testa LDAP-synkronisering', 'license' => 'Mjukvarulicens', 'load_remote_text' => 'Fjärrskript', 'load_remote_help_text' => 'Denna Snipe-IT-installation kan ladda skript från omvärlden.', - 'login' => 'Login Attempts', - 'login_attempt' => 'Login Attempt', - 'login_ip' => 'IP Address', - 'login_success' => 'Success?', + 'login' => 'Inloggningsförsök', + 'login_attempt' => 'Inloggningsförsök', + 'login_ip' => 'IP-adress', + 'login_success' => 'Lyckades?', 'login_user_agent' => 'User Agent', - 'login_help' => 'List of attempted logins', + 'login_help' => 'Lista över försök att logga in', 'login_note' => 'Inloggning Obs', 'login_note_help' => 'Lägg till valfri text på din inloggningsskärm, till exempel för att hjälpa personer som har hittat en borttappad eller stulen enhet. Detta fält accepterar GitHub Flavored Markdown', 'login_remote_user_text' => 'Alternativ för fjärrinloggning', @@ -144,16 +144,16 @@ return [ 'php_info' => 'PHP Info', 'php_overview' => 'PHP', 'php_overview_keywords' => 'phpinfo, system, info', - 'php_overview_help' => 'PHP System info', + 'php_overview_help' => 'PHP-system info', 'php_gd_info' => 'Du måste installera php-gd för att visa QR-koder, se installationsanvisningarna.', 'php_gd_warning' => 'PHP Image Processing och GD plugin är INTE installerat.', 'pwd_secure_complexity' => 'Lösenordspolicy', 'pwd_secure_complexity_help' => 'Välj vilka kriterier lösenordet måste uppfylla.', - 'pwd_secure_complexity_disallow_same_pwd_as_user_fields' => 'Password cannot be the same as first name, last name, email, or username', - 'pwd_secure_complexity_letters' => 'Require at least one letter', - 'pwd_secure_complexity_numbers' => 'Require at least one number', - 'pwd_secure_complexity_symbols' => 'Require at least one symbol', - 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase', + 'pwd_secure_complexity_disallow_same_pwd_as_user_fields' => 'Lösenordet kan inte vara samma som förnamn, efternamn, e-post eller användarnamn', + 'pwd_secure_complexity_letters' => 'Kräv minst en bokstav', + 'pwd_secure_complexity_numbers' => 'Kräv minst ett nummer', + 'pwd_secure_complexity_symbols' => 'Kräv minst en symbol', + 'pwd_secure_complexity_case_diff' => 'Kräv minst ett versaler och ett gemener', 'pwd_secure_min' => 'Minsta antal tecken för lösenord', 'pwd_secure_min_help' => 'Lägsta tillåtna värde är 8', 'pwd_secure_uncommon' => 'Förbjud vanliga lösenord', @@ -161,8 +161,8 @@ return [ 'qr_help' => 'Aktivera QR-koder först för att ställa in detta', 'qr_text' => 'QR Kod Text', 'saml' => 'SAML', - 'saml_title' => 'Update SAML settings', - 'saml_help' => 'SAML settings', + 'saml_title' => 'Uppdatera SAML-inställningar', + 'saml_help' => 'SAML inställningar', 'saml_enabled' => 'SAML aktiverat', 'saml_integration' => 'SAML Integration', 'saml_sp_entityid' => 'Entitet ID', @@ -182,7 +182,7 @@ return [ 'saml_slo_help' => 'Detta kommer att göra att användaren först omdirigeras till idP vid utloggning. Lämna omarkerad om idP inte stöder SP-initierad SAML SLO på rätt sätt.', 'saml_custom_settings' => 'SAML egna inställningar', 'saml_custom_settings_help' => 'Du kan ange ytterligare inställningar till onelogin/php-saml-biblioteket. Använd på egen risk.', - 'saml_download' => 'Download Metadata', + 'saml_download' => 'Hämta Metadata', 'setting' => 'Miljö', 'settings' => 'inställningar', 'show_alerts_in_menu' => 'Visa varningar i toppmenyn', @@ -194,13 +194,13 @@ return [ 'show_images_in_email_help' => 'Avmarkera den här rutan om din Snipe-IT-installation ligger bakom ett VPN eller ett stängt nätverk och användare utanför nätverket kan inte ladda bilder som visas från den här installationen i sina e-postmeddelanden.', 'site_name' => 'Sidnamn', 'slack' => 'Slack', - 'slack_title' => 'Update Slack Settings', - 'slack_help' => 'Slack settings', + 'slack_title' => 'Uppdatera Slack inställningar', + 'slack_help' => 'Slack inställningar', 'slack_botname' => 'Slack Botname', 'slack_channel' => 'Slack Channel', 'slack_endpoint' => 'Slack Endpoint', 'slack_integration' => 'Slack Settings', - 'slack_integration_help' => 'Slack integration is optional, however the endpoint and channel are required if you wish to use it. To configure Slack integration, you must first create an incoming webhook on your Slack account. Click on the Test Slack Integration button to confirm your settings are correct before saving. ', + 'slack_integration_help' => 'Slack intgration är valfri, men användarevilkor och kanal krävs om du vill använda den. För att konfigurera Slack integration måste du först skapa en inkommande webhook på ditt slack-konto. ', 'slack_integration_help_button' => 'När du har sparat din Slack-information visas en testknapp.', 'slack_test_help' => 'Testa om din Slack-integration är konfigurerad korrekt. DU MÅSTE SPARA DINA UPPDATERADE SLACK-INSTÄLLNINGAR FÖRST.', 'snipe_version' => 'Snipe-IT-versionen', @@ -212,9 +212,9 @@ return [ 'update' => 'Uppdatera inställningarna', 'value' => 'Värde', 'brand' => 'branding', - 'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css', - 'brand_help' => 'Logo, Site Name', - 'web_brand' => 'Web Branding Type', + 'brand_keywords' => 'sidfot, logotyp, tryck, tema, hud, rubrik, färger, färg, css', + 'brand_help' => 'Logo, webbplatsens namn', + 'web_brand' => 'Webb varumärke Typ', 'about_settings_title' => 'Om inställningar', 'about_settings_text' => 'Med dessa inställningar kan du anpassa vissa aspekter av din installation.', 'labels_per_page' => 'Etiketter per sida', @@ -225,7 +225,7 @@ return [ 'privacy_policy' => 'Integritetspolicy', 'privacy_policy_link_help' => 'Om en URL ingår här kommer en länk till din integritetspolicy att finnas med i appfoten och i alla e-postmeddelanden som systemet skickar ut, i enlighet med GDPR. ', 'purge' => 'Rensa borttagna poster', - 'purge_deleted' => 'Purge Deleted ', + 'purge_deleted' => 'Rensa borttagna ', 'labels_display_bgutter' => 'Etikett botten takrännan', 'labels_display_sgutter' => 'Etikett sidotång', 'labels_fontsize' => 'Etikettstorlek', @@ -270,52 +270,52 @@ return [ 'unique_serial' => 'Unika serienummer', 'unique_serial_help_text' => 'Genom att kryssa denna ruta skapas ett krav på unikt serienummer för varje enhet', 'zerofill_count' => 'Längd på tillgångstaggar, inklusive zerofill', - 'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.', - 'oauth_title' => 'OAuth API Settings', + 'username_format_help' => 'Denna inställning kommer endast att användas av importprocessen om ett användarnamn inte finns och vi måste generera ett användarnamn åt dig.', + 'oauth_title' => 'OAuth API-inställningar', 'oauth' => 'OAuth', - 'oauth_help' => 'Oauth Endpoint Settings', - 'asset_tag_title' => 'Update Asset Tag Settings', - 'barcode_title' => 'Update Barcode Settings', - 'barcodes' => 'Barcodes', - 'barcodes_help_overview' => 'Barcode & QR settings', - 'barcodes_help' => 'This will attempt to delete cached barcodes. This would typically only be used if your barcode settings have changed, or if your Snipe-IT URL has changed. Barcodes will be re-generated when accessed next.', - 'barcodes_spinner' => 'Attempting to delete files...', - 'barcode_delete_cache' => 'Delete Barcode Cache', - 'branding_title' => 'Update Branding Settings', - 'general_title' => 'Update General Settings', - 'mail_test' => 'Send Test', - 'mail_test_help' => 'This will attempt to send a test mail to :replyto.', - 'filter_by_keyword' => 'Filter by setting keyword', - 'security' => 'Security', - 'security_title' => 'Update Security Settings', - 'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication', - 'security_help' => 'Two-factor, Password Restrictions', - 'groups_keywords' => 'permissions, permission groups, authorization', - 'groups_help' => 'Account permission groups', - 'localization' => 'Localization', - 'localization_title' => 'Update Localization Settings', - 'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation', - 'localization_help' => 'Language, date display', - 'notifications' => 'Notifications', - 'notifications_help' => 'Email alerts, audit settings', - 'asset_tags_help' => 'Incrementing and prefixes', - 'labels' => 'Labels', - 'labels_title' => 'Update Label Settings', - 'labels_help' => 'Label sizes & settings', - 'purge' => 'Purge', - 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', - 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', + 'oauth_help' => 'Oauth användarvillkor inställningar', + 'asset_tag_title' => 'Uppdatera stöldmärknings inställningar', + 'barcode_title' => 'Uppdatera streckkodsinställningar', + 'barcodes' => 'Streckkoder', + 'barcodes_help_overview' => 'Streckkod & QR-inställningar', + 'barcodes_help' => 'Detta kommer att försöka ta bort cachade streckkoder. Detta skulle normalt bara användas om dina streckkodsinställningar har ändrats, eller om din Snipe-IT-URL har ändrats. Streckkoder kommer att återskapas när de nås härnäst.', + 'barcodes_spinner' => 'Försöker ta bort filer...', + 'barcode_delete_cache' => 'Ta bort streckkodscache', + 'branding_title' => 'Uppdatera varumärkesinställningar', + 'general_title' => 'Uppdatera allmänna inställningar', + 'mail_test' => 'Skicka Test', + 'mail_test_help' => 'Detta kommer att försöka skicka ett testmail till :replyto.', + 'filter_by_keyword' => 'Filtrera efter nyckelord', + 'security' => 'Säkerhet', + 'security_title' => 'Uppdatera säkerhetsinställningar', + 'security_keywords' => 'lösenord, lösenord, krav, två faktorer, tvåfaktor, vanliga lösenord, fjärrinloggning, utloggning, autentisering', + 'security_help' => 'Tvåfaktor, lösenordsbegränsningar', + 'groups_keywords' => 'behörigheter, behörighetsgrupper, auktorisation', + 'groups_help' => 'Behörighetsgrupper för konto', + 'localization' => 'Lokalisering', + 'localization_title' => 'Uppdatera Lokaliseringsinställningar', + 'localization_keywords' => 'lokalisering, valuta, lokal, lokal, tidszon, tidszon, internationell, internatinalisering, språk, språk, översättning', + 'localization_help' => 'Språk, datumvisning', + 'notifications' => 'Aviseringar', + 'notifications_help' => 'E-post varningar, inventeringsnställningar', + 'asset_tags_help' => 'Ökande och prefix', + 'labels' => 'Etiketter', + 'labels_title' => 'Uppdatera etikettinställningar', + 'labels_help' => 'Etikettstorlekar & inställningar', + 'purge' => 'Rensa', + 'purge_keywords' => 'radera permanent', + 'purge_help' => 'Rensa borttagna poster', + 'ldap_extension_warning' => 'Det ser inte ut som LDAP-tillägget är installerat eller aktiverat på denna server. Du kan fortfarande spara dina inställningar, men du måste aktivera LDAP-tillägget för PHP innan LDAP-synkronisering eller inloggning fungerar.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', - 'create_admin_user' => 'Create a User ::', - 'create_admin_success' => 'Success! Your admin user has been added!', - 'create_admin_redirect' => 'Click here to go to your app login!', - 'setup_migrations' => 'Database Migrations ::', - 'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!', - 'setup_successful_migrations' => 'Your database tables have been created', - 'setup_migration_output' => 'Migration output:', - 'setup_migration_create_user' => 'Next: Create User', - 'ldap_settings_link' => 'LDAP Settings Page', - 'slack_test' => 'Test Integration', + 'employee_number' => 'Anställningsnummer', + 'create_admin_user' => 'Skapa användare ::', + 'create_admin_success' => 'Klart! Din administratörsanvändare har lagts till!', + 'create_admin_redirect' => 'Klicka här för att gå till din app-inloggning!', + 'setup_migrations' => 'Databasens migreringar ::', + 'setup_no_migrations' => 'Det fanns inget att migrera. Dina databastabeller var redan uppsatta!', + 'setup_successful_migrations' => 'Dina databastabeller har skapats', + 'setup_migration_output' => 'Migrering utgång:', + 'setup_migration_create_user' => 'Nästa: Skapa användare', + 'ldap_settings_link' => 'Sida för LDAP-inställningar', + 'slack_test' => 'Testa Integration', ]; diff --git a/resources/lang/sv-SE/admin/settings/message.php b/resources/lang/sv-SE/admin/settings/message.php index 5ba416130a..cf809a90eb 100644 --- a/resources/lang/sv-SE/admin/settings/message.php +++ b/resources/lang/sv-SE/admin/settings/message.php @@ -11,8 +11,8 @@ return [ 'file_deleted' => 'Säkerhetsfilen har tagits bort.', 'generated' => 'En ny säkerhetskopieringsfil skapades med framgång.', 'file_not_found' => 'Den säkerhetskopieringsfilen kunde inte hittas på servern.', - 'restore_warning' => 'Yes, restore it. I acknowledge that this will overwrite any existing data currently in the database. This will also log out all of your existing users (including you).', - 'restore_confirm' => 'Are you sure you wish to restore your database from :filename?' + 'restore_warning' => 'Ja, återställ den. Jag är medveten att detta kommer att skriva över befintliga data som finns i databasen. Detta kommer också att logga ut alla dina befintliga användare (inklusive dig).', + 'restore_confirm' => 'Är du säker på att du vill återställa din databas från :filnamn?' ], 'purge' => [ 'error' => 'Ett fel har uppstått vid spolning.', @@ -20,24 +20,24 @@ return [ 'success' => 'Raderade poster som rensats framgångsrikt.', ], 'mail' => [ - 'sending' => 'Sending Test Email...', - 'success' => 'Mail sent!', - 'error' => 'Mail could not be sent.', - 'additional' => 'No additional error message provided. Check your mail settings and your app log.' + 'sending' => 'Skicka Testmeddelande...', + 'success' => 'E-post skickat!', + 'error' => 'Mailet kunde inte skickas.', + 'additional' => 'Inga ytterligare felmeddelanden tillhandahålls. Kontrollera dina e-postinställningar och din app-logg.' ], 'ldap' => [ - 'testing' => 'Testing LDAP Connection, Binding & Query ...', - '500' => '500 Server Error. Please check your server logs for more information.', - 'error' => 'Something went wrong :(', - 'sync_success' => 'A sample of 10 users returned from the LDAP server based on your settings:', - 'testing_authentication' => 'Testing LDAP Authentication...', - 'authentication_success' => 'User authenticated against LDAP successfully!' + 'testing' => 'Testar LDAP-anslutning, bindning och fråga ...', + '500' => '500 Serverfel. Kontrollera dina serverloggar för mer information.', + 'error' => 'Något gick fel :(', + 'sync_success' => 'Ett urval av 10 användare som returneras från LDAP-servern baserat på dina inställningar:', + 'testing_authentication' => 'Testar LDAP-autentisering...', + 'authentication_success' => 'Användaren är autentiserad mot LDAP framgångsrikt!' ], 'slack' => [ - 'sending' => 'Sending Slack test message...', - 'success_pt1' => 'Success! Check the ', - 'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.', - '500' => '500 Server Error.', - 'error' => 'Something went wrong.', + 'sending' => 'Skickar Slack testmeddelande...', + 'success_pt1' => 'Klart! Kontrollera ', + 'success_pt2' => ' kanal för ditt testmeddelande, och se till att klicka på SPARA nedan för att lagra dina inställningar.', + '500' => '500 Server fel.', + 'error' => 'Någonting gick fel.', ] ]; diff --git a/resources/lang/sv-SE/admin/statuslabels/message.php b/resources/lang/sv-SE/admin/statuslabels/message.php index dac31308aa..d37d77cedd 100644 --- a/resources/lang/sv-SE/admin/statuslabels/message.php +++ b/resources/lang/sv-SE/admin/statuslabels/message.php @@ -23,7 +23,7 @@ return [ 'help' => [ 'undeployable' => 'Dessa tillgångar kan inte tilldelas någon.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Dessa tillgångar kan checkas ut. När de har tilldelats, antar de en metastatus på Deployed.', 'archived' => 'Dessa tillgångar kan inte checkas ut och visas bara i arkiverad vy. Detta är användbart för att behålla information om tillgångar för budgetering / historiska ändamål men att hålla dem borta från den dagliga tillgångslistan.', 'pending' => 'Dessa tillgångar kan ännu inte tilldelas någon som ofta används för föremål som är ute för reparation, men förväntas återgå till omlopp.', ], diff --git a/resources/lang/sv-SE/admin/users/general.php b/resources/lang/sv-SE/admin/users/general.php index c06fcbaf37..1dc7311663 100644 --- a/resources/lang/sv-SE/admin/users/general.php +++ b/resources/lang/sv-SE/admin/users/general.php @@ -24,14 +24,14 @@ return [ 'two_factor_admin_optin_help' => 'Dina nuvarande administratörsinställningar tillåter selektiv tillämpning av tvåfaktorsautentisering. ', 'two_factor_enrolled' => '2FA-enhet inskriven', 'two_factor_active' => '2FA Aktiv', - 'user_deactivated' => 'User is de-activated', - 'activation_status_warning' => 'Do not change activation status', - 'group_memberships_helpblock' => 'Only superadmins may edit group memberships.', - 'superadmin_permission_warning' => 'Only superadmins may grant a user superadmin access.', - 'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.', - 'remove_group_memberships' => 'Remove Group Memberships', - 'warning_deletion' => 'WARNING:', - 'warning_deletion_information' => 'You are about to delete the :count user(s) listed below. Super admin names are highlighted in red.', - 'update_user_asssets_status' => 'Update all assets for these users to this status', - 'checkin_user_properties' => 'Check in all properties associated with these users', + 'user_deactivated' => 'Användaren är inaktiverad', + 'activation_status_warning' => 'Ändra inte aktiveringsstatus', + 'group_memberships_helpblock' => 'Endast superadministratörer kan redigera gruppmedlemskap.', + 'superadmin_permission_warning' => 'Endast superadministratörer kan ge en användare superadmin åtkomst.', + 'admin_permission_warning' => 'Endast användare med administratörsrättigheter eller högre kan ge administratörsbehörighet.', + 'remove_group_memberships' => 'Ta bort gruppmedlemskap', + 'warning_deletion' => 'VARNING:', + 'warning_deletion_information' => 'Du håller på att ta bort :count användare som anges nedan. Super admin namn markeras med rött.', + 'update_user_asssets_status' => 'Uppdatera alla tillgångar för dessa användare till denna status', + 'checkin_user_properties' => 'Kolla in alla egenskaper som är associerade med dessa användare', ]; diff --git a/resources/lang/sv-SE/admin/users/message.php b/resources/lang/sv-SE/admin/users/message.php index cd3b6f9c24..4fc1799579 100644 --- a/resources/lang/sv-SE/admin/users/message.php +++ b/resources/lang/sv-SE/admin/users/message.php @@ -13,7 +13,7 @@ return array( 'user_deleted_warning' => 'Den här användaren har raderats. Du måste återställa den här användaren för att redigera dem eller tilldela dem nya tillgångar.', 'ldap_not_configured' => 'LDAP-integrationen har inte konfigurerats för den här installationen.', 'password_resets_sent' => 'De valda användare som är aktiverade och har en giltig e-postadress har skickats en länk för att återställa lösenordet.', - 'password_reset_sent' => 'A password reset link has been sent to :email!', + 'password_reset_sent' => 'En återställningslänk för lösenord har skickats till :email!', 'success' => array( diff --git a/resources/lang/sv-SE/general.php b/resources/lang/sv-SE/general.php index 2c762c3427..5bce2a4957 100644 --- a/resources/lang/sv-SE/general.php +++ b/resources/lang/sv-SE/general.php @@ -19,10 +19,10 @@ 'asset' => 'Tillgång', 'asset_report' => 'Rapport om tillgångar', 'asset_tag' => 'Märkning av tillgångar', - 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', - 'accept_assets' => 'Accept Assets :name', - 'accept_assets_menu' => 'Accept Assets', + 'asset_tags' => 'Stöldnummer', + 'assets_available' => 'Tillgängliga tillgångar', + 'accept_assets' => 'Acceptera tillgångar: namn', + 'accept_assets_menu' => 'Accepterade tillgångar', 'audit' => 'Inventera', 'audit_report' => 'Inventeringsloggar', 'assets' => 'Tillgångar', @@ -33,10 +33,10 @@ 'bulkaudit' => 'Bulk Inventering', 'bulkaudit_status' => 'Inventeringsstatus', 'bulk_checkout' => 'Bulk Checkout', - 'bulk_edit' => 'Bulk Edit', - 'bulk_delete' => 'Bulk Delete', - 'bulk_actions' => 'Bulk Actions', - 'bulk_checkin_delete' => 'Bulk Checkin & Delete', + 'bulk_edit' => 'Massredigera', + 'bulk_delete' => 'Massradering', + 'bulk_actions' => 'Massåtgärder', + 'bulk_checkin_delete' => 'Massändra & radera', 'bystatus' => 'efter status', 'cancel' => 'Avbryt', 'categories' => 'Kategorier', @@ -69,8 +69,8 @@ 'updated_at' => 'Uppdaterad på', 'currency' => 'SEK', // this is deprecated 'current' => 'Nuvarande', - 'current_password' => 'Current Password', - 'customize_report' => 'Customize Report', + 'current_password' => 'Nuvarande lösenord', + 'customize_report' => 'Anpassad tillgångsrapport', 'custom_report' => 'Anpassad tillgångsrapport', 'dashboard' => 'Översikt', 'days' => 'dagar', @@ -82,12 +82,12 @@ 'delete_confirm' => 'Är du säker på att du vill radera: föremål?', 'deleted' => 'Raderad', 'delete_seats' => 'Borttagna platser', - 'deletion_failed' => 'Deletion failed', + 'deletion_failed' => 'Borttagning misslyckades', 'departments' => 'Avdelningar', 'department' => 'Avdelning', 'deployed' => 'Används', 'depreciation' => 'Avskrivning', - 'depreciations' => 'Depreciations', + 'depreciations' => 'Värdeminskning', 'depreciation_report' => 'Avskrivningsrapport', 'details' => 'Information', 'download' => 'Ladda ner', @@ -96,8 +96,9 @@ 'eol' => 'EOL', 'email_domain' => 'E-postdomän', 'email_format' => 'E-postformat', + 'employee_number' => 'Anställningsnummer', 'email_domain_help' => 'Detta används för att generera e-postadresser vid import', - 'error' => 'Error', + 'error' => 'Fel', 'filastname_format' => 'Första Initiala Efternamn (jsmith@example.com)', 'firstname_lastname_format' => 'Förnamn Efternamn (jane.smith@example.com)', 'firstname_lastname_underscore_format' => 'Förnamn Efternamn (jane.smith@example.com)', @@ -114,33 +115,33 @@ 'file_name' => 'Fil', 'file_type' => 'Filtyp', 'file_uploads' => 'Filuppladdning', - 'file_upload' => 'File Upload', + 'file_upload' => 'Ladda upp fil', 'generate' => 'Generera', - 'generate_labels' => 'Generate Labels', + 'generate_labels' => 'Generera etiketter', 'github_markdown' => 'Detta fält tillåter Github smaksatt markdown.', 'groups' => 'Grupper', 'gravatar_email' => 'Gravatar e-postadress', - 'gravatar_url' => 'Change your avatar at Gravatar.com.', + 'gravatar_url' => 'Ändra din avatar på Gravatar.com.', 'history' => 'Historik', 'history_for' => 'Historik för', 'id' => 'ID', 'image' => 'Bild', 'image_delete' => 'Ta bort Bild', 'image_upload' => 'Ladda upp Bild', - 'filetypes_accepted_help' => 'Accepted filetype is :types. Max upload size allowed is :size.|Accepted filetypes are :types. Max upload size allowed is :size.', - 'filetypes_size_help' => 'Max upload size allowed is :size.', + 'filetypes_accepted_help' => 'Accepterad filtyp är :types. Max tillåten uppladdningsstorlek är :size. Accepterade filtyper är :types. Max tillåten uppladdningsstorlek är :size.', + 'filetypes_size_help' => 'Max tillåten uppladdningsstorlek är :size.', 'image_filetypes_help' => 'Godkända filtyper är jpg, webp, png, gif och svg. Max tillåten uppladdningsstorlek är :size.', 'import' => 'Importera', 'importing' => 'Importerar', - 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', + 'importing_help' => 'Du kan importera tillgångar, tillbehör, licenser, komponenter, förbrukningsvaror och användare via CSV-fil.

CSV bör vara komma-avgränsad och formaterad med rubriker som matchar de i ta prov CSVs i dokumentationen.', 'import-history' => 'Importera historik', 'asset_maintenance' => 'Underhåll av tillgångar', 'asset_maintenance_report' => 'Asset Maintenance Report', 'asset_maintenances' => 'Asset Maintenances', 'item' => 'Artikel', - 'item_name' => 'Item Name', + 'item_name' => 'Objektnamn', 'insufficient_permissions' => 'Otillräckliga behörigheter!', - 'kits' => 'Predefined Kits', + 'kits' => 'Fördefinierade paket', 'language' => 'Språk', 'last' => 'Sista', 'last_login' => 'Senaste inloggning', @@ -150,26 +151,26 @@ 'licenses_available' => 'tillgängliga licenser', 'licenses' => 'Licenser', 'list_all' => 'Lista Alla', - 'loading' => 'Loading... please wait....', - 'lock_passwords' => 'This field value will not be saved in a demo installation.', + 'loading' => 'Läser in... var god vänta....', + 'lock_passwords' => 'Detta fältvärde kommer inte att sparas i en demoinstallation.', 'feature_disabled' => 'Den här funktionen har inaktiverats för demoinstallationen.', 'location' => 'Plats', 'locations' => 'Platser', - 'logo_size' => 'Square logos look best with Logo + Text. Logo maximum display size is 50px high x 500px wide. ', + 'logo_size' => 'Fyrkantiga logotyper ser bäst ut med Logo + Text. Logotypen maximal visningsstorlek är 50px hög x 500px bred. ', 'logout' => 'Logga ut', 'lookup_by_tag' => 'Lookup med tillgångslabel', 'maintenances' => 'Underhåll', - 'manage_api_keys' => 'Manage API Keys', + 'manage_api_keys' => 'Hantera API-nycklar', 'manufacturer' => 'Tillverkare', 'manufacturers' => 'Tillverkare', 'markdown' => 'Detta fält tillåter Github smaksatt markdown.', 'min_amt' => 'Min. ANTAL', - 'min_amt_help' => 'Minimum number of items that should be available before an alert gets triggered. Leave Min. QTY blank if you do not want to receive alerts for low inventory.', + 'min_amt_help' => 'Minsta antal objekt som ska vara tillgängliga innan en varning utlöses. Lämna Min. QTY tomt om du inte vill få varningar för lågt lager.', 'model_no' => 'modell nr.', 'months' => 'månader', 'moreinfo' => 'Mer information', 'name' => 'Namn', - 'new_password' => 'New Password', + 'new_password' => 'Nytt lösenord', 'next' => 'Nästa', 'next_audit_date' => 'Nästa inventeringsdatum', 'last_audit' => 'Senaste inventeringen', @@ -191,23 +192,25 @@ 'purchase_date' => 'Inköpsdatum', 'qty' => 'Antal', 'quantity' => 'Antal', - 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quantity_minimum' => 'Du har :count objekt under eller nästan under minsta kvantitet', + 'quickscan_checkin' => 'Snabb incheckning', + 'quickscan_checkin_status' => 'Incheckningsstatus', 'ready_to_deploy' => 'Redo att distribuera', 'recent_activity' => 'Senaste aktivitet', - 'remaining' => 'Remaining', + 'remaining' => 'Återstående', 'remove_company' => 'Ta bort företagsföreningen', 'reports' => 'Rapporter', 'restored' => 'återställd', - 'restore' => 'Restore', - 'requestable_models' => 'Requestable Models', + 'restore' => 'Återställ', + 'requestable_models' => 'Begärbara modeller', 'requested' => 'Begärda', - 'requested_date' => 'Requested Date', - 'requested_assets' => 'Requested Assets', - 'requested_assets_menu' => 'Requested Assets', + 'requested_date' => 'Begärt datum', + 'requested_assets' => 'Begärda tillgångar', + 'requested_assets_menu' => 'Begärda tillgångar', 'request_canceled' => 'Förfrågan annulleras', 'save' => 'Spara', 'select' => 'Välj', - 'select_all' => 'Select All', + 'select_all' => 'Markera alla', 'search' => 'Sök', 'select_category' => 'Välj en kategori', 'select_department' => 'Välj en avdelning', @@ -227,8 +230,8 @@ 'sign_in' => 'Logga in', 'signature' => 'Signatur', 'skin' => 'Skal', - 'slack_msg_note' => 'A slack message will be sent', - 'slack_test_msg' => 'Oh hai! Looks like your Slack integration with Snipe-IT is working!', + 'slack_msg_note' => 'Ett slack meddelande kommer att skickas', + 'slack_test_msg' => 'Åh hai! Ser ut som din Slack integration med Snipe-IT fungerar!', 'some_features_disabled' => 'DEMO MODE: Vissa funktioner är inaktiverade för den här installationen.', 'site_name' => 'Sidnamn', 'state' => 'stat', @@ -239,7 +242,7 @@ 'sure_to_delete' => 'Är du säker på att du vill radera', 'submit' => 'Lämna', 'target' => 'Mål', - 'toggle_navigation' => 'Toogle Navigation', + 'toggle_navigation' => 'Visa/dölj navigering', 'time_and_date_display' => 'Tid och datumvisning', 'total_assets' => 'totala tillgångar', 'total_licenses' => 'totala licenser', @@ -250,16 +253,16 @@ 'unknown_admin' => 'Okänd Admin', 'username_format' => 'Användarnamn Format', 'update' => 'Uppdatering', - 'upload_filetypes_help' => 'Allowed filetypes are png, gif, jpg, jpeg, doc, docx, pdf, xls, xlsx, txt, lic, xml, zip, rtf and rar. Max upload size allowed is :size.', + 'upload_filetypes_help' => 'Tillåtna filtyper är png, gif, jpg, jpeg, doc, docx, pdf, xls, txt, lic, zip och rar. Max tillåten uppladdningsstorlek är: storlek.', 'uploaded' => 'Uppladdad', 'user' => 'Användare', 'accepted' => 'accepterad', 'declined' => 'tackade nej', 'unaccepted_asset_report' => 'Oaccepterade tillgångar', 'users' => 'Användare', - 'viewall' => 'View All', + 'viewall' => 'Visa alla', 'viewassets' => 'Visa Tilldelade tillgångar', - 'viewassetsfor' => 'View Assets for :name', + 'viewassetsfor' => 'Visa tillgångar för', 'website' => 'Webbsida', 'welcome' => 'Välkommen, namn', 'years' => 'år', @@ -267,84 +270,84 @@ 'zip' => 'Blixtlås', 'noimage' => 'Ingen bild uppladdad eller bild hittades inte.', 'token_expired' => 'Din formulärperiod har löpt ut. Var god försök igen.', - 'login_enabled' => 'Login Enabled', - 'audit_due' => 'Due for Audit', - 'audit_overdue' => 'Overdue for Audit', - 'accept' => 'Accept :asset', - 'i_accept' => 'I accept', - 'i_decline' => 'I decline', - 'accept_decline' => 'Accept/Decline', - 'sign_tos' => 'Sign below to indicate that you agree to the terms of service:', - 'clear_signature' => 'Clear Signature', - 'show_help' => 'Show help', - 'hide_help' => 'Hide help', - 'view_all' => 'view all', - 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', - 'do_not_change' => 'Do Not Change', - 'bug_report' => 'Report a Bug', - 'user_manual' => 'User\'s Manual', - 'setup_step_1' => 'Step 1', - 'setup_step_2' => 'Step 2', - 'setup_step_3' => 'Step 3', - 'setup_step_4' => 'Step 4', - 'setup_config_check' => 'Configuration Check', - 'setup_create_database' => 'Create Database Tables', - 'setup_create_admin' => 'Create Admin User', - 'setup_done' => 'Finished!', - 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', - 'checked_out_to' => 'Checked out to', - 'fields' => 'Fields', - 'last_checkout' => 'Last Checkout', - 'due_to_checkin' => 'The following :count items are due to be checked in soon:', - 'expected_checkin' => 'Expected Checkin', - 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', - 'changed' => 'Changed', - 'to' => 'To', - 'report_fields_info' => '

Select the fields you would like to include in your custom report, and click Generate. The file (custom-asset-report-YYYY-mm-dd.csv) will download automatically, and you can open it in Excel.

-

If you would like to export only certain assets, use the options below to fine-tune your results.

', - 'range' => 'Range', - 'bom_remark' => 'Add a BOM (byte-order mark) to this CSV', - 'improvements' => 'Improvements', + 'login_enabled' => 'Inloggning aktiverad', + 'audit_due' => 'Nästa inventering', + 'audit_overdue' => 'Förfallen inventering', + 'accept' => 'Acceptera :asset', + 'i_accept' => 'Jag accepterar', + 'i_decline' => 'Jag nekar', + 'accept_decline' => 'Acceptera/Neka', + 'sign_tos' => 'Skriv under nedan för att ange att du godkänner användarvillkoren:', + 'clear_signature' => 'Rensa signatur', + 'show_help' => 'Visa hjälp', + 'hide_help' => 'Dölj hjälp', + 'view_all' => 'visa alla', + 'hide_deleted' => 'Visa Borttagna', + 'email' => 'E-post', + 'do_not_change' => 'Ändra inte', + 'bug_report' => 'Rapportera ett fel', + 'user_manual' => 'Användarmanual', + 'setup_step_1' => 'Steg 1', + 'setup_step_2' => 'Steg 2', + 'setup_step_3' => 'Steg 3', + 'setup_step_4' => 'Steg 4', + 'setup_config_check' => 'Konfigurationskontroll', + 'setup_create_database' => 'Skapa databastabeller', + 'setup_create_admin' => 'Skapa admin-användare', + 'setup_done' => 'Slutförd!', + 'bulk_edit_about_to' => 'Du håller på att redigera följande: ', + 'checked_out' => 'Låna ut', + 'checked_out_to' => 'Låna ut till', + 'fields' => 'Fält', + 'last_checkout' => 'Senaste utlånad', + 'due_to_checkin' => 'Följande :count objekt ska lämnas in snart:', + 'expected_checkin' => 'Förväntad inlämningsdatum', + 'reminder_checked_out_items' => 'Detta är en påminnelse om för objekt som för närvarande är utlånad till dig. Om du tycker att denna lista är felaktig (något saknas, eller något visas här som du tror att du aldrig fått), vänligen maila :reply_to_name på :reply_to_adress.', + 'changed' => 'Ändrad', + 'to' => 'Till', + 'report_fields_info' => '

Välj de fält du vill inkludera i din anpassade rapport och klicka på Generera. Filen (custom-asset-report-YYY-mm-dd.csv) laddas ner automatiskt, och du kan öppna den i Excel.

+

Om du vill exportera endast vissa tillgångar, använd alternativen nedan för att finjustera dina resultat.

', + 'range' => 'Intervall', + 'bom_remark' => 'Lägg till en BOM (byte-order mark) till denna CSV', + 'improvements' => 'Förbättringar', 'information' => 'Information', - 'permissions' => 'Permissions', - 'managed_ldap' => '(Managed via LDAP)', - 'export' => 'Export', + 'permissions' => 'Behörigheter', + 'managed_ldap' => '(Hanteras via LDAP)', + 'export' => 'Exportera', 'ldap_sync' => 'LDAP Sync', - 'ldap_user_sync' => 'LDAP User Sync', - 'synchronize' => 'Synchronize', - 'sync_results' => 'Synchronization Results', - 'license_serial' => 'Serial/Product Key', - 'invalid_category' => 'Invalid category', - 'dashboard_info' => 'This is your dashboard. There are many like it, but this one is yours.', - '60_percent_warning' => '60% Complete (warning)', - 'dashboard_empty' => 'It looks like you haven not added anything yet, so we do not have anything awesome to display. Get started by adding some assets, accessories, consumables, or licenses now!', - 'new_asset' => 'New Asset', - 'new_license' => 'New License', - 'new_accessory' => 'New Accessory', - 'new_consumable' => 'New Consumable', - 'collapse' => 'Collapse', - 'assigned' => 'Assigned', - 'asset_count' => 'Asset Count', - 'accessories_count' => 'Accessories Count', - 'consumables_count' => 'Consumables Count', - 'components_count' => 'Components Count', - 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error:', - 'notification_error_hint' => 'Please check the form below for errors', - 'notification_success' => 'Success:', - 'notification_warning' => 'Warning:', + 'ldap_user_sync' => 'LDAP användarsynkronisering', + 'synchronize' => 'Synkronisera', + 'sync_results' => 'Synkronisering Resultat', + 'license_serial' => 'Seriell/produktnyckel', + 'invalid_category' => 'Ogiltig kategori', + 'dashboard_info' => 'Detta är din instrumentpanel. Det finns många som det, men den här är din.', + '60_percent_warning' => '60% Slutför (varning)', + 'dashboard_empty' => 'Det ser ut som du inte lagt till något ännu, så vi har inte något häftigt att visa. Kom igång genom att lägga till några tillgångar, tillbehör, förbrukningsartiklar eller licenser nu!', + 'new_asset' => 'Ny tillgång', + 'new_license' => 'Ny licens', + 'new_accessory' => 'Nytt tillbehör', + 'new_consumable' => 'Ny förbrukningsvara', + 'collapse' => 'Fäll ihop', + 'assigned' => 'Tilldelat', + 'asset_count' => 'Antal tillgångar', + 'accessories_count' => 'Antal tillbehör', + 'consumables_count' => 'Antal förbrukningsvaror', + 'components_count' => 'Antal komponenter', + 'licenses_count' => 'Antal licenser', + 'notification_error' => 'Fel:', + 'notification_error_hint' => 'Vänligen kontrollera formuläret nedan för fel', + 'notification_success' => 'Lyckades:', + 'notification_warning' => 'Varning:', 'notification_info' => 'Info:', - 'asset_information' => 'Asset Information', - 'model_name' => 'Model Name:', - 'asset_name' => 'Asset Name:', - 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', - 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', - 'clone_item' => 'Clone Item', - 'checkout_tooltip' => 'Check this item out', - 'checkin_tooltip' => 'Check this item in', - 'checkout_user_tooltip' => 'Check this item out to a user', + 'asset_information' => 'Information om tillgång', + 'model_name' => 'Modellnamn:', + 'asset_name' => 'Tillgångsnamn:', + 'consumable_information' => 'Förbrukningsinformation:', + 'consumable_name' => 'Namn på förbrukningsvara:', + 'accessory_information' => 'Information om tillgång:', + 'accessory_name' => 'Tillbehörsnamn:', + 'clone_item' => 'Klona objekt', + 'checkout_tooltip' => 'Låna utdetta objekt', + 'checkin_tooltip' => 'Checka in detta objekt', + 'checkout_user_tooltip' => 'Låna utdetta objekt till en användare', ]; diff --git a/resources/lang/sv-SE/validation.php b/resources/lang/sv-SE/validation.php index 04a02ce1c6..1dc28d113b 100644 --- a/resources/lang/sv-SE/validation.php +++ b/resources/lang/sv-SE/validation.php @@ -64,7 +64,7 @@ return [ 'string' => ':attribute måste vara minst :min tecken.', 'array' => ':attribute måste innehålla minst :min saker.', ], - 'starts_with' => 'The :attribute must start with one of the following: :values.', + 'starts_with' => ':attribute måste börja med något av följande: :values.', 'not_in' => 'Det valda :attribute är ogiltigt.', 'numeric' => ':attribute måste vara ett nummer.', 'present' => ':attribute fältet måste finnas.', @@ -90,7 +90,7 @@ return [ 'uploaded' => 'Uppladdningen av :attribute misslyckades.', 'url' => ':attribute Formatet är ogiltigt.', 'unique_undeleted' => ':attribute måste vara unikt.', - 'non_circular' => 'The :attribute must not create a circular reference.', + 'non_circular' => ':attribute får inte skapa en cirkulär referens.', /* |-------------------------------------------------------------------------- diff --git a/resources/lang/ta/admin/custom_fields/general.php b/resources/lang/ta/admin/custom_fields/general.php index c9877839ad..e054e15685 100644 --- a/resources/lang/ta/admin/custom_fields/general.php +++ b/resources/lang/ta/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/ta/admin/hardware/general.php b/resources/lang/ta/admin/hardware/general.php index 19c25848e5..23b8e099f2 100644 --- a/resources/lang/ta/admin/hardware/general.php +++ b/resources/lang/ta/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'காப்பகப்படுத்தியவை', 'asset' => 'சொத்து', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'சரிபார்ப்பு சொத்து', 'checkout' => 'சரிபார்ப்புச் சொத்து', 'clone' => 'குளோன் சொத்து', diff --git a/resources/lang/ta/admin/settings/general.php b/resources/lang/ta/admin/settings/general.php index 1163532b67..bfbb2d4052 100644 --- a/resources/lang/ta/admin/settings/general.php +++ b/resources/lang/ta/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'எச்சரிக்கைகள் இயக்கப்பட்டன', 'alert_interval' => 'அலாரங்கள் முற்றுப்பெறல் (நாட்களில்)', 'alert_inv_threshold' => 'சரக்கு அலர்ட் த்ரொல்ஹோல்', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'சொத்து ID கள்', 'audit_interval' => 'ஆடிட் இடைவேளை', - 'audit_interval_help' => 'நீங்கள் வழக்கமாக உங்கள் சொத்துக்களைத் தணிக்கை செய்ய வேண்டும் என்றால், மாதங்களில் இடைவெளியை உள்ளிடவும்.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'தணிக்கை எச்சரிக்கை புராணம்', 'audit_warning_days_help' => 'தணிக்கைக்கு ஆட்கள் தடையின்றி எத்தனை நாட்கள் முன்கூட்டியே நாம் எச்சரிக்க வேண்டும்?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'பார்கோடு அமைப்புகள்', 'confirm_purge' => 'தூய்மையை உறுதிப்படுத்துக', diff --git a/resources/lang/ta/general.php b/resources/lang/ta/general.php index 32a42b71aa..f73d7b5370 100644 --- a/resources/lang/ta/general.php +++ b/resources/lang/ta/general.php @@ -96,6 +96,7 @@ 'eol' => ', EOL', 'email_domain' => 'மின்னஞ்சல் டொமைன்', 'email_format' => 'மின்னஞ்சல் வடிவமைப்பு', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'இறக்குமதி செய்யும் போது மின்னஞ்சல் முகவரிகள் உருவாக்க இது பயன்படுகிறது', 'error' => 'Error', 'filastname_format' => 'முதல் தொடக்க கடைசி பெயர் (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'கொத்தமல்லி', 'quantity' => 'அளவு', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'வரிசைப்படுத்த தயாராக உள்ளது', 'recent_activity' => 'சமீபத்திய நடவடிக்கை', 'remaining' => 'Remaining', diff --git a/resources/lang/th/admin/custom_fields/general.php b/resources/lang/th/admin/custom_fields/general.php index 62405680ce..c06ae3b0ee 100644 --- a/resources/lang/th/admin/custom_fields/general.php +++ b/resources/lang/th/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/th/admin/hardware/general.php b/resources/lang/th/admin/hardware/general.php index a5fd979892..1a79b9f556 100644 --- a/resources/lang/th/admin/hardware/general.php +++ b/resources/lang/th/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'ถูกเก็บไว้', 'asset' => 'สินทรัพย์', 'bulk_checkout' => 'ตรวจสอบสินทรัพย์', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'เช็คอินสินทรัพย์', 'checkout' => 'ตรวจสอบสินทรัพย์', 'clone' => 'คัดลอกแบบสินทรัพย์', diff --git a/resources/lang/th/admin/settings/general.php b/resources/lang/th/admin/settings/general.php index 97d14b0f18..cdcf23ceb8 100644 --- a/resources/lang/th/admin/settings/general.php +++ b/resources/lang/th/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'การแจ้งเตือนถูกเปิดใช้งานแล้ว', 'alert_interval' => 'เกณฑ์การเตือนที่หมดอายุ (เป็นวัน)', 'alert_inv_threshold' => 'เกณฑ์การแจ้งเตือนพื้นที่โฆษณา', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'รหัสทรัพย์สิน', 'audit_interval' => 'ช่วงการตรวจสอบ', - 'audit_interval_help' => 'หากคุณจำเป็นต้องตรวจสอบสินทรัพย์ของคุณอย่างสม่ำเสมอให้ป้อนช่วงเวลาเป็นเดือน ๆ', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'เกณฑ์การตรวจสอบคำเตือน', 'audit_warning_days_help' => 'เราควรเตือนล่วงหน้ากี่วันเมื่อสินทรัพย์มีกำหนดการตรวจสอบ?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'ตั้งค่าบาร์โค๊ด', 'confirm_purge' => 'ยืนยัน Purge', diff --git a/resources/lang/th/general.php b/resources/lang/th/general.php index be36081784..a5c34901a1 100644 --- a/resources/lang/th/general.php +++ b/resources/lang/th/general.php @@ -96,6 +96,7 @@ 'eol' => 'อายุการใช้งาน', 'email_domain' => 'โดเมนอีเมล', 'email_format' => 'รูปแบบอีเมล', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'ใช้เพื่อสร้างที่อยู่อีเมลเมื่อนำเข้า', 'error' => 'Error', 'filastname_format' => 'ชื่อย่อครั้งแรก (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'จำนวน', 'quantity' => 'ปริมาณ', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'พร้อมใช้งาน', 'recent_activity' => 'กิจกรรมล่าสุด', 'remaining' => 'Remaining', diff --git a/resources/lang/tl/admin/custom_fields/general.php b/resources/lang/tl/admin/custom_fields/general.php index 8483c67c69..4c7442b2d5 100644 --- a/resources/lang/tl/admin/custom_fields/general.php +++ b/resources/lang/tl/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/tl/admin/hardware/general.php b/resources/lang/tl/admin/hardware/general.php index 1ac49efef1..67226061b1 100644 --- a/resources/lang/tl/admin/hardware/general.php +++ b/resources/lang/tl/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archived', 'asset' => 'Asset', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Clone Asset', diff --git a/resources/lang/tl/admin/settings/general.php b/resources/lang/tl/admin/settings/general.php index cfccc817cd..cf891b77ed 100644 --- a/resources/lang/tl/admin/settings/general.php +++ b/resources/lang/tl/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Punagana na ang Alerto sa Email', 'alert_interval' => 'Ang pagka-expire ng Alert Threshold (sa iilang araw)', 'alert_inv_threshold' => 'Ang Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Ang mga ID ng Asset', 'audit_interval' => 'Ang Pagitan ng Pag-audit', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Barcode Settings', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/tl/general.php b/resources/lang/tl/general.php index 2e358c77f9..0e38b21939 100644 --- a/resources/lang/tl/general.php +++ b/resources/lang/tl/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Error', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ready to Deploy', 'recent_activity' => 'Recent Activity', 'remaining' => 'Remaining', diff --git a/resources/lang/tr/admin/companies/general.php b/resources/lang/tr/admin/companies/general.php index 5e10a6fcb8..75b0b7c400 100644 --- a/resources/lang/tr/admin/companies/general.php +++ b/resources/lang/tr/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Firma Seç', - 'about_companies' => 'About Companies', - 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', + 'about_companies' => 'Firmalar Hakkında', + 'about_companies_description' => ' Firmaları basit bir bilgi alanı olarak kullanabilir veya Yönetici Ayarlarında "Tam Firma Desteği"ni aktifleştirerek envanter görünürlüğü ve müsaitliğini belirtilen firmanın kullanıcılarına kısıtlayabilirsiniz.', ]; diff --git a/resources/lang/tr/admin/custom_fields/general.php b/resources/lang/tr/admin/custom_fields/general.php index 774756e946..e62a2e56ae 100644 --- a/resources/lang/tr/admin/custom_fields/general.php +++ b/resources/lang/tr/admin/custom_fields/general.php @@ -2,7 +2,7 @@ return [ 'custom_fields' => 'Özel alanlar', - 'manage' => 'Manage', + 'manage' => 'Yönet', 'field' => 'Alan', 'about_fieldsets_title' => 'Alan kümeleri hakkında', 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.', @@ -39,7 +39,9 @@ return [ 'add_field_to_fieldset' => 'Add Field to Fieldset', 'make_optional' => 'Required - click to make optional', 'make_required' => 'Optional - click to make required', - 'reorder' => 'Reorder', - 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'reorder' => 'Yeniden Sırala', + 'db_field' => 'Veri Tabanı Sütunları', + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'Bu değer tüm varlıklarda benzersiz olmalıdır', + 'unique' => 'Benzersiz', ]; diff --git a/resources/lang/tr/admin/hardware/general.php b/resources/lang/tr/admin/hardware/general.php index 6d8b68e2c5..7f36c726ac 100644 --- a/resources/lang/tr/admin/hardware/general.php +++ b/resources/lang/tr/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Arşivlenmiş', 'asset' => 'Demirbaş', 'bulk_checkout' => 'Varlıkları Kullanıma Alma', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Demirbaş Girişi Yap', 'checkout' => 'Ödenme Öğe', 'clone' => 'Demirbaşı Kopyala', diff --git a/resources/lang/tr/admin/locations/table.php b/resources/lang/tr/admin/locations/table.php index 7de0dca0e7..b0ea781bb8 100644 --- a/resources/lang/tr/admin/locations/table.php +++ b/resources/lang/tr/admin/locations/table.php @@ -24,13 +24,13 @@ return [ 'department' => 'Bölüm', 'location' => 'Yer', 'asset_tag' => 'Demirbaş Etiketi', - 'asset_name' => 'Name', + 'asset_name' => 'Ad', 'asset_category' => 'Kategori', - 'asset_manufacturer' => 'Manufacturer', + 'asset_manufacturer' => 'Üretici', 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', + 'asset_serial' => 'Seri No', + 'asset_location' => 'Konum', + 'asset_checked_out' => 'Çıkış Yapıldı', 'asset_expected_checkin' => 'Expected Checkin', 'date' => 'Tarih:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', diff --git a/resources/lang/tr/admin/settings/general.php b/resources/lang/tr/admin/settings/general.php index 845b842ee8..5066ea201f 100644 --- a/resources/lang/tr/admin/settings/general.php +++ b/resources/lang/tr/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Bu kutuyu işaretlemek, kullanıcının UI kaplamasını farklı bir kaplamayla geçersiz kılmasına olanak tanır.', 'asset_ids' => 'Demirbaş No', 'audit_interval' => 'Denetim Aralığı', - 'audit_interval_help' => 'Varlıklarınızı düzenli olarak fiziksel olarak denetlemeniz gerekiyorsa, aralığı ay olarak girin.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Denetim Uyarı Eşiği', 'audit_warning_days_help' => 'Mal varlığının denetime tabi olması gerektiği zaman sizi kaç gün öncesinden uyarmalıyız?', 'auto_increment_assets' => 'Otomatik olarak artan varlık etiketi oluşturun', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Yedeği yükle', 'backups_path' => 'Yedeklerin sunucuda saklanacağı yer :path', 'backups_restore_warning' => 'Geri yükleme butonunu kullanın önceki yedeklemelerden (Şu anda "S3 file storage" yada "Docker" çalışmıyor.

Sizinentire :app_name Veritabanı yüklediğiniz dosyalarla değiştirilecektir.. ', - 'backups_logged_out' => 'Geri yükleme tamamlandığında oturumunuz kapatılacaktır.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Çok büyük yedeklemeler, geri yükleme girişiminde zaman aşımına uğrayabilir ve komut satırı üzerinden çalıştırılması gerekebilir. ', 'barcode_settings' => 'Barkod Ayarları', 'confirm_purge' => 'Temizleme Onayı', diff --git a/resources/lang/tr/admin/users/general.php b/resources/lang/tr/admin/users/general.php index 3f5c4afcf8..da6809dced 100644 --- a/resources/lang/tr/admin/users/general.php +++ b/resources/lang/tr/admin/users/general.php @@ -24,14 +24,14 @@ return [ 'two_factor_admin_optin_help' => 'Mevcut yönetici ayarlarınız, iki aşamalı kimlik doğrulamasının seçici olarak uygulanmasına izin verir. ', 'two_factor_enrolled' => 'Kayıtlı 2FA Cihazı ', 'two_factor_active' => '2FA Etkin ', - 'user_deactivated' => 'User is de-activated', - 'activation_status_warning' => 'Do not change activation status', - 'group_memberships_helpblock' => 'Only superadmins may edit group memberships.', - 'superadmin_permission_warning' => 'Only superadmins may grant a user superadmin access.', - 'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.', - 'remove_group_memberships' => 'Remove Group Memberships', + 'user_deactivated' => 'Kullanıcı devre dışı bırakıldı', + 'activation_status_warning' => 'Aktivasyon durumunu değiştirme', + 'group_memberships_helpblock' => 'Yalnızca süper yöneticiler grup üyeliklerini düzenleyebilir.', + 'superadmin_permission_warning' => 'Yalnızca süper yöneticiler bir kullanıcıya süper yönetici erişimi verebilir.', + 'admin_permission_warning' => 'Yalnızca yönetici haklarına veya daha fazlasına sahip kullanıcılar, bir kullanıcıya yönetici erişimi verebilir.', + 'remove_group_memberships' => 'Grup Üyeliklerini Kaldır', 'warning_deletion' => 'UYARILAR:', 'warning_deletion_information' => 'You are about to delete the :count user(s) listed below. Super admin names are highlighted in red.', - 'update_user_asssets_status' => 'Update all assets for these users to this status', - 'checkin_user_properties' => 'Check in all properties associated with these users', + 'update_user_asssets_status' => 'Bu kullanıcılar için tüm varlıkları bu duruma güncelleyin', + 'checkin_user_properties' => 'Bu kullanıcılarla ilişkili tüm mülkleri kontrol edin', ]; diff --git a/resources/lang/uk/admin/custom_fields/general.php b/resources/lang/uk/admin/custom_fields/general.php index e167068c34..2970247f5d 100644 --- a/resources/lang/uk/admin/custom_fields/general.php +++ b/resources/lang/uk/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/uk/admin/hardware/general.php b/resources/lang/uk/admin/hardware/general.php index 2de90a4654..eddacaed5e 100644 --- a/resources/lang/uk/admin/hardware/general.php +++ b/resources/lang/uk/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Архівний', 'asset' => 'Актив', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Прийняти актив', 'checkout' => 'Видати актив', 'clone' => 'Клонувати актив', diff --git a/resources/lang/uk/admin/settings/general.php b/resources/lang/uk/admin/settings/general.php index a3353920f1..110b0ab3f5 100644 --- a/resources/lang/uk/admin/settings/general.php +++ b/resources/lang/uk/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Email Alerts Enabled', 'alert_interval' => 'Expiring Alerts Threshold (in days)', 'alert_inv_threshold' => 'Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'ID активів', 'audit_interval' => 'Audit Interval', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Параметри штрих-кодів', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/uk/general.php b/resources/lang/uk/general.php index 650cecf4f0..3f85d85bd0 100644 --- a/resources/lang/uk/general.php +++ b/resources/lang/uk/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Домен електронної пошти', 'email_format' => 'Формат електронної пошти', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Це використовується для генерації адрес електронної пошти під час імпортування', 'error' => 'Error', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'К-КСТЬ', 'quantity' => 'Кількість', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Готовий до видачі', 'recent_activity' => 'Останні дії', 'remaining' => 'Remaining', diff --git a/resources/lang/ur-PK/admin/custom_fields/general.php b/resources/lang/ur-PK/admin/custom_fields/general.php index 8483c67c69..4c7442b2d5 100644 --- a/resources/lang/ur-PK/admin/custom_fields/general.php +++ b/resources/lang/ur-PK/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/ur-PK/admin/hardware/general.php b/resources/lang/ur-PK/admin/hardware/general.php index 1ac49efef1..67226061b1 100644 --- a/resources/lang/ur-PK/admin/hardware/general.php +++ b/resources/lang/ur-PK/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archived', 'asset' => 'Asset', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Clone Asset', diff --git a/resources/lang/ur-PK/admin/settings/general.php b/resources/lang/ur-PK/admin/settings/general.php index 3e7a60f89f..6bbab229e3 100644 --- a/resources/lang/ur-PK/admin/settings/general.php +++ b/resources/lang/ur-PK/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Email Alerts Enabled', 'alert_interval' => 'Expiring Alerts Threshold (in days)', 'alert_inv_threshold' => 'Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Asset IDs', 'audit_interval' => 'Audit Interval', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Barcode Settings', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/ur-PK/general.php b/resources/lang/ur-PK/general.php index 2e358c77f9..0e38b21939 100644 --- a/resources/lang/ur-PK/general.php +++ b/resources/lang/ur-PK/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Error', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ready to Deploy', 'recent_activity' => 'Recent Activity', 'remaining' => 'Remaining', diff --git a/resources/lang/vi/admin/custom_fields/general.php b/resources/lang/vi/admin/custom_fields/general.php index 039df3c96e..0aa0607582 100644 --- a/resources/lang/vi/admin/custom_fields/general.php +++ b/resources/lang/vi/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/vi/admin/hardware/general.php b/resources/lang/vi/admin/hardware/general.php index 02200b7742..99fc34ba20 100644 --- a/resources/lang/vi/admin/hardware/general.php +++ b/resources/lang/vi/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Đã lưu trữ', 'asset' => 'Tài sản', 'bulk_checkout' => 'Checkout Tài sản', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin tài sản', 'checkout' => 'Tài sản thanh toán', 'clone' => 'Nhân đôi tài sản', diff --git a/resources/lang/vi/admin/settings/general.php b/resources/lang/vi/admin/settings/general.php index 6b1e429566..881af407cb 100644 --- a/resources/lang/vi/admin/settings/general.php +++ b/resources/lang/vi/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => 'Check ô này cho phép người dùng sử dụng giao diện bên ngoài.', 'asset_ids' => 'ID tài sản', 'audit_interval' => 'Khoảng Kiểm toán', - 'audit_interval_help' => 'Nếu bạn được yêu cầu kiểm tra thường xuyên tài sản của mình, hãy nhập khoảng thời gian trong nhiều tháng.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Ngưỡng cảnh báo kiểm tra', 'audit_warning_days_help' => 'Bao nhiêu ngày trước chúng tôi nên cảnh báo bạn khi tài sản đến hạn kiểm toán?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Cài đặt mã vạch', 'confirm_purge' => 'Xác nhận Xóa', diff --git a/resources/lang/vi/general.php b/resources/lang/vi/general.php index 0f90bbe513..79fea57825 100644 --- a/resources/lang/vi/general.php +++ b/resources/lang/vi/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Tên miền email', 'email_format' => 'Định dạng Email', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Địa chỉ này được sử dụng để tạo địa chỉ email khi nhập', 'error' => 'Error', 'filastname_format' => 'Tên Họ Tên Đầu tiên (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'Số lượng', 'quantity' => 'Số lượng', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Sẵn sàng để cấp phát', 'recent_activity' => 'Hoạt động gần đây', 'remaining' => 'Remaining', diff --git a/resources/lang/zh-CN/admin/custom_fields/general.php b/resources/lang/zh-CN/admin/custom_fields/general.php index 9fb594fc00..e220978655 100644 --- a/resources/lang/zh-CN/admin/custom_fields/general.php +++ b/resources/lang/zh-CN/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => '可选 - 点击转为必填项', 'reorder' => '重新排序', 'db_field' => '数据库字段', - 'db_convert_warning' => '警告。该字段在自定义字段表中为 :db_column 但应该是 :expected ' + 'db_convert_warning' => '警告。该字段在自定义字段表中为 :db_column 但应该是 :expected ', + 'is_unique' => '此值在所有资产中必须是唯一的', + 'unique' => '唯一的', ]; diff --git a/resources/lang/zh-CN/admin/hardware/general.php b/resources/lang/zh-CN/admin/hardware/general.php index 970604f092..f0789a94c7 100644 --- a/resources/lang/zh-CN/admin/hardware/general.php +++ b/resources/lang/zh-CN/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => '已存档', 'asset' => '资产', 'bulk_checkout' => '分配资产', + 'bulk_checkin' => '归还资产', 'checkin' => '借入资产', 'checkout' => '借出资产', 'clone' => '复制资产', diff --git a/resources/lang/zh-CN/admin/settings/general.php b/resources/lang/zh-CN/admin/settings/general.php index 7e948385cc..00e8173842 100644 --- a/resources/lang/zh-CN/admin/settings/general.php +++ b/resources/lang/zh-CN/admin/settings/general.php @@ -21,7 +21,7 @@ return [ 'allow_user_skin_help_text' => '勾选此框将允许用户以不同的方式覆盖界面皮肤。', 'asset_ids' => '资产ID', 'audit_interval' => '盘点时间间隔', - 'audit_interval_help' => '如果您需要定期盘点您的资产,请输入月数间隔。', + 'audit_interval_help' => '如果您需要定期对您的资产进行盘点,请输入您使用的时间间隔(以月为单位)。 如果您更新此值,则资产的所有“下一个盘点日期”都将具有即将到来的盘点日期。', 'audit_warning_days' => '盘点开始提醒', 'audit_warning_days_help' => '需要提前多少天让我们通知您需要盘点资产?', 'auto_increment_assets' => '生成自动递增的资产标签', @@ -32,7 +32,7 @@ return [ 'backups_upload' => '上传备份', 'backups_path' => '服务器上的备份存储在 :path', 'backups_restore_warning' => '使用还原按钮 从上次备份还原。 (目前无法使用 S3 文件存储或 Docker容器。)

您的 完整的 :app_name 数据库和任何上传的文件将被备份文件中的内容完全替换 ', - 'backups_logged_out' => '恢复完成后,您将被注销。', + 'backups_logged_out' => '恢复完成后,包括您在内的所有现有用户都将被注销。', 'backups_large' => '非常大的备份可能会超时恢复尝试,可能仍然需要通过命令行运行。 ', 'barcode_settings' => '条码设置', 'confirm_purge' => '确认清除', diff --git a/resources/lang/zh-CN/general.php b/resources/lang/zh-CN/general.php index 0e2a37b2fe..c3f28411d1 100644 --- a/resources/lang/zh-CN/general.php +++ b/resources/lang/zh-CN/general.php @@ -96,6 +96,7 @@ 'eol' => '寿命', 'email_domain' => '邮件域', 'email_format' => '电子邮件格式', + 'employee_number' => '员工号码', 'email_domain_help' => '这在导入时用以生成电子邮件地址', 'error' => '错误', 'filastname_format' => '缩写名 姓,例如(jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => '数量', 'quantity' => '数量', 'quantity_minimum' => '您有 :count 物品低于或几乎低于最低数量级别', + 'quickscan_checkin' => '快速扫描归还', + 'quickscan_checkin_status' => '归还状态', 'ready_to_deploy' => '待分配', 'recent_activity' => '最近操作活动', 'remaining' => '剩余', diff --git a/resources/lang/zh-HK/admin/custom_fields/general.php b/resources/lang/zh-HK/admin/custom_fields/general.php index 8483c67c69..4c7442b2d5 100644 --- a/resources/lang/zh-HK/admin/custom_fields/general.php +++ b/resources/lang/zh-HK/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/zh-HK/admin/hardware/general.php b/resources/lang/zh-HK/admin/hardware/general.php index 1ac49efef1..67226061b1 100644 --- a/resources/lang/zh-HK/admin/hardware/general.php +++ b/resources/lang/zh-HK/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'Archived', 'asset' => 'Asset', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'Checkin Asset', 'checkout' => 'Checkout Asset', 'clone' => 'Clone Asset', diff --git a/resources/lang/zh-HK/admin/settings/general.php b/resources/lang/zh-HK/admin/settings/general.php index 3e7a60f89f..6bbab229e3 100644 --- a/resources/lang/zh-HK/admin/settings/general.php +++ b/resources/lang/zh-HK/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Email Alerts Enabled', 'alert_interval' => 'Expiring Alerts Threshold (in days)', 'alert_inv_threshold' => 'Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Asset IDs', 'audit_interval' => 'Audit Interval', - 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'Audit Warning Threshold', 'audit_warning_days_help' => 'How many days in advance should we warn you when assets are due for auditing?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Barcode Settings', 'confirm_purge' => 'Confirm Purge', diff --git a/resources/lang/zh-HK/general.php b/resources/lang/zh-HK/general.php index 2e358c77f9..0e38b21939 100644 --- a/resources/lang/zh-HK/general.php +++ b/resources/lang/zh-HK/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'This is used to generate email addresses when importing', 'error' => 'Error', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Quantity', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ready to Deploy', 'recent_activity' => 'Recent Activity', 'remaining' => 'Remaining', diff --git a/resources/lang/zh-TW/admin/custom_fields/general.php b/resources/lang/zh-TW/admin/custom_fields/general.php index 21467ca486..896a849a21 100644 --- a/resources/lang/zh-TW/admin/custom_fields/general.php +++ b/resources/lang/zh-TW/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/zh-TW/admin/hardware/general.php b/resources/lang/zh-TW/admin/hardware/general.php index 105379eb78..95434cc509 100644 --- a/resources/lang/zh-TW/admin/hardware/general.php +++ b/resources/lang/zh-TW/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => '已封存', 'asset' => '資產', 'bulk_checkout' => '借出資產', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => '資產繳回', 'checkout' => '借出資產', 'clone' => '複製資產', diff --git a/resources/lang/zh-TW/admin/settings/general.php b/resources/lang/zh-TW/admin/settings/general.php index 3417f7cfd8..80182b5f55 100644 --- a/resources/lang/zh-TW/admin/settings/general.php +++ b/resources/lang/zh-TW/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => '警報已啟用', 'alert_interval' => '警報閾值(天)', 'alert_inv_threshold' => '庫存警報閾值', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => '資產ID', 'audit_interval' => '稽核間隔', - 'audit_interval_help' => '如果您需要定期對您的資產進行身體審核,請輸入幾個月的時間間隔。', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => '稽核警告閾值', 'audit_warning_days_help' => '當資產到期時,我們應該提前幾天提前審核?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => '條碼設定', 'confirm_purge' => '確認清除', diff --git a/resources/lang/zh-TW/general.php b/resources/lang/zh-TW/general.php index 47131e8355..f83c9e3f7d 100644 --- a/resources/lang/zh-TW/general.php +++ b/resources/lang/zh-TW/general.php @@ -96,6 +96,7 @@ 'eol' => 'EOL', 'email_domain' => 'Email 域名', 'email_format' => 'Email 格式', + 'employee_number' => 'Employee Number', 'email_domain_help' => '這用在匯入時產生電子郵件地址', 'error' => 'Error', 'filastname_format' => '縮寫名 姓,例如 (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => '數量', 'quantity' => '數量', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => '準備部署', 'recent_activity' => '最近操作活動', 'remaining' => 'Remaining', diff --git a/resources/lang/zu/admin/custom_fields/general.php b/resources/lang/zu/admin/custom_fields/general.php index 6bf8b19d04..e17a20d805 100644 --- a/resources/lang/zu/admin/custom_fields/general.php +++ b/resources/lang/zu/admin/custom_fields/general.php @@ -41,5 +41,7 @@ return [ 'make_required' => 'Optional - click to make required', 'reorder' => 'Reorder', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .' + 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column but should be :expected .', + 'is_unique' => 'This value must be unique across all assets', + 'unique' => 'Unique', ]; diff --git a/resources/lang/zu/admin/hardware/general.php b/resources/lang/zu/admin/hardware/general.php index 61c2800d83..7e1e1223e6 100644 --- a/resources/lang/zu/admin/hardware/general.php +++ b/resources/lang/zu/admin/hardware/general.php @@ -6,6 +6,7 @@ return [ 'archived' => 'I-Archived', 'asset' => 'Impahla', 'bulk_checkout' => 'Checkout Assets', + 'bulk_checkin' => 'Checkin Assets', 'checkin' => 'I-Checkin Asset', 'checkout' => 'I-Asset ye-Checkout', 'clone' => 'Clone Asset', diff --git a/resources/lang/zu/admin/settings/general.php b/resources/lang/zu/admin/settings/general.php index a976ed5000..ec402ca4fe 100644 --- a/resources/lang/zu/admin/settings/general.php +++ b/resources/lang/zu/admin/settings/general.php @@ -17,11 +17,11 @@ return [ 'alerts_enabled' => 'Izaziso zivuliwe', 'alert_interval' => 'Ukuphelelwa yisikhathi kwe-Alerts Threshold (ezinsukwini)', 'alert_inv_threshold' => 'Inventory Alert Threshold', - 'allow_user_skin' => 'Allow user skin', + 'allow_user_skin' => 'Allow User Skin', 'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.', 'asset_ids' => 'Ama-ID wefa', 'audit_interval' => 'I-Interval Audit', - 'audit_interval_help' => 'Uma kudingeka ukuba uhlole amafa akho njalo ngokomzimba, faka isikhashana ezinyangeni.', + 'audit_interval_help' => 'If you are required to regularly physically audit your assets, enter the interval in months that you use. If you update this value, all of the "next audit dates" for assets with an upcoming audit date.', 'audit_warning_days' => 'I-Audit Warning Threshold', 'audit_warning_days_help' => 'Zingaki izinsuku kusengaphambili kufanele sikuxwayise uma izimpahla zifanele ukuhlolwa?', 'auto_increment_assets' => 'Generate auto-incrementing asset tags', @@ -32,7 +32,7 @@ return [ 'backups_upload' => 'Upload Backup', 'backups_path' => 'Backups on the server are stored in :path', 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'All existing users, including you, will be logged out once your restore is complete.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Izilungiselelo zebhakhodi', 'confirm_purge' => 'Qinisekisa i-Purge', diff --git a/resources/lang/zu/general.php b/resources/lang/zu/general.php index e611ff55e7..a018e56879 100644 --- a/resources/lang/zu/general.php +++ b/resources/lang/zu/general.php @@ -96,6 +96,7 @@ 'eol' => 'I-EOL', 'email_domain' => 'Domain Imeyili', 'email_format' => 'Ifomethi ye-imeyli', + 'employee_number' => 'Employee Number', 'email_domain_help' => 'Lokhu kusetshenziselwa ukhiqiza amakheli e-imeyili uma ungenisa', 'error' => 'Error', 'filastname_format' => 'Igama Lokuqala Lokuqala Lokuqala (jsmith@example.com)', @@ -192,6 +193,8 @@ 'qty' => 'QTY', 'quantity' => 'Inani', 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quickscan_checkin' => 'Quick Scan Checkin', + 'quickscan_checkin_status' => 'Checkin Status', 'ready_to_deploy' => 'Ukulungele Ukusebenzisa', 'recent_activity' => 'Umsebenzi wakamuva', 'remaining' => 'Remaining', diff --git a/resources/views/reports/activity.blade.php b/resources/views/reports/activity.blade.php index 686ab8562c..1b54e78515 100644 --- a/resources/views/reports/activity.blade.php +++ b/resources/views/reports/activity.blade.php @@ -35,7 +35,6 @@ id="activityReport" data-url="{{ route('api.activity.index') }}" data-mobile-responsive="true" - {{-- data-toggle="table" --}} class="table table-striped snipe-table" data-export-options='{ "fileName": "activity-report-{{ date('Y-m-d') }}", @@ -46,7 +45,7 @@ Icon {{ trans('general.date') }} - {{ trans('general.admin') }} + {{ trans('general.admin') }} {{ trans('general.action') }} {{ trans('general.type') }} {{ trans('general.item') }} diff --git a/resources/views/users/print.blade.php b/resources/views/users/print.blade.php index 27f824b694..23a1027143 100644 --- a/resources/views/users/print.blade.php +++ b/resources/views/users/print.blade.php @@ -151,7 +151,7 @@ {{ str_repeat('x', 15) }} @endcan - {{ $license->assetlog->first()->created_at }} + {{ $license->pivot->created_at }} @php $lcounter++ @@ -187,7 +187,7 @@ {{ $acounter }} {{ ($accessory->manufacturer) ? $accessory->manufacturer->name : '' }} {{ $accessory->name }} {{ $accessory->model_number }} {{ $accessory->category->name }} - {{ $accessory->assetlog->first()->created_at }} + {{ $accessory->pivot->created_at }} @php $acounter++