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.: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.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. :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. :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. :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. :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. :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. :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. :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容器。) :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. :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. :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.