', true, 0, true, 0, 'C');
}
@@ -230,7 +230,7 @@ class CheckoutAcceptance extends Model
$pdf->Ln();
if ($data['signature'] != null) {
- $pdf->writeHTML('', true, 0, true, 0, '');
+ $pdf->writeHTML('', true, 0, true, 0, '');
$pdf->writeHTML('', true, 0, true, 0, '');
$pdf->writeHTML(e($data['assigned_to']), true, 0, true, 0, 'C');
$pdf->Ln();
diff --git a/app/Models/License.php b/app/Models/License.php
index 8630080d14..897107dee9 100755
--- a/app/Models/License.php
+++ b/app/Models/License.php
@@ -8,6 +8,7 @@ use App\Models\Traits\HasUploads;
use App\Models\Traits\Searchable;
use App\Presenters\Presentable;
use Carbon\Carbon;
+use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Support\Facades\DB;
@@ -156,6 +157,29 @@ class License extends Depreciable
);
}
+
+ protected function terminatesFormattedDate(): Attribute
+ {
+ return Attribute:: make(
+ get: fn(mixed $value, array $attributes) => $attributes['termination_date'] ? Helper::getFormattedDateObject($attributes['termination_date'], 'date', false) : null,
+ );
+ }
+
+ protected function terminatesDiffInDays(): Attribute
+ {
+ return Attribute:: make(
+ get: fn(mixed $value, array $attributes) => $attributes['termination_date'] ? Carbon::now()->diffInDays($attributes['termination_date']) : null,
+ );
+ }
+
+ protected function terminatesDiffForHumans(): Attribute
+ {
+ return Attribute:: make(
+ get: fn(mixed $value, array $attributes) => $attributes['termination_date'] ? Carbon::parse($attributes['termination_date'])->diffForHumans() : null,
+ );
+ }
+
+
public function prepareLimitChangeRule($parameters, $field)
{
$actual_seat_count = $this->licenseseats()->count(); //we use the *actual* seat count here, in case your license has gone wonky
@@ -706,49 +730,6 @@ class License extends Depreciable
return $this->hasMany(\App\Models\LicenseSeat::class)->whereNull('assigned_to')->whereNull('deleted_at')->whereNull('asset_id');
}
- /**
- * Returns expiring licenses.
- *
- * This checks if:
- *
- * 1) The license has not been deleted
- * 2) The expiration date is between now and the number of days specified
- * 3) There is an expiration date set and the termination date has not passed
- * 4) The license termination date is null or has not passed
- *
- * @author A. Gianotto
- * @since [v1.0]
- * @return \Illuminate\Database\Eloquent\Relations\Relation
- * @see \App\Console\Commands\SendExpiringLicenseNotifications
- */
- public static function getExpiringLicenses($days = 60)
- {
-
- return self::whereNull('licenses.deleted_at')
-
- // The termination date is null or within range
- ->where(function ($query) use ($days) {
- $query->whereNull('termination_date')
- ->orWhereBetween('termination_date', [Carbon::now(), Carbon::now()->addDays($days)]);
- })
- ->where(function ($query) use ($days) {
- $query->whereNotNull('expiration_date')
- // Handle expired licenses without termination dates
- ->where(function ($query) use ($days) {
- $query->whereNull('termination_date')
- ->whereBetween('expiration_date', [Carbon::now(), Carbon::now()->addDays($days)]);
- })
-
- // Handle expired licenses with termination dates in the future
- ->orWhere(function ($query) use ($days) {
- $query->whereBetween('termination_date', [Carbon::now(), Carbon::now()->addDays($days)]);
- });
- })
- ->orderBy('expiration_date', 'ASC')
- ->orderBy('termination_date', 'ASC')
- ->get();
- }
-
public function scopeActiveLicenses($query)
{
@@ -765,19 +746,57 @@ class License extends Depreciable
});
}
+ /**
+ * Expiried/terminated licenses scope
+ *
+ * @author A. Gianotto
+ * @since [v1.0]
+ * @return \Illuminate\Database\Eloquent\Relations\Relation
+ * @see \App\Console\Commands\SendExpiringLicenseNotifications
+ */
public function scopeExpiredLicenses($query)
{
+ return $query->whereDate('termination_date', '<=', Carbon::now())// The termination date is null or within range
+ ->orWhere(function ($query) {
+ $query->whereDate('expiration_date', '<=', Carbon::now());
+ })
+ ->whereNull('deleted_at');
+ }
- return $query->whereNull('licenses.deleted_at')
+ /**
+ * Expiring/terminating licenses scope
+ *
+ * This checks if:
+ *
+ * 1) The license has not been deleted
+ * 2) The expiration date is between now and the number of days specified
+ * 3) There is an expiration date set and the termination date has not passed
+ * 4) The license termination date is null or has not passed
+ *
+ * @author A. Gianotto
+ * @since [v1.0]
+ * @return \Illuminate\Database\Eloquent\Relations\Relation
+ * @see \App\Console\Commands\SendExpiringLicenseNotifications
+ */
+ public function scopeExpiringLicenses($query, $days = 60)
+ {
+ return $query// The termination date is null or within range
+ ->where(function ($query) use ($days) {
+ $query->whereNull('termination_date')
+ ->orWhereBetween('termination_date', [Carbon::now(), Carbon::now()->addDays($days)]);
+ })
+ ->where(function ($query) use ($days) {
+ $query->whereNotNull('expiration_date')
+ // Handle expiring licenses without termination dates
+ ->where(function ($query) use ($days) {
+ $query->whereNull('termination_date')
+ ->whereBetween('expiration_date', [Carbon::now(), Carbon::now()->addDays($days)]);
+ })
- // The termination date is null or within range
- ->where(function ($query) {
- $query->whereNull('termination_date')
- ->orWhereDate('termination_date', '<=', [Carbon::now()]);
- })
- ->orWhere(function ($query) {
- $query->whereNull('expiration_date')
- ->orWhereDate('expiration_date', '<=', [Carbon::now()]);
+ // Handle expiring licenses with termination dates in the future
+ ->orWhere(function ($query) use ($days) {
+ $query->whereBetween('termination_date', [Carbon::now(), Carbon::now()->addDays($days)]);
+ });
});
}
diff --git a/app/Models/SnipeModel.php b/app/Models/SnipeModel.php
index ae65664474..c4a72d35d7 100644
--- a/app/Models/SnipeModel.php
+++ b/app/Models/SnipeModel.php
@@ -3,6 +3,7 @@
namespace App\Models;
use App\Helpers\Helper;
+use Carbon\Carbon;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Model;
@@ -19,6 +20,37 @@ class SnipeModel extends Model
$this->attributes['purchase_date'] = $value;
}
+
+ protected function purchaseDateFormatted(): Attribute
+ {
+ return Attribute:: make(
+ get: fn(mixed $value, array $attributes) => $attributes['purchase_date'] ? Helper::getFormattedDateObject(Carbon::parse($attributes['purchase_date']), 'date', false) : null,
+ );
+ }
+
+
+ protected function expiresDiffInDays(): Attribute
+ {
+ return Attribute:: make(
+ get: fn(mixed $value, array $attributes) => $attributes['expiration_date'] ? Carbon::now()->diffInDays($attributes['expiration_date']) : null,
+ );
+ }
+
+
+ protected function expiresDiffForHumans(): Attribute
+ {
+ return Attribute:: make(
+ get: fn(mixed $value, array $attributes) => $attributes['expiration_date'] ? Carbon::parse($attributes['expiration_date'])->diffForHumans() : null,
+ );
+ }
+
+ protected function expiresFormattedDate(): Attribute
+ {
+ return Attribute:: make(
+ get: fn(mixed $value, array $attributes) => $attributes['expiration_date'] ? Helper::getFormattedDateObject($attributes['expiration_date'], 'date', false) : null,
+ );
+ }
+
/**
* @param $value
*/
@@ -180,6 +212,7 @@ class SnipeModel extends Model
);
}
+
public function getEula()
{
diff --git a/app/Presenters/LicensePresenter.php b/app/Presenters/LicensePresenter.php
index a1edf2cf76..ea5c3b5d73 100644
--- a/app/Presenters/LicensePresenter.php
+++ b/app/Presenters/LicensePresenter.php
@@ -48,6 +48,13 @@ class LicensePresenter extends Presenter
'sortable' => true,
'title' => trans('admin/licenses/form.expiration'),
'formatter' => 'dateDisplayFormatter',
+ ], [
+ 'field' => 'termination_date',
+ 'searchable' => true,
+ 'sortable' => true,
+ 'visible' => false,
+ 'title' => trans('admin/licenses/form.termination_date'),
+ 'formatter' => 'dateDisplayFormatter',
], [
'field' => 'license_email',
'searchable' => true,
@@ -110,14 +117,6 @@ class LicensePresenter extends Presenter
'title' => trans('general.purchase_date'),
'formatter' => 'dateDisplayFormatter',
],
- [
- 'field' => 'termination_date',
- 'searchable' => true,
- 'sortable' => true,
- 'visible' => false,
- 'title' => trans('admin/licenses/form.termination_date'),
- 'formatter' => 'dateDisplayFormatter',
- ],
[
'field' => 'depreciation',
'searchable' => true,
diff --git a/app/Providers/BreadcrumbsServiceProvider.php b/app/Providers/BreadcrumbsServiceProvider.php
index 07c912bfb7..23fb88a96f 100644
--- a/app/Providers/BreadcrumbsServiceProvider.php
+++ b/app/Providers/BreadcrumbsServiceProvider.php
@@ -350,10 +350,15 @@ class BreadcrumbsServiceProvider extends ServiceProvider
* Licenses Breadcrumbs
*/
if ((request()->is('licenses*')) && (request()->status=='inactive')) {
+ Breadcrumbs::for('licenses.index', fn(Trail $trail) => $trail->parent('home', route('home'))
+ ->push(trans('general.licenses'), route('licenses.index'))
+ ->push(trans('general.show_inactive'), route('licenses.index'))
+ );
+ } elseif ((request()->is('licenses*')) && (request()->status=='expiring')) {
Breadcrumbs::for('licenses.index', fn (Trail $trail) =>
$trail->parent('home', route('home'))
->push(trans('general.licenses'), route('licenses.index'))
- ->push(trans('general.show_inactive'), route('licenses.index'))
+ ->push(trans('general.show_expiring'), route('licenses.index'))
);
} else {
Breadcrumbs::for('licenses.index', fn (Trail $trail) =>
diff --git a/config/version.php b/config/version.php
index f979c2b883..a88f128345 100644
--- a/config/version.php
+++ b/config/version.php
@@ -1,10 +1,10 @@
'v8.3.2',
- 'full_app_version' => 'v8.3.2 - build 19905-g028b4e7b7',
- 'build_version' => '19905',
+ 'app_version' => 'v8.3.3',
+ 'full_app_version' => 'v8.3.3 - build 20061-g884d2a955',
+ 'build_version' => '20061',
'prerelease_version' => '',
- 'hash_version' => 'g028b4e7b7',
- 'full_hash' => 'v8.3.2-319-g028b4e7b7',
+ 'hash_version' => 'g884d2a955',
+ 'full_hash' => 'v8.3.3-154-g884d2a955',
'branch' => 'develop',
);
\ No newline at end of file
diff --git a/resources/lang/aa-ER/admin/custom_fields/general.php b/resources/lang/aa-ER/admin/custom_fields/general.php
index af5d17660d..1ead9666e0 100644
--- a/resources/lang/aa-ER/admin/custom_fields/general.php
+++ b/resources/lang/aa-ER/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'crwdns6501:0crwdne6501:0',
'field' => 'crwdns1487:0crwdne1487:0',
'about_fieldsets_title' => 'crwdns1488:0crwdne1488:0',
- 'about_fieldsets_text' => 'crwdns13508:0crwdne13508:0',
+ 'about_fieldsets_text' => 'crwdns13746:0crwdne13746:0',
'custom_format' => 'crwdns6505:0crwdne6505:0',
'encrypt_field' => 'crwdns1792:0crwdne1792:0',
'encrypt_field_help' => 'crwdns1683:0crwdne1683:0',
diff --git a/resources/lang/aa-ER/admin/depreciations/general.php b/resources/lang/aa-ER/admin/depreciations/general.php
index f1726a13ec..59cba9af24 100644
--- a/resources/lang/aa-ER/admin/depreciations/general.php
+++ b/resources/lang/aa-ER/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'crwdns819:0crwdne819:0',
- 'about_depreciations' => 'crwdns820:0crwdne820:0',
+ 'about_depreciations' => 'crwdns13748:0crwdne13748:0',
'asset_depreciations' => 'crwdns821:0crwdne821:0',
'create' => 'crwdns1799:0crwdne1799:0',
'depreciation_name' => 'crwdns823:0crwdne823:0',
diff --git a/resources/lang/aa-ER/admin/hardware/form.php b/resources/lang/aa-ER/admin/hardware/form.php
index 04ac2b290d..ea5358e2aa 100644
--- a/resources/lang/aa-ER/admin/hardware/form.php
+++ b/resources/lang/aa-ER/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'crwdns12226:0crwdne12226:0',
'select_statustype' => 'crwdns1167:0crwdne1167:0',
'serial' => 'crwdns716:0crwdne716:0',
+ 'serial_required' => 'crwdns13774:0crwdne13774:0',
+ 'serial_required_post_model_update' => 'crwdns13776:0crwdne13776:0',
'status' => 'crwdns717:0crwdne717:0',
'tag' => 'crwdns719:0crwdne719:0',
'update' => 'crwdns720:0crwdne720:0',
diff --git a/resources/lang/aa-ER/admin/hardware/general.php b/resources/lang/aa-ER/admin/hardware/general.php
index 79f3627059..0adbf285d1 100644
--- a/resources/lang/aa-ER/admin/hardware/general.php
+++ b/resources/lang/aa-ER/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'crwdns1697:0crwdne1697:0',
'not_requestable' => 'crwdns6555:0crwdne6555:0',
'requestable_status_warning' => 'crwdns11681:0crwdne11681:0',
+ 'require_serial' => 'crwdns13770:0crwdne13770:0',
+ 'require_serial_help' => 'crwdns13772:0crwdne13772:0',
'restore' => 'crwdns1178:0crwdne1178:0',
'pending' => 'crwdns1170:0crwdne1170:0',
'undeployable' => 'crwdns1171:0crwdne1171:0',
diff --git a/resources/lang/aa-ER/admin/licenses/message.php b/resources/lang/aa-ER/admin/licenses/message.php
index e0173d7e89..af2175d7ae 100644
--- a/resources/lang/aa-ER/admin/licenses/message.php
+++ b/resources/lang/aa-ER/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'crwdns11902:0crwdne11902:0',
'mismatch' => 'crwdns12574:0crwdne12574:0',
'unavailable' => 'crwdns12576:0crwdne12576:0',
+ 'license_is_inactive' => 'crwdns13798:0crwdne13798:0',
),
'checkin' => array(
'error' => 'crwdns948:0crwdne948:0',
- 'not_reassignable' => 'crwdns12802:0crwdne12802:0',
+ 'not_reassignable' => 'crwdns13778:0crwdne13778:0',
'success' => 'crwdns949:0crwdne949:0'
),
diff --git a/resources/lang/aa-ER/admin/locations/message.php b/resources/lang/aa-ER/admin/locations/message.php
index 2004674f47..e9a46eed5b 100644
--- a/resources/lang/aa-ER/admin/locations/message.php
+++ b/resources/lang/aa-ER/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'crwdns650:0crwdne650:0',
- 'assoc_users' => 'crwdns13150:0crwdne13150:0',
+ 'assoc_users' => 'crwdns13788:0crwdne13788:0',
'assoc_assets' => 'crwdns1404:0crwdne1404:0',
'assoc_child_loc' => 'crwdns1405:0crwdne1405:0',
'assigned_assets' => 'crwdns11179:0crwdne11179:0',
'current_location' => 'crwdns11181:0crwdne11181:0',
'open_map' => 'crwdns12696:0crwdne12696:0',
+ 'deleted_warning' => 'crwdns13790:0crwdne13790:0',
'create' => array(
diff --git a/resources/lang/aa-ER/admin/locations/table.php b/resources/lang/aa-ER/admin/locations/table.php
index 2c0363f02d..e820619f87 100644
--- a/resources/lang/aa-ER/admin/locations/table.php
+++ b/resources/lang/aa-ER/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'crwdns644:0crwdne644:0',
'update' => 'crwdns645:0crwdne645:0',
'print_assigned' => 'crwdns6062:0crwdne6062:0',
- 'print_all_assigned' => 'crwdns6064:0crwdne6064:0',
+ 'print_inventory' => 'crwdns13792:0crwdne13792:0',
+ 'print_all_assigned' => 'crwdns13794:0crwdne13794:0',
'name' => 'crwdns646:0crwdne646:0',
'address' => 'crwdns647:0crwdne647:0',
'address2' => 'crwdns11880:0crwdne11880:0',
diff --git a/resources/lang/aa-ER/admin/models/table.php b/resources/lang/aa-ER/admin/models/table.php
index 42e084eb6a..585293b807 100644
--- a/resources/lang/aa-ER/admin/models/table.php
+++ b/resources/lang/aa-ER/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'crwdns665:0crwdne665:0',
'update' => 'crwdns666:0crwdne666:0',
'view' => 'crwdns667:0crwdne667:0',
- 'update' => 'crwdns666:0crwdne666:0',
- 'clone' => 'crwdns669:0crwdne669:0',
- 'edit' => 'crwdns670:0crwdne670:0',
+ 'clone' => 'crwdns669:0crwdne669:0',
+ 'edit' => 'crwdns670:0crwdne670:0',
);
diff --git a/resources/lang/aa-ER/admin/users/general.php b/resources/lang/aa-ER/admin/users/general.php
index 42eec8d2be..59cc131b6d 100644
--- a/resources/lang/aa-ER/admin/users/general.php
+++ b/resources/lang/aa-ER/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'crwdns11345:0crwdne11345:0',
'auto_assign_help' => 'crwdns11347:0crwdne11347:0',
'software_user' => 'crwdns1131:0crwdne1131:0',
- 'send_email_help' => 'crwdns5920:0crwdne5920:0',
'view_user' => 'crwdns1132:0crwdne1132:0',
'usercsv' => 'crwdns1193:0crwdne1193:0',
'two_factor_admin_optin_help' => 'crwdns1823:0crwdne1823:0',
diff --git a/resources/lang/aa-ER/general.php b/resources/lang/aa-ER/general.php
index b4fc3134a1..de07c969d3 100644
--- a/resources/lang/aa-ER/general.php
+++ b/resources/lang/aa-ER/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'crwdns1411:0crwdne1411:0',
'import_this_file' => 'crwdns11922:0crwdne11922:0',
'importing' => 'crwdns6034:0crwdne6034:0',
- 'importing_help' => 'crwdns6036:0crwdne6036:0',
+ 'importing_help' => 'crwdns13750:0crwdne13750:0',
'import-history' => 'crwdns1694:0crwdne1694:0',
'asset_maintenance' => 'crwdns1335:0crwdne1335:0',
'asset_maintenance_report' => 'crwdns1336:0crwdne1336:0',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'crwdns1092:0crwdne1092:0',
'total_accessories' => 'crwdns1771:0crwdne1771:0',
'total_consumables' => 'crwdns1772:0crwdne1772:0',
+ 'total_cost' => 'crwdns13822:0crwdne13822:0',
'type' => 'crwdns1203:0crwdne1203:0',
'undeployable' => 'crwdns1093:0crwdne1093:0',
'unknown_admin' => 'crwdns1094:0crwdne1094:0',
'unknown_user' => 'crwdns13404:0crwdne13404:0',
+ 'unit_cost' => 'crwdns13820:0crwdne13820:0',
'username' => 'crwdns10464:0crwdne10464:0',
'update' => 'crwdns1341:0crwdne1341:0',
'updating_item' => 'crwdns12804:0crwdne12804:0',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'crwdns5988:0crwdne5988:0',
'accept' => 'crwdns6016:0crwdne6016:0',
'i_accept' => 'crwdns6018:0crwdne6018:0',
- 'i_decline_item' => 'crwdns13490:0crwdne13490:0',
- 'i_accept_item' => 'crwdns13492:0crwdne13492:0',
+ 'i_accept_with_count' => 'crwdns13780:0crwdne13780:0',
+ 'i_decline_item' => 'crwdns13782:0crwdne13782:0',
+ 'i_accept_item' => 'crwdns13784:0crwdne13784:0',
'i_decline' => 'crwdns6020:0crwdne6020:0',
+ 'i_decline_with_count' => 'crwdns13786:0crwdne13786:0',
'accept_decline' => 'crwdns6163:0crwdne6163:0',
'sign_tos' => 'crwdns6022:0crwdne6022:0',
'clear_signature' => 'crwdns6024:0crwdne6024:0',
@@ -393,6 +397,7 @@ return [
'permissions' => 'crwdns6223:0crwdne6223:0',
'managed_ldap' => 'crwdns6225:0crwdne6225:0',
'export' => 'crwdns6227:0crwdne6227:0',
+ 'export_all_to_csv' => 'crwdns13832:0crwdne13832:0',
'ldap_sync' => 'crwdns6229:0crwdne6229:0',
'ldap_user_sync' => 'crwdns6231:0crwdne6231:0',
'synchronize' => 'crwdns6233:0crwdne6233:0',
@@ -482,7 +487,9 @@ return [
'update_existing_values' => 'crwdns11457:0crwdne11457:0',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'crwdns11493:0crwdne11493:0',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'crwdns11495:0crwdne11495:0',
- 'send_welcome_email_to_users' => 'crwdns13514:0crwdne13514:0',
+ 'send_welcome_email_to_users' => 'crwdns13752:0crwdne13752:0',
+ 'send_welcome_email_help' => 'crwdns13754:0crwdne13754:0',
+ 'send_welcome_email_import_help' => 'crwdns13756:0crwdne13756:0',
'send_email' => 'crwdns12108:0crwdne12108:0',
'call' => 'crwdns12110:0crwdne12110:0',
'back_before_importing' => 'crwdns11461:0crwdne11461:0',
@@ -512,7 +519,10 @@ return [
'item_notes' => 'crwdns11635:0crwdne11635:0',
'item_name_var' => 'crwdns11637:0crwdne11637:0',
'error_user_company' => 'crwdns11833:0crwdne11833:0',
+ 'error_user_company_multiple' => 'crwdns13828:0crwdne13828:0',
'error_user_company_accept_view' => 'crwdns11787:0crwdne11787:0',
+ 'error_assets_already_checked_out' => 'crwdns13826:0crwdne13826:0',
+ 'assigned_assets_removed' => 'crwdns13830:0crwdne13830:0',
'importer' => [
'checked_out_to_fullname' => 'crwdns11639:0crwdne11639:0',
'checked_out_to_first_name' => 'crwdns11641:0crwdne11641:0',
@@ -584,6 +594,8 @@ return [
'components' => 'crwdns12146:0crwdne12146:0',
],
+ 'show_inactive' => 'crwdns13818:0crwdne13818:0',
+ 'show_expiring' => 'crwdns13834:0crwdne13834:0',
'more_info' => 'crwdns12288:0crwdne12288:0',
'quickscan_bulk_help' => 'crwdns12290:0crwdne12290:0',
'whoops' => 'crwdns12304:0crwdne12304:0',
@@ -608,6 +620,8 @@ return [
'use_cloned_no_image_help' => 'crwdns13526:0crwdne13526:0',
'footer_credit' => 'crwdns13282:0crwdne13282:0',
'set_password' => 'crwdns13494:0crwdne13494:0',
+ 'upload_deleted' => 'crwdns13768:0crwdne13768:0',
+ 'child_locations' => 'crwdns13796:0crwdne13796:0',
// Add form placeholders here
'placeholders' => [
@@ -624,11 +638,11 @@ return [
'site_default' => 'crwdns13057:0crwdne13057:0',
'default_blue' => 'crwdns13059:0crwdne13059:0',
'blue_dark' => 'crwdns13061:0crwdne13061:0',
- 'green' => 'crwdns13063:0crwdne13063:0',
+ 'green' => 'crwdns13758:0crwdne13758:0',
'green_dark' => 'crwdns13065:0crwdne13065:0',
- 'red' => 'crwdns13067:0crwdne13067:0',
+ 'red' => 'crwdns13760:0crwdne13760:0',
'red_dark' => 'crwdns13069:0crwdne13069:0',
- 'orange' => 'crwdns13071:0crwdne13071:0',
+ 'orange' => 'crwdns13762:0crwdne13762:0',
'orange_dark' => 'crwdns13073:0crwdne13073:0',
'black' => 'crwdns13075:0crwdne13075:0',
'black_dark' => 'crwdns13077:0crwdne13077:0',
diff --git a/resources/lang/aa-ER/mail.php b/resources/lang/aa-ER/mail.php
index 6e7e2d16aa..38ed4cae17 100644
--- a/resources/lang/aa-ER/mail.php
+++ b/resources/lang/aa-ER/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'crwdns6004:0crwdne6004:0',
- 'Accessory_Checkout_Notification' => 'crwdns12060:0crwdne12060:0',
- 'Asset_Checkin_Notification' => 'crwdns13620:0crwdne13620:0',
- 'Asset_Checkout_Notification' => 'crwdns13622:0crwdne13622:0',
+ 'Accessory_Checkout_Notification' => 'crwdns13800:0crwdne13800:0',
+ 'Asset_Checkin_Notification' => 'crwdns13764:0crwdne13764:0',
+ 'Asset_Checkout_Notification' => 'crwdns13766:0crwdne13766:0',
'Confirm_Accessory_Checkin' => 'crwdns5992:0crwdne5992:0',
'Confirm_Asset_Checkin' => 'crwdns5990:0crwdne5990:0',
'Confirm_component_checkin' => 'crwdns13500:0crwdne13500:0',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'crwdns6012:0crwdne6012:0',
'Expected_Checkin_Notification' => 'crwdns6030:0crwdne6030:0',
'Expected_Checkin_Report' => 'crwdns6028:0crwdne6028:0',
- 'Expiring_Assets_Report' => 'crwdns1732:0crwdne1732:0',
- 'Expiring_Licenses_Report' => 'crwdns1733:0crwdne1733:0',
+ 'Expiring_Assets_Report' => 'crwdns13808:0crwdne13808:0',
+ 'Expiring_Licenses_Report' => 'crwdns13810:0crwdne13810:0',
'Item_Request_Canceled' => 'crwdns1739:0crwdne1739:0',
'Item_Requested' => 'crwdns1740:0crwdne1740:0',
'License_Checkin_Notification' => 'crwdns6008:0crwdne6008:0',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'crwdns1745:0crwdne1745:0',
'a_user_canceled' => 'crwdns1704:0crwdne1704:0',
'a_user_requested' => 'crwdns1705:0crwdne1705:0',
- 'acceptance_asset_accepted_to_user' => 'crwdns13478:0crwdne13478:0',
+ 'acceptance_asset_accepted_to_user' => 'crwdns13824:0crwdne13824:0',
'acceptance_asset_accepted' => 'crwdns10552:0crwdne10552:0',
'acceptance_asset_declined' => 'crwdns10554:0crwdne10554:0',
'send_pdf_copy' => 'crwdns13480:0crwdne13480:0',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'crwdns12716:0crwdne12716:0',
'asset_requested' => 'crwdns1711:0crwdne1711:0',
'asset_tag' => 'crwdns6068:0crwdne6068:0',
- 'assets_warrantee_alert' => 'crwdns6313:0crwdne6313:0',
+ 'assets_warrantee_alert' => 'crwdns13812:0crwdne13812:0',
'assigned_to' => 'crwdns1714:0crwdne1714:0',
+ 'eol' => 'crwdns13814:0crwdne13814:0',
'best_regards' => 'crwdns1715:0crwdne1715:0',
'canceled' => 'crwdns12718:0crwdne12718:0',
'checkin_date' => 'crwdns12720:0crwdne12720:0',
@@ -58,6 +59,7 @@ return [
'days' => 'crwdns1729:0crwdne1729:0',
'expecting_checkin_date' => 'crwdns12724:0crwdne12724:0',
'expires' => 'crwdns1731:0crwdne1731:0',
+ 'terminates' => 'crwdns13836:0crwdne13836:0',
'following_accepted' => 'crwdns13434:0crwdne13434:0',
'following_declined' => 'crwdns13436:0crwdne13436:0',
'hello' => 'crwdns1734:0crwdne1734:0',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'crwdns11243:0crwdne11243:0',
'item' => 'crwdns12726:0crwdne12726:0',
'item_checked_reminder' => 'crwdns12322:0crwdne12322:0',
- 'license_expiring_alert' => 'crwdns2048:0crwdne2048:0',
+ 'license_expiring_alert' => 'crwdns13816:0crwdne13816:0',
'link_to_update_password' => 'crwdns1742:0crwdne1742:0',
'login' => 'crwdns12792:0crwdne12792:0',
'login_first_admin' => 'crwdns1743:0crwdne1743:0',
'low_inventory_alert' => 'crwdns2046:0crwdne2046:0',
'min_QTY' => 'crwdns1746:0crwdne1746:0',
'name' => 'crwdns1747:0crwdne1747:0',
- 'new_item_checked' => 'crwdns1748:0crwdne1748:0',
- 'new_item_checked_with_acceptance' => 'crwdns13007:0crwdne13007:0',
- 'new_item_checked_location' => 'crwdns13744:0crwdne13744:0',
+ 'new_item_checked' => 'crwdns13802:0crwdne13802:0',
+ 'new_item_checked_with_acceptance' => 'crwdns13804:0crwdne13804:0',
+ 'new_item_checked_location' => 'crwdns13806:0crwdne13806:0',
'recent_item_checked' => 'crwdns13009:0crwdne13009:0',
'notes' => 'crwdns12070:0crwdne12070:0',
'password' => 'crwdns12728:0crwdne12728:0',
diff --git a/resources/lang/af-ZA/admin/custom_fields/general.php b/resources/lang/af-ZA/admin/custom_fields/general.php
index d71a56b5dd..2a61933605 100644
--- a/resources/lang/af-ZA/admin/custom_fields/general.php
+++ b/resources/lang/af-ZA/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'veld',
'about_fieldsets_title' => 'Oor Fieldsets',
- 'about_fieldsets_text' => 'Veldstelle stel jou in staat om groepe van persoonlike velde te skep wat gereeld hergebruik word vir spesifieke tipe bates.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Enkripteer die waarde van hierdie veld in die databasis',
'encrypt_field_help' => 'WAARSKUWING: Om \'n veld te enkripteer, maak dit onondersoekbaar.',
diff --git a/resources/lang/af-ZA/admin/depreciations/general.php b/resources/lang/af-ZA/admin/depreciations/general.php
index 76710bd04f..5e73bda277 100644
--- a/resources/lang/af-ZA/admin/depreciations/general.php
+++ b/resources/lang/af-ZA/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Oor bate afskrywing',
- 'about_depreciations' => 'U kan bate-afskrywings opstel om bates te deprecieer gebaseer op reguit-waardevermindering.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Bate afskrywing',
'create' => 'Skep waardevermindering',
'depreciation_name' => 'Waardevermindering Naam',
diff --git a/resources/lang/af-ZA/admin/hardware/form.php b/resources/lang/af-ZA/admin/hardware/form.php
index 94c88a944e..f026278641 100644
--- a/resources/lang/af-ZA/admin/hardware/form.php
+++ b/resources/lang/af-ZA/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Kies Status Tipe',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'status',
'tag' => 'Bate-tag',
'update' => 'Asset Update',
diff --git a/resources/lang/af-ZA/admin/hardware/general.php b/resources/lang/af-ZA/admin/hardware/general.php
index 5eb7564352..86d7f7d7f5 100644
--- a/resources/lang/af-ZA/admin/hardware/general.php
+++ b/resources/lang/af-ZA/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'versoek',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Herstel bate',
'pending' => 'hangende',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/af-ZA/admin/licenses/message.php b/resources/lang/af-ZA/admin/licenses/message.php
index f0f12789de..2b8fc900ec 100644
--- a/resources/lang/af-ZA/admin/licenses/message.php
+++ b/resources/lang/af-ZA/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Daar was \'n probleem om die lisensie te kontroleer. Probeer asseblief weer.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Die lisensie is suksesvol nagegaan'
),
diff --git a/resources/lang/af-ZA/admin/locations/message.php b/resources/lang/af-ZA/admin/locations/message.php
index f98bedb937..ba482b6180 100644
--- a/resources/lang/af-ZA/admin/locations/message.php
+++ b/resources/lang/af-ZA/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Ligging bestaan nie.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Hierdie ligging is tans geassosieer met ten minste een bate en kan nie uitgevee word nie. Dateer asseblief jou bates op om nie meer hierdie ligging te verwys nie en probeer weer.',
'assoc_child_loc' => 'Hierdie ligging is tans die ouer van ten minste een kind se plek en kan nie uitgevee word nie. Werk asseblief jou liggings by om nie meer hierdie ligging te verwys nie en probeer weer.',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/af-ZA/admin/locations/table.php b/resources/lang/af-ZA/admin/locations/table.php
index fb01959e6d..6663c98788 100644
--- a/resources/lang/af-ZA/admin/locations/table.php
+++ b/resources/lang/af-ZA/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Skep Ligging',
'update' => 'Opdateer Plek',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Pleknaam',
'address' => 'adres',
'address2' => 'Address Line 2',
diff --git a/resources/lang/af-ZA/admin/models/table.php b/resources/lang/af-ZA/admin/models/table.php
index 32f0dcf009..3bfc1eccdf 100644
--- a/resources/lang/af-ZA/admin/models/table.php
+++ b/resources/lang/af-ZA/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Bate Modelle',
'update' => 'Update Bate Model',
'view' => 'Bekyk bate-model',
- 'update' => 'Update Bate Model',
- 'clone' => 'Klone Model',
- 'edit' => 'Wysig Model',
+ 'clone' => 'Klone Model',
+ 'edit' => 'Wysig Model',
);
diff --git a/resources/lang/af-ZA/admin/users/general.php b/resources/lang/af-ZA/admin/users/general.php
index 7f55edd7ed..d78ff4be42 100644
--- a/resources/lang/af-ZA/admin/users/general.php
+++ b/resources/lang/af-ZA/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Sagteware Uitgesoek na: naam',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'Sien gebruiker: naam',
'usercsv' => 'CSV-lêer',
'two_factor_admin_optin_help' => 'Jou huidige administrasie-instellings laat selektiewe handhawing van twee-faktor-verifikasie toe.',
diff --git a/resources/lang/af-ZA/general.php b/resources/lang/af-ZA/general.php
index b537385b6b..adf4608934 100644
--- a/resources/lang/af-ZA/general.php
+++ b/resources/lang/af-ZA/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'invoer',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Invoer Geskiedenis',
'asset_maintenance' => 'Bate Onderhoud',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'totale lisensies',
'total_accessories' => 'totale toebehore',
'total_consumables' => 'totale verbruiksgoedere',
+ 'total_cost' => 'Total Cost',
'type' => 'tipe',
'undeployable' => 'Un-verbintenis',
'unknown_admin' => 'Onbekende Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Gebruikersnaam',
'update' => 'Opdateer',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Meer inligting',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/af-ZA/mail.php b/resources/lang/af-ZA/mail.php
index 0ba3564a0d..7fae399b08 100644
--- a/resources/lang/af-ZA/mail.php
+++ b/resources/lang/af-ZA/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Verlenging van bateverslag.',
- 'Expiring_Licenses_Report' => 'Verlenging van lisensiesverslag.',
+ 'Expiring_Assets_Report' => 'Verlenging van bateverslag',
+ 'Expiring_Licenses_Report' => 'Verlenging van lisensiesverslag',
'Item_Request_Canceled' => 'Item Versoek gekanselleer',
'Item_Requested' => 'Item gevra',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Lae voorraadverslag',
'a_user_canceled' => '\'N Gebruiker het \'n itemversoek op die webwerf gekanselleer',
'a_user_requested' => '\'N Gebruiker het \'n item op die webwerf versoek',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Bate Naam',
'asset_requested' => 'Bate aangevra',
'asset_tag' => 'Bate-tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Toevertrou aan',
+ 'eol' => 'EOL',
'best_regards' => 'Beste wense,',
'canceled' => 'Gekanselleer',
'checkin_date' => 'Incheckdatum',
@@ -58,6 +59,7 @@ return [
'days' => 'dae',
'expecting_checkin_date' => 'Verwagte tjekdatum',
'expires' => 'verstryk',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'hallo',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Klik asseblief op die volgende skakel om u webtuiste te verander:',
'login' => 'Teken aan',
'login_first_admin' => 'Teken in op jou nuwe Snipe-IT-installasie deur die volgende inligting te gebruik:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'naam',
- 'new_item_checked' => '\'N Nuwe item is onder u naam nagegaan, besonderhede is hieronder.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'notas',
'password' => 'wagwoord',
diff --git a/resources/lang/am-ET/admin/custom_fields/general.php b/resources/lang/am-ET/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/am-ET/admin/custom_fields/general.php
+++ b/resources/lang/am-ET/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/am-ET/admin/depreciations/general.php b/resources/lang/am-ET/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/am-ET/admin/depreciations/general.php
+++ b/resources/lang/am-ET/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/am-ET/admin/hardware/form.php b/resources/lang/am-ET/admin/hardware/form.php
index 0664f15133..d2751343f0 100644
--- a/resources/lang/am-ET/admin/hardware/form.php
+++ b/resources/lang/am-ET/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'የንብረት መለያ',
'update' => 'Asset Update',
diff --git a/resources/lang/am-ET/admin/hardware/general.php b/resources/lang/am-ET/admin/hardware/general.php
index 69093d7020..a02408e634 100644
--- a/resources/lang/am-ET/admin/hardware/general.php
+++ b/resources/lang/am-ET/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/am-ET/admin/licenses/message.php b/resources/lang/am-ET/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/am-ET/admin/licenses/message.php
+++ b/resources/lang/am-ET/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/am-ET/admin/locations/message.php b/resources/lang/am-ET/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/am-ET/admin/locations/message.php
+++ b/resources/lang/am-ET/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/am-ET/admin/locations/table.php b/resources/lang/am-ET/admin/locations/table.php
index ba1572a0c1..3d1633c028 100644
--- a/resources/lang/am-ET/admin/locations/table.php
+++ b/resources/lang/am-ET/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'አድራሻ',
'address2' => 'Address Line 2',
diff --git a/resources/lang/am-ET/admin/models/table.php b/resources/lang/am-ET/admin/models/table.php
index 2e5c0929dd..4140e8dffc 100644
--- a/resources/lang/am-ET/admin/models/table.php
+++ b/resources/lang/am-ET/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'የንብረት ዓይነቶች',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/am-ET/admin/users/general.php b/resources/lang/am-ET/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/am-ET/admin/users/general.php
+++ b/resources/lang/am-ET/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/am-ET/general.php b/resources/lang/am-ET/general.php
index c577e4f474..4868008436 100644
--- a/resources/lang/am-ET/general.php
+++ b/resources/lang/am-ET/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/am-ET/mail.php b/resources/lang/am-ET/mail.php
index 69059c287b..d1f0512feb 100644
--- a/resources/lang/am-ET/mail.php
+++ b/resources/lang/am-ET/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'የንብረት መለያ',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/ar-SA/admin/custom_fields/general.php b/resources/lang/ar-SA/admin/custom_fields/general.php
index 2a536a2c87..b100238a1a 100644
--- a/resources/lang/ar-SA/admin/custom_fields/general.php
+++ b/resources/lang/ar-SA/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'إدارة',
'field' => 'حقل',
'about_fieldsets_title' => 'حول مجموعة الحقول',
- 'about_fieldsets_text' => '(مجموعات الحقول) تسمح لك بإنشاء مجموعات من الحقول اللتي يمكن إعادة إستخدامها مع موديل محدد.',
+ 'about_fieldsets_text' => 'مجموعات الحقول تسمح لك بإنشاء مجموعات من الحقول المخصصة التي يعاد استخدامها في كثير من الأحيان لأنواع معينة من نماذج الأصول.',
'custom_format' => 'تنسيق Regex المخصص...',
'encrypt_field' => 'تشفير قيمة هذا الحقل في قاعدة البيانات',
'encrypt_field_help' => 'تحذير: تشفير الحقل يجعله غير قابل للبحث.',
diff --git a/resources/lang/ar-SA/admin/depreciations/general.php b/resources/lang/ar-SA/admin/depreciations/general.php
index de1583d8cc..f43488746c 100644
--- a/resources/lang/ar-SA/admin/depreciations/general.php
+++ b/resources/lang/ar-SA/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'حول استهلاك الأصول',
- 'about_depreciations' => 'يمكنك إعداد استهلاك الأصول لخفض قيمة الأصول على اساس القسط الثابت للاستهلاك.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'استهلاك الأصول',
'create' => 'إنشاء الاستهلاك',
'depreciation_name' => 'اسم الاستهلاك',
diff --git a/resources/lang/ar-SA/admin/hardware/form.php b/resources/lang/ar-SA/admin/hardware/form.php
index 72415bc7a9..c72c321bec 100644
--- a/resources/lang/ar-SA/admin/hardware/form.php
+++ b/resources/lang/ar-SA/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'حدد نوع الحالة',
'serial' => 'التسلسل',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'الحالة',
'tag' => 'ترميز الأصل',
'update' => 'تحديث الأصل',
diff --git a/resources/lang/ar-SA/admin/hardware/general.php b/resources/lang/ar-SA/admin/hardware/general.php
index 29dcdeb5bf..6b35316953 100644
--- a/resources/lang/ar-SA/admin/hardware/general.php
+++ b/resources/lang/ar-SA/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'تم الطلب',
'not_requestable' => 'غير مطلوب',
'requestable_status_warning' => 'لا تقم بتغيير حالة الطلب',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'استعادة الأصل',
'pending' => 'قيد الانتظار',
'undeployable' => 'غير قابل للتوزيع',
diff --git a/resources/lang/ar-SA/admin/licenses/message.php b/resources/lang/ar-SA/admin/licenses/message.php
index fb92d4821a..6fca1c2e72 100644
--- a/resources/lang/ar-SA/admin/licenses/message.php
+++ b/resources/lang/ar-SA/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'لا توجد مقاعد ترخيص كافية متاحة للدفع',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'حدثت مشكلة في التحقق من الترخيص. يرجى إعادة المحاولة.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'تم ادخال الترخيص بنجاح'
),
diff --git a/resources/lang/ar-SA/admin/locations/message.php b/resources/lang/ar-SA/admin/locations/message.php
index 24451b2ff0..e02a1a3293 100644
--- a/resources/lang/ar-SA/admin/locations/message.php
+++ b/resources/lang/ar-SA/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'الموقع غير موجود.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'هذا الموقع مرتبط حاليا بمادة عرض واحدة على الأقل ولا يمكن حذفها. يرجى تحديث مواد العرض لم تعد تشير إلى هذا الموقع ثم أعد المحاولة. ',
'assoc_child_loc' => 'هذا الموقع هو حاليا أحد الوالدين لموقع طفل واحد على الأقل ولا يمكن حذفه. يرجى تحديث مواقعك لم تعد تشير إلى هذا الموقع ثم أعد المحاولة.',
'assigned_assets' => 'الأصول المعينة',
'current_location' => 'الموقع الحالي',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ar-SA/admin/locations/table.php b/resources/lang/ar-SA/admin/locations/table.php
index 8b1790aab1..814b5aa3be 100644
--- a/resources/lang/ar-SA/admin/locations/table.php
+++ b/resources/lang/ar-SA/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'إنشاء موقع',
'update' => 'تحديث الموقع',
'print_assigned' => 'طباعة كل الممتلكات',
- 'print_all_assigned' => 'طباعة كل المعين',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'إسم الموقع',
'address' => 'العنوان',
'address2' => 'سطر العنوان 2',
diff --git a/resources/lang/ar-SA/admin/models/table.php b/resources/lang/ar-SA/admin/models/table.php
index d1f27a13fc..15931a4645 100644
--- a/resources/lang/ar-SA/admin/models/table.php
+++ b/resources/lang/ar-SA/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'موديلات الأصول',
'update' => 'تحديث موديل الأصول',
'view' => 'عرض موديل الأصول',
- 'update' => 'تحديث موديل الأصول',
- 'clone' => 'استنساخ الموديل',
- 'edit' => 'تعديل الموديل',
+ 'clone' => 'استنساخ الموديل',
+ 'edit' => 'تعديل الموديل',
);
diff --git a/resources/lang/ar-SA/admin/users/general.php b/resources/lang/ar-SA/admin/users/general.php
index 4f04011670..9b5e1f5ebb 100644
--- a/resources/lang/ar-SA/admin/users/general.php
+++ b/resources/lang/ar-SA/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'تضمين هذا المستخدم عند التعيين التلقائي للتراخيص المؤهلة',
'auto_assign_help' => 'تخطي هذا المستخدم في التعيين التلقائي للترخيص',
'software_user' => 'البرامج المخرجة الى: :name',
- 'send_email_help' => 'يجب عليك توفير عنوان بريد إلكتروني لهذا المستخدم لإرسال بيانات اعتماده. لا يمكن إرسال بيانات الاعتماد البريدية إلا عند إنشاء المستخدم. يتم تخزين كلمات المرور في تجزئة ذات اتجاه واحد ولا يمكن استرجاعها بمجرد الحفظ.',
'view_user' => 'عرض المستخدم :name',
'usercsv' => 'ملف CSV',
'two_factor_admin_optin_help' => 'تسمح إعدادات المشرف الحالية بإنفاذ انتقائي للمصادقة الثنائية.',
diff --git a/resources/lang/ar-SA/general.php b/resources/lang/ar-SA/general.php
index e8fe666e17..8deeb2f380 100644
--- a/resources/lang/ar-SA/general.php
+++ b/resources/lang/ar-SA/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'استيراد',
'import_this_file' => 'حقول الخريطة ومعالجة هذا الملف',
'importing' => 'الاستيراد',
- 'importing_help' => 'يمكنك استيراد الأصول، الملحقات، التراخيص، المكونات، المواد الاستهلاكية، والمستخدمين عبر ملف CSV.
يجب أن تكون CSV محددة بفواصل وأن يتم تنسيقها مع رؤوس تطابق تلك الموجودة في عينة CSVs في الوثائق.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'استيراد الأرشيف',
'asset_maintenance' => 'صيانة الأصول',
'asset_maintenance_report' => 'تقرير صيانة الأصول',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'مجموع التراخيص',
'total_accessories' => 'مجموع الملحقات',
'total_consumables' => 'مجموع المواد الاستهلاكية',
+ 'total_cost' => 'Total Cost',
'type' => 'اكتب',
'undeployable' => 'غير قابلة للتوزيع',
'unknown_admin' => 'إداري غير معروف',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'اسم المستخدم',
'update' => 'تحديث',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'مراجعة الحسابات المتأخرة',
'accept' => 'قبول :asset',
'i_accept' => 'قبول',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'أنا أرفض',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'قبول/رفض',
'sign_tos' => 'قم بتسجيل الدخول أدناه للإشارة إلى أنك توافق على شروط الخدمة:',
'clear_signature' => 'مسح التوقيع',
@@ -394,6 +398,7 @@ return [
'permissions' => 'الأذونات',
'managed_ldap' => '(تدار عبر LDAP)',
'export' => 'تصدير',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'مزامنة LDAP',
'ldap_user_sync' => 'مزامنة مستخدم LDAP',
'synchronize' => 'مزامنة',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'تحديث القيم الموجودة؟',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'تم تعطيل إنشاء علامات الأصول التزايدية التلقائية لذلك يجب أن يكون لجميع الصفوف عمود "علامة الأصول" مأهول.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'ملاحظة: تم تمكين إنشاء علامات الأصول التزايدية التلقائية لذلك سيتم إنشاء أصول للصفوف التي لا تحتوي على "علامة الأصول" مأهولة. الصفوف التي تحتوي على "علامة أصول" مأهولة سيتم تحديثها مع المعلومات المقدمة.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'إرسال البريد الإلكتروني',
'call' => 'رقم المكالمة',
'back_before_importing' => 'النسخ الاحتياطي قبل الاستيراد؟',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item ملاحظات',
'item_name_var' => ':إسم العنصر',
'error_user_company' => 'لا تتطابق الشركة المستهدفة وشركة الأصول',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'الأصل الذي تم تعيينه لك ينتمي إلى شركة أخرى لذلك لا يمكنك قبوله أو رفضه، يرجى التحقق من المدير الخاص بك',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'تم الخروج إلى: الاسم الكامل',
'checked_out_to_first_name' => 'تم الخروج إلى: الاسم الأول',
@@ -585,6 +595,8 @@ return [
'components' => ':count مكون :count مكونات',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'المزيد من المعلومات',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/ar-SA/mail.php b/resources/lang/ar-SA/mail.php
index b0fe6a421d..1d6ccb27df 100644
--- a/resources/lang/ar-SA/mail.php
+++ b/resources/lang/ar-SA/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'تم تسحيل الملحق',
- 'Accessory_Checkout_Notification' => 'تم التحقق من الملحق',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'تأكيد تسجيل الأصول',
'Confirm_Asset_Checkin' => 'تأكيد تسجيل الأصول',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'من المقرر أن يتم التحقق من الأصول التي تم إخراجها إليك في :date',
'Expected_Checkin_Notification' => 'تذكير: تاريخ تحقق :name يقترب من الموعد النهائي',
'Expected_Checkin_Report' => 'تقرير تسجيل الأصول المتوقع',
- 'Expiring_Assets_Report' => 'تقرير الأصول المنتهية الصلاحية.',
- 'Expiring_Licenses_Report' => 'تقرير التراخيص المنتهية الصلاحية.',
+ 'Expiring_Assets_Report' => 'تقرير الأصول المنتهية الصلاحية',
+ 'Expiring_Licenses_Report' => 'تقرير التراخيص المنتهية الصلاحية',
'Item_Request_Canceled' => 'تم إلغاء طلب العنصر',
'Item_Requested' => 'العنصر المطلوب',
'License_Checkin_Notification' => 'تم تسجيل الرخصة',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'تقرير المخزون المنخفض',
'a_user_canceled' => 'ألغى المستخدم طلب عنصر على الموقع',
'a_user_requested' => 'طلب مستخدم عنصر على الموقع',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'قام مستخدم بقبول عنصر',
'acceptance_asset_declined' => 'قام مستخدم برفض عنصر',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'اسم الأصل',
'asset_requested' => 'تم طلب مادة العرض',
'asset_tag' => 'وسم الأصل',
- 'assets_warrantee_alert' => 'هناك :count أصل مع ضمان تنتهي صلاحيته في :threshold أيام. هناك :count أصول مع ضمانات تنتهي صلاحيتها في :threshold أيام.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'عينت الى',
+ 'eol' => 'نهاية العمر',
'best_regards' => 'أفضل التحيات،',
'canceled' => 'ملغى',
'checkin_date' => 'تاريخ الادخال',
@@ -58,6 +59,7 @@ return [
'days' => 'أيام',
'expecting_checkin_date' => 'تاريخ الادخال المتوقع',
'expires' => 'ينتهي',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'مرحبا',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'تقرير المخزون',
'item' => 'عنصر',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'هنالك :count رخص سوف تنتهي في الأيام :threshold القادمة.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'يرجى النقر على الرابط التالي لتحديث كلمة المرور الخاصة بك على :web :',
'login' => 'الدخول',
'login_first_admin' => 'قم بتسجيل الدخول إلى التثبيت الجديد من Snipe-IT باستخدام البيانات أدناه:',
'low_inventory_alert' => 'هنالك :count عناصر أقل من الحد الأدنى للمخزون أول سوف تصبح أقل منه قريباً.',
'min_QTY' => 'دقيقة الكمية',
'name' => 'اسم',
- 'new_item_checked' => 'تم فحص عنصر جديد تحت اسمك، التفاصيل أدناه.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'ملاحظات',
'password' => 'كلمة المرور',
diff --git a/resources/lang/bg-BG/admin/custom_fields/general.php b/resources/lang/bg-BG/admin/custom_fields/general.php
index 81412caa4c..dde8a6c5a2 100644
--- a/resources/lang/bg-BG/admin/custom_fields/general.php
+++ b/resources/lang/bg-BG/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Управление',
'field' => 'Поле',
'about_fieldsets_title' => 'Относно Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets позволяват създаването на групи от персонализирани полета, които се използват и преизползват често за специфични типове модели на активи.',
+ 'about_fieldsets_text' => '"Група от полета" позволяват създаването на групи от персонализирани полета, които се използват и преизползват често за специфични типове модели на активи.',
'custom_format' => 'Персонализиран формат...',
'encrypt_field' => 'Шифроване на стойността на това поле в базата данни',
'encrypt_field_help' => 'ВНИМАНИЕ: Шифроване на поле го прави невалидно за търсене.',
diff --git a/resources/lang/bg-BG/admin/depreciations/general.php b/resources/lang/bg-BG/admin/depreciations/general.php
index af306688c8..3d47555ed4 100644
--- a/resources/lang/bg-BG/admin/depreciations/general.php
+++ b/resources/lang/bg-BG/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Относно амортизацията на активи',
- 'about_depreciations' => 'Тук можете да конфигурирате линейна амортизация на активи във времето.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Амортизация на активи',
'create' => 'Създаване на амортизация',
'depreciation_name' => 'Амортизация',
diff --git a/resources/lang/bg-BG/admin/hardware/form.php b/resources/lang/bg-BG/admin/hardware/form.php
index a35a322d42..2133e29653 100644
--- a/resources/lang/bg-BG/admin/hardware/form.php
+++ b/resources/lang/bg-BG/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Отидете на Checked Out to',
'select_statustype' => 'Избиране на тип на статуса',
'serial' => 'Сериен номер',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Статус',
'tag' => 'Инвентарен номер',
'update' => 'Обновяване на актив',
diff --git a/resources/lang/bg-BG/admin/hardware/general.php b/resources/lang/bg-BG/admin/hardware/general.php
index 47bdf43a08..aea188fb5d 100644
--- a/resources/lang/bg-BG/admin/hardware/general.php
+++ b/resources/lang/bg-BG/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Изискан',
'not_requestable' => 'Не може да бъде изискан',
'requestable_status_warning' => 'Да не се сменя статуса за изискване',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Възстановяване на актив',
'pending' => 'Предстоящ',
'undeployable' => 'Не може да бъде предоставян',
diff --git a/resources/lang/bg-BG/admin/licenses/message.php b/resources/lang/bg-BG/admin/licenses/message.php
index 37482e141f..2cffdf4217 100644
--- a/resources/lang/bg-BG/admin/licenses/message.php
+++ b/resources/lang/bg-BG/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Няма достатъчно лицензи за изписване',
'mismatch' => 'Броя лицензни места не отговаря на броя лицензи',
'unavailable' => 'Този лиценз за работно място не е наличен за изписване.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Възникна проблем при вписването на лиценза. Моля, опитайте отново.',
- 'not_reassignable' => 'Лиценза не може да се прехвърля',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Лицензът е вписан'
),
diff --git a/resources/lang/bg-BG/admin/locations/message.php b/resources/lang/bg-BG/admin/locations/message.php
index d1e30c7bd1..b5625a6ccc 100644
--- a/resources/lang/bg-BG/admin/locations/message.php
+++ b/resources/lang/bg-BG/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Местоположението не съществува.',
- 'assoc_users' => 'Това местоположение не може да бъде изтрито, защото има поне един запис на актив или потребител, зачислен към него или съдържа под локаций. Моля обновете вашите записи, така че да не съдържат това местоположение и пробвайте да го изтриете отново. ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Местоположението е свързано с поне един актив и не може да бъде изтрито. Моля, актуализирайте активите, така че да не са свързани с това местоположение и опитайте отново. ',
'assoc_child_loc' => 'В избраното местоположение е присъединено едно или повече местоположения. Моля преместете ги в друго и опитайте отново.',
'assigned_assets' => 'Изписани Активи',
'current_location' => 'Текущо местоположение',
'open_map' => 'Отвори в :map_provider_icon карти',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/bg-BG/admin/locations/table.php b/resources/lang/bg-BG/admin/locations/table.php
index a92d618571..694293feac 100644
--- a/resources/lang/bg-BG/admin/locations/table.php
+++ b/resources/lang/bg-BG/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Създаване на местоположение',
'update' => 'Обновяване на местоположение',
'print_assigned' => 'Печат',
- 'print_all_assigned' => 'Печат на всички отдадени',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Местоположение',
'address' => 'Aдрес',
'address2' => 'Адрес ред 2',
diff --git a/resources/lang/bg-BG/admin/models/table.php b/resources/lang/bg-BG/admin/models/table.php
index 017c1635b9..734a30ac3a 100644
--- a/resources/lang/bg-BG/admin/models/table.php
+++ b/resources/lang/bg-BG/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Модели на активи',
'update' => 'Обновяване на модел на актив',
'view' => 'Преглед на модел на актив',
- 'update' => 'Обновяване на модел на актив',
- 'clone' => 'Копиране на модел',
- 'edit' => 'Редакция на модел',
+ 'clone' => 'Копиране на модел',
+ 'edit' => 'Редакция на модел',
);
diff --git a/resources/lang/bg-BG/admin/users/general.php b/resources/lang/bg-BG/admin/users/general.php
index 9d1511f1cb..c9a21260f3 100644
--- a/resources/lang/bg-BG/admin/users/general.php
+++ b/resources/lang/bg-BG/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Включи този потребител при автоматичното асоцииране на лицензи',
'auto_assign_help' => 'Не включвай този потребител при автоматичното асоцииране на лицензи',
'software_user' => 'Софтуерни продукти, изписани на :name',
- 'send_email_help' => 'Трябва да предоставите е-майл адрес за този потребител за да му се изпратят името и паролата. Изпращането на име и парола може да стане при създаването на потребителя. Паролите се съхраняват криптирани и не могат да се възстановят.',
'view_user' => 'Преглед на потребител :name',
'usercsv' => 'CSV файл',
'two_factor_admin_optin_help' => 'Текущите настройки на администратор позволяват избирателно прилагане на двуфакторова автентификация. ',
diff --git a/resources/lang/bg-BG/general.php b/resources/lang/bg-BG/general.php
index fa8f137e65..3adf25661b 100644
--- a/resources/lang/bg-BG/general.php
+++ b/resources/lang/bg-BG/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Зареждане',
'import_this_file' => 'Асоциирайте полетата и обработете този файл',
'importing' => 'Импортиране',
- 'importing_help' => 'Може да импортирате активи, аксесоари, лицензи, компоненти, консумативи и потребители чрез CSV файл.
CSV файла трябва да е разделен със запетая и форматирани колони, като тези от примерен CSV файл.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'История на въвеждане',
'asset_maintenance' => 'Поддръжка на активи',
'asset_maintenance_report' => 'Справка за поддръжка на активи',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'общо лицензи',
'total_accessories' => 'Общ брой аксесоари',
'total_consumables' => 'Общ брой консумативи',
+ 'total_cost' => 'Total Cost',
'type' => 'Тип',
'undeployable' => 'Не може да бъде предоставян',
'unknown_admin' => 'Непознат администратор',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Потребител',
'update' => 'Обновяване',
'updating_item' => 'Обновяване :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Просрочен Одит',
'accept' => 'Приеми :asset',
'i_accept' => 'Съгласен съм',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Отказ',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Премане/отказване',
'sign_tos' => 'Подпишете се за да се съгласите с условията за ползване:',
'clear_signature' => 'Изчисти подписа',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Права за достъп',
'managed_ldap' => '(Управляван през LDAP)',
'export' => 'Експорт',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP синхронизация',
'ldap_user_sync' => 'LDAP синхронизация на потребител',
'synchronize' => 'Синхронизиране',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Обнови същестуващите стойности?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Автоматичното номериране на активите е забранено, така че всички редове трябва да имат попълнен номер на актив.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Бележка: Генериране на пореден номер на актив е включено, така че активите, които нямат номер ще бъдат зъздадени, докато тези, които имат номер ще бъдат обновени с предоставената информация.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Изпращане на имейл',
'call' => 'Обаждане',
'back_before_importing' => 'Архивно копие преди импортиране?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item бележки',
'item_name_var' => ':item Име',
'error_user_company' => 'Изписването към посочената фирма и асоциираната фирма към артикула не съвпадат',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Актива заведен на вас пренадлежи към друга фирма, затова не можете да го приемете или откажете. Свържете се с вашият администратор',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Изписан на: Full Name',
'checked_out_to_first_name' => 'Изписан на: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Компонент|:count Компоненти',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Повече информация',
'quickscan_bulk_help' => 'Поставянето на отметка в това квадратче ще редактира записа на актива, за да отрази това ново местоположение. Оставянето му без отметка просто ще отбележи местоположението в журнала за проверка. Обърнете внимание, че ако този актив бъде извлечен, той няма да промени местоположението на лицето, актива или местоположението, към които е извлечен.',
'whoops' => 'Упс!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Настройки по подразбиране на сайта',
'default_blue' => 'По подразбиране Синьо',
'blue_dark' => 'Синьо (тъмен режим)',
- 'green' => 'Тъмно Зелено',
+ 'green' => 'Green',
'green_dark' => 'Зелено (тъмен режим)',
- 'red' => 'Тъмно Червено',
+ 'red' => 'Red',
'red_dark' => 'Червено (тъмен режим)',
- 'orange' => 'Тъмно Оранжево',
+ 'orange' => 'Orange',
'orange_dark' => 'Оранжево (тъмен режим)',
'black' => 'Черно',
'black_dark' => 'Черно (тъмен режим)',
diff --git a/resources/lang/bg-BG/mail.php b/resources/lang/bg-BG/mail.php
index 73b72750ea..9b4a9443e1 100644
--- a/resources/lang/bg-BG/mail.php
+++ b/resources/lang/bg-BG/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Аксесоарат е вписан',
- 'Accessory_Checkout_Notification' => 'Изписани Аксесоари',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Потвърждение при връщане на аксесоар',
'Confirm_Asset_Checkin' => 'Потвърждение при връщане на актив',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Наближава срока за връщане на актив който е заведен на Вас, трябва да се върна на :date',
'Expected_Checkin_Notification' => 'Напомняне: :name крайната дата за вписване наближава',
'Expected_Checkin_Report' => 'Очакван рапорт за вписване на актив',
- 'Expiring_Assets_Report' => 'Доклад за изтичащи активи.',
- 'Expiring_Licenses_Report' => 'Доклад за изтичащи лицензи.',
+ 'Expiring_Assets_Report' => 'Доклад за изтичащи активи',
+ 'Expiring_Licenses_Report' => 'Доклад за изтичащи лицензи',
'Item_Request_Canceled' => 'Заявка за артикул отменена',
'Item_Requested' => 'Артикул заявен',
'License_Checkin_Notification' => 'Лиценза е вписан',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Доклад за нисък запас',
'a_user_canceled' => 'Потребител е отменил заявка за елемент в уебсайта',
'a_user_requested' => 'Потребител е направил заявка за елемент в уебсайта',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Потребителя прие актива',
'acceptance_asset_declined' => 'Потребителя отказа актива',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Име на актив',
'asset_requested' => 'Заявка за актив',
'asset_tag' => 'Инвентарен номер',
- 'assets_warrantee_alert' => 'Има :count актив(а) с гаранция, която ще изтече в следващите :threshold дни.|Има :count активa с гаранции, която ще изтече в следващите :threshold дни.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Възложени на',
+ 'eol' => 'EOL',
'best_regards' => 'С най-добри пожелания.',
'canceled' => 'Отменено',
'checkin_date' => 'Дата на вписване',
@@ -58,6 +59,7 @@ return [
'days' => 'Дни',
'expecting_checkin_date' => 'Очаквана дата на вписване',
'expires' => 'Изтича',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Здравейте',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Списък активи',
'item' => 'Информация',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Има :count лиценз, който изтича в следващите :threshold дни.|Има :count лиценза, които изтичат в следващите :threshold дни.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Моля щракенете върху следния линк за да обновите своята :web password:',
'login' => 'Логин',
'login_first_admin' => 'Влезте в своята Snipe-IT инсталация използвайки данните по-долу:',
'low_inventory_alert' => 'Има :count артикул, който е под минималния праг за наличност или скоро ще се изчерпа.| Има :count артикула, които са под минималния праг за наличност или скоро ще се изчерпат.',
'min_QTY' => 'Минимално количество',
'name' => 'Име',
- 'new_item_checked' => 'Нов артикул беше изписан под вашето име, детайлите са отдолу.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Бележки',
'password' => 'Парола',
diff --git a/resources/lang/ca-ES/admin/custom_fields/general.php b/resources/lang/ca-ES/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/ca-ES/admin/custom_fields/general.php
+++ b/resources/lang/ca-ES/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/ca-ES/admin/depreciations/general.php b/resources/lang/ca-ES/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/ca-ES/admin/depreciations/general.php
+++ b/resources/lang/ca-ES/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/ca-ES/admin/hardware/form.php b/resources/lang/ca-ES/admin/hardware/form.php
index 61b185f6e6..2d6d076454 100644
--- a/resources/lang/ca-ES/admin/hardware/form.php
+++ b/resources/lang/ca-ES/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Etiqueta de Recurs',
'update' => 'Asset Update',
diff --git a/resources/lang/ca-ES/admin/hardware/general.php b/resources/lang/ca-ES/admin/hardware/general.php
index 4ac0bbbf69..ba47f8caa8 100644
--- a/resources/lang/ca-ES/admin/hardware/general.php
+++ b/resources/lang/ca-ES/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/ca-ES/admin/licenses/message.php b/resources/lang/ca-ES/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/ca-ES/admin/licenses/message.php
+++ b/resources/lang/ca-ES/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/ca-ES/admin/locations/message.php b/resources/lang/ca-ES/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/ca-ES/admin/locations/message.php
+++ b/resources/lang/ca-ES/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ca-ES/admin/locations/table.php b/resources/lang/ca-ES/admin/locations/table.php
index 2e3ff70e85..1a0fc61d99 100644
--- a/resources/lang/ca-ES/admin/locations/table.php
+++ b/resources/lang/ca-ES/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Adreça',
'address2' => 'Address Line 2',
diff --git a/resources/lang/ca-ES/admin/models/table.php b/resources/lang/ca-ES/admin/models/table.php
index abb59f3526..7cd1675a05 100644
--- a/resources/lang/ca-ES/admin/models/table.php
+++ b/resources/lang/ca-ES/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Models de Recurs',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/ca-ES/admin/users/general.php b/resources/lang/ca-ES/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/ca-ES/admin/users/general.php
+++ b/resources/lang/ca-ES/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/ca-ES/general.php b/resources/lang/ca-ES/general.php
index a414e94153..a87c9d7688 100644
--- a/resources/lang/ca-ES/general.php
+++ b/resources/lang/ca-ES/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'Podeu importar recursos, accessoris, llicències, components, consumibles, and usuaris via fitxer CSV.
El CSV cal que estigui delimitat per comes i formatat amb capçaleres que coincideixin amb les de les mostres de CSV a la documentació.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Manteniment de Recursos',
'asset_maintenance_report' => 'Informe de Manteniment de Recursos',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Acceptar :recurs',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/ca-ES/mail.php b/resources/lang/ca-ES/mail.php
index 760c8fbdc9..217691a44d 100644
--- a/resources/lang/ca-ES/mail.php
+++ b/resources/lang/ca-ES/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Etiqueta de Recurs',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/chr-US/admin/custom_fields/general.php b/resources/lang/chr-US/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/chr-US/admin/custom_fields/general.php
+++ b/resources/lang/chr-US/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/chr-US/admin/depreciations/general.php b/resources/lang/chr-US/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/chr-US/admin/depreciations/general.php
+++ b/resources/lang/chr-US/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/chr-US/admin/hardware/form.php b/resources/lang/chr-US/admin/hardware/form.php
index 8fbd0b4e87..dc4754e71a 100644
--- a/resources/lang/chr-US/admin/hardware/form.php
+++ b/resources/lang/chr-US/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/chr-US/admin/hardware/general.php b/resources/lang/chr-US/admin/hardware/general.php
index bc972da290..09282b9190 100644
--- a/resources/lang/chr-US/admin/hardware/general.php
+++ b/resources/lang/chr-US/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/chr-US/admin/licenses/message.php b/resources/lang/chr-US/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/chr-US/admin/licenses/message.php
+++ b/resources/lang/chr-US/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/chr-US/admin/locations/message.php b/resources/lang/chr-US/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/chr-US/admin/locations/message.php
+++ b/resources/lang/chr-US/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/chr-US/admin/locations/table.php b/resources/lang/chr-US/admin/locations/table.php
index 53176d8a4e..d7128b30f7 100644
--- a/resources/lang/chr-US/admin/locations/table.php
+++ b/resources/lang/chr-US/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/chr-US/admin/models/table.php b/resources/lang/chr-US/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/chr-US/admin/models/table.php
+++ b/resources/lang/chr-US/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/chr-US/admin/users/general.php b/resources/lang/chr-US/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/chr-US/admin/users/general.php
+++ b/resources/lang/chr-US/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/chr-US/general.php b/resources/lang/chr-US/general.php
index 1d501ee616..3c6738bbdc 100644
--- a/resources/lang/chr-US/general.php
+++ b/resources/lang/chr-US/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/chr-US/mail.php b/resources/lang/chr-US/mail.php
index 910c860e2c..70ee6ba42f 100644
--- a/resources/lang/chr-US/mail.php
+++ b/resources/lang/chr-US/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/cs-CZ/admin/depreciations/general.php b/resources/lang/cs-CZ/admin/depreciations/general.php
index f26303a1b6..39a228c780 100644
--- a/resources/lang/cs-CZ/admin/depreciations/general.php
+++ b/resources/lang/cs-CZ/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'O amortizaci majetku',
- 'about_depreciations' => 'Můžete nastavit amortizaci majetku pro jeho rovnoměrné odepisování.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Amortizace majetku',
'create' => 'Vytvořit amortizaci',
'depreciation_name' => 'Jméno amortizace',
diff --git a/resources/lang/cs-CZ/admin/hardware/form.php b/resources/lang/cs-CZ/admin/hardware/form.php
index b03483b821..0c1496db24 100644
--- a/resources/lang/cs-CZ/admin/hardware/form.php
+++ b/resources/lang/cs-CZ/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Přejít na přiřazeného uživatele',
'select_statustype' => 'Zvolte typ stavu',
'serial' => 'Sériové číslo',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Stav',
'tag' => 'Označení majetku',
'update' => 'Úprava majetku',
diff --git a/resources/lang/cs-CZ/admin/hardware/general.php b/resources/lang/cs-CZ/admin/hardware/general.php
index b4384911bf..956a767051 100644
--- a/resources/lang/cs-CZ/admin/hardware/general.php
+++ b/resources/lang/cs-CZ/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Požadováno',
'not_requestable' => 'Nelze vyžádat',
'requestable_status_warning' => 'Neměnit stav K vyžádání',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Obnovit zařízení',
'pending' => 'Čekající',
'undeployable' => 'Nelze vyskladnit',
diff --git a/resources/lang/cs-CZ/admin/licenses/message.php b/resources/lang/cs-CZ/admin/licenses/message.php
index 45fe8c7f54..e9afb5bada 100644
--- a/resources/lang/cs-CZ/admin/licenses/message.php
+++ b/resources/lang/cs-CZ/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Není k dispozici dostatek licenčních míst pro pokladnu',
'mismatch' => 'Poskytnutá licence se neshoduje s licencí',
'unavailable' => 'Tuto licenci nelze aktuálně přidělit.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Vyskytl se problém při ověřování licence. Zkuste to znovu prosím.',
- 'not_reassignable' => 'Licence není znovu přiřazitelná',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Licence byla úspěšně zkontrolována'
),
diff --git a/resources/lang/cs-CZ/admin/locations/message.php b/resources/lang/cs-CZ/admin/locations/message.php
index f7aab93845..4a74d67ac3 100644
--- a/resources/lang/cs-CZ/admin/locations/message.php
+++ b/resources/lang/cs-CZ/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Místo neexistuje.',
- 'assoc_users' => 'Toto umístění nelze aktuálně odstranit, protože je evidováno jako výchozí umístění alespoň jednoho zařízení nebo uživatele, má k sobě přiřazená zařízení, nebo je nadřazeným umístěním jiného umístění. Aktualizujte prosím záznamy tak, aby se na toto umístění již neodkazovalo, a zkuste to znovu ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Toto umístění je spojeno s alespoň jedním majetkem a nemůže být smazáno. Aktualizujte majetky tak aby nenáleželi k tomuto umístění a zkuste to znovu. ',
'assoc_child_loc' => 'Toto umístění je nadřazené alespoň jednomu umístění a nelze jej smazat. Aktualizujte své umístění tak, aby na toto umístění již neodkazovalo a zkuste to znovu. ',
'assigned_assets' => 'Přiřazený majetek',
'current_location' => 'Současné umístění',
'open_map' => 'Otevřít v :map_provider_icon mapách',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/cs-CZ/admin/locations/table.php b/resources/lang/cs-CZ/admin/locations/table.php
index 693f30b79b..c8055ffb59 100644
--- a/resources/lang/cs-CZ/admin/locations/table.php
+++ b/resources/lang/cs-CZ/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Vytvořit umístění',
'update' => 'Upravit umístění',
'print_assigned' => 'Vytisknout přiřazené',
- 'print_all_assigned' => 'Vytisknout všechny přiřazené',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Název umístění',
'address' => 'Adresa',
'address2' => 'Adresa 2',
diff --git a/resources/lang/cs-CZ/admin/models/table.php b/resources/lang/cs-CZ/admin/models/table.php
index 93a38bf48c..d9ca0b4275 100644
--- a/resources/lang/cs-CZ/admin/models/table.php
+++ b/resources/lang/cs-CZ/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Model',
'update' => 'Upravit vzor majetku',
'view' => 'Zobrazit vzor majetku',
- 'update' => 'Upravit vzor majetku',
- 'clone' => 'Kopíruj modelovou řadu',
- 'edit' => 'Edituj model',
+ 'clone' => 'Kopíruj modelovou řadu',
+ 'edit' => 'Edituj model',
);
diff --git a/resources/lang/cs-CZ/admin/users/general.php b/resources/lang/cs-CZ/admin/users/general.php
index 49ac484ccf..413ba72f1b 100644
--- a/resources/lang/cs-CZ/admin/users/general.php
+++ b/resources/lang/cs-CZ/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Zahrnout tohoto uživatele do automatického přiřazování licencí',
'auto_assign_help' => 'Nezahrnout tohoto uživatele do automatického přiřazování licencí',
'software_user' => 'Software vydaný pro :name',
- 'send_email_help' => 'Musíte zadat e-mailovou adresu tohoto uživatele pro odeslání přihlašovacích údajů. Odeslání přihlašovacích údajů lze provést pouze při vytvoření uživatele. Hesla jsou zašifrována a nelze je zjistit po tom, co jsou uložena.',
'view_user' => 'Zobraz uživatele',
'usercsv' => 'CSV soubor',
'two_factor_admin_optin_help' => 'Vaše současná nastavení administrátora umožňují selektivní vynucení dvoufaktorového ověřování. ',
diff --git a/resources/lang/cs-CZ/general.php b/resources/lang/cs-CZ/general.php
index d0cdfa79ce..4363cd3bc7 100644
--- a/resources/lang/cs-CZ/general.php
+++ b/resources/lang/cs-CZ/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Mapa polí a zpracovávat tento soubor',
'importing' => 'Importování',
- 'importing_help' => 'Prostřednictvím souboru CSV můžete importovat majetek, příslušenství, licence, komponenty, spotřební materiál a uživatele.
CSV by měl být oddělený čárkou a formátovaný s hlavičkami, které odpovídají vzorovému CSV.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Historie importu',
'asset_maintenance' => 'Údržba zařízení',
'asset_maintenance_report' => 'Zpráva o údržbě zařízení',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'celkem licencí',
'total_accessories' => 'celkové příslušenství',
'total_consumables' => 'celkový spotřební materiál',
+ 'total_cost' => 'Total Cost',
'type' => 'Typ',
'undeployable' => 'Ne-přiřaditelné',
'unknown_admin' => 'Neznámy správce',
'unknown_user' => 'Neznámý uživatel',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Uživatelské jméno',
'update' => 'Aktualizace',
'updating_item' => 'Probíhá aktualizace položky :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Po termínu inventury',
'accept' => 'Přijmout :asset',
'i_accept' => 'Přijímám',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Odmítám',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Přijímat/zamítnout',
'sign_tos' => 'Podepsáním níže souhlasíte s podmínkami služby:',
'clear_signature' => 'Vymazat podpis',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Oprávnění',
'managed_ldap' => '(Spravováno přes LDAP)',
'export' => 'Exportovat',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP synchronizace',
'ldap_user_sync' => 'LDAP synchronizace uživatelů',
'synchronize' => 'Synchronizovat',
@@ -485,7 +490,9 @@ return [
'update_existing_values' => 'Aktualizovat existující hodnoty?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generování automatického zvyšování značek majetku je zakázáno, takže všechny řádky musí mít vyplněný sloupec "Značka majetku".',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Poznámka: Generování auto-rostoucí značky majetku je povoleno, takže aktiva budou vytvořena pro řádky, které nemají "Asset Tag". Řádky, které mají vyplněnou značku "Aktiva", budou aktualizovány s poskytnutými informacemi.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Poslat e-mail',
'call' => 'Volat číslo',
'back_before_importing' => 'Zálohovat před importem?',
@@ -515,7 +522,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':název položky',
'error_user_company' => 'Objednat cílovou společnost a společnost aktiv se neshodují',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Majetek přiřazený vám patří jiné společnosti, takže ho nemůžete přijmout ani odmítnout, zkontrolujte si prosím svůj manažer',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Odškrtnuto na: Celé jméno',
'checked_out_to_first_name' => 'Odškrtnuto na: křestní jméno',
@@ -587,6 +597,8 @@ return [
'components' => ':count komponenta|:count komponenty',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Více informací',
'quickscan_bulk_help' => 'Zaškrtnutím tohoto políčka se aktualizuje záznam zařízení na novou lokaci. Nezaškrtnutí pouze zaznamená lokaci v auditním záznamu. Pokud je zařízení zapůjčeno, nezmění to lokaci osoby, zařízení nebo místa, kam je zapůjčeno.',
'whoops' => 'Jejda!',
@@ -611,6 +623,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT Je open-source software, vytvořený s láskou od @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -627,11 +641,11 @@ return [
'site_default' => 'Výchozí nastavení webu',
'default_blue' => 'Modrá – výchozí',
'blue_dark' => 'Modrá (tmavý režim)',
- 'green' => 'Tmavě zelená',
+ 'green' => 'Green',
'green_dark' => 'Zelená (tmavý režim)',
- 'red' => 'Tmavě červená',
+ 'red' => 'Red',
'red_dark' => 'Červená (tmavý režim)',
- 'orange' => 'Tmavě Oranžová',
+ 'orange' => 'Orange',
'orange_dark' => 'Oranžová (tmavý režim)',
'black' => 'Černá',
'black_dark' => 'Černá (tmavý režim)',
diff --git a/resources/lang/cs-CZ/mail.php b/resources/lang/cs-CZ/mail.php
index cd549af656..f136f94d5b 100644
--- a/resources/lang/cs-CZ/mail.php
+++ b/resources/lang/cs-CZ/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Příslušenství přidáno v',
- 'Accessory_Checkout_Notification' => 'Příslušenství zkontrolováno',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Potvrzení odevzdání příslušenství',
'Confirm_Asset_Checkin' => 'Potvrzení odevzdání předmětu',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Majetek, který vám byl předán, musí být vrácen zpět do :date',
'Expected_Checkin_Notification' => 'Připomenutí: blížící se lhůta pro :name',
'Expected_Checkin_Report' => 'Předpokládaný report o dostupném majetku',
- 'Expiring_Assets_Report' => 'Hlášení o končících zárukách majetku.',
- 'Expiring_Licenses_Report' => 'Hlášení o končící platnosti licencí.',
+ 'Expiring_Assets_Report' => 'Hlášení o končících zárukách majetku',
+ 'Expiring_Licenses_Report' => 'Hlášení o končící platnosti licencí',
'Item_Request_Canceled' => 'Požadavek na položku zrušen',
'Item_Requested' => 'Požadavek na položku',
'License_Checkin_Notification' => 'Licence přidána v',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Hlášení o nízkých zásobách',
'a_user_canceled' => 'Uživatel zrušil žádost o položku na webu',
'a_user_requested' => 'Uživatel požádal o položku na webu',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Uživatel potvrdil vlastnictví',
'acceptance_asset_declined' => 'Uživatel zamítl vlastnictví',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Název majetku',
'asset_requested' => 'Požadovaný majetek',
'asset_tag' => 'Inventární číslo',
- 'assets_warrantee_alert' => 'Je zde :count položka se zárukou končící v následujících :threshold dnech.|Jsou zde :count položek se zárukou končící v následujících :threshold dnech.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Přiděleno',
+ 'eol' => 'KŽ',
'best_regards' => 'S pozdravem,',
'canceled' => 'Zrušeno',
'checkin_date' => 'Datum převzetí',
@@ -58,6 +59,7 @@ return [
'days' => 'Dní',
'expecting_checkin_date' => 'Očekávané datum převzetí',
'expires' => 'Vyprší',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Dobrý den',
@@ -69,16 +71,16 @@ return [
'item' => 'Položka',
'item_checked_reminder' => 'Toto je připomínka, že máte aktuálně přiřazeno :count položek, které jste dosud nepřijal ani neodmítl.
Klikněte prosím na odkaz níže a potvrďte své rozhodnutí.',
- 'license_expiring_alert' => 'Je zde :count licence, které končí platnost v příštích :threshold dnech.|Jsou zde :count licence, kterým končí platnost v příštích :threshold dnech.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Klepnutím na následující odkaz aktualizujte své heslo pro :web:',
'login' => 'Přihlášení',
'login_first_admin' => 'Přihlaste se k nové instalaci Snipe-IT pomocí níže uvedených pověření:',
'low_inventory_alert' => 'Je zde :count položka která je pod minimálním stavem nebo brzy bude.|Jsou zde :count položky které jsou pod minimálním stavem nebo brzy budou.',
'min_QTY' => 'Minimální množství',
'name' => 'Položka',
- 'new_item_checked' => 'Nová položka byla odevzdána pod vaším jménem, podrobnosti jsou uvedeny níže.',
- 'new_item_checked_with_acceptance' => 'Nová položka byla přiřazena na vaše jméno a vyžaduje potvrzení. Podrobnosti najdete níže.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'Položka byla přiřazena na vaše jméno a vyžaduje potvrzení. Podrobnosti najdete níže.',
'notes' => 'Poznámky',
'password' => 'Heslo',
diff --git a/resources/lang/cy-GB/admin/custom_fields/general.php b/resources/lang/cy-GB/admin/custom_fields/general.php
index 6ecb90c36a..6cff003713 100644
--- a/resources/lang/cy-GB/admin/custom_fields/general.php
+++ b/resources/lang/cy-GB/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Meysydd',
'about_fieldsets_title' => 'Amdan grwpiau meysydd',
- 'about_fieldsets_text' => 'Mae grwpiau meysydd yn caniatau i chi creu grwpiau o meysydd addasedig sydd yn cael ei defnyddio yn amal ar gyfer mathau penodol o asedau.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Hamcryptio gwerth y maes yma yn y basdata',
'encrypt_field_help' => 'RHYBUDD: Mae hamcryptio maes yn feddwl nid oes modd chwilio amdano.',
diff --git a/resources/lang/cy-GB/admin/depreciations/general.php b/resources/lang/cy-GB/admin/depreciations/general.php
index ab63b8690a..ea7c218257 100644
--- a/resources/lang/cy-GB/admin/depreciations/general.php
+++ b/resources/lang/cy-GB/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Amdan Dibrisiant Asedau',
- 'about_depreciations' => 'Cewch creu mathau o dibrisiant i dibrisio asedau yn seiliedig ar dibrisiant llinell syth.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Dibrisiant Asedau',
'create' => 'Creu Dibrisiant',
'depreciation_name' => 'Enw Dibrisiant',
diff --git a/resources/lang/cy-GB/admin/hardware/form.php b/resources/lang/cy-GB/admin/hardware/form.php
index e79d5d2f47..61d62819f2 100644
--- a/resources/lang/cy-GB/admin/hardware/form.php
+++ b/resources/lang/cy-GB/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Dewis Math o Statws',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Statws',
'tag' => 'Tag Ased',
'update' => 'Diweddaru Ased',
diff --git a/resources/lang/cy-GB/admin/hardware/general.php b/resources/lang/cy-GB/admin/hardware/general.php
index 888987f25e..da465c47bb 100644
--- a/resources/lang/cy-GB/admin/hardware/general.php
+++ b/resources/lang/cy-GB/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Gofynnwyd amdano',
'not_requestable' => 'Ddim ar gael',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Adfer Ased',
'pending' => 'Yn disgwl',
'undeployable' => 'Dim ar gael',
diff --git a/resources/lang/cy-GB/admin/licenses/message.php b/resources/lang/cy-GB/admin/licenses/message.php
index 521d9b0dc6..3f9b7b7823 100644
--- a/resources/lang/cy-GB/admin/licenses/message.php
+++ b/resources/lang/cy-GB/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Nid oedd yn bosib nodi\'r trwydded i mewn. Ceisiwch eto o. g. y. dd.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Trwydded wedi nodi i fewn yn llwyddiannus'
),
diff --git a/resources/lang/cy-GB/admin/locations/message.php b/resources/lang/cy-GB/admin/locations/message.php
index 1a85c831dd..6834792dc2 100644
--- a/resources/lang/cy-GB/admin/locations/message.php
+++ b/resources/lang/cy-GB/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Nid yw\'r lleoliad yn bodoli.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Mae\'r lleoliad yma wedi perthnasu i oleiaf un ased a nid yw\'n bosib dileu. Diweddarwch eich asedau i beidio cyfeirio at y lleoliad yma ac yna ceisiwch eto. ',
'assoc_child_loc' => 'Mae\'r lleoliad yma yn rhiant i oleiaf un lleoliad a nid yw\'n bosib dileu. Diweddarwch eich lleoliadau i beidio cyfeirio at y lleoliad yma ac yna ceisiwch eto. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/cy-GB/admin/locations/table.php b/resources/lang/cy-GB/admin/locations/table.php
index 6444fb5df4..e432e5c56a 100644
--- a/resources/lang/cy-GB/admin/locations/table.php
+++ b/resources/lang/cy-GB/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Creu Lleoliad',
'update' => 'Diweddaru Lleoliad',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Argraffu Asedau',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Enw Lleoliad',
'address' => 'Cyfeiriad',
'address2' => 'Address Line 2',
diff --git a/resources/lang/cy-GB/admin/models/table.php b/resources/lang/cy-GB/admin/models/table.php
index 03a72f5569..d7c1297e69 100644
--- a/resources/lang/cy-GB/admin/models/table.php
+++ b/resources/lang/cy-GB/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Model Ased',
'update' => 'Diweddaru Model Ased',
'view' => 'Gweld Model Ased',
- 'update' => 'Diweddaru Model Ased',
- 'clone' => 'Dyblygu Model',
- 'edit' => 'Newid Model',
+ 'clone' => 'Dyblygu Model',
+ 'edit' => 'Newid Model',
);
diff --git a/resources/lang/cy-GB/admin/users/general.php b/resources/lang/cy-GB/admin/users/general.php
index 169bd6786d..9e0f4f4896 100644
--- a/resources/lang/cy-GB/admin/users/general.php
+++ b/resources/lang/cy-GB/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Meddalwedd allan i :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'Gweld Defnyddiwr :name',
'usercsv' => 'Ffeil CSV',
'two_factor_admin_optin_help' => 'Mae eich gosodiadau admin yn caniatau gorfodaeth dewisol o dilysiant dau-factor. ',
diff --git a/resources/lang/cy-GB/general.php b/resources/lang/cy-GB/general.php
index 063c744ae6..90ae331824 100644
--- a/resources/lang/cy-GB/general.php
+++ b/resources/lang/cy-GB/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Mewnforio',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Mewnforio hanes',
'asset_maintenance' => 'Cynnal a chadw Ased',
'asset_maintenance_report' => 'Adroddiad cynnal a chadw ased',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'cyfanswm trwyddedau',
'total_accessories' => 'cyfanswm ategolion',
'total_consumables' => 'cyfanswm nwyddau traul',
+ 'total_cost' => 'Total Cost',
'type' => 'Math',
'undeployable' => 'Ddim modd nodi allan',
'unknown_admin' => 'Gweinydd Anhysbys',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Enw defnyddiwr',
'update' => 'Diweddaru',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Mwy o wybodaeth',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/cy-GB/mail.php b/resources/lang/cy-GB/mail.php
index 78ea7c87c1..aee2206d34 100644
--- a/resources/lang/cy-GB/mail.php
+++ b/resources/lang/cy-GB/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Adroddiad Asedau sy\'n Dod i Ben.',
- 'Expiring_Licenses_Report' => 'Adroddiad Trwyddedua sy\'n Dod i Ben.',
+ 'Expiring_Assets_Report' => 'Adroddiad Asedau sy\'n Dod i Ben',
+ 'Expiring_Licenses_Report' => 'Adroddiad Trwyddedua sy\'n Dod i Ben',
'Item_Request_Canceled' => 'Cais am eitem wedi canslo',
'Item_Requested' => 'Wedi gwneud cais am eitem',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Adroddiad Inventory Isel',
'a_user_canceled' => 'Mae defnyddiwr wedi canslo cais am eitem ar y wefan',
'a_user_requested' => 'Mae defnyddiwr wedi gwneud cais am eitem ar y wefan',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Enw Ased',
'asset_requested' => 'Gofynnwyd am ased',
'asset_tag' => 'Tag Ased',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Wedi Neilltuo i',
+ 'eol' => 'DB',
'best_regards' => 'Cofon gorau,',
'canceled' => 'Wedi canslo',
'checkin_date' => 'Dyddian i mewn',
@@ -58,6 +59,7 @@ return [
'days' => 'Dydd',
'expecting_checkin_date' => 'Dyddiad disgwl i mewn',
'expires' => 'Dod i ben',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Helo',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Eitem',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Mae yna :count trwydded yn dod i ben yn ystod y :threshold diwrnod nesaf | Mae :count trwyddedau yn dod i ben yn y :threshold diwrnod nesaf.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Cliciwch ar y ddolen ganlynol i gadarnhau eich cyfrinair :gwe:',
'login' => 'Mewngofnodi',
'login_first_admin' => 'Mewngofnodi i\'ch gosodiad Snipe-IT newydd gan ddefnyddio\'r manylion isod:',
'low_inventory_alert' => 'Mae yna :count eitem sy\'n is na\'r isafswm neu a fydd yn isel cyn bo hir. | Mae yna :count eitemau sy\'n is na\'r isafswm neu a fydd yn isel cyn bo hir.',
'min_QTY' => 'Nifer Lleiaf',
'name' => 'Enw',
- 'new_item_checked' => 'Mae eitem newydd wedi\'i gwirio o dan eich enw, mae\'r manylion isod.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Nodiadau',
'password' => 'Cyfrinair',
diff --git a/resources/lang/da-DK/admin/custom_fields/general.php b/resources/lang/da-DK/admin/custom_fields/general.php
index 681f41539a..46726134e6 100644
--- a/resources/lang/da-DK/admin/custom_fields/general.php
+++ b/resources/lang/da-DK/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Administrer',
'field' => 'Felt',
'about_fieldsets_title' => 'Om Feltsæt',
- 'about_fieldsets_text' => 'Fieldsets giver dig mulighed for at oprette grupper af brugerdefinerede felter, der ofte bruges igen til specifikke aktivmodeltyper.',
+ 'about_fieldsets_text' => 'Feltsæt giver dig mulighed for at oprette grupper af brugerdefinerede felter, der ofte genbruges til specifikke asset-modeltyper.',
'custom_format' => 'Tilpasset Regex format...',
'encrypt_field' => 'Kryptere værdien af dette felt i databasen',
'encrypt_field_help' => 'Advarsel: Kryptere et felt gør det uransagelige.',
diff --git a/resources/lang/da-DK/admin/depreciations/general.php b/resources/lang/da-DK/admin/depreciations/general.php
index 70dd33eb66..7d392e4ce9 100644
--- a/resources/lang/da-DK/admin/depreciations/general.php
+++ b/resources/lang/da-DK/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Omkring Aktiv Afskrivninger',
- 'about_depreciations' => 'Du kan sætte aktiv afskrivninger til at afskrive aktiver baseret på lineære afskrivninger.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Aktiv Afskrivninger',
'create' => 'Opret afskrivninger',
'depreciation_name' => 'Afskrivningnavn',
diff --git a/resources/lang/da-DK/admin/hardware/form.php b/resources/lang/da-DK/admin/hardware/form.php
index 1130e7540c..c553920950 100644
--- a/resources/lang/da-DK/admin/hardware/form.php
+++ b/resources/lang/da-DK/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Vælg statustype',
'serial' => 'Serienummer',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Aktiv mærkat',
'update' => 'Aktiv Opdatering',
diff --git a/resources/lang/da-DK/admin/hardware/general.php b/resources/lang/da-DK/admin/hardware/general.php
index 9cde616e87..2d1f27dca5 100644
--- a/resources/lang/da-DK/admin/hardware/general.php
+++ b/resources/lang/da-DK/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Anmodet',
'not_requestable' => 'Ikke Anmodet',
'requestable_status_warning' => 'Ændr ikke status for anfordring',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Gendan aktiv',
'pending' => 'Verserende',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/da-DK/admin/licenses/message.php b/resources/lang/da-DK/admin/licenses/message.php
index 5d89acf1e7..63950b0d97 100644
--- a/resources/lang/da-DK/admin/licenses/message.php
+++ b/resources/lang/da-DK/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Ikke nok licenser til rådighed til kassen',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Der var et problem at kontrollere licensen. Prøv igen.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Licensen blev tjekket ind med succes'
),
diff --git a/resources/lang/da-DK/admin/locations/message.php b/resources/lang/da-DK/admin/locations/message.php
index 897d23fe70..cef70db3ed 100644
--- a/resources/lang/da-DK/admin/locations/message.php
+++ b/resources/lang/da-DK/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Beliggenhed findes ikke.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Denne placering er i øjeblikket forbundet med mindst ét aktiv og kan ikke slettes. Opdater dine aktiver for ikke længere at henvise til denne placering, og prøv igen.',
'assoc_child_loc' => 'Denne placering er for øjeblikket forælder på mindst et barns placering og kan ikke slettes. Opdater dine placeringer for ikke længere at henvise til denne placering, og prøv igen.',
'assigned_assets' => 'Tildelte aktiver',
'current_location' => 'Aktuel lokation',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/da-DK/admin/locations/table.php b/resources/lang/da-DK/admin/locations/table.php
index db8726697b..14bde77b51 100644
--- a/resources/lang/da-DK/admin/locations/table.php
+++ b/resources/lang/da-DK/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Opret placering',
'update' => 'Opdateringssted',
'print_assigned' => 'Udskriv tildelte',
- 'print_all_assigned' => 'Udskriv alle tildelte',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Navn på sted',
'address' => 'Adresse',
'address2' => 'Adresselinje 2',
diff --git a/resources/lang/da-DK/admin/models/table.php b/resources/lang/da-DK/admin/models/table.php
index bfc0c4f7db..ebdfd5f9f8 100644
--- a/resources/lang/da-DK/admin/models/table.php
+++ b/resources/lang/da-DK/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Aktiv Modeller',
'update' => 'Opdatere aktiv model',
'view' => 'Se aktiv model',
- 'update' => 'Opdatere aktiv model',
- 'clone' => 'Klon model',
- 'edit' => 'Redigere model',
+ 'clone' => 'Klon model',
+ 'edit' => 'Redigere model',
);
diff --git a/resources/lang/da-DK/admin/users/general.php b/resources/lang/da-DK/admin/users/general.php
index a9408c8cb8..1261698ff7 100644
--- a/resources/lang/da-DK/admin/users/general.php
+++ b/resources/lang/da-DK/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Inkludér denne bruger ved automatisk tildeling af kvalificerede licenser',
'auto_assign_help' => 'Spring denne bruger over i auto-tildeling af licenser',
'software_user' => 'Software Checket ud til: navn',
- 'send_email_help' => 'Du skal angive en e-mail-adresse for denne bruger for at sende dem legitimationsoplysninger. E-mailing af legitimationsoplysninger kan kun gøres ved brugeroprettelse. Adgangskoder gemmes i en envejs hash og kan ikke hentes når de er gemt.',
'view_user' => 'Se bruger :navn',
'usercsv' => 'CSV-fil',
'two_factor_admin_optin_help' => 'Dine nuværende administratorindstillinger tillader selektiv håndhævelse af tofaktors godkendelse.',
diff --git a/resources/lang/da-DK/general.php b/resources/lang/da-DK/general.php
index 89af843b62..07f1173f53 100644
--- a/resources/lang/da-DK/general.php
+++ b/resources/lang/da-DK/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importér',
'import_this_file' => 'Kortfelter og behandl denne fil',
'importing' => 'Importerer',
- 'importing_help' => 'Du kan importere assets, tilbehør, licenser, komponenter, forbrugsvarer og brugere via CSV-fil.
CSV skal være kommasepareret og formateret med overskrifter, der matcher dem i sample CSV\'er i dokumentationen.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importhistorik',
'asset_maintenance' => 'Vedligeholdelse af aktiv',
'asset_maintenance_report' => 'Aktiv vedligeholdelsesrapport',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'totale licenser',
'total_accessories' => 'samlet tilbehør',
'total_consumables' => 'samlede forbrugsstoffer',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Ikke implementerbar',
'unknown_admin' => 'Ukendt Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Brugernavn',
'update' => 'Opdatering',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Forfalden til tilsyn',
'accept' => 'Accepter :asset',
'i_accept' => 'Jeg accepterer',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Jeg afviser',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accepter/afvis',
'sign_tos' => 'Bekræft nedenfor for at angive, at du accepterer vilkårene for tjenesten:',
'clear_signature' => 'Ryd signatur',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Rettigheder',
'managed_ldap' => '(Administreret via LDAP)',
'export' => 'Eksportér',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP-synkronisering',
'ldap_user_sync' => 'LDAP-brugersynkronisering',
'synchronize' => 'Synkronisér',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Opdater Eksisterende Værdier?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generering af auto-tilvækst af asset-tags er deaktiveret, så alle rækker skal have kolonnen "Asset Tag" udfyldt.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Bemærk: Generering af auto-tilvækst af asset-tags er aktiveret, så aktiver vil blive oprettet for rækker, der ikke har "Asset Tag" befolket. Rækker, der har "Asset Tag", vil blive opdateret med de angivne oplysninger.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send E-Mail',
'call' => 'Ring nummer',
'back_before_importing' => 'Backup før importering?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Noter',
'item_name_var' => ':emnenavn',
'error_user_company' => 'Checkout målvirksomhed og aktivvirksomhed matcher ikke',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Et aktiv tildelt til dig tilhører en anden virksomhed, så du ikke kan acceptere eller benægte det, tjek venligst med din manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Tjekket ud til: Fulde Navn',
'checked_out_to_first_name' => 'Tjekket ud til: Fornavn',
@@ -585,6 +595,8 @@ return [
'components' => ':count Komponent:count Komponenter',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Mere Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/da-DK/mail.php b/resources/lang/da-DK/mail.php
index f3f2830dbb..fe4e968374 100644
--- a/resources/lang/da-DK/mail.php
+++ b/resources/lang/da-DK/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Tilbehør tjekket ind',
- 'Accessory_Checkout_Notification' => 'Tilbehør tjekket ud',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Tilbehør checkin bekræftelse',
'Confirm_Asset_Checkin' => 'Asset checkin bekræftelse',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Et asset tjekket ud til dig skal tjekkes tilbage den :date',
'Expected_Checkin_Notification' => 'Påmindelse: :name checkin deadline nærmer sig',
'Expected_Checkin_Report' => 'Forventet asset checkin rapport',
- 'Expiring_Assets_Report' => 'Udløbsaktiver Rapport.',
- 'Expiring_Licenses_Report' => 'Udløber Licenser Rapport.',
+ 'Expiring_Assets_Report' => 'Udløbsaktiver Rapport',
+ 'Expiring_Licenses_Report' => 'Udløber Licenser Rapport',
'Item_Request_Canceled' => 'Elementforespørgsel annulleret',
'Item_Requested' => 'Vareanmodning',
'License_Checkin_Notification' => 'Licens tjekket ind',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Lav lagerrapport',
'a_user_canceled' => 'En bruger har annulleret en vareforespørgsel på hjemmesiden',
'a_user_requested' => 'En bruger har anmodet om et emne på hjemmesiden',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'En bruger har accepteret et emne',
'acceptance_asset_declined' => 'En bruger har afvist et emne',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Aktivnavn',
'asset_requested' => 'Aktiver bedt om',
'asset_tag' => 'Inventarnummer',
- 'assets_warrantee_alert' => 'Der er :count aktiv hvor garantien udløber indenfor de næste :threshold dage.|Der er :count aktiver hvor garantien udløber indenfor de næste :threshold dage.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Tildelt',
+ 'eol' => 'EOL',
'best_regards' => 'Med venlig hilsen,',
'canceled' => 'annulleret',
'checkin_date' => 'Tjekket Ind Dato',
@@ -58,6 +59,7 @@ return [
'days' => 'Dage',
'expecting_checkin_date' => 'Forventet indtjekningsdato',
'expires' => 'udløber',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hej',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Lagerrapport',
'item' => 'Emne',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Der er :count licens(er) der udløber indenfor den/de næste :threshold dag(e).',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Venligst klik på følgende link for at opdatere din: webadgangskode:',
'login' => 'Login',
'login_first_admin' => 'Log ind på din nye Snipe-IT-installation ved hjælp af nedenstående referencer:',
'low_inventory_alert' => 'Der er :count enhed som er under minimum lagertal eller som snart vil være det.|Der er :count enheder som er under minimum lagertal eller som snart vil være det.',
'min_QTY' => 'Min QTY',
'name' => 'Navn',
- 'new_item_checked' => 'En ny vare er blevet tjekket ud under dit navn, detaljerne er nedenfor.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Noter',
'password' => 'Adgangskode',
diff --git a/resources/lang/de-DE/admin/custom_fields/general.php b/resources/lang/de-DE/admin/custom_fields/general.php
index 33a1a2c61b..5b56cdcbd1 100644
--- a/resources/lang/de-DE/admin/custom_fields/general.php
+++ b/resources/lang/de-DE/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Verwalten',
'field' => 'Feld',
'about_fieldsets_title' => 'Über Feldsätze',
- 'about_fieldsets_text' => 'Feldsätze erlauben es, Gruppen aus benutzerdefinierten Feldern zu erstellen, die regelmäßig für spezifische Modelltypen benutzt werden.',
+ 'about_fieldsets_text' => 'Feldsätze erlauben es, Gruppen aus benutzerdefinierten Feldern zu erstellen, welche regelmäßig für spezifische Modelltypen benutzt werden.',
'custom_format' => 'Benutzerdefiniertes Regex-Format...',
'encrypt_field' => 'Den Wert dieses Feldes in der Datenbank verschlüsseln',
'encrypt_field_help' => 'WARNUNG: Ein verschlüsseltes Feld kann nicht durchsucht werden.',
@@ -33,7 +33,7 @@ return [
'create_fieldset_title' => 'Neuen Feldsatz erstellen',
'create_field' => 'Neues benutzerdefiniertes Feld',
'create_field_title' => 'Neues benutzerdefiniertes Feld erstellen',
- 'value_encrypted' => 'The value of this field is encrypted in the database. Only users with permission to view encrypted custom fields will be able to view the decrypted value',
+ 'value_encrypted' => 'Der Wert dieses Feldes ist in der Datenbank verschlüsselt. Nur Benutzer mit Berechtigungen können den entschlüsselten Wert sehen',
'show_in_email' => 'Feld miteinbeziehen bei Herausgabe-Emails an die Benutzer? Verschlüsselte Felder können nicht miteinbezogen werden',
'show_in_email_short' => 'In E-Mails mit einbeziehen',
'help_text' => 'Hilfetext',
diff --git a/resources/lang/de-DE/admin/depreciations/general.php b/resources/lang/de-DE/admin/depreciations/general.php
index 12475696ee..0dab19916a 100644
--- a/resources/lang/de-DE/admin/depreciations/general.php
+++ b/resources/lang/de-DE/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Über Asset-Abschreibungen',
- 'about_depreciations' => 'Sie können Asset-Abschreibungen einrichten, um Assets linear abzuschreiben.',
+ 'about_depreciations' => 'Sie können Asset-Abschreibungen einrichten, um Vermögenswerte abzuwerten, basierend auf linearer Abschreibung, Halbjahr mit Bedingung oder Halbjahr immer angewendet.',
'asset_depreciations' => 'Asset-Abschreibungen',
'create' => 'Abschreibung erstellen',
'depreciation_name' => 'Abschreibungs Name',
diff --git a/resources/lang/de-DE/admin/hardware/form.php b/resources/lang/de-DE/admin/hardware/form.php
index da4c1bd8fb..72d91fd5e0 100644
--- a/resources/lang/de-DE/admin/hardware/form.php
+++ b/resources/lang/de-DE/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Status Typ auswählen',
'serial' => 'Seriennummer',
+ 'serial_required' => 'Asset :number erfordert eine Seriennummer',
+ 'serial_required_post_model_update' => ':asset_model wurde aktualisiert, um eine Seriennummer zu erfordern. Bitte fügen Sie eine Seriennummer für dieses Asset hinzu.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/de-DE/admin/hardware/general.php b/resources/lang/de-DE/admin/hardware/general.php
index f9b11bc547..6dbab40555 100644
--- a/resources/lang/de-DE/admin/hardware/general.php
+++ b/resources/lang/de-DE/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Angefordert',
'not_requestable' => 'Kann nicht angefordert werden',
'requestable_status_warning' => 'Wechsle nicht den Status "Anforderbar"',
+ 'require_serial' => 'Seriennummer erforderlich',
+ 'require_serial_help' => 'Beim Erstellen eines neuen Assets dieses Modells wird eine Seriennummer benötigt.',
'restore' => 'Asset wiederherstellen',
'pending' => 'Ausstehend',
'undeployable' => 'Nicht einsetzbar',
diff --git a/resources/lang/de-DE/admin/licenses/message.php b/resources/lang/de-DE/admin/licenses/message.php
index 24cc2310e0..c91bddc0f7 100644
--- a/resources/lang/de-DE/admin/licenses/message.php
+++ b/resources/lang/de-DE/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Nicht genügend Lizenz-Sitze zur Herausgabe verfügbar',
'mismatch' => 'Der angegebene Lizenzplatz entspricht nicht der Lizenz',
'unavailable' => 'Dieser Platz ist nicht zur Herausgabe verfügbar.',
+ 'license_is_inactive' => 'Diese Lizenz ist abgelaufen oder beendet.',
),
'checkin' => array(
'error' => 'Lizenz wurde nicht zurückgenommen, bitte versuchen Sie es erneut.',
- 'not_reassignable' => 'Lizenz nicht neu zuweisbar',
+ 'not_reassignable' => 'Platz wurde verwendet',
'success' => 'Die Lizenz wurde erfolgreich zurückgenommen'
),
diff --git a/resources/lang/de-DE/admin/locations/message.php b/resources/lang/de-DE/admin/locations/message.php
index d553556633..08921942e9 100644
--- a/resources/lang/de-DE/admin/locations/message.php
+++ b/resources/lang/de-DE/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Standort nicht verfügbar.',
- 'assoc_users' => 'Dieser Standort kann derzeit nicht gelöscht werden, da er der Standort eines Datensatzes für mindestens ein Asset oder einen Benutzer ist, ihm Assets zugewiesen sind oder er der übergeordnete Standort eines anderen Standorts ist. Aktualisieren Sie Ihre Datensätze, sodass dieser Standort nicht mehr referenziert wird, und versuchen Sie es erneut ',
+ 'assoc_users' => 'Dieser Standort kann aktuell nicht gelöscht werden, da ihm mindestens ein Asset, User oder anderer Standort zugewiesen ist. Bitte entferne alle Zuweisungen und versuche es erneut. ',
'assoc_assets' => 'Dieser Standort ist aktuell mindestens einem Gegenstand zugewiesen und kann nicht gelöscht werden. Bitte entfernen Sie die Standortzuweisung bei den jeweiligen Gegenständen und versuchen Sie es erneut diesen Standort zu entfernen. ',
'assoc_child_loc' => 'Dieser Ort ist aktuell mindestens einem anderen Ort übergeordnet und kann nicht gelöscht werden. Bitte Orte aktualisieren, so dass dieser Standort nicht mehr verknüpft ist und erneut versuchen. ',
'assigned_assets' => 'Zugeordnete Assets',
'current_location' => 'Aktueller Standort',
'open_map' => 'Öffnen in :map_provider_icon Karten',
+ 'deleted_warning' => 'Dieser Standort wurde gelöscht. Bitte stellen Sie ihn wieder her, bevor Sie Änderungen vornehmen.',
'create' => array(
diff --git a/resources/lang/de-DE/admin/locations/table.php b/resources/lang/de-DE/admin/locations/table.php
index b90725eb24..ba862686f5 100644
--- a/resources/lang/de-DE/admin/locations/table.php
+++ b/resources/lang/de-DE/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Standort erstellen',
'update' => 'Standort aktualisieren',
'print_assigned' => 'Zugewiesene drucken',
- 'print_all_assigned' => 'Alles Zugewiesene drucken',
+ 'print_inventory' => 'Inventar drucken',
+ 'print_all_assigned' => 'Inventar drucken und Zugewiesen',
'name' => 'Standortname',
'address' => 'Adresse',
'address2' => 'Adresszeile 2',
diff --git a/resources/lang/de-DE/admin/models/table.php b/resources/lang/de-DE/admin/models/table.php
index 63dbc88e3a..faba113d6a 100644
--- a/resources/lang/de-DE/admin/models/table.php
+++ b/resources/lang/de-DE/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Gegenstands Modelle',
'update' => 'Gegenstands Modell aktualisieren',
'view' => 'Gegenstands Modell ansehen',
- 'update' => 'Gegenstands Modell aktualisieren',
- 'clone' => 'Modell duplizieren',
- 'edit' => 'Modell bearbeiten',
+ 'clone' => 'Modell duplizieren',
+ 'edit' => 'Modell bearbeiten',
);
diff --git a/resources/lang/de-DE/admin/users/general.php b/resources/lang/de-DE/admin/users/general.php
index 43678c8e4e..4c59c0375f 100644
--- a/resources/lang/de-DE/admin/users/general.php
+++ b/resources/lang/de-DE/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Diesen Benutzer bei der automatischen Zuweisung berechtigter Lizenzen einbeziehen',
'auto_assign_help' => 'Diesen Benutzer bei der automatischen Zuweisung von Lizenzen überspringen',
'software_user' => 'Software herausgegeben an :name',
- 'send_email_help' => 'Sie müssen eine E-Mail-Adresse angeben, um dem Benutzer Zugangsdaten zu zusenden. Das Versenden von Zugangsdaten ist nur bei der Erstellung eines Benutzers möglich. Passwörter werden in einem Einweg-Hash gespeichert und können danach nicht mehr ausgelesen werden.',
'view_user' => 'Benutzer :name ansehen',
'usercsv' => 'CSV Datei',
'two_factor_admin_optin_help' => 'Ihre aktuellen Administrator-Einstellungen erlauben die selektive Durchführung der zwei-Faktor-Authentifizierung. ',
diff --git a/resources/lang/de-DE/admin/users/table.php b/resources/lang/de-DE/admin/users/table.php
index 2532e0f4b4..3b6ab4afa8 100644
--- a/resources/lang/de-DE/admin/users/table.php
+++ b/resources/lang/de-DE/admin/users/table.php
@@ -27,7 +27,7 @@ return array(
'password_confirm' => 'Kennwort bestätigen',
'password' => 'Passwort',
'phone' => 'Telefonnummer',
- 'mobile' => 'Mobile',
+ 'mobile' => 'Mobilgerät',
'show_current' => 'Zeige aktuelle Benutzer',
'show_deleted' => 'Zeige gelöschte Benutzer',
'title' => 'Titel',
@@ -35,7 +35,7 @@ return array(
'total_assets_cost' => "Gesamtkosten für Assets",
'updateuser' => 'Benutzer aktualisieren',
'username' => 'Benutzername',
- 'display_name' => 'Display Name',
+ 'display_name' => 'Anzeigename',
'user_deleted_text' => 'Dieser Benutzer wurde als gelöscht markiert.',
'username_note' => '(Dies wird für den Bind an das Active Directory benutzt, nicht für die Anmeldung.)',
'cloneuser' => 'Benutzer kopieren',
diff --git a/resources/lang/de-DE/general.php b/resources/lang/de-DE/general.php
index 6ec0a144d6..7daf3895d6 100644
--- a/resources/lang/de-DE/general.php
+++ b/resources/lang/de-DE/general.php
@@ -30,13 +30,13 @@ return [
'asset_report' => 'Asset Bericht',
'asset_tag' => 'Asset Tag',
'asset_tags' => 'Asset Tags',
- 'available' => 'Available',
+ 'available' => 'Verfügbar',
'assets_available' => 'Verfügbare Assets',
'accept_assets' => 'Assets :name akzeptieren',
'accept_assets_menu' => 'Assets akzeptieren',
'accept_item' => 'Gegenstand akzeptieren',
'audit' => 'Prüfung',
- 'audited' => 'Audited',
+ 'audited' => 'Geprüft',
'audits' => 'Prüfung',
'audit_report' => 'Prüfungs-Log',
'assets' => 'Assets',
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Felder zuordnen und diese Datei bearbeiten',
'importing' => 'Wird importiert',
- 'importing_help' => 'Sie können Assets, Zubehör, Lizenzen, Komponenten, Verbrauchsmaterialien und Benutzer mittels CSV-Datei importieren.
Die CSV-Datei sollte kommagetrennt sein und eine Kopfzeile enthalten, die mit den Beispiel-CSVs aus der Dokumentation übereinstimmen.',
+ 'importing_help' => 'Das CSV sollte kommagetrennt und mit Headern formatiert werden, die mit den in der Beispiel-CSVs in der Dokumentation übereinstimmen.',
'import-history' => 'Import-Verlauf',
'asset_maintenance' => 'Asset Wartung',
'asset_maintenance_report' => 'Asset Wartungsbericht',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'Lizenzen insgesamt',
'total_accessories' => 'gesamtes Zubehör',
'total_consumables' => 'gesamtes Verbrauchsmaterial',
+ 'total_cost' => 'Gesamtkosten',
'type' => 'Typ',
'undeployable' => 'Nicht herausgebbar',
'unknown_admin' => 'Unbekannter Administrator',
'unknown_user' => 'Unbekannter Benutzer',
+ 'unit_cost' => 'Stückkosten',
'username' => 'Benutzername',
'update' => 'Aktualisieren',
'updating_item' => ':item wird aktualisiert',
@@ -338,13 +340,13 @@ return [
'zip' => 'Postleitzahl',
'noimage' => 'Kein Bild hochgeladen oder Bild nicht gefunden.',
'file_does_not_exist' => 'Die angeforderte Datei existiert nicht.',
- 'file_not_inlineable' => 'The requested file cannot be opened inline in your browser. You can download it instead.',
+ 'file_not_inlineable' => 'Die angeforderte Datei kann nicht inline in Ihrem Browser geöffnet werden. Sie können sie stattdessen herunterladen.',
'open_new_window' => 'Datei in neuem Fenster öffnen',
'file_upload_success' => 'Dateiupload erfolgreich!',
'no_files_uploaded' => 'Dateiupload erfolgreich!',
'token_expired' => 'Ihre Sitzung ist abgelaufen. Bitte versuchen Sie es erneut.',
'login_enabled' => 'Login aktiviert',
- 'login_disabled' => 'Login Disabled',
+ 'login_disabled' => 'Login deaktiviert',
'audit_due' => 'Prüfung fällig',
'audit_due_days' => '{}Vermögenswerte, die innerhalb eines Tages zur Prüfung fällig oder überfällig sind|[1]Vermögenswerte, die innerhalb eines Tages zur Prüfung fällig oder überfällig sind|[2,*]Vermögenswerte, die innerhalb von :days Tagen zur Prüfung fällig oder überfällig sind',
'checkin_due' => 'Fällig zum Check-in',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Prüfung überfällig',
'accept' => ':asset akzeptieren',
'i_accept' => 'Ich akzeptiere',
- 'i_decline_item' => 'Diesen Gegenstand ablehnen',
- 'i_accept_item' => 'Diesen Gegenstand akzeptieren',
+ 'i_accept_with_count' => 'Ich akzeptiere :count Element|Ich akzeptiere :count Elemente',
+ 'i_decline_item' => 'Diesen Gegenstand ablehnen |Diese Gegenstände ablehnen',
+ 'i_accept_item' => 'Diesen Gegenstand akzeptieren|Diese Gegenstände akzeptieren',
'i_decline' => 'Ich lehne ab',
+ 'i_decline_with_count' => 'Ich lehne :count Gegenstand ab |I lehne :count Gegenstände ab',
'accept_decline' => 'Akzeptieren/Ablehnen',
'sign_tos' => 'Unterschreiben Sie unten, um den Nutzungsbedingungen zuzustimmen:',
'clear_signature' => 'Unterschrift löschen',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Berechtigungen',
'managed_ldap' => '(Über LDAP verwaltet)',
'export' => 'Exportieren',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Synchronisierung',
'ldap_user_sync' => 'LDAP Benutzer Synchronisierung',
'synchronize' => 'Synchronisieren',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Vorhandene Werte aktualisieren?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Das Generieren von fortlaufenden Asset-Tags ist deaktiviert, daher müssen alle Datensätze die Spalte "Asset Tag" enthalten.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Hinweis: Das Generieren von fortlaufenden Asset-Tags ist aktiviert, daher wird für alle Datensätze, die keinen Asset-Tag angegeben haben, einer erstellt. Datensätze, die einen "Asset Tag" angegeben haben, werden mit den angegebenen Informationen aktualisiert.',
- 'send_welcome_email_to_users' => ' Willkommensmail an neue Benutzer senden? Bitte beachten, dass nur Benutzer mit einer gültigen E-Mailadresse und als aktiv in der Importdatei markiert sind, eine Willkommensmail erhalten.',
+ 'send_welcome_email_to_users' => ' Willkommens-E-Mail an neue Benutzer senden',
+ 'send_welcome_email_help' => 'Nur Benutzer, die eine gültige E-Mail-Adresse haben und als aktiviert markiert sind, erhalten eine Willkommens-E-Mail, in der sie ihr Passwort zurücksetzen können.',
+ 'send_welcome_email_import_help' => 'Nur neue Benutzer mit einer gültigen E-Mail-Adresse und die in Ihrer Importdatei als aktiviert markiert sind, erhalten eine willkommene E-Mail, in der sie ihr Passwort festlegen können.',
'send_email' => 'E-Mail senden',
'call' => 'Nummer anrufen',
'back_before_importing' => 'Vor dem Importieren sichern?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notizen',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout Zielfirma und Asset-Gesellschaft stimmen nicht überein',
+ 'error_user_company_multiple' => 'Eine oder mehrere Checkout Zielfirmen und Asset-Gesellschaften stimmen nicht überein',
'error_user_company_accept_view' => 'Ein Asset, das Ihnen zugewiesen wurde, gehört zu einem anderen Unternehmen, so dass Sie es nicht akzeptieren oder ablehnen können. Bitte wenden Sie sich an Ihren Manager',
+ 'error_assets_already_checked_out' => 'Ein oder mehrere der Assets sind bereits ausgecheckt',
+ 'assigned_assets_removed' => 'Die folgenden wurden aus den ausgewählten Assets entfernt, weil sie bereits ausgecheckt sind',
'importer' => [
'checked_out_to_fullname' => 'Herausgegeben an: Voller Name',
'checked_out_to_first_name' => 'Herausgegeben an: Vorname',
@@ -585,6 +595,8 @@ return [
'components' => ':count Komponente|:count Komponenten',
],
+ 'show_inactive' => 'Abgelaufen oder beendet',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Mehr Informationen',
'quickscan_bulk_help' => 'Wenn Sie dieses Kontrollkästchen aktivieren, wird der Asset-Datensatz so bearbeitet, dass dieser neue Standort angezeigt wird. Wenn Sie es nicht aktivieren, wird der Standort einfach im Prüfprotokoll vermerkt. Beachten Sie, dass sich der Standort der Person, des Assets oder des Standorts, an den es ausgecheckt wurde, nicht ändert, wenn dieses Asset ausgecheckt wird.',
'whoops' => 'Hoppla!',
@@ -605,10 +617,12 @@ return [
'version' => 'Version',
'build' => 'Build',
'use_cloned_image' => 'Kopiere Vorlage vom Original',
- 'use_cloned_image_help' => 'You may clone the original image or you can upload a new one using the upload field below.',
- 'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
+ 'use_cloned_image_help' => 'Sie können das Originalbild klonen oder ein neues hochladen, indem Sie das untenstehende Upload-Feld benutzen.',
+ 'use_cloned_no_image_help' => 'Dieser Gegenstand hat kein zugehöriges Bild und erbt stattdessen vom Modell oder der Kategorie, zu der es gehört. Wenn Sie ein bestimmtes Bild für diesen Gegenstand verwenden möchten, können Sie unten ein neues hochladen.',
'footer_credit' => 'Snipe-IT ist Open-Source-Software, entwickelt mit Liebe von @snipeitapp.com.',
'set_password' => 'Passwort setzen',
+ 'upload_deleted' => 'Upload gelöscht',
+ 'child_locations' => 'Untergeordneter Standort',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Seiten Standard',
'default_blue' => 'Standard Blau',
'blue_dark' => 'Blau (Dunkler Modus)',
- 'green' => 'Grün Dunkel',
+ 'green' => 'Grün',
'green_dark' => 'Grün (Dunkler Modus)',
- 'red' => 'Rot Dunkel',
+ 'red' => 'Rot',
'red_dark' => 'Rot (Dunkler Modus)',
- 'orange' => 'Orange Dunkel',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dunkler Modus)',
'black' => 'Schwarz',
'black_dark' => 'Schwarz (Dunkler Modus)',
diff --git a/resources/lang/de-DE/mail.php b/resources/lang/de-DE/mail.php
index 34558dcf6c..fba5aa2820 100644
--- a/resources/lang/de-DE/mail.php
+++ b/resources/lang/de-DE/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Zubehör zurückgenommen',
- 'Accessory_Checkout_Notification' => 'Zubehör herausgegeben',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset zurückgenommen: :tag',
+ 'Asset_Checkout_Notification' => 'Asset herausgegeben: :tag',
'Confirm_Accessory_Checkin' => 'Bestätigung einer Zubehör Rücknahme',
'Confirm_Asset_Checkin' => 'Bestätigung einer Asset Rücknahme',
'Confirm_component_checkin' => 'Bestätigung der Zurücknahme von Komponenten',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Ihr ausgebuchtes Asset ist fällig zur Rückgabe am :date',
'Expected_Checkin_Notification' => 'Erinnerung: :name Rückgabedatum nähert sich',
'Expected_Checkin_Report' => 'Bericht über erwartete Asset Rückgaben',
- 'Expiring_Assets_Report' => 'Bericht über ablaufende Gegenstände.',
- 'Expiring_Licenses_Report' => 'Bericht über ablaufende Lizenzen.',
+ 'Expiring_Assets_Report' => 'Bericht über ablaufende Gegenstände',
+ 'Expiring_Licenses_Report' => 'Bericht über ablaufende Lizenzen',
'Item_Request_Canceled' => 'Gegenstands Anfrage abgebrochen',
'Item_Requested' => 'Gegenstand angefordert',
'License_Checkin_Notification' => 'Lizenz zurückgenommen',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Bericht über niedrige Lagerbestände',
'a_user_canceled' => 'Eine Geräte-Anfrage auf der Webseite wurde vom Benutzer abgebrochen',
'a_user_requested' => 'Ein Benutzer hat ein Gerät auf der Webseite angefordert',
- 'acceptance_asset_accepted_to_user' => 'Sie haben einen Gegenstand akzeptiert, der ihnen von :site_name zugewiesen wurde',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Ein Benutzer hat einen Gegenstand akzeptiert',
'acceptance_asset_declined' => 'Ein Benutzer hat einen Gegenstand abgelehnt',
'send_pdf_copy' => 'Sende eine Kopie dieser Annahme an meine E-Mail-Adresse',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Gegenstand angefordert',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'Die Garantie von :count Asset wird in :threshold Tagen auslaufen.|Die Garantie von :count Assets wird in :threshold Tagen auslaufen.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Zugewiesen an',
+ 'eol' => 'EOL',
'best_regards' => 'Grüße,',
'canceled' => 'Abgebrochen',
'checkin_date' => 'Rücknahmedatum',
@@ -58,6 +59,7 @@ return [
'days' => 'Tage',
'expecting_checkin_date' => 'Erwartetes Rückgabedatum',
'expires' => 'Ablaufdatum',
+ 'terminates' => 'Terminates',
'following_accepted' => 'Das Folgende wurde akzeptiert',
'following_declined' => 'Das Folgende wurde abgelehnt',
'hello' => 'Hallo',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Bestandsbericht',
'item' => 'Gegenstand',
'item_checked_reminder' => 'Dies ist eine Erinnerung daran, dass Sie derzeit :count Artikel ausgeliehen haben, die Sie weder angenommen noch abgelehnt haben. Klicken Sie bitte auf den untenstehenden Link, um diese entweder anzunehmen oder abzulehnen.',
- 'license_expiring_alert' => 'Es gibt :count auslaufende Lizenz in den nächsten :threshold Tagen.|Es gibt :count auslaufende Lizenzen in den nächsten :threshold Tagen.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Klicken Sie bitte auf den folgenden Link zum Aktualisieren Ihres :web Passworts:',
'login' => 'Login',
'login_first_admin' => 'Melden Sie sich zu Ihrer neuen Snipe-IT-Installation mithilfe der unten stehenden Anmeldeinformationen an:',
'low_inventory_alert' => 'Es gibt :count Artikel, der unter dem Minimum ist oder kurz davor ist.|Es gibt :count Artikel, die unter dem Minimum sind oder kurz davor sind.',
'min_QTY' => 'Mindestmenge',
'name' => 'Name',
- 'new_item_checked' => 'Ein neuer Gegenstand wurde unter Ihrem Namen ausgecheckt. Details finden Sie weiter unten.',
- 'new_item_checked_with_acceptance' => 'Ein neuer Gegenstand, der eine Annahme erfordert, wurde unter Ihrem Namen ausgecheckt. Details finden Sie weiter unten.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'Ein Gegenstand, der eine Annahme erfordert, wurde unter Ihrem Namen ausgecheckt. Details finden Sie weiter unten.',
'notes' => 'Notizen',
'password' => 'Passwort',
diff --git a/resources/lang/de-if/admin/custom_fields/general.php b/resources/lang/de-if/admin/custom_fields/general.php
index a71c63d9e7..b8a6c660e5 100644
--- a/resources/lang/de-if/admin/custom_fields/general.php
+++ b/resources/lang/de-if/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Verwalten',
'field' => 'Feld',
'about_fieldsets_title' => 'Über Feldsätze',
- 'about_fieldsets_text' => 'Feldsätze erlauben es, Gruppen aus benutzerdefinierten Feldern zu erstellen, die regelmäßig für spezifische Modelltypen wiederverwendet werden.',
+ 'about_fieldsets_text' => 'Feldsätze sind Gruppen von benutzerdefinierten Feldern, die häufig für bestimmte Asset-Modelltypen wiederverwendet werden.',
'custom_format' => 'Benutzerdefiniertes Regex-Format...',
'encrypt_field' => 'Den Wert dieses Feldes in der Datenbank verschlüsseln',
'encrypt_field_help' => 'WARNUNG: Ein verschlüsseltes Feld kann nicht durchsucht werden.',
@@ -33,7 +33,7 @@ return [
'create_fieldset_title' => 'Neuen Feldsatz erstellen',
'create_field' => 'Neues benutzerdefiniertes Feld',
'create_field_title' => 'Neues benutzerdefiniertes Feld erstellen',
- 'value_encrypted' => 'The value of this field is encrypted in the database. Only users with permission to view encrypted custom fields will be able to view the decrypted value',
+ 'value_encrypted' => 'Der Wert dieses Feldes ist in der Datenbank verschlüsselt. Nur Benutzer mit Berechtigungen können den entschlüsselten Wert sehen',
'show_in_email' => 'Feld miteinbeziehen bei Herausgabe-Emails an die Benutzer? Verschlüsselte Felder können nicht miteinbezogen werden',
'show_in_email_short' => 'In E-Mails einbeziehen',
'help_text' => 'Hilfetext',
diff --git a/resources/lang/de-if/admin/depreciations/general.php b/resources/lang/de-if/admin/depreciations/general.php
index e4ef727867..df03b5452b 100644
--- a/resources/lang/de-if/admin/depreciations/general.php
+++ b/resources/lang/de-if/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Über Asset-Abschreibungen',
- 'about_depreciations' => 'Du kannst Asset-Abschreibungen einrichten, um Assets linear abzuschreiben.',
+ 'about_depreciations' => 'Sie können Asset-Abschreibungen einrichten, um Vermögenswerte abzuwerten, basierend auf linearer Abschreibung, Halbjahr mit Bedingung oder Halbjahr immer angewendet.',
'asset_depreciations' => 'Asset-Abschreibungen',
'create' => 'Abschreibung erstellen',
'depreciation_name' => 'Abschreibungs Name',
diff --git a/resources/lang/de-if/admin/hardware/form.php b/resources/lang/de-if/admin/hardware/form.php
index 1e422cc588..fc27450e0f 100644
--- a/resources/lang/de-if/admin/hardware/form.php
+++ b/resources/lang/de-if/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Gehe von herausgegeben zu',
'select_statustype' => 'Status Typ auswählen',
'serial' => 'Seriennummer',
+ 'serial_required' => 'Asset :number erfordert eine Seriennummer',
+ 'serial_required_post_model_update' => ':asset_model wurde aktualisiert, um eine Seriennummer zu erfordern. Bitte fügen Sie eine Seriennummer für dieses Asset hinzu.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/de-if/admin/hardware/general.php b/resources/lang/de-if/admin/hardware/general.php
index 9381d904d7..56414fff7a 100644
--- a/resources/lang/de-if/admin/hardware/general.php
+++ b/resources/lang/de-if/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Angefordert',
'not_requestable' => 'Kann nicht angefordert werden',
'requestable_status_warning' => 'Anforderbaren Status nicht ändern',
+ 'require_serial' => 'Seriennummer erforderlich',
+ 'require_serial_help' => 'Beim Erstellen eines neuen Assets dieses Modells wird eine Seriennummer benötigt.',
'restore' => 'Asset wiederherstellen',
'pending' => 'Ausstehende',
'undeployable' => 'Nicht einsetzbar',
diff --git a/resources/lang/de-if/admin/licenses/message.php b/resources/lang/de-if/admin/licenses/message.php
index df0ed3a999..b221247ba3 100644
--- a/resources/lang/de-if/admin/licenses/message.php
+++ b/resources/lang/de-if/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Nicht genügend Lizenz-Plätze zur Herausgabe verfügbar',
'mismatch' => 'Die bereitgestellte Lizenzplatzierung entspricht nicht der Lizenz',
'unavailable' => 'Dieser Platz ist nicht zur Ausleihe verfügbar.',
+ 'license_is_inactive' => 'Diese Lizenz ist abgelaufen oder beendet.',
),
'checkin' => array(
'error' => 'Lizenz wurde nicht zurückgenommen, bitte versuche es erneut.',
- 'not_reassignable' => 'Lizenz nicht neu zuweisbar',
+ 'not_reassignable' => 'Platz wurde verwendet',
'success' => 'Die Lizenz wurde erfolgreich zurückgenommen'
),
diff --git a/resources/lang/de-if/admin/locations/message.php b/resources/lang/de-if/admin/locations/message.php
index f62f15abf4..71650dc175 100644
--- a/resources/lang/de-if/admin/locations/message.php
+++ b/resources/lang/de-if/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Standort existiert nicht.',
- 'assoc_users' => 'Dieser Standort kann derzeit nicht gelöscht werden, da er der Standort eines Datensatzes für mindestens ein Asset oder einen Benutzer ist, ihm Assets zugewiesen sind oder er der übergeordnete Standort eines anderen Standorts ist. Aktualisiere Deine Datensätze, sodass dieser Standort nicht mehr referenziert wird, und versuche es erneut ',
+ 'assoc_users' => 'Dieser Standort kann aktuell nicht gelöscht werden, da ihm mindestens ein Asset, User oder anderer Standort zugewiesen ist. Bitte entferne alle Zuweisungen und versuche es erneut. ',
'assoc_assets' => 'Dieser Standort ist mindestens einem Gegenstand zugewiesen und kann nicht gelöscht werden. Bitte entferne die Standortzuweisung bei den jeweiligen Gegenständen und versuche erneut, diesen Standort zu entfernen. ',
'assoc_child_loc' => 'Dieser Standort ist mindestens einem anderen Ort übergeordnet und kann nicht gelöscht werden. Bitte aktualisiere Deine Standorte, so dass dieser Standort nicht mehr verknüpft ist, und versuche es erneut. ',
'assigned_assets' => 'Zugeordnete Assets',
'current_location' => 'Aktueller Standort',
'open_map' => 'Öffnen in :map_provider_icon Karten',
+ 'deleted_warning' => 'Dieser Standort wurde gelöscht. Bitte stellen Sie ihn wieder her, bevor Sie Änderungen vornehmen.',
'create' => array(
diff --git a/resources/lang/de-if/admin/locations/table.php b/resources/lang/de-if/admin/locations/table.php
index 048991ffb9..055608fdf1 100644
--- a/resources/lang/de-if/admin/locations/table.php
+++ b/resources/lang/de-if/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Standort erstellen',
'update' => 'Standort aktualisieren',
'print_assigned' => 'Zugewiesene drucken',
- 'print_all_assigned' => 'Alles Zugewiesene drucken',
+ 'print_inventory' => 'Inventar drucken',
+ 'print_all_assigned' => 'Inventar drucken und Zugewiesen',
'name' => 'Standortname',
'address' => 'Adresse',
'address2' => 'Adresszeile 2',
diff --git a/resources/lang/de-if/admin/models/table.php b/resources/lang/de-if/admin/models/table.php
index a9967caeba..feecbb7553 100644
--- a/resources/lang/de-if/admin/models/table.php
+++ b/resources/lang/de-if/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Modelle',
'update' => 'Asset Modell aktualisieren',
'view' => 'Asset Modell ansehen',
- 'update' => 'Asset Modell aktualisieren',
- 'clone' => 'Modell duplizieren',
- 'edit' => 'Modell bearbeiten',
+ 'clone' => 'Modell duplizieren',
+ 'edit' => 'Modell bearbeiten',
);
diff --git a/resources/lang/de-if/admin/users/general.php b/resources/lang/de-if/admin/users/general.php
index 5b3c61beef..e5402b3ca5 100644
--- a/resources/lang/de-if/admin/users/general.php
+++ b/resources/lang/de-if/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Diesen Benutzer bei der automatischen Zuweisung berechtigter Lizenzen einbeziehen',
'auto_assign_help' => 'Diesen Benutzer bei der automatischen Zuweisung von Lizenzen überspringen',
'software_user' => 'Software herausgegeben an :name',
- 'send_email_help' => 'Du musst eine E-Mail-Adresse angeben, um dem Benutzer Zugangsdaten zu zusenden. Das Versenden von Zugangsdaten ist nur bei der Erstellung eines Benutzers möglich. Passwörter werden in einem Einweg-Hash gespeichert und können danach nicht mehr ausgelesen werden.',
'view_user' => 'Benutzer :name ansehen',
'usercsv' => 'CSV Datei',
'two_factor_admin_optin_help' => 'Ihre aktuellen Administrator-Einstellungen erlauben die selektive Durchführung der Zwei-Faktor-Authentifizierung. ',
diff --git a/resources/lang/de-if/admin/users/table.php b/resources/lang/de-if/admin/users/table.php
index 10a72f5c48..5878c359c0 100644
--- a/resources/lang/de-if/admin/users/table.php
+++ b/resources/lang/de-if/admin/users/table.php
@@ -27,7 +27,7 @@ return array(
'password_confirm' => 'Passwort bestätigen',
'password' => 'Passwort',
'phone' => 'Telefonnummer',
- 'mobile' => 'Mobile',
+ 'mobile' => 'Mobiltelefon',
'show_current' => 'Aktuelle Benutzer anzeigen',
'show_deleted' => 'Gelöschte Benutzer anzeigen',
'title' => 'Titel',
@@ -35,7 +35,7 @@ return array(
'total_assets_cost' => "Gesamtkosten",
'updateuser' => 'Benutzer aktualisieren',
'username' => 'Benutzername',
- 'display_name' => 'Display Name',
+ 'display_name' => 'Anzeigename',
'user_deleted_text' => 'Dieser Benutzer wurde als gelöscht markiert.',
'username_note' => '(Dies wird nur für die Active Directory-Bindung verwendet, nicht für die Anmeldung.)',
'cloneuser' => 'Benutzer kopieren',
diff --git a/resources/lang/de-if/general.php b/resources/lang/de-if/general.php
index 8e0ceb0dd6..01879141d4 100644
--- a/resources/lang/de-if/general.php
+++ b/resources/lang/de-if/general.php
@@ -30,13 +30,13 @@ return [
'asset_report' => 'Bestandsbericht',
'asset_tag' => 'Kennzeichnung',
'asset_tags' => 'Inventarnummern',
- 'available' => 'Available',
+ 'available' => 'Verfügbar',
'assets_available' => 'Verfügbare Assets',
'accept_assets' => 'Assets :name akzeptieren',
'accept_assets_menu' => 'Assets akzeptieren',
'accept_item' => 'Gegenstand akzeptieren',
'audit' => 'Prüfung',
- 'audited' => 'Audited',
+ 'audited' => 'testiert',
'audits' => 'Prüfung',
'audit_report' => 'Prüfungsbericht',
'assets' => 'Assets',
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Felder zuordnen und diese Datei bearbeiten',
'importing' => 'Importiere',
- 'importing_help' => 'Du kannst Assets, Zubehör, Lizenzen, Komponenten, Verbrauchsmaterialien und Benutzer mittels CSV-Datei importieren.
Die CSV-Datei sollte kommagetrennt sein und eine Kopfzeile enthalten, die mit den Beispiel-CSVs aus der Dokumentation übereinstimmen.',
+ 'importing_help' => 'Das CSV sollte kommagetrennt und mit Headern formatiert werden, die mit den in der Beispiel-CSVs in der Dokumentation übereinstimmen.',
'import-history' => 'Import Verlauf',
'asset_maintenance' => 'Wartungen',
'asset_maintenance_report' => 'Wartungsbericht',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'gesamte Lizenzen',
'total_accessories' => 'Zubehör',
'total_consumables' => 'gesamtes Verbrauchsmaterial',
+ 'total_cost' => 'Gesamtkosten',
'type' => 'Typ',
'undeployable' => 'Nicht herausgebbar',
'unknown_admin' => 'Unbekannter Administrator',
'unknown_user' => 'Unbekannter Benutzer',
+ 'unit_cost' => 'Stückkosten',
'username' => 'Benutzername',
'update' => 'Aktualisieren',
'updating_item' => ':item wird aktualisiert',
@@ -338,13 +340,13 @@ return [
'zip' => 'Postleitzahl',
'noimage' => 'Kein Bild hochgeladen oder kein Bild gefunden.',
'file_does_not_exist' => 'Die angeforderte Datei existiert nicht.',
- 'file_not_inlineable' => 'The requested file cannot be opened inline in your browser. You can download it instead.',
+ 'file_not_inlineable' => 'Die angeforderte Datei kann nicht inline in Ihrem Browser geöffnet werden. Sie können sie stattdessen herunterladen.',
'open_new_window' => 'Datei in neuem Fenster öffnen',
'file_upload_success' => 'Dateiupload erfolgreich!',
'no_files_uploaded' => 'Dateiupload erfolgreich!',
'token_expired' => 'Deine Sitzung ist abgelaufen. Bitte versuche es erneut.',
'login_enabled' => 'Login aktiviert',
- 'login_disabled' => 'Login Disabled',
+ 'login_disabled' => 'Login deaktiviert',
'audit_due' => 'Prüfung fällig',
'audit_due_days' => '{}Vermögenswerte, die zur Prüfung fällig oder überfällig sind|[1]Vermögenswerte, die innerhalb eines Tages zur Prüfung fällig oder überfällig sind|[2,*]Vermögenswerte, die innerhalb von :days Tagen zur Prüfung fällig oder überfällig sind',
'checkin_due' => 'Fällig zum Check-in',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Prüfung überfällig',
'accept' => 'Erhalt bestätigen: :asset',
'i_accept' => 'Ich akzeptiere',
- 'i_decline_item' => 'Diesen Gegenstand ablehnen',
- 'i_accept_item' => 'Diesen Gegenstand akzeptieren',
+ 'i_accept_with_count' => 'Ich akzeptiere :count Element|Ich akzeptiere :count Elemente',
+ 'i_decline_item' => 'Diesen Gegenstand ablehnen |Diese Gegenstände ablehnen',
+ 'i_accept_item' => 'Diesen Gegenstand akzeptieren|Diese Gegenstände akzeptieren',
'i_decline' => 'Ich lehne ab',
+ 'i_decline_with_count' => 'Ich lehne :count Gegenstand ab |I lehne :count Gegenstände ab',
'accept_decline' => 'Akzeptieren/Ablehnen',
'sign_tos' => 'Unterschreibe unten, um den Nutzungsbedingungen zuzustimmen:',
'clear_signature' => 'Unterschrift löschen',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Berechtigungen',
'managed_ldap' => '(Über LDAP verwaltet)',
'export' => 'Exportieren',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Synchronisierung',
'ldap_user_sync' => 'LDAP Benutzer Synchronisierung',
'synchronize' => 'Synchronisieren',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Vorhandene Werte aktualisieren?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Das Generieren von fortlaufenden Asset-Tags ist deaktiviert, daher müssen alle Datensätze die Spalte "Asset Tag" enthalten.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Hinweis: Das Generieren von fortlaufenden Asset-Tags ist aktiviert, daher wird für alle Datensätze, die keinen Asset-Tag angegeben haben, einer erstellt. Datensätze, die einen "Asset Tag" angegeben haben, werden mit den angegebenen Informationen aktualisiert.',
- 'send_welcome_email_to_users' => ' Willkommens-E-Mail für neue Benutzer senden? Beachte, dass nur Benutzer, die eine gültige E-Mail-Adresse haben und die in Deiner Importdatei als aktiviert markiert sind, eine E-mail erhalten werden.',
+ 'send_welcome_email_to_users' => ' Willkommens-E-Mail an neue Benutzer senden',
+ 'send_welcome_email_help' => 'Nur Benutzer, die eine gültige E-Mail-Adresse haben und als aktiviert markiert sind, erhalten eine Willkommens-E-Mail, in der sie ihr Passwort zurücksetzen können.',
+ 'send_welcome_email_import_help' => 'Nur neue Benutzer mit einer gültigen E-Mail-Adresse und die in Ihrer Importdatei als aktiviert markiert sind, erhalten eine willkommene E-Mail, in der sie ihr Passwort festlegen können.',
'send_email' => 'E-Mail senden',
'call' => 'Nummer anrufen',
'back_before_importing' => 'Vor dem Importieren sichern?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notizen',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout Zielfirma und Asset-Gesellschaft stimmen nicht überein',
+ 'error_user_company_multiple' => 'Eine oder mehrere Checkout Zielfirmen und Asset-Gesellschaften stimmen nicht überein',
'error_user_company_accept_view' => 'Ein Asset, welches dir zugewiesen wurde, gehört einem anderen Unternehmen, sodass du es nicht akzeptieren oder ablehnen kannst. Bitte prüfe das mit deinem Vorgesetzten',
+ 'error_assets_already_checked_out' => 'Ein oder mehrere der Assets sind bereits ausgecheckt',
+ 'assigned_assets_removed' => 'Die folgenden wurden aus den ausgewählten Assets entfernt, weil sie bereits ausgecheckt sind',
'importer' => [
'checked_out_to_fullname' => 'Herausgegeben an: Voller Name',
'checked_out_to_first_name' => 'Herausgegeben an: Vorname',
@@ -585,6 +595,8 @@ return [
'components' => ':count Komponente|:count Komponenten',
],
+ 'show_inactive' => 'Abgelaufen oder beendet',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Mehr Info',
'quickscan_bulk_help' => 'Wenn du dieses Kontrollkästchen aktivierst, wird der Asset-Datensatz so bearbeitet, dass der neue Standort angezeigt wird. Wenn du es nicht aktivierst, wird der Standort nur im Prüfprotokoll vermerkt. Beachte, dass sich der Standort der Person, des Assets oder des Standorts, an den es ausgecheckt wurde, nicht ändert, wenn dieses Asset ausgecheckt wird.',
'whoops' => 'Hoppla!',
@@ -605,10 +617,12 @@ return [
'version' => 'Version',
'build' => 'Build',
'use_cloned_image' => 'Kopiere Vorlage vom Original',
- 'use_cloned_image_help' => 'You may clone the original image or you can upload a new one using the upload field below.',
- 'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
+ 'use_cloned_image_help' => 'Sie können das Originalbild klonen oder ein neues hochladen, indem Sie das untenstehende Upload-Feld benutzen.',
+ 'use_cloned_no_image_help' => 'Dieser Gegenstand hat kein zugehöriges Bild und erbt stattdessen vom Modell oder der Kategorie, zu der es gehört. Wenn Sie ein bestimmtes Bild für diesen Gegenstand verwenden möchten, können Sie unten ein neues hochladen.',
'footer_credit' => 'Snipe-IT ist Open-Source-Software, entwickelt mit Liebe von @snipeitapp.com.',
'set_password' => 'Passwort festlegen',
+ 'upload_deleted' => 'Upload gelöscht',
+ 'child_locations' => 'Untergeordneter Standort',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Seiten Standard',
'default_blue' => 'Standard Blau',
'blue_dark' => 'Blau (Dunkler Modus)',
- 'green' => 'Grün Dunkel',
+ 'green' => 'Grün',
'green_dark' => 'Grün (Dunkler Modus)',
- 'red' => 'Rot Dunkel',
+ 'red' => 'Rot',
'red_dark' => 'Rot (Dunkler Modus)',
- 'orange' => 'Orange Dunkel',
+ 'orange' => 'orange',
'orange_dark' => 'Orange (Dunkler Modus)',
'black' => 'Schwarz',
'black_dark' => 'Schwarz (Dunkler Modus)',
diff --git a/resources/lang/de-if/mail.php b/resources/lang/de-if/mail.php
index 9737fc7ba0..b3f66803c3 100644
--- a/resources/lang/de-if/mail.php
+++ b/resources/lang/de-if/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Zubehör zurückgenommen',
- 'Accessory_Checkout_Notification' => 'Zubehör herausgegeben',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset zurückgenommen: :tag',
+ 'Asset_Checkout_Notification' => 'Asset herausgegeben: :tag',
'Confirm_Accessory_Checkin' => 'Bestätigung einer Zubehör Rücknahme',
'Confirm_Asset_Checkin' => 'Bestätigung einer Asset Rücknahme',
'Confirm_component_checkin' => 'Bestätigung der Zurücknahme von Komponenten',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Ihr ausgebuchtes Asset ist fällig zur Rückgabe am :date',
'Expected_Checkin_Notification' => 'Erinnerung: :name Rückgabedatum nähert sich',
'Expected_Checkin_Report' => 'Bericht über erwartete Asset Rückgaben',
- 'Expiring_Assets_Report' => 'Bericht über ablaufende Gegenstände.',
- 'Expiring_Licenses_Report' => 'Bericht über ablaufende Lizenzen.',
+ 'Expiring_Assets_Report' => 'Bericht über ablaufende Gegenstände',
+ 'Expiring_Licenses_Report' => 'Bericht über ablaufende Lizenzen',
'Item_Request_Canceled' => 'Gegenstands Anfrage abgebrochen',
'Item_Requested' => 'Gegenstand angefordert',
'License_Checkin_Notification' => 'Lizenz zurückgenommen',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Bericht über niedrige Lagerbestände',
'a_user_canceled' => 'Eine Geräte-Anfrage auf der Webseite wurde vom Benutzer abgebrochen',
'a_user_requested' => 'Ein Benutzer hat ein Gerät auf der Webseite angefordert',
- 'acceptance_asset_accepted_to_user' => 'Sie haben einen Gegenstand akzeptiert, der ihnen von :site_name zugewiesen wurde',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Ein Benutzer hat einen Gegenstand akzeptiert',
'acceptance_asset_declined' => 'Ein Benutzer hat einen Gegenstand abgelehnt',
'send_pdf_copy' => 'Sende eine Kopie dieser Annahme an meine E-Mail-Adresse',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Gegenstand angefordert',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'Die Garantie von :count Asset wird in :threshold Tagen auslaufen.|Die Garantie von :count Assets wird in :threshold Tagen auslaufen.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Zugewiesen an',
+ 'eol' => 'EOL',
'best_regards' => 'Grüße,',
'canceled' => 'Abgebrochen',
'checkin_date' => 'Rücknahmedatum',
@@ -58,6 +59,7 @@ return [
'days' => 'Tage',
'expecting_checkin_date' => 'Erwartetes Rückgabedatum',
'expires' => 'Ablaufdatum',
+ 'terminates' => 'Terminates',
'following_accepted' => 'Das Folgende wurde akzeptiert',
'following_declined' => 'Das Folgende wurde abgelehnt',
'hello' => 'Hallo',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Bestandsbericht',
'item' => 'Gegenstand',
'item_checked_reminder' => 'Dies ist eine Erinnerung, dass Sie derzeit :count Artikel ausgeliehen haben, die dunoch nicht akzeptiert oder abgelehnt hast. Bitte klicke auf den untenstehenden Link, um deine Entscheidung zu treffen.',
- 'license_expiring_alert' => 'Es gibt :count auslaufende Lizenz in den nächsten :threshold Tagen.|Es gibt :count auslaufende Lizenzen in den nächsten :threshold Tagen.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Klicken Sie bitte auf den folgenden Link zum Aktualisieren Ihres :web Passworts:',
'login' => 'Anmelden',
'login_first_admin' => 'Melde Diche zu Deiner neuen Snipe-IT-Installation mithilfe der unten stehenden Anmeldeinformationen an:',
'low_inventory_alert' => 'Es gibt :count Artikel, der unter dem Minimum ist oder kurz davor ist.|Es gibt :count Artikel, die unter dem Minimum sind oder kurz davor sind.',
'min_QTY' => 'Mindestmenge',
'name' => 'Name',
- 'new_item_checked' => 'Ein neuer Gegenstand wurde unter Ihrem Namen ausgecheckt. Details folgen.',
- 'new_item_checked_with_acceptance' => 'Ein neuer Gegenstand, der eine Annahme erfordert, wurde unter Deinem Namen ausgecheckt. Details findest Du weiter unten.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'Ein Gegenstand, der eine Annahme erfordert, wurde unter Deinem Namen ausgecheckt. Details findest Du weiter unten.',
'notes' => 'Notizen',
'password' => 'Passwort',
diff --git a/resources/lang/el-GR/admin/custom_fields/general.php b/resources/lang/el-GR/admin/custom_fields/general.php
index dd13b134b6..4779f2ca40 100644
--- a/resources/lang/el-GR/admin/custom_fields/general.php
+++ b/resources/lang/el-GR/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Διαχείριση',
'field' => 'Πεδίο',
'about_fieldsets_title' => 'Σχετικά με τα σύνολα πεδίων',
- 'about_fieldsets_text' => 'Τα πεδία των πεδίων σάς επιτρέπουν να δημιουργείτε ομάδες προσαρμοσμένων πεδίων που χρησιμοποιούνται συχνά ξανά για συγκεκριμένους τύπους μοντέλων στοιχείων ενεργητικού.',
+ 'about_fieldsets_text' => 'Τα Fieldsets σας επιτρέπουν να δημιουργήσετε ομάδες προσαρμοσμένων πεδίων που συχνά επαναχρησιμοποιούνται για συγκεκριμένους τύπους μοντέλου στοιχείων ενεργητικού.',
'custom_format' => 'Προσαρμοσμένη μορφή Regex...',
'encrypt_field' => 'Κρυπτογράφηση της αξίας του πεδίου στη βάση δεδομένων',
'encrypt_field_help' => 'Προειδοποίηση: H κρυπτογράφηση ενός πεδίου την καθιστά ανεξερεύνητη.',
diff --git a/resources/lang/el-GR/admin/depreciations/general.php b/resources/lang/el-GR/admin/depreciations/general.php
index 321717c772..df17e901f8 100644
--- a/resources/lang/el-GR/admin/depreciations/general.php
+++ b/resources/lang/el-GR/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Για αποσβέσεις παγίου',
- 'about_depreciations' => 'Μπορείτε να ορίσετε αποσβέσεις του περιουσιακού στοιχείου προκειμένου να γίνει απόσβεση περιουσιακών στοιχείων βάσει σταθερής απόσβεσης.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Αποσβέσεις περιουσιακών στοιχείων',
'create' => 'Δημιουργία αποσβέσεων',
'depreciation_name' => 'Όνομα απόσβεσης',
diff --git a/resources/lang/el-GR/admin/hardware/form.php b/resources/lang/el-GR/admin/hardware/form.php
index dfcf96d511..a3d778bf2e 100644
--- a/resources/lang/el-GR/admin/hardware/form.php
+++ b/resources/lang/el-GR/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Επιλέξτε Τύπο Κατάστασης',
'serial' => 'Σειριακός',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Κατάσταση',
'tag' => 'Ετικέτα πόρων',
'update' => 'Ενημέρωση παγίου',
diff --git a/resources/lang/el-GR/admin/hardware/general.php b/resources/lang/el-GR/admin/hardware/general.php
index f96d2a90b7..5201808ae2 100644
--- a/resources/lang/el-GR/admin/hardware/general.php
+++ b/resources/lang/el-GR/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Ζητήθηκαν',
'not_requestable' => 'Δεν Απαιτούνται',
'requestable_status_warning' => 'Να μην αλλαχθεί η κατάσταση αιτήματος',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Επαναφορά παγίου',
'pending' => 'Εκκρεμεί',
'undeployable' => 'Μη διανέμεται',
diff --git a/resources/lang/el-GR/admin/licenses/message.php b/resources/lang/el-GR/admin/licenses/message.php
index d377548466..07e3abc0ef 100644
--- a/resources/lang/el-GR/admin/licenses/message.php
+++ b/resources/lang/el-GR/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Δεν υπάρχουν αρκετές θέσεις άδειας χρήσης για ολοκλήρωση της παραγγελίας',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Παρουσιάστηκε ένα ζήτημα ελέγχου της άδειας. ΠΑΡΑΚΑΛΩ προσπαθησε ξανα.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Η άδεια έχει ελεγχθεί με επιτυχία'
),
diff --git a/resources/lang/el-GR/admin/locations/message.php b/resources/lang/el-GR/admin/locations/message.php
index 1470363052..b892a45108 100644
--- a/resources/lang/el-GR/admin/locations/message.php
+++ b/resources/lang/el-GR/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Η τοποθεσία δεν υπάρχει.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Αυτή η τοποθεσία συσχετίζεται προς το παρόν με τουλάχιστον ένα στοιχείο και δεν μπορεί να διαγραφεί. Ενημερώστε τα στοιχεία σας ώστε να μην αναφέρονται πλέον στην τοποθεσία αυτή και να προσπαθήσετε ξανά.',
'assoc_child_loc' => 'Αυτή η τοποθεσία είναι αυτήν τη στιγμή γονέας τουλάχιστον μιας τοποθεσίας παιδιού και δεν μπορεί να διαγραφεί. Ενημερώστε τις τοποθεσίες σας ώστε να μην αναφέρονται πλέον σε αυτήν την τοποθεσία και δοκιμάστε ξανά.',
'assigned_assets' => 'Αντιστοιχισμένα Στοιχεία Ενεργητικού',
'current_location' => 'Τρέχουσα Τοποθεσία',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/el-GR/admin/locations/table.php b/resources/lang/el-GR/admin/locations/table.php
index b6131d7dba..b30d53aef6 100644
--- a/resources/lang/el-GR/admin/locations/table.php
+++ b/resources/lang/el-GR/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Δημιουργία τοποθεσίας',
'update' => 'Ανανέωση τοποθεσίας',
'print_assigned' => 'Εκτύπωση Που Ανατέθηκε',
- 'print_all_assigned' => 'Εκτύπωση Όλων Των Ανατεθέντων',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Όνομα τοποθεσίας',
'address' => 'Διεύθυνση',
'address2' => 'Γραμμή Διεύθυνσης 2',
diff --git a/resources/lang/el-GR/admin/models/table.php b/resources/lang/el-GR/admin/models/table.php
index 529085546a..a75a246c47 100644
--- a/resources/lang/el-GR/admin/models/table.php
+++ b/resources/lang/el-GR/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Μοντέλα Παγίων',
'update' => 'Ενημέρωση παγίου μοντέλου',
'view' => 'Προβολή μοντέλου περιουσιακού στοιχείου',
- 'update' => 'Ενημέρωση παγίου μοντέλου',
- 'clone' => 'Κλώνος μοντέλο',
- 'edit' => 'Επεξεργασία μοντέλου',
+ 'clone' => 'Κλώνος μοντέλο',
+ 'edit' => 'Επεξεργασία μοντέλου',
);
diff --git a/resources/lang/el-GR/admin/users/general.php b/resources/lang/el-GR/admin/users/general.php
index 0dace22d18..342806aac6 100644
--- a/resources/lang/el-GR/admin/users/general.php
+++ b/resources/lang/el-GR/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Συμπερίληψη αυτού του χρήστη κατά την αυτόματη εκχώρηση κατάλληλων αδειών',
'auto_assign_help' => 'Παράλειψη αυτού του χρήστη στην αυτόματη ανάθεση αδειών',
'software_user' => 'Λογισμικό Έγινε έλεγχος σε: όνομα',
- 'send_email_help' => 'Πρέπει να δώσετε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για αυτόν τον χρήστη για να του στείλει τα διαπιστευτήρια. Τα στοιχεία ηλεκτρονικού ταχυδρομείου μπορούν να γίνουν μόνο κατά τη δημιουργία του χρήστη. Οι κωδικοί πρόσβασης αποθηκεύονται με μονόδρομο hash και δεν μπορούν να ανακτηθούν μόλις αποθηκευτούν.',
'view_user' => 'Προβολή χρήστη :ονόματος',
'usercsv' => 'CSV αρχείο',
'two_factor_admin_optin_help' => 'Οι τρέχουσες ρυθμίσεις διαχειριστή επιτρέπουν την επιλεκτική εφαρμογή ελέγχου ταυτότητας δύο παραγόντων.',
diff --git a/resources/lang/el-GR/general.php b/resources/lang/el-GR/general.php
index 4a3bed26bd..8e60809291 100644
--- a/resources/lang/el-GR/general.php
+++ b/resources/lang/el-GR/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Εισαγωγή',
'import_this_file' => 'Χάρτης πεδίων και επεξεργασία αυτού του αρχείου',
'importing' => 'Εισαγωγή',
- 'importing_help' => 'Μπορείτε να εισάγετε περιουσιακά στοιχεία, αξεσουάρ, άδειες, συστατικά, αναλώσιμα και χρήστες μέσω CSV αρχείο.
Το CSV θα πρέπει να οριοθετείται από κόμματα και να μορφοποιείται με κεφαλίδες που ταιριάζουν με αυτές στο δείγμα CSV στην τεκμηρίωση.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Ιστορικό Εισαγωγών',
'asset_maintenance' => 'Συντήρηση Παγίου',
'asset_maintenance_report' => 'Αναφορά Συντήρησης Παγίου',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'σύνολο αδειών',
'total_accessories' => 'σύνολο εξαρτημάτων',
'total_consumables' => 'συνολικών αναλωσίμων',
+ 'total_cost' => 'Total Cost',
'type' => 'Είδος',
'undeployable' => 'Δεν μπορεί να αναπτυχθεί',
'unknown_admin' => 'Άγνωστο Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Όνομα χρήστη',
'update' => 'Ενημέρωση',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Εκπρόθεσμο για έλεγχο',
'accept' => 'Αποδοχή :asset',
'i_accept' => 'Αποδέχομαι',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Απορρίπτω',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Αποδοχή/Απόρριψη',
'sign_tos' => 'Υπογράψτε παρακάτω για να δηλώσετε ότι συμφωνείτε με τους όρους της υπηρεσίας:',
'clear_signature' => 'Εκκαθάριση Υπογραφής',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Δικαιώματα',
'managed_ldap' => '(Διαχειρίζεται μέσω LDAP)',
'export' => 'Εξαγωγή',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Συγχρονισμός LDAP',
'ldap_user_sync' => 'Συγχρονισμός Χρήστη LDAP',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Ενημέρωση Υφιστάμενων Τιμών?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Η δημιουργία ετικετών στοιχείων ενεργητικού αυτόματης αύξησης είναι απενεργοποιημένη, έτσι ώστε όλες οι σειρές πρέπει να έχουν τη στήλη "Ετικέτα ενεργητικού" συμπιεσμένη.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Σημείωση: Η δημιουργία ετικετών στοιχείων ενεργητικού αυτόματης προσαύξησης είναι ενεργοποιημένη έτσι ώστε τα περιουσιακά στοιχεία θα δημιουργηθούν για γραμμές που δεν έχουν την "Ετικέτα ενεργητικού" κατοικημένα. Οι σειρές που έχουν συμπληρώσει την "Ετικέτα περιουσιακών στοιχείων" θα ενημερωθούν με τις παρεχόμενες πληροφορίες.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Αποστολή Email',
'call' => 'Αριθμός κλήσης',
'back_before_importing' => 'Αντίγραφο ασφαλείας πριν από την εισαγωγή?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Σημειώσεις',
'item_name_var' => ':item Όνομα',
'error_user_company' => 'Ολοκλήρωση Παραγγελίας εταιρεία στόχος και εταιρεία περιουσιακών στοιχείων δεν ταιριάζουν',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Ένα περιουσιακό στοιχείο που σας έχει ανατεθεί ανήκει σε μια διαφορετική εταιρεία, έτσι δεν μπορείτε να το δεχτείτε ούτε να το αρνηθείτε, παρακαλώ ελέγξτε με το διαχειριστή σας',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Έλεγξε σε: Πλήρες Όνομα',
'checked_out_to_first_name' => 'Έγινε έλεγχος σε: Όνομα',
@@ -585,6 +595,8 @@ return [
'components' => ':count Εξαρτήματα |:count Εξαρτήματα',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Περισσότερες Πληροφορίες',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/el-GR/mail.php b/resources/lang/el-GR/mail.php
index f4ca02759c..e078cbd06f 100644
--- a/resources/lang/el-GR/mail.php
+++ b/resources/lang/el-GR/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Το αξεσουάρ επανήλθε',
- 'Accessory_Checkout_Notification' => 'Το αξεσουάρ ελέγχθηκε',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Επιβεβαίωση ελέγχου αξεσουάρ',
'Confirm_Asset_Checkin' => 'Επιβεβαίωση στοιχείου ενεργητικού',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Ένα στοιχείο που αποδεσμεύθηκε για εσάς αναμένεται να ελεγχθεί ξανά στις :date',
'Expected_Checkin_Notification' => 'Υπενθύμιση: πλησιάζει η προθεσμία :name checkin',
'Expected_Checkin_Report' => 'Αναμενόμενη αναφορά ελέγχου στοιχείων ενεργητικού',
- 'Expiring_Assets_Report' => 'Αναφορά λήξης παγίων.',
- 'Expiring_Licenses_Report' => 'Αναφορά λήξης αδειών.',
+ 'Expiring_Assets_Report' => 'Αναφορά λήξης παγίων',
+ 'Expiring_Licenses_Report' => 'Αναφορά λήξης αδειών',
'Item_Request_Canceled' => 'Αίτηση στοιχείου ακυρώθηκε',
'Item_Requested' => 'Στοιχείο που ζητήθηκε',
'License_Checkin_Notification' => 'Η άδεια επανήλθε',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Αναφορά χαμηλού αποθέματος',
'a_user_canceled' => 'Ένας χρήστης έχει ακυρώσει μια αίτηση στοιχείο στην ιστοσελίδα',
'a_user_requested' => 'Ο χρήστης έχει ζητήσει ένα στοιχείο στην ιστοσελίδα',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Ένας χρήστης έχει αποδεχθεί ένα αντικείμενο',
'acceptance_asset_declined' => 'Ένας χρήστης έχει απορρίψει ένα στοιχείο',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Ονομασία του παγίου',
'asset_requested' => 'Πάγιο αίτήθηκε',
'asset_tag' => 'Ετικέτα παγίων',
- 'assets_warrantee_alert' => 'Υπάρχει :count περιουσιακό στοιχείο με μια εγγύηση που λήγει στις επόμενες :threshold days.°C. Υπάρχουν :count περιουσιακά στοιχεία με εγγυήσεις που λήγουν στις επόμενες :threshold ημέρες.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Ανατέθηκε στον',
+ 'eol' => 'EOL',
'best_regards' => 'Τις καλύτερες ευχές,',
'canceled' => 'Ακυρωμένο',
'checkin_date' => 'Ημερομηνία άφιξης',
@@ -58,6 +59,7 @@ return [
'days' => 'Ημέρες',
'expecting_checkin_date' => 'Αναμενώμενη ημέρα άφιξης',
'expires' => 'Λήξη',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Γεια',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Έκθεση Αποθέματος',
'item' => 'Αντικείμενο',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Υπάρχει :count άδεια που λήγει στις επόμενες :threshold ημέρες."Υπάρχουν :count άδειες που λήγουν στις επόμενες :threshold ημέρες.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Κάντε κλικ στον παρακάτω σύνδεσμο για να ενημερώσετε τον κωδικό: web:',
'login' => 'Είσοδος',
'login_first_admin' => 'Συνδεθείτε στη νέα σας εγκατάσταση Snipe-IT χρησιμοποιώντας τα παρακάτω διαπιστευτήρια:',
'low_inventory_alert' => 'Υπάρχει :count στοιχείο που είναι κάτω από το ελάχιστο απόθεμα ή σύντομα θα είναι χαμηλό. Υπάρχουν :count στοιχεία που είναι κάτω από το ελάχιστο απόθεμα ή σύντομα θα είναι χαμηλή.',
'min_QTY' => 'Ελάχιστη ποσότητα',
'name' => 'Όνομα',
- 'new_item_checked' => 'Ένα νέο στοιχείο έχει ελεγχθεί με το όνομά σας, οι λεπτομέρειες είναι παρακάτω.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Σημειώσεις',
'password' => 'Κωδικός Πρόσβασης',
diff --git a/resources/lang/en-GB/admin/custom_fields/general.php b/resources/lang/en-GB/admin/custom_fields/general.php
index 0a3c48fa21..540c59a023 100644
--- a/resources/lang/en-GB/admin/custom_fields/general.php
+++ b/resources/lang/en-GB/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/en-GB/admin/depreciations/general.php b/resources/lang/en-GB/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/en-GB/admin/depreciations/general.php
+++ b/resources/lang/en-GB/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/en-GB/admin/hardware/form.php b/resources/lang/en-GB/admin/hardware/form.php
index f3bfea3d27..208e0682c5 100644
--- a/resources/lang/en-GB/admin/hardware/form.php
+++ b/resources/lang/en-GB/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/en-GB/admin/hardware/general.php b/resources/lang/en-GB/admin/hardware/general.php
index 4d2d899e7a..5b5c2e74c5 100644
--- a/resources/lang/en-GB/admin/hardware/general.php
+++ b/resources/lang/en-GB/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/en-GB/admin/licenses/message.php b/resources/lang/en-GB/admin/licenses/message.php
index 1512ca6441..aadc5083e1 100644
--- a/resources/lang/en-GB/admin/licenses/message.php
+++ b/resources/lang/en-GB/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough licence seats available for checkout',
'mismatch' => 'The licence seat provided does not match the licence',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'Licence not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/en-GB/admin/locations/message.php b/resources/lang/en-GB/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/en-GB/admin/locations/message.php
+++ b/resources/lang/en-GB/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/en-GB/admin/locations/table.php b/resources/lang/en-GB/admin/locations/table.php
index 53176d8a4e..d7128b30f7 100644
--- a/resources/lang/en-GB/admin/locations/table.php
+++ b/resources/lang/en-GB/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/en-GB/admin/models/table.php b/resources/lang/en-GB/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/en-GB/admin/models/table.php
+++ b/resources/lang/en-GB/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/en-GB/admin/users/general.php b/resources/lang/en-GB/admin/users/general.php
index 92f5ea6426..cf0d013048 100644
--- a/resources/lang/en-GB/admin/users/general.php
+++ b/resources/lang/en-GB/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licences',
'auto_assign_help' => 'Skip this user in auto assignment of licences',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/en-GB/general.php b/resources/lang/en-GB/general.php
index e9f710d531..f576de4701 100644
--- a/resources/lang/en-GB/general.php
+++ b/resources/lang/en-GB/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronise',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/en-GB/mail.php b/resources/lang/en-GB/mail.php
index a59e8c17ef..77a7e5a12f 100644
--- a/resources/lang/en-GB/mail.php
+++ b/resources/lang/en-GB/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/en-ID/admin/custom_fields/general.php b/resources/lang/en-ID/admin/custom_fields/general.php
index 4563acc5bd..7a9ef4c1f4 100644
--- a/resources/lang/en-ID/admin/custom_fields/general.php
+++ b/resources/lang/en-ID/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Bidang',
'about_fieldsets_title' => 'Tentang Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets memungkinkan Anda membuat kelompok bidang khusus yang sering digunakan kembali untuk jenis model aset tertentu.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Enkripsikan nilai bidang ini di database',
'encrypt_field_help' => 'PERINGATAN: Mengenkripsi sebuah field membuatnya tidak bisa ditelusuri.
diff --git a/resources/lang/en-ID/admin/depreciations/general.php b/resources/lang/en-ID/admin/depreciations/general.php
index 2db38cca23..d1d640db67 100644
--- a/resources/lang/en-ID/admin/depreciations/general.php
+++ b/resources/lang/en-ID/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Tentang Penyusutan Aset',
- 'about_depreciations' => 'Anda dapat mengatur depresiasi aset berdasarkan straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Penyusutan Aset',
'create' => 'Buat Pengurangan',
'depreciation_name' => 'Nama Penyusutan',
diff --git a/resources/lang/en-ID/admin/hardware/form.php b/resources/lang/en-ID/admin/hardware/form.php
index 32a312a0be..e369fe2f0c 100644
--- a/resources/lang/en-ID/admin/hardware/form.php
+++ b/resources/lang/en-ID/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Pilih Jenis Status',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Tag Aset',
'update' => 'Perbarui aset',
diff --git a/resources/lang/en-ID/admin/hardware/general.php b/resources/lang/en-ID/admin/hardware/general.php
index da39bb70f2..9f13f325fb 100644
--- a/resources/lang/en-ID/admin/hardware/general.php
+++ b/resources/lang/en-ID/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Diminta',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Kembalikan Aset',
'pending' => 'Tertunda',
'undeployable' => 'Tidak dapat disebarkan',
diff --git a/resources/lang/en-ID/admin/licenses/message.php b/resources/lang/en-ID/admin/licenses/message.php
index 693fc1f9e5..fc250d59b4 100644
--- a/resources/lang/en-ID/admin/licenses/message.php
+++ b/resources/lang/en-ID/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Terjadi masalah saat menghapus lisensi. Silahkan coba lagi.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Lisensi berhasil diperiksa'
),
diff --git a/resources/lang/en-ID/admin/locations/message.php b/resources/lang/en-ID/admin/locations/message.php
index 66e854c59e..6cf75e33bc 100644
--- a/resources/lang/en-ID/admin/locations/message.php
+++ b/resources/lang/en-ID/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Lokasi tidak ada.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Saat ini kategori ini terkait dengan setidaknya satu pengguna dan tidak dapat dihapus. Silahkan perbaharui pengguna anda untuk tidak lagi tereferensi dengan kategori ini dan coba lagi. ',
'assoc_child_loc' => 'Lokasi ini saat ini merupakan induk dari setidaknya satu lokasi anak dan tidak dapat dihapus. Perbarui lokasi Anda agar tidak lagi merujuk lokasi ini dan coba lagi. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Lokasi saat ini',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/en-ID/admin/locations/table.php b/resources/lang/en-ID/admin/locations/table.php
index 0eea824f9e..45600e5786 100644
--- a/resources/lang/en-ID/admin/locations/table.php
+++ b/resources/lang/en-ID/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Buat Lokasi',
'update' => 'Perbarui lokasi',
'print_assigned' => 'Cetak yang Ditetapkan',
- 'print_all_assigned' => 'Cetak Semua yang Ditetapkan',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nama lokasi',
'address' => 'Alamat',
'address2' => 'Address Line 2',
diff --git a/resources/lang/en-ID/admin/models/table.php b/resources/lang/en-ID/admin/models/table.php
index 362f11721e..dfc4c4b9b3 100644
--- a/resources/lang/en-ID/admin/models/table.php
+++ b/resources/lang/en-ID/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Model aset',
'update' => 'Perbarui model aset',
'view' => 'Lihat model aset',
- 'update' => 'Perbarui model aset',
- 'clone' => 'Gandakan model',
- 'edit' => 'Ubah model',
+ 'clone' => 'Gandakan model',
+ 'edit' => 'Ubah model',
);
diff --git a/resources/lang/en-ID/admin/users/general.php b/resources/lang/en-ID/admin/users/general.php
index 0141343992..8800217a54 100644
--- a/resources/lang/en-ID/admin/users/general.php
+++ b/resources/lang/en-ID/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software diperiksa untuk :name',
- 'send_email_help' => 'Anda harus menyediakan sebuah alamat email untuk pengguna ini untuk dikirimkan kredesial pada mereka. Kredensial penyuratan/email hanya dapat dilakukan pada pembuatan pengguna. Kata sandi disimpan dalam sebuah hash satu-arah dan tidak dapat diterima lagi setelah disimpan.',
'view_user' => 'Lihat pengguna :name',
'usercsv' => 'Berkas CSV',
'two_factor_admin_optin_help' => 'Pengaturan admin anda saat ini membolehkan pelaksanaan otentifikasi dua-faktor secara selektif. ',
diff --git a/resources/lang/en-ID/general.php b/resources/lang/en-ID/general.php
index d3e3f25c1e..8d8fe32100 100644
--- a/resources/lang/en-ID/general.php
+++ b/resources/lang/en-ID/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Impor',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Riwayat Impor',
'asset_maintenance' => 'Pemeliharaan Aset',
'asset_maintenance_report' => 'Laporan Pemeliharaan Aset',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total lisensi',
'total_accessories' => 'total aksesoris',
'total_consumables' => 'total masa pakai',
+ 'total_cost' => 'Total Cost',
'type' => 'Jenis',
'undeployable' => 'Tidak dapat disebarkan',
'unknown_admin' => 'Admin tidak diketahui',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Nama Pengguna',
'update' => 'Perbarui',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Info Lengkap',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/en-ID/mail.php b/resources/lang/en-ID/mail.php
index a24192f86b..0bc5c270ec 100644
--- a/resources/lang/en-ID/mail.php
+++ b/resources/lang/en-ID/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Laporan aset berakhir.',
- 'Expiring_Licenses_Report' => 'Laporan lisensi berakhir.',
+ 'Expiring_Assets_Report' => 'Laporan aset berakhir',
+ 'Expiring_Licenses_Report' => 'Laporan lisensi berakhir',
'Item_Request_Canceled' => 'Permintaan item dibatalkan',
'Item_Requested' => 'Item yang diminta',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Laporan Inventaris Rendah',
'a_user_canceled' => 'Pengguna sudah membatalkan permintaan item di situs web',
'a_user_requested' => 'Pengguna sudah meminta sebuah item di situs web',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nama Aset',
'asset_requested' => 'Permintaan aset',
'asset_tag' => 'Penanda aset',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Ditetapkan untuk',
+ 'eol' => 'EOL',
'best_regards' => 'Salam hormat,',
'canceled' => 'Dibatalkan',
'checkin_date' => 'Tanggal Check in',
@@ -58,6 +59,7 @@ return [
'days' => 'Hari',
'expecting_checkin_date' => 'Tanggal Checkin yang Diharapkan',
'expires' => 'Berakhir',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Halo',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Ada :count lisensi yang masa berlakunya akan habis dalam :threshold hari.|Ada :count lisensi yang masa berlakunya akan habis dalam :threshold hari.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Silahkan klik pada link berikut untuk memperbarui :web password:',
'login' => 'Masuk',
'login_first_admin' => 'Login ke instalasi Snipe-IT baru Anda dengan menggunakan kredensial di bawah ini:',
'low_inventory_alert' => 'Ada :count item yang di bawah minimum persediaan atau akan segera habis.|Ada :count item yang di bawah minimum persediaan atau akan segera habis.',
'min_QTY' => 'QTY minimum',
'name' => 'Nama',
- 'new_item_checked' => 'Item baru sudah diperiksa atas nama anda, rinciannya dibawah ini.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Catatan',
'password' => 'Kata Sandi',
diff --git a/resources/lang/en-US/admin/custom_fields/general.php b/resources/lang/en-US/admin/custom_fields/general.php
index 03caf10fa9..a1cda96d2f 100644
--- a/resources/lang/en-US/admin/custom_fields/general.php
+++ b/resources/lang/en-US/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/en-US/general.php b/resources/lang/en-US/general.php
index 630442c90f..3c6738bbdc 100644
--- a/resources/lang/en-US/general.php
+++ b/resources/lang/en-US/general.php
@@ -398,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -595,6 +596,7 @@ return [
],
'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
diff --git a/resources/lang/en-US/mail.php b/resources/lang/en-US/mail.php
index 707390e4f0..70ee6ba42f 100644
--- a/resources/lang/en-US/mail.php
+++ b/resources/lang/en-US/mail.php
@@ -59,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
diff --git a/resources/lang/es-CO/admin/custom_fields/general.php b/resources/lang/es-CO/admin/custom_fields/general.php
index 930fa557da..7ecd5f4a12 100644
--- a/resources/lang/es-CO/admin/custom_fields/general.php
+++ b/resources/lang/es-CO/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Administrar',
'field' => 'Campo',
'about_fieldsets_title' => 'Acerca de los grupos de campos',
- 'about_fieldsets_text' => 'Fieldsets te permite crear grupos de campos personalizados que son frecuentemente reutilizados para modelos específicos de equipos.',
+ 'about_fieldsets_text' => 'Los grupos de campos le permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.',
'custom_format' => 'Expresión regular personalizada...',
'encrypt_field' => 'Cifrar el valor de este campo en la base de datos',
'encrypt_field_help' => 'ADVERTENCIA: Cifrar un campo hace que no se pueda buscar.',
diff --git a/resources/lang/es-CO/admin/depreciations/general.php b/resources/lang/es-CO/admin/depreciations/general.php
index 62844e7004..902dd3f658 100644
--- a/resources/lang/es-CO/admin/depreciations/general.php
+++ b/resources/lang/es-CO/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Sobre depreciación de activos',
- 'about_depreciations' => 'Puede configurar la depreciación de activos usando un método de línea recta.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Depreciación de activos',
'create' => 'Crear depreciación',
'depreciation_name' => 'Nombre de depreciación',
diff --git a/resources/lang/es-CO/admin/hardware/form.php b/resources/lang/es-CO/admin/hardware/form.php
index 2e219a9db7..c9de308de2 100644
--- a/resources/lang/es-CO/admin/hardware/form.php
+++ b/resources/lang/es-CO/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Ir a elementos asignados',
'select_statustype' => 'Seleccionar un tipo de estado',
'serial' => 'Número de serie',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Estado',
'tag' => 'Placa del activo',
'update' => 'Actualizar activo',
diff --git a/resources/lang/es-CO/admin/hardware/general.php b/resources/lang/es-CO/admin/hardware/general.php
index 600dd30477..4f8b83fa6c 100644
--- a/resources/lang/es-CO/admin/hardware/general.php
+++ b/resources/lang/es-CO/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Solicitado',
'not_requestable' => 'No puede solicitarse',
'requestable_status_warning' => 'No cambiar el estado solicitable',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restaurar activo',
'pending' => 'Pendiente',
'undeployable' => 'No utilizable',
diff --git a/resources/lang/es-CO/admin/licenses/message.php b/resources/lang/es-CO/admin/licenses/message.php
index 059af6f348..755dbd9400 100644
--- a/resources/lang/es-CO/admin/licenses/message.php
+++ b/resources/lang/es-CO/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'No hay suficientes licencias disponibles para asignar',
'mismatch' => 'La licencia proporcionada no coincide con la licencia seleccionada',
'unavailable' => 'Esta licencia no está disponible para ser asignada.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Hubo un problema ingresando la licencia. Por favor, inténtelo de nuevo.',
- 'not_reassignable' => 'La licencia no se puede volver a asignar',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'La licencia fue ingresada correctamente'
),
diff --git a/resources/lang/es-CO/admin/locations/message.php b/resources/lang/es-CO/admin/locations/message.php
index 34e02a05a5..47672abd0f 100644
--- a/resources/lang/es-CO/admin/locations/message.php
+++ b/resources/lang/es-CO/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'La ubicación no existe.',
- 'assoc_users' => 'Esta ubicación no se puede eliminar actualmente porque es la ubicación de al menos un activo o usuario, tiene activos asignados o es la ubicación padre de otra ubicación. Por favor, actualice sus registros para que ya no hagan referencia a esta ubicación e inténtalo de nuevo ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Esta ubicación está actualmente asociada con al menos un activo y no puede ser eliminada. Por favor actualice sus activos para que ya no hagan referencia a esta ubicación e inténtelo de nuevo. ',
'assoc_child_loc' => 'Esta ubicación es actualmente el padre de al menos una ubicación hija y no puede ser eliminada. Por favor actualice sus ubicaciones para que ya no hagan referencia a esta ubicación e inténtelo de nuevo. ',
'assigned_assets' => 'Activos asignados',
'current_location' => 'Ubicación actual',
'open_map' => 'Abrir en mapas :map_provider_icon',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/es-CO/admin/locations/table.php b/resources/lang/es-CO/admin/locations/table.php
index 790e6b0b2e..2173d3f918 100644
--- a/resources/lang/es-CO/admin/locations/table.php
+++ b/resources/lang/es-CO/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Crear ubicación',
'update' => 'Actualizar ubicación',
'print_assigned' => 'Imprimir los asignados',
- 'print_all_assigned' => 'Imprimir todos los asignados',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nombre de ubicación',
'address' => 'Dirección',
'address2' => 'Dirección línea 2',
diff --git a/resources/lang/es-CO/admin/models/table.php b/resources/lang/es-CO/admin/models/table.php
index 312944b9cd..4e7c332156 100644
--- a/resources/lang/es-CO/admin/models/table.php
+++ b/resources/lang/es-CO/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modelos de activos',
'update' => 'Actualizar modelo de activo',
'view' => 'Ver modelo de activo',
- 'update' => 'Actualizar modelo de activo',
- 'clone' => 'Clonar modelo',
- 'edit' => 'Editar modelo',
+ 'clone' => 'Clonar modelo',
+ 'edit' => 'Editar modelo',
);
diff --git a/resources/lang/es-CO/admin/users/general.php b/resources/lang/es-CO/admin/users/general.php
index 1f8852ff8e..cddb21ed43 100644
--- a/resources/lang/es-CO/admin/users/general.php
+++ b/resources/lang/es-CO/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Incluye a este usuario al asignar automáticamente licencias elegibles',
'auto_assign_help' => 'Omitir este usuario en la asignación automática de licencias',
'software_user' => 'Software asignado a :name',
- 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para poder enviarle las credenciales. Únicamente pueden enviarse las credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.',
'view_user' => 'Ver usuario :name',
'usercsv' => 'Archivo CSV',
'two_factor_admin_optin_help' => 'La configuración actual permite la aplicación selectiva de la autenticación de dos factores. ',
diff --git a/resources/lang/es-CO/general.php b/resources/lang/es-CO/general.php
index 0a63fa628f..01bb2eb521 100644
--- a/resources/lang/es-CO/general.php
+++ b/resources/lang/es-CO/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importar',
'import_this_file' => 'Asociar campos y procesar este archivo',
'importing' => 'Importar datos',
- 'importing_help' => 'Puede importar activos, accesorios, licencias, componentes, consumibles y usuarios a través del archivo CSV.
El CSV debe estar delimitado por comas y formateado con encabezados que coincidan con los de los archivos CSV de muestra en la documentación.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importar historial',
'asset_maintenance' => 'Mantenimiento de activos',
'asset_maintenance_report' => 'Informe mantenimiento de activos',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'licencias totales',
'total_accessories' => 'accesorios totales',
'total_consumables' => 'consumibles totales',
+ 'total_cost' => 'Total Cost',
'type' => 'Tipo',
'undeployable' => 'No utilizable',
'unknown_admin' => 'Administrador desconocido',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Nombre de usuario',
'update' => 'Actualizar',
'updating_item' => 'Actualizando :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Auditoría atrasada',
'accept' => 'Aceptar :asset',
'i_accept' => 'Acepto',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Rechazo',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Aceptar/Rechazar',
'sign_tos' => 'Firme abajo para indicar que está de acuerdo con los términos de servicio:',
'clear_signature' => 'Borrar firma',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permisos',
'managed_ldap' => '(Administrado a través de LDAP)',
'export' => 'Exportar',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Sincronización LDAP',
'ldap_user_sync' => 'Sincronización de usuario LDAP',
'synchronize' => 'Sincronizar',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => '¿Actualizar valores existentes?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'La generación autoincrementable de las placas de activos está desactivada, por lo que todas las filas deben tener la columna "Asset Tag" con información.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Nota: La generación autoincrementable de las placas de activos está activada, por lo que se crearán activos para las filas sin información en la columna "Asset Tag". Las filas que sí tengan información en la columna "Asset Tag" se actualizarán con la información proporcionada.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Enviar correo electrónico',
'call' => 'Número de llamada',
'back_before_importing' => '¿Copia de seguridad antes de importar?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notas',
'item_name_var' => ':item Nombre',
'error_user_company' => 'La compañía destino de la asignación y la compañía del activo no coinciden',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Un activo asignado a usted pertenece a una compañía diferente por lo que no puede aceptarlo ni rechazarlo, por favor verifique con su supervisor',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Asignado a: Nombre completo',
'checked_out_to_first_name' => 'Asignado a: Nombre',
@@ -585,6 +595,8 @@ return [
'components' => ':count component|:count componentes',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Más información',
'quickscan_bulk_help' => 'Al marcar esta casilla se actualizará el activo para reflejar esta nueva ubicación. Dejarla sin marcar, simplemente almacenará la ubicación en el registro de auditoría. Tenga en cuenta que si este activo ya está asignado, no cambiará la ubicación de la persona, del activo o de la ubicación a la que esté asignado.',
'whoops' => '¡Uy!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Sitio por defecto',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/es-CO/mail.php b/resources/lang/es-CO/mail.php
index c3c7960f15..2378b3cc58 100644
--- a/resources/lang/es-CO/mail.php
+++ b/resources/lang/es-CO/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accesorio ingresado',
- 'Accessory_Checkout_Notification' => 'Accesorio asignado',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Confirmación de ingreso de accesorio',
'Confirm_Asset_Checkin' => 'Confirmación de ingreso de activo',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Un activo asignado a Ud. debe ser devuelto el :date',
'Expected_Checkin_Notification' => 'Recordatorio: :name se acerca la fecha de devolución',
'Expected_Checkin_Report' => 'Informe de próximas devoluciones de activos',
- 'Expiring_Assets_Report' => 'Informe de activos con garantía próxima a vencer.',
- 'Expiring_Licenses_Report' => 'Informe de licencias próximas a vencer.',
+ 'Expiring_Assets_Report' => 'Informe de activos con garantía próxima a vencer',
+ 'Expiring_Licenses_Report' => 'Informe de licencias próximas a vencer',
'Item_Request_Canceled' => 'Solicitud de artículo cancelada',
'Item_Requested' => 'Artículo solicitado',
'License_Checkin_Notification' => 'Licencia devuelta',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Informe sobre inventario bajo',
'a_user_canceled' => 'El usuario ha cancelado el elemento solicitado en la página web',
'a_user_requested' => 'Un usuario ha solicitado un elemento en la página web',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Un usuario ha aceptado un elemento',
'acceptance_asset_declined' => 'Un usuario ha rechazado un elemento',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nombre del activo',
'asset_requested' => 'Activo solicitado',
'asset_tag' => 'Placa del activo',
- 'assets_warrantee_alert' => 'Hay :count activo con una garantía que expira en los próximos :threshold days.|Hay :count activos con garantías que expiran en los siguientes :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Asignado a',
+ 'eol' => 'Fin de soporte (EOL)',
'best_regards' => 'Cordialmente,',
'canceled' => 'Cancelado',
'checkin_date' => 'Fecha de ingreso',
@@ -58,6 +59,7 @@ return [
'days' => 'Días',
'expecting_checkin_date' => 'Fecha esperada de devolución',
'expires' => 'Vence',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hola',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Informe de inventario',
'item' => 'Elemento',
'item_checked_reminder' => 'Este es un recordatorio de que actualmente tiene :count elemento(s) asignado(s) que no ha aceptado o rechazado. Haga clic en el siguiente enlace para confirmar su decisión.',
- 'license_expiring_alert' => 'Hay :count licencia que expira en los próximos :threshold días. | Hay :count licencias que expiran en los próximos :threshold días.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Por favor, haga clic en el siguiente enlace para actualizar su contraseña de :web :',
'login' => 'Iniciar sesión',
'login_first_admin' => 'Inicie sesión en su nueva instalación de Snipe-IT usando las credenciales:',
'low_inventory_alert' => 'Hay :count elemento que está por debajo del inventario mínimo o que pronto lo estará.|Hay :count elementos que están por debajo del inventario mínimo o que pronto lo estarán.',
'min_QTY' => 'Cantidad mínima',
'name' => 'Nombre',
- 'new_item_checked' => 'Un nuevo artículo ha sido asignado a su nombre, los detalles están a continuación.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notas',
'password' => 'Contraseña',
diff --git a/resources/lang/es-ES/admin/custom_fields/general.php b/resources/lang/es-ES/admin/custom_fields/general.php
index 6b622d01a8..80f74d372d 100644
--- a/resources/lang/es-ES/admin/custom_fields/general.php
+++ b/resources/lang/es-ES/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Administrar',
'field' => 'Campo',
'about_fieldsets_title' => 'Acerca de los grupos de campos',
- 'about_fieldsets_text' => 'Los grupos de campos personalizados te permiten agrupar campos que se usan frecuentemente para determinados modelos de equipos.',
+ 'about_fieldsets_text' => 'Los grupos de campos le permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.',
'custom_format' => 'Expresión regular personalizada...',
'encrypt_field' => 'Cifrar el valor de este campo en la base de datos',
'encrypt_field_help' => 'ADVERTENCIA: Cifrar un campo hace que no se pueda buscar.',
diff --git a/resources/lang/es-ES/admin/depreciations/general.php b/resources/lang/es-ES/admin/depreciations/general.php
index 19264bfffe..6841166bbe 100644
--- a/resources/lang/es-ES/admin/depreciations/general.php
+++ b/resources/lang/es-ES/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Sobre amortización de activos',
- 'about_depreciations' => 'Puede configurar la depreciación de activos usando un método de línea recta.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Depreciación de activos',
'create' => 'Crear amortización',
'depreciation_name' => 'Nombre amortización',
diff --git a/resources/lang/es-ES/admin/hardware/form.php b/resources/lang/es-ES/admin/hardware/form.php
index f735c673b1..edaf3dfd80 100644
--- a/resources/lang/es-ES/admin/hardware/form.php
+++ b/resources/lang/es-ES/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Ir a elementos asignados',
'select_statustype' => 'Seleccionar un tipo de estado',
'serial' => 'Número de serie',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Estado',
'tag' => 'Placa del activo',
'update' => 'Actualizar activo',
diff --git a/resources/lang/es-ES/admin/hardware/general.php b/resources/lang/es-ES/admin/hardware/general.php
index d00a8d2a56..54aed70c71 100644
--- a/resources/lang/es-ES/admin/hardware/general.php
+++ b/resources/lang/es-ES/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Solicitado',
'not_requestable' => 'No puede solicitarse',
'requestable_status_warning' => 'No cambiar el estado solicitable',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restaurar activo',
'pending' => 'Pendiente',
'undeployable' => 'No utilizable',
diff --git a/resources/lang/es-ES/admin/licenses/message.php b/resources/lang/es-ES/admin/licenses/message.php
index 44140c8ca8..60953e60d2 100644
--- a/resources/lang/es-ES/admin/licenses/message.php
+++ b/resources/lang/es-ES/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'No hay suficientes licencias disponibles para asignar',
'mismatch' => 'La licencia proporcionada no coincide con la licencia seleccionada',
'unavailable' => 'Esta licencia no está disponible para ser asignada.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Hubo un problema ingresando la licencia. Por favor, inténtelo de nuevo.',
- 'not_reassignable' => 'La licencia no se puede volver a asignar',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'La licencia fue ingresada correctamente'
),
diff --git a/resources/lang/es-ES/admin/locations/message.php b/resources/lang/es-ES/admin/locations/message.php
index 34e02a05a5..47672abd0f 100644
--- a/resources/lang/es-ES/admin/locations/message.php
+++ b/resources/lang/es-ES/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'La ubicación no existe.',
- 'assoc_users' => 'Esta ubicación no se puede eliminar actualmente porque es la ubicación de al menos un activo o usuario, tiene activos asignados o es la ubicación padre de otra ubicación. Por favor, actualice sus registros para que ya no hagan referencia a esta ubicación e inténtalo de nuevo ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Esta ubicación está actualmente asociada con al menos un activo y no puede ser eliminada. Por favor actualice sus activos para que ya no hagan referencia a esta ubicación e inténtelo de nuevo. ',
'assoc_child_loc' => 'Esta ubicación es actualmente el padre de al menos una ubicación hija y no puede ser eliminada. Por favor actualice sus ubicaciones para que ya no hagan referencia a esta ubicación e inténtelo de nuevo. ',
'assigned_assets' => 'Activos asignados',
'current_location' => 'Ubicación actual',
'open_map' => 'Abrir en mapas :map_provider_icon',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/es-ES/admin/locations/table.php b/resources/lang/es-ES/admin/locations/table.php
index 8c30d4dd90..0d72f841c5 100644
--- a/resources/lang/es-ES/admin/locations/table.php
+++ b/resources/lang/es-ES/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Crear ubicación',
'update' => 'Actualizar ubicación',
'print_assigned' => 'Imprimir los asignados',
- 'print_all_assigned' => 'Imprimir todos los asignados',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nombre de ubicación',
'address' => 'Dirección',
'address2' => 'Dirección (línea 2)',
diff --git a/resources/lang/es-ES/admin/models/table.php b/resources/lang/es-ES/admin/models/table.php
index 312944b9cd..4e7c332156 100644
--- a/resources/lang/es-ES/admin/models/table.php
+++ b/resources/lang/es-ES/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modelos de activos',
'update' => 'Actualizar modelo de activo',
'view' => 'Ver modelo de activo',
- 'update' => 'Actualizar modelo de activo',
- 'clone' => 'Clonar modelo',
- 'edit' => 'Editar modelo',
+ 'clone' => 'Clonar modelo',
+ 'edit' => 'Editar modelo',
);
diff --git a/resources/lang/es-ES/admin/users/general.php b/resources/lang/es-ES/admin/users/general.php
index 9a5136df72..517cbfc2f4 100644
--- a/resources/lang/es-ES/admin/users/general.php
+++ b/resources/lang/es-ES/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Incluir a este usuario al asignar automáticamente licencias elegibles',
'auto_assign_help' => 'Omitir este usuario en la asignación automática de licencias',
'software_user' => 'Software asignado a :name',
- 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para poder enviarle las credenciales. Únicamente pueden enviarse las credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.',
'view_user' => 'Ver usuario :name',
'usercsv' => 'Archivo CSV',
'two_factor_admin_optin_help' => 'La configuración actual permite la aplicación selectiva de la autenticación de dos factores. ',
diff --git a/resources/lang/es-ES/general.php b/resources/lang/es-ES/general.php
index 1b67090e46..ab26056917 100644
--- a/resources/lang/es-ES/general.php
+++ b/resources/lang/es-ES/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importar',
'import_this_file' => 'Asociar campos y procesar este archivo',
'importing' => 'Importar datos',
- 'importing_help' => 'Puede importar activos, accesorios, licencias, componentes, consumibles y usuarios a través del archivo CSV.
El CSV debe estar delimitado por comas y formateado con encabezados que coincidan con los de los archivos CSV de muestra en la documentación.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importar historial',
'asset_maintenance' => 'Mantenimiento de activos',
'asset_maintenance_report' => 'Informe mantenimiento de activos',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'licencias totales',
'total_accessories' => 'accesorios totales',
'total_consumables' => 'consumibles totales',
+ 'total_cost' => 'Total Cost',
'type' => 'Tipo',
'undeployable' => 'No utilizable',
'unknown_admin' => 'Administrador desconocido',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Nombre de usuario',
'update' => 'Actualizar',
'updating_item' => 'Actualizando :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Auditoría atrasada',
'accept' => 'Aceptar :asset',
'i_accept' => 'Acepto',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Rechazo',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Aceptar/Rechazar',
'sign_tos' => 'Firme abajo para indicar que está de acuerdo con los términos de servicio:',
'clear_signature' => 'Borrar firma',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permisos',
'managed_ldap' => '(Administrado a través de LDAP)',
'export' => 'Exportar',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Sincronización LDAP',
'ldap_user_sync' => 'Sincronización de usuario LDAP',
'synchronize' => 'Sincronizar',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => '¿Actualizar valores existentes?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'La generación autoincrementable de las placas de activos está desactivada, por lo que todas las filas deben tener la columna "Asset Tag" con información.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Nota: La generación autoincrementable de las placas de activos está activada, por lo que se crearán activos para las filas sin información en la columna "Asset Tag". Las filas que sí tengan información en la columna "Asset Tag" se actualizarán con la información proporcionada.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Enviar correo electrónico',
'call' => 'Número de llamada',
'back_before_importing' => '¿Copia de seguridad antes de importar?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notas',
'item_name_var' => ':item Nombre',
'error_user_company' => 'La compañía destino de la asignación y la compañía del activo no coinciden',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Un activo asignado a usted pertenece a una compañía diferente por lo que no puede aceptarlo ni rechazarlo, por favor verifique con su supervisor',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Asignado a: Nombre completo',
'checked_out_to_first_name' => 'Asignado a: Nombre',
@@ -585,6 +595,8 @@ return [
'components' => ':count component|:count componentes',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Más información',
'quickscan_bulk_help' => 'Al marcar esta casilla se actualizará el activo para reflejar esta nueva ubicación. Dejarla sin marcar, simplemente almacenará la ubicación en el registro de auditoría. Tenga en cuenta que si este activo ya está asignado, no cambiará la ubicación de la persona, del activo o de la ubicación a la que esté asignado.',
'whoops' => '¡Uy!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Sitio por defecto',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/es-ES/mail.php b/resources/lang/es-ES/mail.php
index c3c7960f15..2378b3cc58 100644
--- a/resources/lang/es-ES/mail.php
+++ b/resources/lang/es-ES/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accesorio ingresado',
- 'Accessory_Checkout_Notification' => 'Accesorio asignado',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Confirmación de ingreso de accesorio',
'Confirm_Asset_Checkin' => 'Confirmación de ingreso de activo',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Un activo asignado a Ud. debe ser devuelto el :date',
'Expected_Checkin_Notification' => 'Recordatorio: :name se acerca la fecha de devolución',
'Expected_Checkin_Report' => 'Informe de próximas devoluciones de activos',
- 'Expiring_Assets_Report' => 'Informe de activos con garantía próxima a vencer.',
- 'Expiring_Licenses_Report' => 'Informe de licencias próximas a vencer.',
+ 'Expiring_Assets_Report' => 'Informe de activos con garantía próxima a vencer',
+ 'Expiring_Licenses_Report' => 'Informe de licencias próximas a vencer',
'Item_Request_Canceled' => 'Solicitud de artículo cancelada',
'Item_Requested' => 'Artículo solicitado',
'License_Checkin_Notification' => 'Licencia devuelta',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Informe sobre inventario bajo',
'a_user_canceled' => 'El usuario ha cancelado el elemento solicitado en la página web',
'a_user_requested' => 'Un usuario ha solicitado un elemento en la página web',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Un usuario ha aceptado un elemento',
'acceptance_asset_declined' => 'Un usuario ha rechazado un elemento',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nombre del activo',
'asset_requested' => 'Activo solicitado',
'asset_tag' => 'Placa del activo',
- 'assets_warrantee_alert' => 'Hay :count activo con una garantía que expira en los próximos :threshold days.|Hay :count activos con garantías que expiran en los siguientes :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Asignado a',
+ 'eol' => 'Fin de soporte (EOL)',
'best_regards' => 'Cordialmente,',
'canceled' => 'Cancelado',
'checkin_date' => 'Fecha de ingreso',
@@ -58,6 +59,7 @@ return [
'days' => 'Días',
'expecting_checkin_date' => 'Fecha esperada de devolución',
'expires' => 'Vence',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hola',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Informe de inventario',
'item' => 'Elemento',
'item_checked_reminder' => 'Este es un recordatorio de que actualmente tiene :count elemento(s) asignado(s) que no ha aceptado o rechazado. Haga clic en el siguiente enlace para confirmar su decisión.',
- 'license_expiring_alert' => 'Hay :count licencia que expira en los próximos :threshold días. | Hay :count licencias que expiran en los próximos :threshold días.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Por favor, haga clic en el siguiente enlace para actualizar su contraseña de :web :',
'login' => 'Iniciar sesión',
'login_first_admin' => 'Inicie sesión en su nueva instalación de Snipe-IT usando las credenciales:',
'low_inventory_alert' => 'Hay :count elemento que está por debajo del inventario mínimo o que pronto lo estará.|Hay :count elementos que están por debajo del inventario mínimo o que pronto lo estarán.',
'min_QTY' => 'Cantidad mínima',
'name' => 'Nombre',
- 'new_item_checked' => 'Un nuevo artículo ha sido asignado a su nombre, los detalles están a continuación.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notas',
'password' => 'Contraseña',
diff --git a/resources/lang/es-MX/admin/custom_fields/general.php b/resources/lang/es-MX/admin/custom_fields/general.php
index 5f23259862..47669a2506 100644
--- a/resources/lang/es-MX/admin/custom_fields/general.php
+++ b/resources/lang/es-MX/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Administrar',
'field' => 'Campo',
'about_fieldsets_title' => 'Acerca de los grupos de campos',
- 'about_fieldsets_text' => 'Los grupos de campos personalizados te permiten agrupar campos que se usan frecuentemente para determinados modelos de equipos.',
+ 'about_fieldsets_text' => 'Los grupos de campos le permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.',
'custom_format' => 'Expresión regular personalizada...',
'encrypt_field' => 'Cifrar el valor de este campo en la base de datos',
'encrypt_field_help' => 'ADVERTENCIA: Cifrar un campo hace que no se pueda buscar.',
diff --git a/resources/lang/es-MX/admin/depreciations/general.php b/resources/lang/es-MX/admin/depreciations/general.php
index 1ffc4363da..eda8b6cb9a 100644
--- a/resources/lang/es-MX/admin/depreciations/general.php
+++ b/resources/lang/es-MX/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Sobre amortización de activos',
- 'about_depreciations' => 'Puede configurar la depreciación de activos usando un método de línea recta.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Depreciación de activos',
'create' => 'Crear amortización',
'depreciation_name' => 'Nombre amortización',
diff --git a/resources/lang/es-MX/admin/hardware/form.php b/resources/lang/es-MX/admin/hardware/form.php
index 312ffaf267..109b47ae30 100644
--- a/resources/lang/es-MX/admin/hardware/form.php
+++ b/resources/lang/es-MX/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Ir a elementos asignados',
'select_statustype' => 'Seleccione un tipo de estado',
'serial' => 'Número de serie',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Estado',
'tag' => 'Placa del activo',
'update' => 'Actualizar activo',
diff --git a/resources/lang/es-MX/admin/hardware/general.php b/resources/lang/es-MX/admin/hardware/general.php
index ce64db98e5..b2a8ce5789 100644
--- a/resources/lang/es-MX/admin/hardware/general.php
+++ b/resources/lang/es-MX/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Solicitado',
'not_requestable' => 'No puede solicitarse',
'requestable_status_warning' => 'No cambiar el estado solicitable',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restaurar activo',
'pending' => 'Pendiente',
'undeployable' => 'No utilizable',
diff --git a/resources/lang/es-MX/admin/licenses/message.php b/resources/lang/es-MX/admin/licenses/message.php
index b9effc3d70..e78ee6f9c6 100644
--- a/resources/lang/es-MX/admin/licenses/message.php
+++ b/resources/lang/es-MX/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'No hay suficientes licencias disponibles para asignar',
'mismatch' => 'La licencia proporcionada no coincide con la licencia seleccionada',
'unavailable' => 'Esta licencia no está disponible para ser asignada.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Hubo un problema ingresando la licencia. Por favor, inténtelo de nuevo.',
- 'not_reassignable' => 'La licencia no se puede volver a asignar',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'La licencia fue ingresada correctamente'
),
diff --git a/resources/lang/es-MX/admin/locations/message.php b/resources/lang/es-MX/admin/locations/message.php
index 34e02a05a5..47672abd0f 100644
--- a/resources/lang/es-MX/admin/locations/message.php
+++ b/resources/lang/es-MX/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'La ubicación no existe.',
- 'assoc_users' => 'Esta ubicación no se puede eliminar actualmente porque es la ubicación de al menos un activo o usuario, tiene activos asignados o es la ubicación padre de otra ubicación. Por favor, actualice sus registros para que ya no hagan referencia a esta ubicación e inténtalo de nuevo ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Esta ubicación está actualmente asociada con al menos un activo y no puede ser eliminada. Por favor actualice sus activos para que ya no hagan referencia a esta ubicación e inténtelo de nuevo. ',
'assoc_child_loc' => 'Esta ubicación es actualmente el padre de al menos una ubicación hija y no puede ser eliminada. Por favor actualice sus ubicaciones para que ya no hagan referencia a esta ubicación e inténtelo de nuevo. ',
'assigned_assets' => 'Activos asignados',
'current_location' => 'Ubicación actual',
'open_map' => 'Abrir en mapas :map_provider_icon',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/es-MX/admin/locations/table.php b/resources/lang/es-MX/admin/locations/table.php
index 4fef627838..b44976c2ba 100644
--- a/resources/lang/es-MX/admin/locations/table.php
+++ b/resources/lang/es-MX/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Crear ubicación',
'update' => 'Actualizar ubicación',
'print_assigned' => 'Imprimir los asignados',
- 'print_all_assigned' => 'Imprimir todos los asignados',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nombre de ubicación',
'address' => 'Dirección',
'address2' => '2da linea de Dirección',
diff --git a/resources/lang/es-MX/admin/models/table.php b/resources/lang/es-MX/admin/models/table.php
index 312944b9cd..4e7c332156 100644
--- a/resources/lang/es-MX/admin/models/table.php
+++ b/resources/lang/es-MX/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modelos de activos',
'update' => 'Actualizar modelo de activo',
'view' => 'Ver modelo de activo',
- 'update' => 'Actualizar modelo de activo',
- 'clone' => 'Clonar modelo',
- 'edit' => 'Editar modelo',
+ 'clone' => 'Clonar modelo',
+ 'edit' => 'Editar modelo',
);
diff --git a/resources/lang/es-MX/admin/users/general.php b/resources/lang/es-MX/admin/users/general.php
index aed4ead8bd..ef17674b66 100644
--- a/resources/lang/es-MX/admin/users/general.php
+++ b/resources/lang/es-MX/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Incluye a este usuario al asignar automáticamente licencias elegibles',
'auto_assign_help' => 'Omitir este usuario en la asignación automática de licencias',
'software_user' => 'Software asignado a :name',
- 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para poder enviarle las credenciales. Únicamente pueden enviarse las credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.',
'view_user' => 'Ver usuario :name',
'usercsv' => 'Archivo CSV',
'two_factor_admin_optin_help' => 'La configuración actual permite la aplicación selectiva de la autenticación de dos factores. ',
diff --git a/resources/lang/es-MX/general.php b/resources/lang/es-MX/general.php
index 050b60a238..00daace9ec 100644
--- a/resources/lang/es-MX/general.php
+++ b/resources/lang/es-MX/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importar',
'import_this_file' => 'Asociar campos y procesar este archivo',
'importing' => 'Importar datos',
- 'importing_help' => 'Puede importar activos, accesorios, licencias, componentes, consumibles y usuarios a través del archivo CSV.
El CSV debe estar delimitado por comas y formateado con encabezados que coincidan con los de los archivos CSV de muestra en la documentación.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importar historial',
'asset_maintenance' => 'Mantenimiento de activos',
'asset_maintenance_report' => 'Informe mantenimiento de activos',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'licencias totales',
'total_accessories' => 'accesorios totales',
'total_consumables' => 'consumibles totales',
+ 'total_cost' => 'Total Cost',
'type' => 'Tipo',
'undeployable' => 'No utilizable',
'unknown_admin' => 'Administrador desconocido',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Nombre de usuario',
'update' => 'Actualizar',
'updating_item' => 'Actualizando :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Auditoría atrasada',
'accept' => 'Aceptar :asset',
'i_accept' => 'Acepto',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Rechazo',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Aceptar/Rechazar',
'sign_tos' => 'Firme abajo para indicar que está de acuerdo con los términos de servicio:',
'clear_signature' => 'Borrar firma',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permisos',
'managed_ldap' => '(Administrado a través de LDAP)',
'export' => 'Exportar',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Sincronización LDAP',
'ldap_user_sync' => 'Sincronización de usuario LDAP',
'synchronize' => 'Sincronizar',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => '¿Actualizar valores existentes?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'La generación autoincrementable de las placas de activos está desactivada, por lo que todas las filas deben tener la columna "Asset Tag" con información.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Nota: La generación autoincrementable de las placas de activos está activada, por lo que se crearán activos para las filas sin información en la columna "Asset Tag". Las filas que sí tengan información en la columna "Asset Tag" se actualizarán con la información proporcionada.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Enviar correo electrónico',
'call' => 'Número de llamada',
'back_before_importing' => '¿Copia de seguridad antes de importar?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notas',
'item_name_var' => ':item Nombre',
'error_user_company' => 'La compañía destino de la asignación y la compañía del activo no coinciden',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Un activo asignado a usted pertenece a una compañía diferente por lo que no puede aceptarlo ni rechazarlo, por favor verifique con su supervisor',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Asignado a: Nombre completo',
'checked_out_to_first_name' => 'Asignado a: Nombre',
@@ -585,6 +595,8 @@ return [
'components' => ':count component|:count componentes',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Más información',
'quickscan_bulk_help' => 'Al marcar esta casilla se actualizará el activo para reflejar esta nueva ubicación. Dejarla sin marcar, simplemente almacenará la ubicación en el registro de auditoría. Tenga en cuenta que si este activo ya está asignado, no cambiará la ubicación de la persona, del activo o de la ubicación a la que esté asignado.',
'whoops' => '¡Uy!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Sitio por defecto',
'default_blue' => 'Azul por defecto',
'blue_dark' => 'Azul (modo oscuro)',
- 'green' => 'Oscuro Verde',
+ 'green' => 'Green',
'green_dark' => 'Verde (modo oscuro)',
- 'red' => 'Rojo Oscuro',
+ 'red' => 'Red',
'red_dark' => 'Rojo (Modo Oscuro)',
- 'orange' => 'Oscuro Naranja',
+ 'orange' => 'Orange',
'orange_dark' => 'Naranja (Modo oscuro)',
'black' => 'Negro',
'black_dark' => 'Negro (Modo Oscuro)',
diff --git a/resources/lang/es-MX/mail.php b/resources/lang/es-MX/mail.php
index 73e1f904d5..7c27c1da2d 100644
--- a/resources/lang/es-MX/mail.php
+++ b/resources/lang/es-MX/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accesorio ingresado',
- 'Accessory_Checkout_Notification' => 'Accesorio asignado',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Confirmación de ingreso de accesorio',
'Confirm_Asset_Checkin' => 'Confirmación de ingreso de activo',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Un activo asignado a Ud. debe ser devuelto el :date',
'Expected_Checkin_Notification' => 'Recordatorio: :name se acerca la fecha de devolución',
'Expected_Checkin_Report' => 'Informe de próximas devoluciones de activos',
- 'Expiring_Assets_Report' => 'Informe de activos con garantía próxima a vencer.',
- 'Expiring_Licenses_Report' => 'Informe de licencias próximas a vencer.',
+ 'Expiring_Assets_Report' => 'Informe de activos con garantía próxima a vencer',
+ 'Expiring_Licenses_Report' => 'Informe de licencias próximas a vencer',
'Item_Request_Canceled' => 'Solicitud de artículo cancelada',
'Item_Requested' => 'Artículo solicitado',
'License_Checkin_Notification' => 'Licencia devuelta',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Informe sobre inventario bajo',
'a_user_canceled' => 'El usuario ha cancelado el elemento solicitado en la página web',
'a_user_requested' => 'Un usuario ha solicitado un elemento en la página web',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Un usuario ha aceptado un elemento',
'acceptance_asset_declined' => 'Un usuario ha rechazado un elemento',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nombre del activo',
'asset_requested' => 'Activo solicitado',
'asset_tag' => 'Placa del activo',
- 'assets_warrantee_alert' => 'Hay :count activo con su garantía que expira en los próximos :threshold days.|Hay :count activos con garantías que expiran en los siguientes :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Asignado a',
+ 'eol' => 'Fin de soporte (EOL)',
'best_regards' => 'Cordialmente,',
'canceled' => 'Cancelado',
'checkin_date' => 'Fecha de ingreso',
@@ -58,6 +59,7 @@ return [
'days' => 'Días',
'expecting_checkin_date' => 'Fecha esperada de devolución',
'expires' => 'Vence',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hola',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Reporte de inventario',
'item' => 'Elemento',
'item_checked_reminder' => 'Este es un recordatorio de que actualmente tiene :count elemento(s) asignado(s) que no ha aceptado o rechazado. Haga clic en el siguiente enlace para confirmar su decisión.',
- 'license_expiring_alert' => 'Hay :count licencia que expira en los próximos :threshold días. | Hay :count licencias que expiran en los próximos :threshold días.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Por favor, haga clic en el siguiente enlace para actualizar su contraseña de :web :',
'login' => 'Iniciar sesión',
'login_first_admin' => 'Inicie sesión en su nueva instalación de Snipe-IT usando las credenciales:',
'low_inventory_alert' => 'Hay :count elemento que está por debajo del inventario mínimo o que pronto lo estará.|Hay :count elementos que están por debajo del inventario mínimo o que pronto lo estarán.',
'min_QTY' => 'Cantidad mínima',
'name' => 'Nombre',
- 'new_item_checked' => 'Un nuevo artículo ha sido asignado a su nombre, los detalles están a continuación.',
- 'new_item_checked_with_acceptance' => 'Un nuevo artículo ha sido asignado a su nombre, los detalles están a continuación.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notas',
'password' => 'Contraseña',
diff --git a/resources/lang/es-VE/admin/custom_fields/general.php b/resources/lang/es-VE/admin/custom_fields/general.php
index a740ba2d07..038e08d9aa 100644
--- a/resources/lang/es-VE/admin/custom_fields/general.php
+++ b/resources/lang/es-VE/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Administrar',
'field' => 'Campo',
'about_fieldsets_title' => 'Acerca de los grupos de campos',
- 'about_fieldsets_text' => 'Fieldsets te permite crear grupos de campos personalizados que están frecuentemente siendo reutilizados para tipos específicos de modelos de activos.',
+ 'about_fieldsets_text' => 'Los grupos de campos le permiten agrupar campos personalizados que se reutilizan frecuentemente para determinados modelos de activos.',
'custom_format' => 'Expresión regular personalizada...',
'encrypt_field' => 'Cifrar el valor de este campo en la base de datos',
'encrypt_field_help' => 'ADVERTENCIA: Cifrar un campo hace que no se pueda buscar.',
diff --git a/resources/lang/es-VE/admin/depreciations/general.php b/resources/lang/es-VE/admin/depreciations/general.php
index 4ab7af8afa..ff6bd39930 100644
--- a/resources/lang/es-VE/admin/depreciations/general.php
+++ b/resources/lang/es-VE/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Sobre depreciación de activos',
- 'about_depreciations' => 'Puede configurar la depreciación de activos usando un método de línea recta.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Depreciación de activos',
'create' => 'Crear depreciación',
'depreciation_name' => 'Nombre de depreciación',
diff --git a/resources/lang/es-VE/admin/hardware/form.php b/resources/lang/es-VE/admin/hardware/form.php
index da7270f635..865b8cc164 100644
--- a/resources/lang/es-VE/admin/hardware/form.php
+++ b/resources/lang/es-VE/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Ir a elementos asignados',
'select_statustype' => 'Seleccionar un tipo de estado',
'serial' => 'Número de serie',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Estado',
'tag' => 'Placa del activo',
'update' => 'Actualizar activo',
diff --git a/resources/lang/es-VE/admin/hardware/general.php b/resources/lang/es-VE/admin/hardware/general.php
index d00a8d2a56..54aed70c71 100644
--- a/resources/lang/es-VE/admin/hardware/general.php
+++ b/resources/lang/es-VE/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Solicitado',
'not_requestable' => 'No puede solicitarse',
'requestable_status_warning' => 'No cambiar el estado solicitable',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restaurar activo',
'pending' => 'Pendiente',
'undeployable' => 'No utilizable',
diff --git a/resources/lang/es-VE/admin/licenses/message.php b/resources/lang/es-VE/admin/licenses/message.php
index 44140c8ca8..60953e60d2 100644
--- a/resources/lang/es-VE/admin/licenses/message.php
+++ b/resources/lang/es-VE/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'No hay suficientes licencias disponibles para asignar',
'mismatch' => 'La licencia proporcionada no coincide con la licencia seleccionada',
'unavailable' => 'Esta licencia no está disponible para ser asignada.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Hubo un problema ingresando la licencia. Por favor, inténtelo de nuevo.',
- 'not_reassignable' => 'La licencia no se puede volver a asignar',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'La licencia fue ingresada correctamente'
),
diff --git a/resources/lang/es-VE/admin/locations/message.php b/resources/lang/es-VE/admin/locations/message.php
index f8510ec87a..19674d881e 100644
--- a/resources/lang/es-VE/admin/locations/message.php
+++ b/resources/lang/es-VE/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'La localización no existe.',
- 'assoc_users' => 'Esta ubicación no se puede eliminar actualmente porque es la ubicación de al menos un activo o usuario, tiene activos asignados o es la ubicación padre de otra ubicación. Por favor, actualice sus registros para que ya no hagan referencia a esta ubicación e inténtalo de nuevo ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Esta ubicación está actualmente asociada con al menos un activo y no puede ser eliminada. Por favor actualice sus activos para que ya no hagan referencia a esta ubicación e inténtelo de nuevo. ',
'assoc_child_loc' => 'Esta ubicación es actualmente el padre de al menos una ubicación hija y no puede ser eliminada. Por favor actualice sus ubicaciones para que ya no hagan referencia a esta ubicación e inténtelo de nuevo. ',
'assigned_assets' => 'Activos asignados',
'current_location' => 'Ubicación actual',
'open_map' => 'Abrir en mapas :map_provider_icon',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/es-VE/admin/locations/table.php b/resources/lang/es-VE/admin/locations/table.php
index eb2c3e8aec..94926b2523 100644
--- a/resources/lang/es-VE/admin/locations/table.php
+++ b/resources/lang/es-VE/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Crear ubicación',
'update' => 'Actualizar ubicación',
'print_assigned' => 'Imprimir los asignados',
- 'print_all_assigned' => 'Imprimir todos los asignados',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nombre de ubicación',
'address' => 'Dirección',
'address2' => 'Dirección línea 2',
diff --git a/resources/lang/es-VE/admin/models/table.php b/resources/lang/es-VE/admin/models/table.php
index 312944b9cd..4e7c332156 100644
--- a/resources/lang/es-VE/admin/models/table.php
+++ b/resources/lang/es-VE/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modelos de activos',
'update' => 'Actualizar modelo de activo',
'view' => 'Ver modelo de activo',
- 'update' => 'Actualizar modelo de activo',
- 'clone' => 'Clonar modelo',
- 'edit' => 'Editar modelo',
+ 'clone' => 'Clonar modelo',
+ 'edit' => 'Editar modelo',
);
diff --git a/resources/lang/es-VE/admin/users/general.php b/resources/lang/es-VE/admin/users/general.php
index 8715dd1be2..932cbf825f 100644
--- a/resources/lang/es-VE/admin/users/general.php
+++ b/resources/lang/es-VE/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Incluye a este usuario al asignar automáticamente licencias elegibles',
'auto_assign_help' => 'Omitir este usuario en la asignación automática de licencias',
'software_user' => 'Software asignado a :name',
- 'send_email_help' => 'Debe proporcionar una dirección de correo electrónico para este usuario para poder enviarle las credenciales. Únicamente pueden enviarse las credenciales por correo eléctronico durante la creación del usuario. Las contraseñas se almacenan en un hash de un solo sentido y no se pueden recuperar una vez guardadas.',
'view_user' => 'Ver usuario :name',
'usercsv' => 'Archivo CSV',
'two_factor_admin_optin_help' => 'La configuración actual permite la aplicación selectiva de la autenticación de dos factores. ',
diff --git a/resources/lang/es-VE/general.php b/resources/lang/es-VE/general.php
index b1f5e8540f..2a7fa10b6e 100644
--- a/resources/lang/es-VE/general.php
+++ b/resources/lang/es-VE/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importar',
'import_this_file' => 'Asociar campos y procesar este archivo',
'importing' => 'Importar datos',
- 'importing_help' => 'Puede importar activos, accesorios, licencias, componentes, consumibles y usuarios a través del archivo CSV.
El CSV debe estar delimitado por comas y formateado con encabezados que coincidan con los de los archivos CSV de muestra en la documentación.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importar historial',
'asset_maintenance' => 'Mantenimiento de activos',
'asset_maintenance_report' => 'Informe mantenimiento de activos',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'licencias totales',
'total_accessories' => 'accesorios totales',
'total_consumables' => 'consumibles totales',
+ 'total_cost' => 'Total Cost',
'type' => 'Tipo',
'undeployable' => 'No utilizable',
'unknown_admin' => 'Administrador desconocido',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Nombre de usuario',
'update' => 'Actualizar',
'updating_item' => 'Actualizando :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Auditoría atrasada',
'accept' => 'Aceptar :asset',
'i_accept' => 'Acepto',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Rechazo',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Aceptar/Rechazar',
'sign_tos' => 'Firme abajo para indicar que está de acuerdo con los términos de servicio:',
'clear_signature' => 'Borrar firma',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permisos',
'managed_ldap' => '(Administrado a través de LDAP)',
'export' => 'Exportar',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Sincronización LDAP',
'ldap_user_sync' => 'Sincronización de usuario LDAP',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => '¿Actualizar valores existentes?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'La generación autoincrementable de las placas de activos está desactivada, por lo que todas las filas deben tener la columna "Asset Tag" con información.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Nota: La generación autoincrementable de las placas de activos está activada, por lo que se crearán activos para las filas sin información en la columna "Asset Tag". Las filas que sí tengan información en la columna "Asset Tag" se actualizarán con la información proporcionada.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Enviar correo electrónico',
'call' => 'Número de llamada',
'back_before_importing' => '¿Copia de seguridad antes de importar?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notas',
'item_name_var' => ':item Nombre',
'error_user_company' => 'La compañía destino de la asignación y la compañía del activo no coinciden',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Un activo asignado a usted pertenece a una compañía diferente por lo que no puede aceptarlo ni rechazarlo, por favor verifique con su supervisor',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Asignado a: Nombre completo',
'checked_out_to_first_name' => 'Asignado a: Nombre',
@@ -585,6 +595,8 @@ return [
'components' => ':count component|:count componentes',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Más información',
'quickscan_bulk_help' => 'Al marcar esta casilla se actualizará el activo para reflejar esta nueva ubicación. Dejarla sin marcar, simplemente almacenará la ubicación en el registro de auditoría. Tenga en cuenta que si este activo ya está asignado, no cambiará la ubicación de la persona, del activo o de la ubicación a la que esté asignado.',
'whoops' => '¡Uy!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Sitio por defecto',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/es-VE/mail.php b/resources/lang/es-VE/mail.php
index 83bb6db91c..a8dbaa26a4 100644
--- a/resources/lang/es-VE/mail.php
+++ b/resources/lang/es-VE/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accesorio ingresado',
- 'Accessory_Checkout_Notification' => 'Accesorio asignado',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Confirmación de ingreso de accesorio',
'Confirm_Asset_Checkin' => 'Confirmación de ingreso de activo',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Un activo asignado a Ud. debe ser devuelto el :date',
'Expected_Checkin_Notification' => 'Recordatorio: :name se acerca la fecha de devolución',
'Expected_Checkin_Report' => 'Informe de próximas devoluciones de activos',
- 'Expiring_Assets_Report' => 'Informe de activos con garantía próxima a vencer.',
- 'Expiring_Licenses_Report' => 'Informe de licencias próximas a vencer.',
+ 'Expiring_Assets_Report' => 'Informe de activos con garantía próxima a vencer',
+ 'Expiring_Licenses_Report' => 'Informe de licencias próximas a vencer',
'Item_Request_Canceled' => 'Solicitud de artículo cancelada',
'Item_Requested' => 'Artículo solicitado',
'License_Checkin_Notification' => 'Licencia devuelta',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Informe sobre inventario bajo',
'a_user_canceled' => 'El usuario ha cancelado el elemento solicitado en la página web',
'a_user_requested' => 'Un usuario ha solicitado un elemento en la página web',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Un usuario ha aceptado un elemento',
'acceptance_asset_declined' => 'Un usuario ha rechazado un elemento',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nombre del activo',
'asset_requested' => 'Activo solicitado',
'asset_tag' => 'Placa del activo',
- 'assets_warrantee_alert' => 'Hay :count activo con una garantía que expira en los próximos :threshold days.|Hay :count activos con garantías que expiran en los siguientes :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Asignado a',
+ 'eol' => 'Fin de soporte (EOL)',
'best_regards' => 'Cordialmente,',
'canceled' => 'Cancelado',
'checkin_date' => 'Fecha de ingreso',
@@ -58,6 +59,7 @@ return [
'days' => 'Días',
'expecting_checkin_date' => 'Fecha esperada de devolución',
'expires' => 'Vence',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hola',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Informe de inventario',
'item' => 'Elemento',
'item_checked_reminder' => 'Este es un recordatorio de que actualmente tiene :count elemento(s) asignado(s) que no ha aceptado o rechazado. Haga clic en el siguiente enlace para confirmar su decisión.',
- 'license_expiring_alert' => 'Hay :count licencia que expira en los próximos :threshold días. | Hay :count licencias que expiran en los próximos :threshold días.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Por favor, haga clic en el siguiente enlace para actualizar su contraseña de :web :',
'login' => 'Iniciar sesión',
'login_first_admin' => 'Inicie sesión en su nueva instalación de Snipe-IT usando las credenciales:',
'low_inventory_alert' => 'Hay :count elemento que está por debajo del inventario mínimo o que pronto lo estará.|Hay :count elementos que están por debajo del inventario mínimo o que pronto lo estarán.',
'min_QTY' => 'Cantidad mínima',
'name' => 'Nombre',
- 'new_item_checked' => 'Un nuevo artículo ha sido asignado a su nombre, los detalles están a continuación.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notas',
'password' => 'Contraseña',
diff --git a/resources/lang/et-EE/admin/custom_fields/general.php b/resources/lang/et-EE/admin/custom_fields/general.php
index 5388c6ebc0..fa340df7e9 100644
--- a/resources/lang/et-EE/admin/custom_fields/general.php
+++ b/resources/lang/et-EE/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Väli',
'about_fieldsets_title' => 'Andmeväljade kohta',
- 'about_fieldsets_text' => 'Valdkonnad lubavad teil luua kohandatud väljade rühmad, mida kasutatakse sageli teatud varade mudelitüüpide jaoks.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Krüpti selle valdkonna väärtus andmebaasis',
'encrypt_field_help' => 'HOIATUS: põllu krüptimine muudab selle otsingumatuks.',
diff --git a/resources/lang/et-EE/admin/depreciations/general.php b/resources/lang/et-EE/admin/depreciations/general.php
index a6506f733b..9615b9d353 100644
--- a/resources/lang/et-EE/admin/depreciations/general.php
+++ b/resources/lang/et-EE/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Varade kadumiste kohta',
- 'about_depreciations' => 'Võite varade amortisatsiooni seadistada, et varasid amortiseerida lineaarsel kulumil.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Varade kahanemine',
'create' => 'Loo amortisatsioon',
'depreciation_name' => 'Amortisatsiooni nimi',
diff --git a/resources/lang/et-EE/admin/hardware/form.php b/resources/lang/et-EE/admin/hardware/form.php
index 7c4debc235..e27ff4fa93 100644
--- a/resources/lang/et-EE/admin/hardware/form.php
+++ b/resources/lang/et-EE/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Valige oleku tüüp',
'serial' => 'Seerianumber',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Staatus',
'tag' => 'Vahendi silt',
'update' => 'Varade värskendamine',
diff --git a/resources/lang/et-EE/admin/hardware/general.php b/resources/lang/et-EE/admin/hardware/general.php
index f06d804020..25dd6eec54 100644
--- a/resources/lang/et-EE/admin/hardware/general.php
+++ b/resources/lang/et-EE/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Taotletud',
'not_requestable' => 'Mittetaotletav',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Taasta vara',
'pending' => 'Ootel',
'undeployable' => 'Kasutuselevõtmatu',
diff --git a/resources/lang/et-EE/admin/licenses/message.php b/resources/lang/et-EE/admin/licenses/message.php
index 7c53f15680..abd6109e12 100644
--- a/resources/lang/et-EE/admin/licenses/message.php
+++ b/resources/lang/et-EE/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Litsentsis kontrolliti probleemi. Palun proovi uuesti.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Litsents märgiti edukalt'
),
diff --git a/resources/lang/et-EE/admin/locations/message.php b/resources/lang/et-EE/admin/locations/message.php
index b352c4a517..3257c0080b 100644
--- a/resources/lang/et-EE/admin/locations/message.php
+++ b/resources/lang/et-EE/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Asukohta ei eksisteeri.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Selle asukohaga on seotud vähemalt üks vahend ja seda ei saa kustutada. Palun uuenda oma vahendeid, et need ei kasutaks seda asukohta ning seejärel proovi uuesti. ',
'assoc_child_loc' => 'Sel asukohal on hetkel all-asukohti ja seda ei saa kustutada. Palun uuenda oma asukohti nii, et need ei kasutaks seda asukohta ning seejärel proovi uuesti. ',
'assigned_assets' => 'Määratud Varad',
'current_location' => 'Praegune asukoht',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/et-EE/admin/locations/table.php b/resources/lang/et-EE/admin/locations/table.php
index eb0beb8ea5..3ed33ec338 100644
--- a/resources/lang/et-EE/admin/locations/table.php
+++ b/resources/lang/et-EE/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Uus asukoht',
'update' => 'Uuenda asukohta',
'print_assigned' => 'Prindi määratud',
- 'print_all_assigned' => 'Prindi kõik varad',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Asukoha nimi',
'address' => 'Aadress',
'address2' => 'Address Line 2',
diff --git a/resources/lang/et-EE/admin/models/table.php b/resources/lang/et-EE/admin/models/table.php
index 949b9d2f14..00109aa505 100644
--- a/resources/lang/et-EE/admin/models/table.php
+++ b/resources/lang/et-EE/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Mudelid',
'update' => 'Uuenda mudelit',
'view' => 'Vaata mudelit',
- 'update' => 'Uuenda mudelit',
- 'clone' => 'Klooni mudel',
- 'edit' => 'Muuda mudelit',
+ 'clone' => 'Klooni mudel',
+ 'edit' => 'Muuda mudelit',
);
diff --git a/resources/lang/et-EE/admin/users/general.php b/resources/lang/et-EE/admin/users/general.php
index 96936ad40d..eef446b8ec 100644
--- a/resources/lang/et-EE/admin/users/general.php
+++ b/resources/lang/et-EE/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Kasutaja :name valdusesse antud tarkvara',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'Vaata kasutajat :name',
'usercsv' => 'CSV fail',
'two_factor_admin_optin_help' => 'Sinu praegused admin seaded lubavad kahe-astmelist autantimis jõustada valikulselt. ',
diff --git a/resources/lang/et-EE/general.php b/resources/lang/et-EE/general.php
index 443c907fdb..322821cd8a 100644
--- a/resources/lang/et-EE/general.php
+++ b/resources/lang/et-EE/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Impordi',
'import_this_file' => 'Kaardista väljad ja töötle see fail',
'importing' => 'Importimine',
- 'importing_help' => 'CSV-faili kaudu saate importida vahendeid, tarvikuid, litsentse, komponente, kulumaterjale ja kasutajaid.
CSV peaks olema komadega eraldatud ja vormindatud päistega, mis ühtivad CSV-de näidistega dokumentatsioonis.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Impordi ajalugu',
'asset_maintenance' => 'Varade hooldus',
'asset_maintenance_report' => 'Varade hooldusaruanne',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'litsentse kokku',
'total_accessories' => 'kogu tarvikud',
'total_consumables' => 'kogu tarbekaubad',
+ 'total_cost' => 'Total Cost',
'type' => 'Tüüp',
'undeployable' => 'Kasutuselevõtmatud',
'unknown_admin' => 'Tundmatu Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Kasutajanimi',
'update' => 'Uuenda',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Hilinenud audit',
'accept' => 'Kinnita :asset',
'i_accept' => 'Ma kinnitan',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Ma keeldun',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Aktsepteeri/Keeldu',
'sign_tos' => 'Allkirjasta allpool, et kinnitada oma nõusolekut teenusetingimustega:',
'clear_signature' => 'Puhasta allkirja väli',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Õigused',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Eksport',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':üksuse nimi',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Rohkem infot',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/et-EE/mail.php b/resources/lang/et-EE/mail.php
index 70a88aa140..49a1893cb5 100644
--- a/resources/lang/et-EE/mail.php
+++ b/resources/lang/et-EE/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Tarvikud sisse võetud',
- 'Accessory_Checkout_Notification' => 'Tarvik väljastatud',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Tarviku vastuvõtmise kinnitus',
'Confirm_Asset_Checkin' => 'Vara sissevõtmise kinnitus',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Sulle väljastatud vahend tuleb tagastada :date',
'Expected_Checkin_Notification' => 'Meeldetuletus: :name tagastamise tähtaeg läheneb',
'Expected_Checkin_Report' => 'Eeldatav vahendite tagastamise aruanne',
- 'Expiring_Assets_Report' => 'Aeguvate varade aruanne.',
- 'Expiring_Licenses_Report' => 'Aeguvad litsentside aruanne.',
+ 'Expiring_Assets_Report' => 'Aeguvate varade aruanne',
+ 'Expiring_Licenses_Report' => 'Aeguvad litsentside aruanne',
'Item_Request_Canceled' => 'Üksuse taotlus tühistatud',
'Item_Requested' => 'Taotletud üksus',
'License_Checkin_Notification' => 'Litsents sisse võetud',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Madal inventuuriaruanne',
'a_user_canceled' => 'Kasutaja on tühistanud üksuse taotluse veebis',
'a_user_requested' => 'Kasutaja on taotlenud üksuse veebis',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Kasutaja aktsepteeris seadme',
'acceptance_asset_declined' => 'Kasutaja keeldus seadmest',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Ressursi nimi',
'asset_requested' => 'Taotletud vahend',
'asset_tag' => 'Varade silt',
- 'assets_warrantee_alert' => 'Sul on :count vahend, mille garantii aegub järgmise :threshold päeva jooksul.|Sul on :count vahendit, mille garantii aegub järgmise :threshold päeva jooksul.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Määratud',
+ 'eol' => 'EOL',
'best_regards' => 'Parimate soovidega,',
'canceled' => 'Tühistatud',
'checkin_date' => 'Tagastamise kuupäev',
@@ -58,6 +59,7 @@ return [
'days' => 'päeva',
'expecting_checkin_date' => 'Eeldatav tagastamise kuupäev',
'expires' => 'Aegub',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Tere',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventari aruanne',
'item' => 'Vara',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => ':count litsents aegub järgmise :threshold päeva jooksul.|:count litsentsi aegub järgmise :threshold päeva jooksul.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Klienditeenuse uuendamiseks klõpsake järgmisel lingil:',
'login' => 'Logi sisse',
'login_first_admin' => 'Logige oma uude Snipe-IT-seadmesse sisse, kasutades allpool toodud mandaate.',
'low_inventory_alert' => ':count üksus on laos alla miinimummäära või saab varsti otsa.|:count üksust on laos alla miinimummäära või saab varsti otsa.',
'min_QTY' => 'Min QTY',
'name' => 'Nimi',
- 'new_item_checked' => 'Uus vara on Teie nimele väljastatud, üksikasjad on allpool.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Märkused',
'password' => 'Parool',
diff --git a/resources/lang/fa-IR/admin/custom_fields/general.php b/resources/lang/fa-IR/admin/custom_fields/general.php
index a36ff4e7a6..8302c0e6b4 100644
--- a/resources/lang/fa-IR/admin/custom_fields/general.php
+++ b/resources/lang/fa-IR/admin/custom_fields/general.php
@@ -5,7 +5,8 @@ return [
'manage' => 'مدیریت',
'field' => 'فیلد',
'about_fieldsets_title' => 'درباره ی تنظیمات فیلد',
- 'about_fieldsets_text' => 'تنظیمات فیلد به شما امکان این را می دهد که گروه های فیلدهای سفارشی ایجاد کنید که مرتبا برای انواع مدل های دارایی خاص مورد استفاده ی مجدد قرار می گیرند.',
+ 'about_fieldsets_text' => 'مجموعههای فیلد به شما امکان میدهند گروههایی از فیلدهای سفارشی ایجاد کنید که اغلب برای انواع مدل دارایی خاص دوباره استفاده میشوند.
+',
'custom_format' => 'فرمت Regex سفارشی...
',
'encrypt_field' => 'مقدار این فیلد را در پایگاه داده رمزگذاری کنید',
diff --git a/resources/lang/fa-IR/admin/depreciations/general.php b/resources/lang/fa-IR/admin/depreciations/general.php
index ee2323f8b5..9cf89a8de6 100644
--- a/resources/lang/fa-IR/admin/depreciations/general.php
+++ b/resources/lang/fa-IR/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'درباره ی استهلاک دارایی',
- 'about_depreciations' => 'شما می توانید استهلاک دارایی را فعال کنید تا دارایی ها را بر اساس استهلاک خطی مستقیم، کم بهاء کنید.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'استهلاک دارایی',
'create' => 'ایجاد استهلاک',
'depreciation_name' => 'نام استهلاک',
diff --git a/resources/lang/fa-IR/admin/hardware/form.php b/resources/lang/fa-IR/admin/hardware/form.php
index 09787d84f8..98ef478a5e 100644
--- a/resources/lang/fa-IR/admin/hardware/form.php
+++ b/resources/lang/fa-IR/admin/hardware/form.php
@@ -56,6 +56,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'انتخاب نوع وضعیت',
'serial' => 'سریال',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'وضعیت',
'tag' => 'برچسب دارایی
',
diff --git a/resources/lang/fa-IR/admin/hardware/general.php b/resources/lang/fa-IR/admin/hardware/general.php
index ea9698c843..7ac0274c60 100644
--- a/resources/lang/fa-IR/admin/hardware/general.php
+++ b/resources/lang/fa-IR/admin/hardware/general.php
@@ -25,6 +25,8 @@ return [
'not_requestable' => 'غیر قابل درخواست
',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'بازیابی دارایی',
'pending' => 'در انتظار',
'undeployable' => 'غیرقابل گسترش',
diff --git a/resources/lang/fa-IR/admin/licenses/message.php b/resources/lang/fa-IR/admin/licenses/message.php
index 23f0cb35a3..5f63d3fe4a 100644
--- a/resources/lang/fa-IR/admin/licenses/message.php
+++ b/resources/lang/fa-IR/admin/licenses/message.php
@@ -47,11 +47,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'بود یک موضوع چک کردن در مجوز وجود دارد. لطفا دوباره تلاش کنید.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'مجوز بررسی شده با موفقیت'
),
diff --git a/resources/lang/fa-IR/admin/locations/message.php b/resources/lang/fa-IR/admin/locations/message.php
index 8bf94326aa..0b1d096c80 100644
--- a/resources/lang/fa-IR/admin/locations/message.php
+++ b/resources/lang/fa-IR/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'مکان وجود ندارد.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'این مکان در حال حاضر همراه با حداقل یک دارایی است و قادر به حذف نمی شود. لطفا بروز دارایی های خود را به دیگر این مکان مرجع و دوباره امتحان کنید. ',
'assoc_child_loc' => 'این مکان در حال حاضر پدر و مادر کودک حداقل یک مکان است و قادر به حذف نمی شود. لطفا به روز رسانی مکان خود را به دیگر این مکان مرجع و دوباره امتحان کنید. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/fa-IR/admin/locations/table.php b/resources/lang/fa-IR/admin/locations/table.php
index 24e14db8b1..414d030a83 100644
--- a/resources/lang/fa-IR/admin/locations/table.php
+++ b/resources/lang/fa-IR/admin/locations/table.php
@@ -13,7 +13,8 @@ return [
'create' => 'ساخت مکان',
'update' => 'به روز رسانی منطقه مکانی',
'print_assigned' => 'چاپ موارد واگذار شده',
- 'print_all_assigned' => 'چاپ همه موارد واگذار شده',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'نام منطقه مکانی',
'address' => 'آدرس',
'address2' => 'Address Line 2',
diff --git a/resources/lang/fa-IR/admin/models/table.php b/resources/lang/fa-IR/admin/models/table.php
index f88c2667f6..4638cbce08 100644
--- a/resources/lang/fa-IR/admin/models/table.php
+++ b/resources/lang/fa-IR/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'مدل دارایی',
'update' => 'بروزسانی مدل دارایی',
'view' => 'نمایش مدل دارایی',
- 'update' => 'بروزسانی مدل دارایی',
- 'clone' => 'مدل شگرف',
- 'edit' => 'تغییر مدل',
+ 'clone' => 'مدل شگرف',
+ 'edit' => 'تغییر مدل',
);
diff --git a/resources/lang/fa-IR/admin/users/general.php b/resources/lang/fa-IR/admin/users/general.php
index e3b5fab73a..a7570e48ea 100644
--- a/resources/lang/fa-IR/admin/users/general.php
+++ b/resources/lang/fa-IR/admin/users/general.php
@@ -28,8 +28,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'برنامه چک شد برای:',
- 'send_email_help' => 'شما باید یک آدرس ایمیل برای این کاربر ارائه دهید تا اطلاعات کاربری خود را ارسال کند. ارسال اعتبار نامه ایمیل فقط با ایجاد کاربر امکان پذیر است. رمزهای عبور در یک هش یک طرفه ذخیره می شوند و پس از ذخیره نمی توان آنها را بازیابی کرد.
-',
'view_user' => 'نمایش کاربر :',
'usercsv' => 'فایل CSV',
'two_factor_admin_optin_help' => 'تنظیمات مدیریت فعلی شما اجازه اجرای مجدد احراز هویت دو عامل را می دهد.',
diff --git a/resources/lang/fa-IR/general.php b/resources/lang/fa-IR/general.php
index 2f1a7a9861..17ff12a0e7 100644
--- a/resources/lang/fa-IR/general.php
+++ b/resources/lang/fa-IR/general.php
@@ -172,8 +172,7 @@ return [
'import' => 'واردات',
'import_this_file' => 'انتخاب نظیر به نظیر فیلدها و پردازش فایل',
'importing' => 'در حال وارد کردن',
- 'importing_help' => 'میتوانید داراییها، لوازم جانبی، مجوزها، اجزا، مواد مصرفی و کاربران را از طریق فایل CSV وارد کنید.
CSV باید با کاما محدود شود و با سرصفحههایی که در مطابقت دارند قالببندی شود. نمونه CSV در مستندات.
-',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'واردات تاریخ',
'asset_maintenance' => 'نگهداشت دارایی',
'asset_maintenance_report' => 'گزارش تعمیر و نگهداری دارایی ها',
@@ -333,10 +332,12 @@ return [
'total_licenses' => 'کل مجوزهای',
'total_accessories' => 'لوازم جانبی کل',
'total_consumables' => 'کل مواد مصرفی',
+ 'total_cost' => 'Total Cost',
'type' => 'نوع',
'undeployable' => 'غیر قابل استقرار',
'unknown_admin' => 'نامشخص مدیریت',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'نام کاربری',
'update' => 'بروزرسانی',
'updating_item' => 'بروزرسانی :item',
@@ -380,9 +381,11 @@ return [
',
'accept' => 'دارایی های پذیرفته',
'i_accept' => 'می پذیرم',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'نمی پذیرم',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'قبول/رد کردن
',
'sign_tos' => 'برای نشان دادن موافقت با شرایط خدمات زیر را امضا کنید:
@@ -438,6 +441,7 @@ return [
'managed_ldap' => '(مدیریت شده از طریق LDAP)
',
'export' => 'خروجی گرفتن',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'همگام سازی LDAP
',
'ldap_user_sync' => 'همگام سازی کاربر LDAP
@@ -562,7 +566,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -595,7 +601,10 @@ return [
'item_notes' => 'یادداشت های:item',
'item_name_var' => ':نام کالا',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -667,6 +676,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'اطلاعات بیشتر',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -691,6 +702,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -707,11 +720,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/fa-IR/mail.php b/resources/lang/fa-IR/mail.php
index fbc553606a..5a4f95a4fc 100644
--- a/resources/lang/fa-IR/mail.php
+++ b/resources/lang/fa-IR/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'لوازم جانبی بررسی شد',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'تأیید ورود لوازم جانبی',
'Confirm_Asset_Checkin' => 'تأیید ورود دارایی
',
@@ -27,8 +27,8 @@ return [
',
'Expected_Checkin_Report' => 'گزارش بررسی دارایی مورد انتظار
',
- 'Expiring_Assets_Report' => 'گزارش دارایی های معوق',
- 'Expiring_Licenses_Report' => 'گزارش مجوزهای منقضی شده',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'درخواست مورد لغو شد',
'Item_Requested' => 'مورد درخواست شده',
'License_Checkin_Notification' => 'مجوز بررسی شد
@@ -38,7 +38,7 @@ return [
'Low_Inventory_Report' => 'گزارش موجودی کم',
'a_user_canceled' => 'یک کاربر یک درخواست اقساط در وب سایت را لغو کرده است',
'a_user_requested' => 'یک کاربر یک مورد را در وبسایت درخواست کرده است',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -49,8 +49,9 @@ return [
'asset_name' => 'نام دارایی',
'asset_requested' => 'دارایی درخواست شد',
'asset_tag' => 'نام دارایی',
- 'assets_warrantee_alert' => 'دارایی :count با گارانتی منقضی در روزهای بعدی: آستانه وجود دارد.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'اختصاص یافته به',
+ 'eol' => 'EOL',
'best_regards' => 'با احترام،',
'canceled' => 'لغو شد',
'checkin_date' => 'تاریخ ورود
@@ -66,6 +67,7 @@ return [
'days' => 'روزها',
'expecting_checkin_date' => ' چک در تاریخ را پر کنید',
'expires' => 'منقضی می شود',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'سلام',
@@ -76,16 +78,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'مورد',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'مجوز :count در روزهای بعدی :threshold منقضی می شود.|مجوزهای :count در روزهای بعدی :threshold منقضی می شوند.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'برای به روزرسانی لطفا بر روی لینک زیر کلیک کنید: web password:',
'login' => 'ورود',
'login_first_admin' => 'با نصب مجدد Snipe-IT جدید خود به سیستم وارد شوید',
'low_inventory_alert' => 'آیتم :count وجود دارد که زیر حداقل موجودی است یا به زودی کم می شود.',
'min_QTY' => 'حداقل QTY',
'name' => 'نام',
- 'new_item_checked' => 'یک آیتم جدید تحت نام شما چک شده است، جزئیات زیر است.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'نت ها',
'password' => 'رمز عبور',
diff --git a/resources/lang/fi-FI/admin/custom_fields/general.php b/resources/lang/fi-FI/admin/custom_fields/general.php
index e869c7ba6b..6f23f4a5c9 100644
--- a/resources/lang/fi-FI/admin/custom_fields/general.php
+++ b/resources/lang/fi-FI/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Hallitse',
'field' => 'Kenttä',
'about_fieldsets_title' => 'Tietoja kenttäsarjoista',
- 'about_fieldsets_text' => 'Kentäsarjoilla voit luoda ryhmiä mukautetuista kentistä, joita tarvitaan tietyillä laitemalleilla.',
+ 'about_fieldsets_text' => 'Kenttäkokoelma mahdollistaa kokoelmien muodostamisen mukautetuista kentistä joita käytetään usein tiettyjen laitemallien kanssa.',
'custom_format' => 'Mukautettu regex-formaatti...',
'encrypt_field' => 'Salaa tämän kentän arvo tietokannassa',
'encrypt_field_help' => 'VAROITUS: Kentän salaaminen estää kentän arvolla hakemisen.',
diff --git a/resources/lang/fi-FI/admin/depreciations/general.php b/resources/lang/fi-FI/admin/depreciations/general.php
index 1d8ff5945d..d600aa2eb8 100644
--- a/resources/lang/fi-FI/admin/depreciations/general.php
+++ b/resources/lang/fi-FI/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Lisätietoja laitteiden poistoista',
- 'about_depreciations' => 'Voit määrittää laitteelle poistoluokan poistaaksesi laitteen laitekannastasi määritetyn ajan jälkeen.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Laitteiden poistot',
'create' => 'Luo arvonalentumisia',
'depreciation_name' => 'Poiston nimi',
diff --git a/resources/lang/fi-FI/admin/hardware/form.php b/resources/lang/fi-FI/admin/hardware/form.php
index d3397ddf04..ed14ec6ca0 100644
--- a/resources/lang/fi-FI/admin/hardware/form.php
+++ b/resources/lang/fi-FI/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Valitse tila',
'serial' => 'Sarjanumero',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Tila',
'tag' => 'Laitetunniste',
'update' => 'Päivitä laite',
diff --git a/resources/lang/fi-FI/admin/hardware/general.php b/resources/lang/fi-FI/admin/hardware/general.php
index acac57ef5f..627dfcf0d2 100644
--- a/resources/lang/fi-FI/admin/hardware/general.php
+++ b/resources/lang/fi-FI/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Pyydetty',
'not_requestable' => 'Ei pyydettävissä',
'requestable_status_warning' => 'Älä muuta pyydettävyyden tilaa',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Palauta laite',
'pending' => 'Odottaa',
'undeployable' => 'Ei käytettävissä',
diff --git a/resources/lang/fi-FI/admin/licenses/message.php b/resources/lang/fi-FI/admin/licenses/message.php
index a05eaa4e65..51e5ae1a9f 100644
--- a/resources/lang/fi-FI/admin/licenses/message.php
+++ b/resources/lang/fi-FI/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Lisenssipaikkoja ei ole riittävästi saatavilla kassalle',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Lisenssin palautuksessa tapahtui virhe. Yritä uudelleen.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Lisenssi palautettiin onnistuneesti'
),
diff --git a/resources/lang/fi-FI/admin/locations/message.php b/resources/lang/fi-FI/admin/locations/message.php
index 25c0e36a83..e3e803d31d 100644
--- a/resources/lang/fi-FI/admin/locations/message.php
+++ b/resources/lang/fi-FI/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Sijaintia ei löydy.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Sijaintiin on tällä hetkellä liitettynä vähintään yksi laite, eikä sitä voi poistaa. Poista viittaus sijantiin ja yritä uudelleen. ',
'assoc_child_loc' => 'Tämä sijainti on ylempi toiselle sijainnille eikä sitä voi poistaa. Päivitä sijainnit, jotta et enää viitata tähän sijaintiin ja yritä uudelleen. ',
'assigned_assets' => 'Luovutetut laitteet',
'current_location' => 'Nykyinen sijainti',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/fi-FI/admin/locations/table.php b/resources/lang/fi-FI/admin/locations/table.php
index b0cee8b884..303d6a1446 100644
--- a/resources/lang/fi-FI/admin/locations/table.php
+++ b/resources/lang/fi-FI/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Uusi sijainti',
'update' => 'Päivitä sijainti',
'print_assigned' => 'Tulosta luovutetut',
- 'print_all_assigned' => 'Tulosta kaikki luovutetut',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Sijainnin nimi',
'address' => 'Osoite',
'address2' => 'Osoiterivi 2',
diff --git a/resources/lang/fi-FI/admin/models/table.php b/resources/lang/fi-FI/admin/models/table.php
index 4e9202cc40..84e7f7df2c 100644
--- a/resources/lang/fi-FI/admin/models/table.php
+++ b/resources/lang/fi-FI/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Laitemallit',
'update' => 'Päivitä laitemalli',
'view' => 'Näytä laitemalli',
- 'update' => 'Päivitä laitemalli',
- 'clone' => 'Monista malli',
- 'edit' => 'Muokkaa mallia',
+ 'clone' => 'Monista malli',
+ 'edit' => 'Muokkaa mallia',
);
diff --git a/resources/lang/fi-FI/admin/users/general.php b/resources/lang/fi-FI/admin/users/general.php
index f67276e0a9..21116f52ae 100644
--- a/resources/lang/fi-FI/admin/users/general.php
+++ b/resources/lang/fi-FI/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Sisällytä tämä käyttäjä automaattisesti määritettäessä hyväksyttäviä lisenssejä',
'auto_assign_help' => 'Ohita tämä käyttäjä automaattiseen lisenssien osoittamiseen',
'software_user' => 'Käyttäjälle :name luovutetut ohjelmistot',
- 'send_email_help' => 'Käyttäjälle on määritettävä sähköpostiosoite lähettääksesi salasanan sähköpostitse. Salasanat voi lähettää sähköpostilla vain käyttäjän luonnin yhteydessä. Salasanat tallennetaan järjestelmään yksisuuntaisesti tiivistettyinä, eikä niitä voida lukea selväkielisenä tallennuksen jälkeen.',
'view_user' => 'Näytä käyttäjä :name',
'usercsv' => 'CSV-tiedosto',
'two_factor_admin_optin_help' => 'Nykyiset järjestelmänvalvojan asetukset mahdollistavat kaksivaiheisen tunnistautumisen käyttöönoton valituille käyttäjille. ',
diff --git a/resources/lang/fi-FI/general.php b/resources/lang/fi-FI/general.php
index f943f6660a..04e138e691 100644
--- a/resources/lang/fi-FI/general.php
+++ b/resources/lang/fi-FI/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Tuo tiedot',
'import_this_file' => 'Kartta kentät ja käsitellä tätä tiedostoa',
'importing' => 'Tuonti',
- 'importing_help' => 'Voit tuoda laitteita, oheistarvikkeita, lisenssejä, komponentteja, kulutustarvikkeita ja käyttäjiä CSV-tiedoston avulla.
CSV tulisi olla pilkulla rajattu ja sisältää otsikot, jotka vastaavat CSV-otsikoita dokumentaatiossa.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Tuo historia',
'asset_maintenance' => 'Laitteen huolto',
'asset_maintenance_report' => 'Laitteiden huoltoraportti',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'lisenssejä',
'total_accessories' => 'oheistarviketta',
'total_consumables' => 'kulutustarvikketta',
+ 'total_cost' => 'Total Cost',
'type' => 'Tyyppi',
'undeployable' => 'Ei käyttöönotettavissa',
'unknown_admin' => 'Tuntematon ylläpitäjä',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Käyttäjätunnus',
'update' => 'Päivitä',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Erääntynyt tarkastettava',
'accept' => 'Hyväksy :asset',
'i_accept' => 'Hyväksyn',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Kieltäydyn',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Hyväksy/Hylkää',
'sign_tos' => 'Allekirjoita osoittaaksesi, että hyväksyt käyttöehdot:',
'clear_signature' => 'Tyhjennä allekirjoitus',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Käyttöoikeudet',
'managed_ldap' => '(Hallittu LDAP:n kautta)',
'export' => 'Vie',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Synkronointi',
'ldap_user_sync' => 'LDAP Käyttäjä Synkronointi',
'synchronize' => 'Synkronoi',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Päivitä olemassaolevat arvot?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Automaattisesti kasvavien laitetunnisteiden luominen on pois päältä, joten kaikilla riveillä on oltava laitetunniste asetettuna.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Huomautus: Automaattisesti kasvavien laitetunnisteiden luominen on käytössä, joten uudet laitteet luodaan riveille, joilla ei ole laitetunnistetta määriteltynä. Rivit, joilla on laitetunniste määriteltynä, tiedot päivitetään olemassaoleville laitteille.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Lähetä Sähköposti',
'call' => 'Puhelun numero',
'back_before_importing' => 'Varmuuskopioi ennen tuontia?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item muistiinpanot',
'item_name_var' => ':item nimi',
'error_user_company' => 'Checkout kohdeyritys ja sisältöyritys eivät täsmää',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Sinulle määritetty omaisuus kuuluu toiseen yritykseen, joten et voi hyväksyä tai kieltää sitä, ole hyvä ja tarkista managerillasi',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Lainattu: koko nimi',
'checked_out_to_first_name' => 'Lainattu: etunimi',
@@ -585,6 +595,8 @@ return [
'components' => ':count Komponentti :count Komponentit',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Lisätiedot',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/fi-FI/mail.php b/resources/lang/fi-FI/mail.php
index 90e44684d6..ccfb6bc8e6 100644
--- a/resources/lang/fi-FI/mail.php
+++ b/resources/lang/fi-FI/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Oheistarvike palautettu',
- 'Accessory_Checkout_Notification' => 'Lisävaruste tarkistettu',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Oheistarvikkeen palautuksen vahvistus',
'Confirm_Asset_Checkin' => 'Laitteen palautuksen vahvistus',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Sinulle luovutettu laite on määrä palauttaa takaisin :date',
'Expected_Checkin_Notification' => 'Muistutus: :name palautuspäivä lähestyy',
'Expected_Checkin_Report' => 'Odotettujen palautuspäivien raportti',
- 'Expiring_Assets_Report' => 'Raportti vanhentuvista laitteista.',
- 'Expiring_Licenses_Report' => 'Raportti vanhenevista lisensseistä.',
+ 'Expiring_Assets_Report' => 'Raportti vanhentuvista laitteista',
+ 'Expiring_Licenses_Report' => 'Raportti vanhenevista lisensseistä',
'Item_Request_Canceled' => 'Nimikkeen pyyntö peruutettu',
'Item_Requested' => 'Pyydetty nimike',
'License_Checkin_Notification' => 'Lisenssi palautettu',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Alhainen määrä raportti',
'a_user_canceled' => 'Käyttäjä on peruuttanut nimikkeen pyynnön sivustolla',
'a_user_requested' => 'Käyttäjä on pyytänyt nimikettä sivustolla',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Käyttäjä on hyväksynyt kohteen',
'acceptance_asset_declined' => 'Käyttäjä on hylännyt kohteen',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Laitteen nimi',
'asset_requested' => 'Pyydetty laite',
'asset_tag' => 'Laitetunniste',
- 'assets_warrantee_alert' => 'There is :count asset with a guarantee expiring in the next :threshold days .- There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Osoitettu',
+ 'eol' => 'Elinaika',
'best_regards' => 'Parhain terveisin,',
'canceled' => 'Peruutettu',
'checkin_date' => 'Palautuspäivä',
@@ -58,6 +59,7 @@ return [
'days' => 'Päiviä',
'expecting_checkin_date' => 'Odotettu palautuspäivä',
'expires' => 'Vanhenee',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hei',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Varaston Raportti',
'item' => 'Nimike',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => ':count lisenssiä vanhenee :threshold päivän sisällä.|:count lisenssiä vanhenee :threshold päivän sisällä.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Napsauta seuraavaa linkkiä päivittääksesi :web salasanasi:',
'login' => 'Kirjaudu',
'login_first_admin' => 'Kirjaudu sisään uuteen Snipe-IT asennukseen käyttäen alla olevia tunnistetietoja:',
'low_inventory_alert' => ':count nimikkeen saldomäärä on alle minimirajan tai kohta alhainen.|:count nimikkeen saldomäärä on alle minimirajan tai kohta alhainen.',
'min_QTY' => 'Minimi määrä',
'name' => 'Nimi',
- 'new_item_checked' => 'Uusi nimike on luovutettu sinulle, yksityiskohdat ovat alla.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Muistiinpanot',
'password' => 'Salasana',
diff --git a/resources/lang/fil-PH/admin/custom_fields/general.php b/resources/lang/fil-PH/admin/custom_fields/general.php
index 8be6ba2b2c..ad07a06249 100644
--- a/resources/lang/fil-PH/admin/custom_fields/general.php
+++ b/resources/lang/fil-PH/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Ang Field',
'about_fieldsets_title' => 'Ang Tungkol sa Fieldsets',
- 'about_fieldsets_text' => 'Ang Fieldsets ay nagbibigay permiso sa iyo na magsagawa ng grupo ng kustom na mga fields na madalas na ginagamit muli para sa partikular na tipo ng modelo ng asset.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'I-encrypt ang balyu sa field na ito sa database',
'encrypt_field_help' => 'BABALA: Ang pag-encrypt ng field ay maaaring maging hindi na ito maisaliksik.',
diff --git a/resources/lang/fil-PH/admin/depreciations/general.php b/resources/lang/fil-PH/admin/depreciations/general.php
index de1882f675..b2d1703888 100644
--- a/resources/lang/fil-PH/admin/depreciations/general.php
+++ b/resources/lang/fil-PH/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Tungkol sa Depresasyon ng Asset',
- 'about_depreciations' => 'Pwede kang mag-set up ng depresasyon para mai-depreciate ang mga asset basi sa straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Ang Depresasyon ng Asset',
'create' => 'Magsagawa ng Depresasyon',
'depreciation_name' => 'Ang Pangalan ng Depresasyon',
diff --git a/resources/lang/fil-PH/admin/hardware/form.php b/resources/lang/fil-PH/admin/hardware/form.php
index c5446fd036..35d8bdfe3d 100644
--- a/resources/lang/fil-PH/admin/hardware/form.php
+++ b/resources/lang/fil-PH/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Pumili ng Tipo ng Katayuan',
'serial' => 'Ang Seryal',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Ang Katayuan',
'tag' => 'Ang Tag ng Asset',
'update' => 'Ang Update sa Asset',
diff --git a/resources/lang/fil-PH/admin/hardware/general.php b/resources/lang/fil-PH/admin/hardware/general.php
index 52b43dfbee..88b3575a7f 100644
--- a/resources/lang/fil-PH/admin/hardware/general.php
+++ b/resources/lang/fil-PH/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Ni-rekwest',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Ibalik sa dati ang Asset',
'pending' => 'Hindi pa nasimulan',
'undeployable' => 'Hindi pwedeng i-deploy',
diff --git a/resources/lang/fil-PH/admin/licenses/message.php b/resources/lang/fil-PH/admin/licenses/message.php
index e43b8fd7ba..917cdeee41 100644
--- a/resources/lang/fil-PH/admin/licenses/message.php
+++ b/resources/lang/fil-PH/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Mayroong isyu sa pag-check in ng lisensya. Mangyaring subukang muli.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Matagumpay na nai-check in ang lisensya'
),
diff --git a/resources/lang/fil-PH/admin/locations/message.php b/resources/lang/fil-PH/admin/locations/message.php
index a5e77eb4fc..7ab9ba5006 100644
--- a/resources/lang/fil-PH/admin/locations/message.php
+++ b/resources/lang/fil-PH/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Ang lokasyon ay hindi umiiral.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Ang lokasyong ito ay kasalukuyang naiugnay sa hindi bumaba sa isang asset at hindi maaaring mai-delete. Mangyaring i-update ang iyong mga asset upang hindi na magreperens sa lokasyong ito at paki-subok muli. ',
'assoc_child_loc' => 'Ang lokasyong ito ay kasalukuyang pinagmumulan sa hindi bumaba sa lokasyon isang bata at hindi maaaring mai-delete. Mangyaring i-update ang iyong mga lokasyon upang hindi na magreperens sa lokasyong ito at paki-subok muli. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Buksan sa :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/fil-PH/admin/locations/table.php b/resources/lang/fil-PH/admin/locations/table.php
index 01b7ddc312..b62b0a17aa 100644
--- a/resources/lang/fil-PH/admin/locations/table.php
+++ b/resources/lang/fil-PH/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Magsagawa ng Lokasyon',
'update' => 'I-update ang Lokasyon',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'I-print ang Lahat ng Nakatalaga',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Ang Pangalan ng Lokasyon',
'address' => 'Ang Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/fil-PH/admin/models/table.php b/resources/lang/fil-PH/admin/models/table.php
index 72592e8d86..b0e9dd35d8 100644
--- a/resources/lang/fil-PH/admin/models/table.php
+++ b/resources/lang/fil-PH/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Ang mga Modelo ng Asset',
'update' => 'I-update ang Modelo ng Asset',
'view' => 'Tingnan ang Modelo ng Asset',
- 'update' => 'I-update ang Modelo ng Asset',
- 'clone' => 'I-clone ang Modelo',
- 'edit' => 'I-edit ang Modelo',
+ 'clone' => 'I-clone ang Modelo',
+ 'edit' => 'I-edit ang Modelo',
);
diff --git a/resources/lang/fil-PH/admin/users/general.php b/resources/lang/fil-PH/admin/users/general.php
index 11c359436d..968f2cf7f6 100644
--- a/resources/lang/fil-PH/admin/users/general.php
+++ b/resources/lang/fil-PH/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Ang Software ay Nai-check out sa :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'Tingnan ang User :name',
'usercsv' => 'Ang CSV file',
'two_factor_admin_optin_help' => 'Ang iyong kasalukuyang mga admin settings ay napapahintulot ng selektibong pagpapatupad ng two-factor authentication. ',
diff --git a/resources/lang/fil-PH/general.php b/resources/lang/fil-PH/general.php
index 6582903bee..1c7f27a01b 100644
--- a/resources/lang/fil-PH/general.php
+++ b/resources/lang/fil-PH/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'I-import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'I-import ang Kasaysayan',
'asset_maintenance' => 'Ang Pagpapanatili ng Asset',
'asset_maintenance_report' => 'Ang Report sa Pagpapanatili ng Asset',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'ang kabuuang mga lisensya',
'total_accessories' => 'ang kabuuang mga aksesorya',
'total_consumables' => 'ang kabuuang mga consumable',
+ 'total_cost' => 'Total Cost',
'type' => 'Ang Tipo',
'undeployable' => 'Hindi pwedeng i-depoy',
'unknown_admin' => 'Hindi matukoy na Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Ang pangalan ng gumagamit',
'update' => 'I-update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Karagdagang Impormasyon',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/fil-PH/mail.php b/resources/lang/fil-PH/mail.php
index ed8215d843..1c53df87c8 100644
--- a/resources/lang/fil-PH/mail.php
+++ b/resources/lang/fil-PH/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Ang Pa-expire na Report sa mga Asset.',
- 'Expiring_Licenses_Report' => 'Ang Pa-expire na Report sa mga Lisensya.',
+ 'Expiring_Assets_Report' => 'Ang Pa-expire na Report sa mga Asset',
+ 'Expiring_Licenses_Report' => 'Ang Pa-expire na Report sa mga Lisensya',
'Item_Request_Canceled' => 'Ang Rekwest na Aytem ay Nakansela',
'Item_Requested' => 'Ang Nirekwest na Aytem',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Ang Mababang Report ng Imbentaryo',
'a_user_canceled' => 'Ang gumagamit o user ay nag-kansela ng rekwest na aytem sa website',
'a_user_requested' => 'Ang gumagamit ay nag-rekwest ng aytem sa website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Ang Pangalan ng Asset',
'asset_requested' => 'Ang nirekwest na asset',
'asset_tag' => 'Ang Tag ng Asset',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Nakatalaga Sa',
+ 'eol' => 'Ang EOL',
'best_regards' => 'Lubos na bumabati,',
'canceled' => 'Nakansela',
'checkin_date' => 'Ang Petsa ng Pag-checkin',
@@ -58,6 +59,7 @@ return [
'days' => 'Mga araw',
'expecting_checkin_date' => 'Ang Inaasahang Petsa ng Pag-checkin',
'expires' => 'Mawalang bisa',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Kumusta',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Ang Aytem',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Paki-klik sa mga sumusunod na link para makapag-update sa iyong :web password:',
'login' => 'Mag-login',
'login_first_admin' => 'Mag-login sa iyong bagong pag-install ng Snipe-IT gamit ang mga kredensyal sa ibaba:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Ang Min QTY',
'name' => 'Ang Pangalan',
- 'new_item_checked' => 'Ang bagong aytem na nai-check out sa ilalim ng iyong pangalan, ang mga detalye ay nasa ibaba.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Ang mga Palatandaan',
'password' => 'Ang Password',
diff --git a/resources/lang/fr-FR/admin/custom_fields/general.php b/resources/lang/fr-FR/admin/custom_fields/general.php
index 273e50261d..f25b4e2cfd 100644
--- a/resources/lang/fr-FR/admin/custom_fields/general.php
+++ b/resources/lang/fr-FR/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Gérer',
'field' => 'Champ',
'about_fieldsets_title' => 'A propos des fieldsets',
- 'about_fieldsets_text' => 'Les fieldsets permettent de créer des groupes de champs personnalisés que vous utilisez fréquemment pour des types de modèles spécifiques.',
+ 'about_fieldsets_text' => 'Les jeux de champs permettent de grouper les champs supplémentaires affectés à des modèles d\'actifs.',
'custom_format' => 'Format Regex personnalisé...',
'encrypt_field' => 'Chiffrer la valeur de ce champ dans la base de données',
'encrypt_field_help' => 'AVERTISSEMENT: Chiffrer un champ en rend la recherche sur le contenu impossible.',
diff --git a/resources/lang/fr-FR/admin/depreciations/general.php b/resources/lang/fr-FR/admin/depreciations/general.php
index d7af00c67e..52463b491d 100644
--- a/resources/lang/fr-FR/admin/depreciations/general.php
+++ b/resources/lang/fr-FR/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'A propos des Amortissements',
- 'about_depreciations' => 'Vous pouvez configurer les amortissements de vos biens basés sur l\'amortissement linéaire.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Amortissements',
'create' => 'Créer un amortissement',
'depreciation_name' => 'Nom d\'Amortissement',
diff --git a/resources/lang/fr-FR/admin/hardware/form.php b/resources/lang/fr-FR/admin/hardware/form.php
index a31e03d231..ccd212421c 100644
--- a/resources/lang/fr-FR/admin/hardware/form.php
+++ b/resources/lang/fr-FR/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Aller aux attributions',
'select_statustype' => 'Choisissez le type de statut',
'serial' => 'Série ',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Statut',
'tag' => 'Numéro d\'inventaire',
'update' => 'Mise à jour de l\'actif',
diff --git a/resources/lang/fr-FR/admin/hardware/general.php b/resources/lang/fr-FR/admin/hardware/general.php
index 66ea9dc2e1..66a0dd40a6 100644
--- a/resources/lang/fr-FR/admin/hardware/general.php
+++ b/resources/lang/fr-FR/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Demandé',
'not_requestable' => 'Non demandable',
'requestable_status_warning' => 'Ne pas modifier l\'état demandable',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restaurer l\'actif',
'pending' => 'En attente',
'undeployable' => 'Non déployable',
diff --git a/resources/lang/fr-FR/admin/licenses/message.php b/resources/lang/fr-FR/admin/licenses/message.php
index 59d2be4d80..a0b8c23a30 100644
--- a/resources/lang/fr-FR/admin/licenses/message.php
+++ b/resources/lang/fr-FR/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Pas assez de sièges de licence disponibles pour le paiement',
'mismatch' => 'Le poste de licence fourni ne correspond pas à la licence',
'unavailable' => 'Ce poste n\'est pas disponible pour attribution.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Un problème a eu lieu pendant la dissociation de la licence. Veuillez essayer à nouveau.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'La licence a été dissociée avec succès'
),
diff --git a/resources/lang/fr-FR/admin/locations/message.php b/resources/lang/fr-FR/admin/locations/message.php
index 41b9f9398e..06b91f2ffb 100644
--- a/resources/lang/fr-FR/admin/locations/message.php
+++ b/resources/lang/fr-FR/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Le lieu n\'existe pas.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Cet emplacement est actuellement associé à au moins un actif et ne peut pas être supprimé. Veuillez mettre à jour vos actifs pour ne plus faire référence à cet emplacement et réessayez. ',
'assoc_child_loc' => 'Cet emplacement est actuellement le parent d\'au moins un sous emplacement et ne peut pas être supprimé . S\'il vous plaît mettre à jour vos emplacement pour ne plus le référencer et réessayez. ',
'assigned_assets' => 'Actifs assignés',
'current_location' => 'Emplacement actuel',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/fr-FR/admin/locations/table.php b/resources/lang/fr-FR/admin/locations/table.php
index 401b8101e9..f63bc8417e 100644
--- a/resources/lang/fr-FR/admin/locations/table.php
+++ b/resources/lang/fr-FR/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Créer un lieu',
'update' => 'Mettre à jour le lieu',
'print_assigned' => 'Imprimer les actifs attribués',
- 'print_all_assigned' => 'Imprimer tous les actifs attribués',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nom du lieu',
'address' => 'Adresse',
'address2' => 'Adresse Ligne 2',
diff --git a/resources/lang/fr-FR/admin/models/table.php b/resources/lang/fr-FR/admin/models/table.php
index 727ba77e1b..392ea1918b 100644
--- a/resources/lang/fr-FR/admin/models/table.php
+++ b/resources/lang/fr-FR/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modèles d\'actif',
'update' => 'Mettre à jour le modèle d\'actif',
'view' => 'Voir le modèle d\'actif',
- 'update' => 'Mettre à jour le modèle d\'actif',
- 'clone' => 'Cloner le modèle',
- 'edit' => 'Éditer le modèle',
+ 'clone' => 'Cloner le modèle',
+ 'edit' => 'Éditer le modèle',
);
diff --git a/resources/lang/fr-FR/admin/users/general.php b/resources/lang/fr-FR/admin/users/general.php
index bade1474d0..d9c45ddee4 100644
--- a/resources/lang/fr-FR/admin/users/general.php
+++ b/resources/lang/fr-FR/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Inclure cet utilisateur lors de l\'affectation automatique des licences éligibles',
'auto_assign_help' => 'Ignorer cet utilisateur dans l\'affectation automatique des licences',
'software_user' => 'Logiciels associés avec :name',
- 'send_email_help' => 'Vous devez fournir une adresse e-mail pour que cet utilisateur puisse recevoir ses identifiants. Les envois d\'identifiants par email ne peuvent être faits que lors de la création de l\'utilisateur. Les mots de passe sont stockés dans un hachage à sens unique et ne peuvent pas être récupérés une fois enregistrés.',
'view_user' => 'Voir l\'utilisateur :name',
'usercsv' => 'Fichier CSV',
'two_factor_admin_optin_help' => 'Vos paramètres administratifs actuels permettent une application sélective de l\'authentification à deux facteurs. ',
diff --git a/resources/lang/fr-FR/general.php b/resources/lang/fr-FR/general.php
index 99b1de76c1..517ce2df79 100644
--- a/resources/lang/fr-FR/general.php
+++ b/resources/lang/fr-FR/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importer',
'import_this_file' => 'Champs de la carte et traiter ce fichier',
'importing' => 'Importation en cours',
- 'importing_help' => 'Vous pouvez importer des matériels, accessoires, licences, composants, consommables et utilisateurs via un fichier CSV.
Le CSV doit être délimité par des virgules et formaté avec des en-têtes qui correspondent à ceux des exemples de CSV présents dans la documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importer l\'historique',
'asset_maintenance' => 'Gestion des actifs',
'asset_maintenance_report' => 'Rapport sur l\'entretien d\'actif',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'licences au total',
'total_accessories' => 'accessoires au total',
'total_consumables' => 'consommables totaux',
+ 'total_cost' => 'Total Cost',
'type' => 'Type ',
'undeployable' => 'Non déployable',
'unknown_admin' => 'Admin inconnu',
'unknown_user' => 'Utilisateur inconnu',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Nom d\'utilisateur',
'update' => 'Actualiser',
'updating_item' => 'Mise à jour de :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'En retard pour l\'audit',
'accept' => 'Accepter :asset',
'i_accept' => 'J\'accepte',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Je refuse',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accepter/refuser',
'sign_tos' => 'Signez ci-dessous pour indiquer que vous acceptez les conditions d\'utilisation :',
'clear_signature' => 'Effacer la signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Autorisations',
'managed_ldap' => '(Géré via LDAP)',
'export' => 'Exporter',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Synchronisation LDAP',
'ldap_user_sync' => 'Synchronisation d\'utilisateur LDAP',
'synchronize' => 'Synchroniser',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Mettre à jour les valeurs existantes ?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'La génération de numéros d\'inventaire autoincrémentés est désactivée, toutes les lignes doivent donc avoir la colonne "Numéro d\'inventaire" renseignée.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note : La génération de numéros d\'inventaire autoincrémentés est activée, de sorte que les actifs seront créés pour les lignes qui n\'ont pas de numéro d\'inventaire renseigné. Les lignes qui comprennent un numéro d\'inventaire seront mises à jour avec les informations fournies.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Envoyer un e-mail',
'call' => 'Numéro d\'appel',
'back_before_importing' => 'Sauvegarder avant d\'importer ?',
@@ -513,7 +520,10 @@ return [
'item_notes' => 'Notes :item',
'item_name_var' => 'Nom :item',
'error_user_company' => 'La société cible de l\'assignation et la société de l\'actif ne correspondent pas',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Un actif qui vous est assigné appartient à une autre société ; vous ne pouvez pas l\'accepter ou le refuser. Veuillez contacter votre manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Associé à : nom complet',
'checked_out_to_first_name' => 'Associé à : prénom',
@@ -585,6 +595,8 @@ return [
'components' => ':count Composant|:count Composants',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Plus d\'info',
'quickscan_bulk_help' => 'Si vous cochez cette case, l\'enregistrement de l\'actif sera modifié pour refléter ce nouvel emplacement. Si elle n\'est pas cochée, l\'emplacement sera simplement noté dans le journal d\'audit. Notez que si ce bien est sorti, il ne changera pas l\'emplacement de la personne, du bien ou de l\'emplacement auquel il est sorti.',
'whoops' => 'Oups !',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Noir',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/fr-FR/mail.php b/resources/lang/fr-FR/mail.php
index d29086b382..96e3f2a1aa 100644
--- a/resources/lang/fr-FR/mail.php
+++ b/resources/lang/fr-FR/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessoire enregistré',
- 'Accessory_Checkout_Notification' => 'Accessoire verrouillé',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Confirmation de l\'association de l\'accessoire',
'Confirm_Asset_Checkin' => 'Confirmation de l\'association du matériel',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Un matériel que vous avez emprunté doit être vérifié à nouveau le :date',
'Expected_Checkin_Notification' => 'Rappel : la date limite de vérification de :name approche',
'Expected_Checkin_Report' => 'Rapport de vérification de matériel attendu',
- 'Expiring_Assets_Report' => 'Rapport d\'expiration des actifs.',
- 'Expiring_Licenses_Report' => 'Rapport d\'expiration des licences.',
+ 'Expiring_Assets_Report' => 'Rapport d\'expiration des actifs',
+ 'Expiring_Licenses_Report' => 'Rapport d\'expiration des licences',
'Item_Request_Canceled' => 'Demande d\'article annulée',
'Item_Requested' => 'Article demandé',
'License_Checkin_Notification' => 'Licence enregistrée',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Rapport d’inventaire bas',
'a_user_canceled' => 'Un·e utilisateur·trice a annulé une demande d’article sur le site Web',
'a_user_requested' => 'Un·e utilisateur·trice a demandé un article sur le site Web',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Un utilisateur a accepté un article',
'acceptance_asset_declined' => 'Un utilisateur a refusé un article',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nom de l\'actif',
'asset_requested' => 'Produit demandé',
'asset_tag' => 'Numéro d\'inventaire',
- 'assets_warrantee_alert' => 'Il y a :count actif(s) avec une garantie expirant dans les prochains :threshold jours.|Il y a :count actif(s) avec des garanties expirant dans les prochains :threshold jours.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Affecté à',
+ 'eol' => 'Fin de vie',
'best_regards' => 'Cordialement,',
'canceled' => 'Annulé',
'checkin_date' => 'Date de dissociation',
@@ -58,6 +59,7 @@ return [
'days' => 'jours',
'expecting_checkin_date' => 'Date de dissociation prévue',
'expires' => 'Expire le',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Bonjour',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Rapport d\'inventaire',
'item' => 'Item',
'item_checked_reminder' => 'Ceci est un rappel que vous avez actuellement :count articles que vous n\'avez pas acceptés ou refusés. Veuillez cliquer sur le lien ci-dessous pour confirmer votre décision.',
- 'license_expiring_alert' => 'Il y a :count licence expirant dans les prochains :threshold jours.|Il y a :count licences expirant dans les prochains :threshold jours.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Veuillez cliquer sur le lien suivant pour confirmer votre :web account:',
'login' => 'Connexion',
'login_first_admin' => 'Connectez-vous à votre nouvelle installation Snipe-IT en utilisant les informations d\'identification ci-dessous :',
'low_inventory_alert' => 'Il y a :count item qui est en dessous du minimum d\'inventaire ou qui sera bas sous peu.|Il y a :count articles qui sont en dessous du minimum d\'inventaire ou qui seront bas sous peu.',
'min_QTY' => 'Quantité minimum',
'name' => 'Nom',
- 'new_item_checked' => 'Un nouvel élément a été vérifié sous votre nom, les détails sont ci-dessous.',
- 'new_item_checked_with_acceptance' => 'Un nouvel matériel a été emprunté sous votre nom et doit être accepté. Vous trouverez ci-dessous les détails correspondants.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'Un matériel a récemment été emprunté sous votre nom et doit être accepté. Vous trouverez ci-dessous les détails correspondants.',
'notes' => 'Notes',
'password' => 'Mot de passe',
diff --git a/resources/lang/ga-IE/admin/custom_fields/general.php b/resources/lang/ga-IE/admin/custom_fields/general.php
index 96486504cc..27746c8538 100644
--- a/resources/lang/ga-IE/admin/custom_fields/general.php
+++ b/resources/lang/ga-IE/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Gort',
'about_fieldsets_title' => 'Maidir Fieldsets',
- 'about_fieldsets_text' => 'Ceadaíonn Fieldsets duit grúpaí de réimsí saincheaptha a chruthú a athúsáidtear go minic a úsáidtear le haghaidh cineálacha sonracha sócmhainne sonracha.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Criptigh luach an réimse seo sa bhunachar sonraí',
'encrypt_field_help' => 'RABHADH: Ní chuireann sé clóscríobh ar réimse.',
diff --git a/resources/lang/ga-IE/admin/depreciations/general.php b/resources/lang/ga-IE/admin/depreciations/general.php
index 6df4bbb6f9..9aa7f122b0 100644
--- a/resources/lang/ga-IE/admin/depreciations/general.php
+++ b/resources/lang/ga-IE/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Maidir le Dímheas Sócmhainní',
- 'about_depreciations' => 'Is féidir leat dímheasanna sócmhainní a bhunú chun sócmhainní a dhímheas bunaithe ar dhímheas díreach líne.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Dímheas Sócmhainní',
'create' => 'Críochnaigh Dímheas',
'depreciation_name' => 'Ainm Dímheas',
diff --git a/resources/lang/ga-IE/admin/hardware/form.php b/resources/lang/ga-IE/admin/hardware/form.php
index 3fa8ddcdda..625d9a9f90 100644
--- a/resources/lang/ga-IE/admin/hardware/form.php
+++ b/resources/lang/ga-IE/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Roghnaigh Cineál Stádas',
'serial' => 'Sraithuimhir',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Stádas',
'tag' => 'Clib Sócmhainní',
'update' => 'Nuashonrú Sócmhainní',
diff --git a/resources/lang/ga-IE/admin/hardware/general.php b/resources/lang/ga-IE/admin/hardware/general.php
index 795449e59b..2b63848e00 100644
--- a/resources/lang/ga-IE/admin/hardware/general.php
+++ b/resources/lang/ga-IE/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Iarrtar',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Athchóirigh Sócmhainn',
'pending' => 'Ar feitheamh',
'undeployable' => 'Neamhfhostaithe',
diff --git a/resources/lang/ga-IE/admin/licenses/message.php b/resources/lang/ga-IE/admin/licenses/message.php
index 145d04a8d8..9ea2dc0bf8 100644
--- a/resources/lang/ga-IE/admin/licenses/message.php
+++ b/resources/lang/ga-IE/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Bhí ceist ann a sheiceáil sa cheadúnas. Arís, le d\'thoil.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Rinneadh an ceadúnas a sheiceáil go rathúil'
),
diff --git a/resources/lang/ga-IE/admin/locations/message.php b/resources/lang/ga-IE/admin/locations/message.php
index e87dbaa9e6..36c1248b56 100644
--- a/resources/lang/ga-IE/admin/locations/message.php
+++ b/resources/lang/ga-IE/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Níl an suíomh ann.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Tá an suíomh seo bainteach le sócmhainn amháin ar a laghad agus ní féidir é a scriosadh. Déan do sócmhainní a thabhairt cothrom le dáta gan tagairt a dhéanamh don áit seo agus déan iarracht arís.',
'assoc_child_loc' => 'Faoi láthair tá an suíomh seo ina tuismitheoir ar a laghad ar shuíomh leanbh amháin ar a laghad agus ní féidir é a scriosadh. Nuashonraigh do láithreacha le do thoil gan tagairt a dhéanamh don suíomh seo agus déan iarracht arís.',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ga-IE/admin/locations/table.php b/resources/lang/ga-IE/admin/locations/table.php
index bdf42aa2ed..3f28f2f7d5 100644
--- a/resources/lang/ga-IE/admin/locations/table.php
+++ b/resources/lang/ga-IE/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Cruthaigh Suíomh',
'update' => 'Suíomh Nuashonraithe',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Ainm Suíomh',
'address' => 'Seoladh',
'address2' => 'Address Line 2',
diff --git a/resources/lang/ga-IE/admin/models/table.php b/resources/lang/ga-IE/admin/models/table.php
index 7566b2741a..a53793af89 100644
--- a/resources/lang/ga-IE/admin/models/table.php
+++ b/resources/lang/ga-IE/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Múnlaí Sócmhainne',
'update' => 'Nuashonraigh an tSamhail Sócmhainní',
'view' => 'Féach ar an tSamhail Sócmhainne',
- 'update' => 'Nuashonraigh an tSamhail Sócmhainní',
- 'clone' => 'Samhail Clón',
- 'edit' => 'Modúl a Athrú',
+ 'clone' => 'Samhail Clón',
+ 'edit' => 'Modúl a Athrú',
);
diff --git a/resources/lang/ga-IE/admin/users/general.php b/resources/lang/ga-IE/admin/users/general.php
index 87a36f7d4d..ee8a9360a3 100644
--- a/resources/lang/ga-IE/admin/users/general.php
+++ b/resources/lang/ga-IE/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Bogearraí Seiceáil amach chuig: ainm',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'Féach Úsáideoir: ainm',
'usercsv' => 'Comhad CSV',
'two_factor_admin_optin_help' => 'Ceadaíonn do shuímh riaracháin reatha forfheidhmiú roghnach fíordheimhnithe dhá fhachtóir.',
diff --git a/resources/lang/ga-IE/general.php b/resources/lang/ga-IE/general.php
index 8b3b0aa638..508115a54c 100644
--- a/resources/lang/ga-IE/general.php
+++ b/resources/lang/ga-IE/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Iompórtáil',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Stair Iompórtála',
'asset_maintenance' => 'Cothabháil Sócmhainní',
'asset_maintenance_report' => 'Tuarascáil um Chothabháil Sócmhainní',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'ceadúnais iomlána',
'total_accessories' => 'gabhálais iomlána',
'total_consumables' => 'inchaite iomlán',
+ 'total_cost' => 'Total Cost',
'type' => 'Cineál',
'undeployable' => 'Neamh-imscartha',
'unknown_admin' => 'Riarachán Anaithnid',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Ainm Úsáideora',
'update' => 'Nuashonrú',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Tuilleadh eolais',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/ga-IE/mail.php b/resources/lang/ga-IE/mail.php
index 37d4dddebb..d82fedc4a7 100644
--- a/resources/lang/ga-IE/mail.php
+++ b/resources/lang/ga-IE/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Tuairisc ar Shócmhainní a Dhul in éag.',
- 'Expiring_Licenses_Report' => 'Tuarascáil um Cheadúnais a Dhul in éag.',
+ 'Expiring_Assets_Report' => 'Tuairisc ar Shócmhainní a Dhul in éag',
+ 'Expiring_Licenses_Report' => 'Tuarascáil um Cheadúnais a Dhul in éag',
'Item_Request_Canceled' => 'Iarratas Mír ar Cealaíodh',
'Item_Requested' => 'Mír Iarraidh',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Tuarascáil Fardal Íseal',
'a_user_canceled' => 'Tá úsáideoir tar éis iarratas ar mhír a chealú ar an láithreán gréasáin',
'a_user_requested' => 'D\'iarr úsáideoir mír ar an láithreán gréasáin',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Ainm Sócmhainne',
'asset_requested' => 'Iarrtar sócmhainn',
'asset_tag' => 'Clib Sócmhainní',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Sannadh Chun',
+ 'eol' => 'EOL',
'best_regards' => 'Dea-mhéin,',
'canceled' => 'Ar ceal',
'checkin_date' => 'Dáta Checkin',
@@ -58,6 +59,7 @@ return [
'days' => 'Laethanta',
'expecting_checkin_date' => 'An Dáta Seiceála Ionchais',
'expires' => 'Deireadh',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Dia dhuit',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Mír',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Cliceáil ar an nasc seo a leanas chun do chuid focal faire:',
'login' => 'Logáil isteach',
'login_first_admin' => 'Logáil isteach i do shuiteáil Snipe-IT nua ag baint úsáide as na dintiúir thíos:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Ainm',
- 'new_item_checked' => 'Rinneadh mír nua a sheiceáil faoi d\'ainm, tá na sonraí thíos.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Nótaí',
'password' => 'Pasfhocal',
diff --git a/resources/lang/he-IL/admin/custom_fields/general.php b/resources/lang/he-IL/admin/custom_fields/general.php
index 7460747339..59d7ef6309 100644
--- a/resources/lang/he-IL/admin/custom_fields/general.php
+++ b/resources/lang/he-IL/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'שדה',
'about_fieldsets_title' => 'אודות שדות',
- 'about_fieldsets_text' => 'Fieldsets מאפשרים לך ליצור קבוצות של שדות מותאמים אישית המשמשים לעתים קרובות לשימוש עבור סוגים ספציפיים של דגמי נכסים.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'הצפן את הערך של שדה זה במסד הנתונים',
'encrypt_field_help' => 'אזהרה: הצפנת שדה הופכת אותו לבלתי ניתן לחיפוש.',
diff --git a/resources/lang/he-IL/admin/depreciations/general.php b/resources/lang/he-IL/admin/depreciations/general.php
index d7d76409b0..f10d0f7429 100644
--- a/resources/lang/he-IL/admin/depreciations/general.php
+++ b/resources/lang/he-IL/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'על פחת נכסים',
- 'about_depreciations' => 'ניתן להגדיר פחתונות נכסים כדי לפחת נכסים על בסיס פחת קו ישר.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'פחת נכסים',
'create' => 'יצירת פחת',
'depreciation_name' => 'שם פחת',
diff --git a/resources/lang/he-IL/admin/hardware/form.php b/resources/lang/he-IL/admin/hardware/form.php
index c3d744bab8..fc07a6b0f6 100644
--- a/resources/lang/he-IL/admin/hardware/form.php
+++ b/resources/lang/he-IL/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'עבור לנמסר ל',
'select_statustype' => 'בחר סוג סטטוס',
'serial' => 'סידורי',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'סטָטוּס',
'tag' => 'תג נכס',
'update' => 'עדכון נכס',
diff --git a/resources/lang/he-IL/admin/hardware/general.php b/resources/lang/he-IL/admin/hardware/general.php
index 90d01eb9b6..b97b8870f9 100644
--- a/resources/lang/he-IL/admin/hardware/general.php
+++ b/resources/lang/he-IL/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'מבוקש',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'שחזור נכס',
'pending' => 'ממתין ל',
'undeployable' => 'לא ניתן לפריסה',
diff --git a/resources/lang/he-IL/admin/licenses/message.php b/resources/lang/he-IL/admin/licenses/message.php
index dd5dc197e6..18a5b15679 100644
--- a/resources/lang/he-IL/admin/licenses/message.php
+++ b/resources/lang/he-IL/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'היתה בעיה בבדיקת הרישיון. בבקשה נסה שוב.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'הרישיון נבדק בהצלחה'
),
diff --git a/resources/lang/he-IL/admin/locations/message.php b/resources/lang/he-IL/admin/locations/message.php
index ee8c5c2fed..e669d9ea00 100644
--- a/resources/lang/he-IL/admin/locations/message.php
+++ b/resources/lang/he-IL/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'המיקום אינו קיים.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'המיקום משויך לפחות לפריט אחד ולכן לא ניתן למחוק אותו. אנא עדכן את הפריטים כך שלא יהיה אף פריט משויך למיקום זה ונסה שנית. ',
'assoc_child_loc' => 'למיקום זה מוגדרים תתי-מיקומים ולכן לא ניתן למחוק אותו. אנא עדכן את המיקומים כך שלא שמיקום זה לא יכיל תתי מיקומים ונסה שנית. ',
'assigned_assets' => 'פריטים מוקצים',
'current_location' => 'מיקום נוכחי',
'open_map' => 'פתיחה במפות :map_provider_icon',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/he-IL/admin/locations/table.php b/resources/lang/he-IL/admin/locations/table.php
index b10044312d..2749f37a0b 100644
--- a/resources/lang/he-IL/admin/locations/table.php
+++ b/resources/lang/he-IL/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'צור מיקום',
'update' => 'עדכן מיקום',
'print_assigned' => 'להדפיס הקצאה',
- 'print_all_assigned' => 'להדפיס את כל ההקצאות',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'שם מיקום',
'address' => 'כתובת',
'address2' => 'שורת כתובת 2',
diff --git a/resources/lang/he-IL/admin/models/table.php b/resources/lang/he-IL/admin/models/table.php
index f43f0d4be2..ff1cedb88d 100644
--- a/resources/lang/he-IL/admin/models/table.php
+++ b/resources/lang/he-IL/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'מודלים של נכסים',
'update' => 'עדכון דגם הנכס',
'view' => 'הצג מודל נכס',
- 'update' => 'עדכון דגם הנכס',
- 'clone' => 'שיבוט המודל',
- 'edit' => 'עריכת מודל',
+ 'clone' => 'שיבוט המודל',
+ 'edit' => 'עריכת מודל',
);
diff --git a/resources/lang/he-IL/admin/users/general.php b/resources/lang/he-IL/admin/users/general.php
index 1130082868..594133b54e 100644
--- a/resources/lang/he-IL/admin/users/general.php
+++ b/resources/lang/he-IL/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'דלג על משתמש זה בעת שיוך אוטומטי של רשיונות',
'software_user' => 'התוכנה נבדקה אל: שם',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'הצג משתמש: שם',
'usercsv' => 'קובץ CSV',
'two_factor_admin_optin_help' => 'הגדרות מנהל המערכת הנוכחיות מאפשרות אכיפה סלקטיבית של אימות דו-גורמי.',
diff --git a/resources/lang/he-IL/general.php b/resources/lang/he-IL/general.php
index 4f6d1d483a..7cf9b85215 100644
--- a/resources/lang/he-IL/general.php
+++ b/resources/lang/he-IL/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'יְבוּא',
'import_this_file' => 'מפה שדות ועבד את הקובץ',
'importing' => 'מייבא',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'היסטוריית הייבוא',
'asset_maintenance' => 'אחזקת נכסים',
'asset_maintenance_report' => 'דוח אחזקה בנכסים',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'סך כל הרישיונות',
'total_accessories' => 'סה"כ אביזרים',
'total_consumables' => 'סך הכל מתכלים',
+ 'total_cost' => 'Total Cost',
'type' => 'סוּג',
'undeployable' => 'לא ניתן לפריסה',
'unknown_admin' => 'מנהל לא ידוע',
'unknown_user' => 'משתמש לא מוכר',
+ 'unit_cost' => 'Unit Cost',
'username' => 'שם משתמש',
'update' => 'עדכון',
'updating_item' => 'מעדכן :item',
@@ -354,9 +356,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'אשר :asset',
'i_accept' => 'קיבלתי',
- 'i_decline_item' => 'בטל פריט זה',
- 'i_accept_item' => 'קבל פריט זה',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'דחיתי',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'קבל/דחה',
'sign_tos' => 'יש לחתום להלן כדי לציין שתנאי השימוש מוסכמים עליך:',
'clear_signature' => 'מחיקת החתימה',
@@ -395,6 +399,7 @@ return [
'permissions' => 'הרשאות',
'managed_ldap' => '(מנוהל דרך LDAP)',
'export' => 'יצוא',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'סנכרון LDAP',
'ldap_user_sync' => 'סנכרון משתמשים LDAP',
'synchronize' => 'סינכרון',
@@ -484,7 +489,9 @@ return [
'update_existing_values' => 'לעדכן ערכים נוכחיים?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' לשלוח הודעות קבלת פנים למשתמשים חדשים? נא לשים לב שרק משתמשים עם כתובת דוא״ל תקנית שמסומנים כפעילים בקובץ הייבוא שלך יקבלו הודעת קבלת פנים.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'שלח דוא"ל',
'call' => 'התקשר למספר',
'back_before_importing' => 'לגבות לפני יבוא?',
@@ -514,7 +521,10 @@ return [
'item_notes' => 'הערות :item',
'item_name_var' => ':שם פריט',
'error_user_company' => 'תבדוק חברת יעד וחברת פריט הם לא תואמים',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'הפריט נמסר ל: Full Name',
'checked_out_to_first_name' => 'נמסר ל: First Name',
@@ -586,6 +596,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'עוד מידע',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -610,6 +622,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -626,11 +640,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/he-IL/mail.php b/resources/lang/he-IL/mail.php
index 0a57004cc5..4792adad91 100644
--- a/resources/lang/he-IL/mail.php
+++ b/resources/lang/he-IL/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'דוח נכסים שפג תוקפם.',
- 'Expiring_Licenses_Report' => 'דוח רישיונות שפג תוקפם.',
+ 'Expiring_Assets_Report' => 'דוח נכסים שפג תוקפם',
+ 'Expiring_Licenses_Report' => 'דוח רישיונות שפג תוקפם',
'Item_Request_Canceled' => 'פריט בקשה בוטלה',
'Item_Requested' => 'פריט מבוקש',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'דו"ח מלאי נמוך',
'a_user_canceled' => 'משתמש ביטל בקשת פריט באתר',
'a_user_requested' => 'משתמש ביקש פריט באתר',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'שם הנכס',
'asset_requested' => 'הנכס המבוקש',
'asset_tag' => 'תג נכס',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'שהוקצה ל',
+ 'eol' => 'משך החיים',
'best_regards' => 'כל טוב,',
'canceled' => 'בּוּטלָה',
'checkin_date' => 'תאריך הגעה',
@@ -58,6 +59,7 @@ return [
'days' => 'ימים',
'expecting_checkin_date' => 'תאריך הצ\'קין הצפוי',
'expires' => 'יפוג',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'שלום',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'פריט',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'לחץ על הקישור הבא כדי לעדכן את: סיסמת האינטרנט:',
'login' => 'התחברות',
'login_first_admin' => 'היכנס למערכת ההתקנה החדשה של Snipe-IT באמצעות פרטי הכניסה הבאים:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'מינימום QTY',
'name' => 'שֵׁם',
- 'new_item_checked' => 'פריט חדש נבדק תחת שמך, הפרטים להלן.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'הערות',
'password' => 'סיסמה',
diff --git a/resources/lang/hi-IN/admin/custom_fields/general.php b/resources/lang/hi-IN/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/hi-IN/admin/custom_fields/general.php
+++ b/resources/lang/hi-IN/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/hi-IN/admin/depreciations/general.php b/resources/lang/hi-IN/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/hi-IN/admin/depreciations/general.php
+++ b/resources/lang/hi-IN/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/hi-IN/admin/hardware/form.php b/resources/lang/hi-IN/admin/hardware/form.php
index 8fbd0b4e87..dc4754e71a 100644
--- a/resources/lang/hi-IN/admin/hardware/form.php
+++ b/resources/lang/hi-IN/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/hi-IN/admin/hardware/general.php b/resources/lang/hi-IN/admin/hardware/general.php
index bc972da290..09282b9190 100644
--- a/resources/lang/hi-IN/admin/hardware/general.php
+++ b/resources/lang/hi-IN/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/hi-IN/admin/licenses/message.php b/resources/lang/hi-IN/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/hi-IN/admin/licenses/message.php
+++ b/resources/lang/hi-IN/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/hi-IN/admin/locations/message.php b/resources/lang/hi-IN/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/hi-IN/admin/locations/message.php
+++ b/resources/lang/hi-IN/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/hi-IN/admin/locations/table.php b/resources/lang/hi-IN/admin/locations/table.php
index 53176d8a4e..d7128b30f7 100644
--- a/resources/lang/hi-IN/admin/locations/table.php
+++ b/resources/lang/hi-IN/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/hi-IN/admin/models/table.php b/resources/lang/hi-IN/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/hi-IN/admin/models/table.php
+++ b/resources/lang/hi-IN/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/hi-IN/admin/users/general.php b/resources/lang/hi-IN/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/hi-IN/admin/users/general.php
+++ b/resources/lang/hi-IN/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/hi-IN/general.php b/resources/lang/hi-IN/general.php
index 1d501ee616..3c6738bbdc 100644
--- a/resources/lang/hi-IN/general.php
+++ b/resources/lang/hi-IN/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/hi-IN/mail.php b/resources/lang/hi-IN/mail.php
index 910c860e2c..70ee6ba42f 100644
--- a/resources/lang/hi-IN/mail.php
+++ b/resources/lang/hi-IN/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/hr-HR/admin/custom_fields/general.php b/resources/lang/hr-HR/admin/custom_fields/general.php
index 404cff42d0..5d6a0eef6a 100644
--- a/resources/lang/hr-HR/admin/custom_fields/general.php
+++ b/resources/lang/hr-HR/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Polje',
'about_fieldsets_title' => 'O karticama Fieldsets',
- 'about_fieldsets_text' => 'Poljaci omogućuju stvaranje grupa prilagođenih polja koja se često upotrebljavaju za određene vrste imovine.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Šifriranje vrijednosti ovog polja u bazi podataka',
'encrypt_field_help' => 'UPOZORENJE: Šifriranje polja čini ga nedokučivim.',
diff --git a/resources/lang/hr-HR/admin/depreciations/general.php b/resources/lang/hr-HR/admin/depreciations/general.php
index 7fdcb703a1..547443bdf3 100644
--- a/resources/lang/hr-HR/admin/depreciations/general.php
+++ b/resources/lang/hr-HR/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'O amortizacijama imovine',
- 'about_depreciations' => 'Možete postaviti amortizaciju imovine za amortizaciju imovine na temelju linearne amortizacije.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Deprecijacija imovine',
'create' => 'Stvorite amortizaciju',
'depreciation_name' => 'Naziv amortizacije',
diff --git a/resources/lang/hr-HR/admin/hardware/form.php b/resources/lang/hr-HR/admin/hardware/form.php
index 47ec2f4e10..554dc4cf9e 100644
--- a/resources/lang/hr-HR/admin/hardware/form.php
+++ b/resources/lang/hr-HR/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Odaberite vrstu statusa',
'serial' => 'Serijski',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Oznaka imovine',
'update' => 'Ažuriranje aktiva',
diff --git a/resources/lang/hr-HR/admin/hardware/general.php b/resources/lang/hr-HR/admin/hardware/general.php
index 72907cbbf0..9aba342342 100644
--- a/resources/lang/hr-HR/admin/hardware/general.php
+++ b/resources/lang/hr-HR/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Traženi',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Vraćanje imovine',
'pending' => 'U tijeku',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/hr-HR/admin/licenses/message.php b/resources/lang/hr-HR/admin/licenses/message.php
index 851ba4beaa..2dfdf50557 100644
--- a/resources/lang/hr-HR/admin/licenses/message.php
+++ b/resources/lang/hr-HR/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'U licenci se provjeravala problem. Molim te pokušaj ponovno.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Licenca je uspješno provjerena'
),
diff --git a/resources/lang/hr-HR/admin/locations/message.php b/resources/lang/hr-HR/admin/locations/message.php
index 0eabb315bd..1c77453626 100644
--- a/resources/lang/hr-HR/admin/locations/message.php
+++ b/resources/lang/hr-HR/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Lokacija ne postoji.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Ta je lokacija trenutačno povezana s barem jednim resursom i ne može se izbrisati. Ažurirajte svoju imovinu da više ne referira na tu lokaciju i pokušajte ponovno.',
'assoc_child_loc' => 'Ta je lokacija trenutačno roditelj najmanje jedne lokacije za djecu i ne može se izbrisati. Ažurirajte svoje lokacije da više ne referiraju ovu lokaciju i pokušajte ponovo.',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/hr-HR/admin/locations/table.php b/resources/lang/hr-HR/admin/locations/table.php
index e870d4ff36..23c3a56fd3 100644
--- a/resources/lang/hr-HR/admin/locations/table.php
+++ b/resources/lang/hr-HR/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Izradi lokaciju',
'update' => 'Ažuriraj lokaciju',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Ispiši sve dodijeljeno',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Naziv lokacije',
'address' => 'Adresa',
'address2' => 'Address Line 2',
diff --git a/resources/lang/hr-HR/admin/models/table.php b/resources/lang/hr-HR/admin/models/table.php
index 97ab9555a5..75df13e8b7 100644
--- a/resources/lang/hr-HR/admin/models/table.php
+++ b/resources/lang/hr-HR/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modeli imovine',
'update' => 'Ažuriraj model aktive',
'view' => 'Prikaz modela aktive',
- 'update' => 'Ažuriraj model aktive',
- 'clone' => 'Klon model',
- 'edit' => 'Uredi model',
+ 'clone' => 'Klon model',
+ 'edit' => 'Uredi model',
);
diff --git a/resources/lang/hr-HR/admin/users/general.php b/resources/lang/hr-HR/admin/users/general.php
index 1076eacab5..47f1e383a0 100644
--- a/resources/lang/hr-HR/admin/users/general.php
+++ b/resources/lang/hr-HR/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Softver je provjeren na: ime',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'Prikaži korisnika: ime',
'usercsv' => 'CSV datoteku',
'two_factor_admin_optin_help' => 'Vaše trenutačne postavke administracije omogućuju selektivnu provedbu autentikacije dvogritera.',
diff --git a/resources/lang/hr-HR/general.php b/resources/lang/hr-HR/general.php
index 53d1375e71..4d5f1ab360 100644
--- a/resources/lang/hr-HR/general.php
+++ b/resources/lang/hr-HR/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Uvoz',
'import_this_file' => 'Mapiraj polja i obradi ovaj file',
'importing' => 'Uvoz',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Povijest uvoza',
'asset_maintenance' => 'Održavanje imovine',
'asset_maintenance_report' => 'Izvješće o održavanju imovine',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'ukupne licence',
'total_accessories' => 'ukupni pribor',
'total_consumables' => 'ukupni potrošni materijal',
+ 'total_cost' => 'Total Cost',
'type' => 'Tip',
'undeployable' => 'Un-razmjestiti',
'unknown_admin' => 'Nepoznati administrator',
'unknown_user' => 'Nepoznati Korisnik',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Korisničko ime',
'update' => 'Ažuriraj',
'updating_item' => 'Ažuriranje :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Zakašnjeno za inventuru',
'accept' => 'Prihvati :asset',
'i_accept' => 'Prihvaćam',
- 'i_decline_item' => 'Odbij ovaj predmet',
- 'i_accept_item' => 'Prihvati ovaj predmet',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Odbijam',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Prihvati/Odbij',
'sign_tos' => 'Potpisom ispod potvrđujete suglasnost s Uvjetima korištenja:',
'clear_signature' => 'Obriši potpis',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Ovlaštenja',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Izvoz',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Sinhroniziraj',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Više informacija',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/hr-HR/mail.php b/resources/lang/hr-HR/mail.php
index 4f485d7441..37d3e4226e 100644
--- a/resources/lang/hr-HR/mail.php
+++ b/resources/lang/hr-HR/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Izvješće o isteku aktive.',
- 'Expiring_Licenses_Report' => 'Istječe izvješće licenci.',
+ 'Expiring_Assets_Report' => 'Izvješće o isteku aktive',
+ 'Expiring_Licenses_Report' => 'Istječe izvješće licenci',
'Item_Request_Canceled' => 'Zahtjev za stavku je otkazan',
'Item_Requested' => 'Potrebna stavka',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Izvješće o niskom oglasnom prostoru',
'a_user_canceled' => 'Korisnik je otkazao zahtjev za stavkom na web mjestu',
'a_user_requested' => 'Korisnik je zatražio stavku na web mjestu',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Naziv imovine',
'asset_requested' => 'Traženo sredstvo',
'asset_tag' => 'Oznaka imovine',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Dodijeljena',
+ 'eol' => 'EOL',
'best_regards' => 'Lijepi Pozdrav,',
'canceled' => 'otkazano',
'checkin_date' => 'Datum čekanja',
@@ -58,6 +59,7 @@ return [
'days' => 'dana',
'expecting_checkin_date' => 'Očekivani datum provjere',
'expires' => 'istječe',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'zdravo',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Artikal',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Postoji :count licenca koja istječe u naredna :threshold dana.|Postoje :count licence koje istječu u naredna :threshold dana.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Kliknite sljedeću vezu da biste ažurirali svoju: web lozinku:',
'login' => 'Prijaviti se',
'login_first_admin' => 'Prijavite se na svoju novu Snipe-IT instalaciju pomoću vjerodajnica u nastavku:',
'low_inventory_alert' => 'Postoji :count stavka koja je ispod minimalnog iznosa zaliha ili će uskoro biti.|Postoje :count stavke koje su ispod minimalnog iznosa zaliha ili će uskoro biti.',
'min_QTY' => 'Min QTY',
'name' => 'Ime',
- 'new_item_checked' => 'Nova stavka je provjerena pod vašim imenom, detalji su u nastavku.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Bilješke',
'password' => 'Lozinka',
diff --git a/resources/lang/hu-HU/account/general.php b/resources/lang/hu-HU/account/general.php
index 4eff4da8e1..3dce50f6ff 100644
--- a/resources/lang/hu-HU/account/general.php
+++ b/resources/lang/hu-HU/account/general.php
@@ -2,16 +2,16 @@
return array(
'personal_api_keys' => 'Személyes API kulcsok',
- 'personal_access_token' => 'Personal Access Token',
- 'personal_api_keys_success' => 'Personal API Key :key created sucessfully',
- 'here_is_api_key' => 'Here is your new personal access token. This is the only time it will be shown so do not lose it! You may now use this token to make API requests.',
- 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.',
+ 'personal_access_token' => 'Személyes token',
+ 'personal_api_keys_success' => 'Személyes API-kulcs :key létrehozva',
+ 'here_is_api_key' => 'Új személyes token: csak egyszer látható, ne veszítse el! Használható API-kérésekhez.',
+ 'api_key_warning' => 'Az API-token csak egyszer látható, másolja le azonnal.',
'api_base_url' => 'Az API alap url címe a következő:',
'api_base_url_endpoint' => '/<endpoint>',
'api_token_expiration_time' => 'Az API tokenek lejárati ideje:',
- 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.',
+ 'api_reference' => 'Nézze meg a API referencia oldalt a végpontok és dokumentáció érdekében.',
'profile_updated' => 'A fiók frissítése sikeres',
- 'no_tokens' => 'You have not created any personal access tokens.',
+ 'no_tokens' => 'Nincsenek létrehozott személyes tokenek.',
'enable_sounds' => 'Hangeffektek engedélyezése',
- 'enable_confetti' => 'Enable confetti effects',
+ 'enable_confetti' => 'Konfetti-effektek engedélyezése',
);
diff --git a/resources/lang/hu-HU/admin/custom_fields/general.php b/resources/lang/hu-HU/admin/custom_fields/general.php
index 190d0551c0..ef2dd8e73c 100644
--- a/resources/lang/hu-HU/admin/custom_fields/general.php
+++ b/resources/lang/hu-HU/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Kezelés',
'field' => 'Mező',
'about_fieldsets_title' => 'A mezőcsoportokról',
- 'about_fieldsets_text' => 'A mezőcsoportokkal tudsz létrehozni olyan gyakran használt egyedi mezőket csoportosító speciális eszköz modell típusokat.',
+ 'about_fieldsets_text' => 'A mezőkészletek lehetővé teszik, hogy olyan egyéni mezők csoportjait hozza létre, amelyeket gyakran újra használnak bizonyos eszközmodell-típusok.',
'custom_format' => 'Egyedi Regex formátum...',
'encrypt_field' => 'A mező értékének titkosítása az adatbázisban',
'encrypt_field_help' => 'Figyelmeztetés: egy mező titkosítása kereshetetlenné teszi azt.',
@@ -33,7 +33,7 @@ return [
'create_fieldset_title' => 'Új mezőkészlet létrehozása',
'create_field' => 'Új egyéni mező',
'create_field_title' => 'Új egyéni mező létrehozása',
- 'value_encrypted' => 'The value of this field is encrypted in the database. Only users with permission to view encrypted custom fields will be able to view the decrypted value',
+ 'value_encrypted' => 'Ez a mező titkosított. Csak jogosultsággal rendelkező felhasználók láthatják az értékét',
'show_in_email' => 'Szerepeljen ez a mező az eszköz kiadásakor a felhasználónak küldött emailben? A titkosított mezők nem szerepelhetnek az emailekben',
'show_in_email_short' => 'Szerepeljen az emailekben',
'help_text' => 'Súgó szöveg',
@@ -57,9 +57,9 @@ return [
'show_in_requestable_list_short' => 'Mutassa a kérvényezhető eszközök listájában',
'show_in_requestable_list' => 'Mutassa az értéket a kérvényezhető eszközök listájában. A titkosított mezők nem lesznek láthatóak',
'encrypted_options' => 'Ez a mező titkosított, ezért néhány nézetbeállítás nem lesz elérhető.',
- 'display_checkin' => 'Display in checkin forms',
- 'display_checkout' => 'Display in checkout forms',
- 'display_audit' => 'Display in audit forms',
+ 'display_checkin' => 'Megjelenítés a visszaadás űrlapokon',
+ 'display_checkout' => 'Megjelenítés a átvétel űrlapokon',
+ 'display_audit' => 'Megjelenítés az audit űrlapon',
'types' => [
'text' => 'Szövegdoboz',
'listbox' => 'Listadoboz',
diff --git a/resources/lang/hu-HU/admin/depreciations/general.php b/resources/lang/hu-HU/admin/depreciations/general.php
index 58837c662b..34354b1441 100644
--- a/resources/lang/hu-HU/admin/depreciations/general.php
+++ b/resources/lang/hu-HU/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Eszköz értékcsökkentésekről',
- 'about_depreciations' => 'Beállíthat az eszközökhöz, eszköz alapú lineáris értékcsökkentést.',
+ 'about_depreciations' => 'Beállíthatja az eszközök értékcsökkenését úgy, hogy az lineárisan (egyenletesen), féléves alkalmazással feltétellel, vagy féléves alkalmazással mindig történjen.',
'asset_depreciations' => 'Eszköz értékcsökkenések',
'create' => 'Értékcsökkenés létrehozása',
'depreciation_name' => 'Értékcsökkenés neve',
diff --git a/resources/lang/hu-HU/admin/hardware/form.php b/resources/lang/hu-HU/admin/hardware/form.php
index a0b8de0f93..f3a5c982a3 100644
--- a/resources/lang/hu-HU/admin/hardware/form.php
+++ b/resources/lang/hu-HU/admin/hardware/form.php
@@ -10,7 +10,7 @@ return [
'bulk_update' => 'Tömeges eszköz frissítés',
'bulk_update_help' => 'Ez az űrlap segít frissíteni több eszközt egyszerre. Csak töltsd ki a változtatni kívánt mezőket. Mindent amit üresen hagysz az változatlan marad. ',
'bulk_update_warn' => 'Egyetlen eszköz tulajdonságait kívánja szerkeszteni.|:asset_count eszköz tulajdonságait kívánja szerkeszteni.',
- 'bulk_update_with_custom_field' => 'Note the assets are :asset_model_count different types of models.',
+ 'bulk_update_with_custom_field' => 'Vegye figyelembe, hogy az eszközök :asset_model_count különböző modell típusúak.',
'bulk_update_model_prefix' => 'Ezeken a modelleken',
'bulk_update_custom_field_unique' => 'Ez egy egyedi mező és nem lehet tömegesen módosítani.',
'checkedout_to' => 'Kiadva',
@@ -23,7 +23,7 @@ return [
'depreciation' => 'Értékcsökkenés',
'depreciates_on' => 'Leértékelődik',
'default_location' => 'Alapértelmezett hely',
- 'default_location_phone' => 'Default Location Phone',
+ 'default_location_phone' => 'A hely alapértelmezett telefonszáma',
'eol_date' => 'Lejárat Dátuma',
'eol_rate' => 'EOL arány',
'expected_checkin' => 'Várható visszaadás dátuma',
@@ -39,11 +39,13 @@ return [
'order' => 'Számla sorszáma',
'qr' => 'QR Code',
'requestable' => 'A felhasználók kérhetik ezt az eszközt',
- 'redirect_to_all' => 'Return to all :type',
- 'redirect_to_type' => 'Go to :type',
- 'redirect_to_checked_out_to' => 'Go to Checked Out to',
+ 'redirect_to_all' => 'Vissza az összes :type-hoz',
+ 'redirect_to_type' => 'Ugrás ide :type',
+ 'redirect_to_checked_out_to' => 'Ugrás a Kiadva ide-re',
'select_statustype' => 'Állapot típusának kiválasztása',
'serial' => 'Sorozatszám',
+ 'serial_required' => 'A :number számú eszközhöz sorozatszám szükséges',
+ 'serial_required_post_model_update' => 'A:asset_model mostantól kötelezővé teszi a sorozatszámot. Kérjük, adjon meg egy sorozatszámot ehhez az eszközhöz.',
'status' => 'Státusz',
'tag' => 'Eszköz azonosító',
'update' => 'Eszköz frissítés',
@@ -55,11 +57,11 @@ return [
'asset_location_update_default' => 'Csak az alapértelmezett helyszín frissítése',
'asset_location_update_actual' => 'Csak az aktuális helyszín frissítése',
'asset_not_deployable' => 'Az eszköz még nem kiadásra kész, még nem kiadható.',
- 'asset_not_deployable_checkin' => 'That asset status is not deployable. Using this status label will checkin the asset.',
- 'asset_deployable' => 'This asset can be checked out.',
+ 'asset_not_deployable_checkin' => 'Ez az eszköz státusza nem telepíthető. A használatával az eszköz visszavételre kerül.',
+ 'asset_deployable' => 'Ez az eszköz kiadható.',
'processing_spinner' => 'Feldolgozás folyamatban... (Nagyméretű fájlok esetében ez eltarthat egy darabig)',
'processing' => 'Feldolgozás... ',
'optional_infos' => 'Nem kötelező információk',
'order_details' => 'Megrendeléssel kapcsolatos információk',
- 'calc_eol' => 'If nulling the EOL date, use automatic EOL calculation based on the purchase date and EOL rate.',
+ 'calc_eol' => 'Ha az EOL dátum üres, számítsa automatikusan a beszerzés és az EOL ráta alapján.',
];
diff --git a/resources/lang/hu-HU/admin/hardware/general.php b/resources/lang/hu-HU/admin/hardware/general.php
index 8d6eadf3cb..4c88f99324 100644
--- a/resources/lang/hu-HU/admin/hardware/general.php
+++ b/resources/lang/hu-HU/admin/hardware/general.php
@@ -6,7 +6,7 @@ return [
'archived' => 'Arhivált',
'asset' => 'Eszköz',
'bulk_checkout' => 'Bulk Checkout',
- 'bulk_checkin' => 'Bulk Checkin',
+ 'bulk_checkin' => 'Tömeges visszavétel',
'checkin' => 'Eszköz visszavétele',
'checkout' => 'Checkout Asset',
'clear' => 'Kiürítés',
@@ -17,23 +17,25 @@ return [
'edit' => 'Eszköz módosítása',
'model_deleted' => 'Ennek az eszköznek a modellje törölve lett. Elösszőr a modellt vissza kell állítani, utánna lehet csak az eszközt visszaállítani.',
'model_invalid' => 'Ennek az eszköznek a modellje érvénytelen.',
- 'model_invalid_fix' => 'The asset must be updated use a valid asset model before attempting to check it in or out, or to audit it.',
+ 'model_invalid_fix' => 'Az eszközt frissíteni kell, és érvényes eszközmodellre kell állítani, mielőtt megpróbálná kiadni, visszavenni vagy leltározni.',
'requestable' => 'lehívási',
'requested' => 'Kérve',
'not_requestable' => 'Nem kérhető',
'requestable_status_warning' => 'Ne változtassa meg az igényelhető státuszt',
+ 'require_serial' => 'Sorozatszám kötelező',
+ 'require_serial_help' => 'Új eszköz létrehozásakor ehhez a modellhez sorozatszám szükséges.',
'restore' => 'Visszaállítás eszköz',
'pending' => 'Függőben',
'undeployable' => 'Nem telepíthető',
'undeployable_tooltip' => 'Az eszköz jelenleg az állapotcímkéje szerint nem helyezhezhető üzembe és nem adható ki.',
'view' => 'Eszköz megtekintése',
'csv_error' => 'Hiba van a CSV fájlban:',
- '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.
Fields included in the CSV must match the headers: Asset Tag, Name, Checkout Date, Checkin Date. Any additional fields will be ignored.
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.
',
- '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',
+ 'import_text' => '
Töltsön fel egy CSV fájlt az eszközök előzményeivel. Az eszközöknek és a felhasználóknak MÁR létezniük kell a rendszerben, különben átugrásra kerülnek. Az eszközök az Eszközcímke alapján kerülnek illesztésre. A felhasználókhoz a rendszer a megadott név és a kiválasztott kritériumok alapján próbál egyezést találni. Ha nem választ kritériumot, a rendszer a Admin > General Settings-ben beállított felhasználónév-formátum alapján próbál illesztést végezni.
A CSV fejlécének meg kell egyeznie ezzel: Eszközcímke, Név, Kiadás dátuma (Checkout Date), Visszavétel dátuma . Egyéb mezőket figyelmen kívül hagyunk.
Visszavétel dátuma üres vagy jövőbeli dátum esetén az eszköz kiadásra kerül a hozzárendelt felhasználóhoz. Ha a Checkin Date oszlop hiányzik, a rendszer a mai dátumot használja.
',
+ 'csv_import_match_f-l' => 'A felhasználók illesztése keresztnév.vezetéknév (jane.smith) formátum szerint',
+ 'csv_import_match_initial_last' => 'A felhasználók illesztése keresztbetű. vezetéknév (jsmith) formátum szerint',
+ 'csv_import_match_first' => 'A felhasználók illesztése keresztnév (jane) formátum szerint',
+ 'csv_import_match_email' => 'A felhasználók illesztése e-mail cím alapján',
+ 'csv_import_match_username' => 'A felhasználók illesztése felhasználónév alapján',
'error_messages' => 'Hibaüzenetek:',
'success_messages' => 'Sikeres üzenetek:',
'alert_details' => 'A részleteket lásd alább.',
diff --git a/resources/lang/hu-HU/admin/licenses/message.php b/resources/lang/hu-HU/admin/licenses/message.php
index 5aad5a1252..d159fd6ec6 100644
--- a/resources/lang/hu-HU/admin/licenses/message.php
+++ b/resources/lang/hu-HU/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Hiba történt az engedélyben. Kérlek próbáld újra.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Az engedélyt sikeresen ellenőrizték'
),
diff --git a/resources/lang/hu-HU/admin/locations/message.php b/resources/lang/hu-HU/admin/locations/message.php
index 981a07a9a2..fb006d7d10 100644
--- a/resources/lang/hu-HU/admin/locations/message.php
+++ b/resources/lang/hu-HU/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Hely nem létezik.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'Ez a helyszín jelenleg nem törölhető, mert legalább egy tétel vagy felhasználó alapértelmezett helyszíne, eszközök vannak hozzá rendelve, vagy egy másik helyszín szülőhelye. Kérjük, frissítse az adatait úgy, hogy már ne hivatkozzanak erre a helyszínre, majd próbálja újra ',
'assoc_assets' => 'Ez a hely jelenleg legalább egy eszközhöz társítva, és nem törölhető. Frissítse eszközeit, hogy ne hivatkozzon erre a helyre, és próbálja újra.',
'assoc_child_loc' => 'Ez a hely jelenleg legalább egy gyermek helye szülője, és nem törölhető. Frissítse tartózkodási helyeit, hogy ne hivatkozzon erre a helyre, és próbálja újra.',
'assigned_assets' => 'Hozzárendelt eszközök',
'current_location' => 'Jelenlegi hely',
- 'open_map' => 'Open in :map_provider_icon Maps',
+ 'open_map' => 'Megnyitás a :map_provider_icon térképen',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/hu-HU/admin/locations/table.php b/resources/lang/hu-HU/admin/locations/table.php
index 67e78dd0c0..d7ca6e8ec5 100644
--- a/resources/lang/hu-HU/admin/locations/table.php
+++ b/resources/lang/hu-HU/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Helyszín létrehozása',
'update' => 'Helyszín frissítése',
'print_assigned' => 'Hozzárendelt nyomtatása',
- 'print_all_assigned' => 'Az összes hozzárendelt nyomtatása',
+ 'print_inventory' => 'Leltár nyomtatása',
+ 'print_all_assigned' => 'Leltár és hozzárendelt eszközök nyomtatása',
'name' => 'Helyszín neve',
'address' => 'Cím',
'address2' => 'Cím sor 2',
diff --git a/resources/lang/hu-HU/admin/models/table.php b/resources/lang/hu-HU/admin/models/table.php
index f84a59a3d7..031b908f9c 100644
--- a/resources/lang/hu-HU/admin/models/table.php
+++ b/resources/lang/hu-HU/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Eszközmodellek',
'update' => 'Eszközmodell frissítése',
'view' => 'Eszközmodell megtekintése',
- 'update' => 'Eszközmodell frissítése',
- 'clone' => 'Modell klónozása',
- 'edit' => 'Modell szerkesztése',
+ 'clone' => 'Modell klónozása',
+ 'edit' => 'Modell szerkesztése',
);
diff --git a/resources/lang/hu-HU/admin/reports/message.php b/resources/lang/hu-HU/admin/reports/message.php
index 0a2909224f..f7e9fb9349 100644
--- a/resources/lang/hu-HU/admin/reports/message.php
+++ b/resources/lang/hu-HU/admin/reports/message.php
@@ -1,16 +1,16 @@
'About Saved Templates',
- 'saving_templates_description' => 'Select your options, then enter the name of your template in the box above and click the \'Save Template\' button. Use the dropdown to select a previously saved template.',
+ 'about_templates' => 'Mentett sablonok',
+ 'saving_templates_description' => 'Állítsa be a kívánt opciókat, adja meg a sablon nevét, majd kattintson a \'Sablon mentése\' gombra. A legördülőből választhat korábban mentett sablont.',
'create' => [
'success' => 'A sablon sikeresen mentve',
],
'update' => [
- 'success' => 'Template updated successfully',
+ 'success' => 'A sablon sikeresen frissítve',
],
'delete' => [
- 'success' => 'Template deleted',
- 'no_delete_permission' => 'Template does not exist or you do not have permission to delete it.',
+ 'success' => 'A sablon törölve',
+ 'no_delete_permission' => 'A sablon nem található, vagy nincs jogosultsága törölni.',
],
];
diff --git a/resources/lang/hu-HU/admin/settings/general.php b/resources/lang/hu-HU/admin/settings/general.php
index be66ade3d1..6762e3f204 100644
--- a/resources/lang/hu-HU/admin/settings/general.php
+++ b/resources/lang/hu-HU/admin/settings/general.php
@@ -44,7 +44,7 @@ return [
'confirm_purge' => 'Nyugtázza a tisztítást',
'confirm_purge_help' => 'Írd be a "DELETE" szót a lenti dobozba ha azt szeretnéd, hogy minden adat kitörlödjön. Ez a művelet nem visszaállítható és VÉGLEGESEN töröl minden eszközt és felhasználót. (Csinálj elötte egy biztonsági mentést, biztos ami biztos.)',
'custom_css' => 'Egyéni CSS',
- 'custom_css_placeholder' => 'Add your custom CSS',
+ 'custom_css_placeholder' => 'Saját CSS hozzáadása',
'custom_css_help' => 'Adjon meg olyan egyedi CSS felülírást, amelyet használni szeretne. Ne tüntesse fel a <style></style> címkéket.',
'custom_forgot_pass_url' => 'Egyéni jelszó visszaállítási URL',
'custom_forgot_pass_url_help' => 'Ez felváltja a beépített elfelejtett jelszó URL-jét a bejelentkezési képernyőn, amely hasznos lehet arra, hogy az embereket belső vagy hosztolt LDAP jelszó-visszaállítási funkciókra irányítsa. Hatékonyan kikapcsolja a helyi felhasználók elfelejtett jelszavát.',
@@ -52,7 +52,7 @@ return [
'dashboard_message_help' => 'Ez a szöveg megjelenik a műszerfalon bárki számára, aki engedélyt kapott a vezérlőpult megtekintésére.',
'default_currency' => 'Alapértelmezett pénznem',
'default_eula_text' => 'Alapértelmezett EULA',
- 'default_eula_text_placeholder' => 'Add your default EULA text',
+ 'default_eula_text_placeholder' => 'Alapértelmezett Felhasználói licencszerződés hozzáadása',
'default_language' => 'Alapértelmezett nyelv',
'default_eula_help_text' => 'Egyéni EULA-kat is társíthat bizonyos eszközkategóriákhoz.',
'acceptance_note' => 'Add a note for your decision (required if declining)',
@@ -73,7 +73,7 @@ return [
'favicon_size' => 'A favicon egy 16x16 pixeles kép kell legyen.',
'footer_text' => 'További lábjegyzet szöveg ',
'footer_text_help' => 'Ez a szöveg a lábléc jobb oldalán fog megjelenni. Linkek használata engedélyezett Github flavored markdown formátumban. Sortörések, fejlécek, képek, stb. okozhatnak problémákat a megjelenítés során.',
- 'footer_text_placeholder' => 'Optional footer text',
+ 'footer_text_placeholder' => 'Opcionális lábléc szöveg',
'general_settings' => 'Általános beállítások',
'general_settings_help' => 'Alapértelmezett EULA és egyéb',
'generate_backup' => 'Háttér létrehozása',
@@ -472,19 +472,19 @@ return [
'checkin' => 'Checkin Preferences',
'colors' => 'Colors & Skins',
'dashboard' => 'Login & Dashboard Preferences',
- 'email' => 'Email Preferences',
+ 'email' => 'Email beállítások',
'eula' => 'EULA & Acceptance Preferences',
'footer' => 'Footer Preferences',
'formats' => 'Default Formats',
- 'general' => 'General',
+ 'general' => 'Általános',
'intervals' => 'Intervals & Thresholds',
'logos' => 'Logos & Display',
- 'mapping' => 'LDAP Field Mapping',
- 'test' => 'Test LDAP Connection',
+ 'mapping' => 'LDAP mező térkép',
+ 'test' => 'LDAP kapcsolat tesztelése',
'misc' => 'Miscellaneous',
'misc_display' => 'Miscellaneous Display Options',
- 'profiles' => 'User Profiles',
- 'server' => 'Server Settings',
+ 'profiles' => 'Felhasználói profil',
+ 'server' => 'Szerver beállítás',
'scoping' => 'Scoping',
'security' => 'Security Preferences',
],
diff --git a/resources/lang/hu-HU/admin/settings/message.php b/resources/lang/hu-HU/admin/settings/message.php
index ae50efc8d9..68167389fe 100644
--- a/resources/lang/hu-HU/admin/settings/message.php
+++ b/resources/lang/hu-HU/admin/settings/message.php
@@ -15,7 +15,7 @@ return [
'restore_confirm' => 'Biztos, hogy vissza szeretné állítani az adatbázisát a :filename -ből?'
],
'restore' => [
- 'success' => 'Your system backup has been restored. Please log in again.'
+ 'success' => 'Rendszermentés visszaállítva. Jelentkezzen be újra.'
],
'purge' => [
'error' => 'Hiba történt a tisztítás során.',
@@ -37,7 +37,7 @@ return [
'authentication_success' => 'A felhasználó sikeresen hitelesített az LDAP-nál!'
],
'labels' => [
- 'null_template' => 'Label template not found. Please select a template.',
+ 'null_template' => 'A címkesablon nem található. Kérjük, válasszon egy sablont.',
],
'webhook' => [
'sending' => ':app tesztüzenet küldése...',
@@ -46,14 +46,14 @@ return [
'success_pt2' => ' csatornát a tesztüzenethez, és ne felejtsen el a MENTÉS gombra kattintani a beállítások tárolásához.',
'500' => '500 Szerverhiba.',
'error' => 'Valami hiba történt. A Slack a következő üzenettel válaszolt: :error_message',
- 'error_redirect' => 'ERROR: 301/302 :endpoint returns a redirect. For security reasons, we don’t follow redirects. Please use the actual endpoint.',
+ 'error_redirect' => 'HIBA: 301/302 :endpoint átirányítást ad vissza. Biztonsági okokból nem követjük az átirányításokat. Kérjük, használja a tényleges végpontot.',
'error_misc' => 'Valami hiba történt :( ',
- 'webhook_fail' => ' webhook notification failed: Check to make sure the URL is still valid.',
- 'webhook_channel_not_found' => ' webhook channel not found.',
- 'ms_teams_deprecation' => 'The selected Microsoft Teams webhook URL will be deprecated Dec 31st, 2025. Please use a workflow URL. Microsoft\'s documentation on creating a workflow can be found here.',
+ 'webhook_fail' => ' webhook értesítés sikertelen: Ellenőrizze, hogy az URL még érvényes-e.',
+ 'webhook_channel_not_found' => ' webhook csatorna hiányzik.',
+ 'ms_teams_deprecation' => 'A kiválasztott Microsoft Teams webhook URL 2025.12.31-től elavult. Használjon workflow URL-t. Részletek a Microsoft dokumentációjában itt',
],
'location_scoping' => [
- 'not_saved' => 'Your settings were not saved.',
- 'mismatch' => 'There is 1 item in the database that need your attention before you can enable location scoping.|There are :count items in the database that need your attention before you can enable location scoping.',
+ 'not_saved' => 'A beállításai nem kerültek mentésre.',
+ 'mismatch' => 'Az adatbázisban 1 tétel van, amely figyelmet igényel, mielőtt engedélyezhetné a helyszín szerinti szűrést.|Az adatbázisban :count tétel van, amely figyelmet igényel, mielőtt engedélyezhetné a helyszín szerinti szűrést.',
],
];
diff --git a/resources/lang/hu-HU/admin/statuslabels/table.php b/resources/lang/hu-HU/admin/statuslabels/table.php
index ba5730f410..aa9b00b914 100644
--- a/resources/lang/hu-HU/admin/statuslabels/table.php
+++ b/resources/lang/hu-HU/admin/statuslabels/table.php
@@ -1,14 +1,14 @@
'About Status Types',
+ 'about' => 'Státusztípusok',
'archived' => 'Archivált',
'create' => 'Státusz címke létrehozása',
'color' => 'Grafikon színe',
'default_label' => 'Alapértelmezett címke',
'default_label_help' => 'Ez annak biztosítására szolgál, hogy a leggyakrabban használt állapotcímkék a kiválasztott mező tetején jelenjenek meg az eszközök létrehozásakor / szerkesztésekor.',
'deployable' => 'Telepíthető',
- 'info' => 'Status label types are used to describe the various states your assets could be in. They may be out for repair, lost/stolen, etc. You can create new status labels for your deployable, pending and archived assets according to your own workflow. For more information, see the documentation .',
+ 'info' => 'A státuszcímkék az eszközök állapotát jelzik (pl. javításra kiküldve, elveszett, lopott). Új címkéket hozhat létre a telepíthető, függőben lévő és archivált eszközeihez. További info a dokumentációban.',
'name' => 'Státusz elnevezése',
'pending' => 'Függőben',
'status_type' => 'Státusz típusa',
diff --git a/resources/lang/hu-HU/admin/suppliers/message.php b/resources/lang/hu-HU/admin/suppliers/message.php
index 7599364473..037d3e5c31 100644
--- a/resources/lang/hu-HU/admin/suppliers/message.php
+++ b/resources/lang/hu-HU/admin/suppliers/message.php
@@ -22,7 +22,7 @@ return array(
'success' => 'A szállító sikeresen törölve lett.',
'assoc_assets' => 'Ez a beszállító jelenleg :asset_count eszközhöz van társítva és nem törölhető. Kérem frissítse az eszközeit hogy ne hivatkozzon erre a beszállítóra és próbálja újra. ',
'assoc_licenses' => 'Ez a beszállító jelenleg :asset_count licenszhez van társítva és nem törölhető. Kérem frissítse az licenszeit hogy ne hivatkozzonak erre a beszállítóra és próbálja újra. ',
- 'assoc_maintenances' => 'This supplier is currently associated with :maintenances_count asset maintenances(s) and cannot be deleted. Please update your asset maintenances to no longer reference this supplier and try again. ',
+ 'assoc_maintenances' => 'Ez a beszállító jelenleg :maintenances_count eszközkarbantartás(ok)hoz van társítva, ezért nem törölhető. Kérjük, frissítse az eszközkarbantartásokat úgy, hogy már ne hivatkozzanak erre a beszállítóra, majd próbálja újra ',
)
);
diff --git a/resources/lang/hu-HU/admin/users/general.php b/resources/lang/hu-HU/admin/users/general.php
index 07f0149c9a..fd1d05fba6 100644
--- a/resources/lang/hu-HU/admin/users/general.php
+++ b/resources/lang/hu-HU/admin/users/general.php
@@ -19,12 +19,11 @@ return [
'print_assigned' => 'Az összes hozzárendelt nyomtatása',
'email_assigned' => 'A hozzárendeltek e-mail listája',
'user_notified' => 'A felhasználó e-mailben megkapta az aktuálisan hozzárendelt elemek listáját.',
- 'users_notified' => 'The user has been emailed a list of their currently assigned items.|:count users have been emailed a list of their currently assigned items.',
- 'users_notified_warning' => ':count user has been emailed a list of their currently assigned items, however :no_email users did not have an email address so could not be emailed.|:count users have been emailed a list of their currently assigned items, however :no_email user(s) did not have an email address so could not be emailed.',
- 'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
+ 'users_notified' => 'A felhasználónak elküldtük az aktuálisan hozzá rendelt tételek listáját e-mailben.|:count felhasználónak elküldtük az aktuálisan hozzá rendelt tételek listáját e-mailben.',
+ 'users_notified_warning' => ':count felhasználónak elküldtük az aktuálisan hozzá rendelt tételek listáját e-mailben, azonban :no_email felhasználónak nem volt e-mail címe, így nem tudtuk elküldeni. |:count felhasználó(k)nak elküldtük az aktuálisan hozzá rendelt tételek listáját e-mailben, azonban :no_email felhasználónak nem volt e-mail címe, így nem tudtuk elküldeni.',
+ 'auto_assign_label' => 'Felhasználó bevonása az automatikus licenckiosztásba',
'auto_assign_help' => 'Felhasználó kihagyása a licencek automatikus hozzárendelésénél',
'software_user' => 'Szoftver ellenőrzése: név',
- 'send_email_help' => 'Meg kell adnod egy email címet ehhez a felhasználóhoz, hogy a hitelesítő adatok elküldve legyenek számára. Hitelesítő adatok csak a felhasználó készítésekor kerülnek elküldésre. A jelszavak hashelve kerülnek mentésre így nem lehet őket megszerezni miután elmentödtek.',
'view_user' => 'Felhasználó megtekintése: név',
'usercsv' => 'CSV fájl',
'two_factor_admin_optin_help' => 'A jelenlegi adminisztrációs beállításai lehetővé teszik a kétütemű hitelesítés szelektív végrehajtását.',
diff --git a/resources/lang/hu-HU/admin/users/table.php b/resources/lang/hu-HU/admin/users/table.php
index 6a70c69e41..0954e19516 100644
--- a/resources/lang/hu-HU/admin/users/table.php
+++ b/resources/lang/hu-HU/admin/users/table.php
@@ -27,7 +27,7 @@ return array(
'password_confirm' => 'Jelszó megerősítése',
'password' => 'Jelszó',
'phone' => 'Telefon',
- 'mobile' => 'Mobile',
+ 'mobile' => 'Mobil',
'show_current' => 'Jelenlegi felhasználók megjelenítése',
'show_deleted' => 'A törölt felhasználók megjelenítése',
'title' => 'Cím',
@@ -35,7 +35,7 @@ return array(
'total_assets_cost' => "Eszközök összes költsége",
'updateuser' => 'Felhasználó frissítése',
'username' => 'Felhasználónév',
- 'display_name' => 'Display Name',
+ 'display_name' => 'Megjeleítendő név',
'user_deleted_text' => 'Ezt a felhasználót törölték.',
'username_note' => '(Ez csak az Active Directory-kötéshez használható, nem pedig a bejelentkezéshez.)',
'cloneuser' => 'Klón felhasználó',
diff --git a/resources/lang/hu-HU/general.php b/resources/lang/hu-HU/general.php
index fb6d11d1fb..a2335a19c0 100644
--- a/resources/lang/hu-HU/general.php
+++ b/resources/lang/hu-HU/general.php
@@ -30,13 +30,13 @@ return [
'asset_report' => 'Eszköz riport',
'asset_tag' => 'Eszköz azonosító',
'asset_tags' => 'Eszköz címkék',
- 'available' => 'Available',
+ 'available' => 'Elérhető belőle',
'assets_available' => 'Elérhető eszközök',
'accept_assets' => 'Eszközök elfogadása :name',
'accept_assets_menu' => 'Eszközök elfogadása',
'accept_item' => 'Tétel elfogadása',
'audit' => 'Könyvvizsgálat',
- 'audited' => 'Audited',
+ 'audited' => 'Ellenőrzött',
'audits' => 'Auditok',
'audit_report' => 'Audit napló',
'assets' => 'Eszközök',
@@ -160,7 +160,7 @@ return [
'import' => 'Importálás',
'import_this_file' => 'Mezők leképezése és a fájl feldolgozása',
'importing' => 'Importálás',
- 'importing_help' => 'Eszközöket, tartozékokat, szoftverlicenceket, alkatrészeket, fogyóeszközöket és felhasználókat importálhat CSV fájl segítségével.
A CSV-ben az értékeket kettőspontal kell elválasztani és minden fejlécnévnek meg kell egyeznie az alap CSV dokumentációban szereplőkkel..',
+ 'importing_help' => 'A CSV fájlnak vesszővel elválasztottnak kell lennie, és a fejlécének meg kell egyeznie a dokumentációban található minta CSV-k fejlécével.',
'import-history' => 'Import történet',
'asset_maintenance' => 'Eszköz karbantartás',
'asset_maintenance_report' => 'Eszköz Karbantartás Riport',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'licensz összesen',
'total_accessories' => 'teljes tartozék',
'total_consumables' => 'összes fogyóeszköz',
+ 'total_cost' => 'Összessen',
'type' => 'Típus',
'undeployable' => 'Nem kiadható',
'unknown_admin' => 'Ismeretlen Admin',
'unknown_user' => 'Ismeretlen felhasználó',
+ 'unit_cost' => 'Egységár',
'username' => 'Felhasználónév',
'update' => 'Frissités',
'updating_item' => ':item frissítése',
@@ -338,13 +340,13 @@ return [
'zip' => 'Irányítószám',
'noimage' => 'Nincs kép feltöltve vagy a kép nem található.',
'file_does_not_exist' => 'A keresett fájl nem található a szerveren.',
- 'file_not_inlineable' => 'The requested file cannot be opened inline in your browser. You can download it instead.',
+ 'file_not_inlineable' => 'A kért fájl nem nyitható meg közvetlenül a böngészőben. Letöltheti helyette.',
'open_new_window' => 'Fájl új ablakban megnyitása',
'file_upload_success' => 'A fájl feltöltése sikeres!',
'no_files_uploaded' => 'A fájl feltöltése sikeres!',
'token_expired' => 'Az ürlap session lejárt. próbálkozz újra.',
'login_enabled' => 'Belépés engedélyezése',
- 'login_disabled' => 'Login Disabled',
+ 'login_disabled' => 'Bejelentkezés letiltva',
'audit_due' => 'Esedékes ellenőrzés',
'audit_due_days' => '{}Audit esedékes vagy késedelmes eszközök|[1]Audit esedékes vagy késedelmes eszközök 1 napon belül|[2,*]Audit esedékes vagy késedelmes eszközök :days napon belül',
'checkin_due' => 'Esedékes visszavételre',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Elévült az ellenőrzés',
'accept' => ':asset elfogadva',
'i_accept' => 'Elfogadom',
- 'i_decline_item' => 'Tétel elutasítása',
- 'i_accept_item' => 'Tétel elfogadása',
+ 'i_accept_with_count' => 'Elfogadom a :count tételt|Elfogadom a :count tételeket',
+ 'i_decline_item' => 'Elutasítja ezt a tételt|Elutasítja eeket a tételeket',
+ 'i_accept_item' => 'Fogadja el ezt a tételt | Fogadja el ezeket a tételeket',
'i_decline' => 'Elutasítom',
+ 'i_decline_with_count' => 'Elutasítom a :count tételt|Elutasítom a :count tételeket',
'accept_decline' => 'Elfogad/Elutasít',
'sign_tos' => 'A lenti aláírásoddal jelzed, hogy elfogadod a szolgáltatási feltételeket:',
'clear_signature' => 'Aláírás törlése',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Jogosultságok',
'managed_ldap' => '(LDAP-on keresztül kezelve)',
'export' => 'Exportálás',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP szinkronizálás',
'ldap_user_sync' => 'LDAP felhasználó szinkronizálása',
'synchronize' => 'Szinkronizálás',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Frissíti a jelenlegi adatokat?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Az automatikus eszközazonosító-generálás ki van kapcsolva, ezért minden sornak tartalmaznia kell az "Eszköz azonosító" oszlopot.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Megjegyzés: Az automatikus eszközazonosító-generálás engedélyezve van, így azokhoz a sorokhoz is létrejönnek eszközök, amelyeknél nincs "Eszköz azonosító" megadva. Azok a sorok, amelyeknél van "Eszköz azonosító", frissítve lesznek a megadott adatokkal.',
- 'send_welcome_email_to_users' => ' Küld üdvözlő emailt az új felhasználóknak? Fontos, hogy csak azok a felhasználók kapnak emailt, akiknek érvényes email-címe és aktív fiókja van.',
+ 'send_welcome_email_to_users' => ' Üdvözlő e-mail küldése az új felhasználóknak',
+ 'send_welcome_email_help' => 'Csak az aktivált, érvényes e-mail című felhasználók kapnak üdvözlő e-mailt a jelszó visszaállításához.',
+ 'send_welcome_email_import_help' => 'Csak az import fájlban aktivált, érvényes e-mail című új felhasználók kapnak üdvözlő e-mailt a jelszó beállításához.',
'send_email' => 'Email küldése',
'call' => 'Telefonszám hívása',
'back_before_importing' => 'Biztonsági mentés importálás előtt?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Megjegyzések',
'item_name_var' => ':eszköz neve',
'error_user_company' => 'A kiadásban szereplő cég nem egyezik meg az eszköznél megadott céggel',
+ 'error_user_company_multiple' => 'A kiadott eszköz tulajdonos vállalata és a ahova ki akarod adni vállalata eltér',
'error_user_company_accept_view' => 'Egy hozzád rendelt eszköz egy másik céghez tartozik, így nem fogadhatod el vagy utasíthatod vissza, kérlek egyeztess a vezetőddel',
+ 'error_assets_already_checked_out' => 'Egyes eszközök már ki vannak adva',
+ 'assigned_assets_removed' => 'A következő eszközöket eltávolítottuk, mert már ki vannak adva',
'importer' => [
'checked_out_to_fullname' => 'Kiadva a következőnek: Full Name',
'checked_out_to_first_name' => 'Kiadva a következőnek: First Name',
@@ -556,8 +566,8 @@ return [
'phone' => 'Telefon',
'fax' => 'Fax',
'contact' => 'Kapcsolat',
- 'show_admins' => 'Admin Users',
- 'show_superadmins' => 'Superusers',
+ 'show_admins' => 'Adminisztrátor',
+ 'show_superadmins' => 'Kiemelt felhasználók',
'edit_fieldset' => 'Mezőkészlet mezőinek és beállításainak szerkesztése',
'permission_denied_superuser_demo' => 'Hozzáférés megtagadva. Nem frissítheti a szuperadminisztrátorok felhasználói adatait a próba verzióban.',
'pwd_reset_not_sent' => 'A felhasználó nem aktív, vagy nem LDAP szinkronizált, vagy nincs email címe',
@@ -585,6 +595,8 @@ return [
'components' => ':count Alkatrész|:count Alkatrész',
],
+ 'show_inactive' => 'Lejárt vagy megszünt',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'További információ',
'quickscan_bulk_help' => 'Ha bejelöli ezt a négyzetet, az eszköz adatlapja frissülni fog az új helyszínnel. Ha nem jelöli be, a helyszínt csak az auditnaplóban rögzítjük. Fontos: ha az eszköz ki van adva, ez nem módosítja annak a személynek, eszköznek vagy helyszínnek a helyét, amelyhez ki lett adva.',
'whoops' => 'Hoppá!',
@@ -604,11 +616,13 @@ return [
'by' => 'Által',
'version' => 'Verzió',
'build' => 'build',
- 'use_cloned_image' => 'Clone image from original',
- 'use_cloned_image_help' => 'You may clone the original image or you can upload a new one using the upload field below.',
- 'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
+ 'use_cloned_image' => 'Az eredeti kép lemásolása',
+ 'use_cloned_image_help' => 'Másolhatja az eredeti képet, vagy feltölthet egy újat az alábbi feltöltő mező segítségével.',
+ 'use_cloned_no_image_help' => 'Ehhez a tételhez nincs saját kép rendelve, ezért a modelljétől vagy kategóriájától örökli a képet. Ha szeretne egy konkrét képet használni ehhez a tételhez, tölthet fel újat alább.',
'footer_credit' => 'A Snipe-IT nyílt forráskódú szoftver, amelyet szeretettel készített a @snipeitapp.com csapata.',
'set_password' => 'Jelszó beállítása',
+ 'upload_deleted' => 'A feltöltött file törölve',
+ 'child_locations' => 'Belső helyszín',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Alapértelmezett',
'default_blue' => 'Alapértelmezett kék',
'blue_dark' => 'Kék (sötét mód)',
- 'green' => 'Zöld sötét',
+ 'green' => 'Zöld',
'green_dark' => 'Zöld (sötét mód)',
- 'red' => 'Piros sötét',
+ 'red' => 'Piros',
'red_dark' => 'Piros (sötét mód)',
- 'orange' => 'Narancs sötét',
+ 'orange' => 'Narancssárga',
'orange_dark' => 'Narancs (sötét mód)',
'black' => 'Fekete',
'black_dark' => 'Fekete (Sötét mód)',
diff --git a/resources/lang/hu-HU/help.php b/resources/lang/hu-HU/help.php
index 5864b72ec2..4f4f478740 100644
--- a/resources/lang/hu-HU/help.php
+++ b/resources/lang/hu-HU/help.php
@@ -15,7 +15,7 @@ return [
'more_info_title' => 'Több információ',
- 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.
Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
+ 'audit_help' => 'Ha bejelöli ezt a négyzetet, az eszköz adatlapja frissülni fog az új helyszínnel. Ha nem jelöli be, a helyszínt csak az auditnaplóban rögzítjük.
Fontos: ha az eszköz ki van adva, ez nem módosítja annak a személynek, eszköznek vagy helyszínnek a helyét, amelyhez ki lett adva.',
'assets' => 'Az eszközök sorozatszám vagy eszközcímke alapján nyomon követhető tételek. Ezek általában nagyobb értékű tételek, ahol egy adott tétel azonosítása fontos.',
diff --git a/resources/lang/hu-HU/mail.php b/resources/lang/hu-HU/mail.php
index 2748c997e8..27ca0bd84b 100644
--- a/resources/lang/hu-HU/mail.php
+++ b/resources/lang/hu-HU/mail.php
@@ -3,54 +3,55 @@
return [
'Accessory_Checkin_Notification' => 'Tartozék kiadva',
- 'Accessory_Checkout_Notification' => 'Tartozék kiadva',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Tartozék kiadva|:count tartozék kiadva',
+ 'Asset_Checkin_Notification' => 'Eszköz visszavéve: :tag',
+ 'Asset_Checkout_Notification' => 'Eszköz kiadva: :tag',
'Confirm_Accessory_Checkin' => 'Tartozék visszavételének megerősítése',
'Confirm_Asset_Checkin' => 'Eszköz visszavételének megerősítése',
- 'Confirm_component_checkin' => 'Component checkin confirmation',
+ 'Confirm_component_checkin' => 'Komponens visszavételének megerősítése',
'Confirm_accessory_delivery' => 'Tartozék átvételének megerősítése',
'Confirm_asset_delivery' => 'Eszköz átvételének megerősítése',
'Confirm_consumable_delivery' => 'Fogyóeszköz átvételének megerősítése',
- 'Confirm_component_delivery' => 'Component delivery confirmation',
+ 'Confirm_component_delivery' => 'Komponens átadásának megerősítése',
'Confirm_license_delivery' => 'Licensz átvételének megerősítése',
- 'Consumable_checkout_notification' => 'Consumable checked out',
- 'Component_checkout_notification' => 'Component checked out',
- 'Component_checkin_notification' => 'Component checked in',
+ 'Consumable_checkout_notification' => 'Fogyóeszköz kiadva',
+ 'Component_checkout_notification' => 'Komponens kiadva',
+ 'Component_checkin_notification' => 'Komponens visszavéve',
'Days' => 'Nap',
'Expected_Checkin_Date' => 'Az eszközt amelyet kiadtak neked, hamarosan visszavételre kerül a :date napon',
'Expected_Checkin_Notification' => 'Emlékeztető: :name kiadásának idejéhez közelít',
'Expected_Checkin_Report' => 'Várható eszköz kiadásának jelentése',
- 'Expiring_Assets_Report' => 'Eszközök lejárati jelentése.',
- 'Expiring_Licenses_Report' => 'Az engedélyekről szóló jelentés lejárata.',
+ 'Expiring_Assets_Report' => 'Eszközök lejárati jelentése',
+ 'Expiring_Licenses_Report' => 'Az engedélyekről szóló jelentés lejárata',
'Item_Request_Canceled' => 'Elemkérelem törölve',
'Item_Requested' => 'Kért elem',
'License_Checkin_Notification' => 'Licensz kiadva',
- 'License_Checkout_Notification' => 'License checked out',
- 'license_for' => 'License for',
+ 'License_Checkout_Notification' => 'Licenc kiadva',
+ 'license_for' => 'Licenc a következőhöz',
'Low_Inventory_Report' => 'Alacsony készletjelentés',
'a_user_canceled' => 'A felhasználó törölte az elemkérést a webhelyen',
'a_user_requested' => 'A felhasználó egy elemet kért a webhelyen',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'Elfogadta a :site_name által hozzárendelt tételt|Elfogadta a :qty tételeket, amelyet a :site_name rendelt hozzá”',
'acceptance_asset_accepted' => 'A felhasználó elfogadott egy tételt',
'acceptance_asset_declined' => 'A felhasználó visszautasított egy tételt',
- 'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
+ 'send_pdf_copy' => 'Másolat küldése az e-mail címemre',
'accessory_name' => 'Tartozék neve',
'additional_notes' => 'További megjegyzések',
- 'admin_has_created' => 'An administrator has created an account for you on the :web website. Please find your username below, and click on the link to set a password.',
+ 'admin_has_created' => 'Endszergazda fiókot hozott létre Önnek a :web oldalon. Felhasználónév alább, kattintson a linkre a jelszó beállításához.',
'asset' => 'Eszköz',
'asset_name' => 'Eszköz neve',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Eszköz azonosító',
- 'assets_warrantee_alert' => ':count darab eszköznél a jótállás :threshold napon belül lejár.|:count darab eszköznél a jótállások :threshold napon belül lejárnak.',
+ 'assets_warrantee_alert' => 'Van :count eszköz, amelynek a garanciája a következő :threshold napban lejár, vagy eléri az élettartamának végét.|Vannak :count eszközök, amelyeknek a garanciája a következő :threshold napban lejár, vagy eléri az élettartamának végét.',
'assigned_to' => 'Hozzárendelve',
+ 'eol' => 'EOL',
'best_regards' => 'Üdvözlettel,',
'canceled' => 'Megszakítva',
'checkin_date' => 'Visszavétel dátuma',
'checkout_date' => 'Kiadási dátum',
'checkedout_from' => 'Kiadva innen',
'checkedin_from' => 'Visszavéve innen',
- 'checked_into' => 'Checked into',
+ 'checked_into' => 'Visszavéve',
'click_on_the_link_accessory' => 'Az alján lévő linkre kattintva ellenőrizheti, hogy megkapta-e a tartozékot.',
'click_on_the_link_asset' => 'Kérjük, kattintson az alul lévő linkre annak megerősítéséhez, hogy megkapták az eszközt.',
'click_to_confirm' => 'Kérjük, kattintson az alábbi linkre a weboldal megerősítéséhez: web account:',
@@ -58,27 +59,28 @@ return [
'days' => 'Nap',
'expecting_checkin_date' => 'Várható visszaadás dátuma',
'expires' => 'Lejárat',
- 'following_accepted' => 'The following was accepted',
- 'following_declined' => 'The following was declined',
+ 'terminates' => 'Terminates',
+ 'following_accepted' => 'Következő elfogása',
+ 'following_declined' => 'Következő elutasítva',
'hello' => 'Helló',
'hi' => 'Üdv',
'i_have_read' => 'Elolvastam és elfogadom a felhasználási feltételeket, és megkaptuk ezt az elemet.',
- 'initiated_accepted' => 'A checkout you initiated was accepted',
- 'initiated_declined' => 'A checkout you initiated was declined',
+ 'initiated_accepted' => 'Az Önnek kiadottak elfogadva',
+ 'initiated_declined' => 'Az Önnek kiadottak elutasítva',
'inventory_report' => 'Készlet Jelentés',
'item' => 'Tétel',
'item_checked_reminder' => 'Ez egy emlékeztető arról, hogy jelenleg :count számú jóváhagyásra váró eszköze van. Kérem, az alábbi linken döntsön ezek elfogadásáról, vagy elutasításáról.',
- 'license_expiring_alert' => ':count licensz lejár :thershold nap múlva.|:count licensz lejár :thershold nap múlva.',
+ 'license_expiring_alert' => 'Van :count licenc, amely a következő :threshold napban lejár vagy megszűnik.|Van :count licenc, amely a következő :threshold napban lejár vagy megszűnik.',
'link_to_update_password' => 'Kérjük, kattintson a következő linkre a frissítéshez: webes jelszó:',
'login' => 'Belépés',
'login_first_admin' => 'Jelentkezzen be az új Snipe-IT telepítésébe az alábbi hitelesítő adatok alapján:',
'low_inventory_alert' => ':count darab tétel érhető el, ami kevesebb mint a minimum készlet vagy hamarosan kevesebb lesz.',
'min_QTY' => 'Min QTY',
'name' => 'Név',
- 'new_item_checked' => 'Egy új elemet az Ön neve alatt ellenőriztek, a részletek lent találhatók.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
- 'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked' => 'Egy új tétel kiadásra került az Ön nevére, a részletek alább találhatók.|:count új tétel kiadásra került az Ön nevére, a részletek alább találhatók.',
+ 'new_item_checked_with_acceptance' => 'Egy új tétel kiadásra került az Ön nevére, amely elfogadást igényel, a részletek alább találhatók.|:count új tétel kiadásra került az Ön nevére, amelyek elfogadást igényelnek, a részletek alább találhatók.',
+ 'new_item_checked_location' => 'Egy új tétel kiadásra került ide: :location, a részletek alább találhatók.|:count új tétel kiadásra került ide: :location, a részletek alább találhatók.',
+ 'recent_item_checked' => 'Egy tétel kiadásra került az Ön nevére, elfogadást igényel. Részletek alább.',
'notes' => 'Jegyzetek',
'password' => 'Jelszó',
'password_reset' => 'Jelszó visszaállítása',
@@ -101,7 +103,7 @@ return [
'upcoming-audits' => 'Várhatóan :count eszközt kell ellenőrízni a következő :threshold napon belül.|Várhatóan :count eszközt kell ellenőrízni a következő :threshold napon belül.',
'user' => 'Felhasználó',
'username' => 'Felhasználónév',
- 'unaccepted_asset_reminder' => 'Reminder: You have Unaccepted Assets.',
+ 'unaccepted_asset_reminder' => 'Emlékeztető: Vannak elfogadásra váró eszközei.',
'welcome' => 'Üdvözöljük: név',
'welcome_to' => 'Üdvözöljük a weboldalon!',
'your_assets' => 'Eszközeidnek megtekíntése',
diff --git a/resources/lang/id-ID/admin/depreciations/general.php b/resources/lang/id-ID/admin/depreciations/general.php
index 2aa7b2741f..712a3c53c6 100644
--- a/resources/lang/id-ID/admin/depreciations/general.php
+++ b/resources/lang/id-ID/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Tentang Penyusutan Aset',
- 'about_depreciations' => 'Anda dapat mengatur penyusutan aset dengan perhitungan penyusutan garis lurus.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Depresiasi Aset',
'create' => 'Buat Penyusutan',
'depreciation_name' => 'Nama Penyusutan',
diff --git a/resources/lang/id-ID/admin/hardware/form.php b/resources/lang/id-ID/admin/hardware/form.php
index ca009b55a3..8ae0598ff9 100644
--- a/resources/lang/id-ID/admin/hardware/form.php
+++ b/resources/lang/id-ID/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Pergi ke yang Dipinjamkan ke',
'select_statustype' => 'Memilih Tipe Status',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Tag Aset',
'update' => 'Perbarui Aset',
diff --git a/resources/lang/id-ID/admin/hardware/general.php b/resources/lang/id-ID/admin/hardware/general.php
index e6800deaa1..24b0343032 100644
--- a/resources/lang/id-ID/admin/hardware/general.php
+++ b/resources/lang/id-ID/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Telah diminta',
'not_requestable' => 'Tidak Dapat Diminta',
'requestable_status_warning' => ' Jangan ubah status permintaan.',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Mengembalikan aset',
'pending' => 'Tunda',
'undeployable' => 'Tidak dapat digunakan',
diff --git a/resources/lang/id-ID/admin/licenses/message.php b/resources/lang/id-ID/admin/licenses/message.php
index 88a6aa886d..5a9a8d3372 100644
--- a/resources/lang/id-ID/admin/licenses/message.php
+++ b/resources/lang/id-ID/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Jumlah slot lisensi yang tersedia tidak mencukupi untuk dipinjam atau diambil',
'mismatch' => 'Slot lisensi yang diberikan tidak cocok dengan lisensi',
'unavailable' => 'Slot lisensi ini tidak tersedia untuk dipinjam atau diambil.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Terdapat kesalahan pada saat penerimaan lisensi ini. Silahkan coba kembali.',
- 'not_reassignable' => 'Lisensi tidak dapat dialihkan atau ditetapkan ulang',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Lisensi telah berhasil diterima'
),
diff --git a/resources/lang/id-ID/admin/locations/message.php b/resources/lang/id-ID/admin/locations/message.php
index 1655a4f376..0720172cf8 100644
--- a/resources/lang/id-ID/admin/locations/message.php
+++ b/resources/lang/id-ID/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Lokasi tidak ada.',
- 'assoc_users' => 'Lokasi ini saat ini tidak dapat dihapus karena merupakan lokasi catatan untuk minimal satu aset atau pengguna, memiliki aset yang ditetapkan pada lokasi tersebut, atau merupakan lokasi induk dari lokasi lain. Harap perbarui catatan Anda agar tidak lagi mereferensikan lokasi ini dan coba lagi ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Lokasi saat ini dikaitkan dengan setidaknya oleh satu aset dan tidak dapat dihapus. Perbarui aset Anda yang tidak ada referensi dari lokasi ini dan coba lagi. ',
'assoc_child_loc' => 'Lokasi saat ini digunakan oleh induk salah satu dari turunan lokasi dan tidak dapat di hapus. Mohon perbarui lokasi Anda ke yang tidak ada referensi dengan lokasi ini dan coba kembali. ',
'assigned_assets' => 'Aset yang Ditetapkan',
'current_location' => 'Lokasi Saat Ini',
'open_map' => 'Buka di Peta :map_provider_icon',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/id-ID/admin/locations/table.php b/resources/lang/id-ID/admin/locations/table.php
index 2d543d29b9..c0f47410fc 100644
--- a/resources/lang/id-ID/admin/locations/table.php
+++ b/resources/lang/id-ID/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Membuat Lokasi',
'update' => 'Perbarui Lokasi',
'print_assigned' => 'Cetak Semua Ditugaskan',
- 'print_all_assigned' => 'Cetak Semua Ditugaskan',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nama lokasi',
'address' => 'Alamat',
'address2' => 'Baris Alamat 2',
diff --git a/resources/lang/id-ID/admin/models/table.php b/resources/lang/id-ID/admin/models/table.php
index 481bc26797..f156bcb506 100644
--- a/resources/lang/id-ID/admin/models/table.php
+++ b/resources/lang/id-ID/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Model Aset',
'update' => 'Perbarui Model Aset',
'view' => 'Tampilkan Model Aset',
- 'update' => 'Perbarui Model Aset',
- 'clone' => 'Duplikat Model',
- 'edit' => 'Sunting Model',
+ 'clone' => 'Duplikat Model',
+ 'edit' => 'Sunting Model',
);
diff --git a/resources/lang/id-ID/admin/users/general.php b/resources/lang/id-ID/admin/users/general.php
index 680d72fe3b..bba6b45e7b 100644
--- a/resources/lang/id-ID/admin/users/general.php
+++ b/resources/lang/id-ID/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Sertakan pengguna ini saat penugasan otomatis lisensi yang memenuhi syarat',
'auto_assign_help' => 'Lewati pengguna ini dalam penetapan otomatis lisensi',
'software_user' => 'Perangkat lunak pada :name',
- 'send_email_help' => 'Anda harus memberikan alamat email pengguna ini untuk mengirimkan kredensial kepada mereka. Pengiriman email kredensial hanya dapat dilakukan pada pembuatan user. Kata sandi disimpan dalam hash satu arah dan tidak dapat diambil setelah disimpan.',
'view_user' => 'Lihat pengguna: name',
'usercsv' => 'Berkas CSV',
'two_factor_admin_optin_help' => 'Pengaturan admin Anda saat ini memungkinkan penegakan dua faktor otentikasi selektif.',
diff --git a/resources/lang/id-ID/general.php b/resources/lang/id-ID/general.php
index 82c46bfa81..7fb5ddcb11 100644
--- a/resources/lang/id-ID/general.php
+++ b/resources/lang/id-ID/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Impor',
'import_this_file' => 'Petakan kolom dan proses berkas ini',
'importing' => 'Pengimporan',
- 'importing_help' => 'Anda dapat mengimpor aset, aksesori, lisensi, komponen, bahan habis pakai, dan pengguna melalui file CSV.
CSV harus dibatasi koma dan diformat dengan header yang cocok dengan header di contoh CSV dalam dokumentasi.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Sejarah Impor',
'asset_maintenance' => 'Pemeliharaan Aset',
'asset_maintenance_report' => 'Laporan Pemeliharaan Aset',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total lisensi',
'total_accessories' => 'total aksesoris',
'total_consumables' => 'total habis',
+ 'total_cost' => 'Total Cost',
'type' => 'Tipe',
'undeployable' => 'Belum siap digunakan',
'unknown_admin' => 'Admin tidak diketahui',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Nama Pengguna',
'update' => 'Memperbarui',
'updating_item' => 'Memperbarui :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Terlambat untuk Audit',
'accept' => 'Terima :asset',
'i_accept' => 'Saya Setuju',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Saya Tidak Setuju',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Terima/Tolak',
'sign_tos' => 'Tanda tangani di bawah ini untuk menunjukkan bahwa Anda menyetujui persyaratan layanan:',
'clear_signature' => 'Hapus Tanda Tangan',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Hak akses',
'managed_ldap' => '(Dikelola melalui LDAP)',
'export' => 'Ekspor',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Sinkronisasi LDAP',
'ldap_user_sync' => 'Sinkronisasi Pengguna LDAP',
'synchronize' => 'Sinkronisasi',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Perbarui Data yang Ada?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Pembuatan tag aset penambahan otomatis dinonaktifkan sehingga semua baris harus diisi kolom "Tag Aset".',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Catatan: Membuat tag aset penambahan otomatis diaktifkan sehingga aset akan dibuat untuk baris yang tidak berisi "Tag Aset". Baris yang berisi "Tag Aset" akan diperbarui dengan informasi yang diberikan.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Kirim Email',
'call' => 'No. Panggilan',
'back_before_importing' => 'Cadangkan sebelum mengimpor?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':Catatan benda',
'item_name_var' => ':nama Item',
'error_user_company' => 'Company tujuan peminjaman dan company pemilik aset tidak cocok',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Aset yang ditetapkan kepada Anda dimiliki oleh company lain sehingga Anda tidak dapat menerima maupun menolaknya, harap hubungi manajer Anda',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Dipinjam oleh: Nama Lengkap',
'checked_out_to_first_name' => 'Dipinjam oleh: Nama Depan',
@@ -585,6 +595,8 @@ return [
'components' => ':count Komponen|:count Komponen',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Lebih Lanjut',
'quickscan_bulk_help' => 'Menandai kotak ini akan mengedit catatan aset untuk mencerminkan lokasi baru ini. Jika dibiarkan tidak dicentang, hanya lokasi tersebut yang akan dicatat dalam log audit. Perhatikan bahwa jika aset ini sedang dipinjam, lokasi orang, aset, atau lokasi tempat aset dipinjam tidak akan berubah.',
'whoops' => 'Waduh!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/id-ID/mail.php b/resources/lang/id-ID/mail.php
index 36c7cc78b2..0a55c6e308 100644
--- a/resources/lang/id-ID/mail.php
+++ b/resources/lang/id-ID/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Aksesoris Kembali',
- 'Accessory_Checkout_Notification' => 'Aksesoris telah dialokasikan',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Konfirmasi check-in Aksesoris',
'Confirm_Asset_Checkin' => 'Konfirmasi check-in Aset',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Aset yang check out untuk Anda akan check in kembali pada :date',
'Expected_Checkin_Notification' => 'Pengingat: :name mendekati batas waktu check-in [Dikembalikan]',
'Expected_Checkin_Report' => 'Laporan check-in aset yang diharapkan',
- 'Expiring_Assets_Report' => 'Laporan Aktiva Kedaluwarsa',
- 'Expiring_Licenses_Report' => 'Laporan Lisensi yang Berakhir',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Permintaan Barang Dibatalkan',
'Item_Requested' => 'Barang yang diminta',
'License_Checkin_Notification' => 'Lisensi Kembali',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Laporan Inventaris Rendah',
'a_user_canceled' => 'Pengguna telah membatalkan permintaan item di situs web',
'a_user_requested' => 'Pengguna telah meminta item di situs web',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Pengguna telah menerima',
'acceptance_asset_declined' => 'Pengguna telah menolak',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nama Aset',
'asset_requested' => 'Permintaan aset',
'asset_tag' => 'Tag Aset',
- 'assets_warrantee_alert' => 'Ada :count aset dengan garansi yang akan berakhir dalam :threshold hari mendatang.|Ada :count aset dengan garansi yang akan berakhir dalam :threshold hari mendatang.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Ditugaskan untuk',
+ 'eol' => 'MHP',
'best_regards' => 'Salam Hormat,',
'canceled' => 'Dibatalkan',
'checkin_date' => 'Tanggal Cek Masuk',
@@ -58,6 +59,7 @@ return [
'days' => 'Hari',
'expecting_checkin_date' => 'Tanggal pengembalian diharapkan diterima',
'expires' => 'Kadaluarsa',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Halo',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Laporan Inventori',
'item' => 'Item',
'item_checked_reminder' => 'Ini adalah pengingat bahwa Anda saat ini memiliki :count item yang dipinjamkan kepada Anda yang belum Anda terima atau tolak. Silakan klik tautan di bawah untuk mengonfirmasi keputusan Anda.',
- 'license_expiring_alert' => 'Ada :count lisensi yang masa berlakunya akan habis dalam :threshold hari.|Ada :count lisensi yang masa berlakunya akan habis dalam :threshold hari.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Silahkan klik pada link berikut untuk mengupdate: password web anda:',
'login' => 'Masuk',
'login_first_admin' => 'Login ke instalasi Snipe-IT baru Anda dengan menggunakan kredensial di bawah ini:',
'low_inventory_alert' => 'Ada :count item yang di bawah minimum persediaan atau akan segera habis.|Ada :count item yang di bawah minimum persediaan atau akan segera habis.',
'min_QTY' => 'Min QTY',
'name' => 'Nama',
- 'new_item_checked' => 'Item baru telah diperiksa berdasarkan nama Anda, rinciannya ada di bawah.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Catatan',
'password' => 'Kata sandi',
diff --git a/resources/lang/is-IS/admin/custom_fields/general.php b/resources/lang/is-IS/admin/custom_fields/general.php
index 6090db0784..196df6e216 100644
--- a/resources/lang/is-IS/admin/custom_fields/general.php
+++ b/resources/lang/is-IS/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Stjórna',
'field' => 'reitur',
'about_fieldsets_title' => 'Um reitasett',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/is-IS/admin/depreciations/general.php b/resources/lang/is-IS/admin/depreciations/general.php
index 224d8d6845..e7fbfbe667 100644
--- a/resources/lang/is-IS/admin/depreciations/general.php
+++ b/resources/lang/is-IS/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Um fyrningar eigna',
- 'about_depreciations' => 'Þú getur búið til mismunandi fyrningarflokka til að afskrifa eignir eftir línulegu afskriftarferli.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Fyrningar eigna',
'create' => 'Búa til fyrningarflokk',
'depreciation_name' => 'Heiti fyrningarflokks',
diff --git a/resources/lang/is-IS/admin/hardware/form.php b/resources/lang/is-IS/admin/hardware/form.php
index 4e5c09647c..b188d71915 100644
--- a/resources/lang/is-IS/admin/hardware/form.php
+++ b/resources/lang/is-IS/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Veldu stöðu',
'serial' => 'Raðnúmer',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Staða',
'tag' => 'Eignamerking',
'update' => 'Eign uppfærð',
diff --git a/resources/lang/is-IS/admin/hardware/general.php b/resources/lang/is-IS/admin/hardware/general.php
index 8aea21f118..9f8660034c 100644
--- a/resources/lang/is-IS/admin/hardware/general.php
+++ b/resources/lang/is-IS/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'óskað eftir',
'not_requestable' => 'Ekki hægt að óska eftir',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Á bið',
'undeployable' => 'Ónothæfar',
diff --git a/resources/lang/is-IS/admin/licenses/message.php b/resources/lang/is-IS/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/is-IS/admin/licenses/message.php
+++ b/resources/lang/is-IS/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/is-IS/admin/locations/message.php b/resources/lang/is-IS/admin/locations/message.php
index e1dc71b6e6..ecf46aabf7 100644
--- a/resources/lang/is-IS/admin/locations/message.php
+++ b/resources/lang/is-IS/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Staðsetningin er ekki til.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Skráðar eignir',
'current_location' => 'Núverandi staðsetning',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/is-IS/admin/locations/table.php b/resources/lang/is-IS/admin/locations/table.php
index 6161815fde..b78778d190 100644
--- a/resources/lang/is-IS/admin/locations/table.php
+++ b/resources/lang/is-IS/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Skrá staðsetningu',
'update' => 'Uppfæra staðsetningu',
'print_assigned' => 'Prenta skráð',
- 'print_all_assigned' => 'Prenta allt skráð',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Heiti staðsetningar',
'address' => 'Heimilisfang',
'address2' => 'Address Line 2',
diff --git a/resources/lang/is-IS/admin/models/table.php b/resources/lang/is-IS/admin/models/table.php
index 5c3181ff69..2bdc80c1b4 100644
--- a/resources/lang/is-IS/admin/models/table.php
+++ b/resources/lang/is-IS/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Tegundir',
'update' => 'Uppfæra eignategund',
'view' => 'Skoða eignategund',
- 'update' => 'Uppfæra eignategund',
- 'clone' => 'Klóna tegund',
- 'edit' => 'Breyta tegund',
+ 'clone' => 'Klóna tegund',
+ 'edit' => 'Breyta tegund',
);
diff --git a/resources/lang/is-IS/admin/users/general.php b/resources/lang/is-IS/admin/users/general.php
index 8942045b73..95059f03f6 100644
--- a/resources/lang/is-IS/admin/users/general.php
+++ b/resources/lang/is-IS/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'Skoða notanda :name',
'usercsv' => 'CSV skrá',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/is-IS/general.php b/resources/lang/is-IS/general.php
index d3c0cb43f7..fea9621efa 100644
--- a/resources/lang/is-IS/general.php
+++ b/resources/lang/is-IS/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Flytja inn',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Saga innflutninga',
'asset_maintenance' => 'Viðhald eignar',
'asset_maintenance_report' => 'Viðhaldsskýrsla eignar',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'rekstrarvörur',
+ 'total_cost' => 'Total Cost',
'type' => 'Týpa',
'undeployable' => 'Ónothæfar',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Notendanafn',
'update' => 'Uppfæra',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Úttekt á eftir áætlun',
'accept' => 'Samþykkja :asset',
'i_accept' => 'Ég samþykki',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Ég hafna',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Samþykkja/Hafna',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Hreinsa undirskrift',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':nafn hlutar',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Nánar',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/is-IS/mail.php b/resources/lang/is-IS/mail.php
index 8d2064e555..1a324b6a9c 100644
--- a/resources/lang/is-IS/mail.php
+++ b/resources/lang/is-IS/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Aukabúnaður skráður út',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Skýrsla um lága birgðastöðu',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Heiti eignar',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Búnaðar númer',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Skráð á',
+ 'eol' => 'Lok línu',
'best_regards' => 'Með kveðju,',
'canceled' => 'Canceled',
'checkin_date' => 'Skiladagsetning',
@@ -58,6 +59,7 @@ return [
'days' => 'Dagar',
'expecting_checkin_date' => 'Áætluð skiladagsetning',
'expires' => 'Rennur út',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Halló',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Atriði',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Nafn búnaðar',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Athugasemdir',
'password' => 'Lykilorð',
diff --git a/resources/lang/it-IT/admin/custom_fields/general.php b/resources/lang/it-IT/admin/custom_fields/general.php
index 686c4462aa..a1fef5e0b4 100644
--- a/resources/lang/it-IT/admin/custom_fields/general.php
+++ b/resources/lang/it-IT/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Gestire',
'field' => 'Campo',
'about_fieldsets_title' => 'Fileldsets',
- 'about_fieldsets_text' => 'I set di campi consentono di creare gruppi di campi personalizzati che sono utilizzati spesso per tipi di modelli di Bene specifici.',
+ 'about_fieldsets_text' => 'I set di campi consentono di creare gruppi di campi personalizzati che vengono spesso riutilizzati per modelli di beni specifici.',
'custom_format' => 'Formato Regex personalizzato...',
'encrypt_field' => 'Crittografare il valore di questo campo nel database',
'encrypt_field_help' => 'ATTENZIONE: Se il campo viene crittografato non sarà possibile cercarlo.',
diff --git a/resources/lang/it-IT/admin/depreciations/general.php b/resources/lang/it-IT/admin/depreciations/general.php
index 8dfb1fb42e..0e8e99e217 100644
--- a/resources/lang/it-IT/admin/depreciations/general.php
+++ b/resources/lang/it-IT/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Riguardo al deprezzamento dei Beni',
- 'about_depreciations' => 'Puoi configurare i deprezzamenti dei Beni con criterio lineare costante.',
+ 'about_depreciations' => 'Puoi impostare il deprezzamento dei beni per deprezzare su base lineare, su base semestrale con condizione, o su base semestrale (sempre applicata).',
'asset_depreciations' => 'Deprezzamento Beni',
'create' => 'Crea un deprezzamento',
'depreciation_name' => 'Nome del deprezzamento',
diff --git a/resources/lang/it-IT/admin/hardware/form.php b/resources/lang/it-IT/admin/hardware/form.php
index ffd66f8dea..d29b9f486d 100644
--- a/resources/lang/it-IT/admin/hardware/form.php
+++ b/resources/lang/it-IT/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Vai agli assegnati',
'select_statustype' => 'Selezionare il tipo di stato',
'serial' => 'Seriale',
+ 'serial_required' => 'È obbligatorio il numero di serie per il bene :number',
+ 'serial_required_post_model_update' => 'Il numero di serie è obbligatorio per :asset_model . Aggiungi un numero di serie per questo bene.',
'status' => 'Stato',
'tag' => 'Etichetta Bene',
'update' => 'Aggiorna Bene',
diff --git a/resources/lang/it-IT/admin/hardware/general.php b/resources/lang/it-IT/admin/hardware/general.php
index ab455f5be7..265a5418d7 100644
--- a/resources/lang/it-IT/admin/hardware/general.php
+++ b/resources/lang/it-IT/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'richiesto',
'not_requestable' => 'Non Richiedibili',
'requestable_status_warning' => 'Non cambiare richiedibilità',
+ 'require_serial' => 'Numero di serie obbligatorio',
+ 'require_serial_help' => 'Sarà richiesto il numero di serie per la creazione di un nuovo bene con questo modello.',
'restore' => 'Ripristina Asset',
'pending' => 'In attesa',
'undeployable' => 'Non Distribuilbile',
diff --git a/resources/lang/it-IT/admin/licenses/message.php b/resources/lang/it-IT/admin/licenses/message.php
index 7d9d8f589a..03a1f529d3 100644
--- a/resources/lang/it-IT/admin/licenses/message.php
+++ b/resources/lang/it-IT/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Non ci sono abbastanza copie della licenza disponibili per l\'assegnazione',
'mismatch' => 'Lo slot di licenza fornito non corrisponde alla licenza',
'unavailable' => 'Questo slot non è disponibile per l\'Assegnazione.',
+ 'license_is_inactive' => 'Questa licenza è scaduta o terminata.',
),
'checkin' => array(
'error' => 'C\'è stato un problema nella restituzione della licenza. Riprova.',
- 'not_reassignable' => 'Licenza non riassegnabile',
+ 'not_reassignable' => 'Licenza già utilizzata',
'success' => 'La licenza è stata restituita con successo'
),
diff --git a/resources/lang/it-IT/admin/locations/message.php b/resources/lang/it-IT/admin/locations/message.php
index 2956ca1afe..910451df4a 100644
--- a/resources/lang/it-IT/admin/locations/message.php
+++ b/resources/lang/it-IT/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'La Sede non esiste.',
- 'assoc_users' => 'Non puoi eliminare questa Sede perché è associata ad almeno un Bene o un Utente, o ha Beni assegnati, o è la Sede sotto la quale sono registrate altre Sedi. Aggiorna le altre voci in modo che non facciano più riferimento a questa Sede e poi riprova ',
+ 'assoc_users' => 'Questa Sede al momento non è eliminabile, perché vi sono registrati almeno un oggetto o un utente, o ha Beni assegnati, o è la sede "madre" di un\'altra sede. Aggiorna i dati in modo che non facciano più riferimento a questa sede, e riprova. ',
'assoc_assets' => 'Questa Sede è associata ad almeno un prodotto e non può essere cancellata. Si prega di aggiornare i vostri prodotti di riferimento e riprovare. ',
'assoc_child_loc' => 'La Sede contiene almeno un\'altra Sede, pertanto non può essere eliminata. Aggiorna le Sedi in modo che non siano parte di questa Sede e riprova. ',
'assigned_assets' => 'Beni Assegnati',
'current_location' => 'Sede attuale',
'open_map' => 'Apri con :map_provider_icon Maps',
+ 'deleted_warning' => 'Questa Sede è stata eliminata. Prima di provare a fare modifiche, ricorda di ripristinarla.',
'create' => array(
diff --git a/resources/lang/it-IT/admin/locations/table.php b/resources/lang/it-IT/admin/locations/table.php
index 440840900b..c1956cfba6 100644
--- a/resources/lang/it-IT/admin/locations/table.php
+++ b/resources/lang/it-IT/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Crea Sede',
'update' => 'Aggiorna Sede',
'print_assigned' => 'Stampa assegnazione',
- 'print_all_assigned' => 'Stampa tutte le assegnazioni',
+ 'print_inventory' => 'Stampa Inventario',
+ 'print_all_assigned' => 'Stampa Inventario e Assegnati',
'name' => 'Nome Sede',
'address' => 'Indirizzo',
'address2' => 'Indirizzo, riga 2',
diff --git a/resources/lang/it-IT/admin/models/table.php b/resources/lang/it-IT/admin/models/table.php
index 6b60cac777..280f4bf959 100644
--- a/resources/lang/it-IT/admin/models/table.php
+++ b/resources/lang/it-IT/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modelli Bene',
'update' => 'Aggiorna Modello Bene',
'view' => 'Visualizza Modello Bene',
- 'update' => 'Aggiorna Modello Bene',
- 'clone' => 'Clona Modello',
- 'edit' => 'Modifica Modello',
+ 'clone' => 'Clona Modello',
+ 'edit' => 'Modifica Modello',
);
diff --git a/resources/lang/it-IT/admin/settings/general.php b/resources/lang/it-IT/admin/settings/general.php
index 609a432ab2..76eab8c8a9 100644
--- a/resources/lang/it-IT/admin/settings/general.php
+++ b/resources/lang/it-IT/admin/settings/general.php
@@ -93,11 +93,11 @@ return [
'ldap_integration' => 'Integrazione LDAP',
'ldap_settings' => 'Impostazioni LDAP',
'ldap_client_tls_cert_help' => 'Il Certificato e la Chiave TLS Client per le connessioni LDAP sono di solito richieste solo nelle configurazioni di Google Workspace con "Secure LDAP".',
- 'ldap_location' => 'LDAP Location Field',
-'ldap_location_help' => 'The LDAP Location field should be used if an OU is not being used in the Base Bind DN. Leave this blank if an OU search is being used.',
+ 'ldap_location' => 'Campo Posizione LDAP',
+'ldap_location_help' => 'Il campo Posizione LDAP deve essere usato se una OU non viene utilizzata nella Base Bind DN Lascia vuoto se viene usata la ricerca OU.',
'ldap_login_test_help' => 'Immettere un nome utente e una password LDAP validi dal DN di base specificato in precedenza per verificare se il login LDAP è configurato correttamente. DEVI SALVARE LE IMPOSTAZIONI LDAP AGGIORNATE PRIMA.',
- 'ldap_login_sync_help' => 'This only tests that LDAP can sync and that your fields are mapped correctly. If your LDAP Authentication query is not correct, users may still not be able to login. YOU MUST SAVE YOUR UPDATED LDAP SETTINGS FIRST.',
- 'ldap_manager' => 'LDAP Manager Field',
+ 'ldap_login_sync_help' => 'Questo verifica solamente che LDAP possa sincronizzare correttamente e che i campi siano mappati correttamente. Se la tua query di autenticazione LDAP non è corretta, gli utenti potrebbero non essere ancora in grado di accedere. DEVI SALVARE LE IMPOSTAZIONI LDAP PRIMA DI EFFETTUARE QUESTO TEST.',
+ 'ldap_manager' => 'Campo Manager LDAP',
'ldap_server' => 'Server LDAP',
'ldap_server_help' => 'Dovrebbe iniziare con ldap:// (se non crittografato) o ldaps:// (se TLS o SSL)',
'ldap_server_cert' => 'Validazione certificato SSL di LDAP',
@@ -106,33 +106,33 @@ return [
'ldap_tls' => 'Usa TLS',
'ldap_tls_help' => 'Questo dovrebbe essere controllato solo se si esegue STARTTLS sul server LDAP.',
'ldap_uname' => 'Nome utente LDAP',
- 'ldap_dept' => 'LDAP Department Field',
- 'ldap_phone' => 'LDAP Phone Number Field',
- 'ldap_jobtitle' => 'LDAP Job Title Field',
- 'ldap_country' => 'LDAP Country Field',
+ 'ldap_dept' => 'Campo Dipartimento LDAP',
+ 'ldap_phone' => 'Campo Numero di telefono LDAP',
+ 'ldap_jobtitle' => 'Campo Titolo professionale LDAP',
+ 'ldap_country' => 'Campo Paese LDAP',
'ldap_pword' => 'Password LDAP',
'ldap_basedn' => 'DN Base',
'ldap_filter' => 'Filtro LDAP',
'ldap_pw_sync' => 'Tieni password LDAP in cache',
'ldap_pw_sync_help' => 'Deseleziona se non desideri mantenere le password LDAP in cache locale hashate. Se la disattivi, i tuoi utenti potrebbero non essere in grado di accedere se il server LDAP non è raggiungibile per qualche motivo.',
- 'ldap_username_field' => 'LDAP Username Field',
- 'ldap_display_name' => 'LDAP Display Name Field',
- 'ldap_display_name_help' => 'If you have a separate displayName field in your LDAP/AD, map it here and it will be used for displaying users within Snipe-IT.',
- 'ldap_lname_field' => 'LDAP Last Name Field',
- 'ldap_fname_field' => 'LDAP First Name Field',
+ 'ldap_username_field' => 'Campo Nome Utente LDAP',
+ 'ldap_display_name' => 'Campo Nome Visualizzazione LDAP',
+ 'ldap_display_name_help' => 'Se hai un campo displayName separato nel tuo LDAP/AD, mappa qui e verrà utilizzato per mostrare gli utenti in Snipe-IT.',
+ 'ldap_lname_field' => 'Campo Cognome LDAP',
+ 'ldap_fname_field' => 'Campo Nome LDAP',
'ldap_auth_filter_query' => 'Query di Autenticazione LDAP',
'ldap_version' => 'Versione LDAP',
'ldap_active_flag' => 'LDAP Active Flag',
'ldap_activated_flag_help' => 'Questo valore viene utilizzato per determinare se un utente sincronizzato può accedere a Snipe-IT. Non influisce sulla capacità di effettuare il check in o il checkout dei beni, e dovrebbe essere il nome dell\'attributo all\'interno del tuo AD/LDAP, non il valore.
Se questo campo è impostato su un nome di campo che non esiste nel tuo AD/LDAP, oppure il valore nel campo AD/LDAP è impostato su 0 o false, il login sarà disabilitato. Se il valore nel campo AD/LDAP è impostato a 1 o true o qualsiasi altro testo l\'utente può accedere. Quando il campo è vuoto nel tuo AD, rispettiamo l\'attributo userAccountControl , che di solito consente agli utenti non sospesi di accedere.',
'ldap_invert_active_flag' => 'Inverti flag "Attivo" di LDAP',
'ldap_invert_active_flag_help' => 'Se attivato: quando il valore restituito da LDAP Active Flag è 0 o false, l\'account utente sarà attivo.',
- 'ldap_emp_num' => 'LDAP Employee Number Field',
- 'ldap_email' => 'LDAP Email Field',
- 'ldap_mobile' => 'LDAP Mobile Field',
- 'ldap_address' => 'LDAP Address Field',
- 'ldap_city' => 'LDAP City Field',
- 'ldap_state' => 'LDAP State/Province Field',
- 'ldap_zip' => 'LDAP Postal Code Field',
+ 'ldap_emp_num' => 'Campo Matricola LDAP',
+ 'ldap_email' => 'Campo Email LDAP',
+ 'ldap_mobile' => 'Campo Cellulare LDAP',
+ 'ldap_address' => 'Campo Indirizzo LDAP',
+ 'ldap_city' => 'Campo Città LDAP',
+ 'ldap_state' => 'Campo Stato/Provincia LDAP',
+ 'ldap_zip' => 'Campo CAP LDAP',
'ldap_test' => 'Test LDAP',
'ldap_test_sync' => 'Test Sincronizzazione Ldap',
'license' => 'Licenza software',
@@ -480,12 +480,12 @@ return [
',
'intervals' => 'Intervalli e soglie',
'logos' => 'Loghi E Schermo',
- 'mapping' => 'LDAP Field Mapping',
- 'test' => 'Test LDAP Connection',
+ 'mapping' => 'Mappatura campi LDAP',
+ 'test' => 'Verifica connessione LDAP',
'misc' => 'Varie',
'misc_display' => 'Varie opzioni di visualizzazione',
'profiles' => 'Profili utente',
- 'server' => 'Server Settings',
+ 'server' => 'Impostazioni del Server',
'scoping' => 'Ambito di applicazione',
'security' => 'Preferenze di sicurezza',
],
diff --git a/resources/lang/it-IT/admin/users/general.php b/resources/lang/it-IT/admin/users/general.php
index 94fd2ef274..51fc339291 100644
--- a/resources/lang/it-IT/admin/users/general.php
+++ b/resources/lang/it-IT/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Includi l\'utente nella assegnazione automatica delle licenze',
'auto_assign_help' => 'Salta l\'utente nell\'assegnazione automatica delle licenze',
'software_user' => 'Software estratto a :name',
- 'send_email_help' => 'Devi fornire un indirizzo email all\'utente per inviare loro le credenziali. L\'inoltro delle credenziali via email avviene solo durante la creazione dell\'utente. La password è memorizzata in un hash unidirezionale e non può essere recuperata, una volta salvata.',
'view_user' => 'Visualizza Utente :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Le impostazioni correnti consentono l\'attivazione selettiva dell\'autenticazione a due fattori. ',
diff --git a/resources/lang/it-IT/admin/users/table.php b/resources/lang/it-IT/admin/users/table.php
index 8f87ceef05..8642186d43 100644
--- a/resources/lang/it-IT/admin/users/table.php
+++ b/resources/lang/it-IT/admin/users/table.php
@@ -35,7 +35,7 @@ return array(
'total_assets_cost' => "Costo Totale Beni",
'updateuser' => 'Aggiornamento utente',
'username' => 'Username',
- 'display_name' => 'Display Name',
+ 'display_name' => 'Nome Visualizzato',
'user_deleted_text' => 'Questo utente è stato contrassegnato come eliminato.',
'username_note' => '(Questo è usato solo per Active Directory vincolante, non per il login.)',
'cloneuser' => 'Clona Utente',
diff --git a/resources/lang/it-IT/general.php b/resources/lang/it-IT/general.php
index dea5539fdf..053a309f59 100644
--- a/resources/lang/it-IT/general.php
+++ b/resources/lang/it-IT/general.php
@@ -36,7 +36,7 @@ return [
'accept_assets_menu' => 'Accetta Beni',
'accept_item' => 'Accetta Oggetto',
'audit' => 'Revisione Inventario',
- 'audited' => 'Audited',
+ 'audited' => 'Revisionato',
'audits' => 'Revisioni',
'audit_report' => 'Registro Revisione Inventario',
'assets' => 'Beni',
@@ -160,7 +160,7 @@ return [
'import' => 'Importa',
'import_this_file' => 'Mappa i campi ed elabora questo file',
'importing' => 'Sto importando',
- 'importing_help' => 'È possibile importare risorse, accessori, licenze, componenti, materiali di consumo e utenti utilizzando file CSV.
Il CSV dovrebbe essere delimitato da virgole e formattato con intestazioni che corrispondano a quelle della seguente documentazione esempio CSV .',
+ 'importing_help' => 'Il CSV dovrebbe usare la virgola come separatore e formattato con intestazioni che corrispondano a quelle del CSV campione nella documentazione.',
'import-history' => 'Storico di Importazione',
'asset_maintenance' => 'Manutenzione Bene',
'asset_maintenance_report' => 'Report Manutenzione Beni',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'licenze totali',
'total_accessories' => 'accessori totali',
'total_consumables' => 'consumabili totali',
+ 'total_cost' => 'Costo Totale',
'type' => 'Tipo',
'undeployable' => 'Non consegnabile',
'unknown_admin' => 'Amministratore sconosciuto',
'unknown_user' => 'Utente Sconosciuto',
+ 'unit_cost' => 'Costo Unitario',
'username' => 'Nome utente',
'update' => 'Aggiorna',
'updating_item' => 'Aggiornamento :item',
@@ -338,7 +340,7 @@ return [
'zip' => 'Zip',
'noimage' => 'Nessuna immagine caricata o immagine non trovata.',
'file_does_not_exist' => 'Il file richiesto non esiste sul server.',
- 'file_not_inlineable' => 'The requested file cannot be opened inline in your browser. You can download it instead.',
+ 'file_not_inlineable' => 'Questo file non può essere aperto direttamente nel browser, ma puoi scaricarlo.',
'open_new_window' => 'Apri questo file in una finestra',
'file_upload_success' => 'Caricamento file riuscito!',
'no_files_uploaded' => 'Caricamento file riuscito!',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Scaduto per Controllo Inventario',
'accept' => 'Accetta :asset',
'i_accept' => 'Accetto',
- 'i_decline_item' => 'Rifiuta questo elemento',
- 'i_accept_item' => 'Accetta questo elemento',
+ 'i_accept_with_count' => 'Accetto :count elemento|Accetto :count elementi',
+ 'i_decline_item' => 'Rifiuta questo oggetto|Rifiuta questi oggetti',
+ 'i_accept_item' => 'Accetta questo oggetto|Accetta questi oggetti',
'i_decline' => 'Rifiuto',
+ 'i_decline_with_count' => 'Rifiuto :count oggetto|Rifiuto :count oggetti',
'accept_decline' => 'Accetta/Rifiuta',
'sign_tos' => 'Firma qui sotto per indicare che accetti i termini di servizio:',
'clear_signature' => 'Cancella Firma',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permessi',
'managed_ldap' => '(Gestito tramite LDAP)',
'export' => 'Esportazione',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Sincronizzazione LDAP',
'ldap_user_sync' => 'Sincronizzazione Utente LDAP',
'synchronize' => 'Sincronizza',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Aggiornare i Valori Esistenti?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'La generazione incrementale dei tag dei beni è disattivata: Tutte le righe devono avere una voce in "Tag Bene".',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Nota: la generazione automatica dei tag per i beni è attiva, quindi il tag verrà creato per ogni bene che non avesse il campo tag popolato. Gli elementi già provvisti di Tag saranno aggiornati con le informazioni fornite.',
- 'send_welcome_email_to_users' => ' Invia Email di benvenuto per i nuovi utenti? Nota che solo gli utenti con un indirizzo email valido e che sono segnati come attivati nel tuo file d\'importazione, riceveranno il benvenuto.',
+ 'send_welcome_email_to_users' => ' Manda mail di benvenuto ai nuovi utenti',
+ 'send_welcome_email_help' => 'Gli utenti attivati e con un indirizzo email valido riceveranno un\'email di benvenuto con la quale potranno reimpostare la loro password.',
+ 'send_welcome_email_import_help' => 'I nuovi utenti contrassegnati come attivi e con un indirizzo email valido riceveranno un\'email di benvenuto con la quale potranno reimpostare la loro password.',
'send_email' => 'Invia Email',
'call' => 'Chiama il numero',
'back_before_importing' => 'Backup prima di importare?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Note',
'item_name_var' => ':item Nome',
'error_user_company' => 'L\'azienda a cui vuoi fare l\'assegnazione e quella del bene non corrispondono',
+ 'error_user_company_multiple' => 'Una o più aziende a cui vuoi fare l\'assegnazione e quella del bene non corrispondono',
'error_user_company_accept_view' => 'Un bene assegnato a te appartiene a un\'altra azienda. Non puoi accettarlo né rifiutarlo. Parlane col tuo manager',
+ 'error_assets_already_checked_out' => 'Uno o più tra questi Beni sono già stati assegnati',
+ 'assigned_assets_removed' => 'Questi beni sono stati rimossi dai selezionati perché sono già stati assegnati',
'importer' => [
'checked_out_to_fullname' => 'Assegnato a: Nome Cognome',
'checked_out_to_first_name' => 'Assegnato a: Nome',
@@ -585,6 +595,8 @@ return [
'components' => ':count Componente|:count Componenti',
],
+ 'show_inactive' => 'Scaduto o terminato',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Altre informazioni',
'quickscan_bulk_help' => 'Spuntare questa casella modificherà la Sede di questo Bene. Non spuntandola, la Sede verrà solo annotata nel registro del controllo inventario. Nota che se questo bene è già assegnato, non verrà modificata la Sede della persona, del Bene o della Sede a cui è assegnato.',
'whoops' => 'Ops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'Questo oggetto non ha un\'immagine e quindi l\'eredita dal modello o dalla categoria a cui appartiene. Se vuoi usare una immagine specifica per questo oggetto, puoi caricarne una qui sotto.',
'footer_credit' => 'Snipe-IT è un software open source, realizzato con amore da @snipeitapp.com.',
'set_password' => 'Imposta una password',
+ 'upload_deleted' => 'Carica cancellati',
+ 'child_locations' => 'Sedi sottoposte',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Predefinito',
'default_blue' => 'Blu Predefinito',
'blue_dark' => 'Blu (Tema Scuro)',
- 'green' => 'Verde Scuro',
+ 'green' => 'Verde',
'green_dark' => 'Verde (Tema Scuro)',
- 'red' => 'Rosso Scuro',
+ 'red' => 'Rosso',
'red_dark' => 'Rosso (Tema Scuro)',
- 'orange' => 'Arancione Scuro',
+ 'orange' => 'Arancione',
'orange_dark' => 'Arancione (Tema Scuro)',
'black' => 'Nero',
'black_dark' => 'Nero (Tema Scuro)',
diff --git a/resources/lang/it-IT/mail.php b/resources/lang/it-IT/mail.php
index ae61e79fa2..f9a793ca49 100644
--- a/resources/lang/it-IT/mail.php
+++ b/resources/lang/it-IT/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessorio restituito',
- 'Accessory_Checkout_Notification' => 'Accessorio assegnato',
- 'Asset_Checkin_Notification' => 'Bene restituito: [:tag]',
- 'Asset_Checkout_Notification' => 'Bene assegnato: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessorio assegnato|:count Accessori assegnati',
+ 'Asset_Checkin_Notification' => 'Bene restituito: :tag',
+ 'Asset_Checkout_Notification' => 'Bene assegnato: :tag',
'Confirm_Accessory_Checkin' => 'Conferma restituzione accessorio',
'Confirm_Asset_Checkin' => 'Conferma restituzione del bene',
'Confirm_component_checkin' => 'Conferma check-in del componente',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Un bene assegnato a te deve essere restituito il :date',
'Expected_Checkin_Notification' => 'Promemoria: scadenza restituzione :name in avvicinamento',
'Expected_Checkin_Report' => 'Report Beni in attesa di restituzione',
- 'Expiring_Assets_Report' => 'Report Beni in scadenza.',
- 'Expiring_Licenses_Report' => 'Report Licenze in scadenza.',
+ 'Expiring_Assets_Report' => 'Report Beni in scadenza',
+ 'Expiring_Licenses_Report' => 'Report Licenze in scadenza',
'Item_Request_Canceled' => 'Richiesta dell\'articolo annullata',
'Item_Requested' => 'Articolo richiesto',
'License_Checkin_Notification' => 'Licenza restituita',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Rapporto di inventario basso',
'a_user_canceled' => 'Un utente ha annullato una richiesta di articolo tramite sito web',
'a_user_requested' => 'Un utente ha richiesto un elemento tramite il sito web',
- 'acceptance_asset_accepted_to_user' => 'Hai accettato un elemento assegnato a te da :site_name',
+ 'acceptance_asset_accepted_to_user' => 'Hai accettato un elemento assegnato a te da :site_name|Hai accettato :qty elementi assegnati a te da :site_name',
'acceptance_asset_accepted' => 'Un utente ha accettato un elemento',
'acceptance_asset_declined' => 'Un utente ha rifiutato un elemento',
'send_pdf_copy' => 'Invia una copia di questa accettazione al mio indirizzo email',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nome Bene',
'asset_requested' => 'Bene richiesto',
'asset_tag' => 'Etichetta Bene',
- 'assets_warrantee_alert' => 'C\'è :count bene con garanzia in scadenza nei prossimi :threshold giorni.|Ci sono :count beni con garanzia in scadenza nei prossimi :threshold giorni.',
+ 'assets_warrantee_alert' => 'C\'è :count bene con una garanzia in scadenza o che arriverà a fine vita tra :threshold giorni.|Ci sono :count beni con garanzie in scadenza o che arriveranno a fine vita tra :threshold giorni.',
'assigned_to' => 'Assegnato a',
+ 'eol' => 'EOL',
'best_regards' => 'Cordiali saluti,',
'canceled' => 'Annullato',
'checkin_date' => 'Data Restituzione',
@@ -58,6 +59,7 @@ return [
'days' => 'Giorni',
'expecting_checkin_date' => 'Data Restituzione Prevista',
'expires' => 'Scade',
+ 'terminates' => 'Terminates',
'following_accepted' => 'Il seguente è stato accettato',
'following_declined' => 'Il seguente è stato rifiutato',
'hello' => 'Salve',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Rapporto Inventario',
'item' => 'Articolo',
'item_checked_reminder' => 'Promemoria: attualmente hai :count elementi assegnati che non hai né accettato né rifiutato. Clicca sul link qui sotto per confermare la tua decisione.',
- 'license_expiring_alert' => 'Tra :threshold giorni sta per scadere :count licenza. |Tra :threshold giorni stanno per scadere :count licenze.',
+ 'license_expiring_alert' => 'C\'è :count licenza in scadenza tra :threshold giorni.|Ci sono :count licenze in scadenza tra :threshold giorni.',
'link_to_update_password' => 'Clicca sul seguente collegamento per aggiornare la tua password per :web :',
'login' => 'Accedi',
'login_first_admin' => 'Accedi alla nuova installazione di Snipe-IT utilizzando le seguenti credenziali:',
'low_inventory_alert' => 'C\'è :count elemento che è al di sotto del livello di scorta minima o lo sarà a breve. |Ci sono :count elementi che sono al di sotto del livello di scorta minima o lo saranno a breve.',
'min_QTY' => 'Quantità minima',
'name' => 'Nome',
- 'new_item_checked' => 'Ti è stato assegnato un nuovo Bene, di seguito i dettagli.',
- 'new_item_checked_with_acceptance' => 'Ti è stato assegnato un nuovo Bene per cui è richiesta la tua accettazione, seguono i dettagli.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'Ti è stato assegnato un nuovo articolo, seguono dettagli.|Ti sono stati assegnati :count articoli, seguono dettagli.',
+ 'new_item_checked_with_acceptance' => 'Ti è stato assegnato un nuovo articolo che richiede la tua accettazione, seguono dettagli.|Ti sono stati assegnati :count nuovi articoli che richiedono la tua accettazione, seguono dettagli.',
+ 'new_item_checked_location' => 'È stato assegnato un nuovo articolo alla sede :location, seguono dettagli.|Sono stati assegnati :count nuovi articoli alla sede :location, seguono dettagli.',
'recent_item_checked' => 'Recentemente ti è stato assegnato un Bene per cui è richiesta la tua accettazione, seguono i dettagli.',
'notes' => 'Note',
'password' => 'Password',
diff --git a/resources/lang/iu-NU/admin/custom_fields/general.php b/resources/lang/iu-NU/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/iu-NU/admin/custom_fields/general.php
+++ b/resources/lang/iu-NU/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/iu-NU/admin/depreciations/general.php b/resources/lang/iu-NU/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/iu-NU/admin/depreciations/general.php
+++ b/resources/lang/iu-NU/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/iu-NU/admin/hardware/form.php b/resources/lang/iu-NU/admin/hardware/form.php
index 8fbd0b4e87..dc4754e71a 100644
--- a/resources/lang/iu-NU/admin/hardware/form.php
+++ b/resources/lang/iu-NU/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/iu-NU/admin/hardware/general.php b/resources/lang/iu-NU/admin/hardware/general.php
index bc972da290..09282b9190 100644
--- a/resources/lang/iu-NU/admin/hardware/general.php
+++ b/resources/lang/iu-NU/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/iu-NU/admin/licenses/message.php b/resources/lang/iu-NU/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/iu-NU/admin/licenses/message.php
+++ b/resources/lang/iu-NU/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/iu-NU/admin/locations/message.php b/resources/lang/iu-NU/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/iu-NU/admin/locations/message.php
+++ b/resources/lang/iu-NU/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/iu-NU/admin/locations/table.php b/resources/lang/iu-NU/admin/locations/table.php
index 53176d8a4e..d7128b30f7 100644
--- a/resources/lang/iu-NU/admin/locations/table.php
+++ b/resources/lang/iu-NU/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/iu-NU/admin/models/table.php b/resources/lang/iu-NU/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/iu-NU/admin/models/table.php
+++ b/resources/lang/iu-NU/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/iu-NU/admin/users/general.php b/resources/lang/iu-NU/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/iu-NU/admin/users/general.php
+++ b/resources/lang/iu-NU/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/iu-NU/general.php b/resources/lang/iu-NU/general.php
index 1d501ee616..3c6738bbdc 100644
--- a/resources/lang/iu-NU/general.php
+++ b/resources/lang/iu-NU/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/iu-NU/mail.php b/resources/lang/iu-NU/mail.php
index 910c860e2c..70ee6ba42f 100644
--- a/resources/lang/iu-NU/mail.php
+++ b/resources/lang/iu-NU/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/ja-JP/admin/depreciations/general.php b/resources/lang/ja-JP/admin/depreciations/general.php
index b24d64b1af..16f27c783f 100644
--- a/resources/lang/ja-JP/admin/depreciations/general.php
+++ b/resources/lang/ja-JP/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => '資産の減価償却について',
- 'about_depreciations' => '定額法に基づいて資産の減価償却を設定することができます。',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => '償却資産',
'create' => '減価償却の作成',
'depreciation_name' => '減価償却名',
diff --git a/resources/lang/ja-JP/admin/hardware/form.php b/resources/lang/ja-JP/admin/hardware/form.php
index 30d880411a..a83becc5a7 100644
--- a/resources/lang/ja-JP/admin/hardware/form.php
+++ b/resources/lang/ja-JP/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'チェックアウト先へ移動',
'select_statustype' => 'ステータスタイプを選択',
'serial' => 'シリアル',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'ステータス',
'tag' => '資産タグ',
'update' => '資産アップデート',
diff --git a/resources/lang/ja-JP/admin/hardware/general.php b/resources/lang/ja-JP/admin/hardware/general.php
index a980434357..6ac741e2bf 100644
--- a/resources/lang/ja-JP/admin/hardware/general.php
+++ b/resources/lang/ja-JP/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => '要求済',
'not_requestable' => '要求可能ではありません',
'requestable_status_warning' => '要求可能な状態を変更しない',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => '資産を復元',
'pending' => 'ペンディング',
'undeployable' => '配備不可',
diff --git a/resources/lang/ja-JP/admin/licenses/message.php b/resources/lang/ja-JP/admin/licenses/message.php
index 8dbb137b6b..e4bee5c173 100644
--- a/resources/lang/ja-JP/admin/licenses/message.php
+++ b/resources/lang/ja-JP/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => '購入可能なライセンスシートが不足しています',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'ライセンスのチェックを入れる際に問題が発生しました。もう一度、やり直して下さい。',
- 'not_reassignable' => 'ライセンスを再割り当てできません',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'ライセンスのチェックを入れました。'
),
diff --git a/resources/lang/ja-JP/admin/locations/message.php b/resources/lang/ja-JP/admin/locations/message.php
index 77829fdf9a..caa8cecb3c 100644
--- a/resources/lang/ja-JP/admin/locations/message.php
+++ b/resources/lang/ja-JP/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'ロケーションが存在しません。',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'この設置場所は1人以上の利用者に関連付けされているため、削除できません。設置場所の関連付けを削除し、もう一度試して下さい。 ',
'assoc_child_loc' => 'この設置場所は、少なくとも一つの配下の設置場所があります。この設置場所を参照しないよう更新して下さい。 ',
'assigned_assets' => '割り当て済みアセット',
'current_location' => '現在の場所',
'open_map' => ':map_provider_icon マップで開く',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ja-JP/admin/locations/table.php b/resources/lang/ja-JP/admin/locations/table.php
index 371179dd8c..af4e9fc762 100644
--- a/resources/lang/ja-JP/admin/locations/table.php
+++ b/resources/lang/ja-JP/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => '所在地を作成',
'update' => '所在地を更新',
'print_assigned' => '割り当て先を印刷',
- 'print_all_assigned' => '割り当て先をすべて印刷',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'ロケーション名',
'address' => '住所',
'address2' => '住所2',
diff --git a/resources/lang/ja-JP/admin/models/table.php b/resources/lang/ja-JP/admin/models/table.php
index a7ad496710..579e8500e2 100644
--- a/resources/lang/ja-JP/admin/models/table.php
+++ b/resources/lang/ja-JP/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => '資産モデル',
'update' => '資産モデルを更新',
'view' => '資産モデルを表示',
- 'update' => '資産モデルを更新',
- 'clone' => '資産型番を複製',
- 'edit' => '資産型番を編集',
+ 'clone' => '資産型番を複製',
+ 'edit' => '資産型番を編集',
);
diff --git a/resources/lang/ja-JP/admin/users/general.php b/resources/lang/ja-JP/admin/users/general.php
index 2753156698..c87790ce25 100644
--- a/resources/lang/ja-JP/admin/users/general.php
+++ b/resources/lang/ja-JP/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => '該当するライセンスを自動で割り当てる場合の、このユーザーを含める',
'auto_assign_help' => 'このユーザーのライセンスの自動割り当てをスキップ',
'software_user' => 'ソフトウェアは :name にチェックアウトしました。',
- 'send_email_help' => '資格情報を送信するには、このユーザーのメールアドレスを入力する必要があります。メール送信資格情報は、ユーザー作成時にのみ行うことができます。 パスワードは一方向のハッシュに保存され、保存されると取得できません。',
'view_user' => '利用者 :name を表示',
'usercsv' => 'CSVファイル',
'two_factor_admin_optin_help' => '現在の管理者設定では、2段階認証は任意です。 ',
diff --git a/resources/lang/ja-JP/general.php b/resources/lang/ja-JP/general.php
index 086ad8769f..0990a08425 100644
--- a/resources/lang/ja-JP/general.php
+++ b/resources/lang/ja-JP/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'インポート',
'import_this_file' => 'フィールドをマップし、このファイルを処理します',
'importing' => 'インポートしています',
- 'importing_help' => 'アセット、アクセサリ、ライセンス、コンポーネント、消耗品、およびユーザーをCSVファイルからインポートできます。
CSVは、ドキュメント のサンプルCSVに一致するヘッダーでカンマ区切りでフォーマットする必要があります。',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'インポート履歴',
'asset_maintenance' => '資産管理',
'asset_maintenance_report' => '資産管理レポート',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'ライセンスの合計',
'total_accessories' => '合計付属品数',
'total_consumables' => '合計消耗品数',
+ 'total_cost' => 'Total Cost',
'type' => 'タイプ',
'undeployable' => '配備不可',
'unknown_admin' => '不明な管理者',
'unknown_user' => '不明なユーザー',
+ 'unit_cost' => 'Unit Cost',
'username' => 'ユーザー名',
'update' => '更新',
'updating_item' => ':item を更新中',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => '監査期日を超過',
'accept' => ':assetを承認',
'i_accept' => '承認',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => '却下',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => '承認/拒否',
'sign_tos' => '利用規約に同意された方は、ご署名ください。',
'clear_signature' => '署名をクリア',
@@ -394,6 +398,7 @@ return [
'permissions' => '権限',
'managed_ldap' => '(LDAP経由で管理されています)',
'export' => 'エクスポート',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP同期',
'ldap_user_sync' => 'LDAPユーザー同期',
'synchronize' => '同期',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => '既存の値を更新しますか?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'アセットタグの自動インクリメントの生成は無効になっているため、すべての行に「アセットタグ」列が追加される必要があります。',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => '注: アセットタグの自動インクリメントの生成が有効になっているため、「アセットタグ」が生成されていない行に対してアセットが作成されます。 「アセットタグ」が入力されている行は、入力された情報と共に更新されます。',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' 新しいユーザーにウェルカムメールを送信する',
+ 'send_welcome_email_help' => '有効なメールアドレスを持つユーザーかつ、有効としてマークされているユーザーのみが、パスワードをリセットできるようにウェルカムメールを受信します。',
+ 'send_welcome_email_import_help' => '有効なメールアドレスを持つ新規ユーザーかつ、インポートファイル上で有効としてマークされているユーザーのみが、パスワードをリセットできるようにウェルカムメールを受信します。',
'send_email' => 'メール送信',
'call' => '電話番号',
'back_before_importing' => 'インポートする前にバックアップしますか?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'チェックアウト対象の会社と資産会社が一致しません',
+ 'error_user_company_multiple' => '1つ以上のチェックアウト対象会社と資産会社が一致しません',
'error_user_company_accept_view' => 'あなたに割り当てられた資産は別の会社に属しているので、受け入れたり拒否したりすることはできません。管理者に確認してください。',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'すでにチェックアウトされているため、選択した資産から次のものが削除されました',
'importer' => [
'checked_out_to_fullname' => 'チェックアウトしました: フルネーム',
'checked_out_to_first_name' => 'チェックアウトしました: 名前',
@@ -585,6 +595,8 @@ return [
'components' => ':count コンポーネント',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => '詳細',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'このアイテムは関連付けられた画像を持っておらず、代わりに属するモデルまたはカテゴリから継承します。 このアイテムに特定の画像を使用したい場合は、以下から新しい画像をアップロードできます。',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'パスワードを設定',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/ja-JP/mail.php b/resources/lang/ja-JP/mail.php
index e5f04963e8..d66e71c32c 100644
--- a/resources/lang/ja-JP/mail.php
+++ b/resources/lang/ja-JP/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => '付属品をチェックインしました',
- 'Accessory_Checkout_Notification' => '付属品をチェックアウトしました',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'アクセサリーのチェックインを承認してください。',
'Confirm_Asset_Checkin' => '資産チェックインを承認してください。',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'チェックアウトされた資産は:date にチェックインされる予定です',
'Expected_Checkin_Notification' => 'リマインダー: :name のチェックイン期限が近づいています',
'Expected_Checkin_Report' => '予想される資産チェックインレポート',
- 'Expiring_Assets_Report' => '保証切れ資産レポート',
- 'Expiring_Licenses_Report' => '有効期限切れのライセンスレポート',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'アイテムリクエストがキャンセルされました。',
'Item_Requested' => 'アイテムをリクエストしました',
'License_Checkin_Notification' => 'ライセンスをチェックインしました',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => '在庫減レポート',
'a_user_canceled' => 'ユーザーがアイテムリクエストをキャンセルしました。',
'a_user_requested' => 'ユーザーがアイテムをリクエストしています',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'ユーザーがアイテムを承認しました',
'acceptance_asset_declined' => 'ユーザーがアイテムを拒否しました',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => '資産名',
'asset_requested' => '資産リクエスト',
'asset_tag' => '資産タグ',
- 'assets_warrantee_alert' => ':threshold 日以内に:count 個の資産に保証期間が切れます。|:threshold 日以内に :count 個の資産に保証期間が切れます。',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => '割り当て先',
+ 'eol' => 'EOL',
'best_regards' => '敬具',
'canceled' => 'キャンセル済',
'checkin_date' => 'チェックイン日',
@@ -58,6 +59,7 @@ return [
'days' => '日数',
'expecting_checkin_date' => '希望するチェックイン日',
'expires' => '保証失効日',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'こんにちは。',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'インベントリレポート',
'item' => '品目',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => ':threshold 日後に:count ライセンスが失効します。',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => '次のリンクをクリックして、パスワードを更新してください。 :web password:',
'login' => 'ログイン',
'login_first_admin' => '以下の新しいログイン情報を使用して、Snipe-ITにログインします。',
'low_inventory_alert' => '最小在庫を下回っているか、すぐに少なくなる :count のアイテムがあります。',
'min_QTY' => '分数',
'name' => '名前',
- 'new_item_checked' => 'あなたの名前で新しいアイテムがチェックアウトされました。詳細は以下の通りです。',
- 'new_item_checked_with_acceptance' => 'あなたの名前で新しいアイテムがチェックアウトされました。承認が必要です。詳細は以下の通りです。',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'あなたの名前でチェックアウトされたアイテムがあります。承認が必要です。詳細は以下の通りです。',
'notes' => '備考',
'password' => 'パスワード',
diff --git a/resources/lang/ka-GE/admin/custom_fields/general.php b/resources/lang/ka-GE/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/ka-GE/admin/custom_fields/general.php
+++ b/resources/lang/ka-GE/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/ka-GE/admin/depreciations/general.php b/resources/lang/ka-GE/admin/depreciations/general.php
index 3d2bf70e96..4b01228fce 100644
--- a/resources/lang/ka-GE/admin/depreciations/general.php
+++ b/resources/lang/ka-GE/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/ka-GE/admin/hardware/form.php b/resources/lang/ka-GE/admin/hardware/form.php
index 3fef8998d7..800cc18457 100644
--- a/resources/lang/ka-GE/admin/hardware/form.php
+++ b/resources/lang/ka-GE/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'გადასვლა მიმღებთან',
'select_statustype' => 'აირჩიეთ სტატუსის ტიპი',
'serial' => 'სერიული ნომერი',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'სტატუსი',
'tag' => 'ინვენტარის ნომერი',
'update' => 'ინვენტარის განახლება',
diff --git a/resources/lang/ka-GE/admin/hardware/general.php b/resources/lang/ka-GE/admin/hardware/general.php
index 25001d0948..7274e2f3d9 100644
--- a/resources/lang/ka-GE/admin/hardware/general.php
+++ b/resources/lang/ka-GE/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'მოთხოვნილია',
'not_requestable' => 'არ არის მოთხოვნადი',
'requestable_status_warning' => 'არ შეცვალოთ მოთხოვნადი სტატუსი',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'ინვენტარის აღდგენა',
'pending' => 'მოლოდინშია',
'undeployable' => 'არ არის მზად გასაცემად',
diff --git a/resources/lang/ka-GE/admin/licenses/message.php b/resources/lang/ka-GE/admin/licenses/message.php
index 797fd8bcbf..b01671e737 100644
--- a/resources/lang/ka-GE/admin/licenses/message.php
+++ b/resources/lang/ka-GE/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/ka-GE/admin/locations/message.php b/resources/lang/ka-GE/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/ka-GE/admin/locations/message.php
+++ b/resources/lang/ka-GE/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ka-GE/admin/locations/table.php b/resources/lang/ka-GE/admin/locations/table.php
index d7d77e2be4..68381d330e 100644
--- a/resources/lang/ka-GE/admin/locations/table.php
+++ b/resources/lang/ka-GE/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'მისამართის მეორე ხაზი',
diff --git a/resources/lang/ka-GE/admin/models/table.php b/resources/lang/ka-GE/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/ka-GE/admin/models/table.php
+++ b/resources/lang/ka-GE/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/ka-GE/admin/users/general.php b/resources/lang/ka-GE/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/ka-GE/admin/users/general.php
+++ b/resources/lang/ka-GE/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/ka-GE/general.php b/resources/lang/ka-GE/general.php
index 71c07effbc..d58fcb0187 100644
--- a/resources/lang/ka-GE/general.php
+++ b/resources/lang/ka-GE/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'იმპორტი',
'import_this_file' => 'მოარგეთ ველები და დაამუშავეთ ეს ფაილი',
'importing' => 'იმპორტირება',
- 'importing_help' => 'შეგიძლიათ მოახდინოთ ინვენტარის, აქსესუარების, ლიცენზიების, კომპონენტების, სახარჯი მასალებისა და მომხმარებლების იმპორტი CSV ფაილის საშუალებით.
CSV ფაილი უნდა იყოს "comma-delimited" ტიპის და "ჰედერები" უნდა შეესაბამებოდეს დოკუმენტაციაში მოცემულ ნიმუშებს.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'იმპორტის ისტორია',
'asset_maintenance' => 'ინვენტარის მომსახურება',
'asset_maintenance_report' => 'ინვენტარის მომსახურების ანგარიში',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'სულ ლიცენზიები',
'total_accessories' => 'სულ აქსესუარები',
'total_consumables' => 'სულ სახარჯი მასალა',
+ 'total_cost' => 'Total Cost',
'type' => 'ტიპი',
'undeployable' => 'დაზიანებული',
'unknown_admin' => 'უცნობი ადმინისტრატორი',
'unknown_user' => 'უცნობი მომხმარებელი',
+ 'unit_cost' => 'Unit Cost',
'username' => 'მომხმარებლის სახელი',
'update' => 'განახლება',
'updating_item' => ':item განახლება',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'გადასამოწმებელი ვადა გადაცილებულია',
'accept' => 'მიიღე :asset',
'i_accept' => 'ვეთანხმები',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'უარვყოფ',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'დამოწმება/უარყოფა',
'sign_tos' => 'გთხოვთ მოაწეროთ ხელი ქვემოთ, რათა დაადასტუროთ, რომ ეთანხმებით მომსახურების პირობებს:',
'clear_signature' => 'ხელმოწერის წაშლა',
@@ -394,6 +398,7 @@ return [
'permissions' => 'ნებართვები',
'managed_ldap' => '(მართვადი LDAP-ის მეშვეობით)',
'export' => 'ექსპორტი',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP სინქრონიზაცია',
'ldap_user_sync' => 'LDAP მომხმარებლების სინქრონიზაცია',
'synchronize' => 'სინქრონიზაცია',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'განვაახლოთ არსებული მნიშვნელობები?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'ინვენტარის ტეგების ავტომატური გენერაცია გათიშულია, ამიტომ ყველა მწკრივში სავალდებულოა "ინვენტარის ტეგის" ველის შევსება.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'შენიშვნა: ინვენტარის ტეგების ავტომატური გენერაცია ჩართულია, ამიტომ იმ მწკრივებისთვის, სადაც "ინვენტარის ტეგი" არ არის მითითებული, შეიქმნება ახალი ინვენტარი. დანარჩენი მწკრივები განახლდება მითითებული ინფორმაციით.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'ელფოსტის გაგზავნა',
'call' => 'დარეკეთ ნომერზე',
'back_before_importing' => 'შექმენით რეზერვი იმპორტამდე?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item შენიშვნები',
'item_name_var' => ':item დასახელება',
'error_user_company' => 'მომხმარებლის კომპანიისა და ინვენტარის კომპანიის შორის არ არის შესაბამისობა',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'ინვენტარი, რომელიც მოგენიჭათ, ეკუთვნის სხვა კომპანიას, რის გამოც ვერ დაადასტურებთ ან უარყოფთ მიღებას. გთხოვთ, დაუკავშირდეთ თქვენს მენეჯერს.',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'გაცემულია: სრული სახელი',
'checked_out_to_first_name' => 'გაცემულია: სახელი',
@@ -585,6 +595,8 @@ return [
'components' => ':count კომპონენტი|:count კომპონენტი',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'დამატებითი ინფორმაცია',
'quickscan_bulk_help' => 'ამ ყუთის მონიშვნა შეანახავს ახალ მდებარეობას ინვენტარის ჩანაწერში. თუ არ მონიშნავთ, მდებარეობა მხოლოდ აუდიტის ჟურნალში აღინიშნება. გაითვალისწინეთ, რომ თუ ინვენტარი გაცემულია, იგი არ შეცვლის იმ პირის, ინვენტარის ან მდებარეობის მონაცემებს, ვისთანაც ის გაცემულია.',
'whoops' => 'უუპს!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => '
',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'საიტის ნაგულისხმევი',
'default_blue' => 'ნაგულისხმევი ლურჯი',
'blue_dark' => 'ლურჯი (მუქი რეჟიმი)',
- 'green' => 'მწვანე მუქი',
+ 'green' => 'Green',
'green_dark' => 'მწვანე (მუქი რეჟიმი)',
- 'red' => 'წითელი მუქი',
+ 'red' => 'Red',
'red_dark' => 'წითელი (მუქი რეჟიმი)',
- 'orange' => 'ნარინჯისფერი მუქი',
+ 'orange' => 'Orange',
'orange_dark' => 'ნარინჯისფერი (მუქი რეჟიმი)',
'black' => 'შავი',
'black_dark' => 'შავი (მუქი რეჟიმი)',
diff --git a/resources/lang/ka-GE/mail.php b/resources/lang/ka-GE/mail.php
index de2629359c..fa03d074c6 100644
--- a/resources/lang/ka-GE/mail.php
+++ b/resources/lang/ka-GE/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'აქსესუარი დაბრუნდა',
- 'Accessory_Checkout_Notification' => 'აქსესუარი გაცემულია',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'აქსესუარის დაბრუნების დადასტურება',
'Confirm_Asset_Checkin' => 'ინვენტარის დაბრუნების დადასტურება',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'თქვენზე გაცემული ინვენტარი უნდა დაბრუნდეს :date',
'Expected_Checkin_Notification' => 'შეხსენება: მოახლოვდა დაბრუნების ვადა – :name',
'Expected_Checkin_Report' => 'ინვენტარის დაბრუნების მოლოდინის ანგარიში',
- 'Expiring_Assets_Report' => 'მოწურვადი ინვენტარის ანგარიში',
- 'Expiring_Licenses_Report' => 'მოწურვადი ლიცენზიების ანგარიში',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'საქონლის მოთხოვნა გაუქმდა',
'Item_Requested' => 'საქონელი მოთხოვნილია',
'License_Checkin_Notification' => 'ლიცენზია დაბრუნდა',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'დაბალი მარაგის ანგარიში',
'a_user_canceled' => 'მომხმარებელმა გააუქმა საქონლის მოთხოვნა ვებგვერდზე',
'a_user_requested' => 'მომხმარებელმა მოითხოვა საქონელი ვებგვერდზე',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'მომხმარებელმა დაადასტურა ინვენტარის მიღება',
'acceptance_asset_declined' => 'მომხმარებელმა უარყო ინვენტარის მიღება',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'ინვენტარის დასახელება',
'asset_requested' => 'მოთხოვნილია ინვენტარი',
'asset_tag' => 'ინვენტარის ნომერი',
- 'assets_warrantee_alert' => 'არსებობს :count ინვენტარი, რომლის გარანტია იწურება მომდევნო :threshold დღეში.|არსებობს :count ინვენტარი, რომელთა გარანტიაც იწურება მომდევნო :threshold დღეში.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'მინიჭებულია',
+ 'eol' => 'მოქმედების ვადის ამოწურვა',
'best_regards' => 'პატივისცემით,',
'canceled' => 'გაუქმებულია',
'checkin_date' => 'დაბრუნების თარიღი',
@@ -58,6 +59,7 @@ return [
'days' => 'დღე',
'expecting_checkin_date' => 'მოსალოდნელი დაბრუნების თარიღი',
'expires' => 'ვადა იწურება',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'მოგესალმებით',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'ინვენტარის ანგარიში',
'item' => 'ნივთი',
'item_checked_reminder' => 'შეგახსენებთ, რომ თქვენზე გაცემულია :count ერთეული, რომლის მიღება ან უარყოფაც ჯერ არ დაგიდასტურებიათ. გთხოვთ, დაადასტურეთ თქვენი გადაწყვეტილება ქვემოთ მოცემული ბმულით.',
- 'license_expiring_alert' => 'არსებობს :count ლიცენზია, რომლის ვადა იწურება მომდევნო :threshold დღეში.|არსებობს :count ლიცენზია, რომელთა ვადა იწურება მომდევნო :threshold დღეში.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'დააჭირეთ შემდეგ ბმულს თქვენი :web პაროლის გასანახლებლად:',
'login' => 'შესვლა',
'login_first_admin' => 'ახალი "Snipe-IT" ინსტალაციის გასაგრძელებლად, გთხოვთ შეიყვანოთ ქვემოთ მოცემული მონაცემებით:',
'low_inventory_alert' => 'არსებობს :count ერთეული ნივთი, რომელიც მინიმალურ მარაგს ქვემოთაა ან მალე იქნება.',
'min_QTY' => 'მინ. რაოდენობა',
'name' => 'სახელი',
- 'new_item_checked' => 'თქვენს სახელზე გაიცა ახალი ინვენტარი, იხილეთ დეტალები ქვემოთ.',
- 'new_item_checked_with_acceptance' => 'თქვენს სახელზე გაიცვა ახალი ინვენტარი, რომლის დადასტურებაც აუცილებელია, იხილეთ დეტალები ქვემოთ.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'ახლახანს თქვენს სახელზე გაიცვა ინვენტარი, რომლის დადასტურებაც აუცილებელია, იხილეთ დეტალები ქვემოთ.',
'notes' => 'შენიშვნები',
'password' => 'პაროლი',
diff --git a/resources/lang/km-KH/admin/custom_fields/general.php b/resources/lang/km-KH/admin/custom_fields/general.php
index 4fd60eea01..82dc79827c 100644
--- a/resources/lang/km-KH/admin/custom_fields/general.php
+++ b/resources/lang/km-KH/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'គ្រប់គ្រង',
'field' => 'វាល',
'about_fieldsets_title' => 'អំពី Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets អនុញ្ញាតឱ្យអ្នកបង្កើតក្រុមនៃវាលផ្ទាល់ខ្លួនដែលត្រូវបានប្រើឡើងវិញជាញឹកញាប់សម្រាប់ប្រភេទគំរូទ្រព្យសកម្មជាក់លាក់។',
'custom_format' => 'ទម្រង់ Regex ផ្ទាល់ខ្លួន...',
'encrypt_field' => 'អ៊ិនគ្រីបតម្លៃនៃវាលនេះនៅក្នុងមូលដ្ឋានទិន្នន័យ',
'encrypt_field_help' => 'ការព្រមាន៖ ការអ៊ិនគ្រីបវាលធ្វើឱ្យវាមិនអាចស្វែងរកបាន។',
diff --git a/resources/lang/km-KH/admin/depreciations/general.php b/resources/lang/km-KH/admin/depreciations/general.php
index 6801d58c5e..3435b5c07e 100644
--- a/resources/lang/km-KH/admin/depreciations/general.php
+++ b/resources/lang/km-KH/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'អំពីការរំលោះទ្រព្យសកម្ម',
- 'about_depreciations' => 'អ្នកអាចកំណត់ការរំលោះទ្រព្យសកម្ម ដើម្បីរំលោះទ្រព្យសកម្មដោយផ្អែកលើការរំលោះបន្ទាត់ត្រង់។',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'ការរំលោះទ្រព្យសកម្ម',
'create' => 'បង្កើតការរំលោះ',
'depreciation_name' => 'ឈ្មោះរំលោះ',
diff --git a/resources/lang/km-KH/admin/hardware/form.php b/resources/lang/km-KH/admin/hardware/form.php
index 5d63f5f6bd..fc15df1da7 100644
--- a/resources/lang/km-KH/admin/hardware/form.php
+++ b/resources/lang/km-KH/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'ជ្រើសរើសប្រភេទស្ថានភាព',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'ស្ថានភាព',
'tag' => 'ទ្រព្យសម្បត្តិ',
'update' => 'ធ្វើបច្ចុប្បន្នភាព Asset',
diff --git a/resources/lang/km-KH/admin/hardware/general.php b/resources/lang/km-KH/admin/hardware/general.php
index 558c8304cc..0dde106143 100644
--- a/resources/lang/km-KH/admin/hardware/general.php
+++ b/resources/lang/km-KH/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'បានស្នើសុំ',
'not_requestable' => 'មិនអាចស្នើសុំបាន។',
'requestable_status_warning' => 'កុំផ្លាស់ប្តូរស្ថានភាពដែលអាចស្នើសុំបាន។',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'ស្តារទ្រព្យសម្បត្តិ',
'pending' => 'កំពុងរង់ចាំ',
'undeployable' => 'មិនអាចប្រើបាន',
diff --git a/resources/lang/km-KH/admin/licenses/message.php b/resources/lang/km-KH/admin/licenses/message.php
index cb7d2e1c10..7c600fcf98 100644
--- a/resources/lang/km-KH/admin/licenses/message.php
+++ b/resources/lang/km-KH/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/km-KH/admin/locations/message.php b/resources/lang/km-KH/admin/locations/message.php
index 93006c7893..36b43673b2 100644
--- a/resources/lang/km-KH/admin/locations/message.php
+++ b/resources/lang/km-KH/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'ទីតាំងមិនមានទេ។',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'បច្ចុប្បន្នទីតាំងនេះត្រូវបានភ្ជាប់ជាមួយទ្រព្យសកម្មយ៉ាងហោចណាស់មួយ ហើយមិនអាចលុបបានទេ។ សូមអាប់ដេតទ្រព្យសកម្មរបស់អ្នក ដើម្បីកុំឱ្យយោងទីតាំងនេះតទៅទៀត ហើយព្យាយាមម្តងទៀត។ ',
'assoc_child_loc' => 'បច្ចុប្បន្នទីតាំងនេះគឺជាមេនៃទីតាំងកូនយ៉ាងហោចណាស់មួយ ហើយមិនអាចលុបបានទេ។ សូមធ្វើបច្ចុប្បន្នភាពទីតាំងរបស់អ្នកដើម្បីលែងយោងទីតាំងនេះទៀតហើយព្យាយាមម្ដងទៀត។ ',
'assigned_assets' => 'ទ្រព្យសកម្មដែលបានចាត់តាំង',
'current_location' => 'ទីតាំងបច្ចុប្បន្',
'open_map' => 'បើកនៅក្នុង៖map_provider_icon ផែនទី',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/km-KH/admin/locations/table.php b/resources/lang/km-KH/admin/locations/table.php
index 26582e581a..e92953d48a 100644
--- a/resources/lang/km-KH/admin/locations/table.php
+++ b/resources/lang/km-KH/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'បង្កើតទីតាំង',
'update' => 'ធ្វើបច្ចុប្បន្នភាពទីតាំង',
'print_assigned' => 'បោះពុម្ពដែលបានកំណត់',
- 'print_all_assigned' => 'បោះពុម្ពដែលបានចាត់តាំងទាំងអស់។',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'ឈ្មោះទីតាំង',
'address' => 'អាស័យដ្ឋាន',
'address2' => 'អាស័យដ្ឋាន ខ្សែទី 2',
diff --git a/resources/lang/km-KH/admin/models/table.php b/resources/lang/km-KH/admin/models/table.php
index b4e4da92bd..31934fb7db 100644
--- a/resources/lang/km-KH/admin/models/table.php
+++ b/resources/lang/km-KH/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'គំរូទ្រព្យសកម្ម',
'update' => 'ធ្វើបច្ចុប្បន្នភាពគំរូទ្រព្យសកម្ម',
'view' => 'មើលគំរូទ្រព្យសកម្ម',
- 'update' => 'ធ្វើបច្ចុប្បន្នភាពគំរូទ្រព្យសកម្ម',
- 'clone' => 'ម៉ូដែលក្លូន',
- 'edit' => 'កែសម្រួលគំរូ',
+ 'clone' => 'ម៉ូដែលក្លូន',
+ 'edit' => 'កែសម្រួលគំរូ',
);
diff --git a/resources/lang/km-KH/admin/users/general.php b/resources/lang/km-KH/admin/users/general.php
index 2beb742189..552996d2e9 100644
--- a/resources/lang/km-KH/admin/users/general.php
+++ b/resources/lang/km-KH/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'រួមបញ្ចូលអ្នកប្រើប្រាស់នេះនៅពេលផ្តល់អាជ្ញាប័ណ្ណដែលមានសិទ្ធិដោយស្វ័យប្រវត្តិ',
'auto_assign_help' => 'រំលងអ្នកប្រើប្រាស់នេះក្នុងការផ្តល់អាជ្ញាប័ណ្ណដោយស្វ័យប្រវត្តិ',
'software_user' => 'កម្មវិធីដែលបានប្រគល់ទៅកាន់៖ ឈ្មោះ',
- 'send_email_help' => 'អ្នកត្រូវតែផ្តល់អាសយដ្ឋានអ៊ីមែលសម្រាប់អ្នកប្រើនេះដើម្បីផ្ញើព័ត៌មានសម្ងាត់ឱ្យពួកគេ។ ការផ្ញើអត្តសញ្ញាណប័ណ្ណតាមអ៊ីមែលអាចធ្វើបានតែលើការបង្កើតអ្នកប្រើប្រាស់ប៉ុណ្ណោះ។ ពាក្យសម្ងាត់ត្រូវបានរក្សាទុកជាសញ្ញាមួយផ្លូវ ហើយមិនអាចទាញយកវិញបានទេពេលរក្សាទុក។',
'view_user' => 'មើលអ្នកប្រើប្រាស់៖ ឈ្មោះ',
'usercsv' => 'ឯកសារ CSV',
'two_factor_admin_optin_help' => 'ការកំណត់អ្នកគ្រប់គ្រងបច្ចុប្បន្នរបស់អ្នកអនុញ្ញាតឱ្យមានការជ្រើសរើសនៃការផ្ទៀងផ្ទាត់ពីរកត្តា។ ',
diff --git a/resources/lang/km-KH/general.php b/resources/lang/km-KH/general.php
index ad26db0591..f8459c43b4 100644
--- a/resources/lang/km-KH/general.php
+++ b/resources/lang/km-KH/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'នាំចូល',
'import_this_file' => 'ផែនទីវាល និងដំណើរការឯកសារនេះ។',
'importing' => 'ការនាំចូល',
- 'importing_help' => 'អ្នកអាចនាំចូលទ្រព្យសម្បត្តិ គ្រឿងបន្លាស់ អាជ្ញាប័ណ្ណ សមាសធាតុ សម្ភារៈប្រើប្រាស់ និងអ្នកប្រើប្រាស់តាមរយៈឯកសារ CSV ។
CSV គួរតែត្រូវបានកំណត់ដោយសញ្ញាក្បៀស និងធ្វើទ្រង់ទ្រាយជាមួយបឋមកថាដែលត្រូវគ្នានឹងធាតុនៅក្នុង គំរូ CSVs ក្នុងឯកសារ។',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'ប្រវត្តិនាំចូល',
'asset_maintenance' => 'ការថែរក្សាទ្រព្យសម្បត្តិ',
'asset_maintenance_report' => 'របាយការណ៍ថែទាំទ្រព្យសកម្',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'អាជ្ញាប័ណ្ណសរុប',
'total_accessories' => 'គ្រឿងបន្ថែមសរុប',
'total_consumables' => 'សម្ភារៈប្រើប្រាស់សរុប',
+ 'total_cost' => 'Total Cost',
'type' => 'ប្រភេទ',
'undeployable' => 'មិនអាចប្រើប្រាស់បាន',
'unknown_admin' => 'មិនស្គាល់ Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'ឈ្មោះអ្នកប្រើប្រាស់',
'update' => 'ធ្វើបច្ចុប្បន្នភាព',
'updating_item' => 'ការធ្វើបច្ចុប្បន្នភាព៖ ធាតុ',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'ហួសកាលកំណត់សម្រាប់សវនកម្ម',
'accept' => 'ទទួលយក៖ ទ្រព្យសម្បត្តិ',
'i_accept' => 'ខ្ញុំទទួលយក',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'ខ្ញុំបដិសេធ',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'យល់ព្រម/បដិសេធ',
'sign_tos' => 'ចុះហត្ថលេខាខាងក្រោមដើម្បីបង្ហាញថាអ្នកយល់ព្រមនឹងលក្ខខណ្ឌនៃសេវាកម្ម៖',
'clear_signature' => 'ជម្រះហត្ថលេខា',
@@ -394,6 +398,7 @@ return [
'permissions' => 'ការអនុញ្ញាត',
'managed_ldap' => '(គ្រប់គ្រងតាមរយៈ LDAP)',
'export' => 'នាំចេញ',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP សមកាលកម្ម',
'ldap_user_sync' => 'សមកាលកម្មអ្នកប្រើប្រាស់ LDAP',
'synchronize' => 'ធ្វើសមកាលកម្ម',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'ធ្វើបច្ចុប្បន្នភាពតម្លៃដែលមានស្រាប់?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'ការបង្កើតស្លាកទ្រព្យសម្បត្តិដែលបង្កើនដោយស្វ័យប្រវត្តិត្រូវបានបិទ ដូច្នេះជួរទាំងអស់ត្រូវតែមានជួរឈរ "ស្លាកទ្រព្យសម្បត្តិ" លេចឡើង។',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'ចំណាំ៖ ការបង្កើតស្លាកទ្រព្យសម្បត្តិដែលបង្កើនដោយស្វ័យប្រវត្តិត្រូវបានបើក ដូច្នេះទ្រព្យសកម្មនឹងត្រូវបានបង្កើតសម្រាប់ជួរដែលមិនមាន "ស្លាកទ្រព្យសកម្ម" លេចឡើង។ ជួរដេកដែលមាន "ស្លាកទ្រព្យសកម្ម" ដែលបានបង្ហាញនឹងត្រូវបានធ្វើបច្ចុប្បន្នភាពជាមួយនឹងព័ត៌មានដែលបានផ្តល់។',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'ផ្ញើអ៊ីមែល',
'call' => 'ហៅទៅលេខ',
'back_before_importing' => 'បម្រុងទុកមុនពេលនាំចូល?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ': ចំណាំធាតុ',
'item_name_var' => '៖ ឈ្មោះធាតុ',
'error_user_company' => 'ក្រុមហ៊ុនគោលដៅនៃការចេញយក និងក្រុមហ៊ុនដែលកាន់កាប់ទ្រព្យសម្បត្តិមិនត្រូវគ្នា',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'ទ្រព្យសម្បត្តិដែលប្រគល់ឱ្យអ្នកជាកម្មសិទ្ធិរបស់ក្រុមហ៊ុនផ្សេង ដូច្នេះអ្នកមិនអាចទទួលយក ឬបដិសេធបានទេ សូមពិនិត្យជាមួយអ្នកគ្រប់គ្រងរបស់អ្នក',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'បានចេញយកទៅកាន់៖ ឈ្មោះពេញ',
'checked_out_to_first_name' => 'បានចេញយកទៅកាន់៖ នាមខ្លួន',
@@ -585,6 +595,8 @@ return [
'components' => ':រាប់សមាសធាតុ|:រាប់សមាសធាតុច្រើន',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'ព័ត៍មានបន្ថែម',
'quickscan_bulk_help' => 'ត្រួតពិនិត្យប្រអប់នេះនឹងកែសម្រួលកំណត់ត្រាទ្រព្យសម្បត្តិដើម្បីបង្ហាញទីតាំងថ្មីនេះ។ ប្រសិនបើមិនបានត្រួតពិនិត្យប្រអប់នេះ វានឹងត្រឹមតែចុះកំណត់ត្រាទីតាំងក្នុងកំណត់ហេតុសវនកម្មប៉ុណ្ណោះ។ សូមចំណាំថា បើទ្រព្យសម្បត្តិនេះត្រូវបានបញ្ចេញប្រើ វានឹងមិនបម្លែងទីតាំងរបស់បុគ្គល ទ្រព្យសម្បត្តិ ឬទីតាំងដែលវាត្រូវបានបញ្ចេញប្រើនោះទេ។',
'whoops' => 'អូយ!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/km-KH/mail.php b/resources/lang/km-KH/mail.php
index 154ec0b47f..735008f641 100644
--- a/resources/lang/km-KH/mail.php
+++ b/resources/lang/km-KH/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'គ្រឿងបន្លាស់ បាន checked in',
- 'Accessory_Checkout_Notification' => 'គ្រឿងបន្លាស់ បាន checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'ការបញ្ជាក់ការពិនិត្យមើលគ្រឿងបន្លាស់',
'Confirm_Asset_Checkin' => 'ការបញ្ជាក់ការពិនិត្យមើលទ្រព្យសម្បត្តិ',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'ទ្រព្យសកម្មដែលបាន checked out សម្រាប់អ្នកគឺត្រូវ checked in មកវិញនៅថ្ងៃ : date',
'Expected_Checkin_Notification' => 'រំលឹក៖ ពេលវេលា checkin ឈ្មោះជិតមកដល់ហើយ។',
'Expected_Checkin_Report' => 'របាយការណ៍ checkin ទ្រព្យសម្បត្តិដែលរំពឹងទុក',
- 'Expiring_Assets_Report' => 'របាយការណ៍ទ្រព្យសកម្មផុតកំណត់។',
- 'Expiring_Licenses_Report' => 'របាយការណ៍អាជ្ញាប័ណ្ណផុតកំណត់។',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'សំណើធាតុត្រូវបានលុបចោល',
'Item_Requested' => 'ធាតុដែលបានស្នើសុំ',
'License_Checkin_Notification' => 'អាជ្ញាប័ណ្ណ checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'របាយការណ៍សារពើភ័ណ្ឌទាប',
'a_user_canceled' => 'អ្នកប្រើបានលុបចោលសំណើធាតុមួយនៅលើគេហទំព័រ',
'a_user_requested' => 'អ្នកប្រើប្រាស់បានស្នើសុំធាតុនៅលើគេហទំព័រ',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'អ្នកប្រើប្រាស់បានទទួលយកធាតុមួយ។',
'acceptance_asset_declined' => 'អ្នកប្រើប្រាស់បានបដិសេធធាតុមួយ។',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'ឈ្មោះទ្រព្យសម្បត្តិ',
'asset_requested' => 'បានស្នើសុំទ្រព្យសកម្ម',
'asset_tag' => 'ស្លាកទ្រព្យសម្បត្តិ',
- 'assets_warrantee_alert' => 'មាន : រាប់ទ្រព្យសកម្មជាមួយនឹងការធានាផុតកំណត់ក្នុងរយៈពេលបន្ទាប់ : threshold days។ | មាន : រាប់ទ្រព្យសកម្មជាមួយនឹងការធានាផុតកំណត់ក្នុងរយៈពេលបន្ទាប់ : threshold days ។',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'ចាត់តាំងទៅ',
+ 'eol' => 'EOL',
'best_regards' => 'សូមគោរព',
'canceled' => 'បានលុបចោល',
'checkin_date' => 'កាលបរិច្ឆេទត្រឡប់មកវិញ',
@@ -58,6 +59,7 @@ return [
'days' => 'ថ្ងៃ',
'expecting_checkin_date' => 'កាលបរិច្ឆេទដែលរំពឹងទុកនឹង Checkin',
'expires' => 'ផុតកំណត់',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'ជំរាបសួរ',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'របាយការណ៍សារពើភ័ណ្ឌ',
'item' => 'ធាតុ',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'មាន :count License ផុតកំណត់ក្នុង :threshold days បន្ទាប់។ | មាន :count licenses ផុតកំណត់ក្នុង :threshold days បន្ទាប់។',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'សូមចុចលើតំណខាងក្រោមដើម្បីធ្វើបច្ចុប្បន្នភាព៖ពាក្យសម្ងាត់បណ្ដាញរបស់អ្នក៖',
'login' => 'ចូល',
'login_first_admin' => 'ចូលទៅកាន់ការដំឡើង Snipe-IT ថ្មីរបស់អ្នកដោយប្រើព័ត៌មានបញ្ជាក់អត្តសញ្ញាណខាងក្រោម៖',
'low_inventory_alert' => 'មាន : រាប់ធាតុដែលទាបជាងសារពើភ័ណ្ឌអប្បបរមា ឬឆាប់ៗនេះនឹងមានកម្រិតទាប។|មាន : រាប់ធាតុដែលទាបជាងសារពើភណ្ឌអប្បបរមា ឬនឹងទាបឆាប់ៗនេះ។',
'min_QTY' => 'Min QTY',
'name' => 'ឈ្មោះ',
- 'new_item_checked' => 'ធាតុថ្មីត្រូវបានchecked outក្រោមឈ្មោះរបស់អ្នក ព័ត៌មានលម្អិតមាននៅខាងក្រោម។',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'កំណត់ចំណាំ',
'password' => 'ពាក្យសម្ងាត់',
diff --git a/resources/lang/ko-KR/admin/categories/message.php b/resources/lang/ko-KR/admin/categories/message.php
index ad9829f82d..a371d109b8 100644
--- a/resources/lang/ko-KR/admin/categories/message.php
+++ b/resources/lang/ko-KR/admin/categories/message.php
@@ -14,7 +14,7 @@ return array(
'update' => array(
'error' => '분류가 갱신되지 않았습니다. 다시 시도해 주세요',
'success' => '분류가 갱신되었습니다.',
- 'cannot_change_category_type' => 'You cannot change the category type once it has been created',
+ 'cannot_change_category_type' => '',
),
'delete' => array(
diff --git a/resources/lang/ko-KR/admin/custom_fields/general.php b/resources/lang/ko-KR/admin/custom_fields/general.php
index c6895f31a7..b2a2608046 100644
--- a/resources/lang/ko-KR/admin/custom_fields/general.php
+++ b/resources/lang/ko-KR/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => '관리',
'field' => '항목',
'about_fieldsets_title' => '항목세트란',
- 'about_fieldsets_text' => '항목세트는 특정 자산 모델에 사용하기 위해 빈번하게 재사용되는 사용자 정의 항목의 그룹을 생성하는 것을 허용합니다.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => '필드 암호화',
'encrypt_field_help' => '경고: 항목을 암호화 하면 검색을 할 수 없습니다.',
diff --git a/resources/lang/ko-KR/admin/depreciations/general.php b/resources/lang/ko-KR/admin/depreciations/general.php
index 509a4d1211..1aa175f3de 100644
--- a/resources/lang/ko-KR/admin/depreciations/general.php
+++ b/resources/lang/ko-KR/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => '자산 감가 상각이란',
- 'about_depreciations' => '가치가 하락하는 자산들을 직선법에 의한 감가상각 설정을 할 수 있습니다.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => '자산 감가 상각',
'create' => '감가 상각 생성',
'depreciation_name' => '감가 상각 명',
diff --git a/resources/lang/ko-KR/admin/hardware/form.php b/resources/lang/ko-KR/admin/hardware/form.php
index 5dab26eed8..44fe583ffd 100644
--- a/resources/lang/ko-KR/admin/hardware/form.php
+++ b/resources/lang/ko-KR/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => '상태 유형 선택',
'serial' => '일련번호',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => '상태',
'tag' => '자산 태그',
'update' => '자산 갱신',
diff --git a/resources/lang/ko-KR/admin/hardware/general.php b/resources/lang/ko-KR/admin/hardware/general.php
index 33f4b7f1e3..25fb4dab4c 100644
--- a/resources/lang/ko-KR/admin/hardware/general.php
+++ b/resources/lang/ko-KR/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => '요청됨',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => '자산 복원',
'pending' => '대기중',
'undeployable' => '사용불가',
diff --git a/resources/lang/ko-KR/admin/licenses/message.php b/resources/lang/ko-KR/admin/licenses/message.php
index fb251107f6..a458bab896 100644
--- a/resources/lang/ko-KR/admin/licenses/message.php
+++ b/resources/lang/ko-KR/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => '라이선스 반입 중 문제가 발생했습니다. 다시 시도해 주세요.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => '라이선스가 반입 되었습니다.'
),
diff --git a/resources/lang/ko-KR/admin/locations/message.php b/resources/lang/ko-KR/admin/locations/message.php
index 4b9a9183bf..f4cb9a4171 100644
--- a/resources/lang/ko-KR/admin/locations/message.php
+++ b/resources/lang/ko-KR/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => '장소가 존재하지 않습니다.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => '이 장소는 현재 적어도 한명의 사용자와 연결되어 있어서 삭제할 수 없습니다. 사용자가 더 이상 이 장소를 참조하지 않게 갱신하고 다시 시도해주세요. ',
'assoc_child_loc' => '이 장소는 현재 하나 이상의 하위 장소를 가지고 있기에 삭제 할 수 없습니다. 이 장소의 참조를 수정하고 다시 시도해 주세요. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => '현재 위치',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ko-KR/admin/locations/table.php b/resources/lang/ko-KR/admin/locations/table.php
index 84b8ca9aec..c77bf983a2 100644
--- a/resources/lang/ko-KR/admin/locations/table.php
+++ b/resources/lang/ko-KR/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => '장소 생성',
'update' => '장소 갱신',
'print_assigned' => '할당된 항목 인쇄',
- 'print_all_assigned' => '할당된 항목 모두 인쇄',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => '장소 명',
'address' => '주소',
'address2' => '두번재 주소',
diff --git a/resources/lang/ko-KR/admin/models/table.php b/resources/lang/ko-KR/admin/models/table.php
index 18b09d3573..19595c9fac 100644
--- a/resources/lang/ko-KR/admin/models/table.php
+++ b/resources/lang/ko-KR/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => '자산 모델',
'update' => '자산 모델 갱신',
'view' => '자산 모델 보기',
- 'update' => '자산 모델 갱신',
- 'clone' => '모델 복제',
- 'edit' => '모델 편집',
+ 'clone' => '모델 복제',
+ 'edit' => '모델 편집',
);
diff --git a/resources/lang/ko-KR/admin/users/general.php b/resources/lang/ko-KR/admin/users/general.php
index a4d161557b..1c6dcf076d 100644
--- a/resources/lang/ko-KR/admin/users/general.php
+++ b/resources/lang/ko-KR/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => '소프트웨어 반출 목록 :name',
- 'send_email_help' => '이 사용자에게 자격 증명을 보내려면 이메일 주소를 입력해야 합니다. 자격 증명을 이메일로 보내는 것은 사용자 생성 시에만 수행할 수 있습니다. 암호는 단방향 해시에 저장되며 한 번 저장하면 재열람 할 수 없습니다.',
'view_user' => '사용자 보기 :name',
'usercsv' => 'CSV 파일',
'two_factor_admin_optin_help' => '현재 관리 설정이 두가지 인증방법을 선택적으로 실행하게 되어 있습니다. ',
diff --git a/resources/lang/ko-KR/general.php b/resources/lang/ko-KR/general.php
index 51288e3939..1029785a48 100644
--- a/resources/lang/ko-KR/general.php
+++ b/resources/lang/ko-KR/general.php
@@ -160,7 +160,7 @@ return [
'import' => '불러오기',
'import_this_file' => 'Map fields and process this file',
'importing' => '가져오는 중',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => '가져오기 이력',
'asset_maintenance' => '자산 관리',
'asset_maintenance_report' => '자산 관리 보고서',
@@ -309,10 +309,12 @@ return [
'total_licenses' => '총 라이선스',
'total_accessories' => '부속품들 합계',
'total_consumables' => '소모품들 합계',
+ 'total_cost' => 'Total Cost',
'type' => '유형',
'undeployable' => '사용불가',
'unknown_admin' => '알수없는 관리자',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => '사용자명',
'update' => '갱신',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => '허가됨 :asset',
'i_accept' => '동의합니다',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => '거부합니다',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => '권한',
'managed_ldap' => '(Managed via LDAP)',
'export' => '내보내기',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP 동기화',
'ldap_user_sync' => 'LDAP 사용자 동기화',
'synchronize' => '동기화',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':항목 이름',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => '자세한 정보',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/ko-KR/mail.php b/resources/lang/ko-KR/mail.php
index 230e8ea703..379c2427b9 100644
--- a/resources/lang/ko-KR/mail.php
+++ b/resources/lang/ko-KR/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => '부속품 반입 됨',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => '부속품 반입 확인',
'Confirm_Asset_Checkin' => '자산 반입 확인',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => '만료 자산 보고서.',
- 'Expiring_Licenses_Report' => '만료 라이선스 보고서.',
+ 'Expiring_Assets_Report' => '만료 자산 보고서',
+ 'Expiring_Licenses_Report' => '만료 라이선스 보고서',
'Item_Request_Canceled' => '품목 요청 취소됨',
'Item_Requested' => '품목 요청',
'License_Checkin_Notification' => '라이센스 확인 됨.',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => '재고 부족 보고서',
'a_user_canceled' => '사용자가 웹사이트에서 품목 요청을 취소했습니다',
'a_user_requested' => '사용자가 웹사이트에서 품목을 요청했습니다',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => '자산 명',
'asset_requested' => '자산 요청',
'asset_tag' => '자산 태그',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => '할당',
+ 'eol' => '폐기일',
'best_regards' => '감사합니다,',
'canceled' => 'Canceled',
'checkin_date' => '반입 일자',
@@ -58,6 +59,7 @@ return [
'days' => '일',
'expecting_checkin_date' => '반입 예상 일',
'expires' => '만료',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => '안녕하세요',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => '항목',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => '다음 :threshold 일 내에 만료되는 라이선스가 :count 개 있습니다.|다음 :threshold 일 내에 만료되는 라이선스가 :count 개 있습니다.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => ':web 비밀번호를 수정하려면 다음 링크를 클릭하세요:',
'login' => '로그인',
'login_first_admin' => '아래의 자격 증명을 사용하여 새 Snipe-IT 설치본에 로그인 하세요:',
'low_inventory_alert' => '최소 보유량보다 낮거나 소진될 수 있는 품목이 :count 개 있습니다.|최소 보유량보다 낮거나 소진될 수 있는 품목이 :count 개 있습니다.',
'min_QTY' => '최소 수량',
'name' => '이름',
- 'new_item_checked' => '당신의 이름으로 새 품목이 반출 되었습니다, 이하는 상세입니다.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => '주석',
'password' => '비밀번호',
diff --git a/resources/lang/lt-LT/admin/custom_fields/general.php b/resources/lang/lt-LT/admin/custom_fields/general.php
index d1504777ee..2b2369a25c 100644
--- a/resources/lang/lt-LT/admin/custom_fields/general.php
+++ b/resources/lang/lt-LT/admin/custom_fields/general.php
@@ -33,7 +33,7 @@ return [
'create_fieldset_title' => 'Sukurkite naują laukų rinkinį',
'create_field' => 'Naujas pritaikytas laukas',
'create_field_title' => 'Sukurti naują pritaikytą lauką',
- 'value_encrypted' => 'The value of this field is encrypted in the database. Only users with permission to view encrypted custom fields will be able to view the decrypted value',
+ 'value_encrypted' => 'Šio lauko reikšmė yra užšifruota duomenų bazėje. Tik naudotojai, turintys leidimą peržiūrėti užšifruotus pasirinktinius laukus, galės peržiūrėti iššifruotą reikšmę',
'show_in_email' => 'Įtraukti šio lauko reikšmę į išdavimo el. laiškus, siunčiamus naudotojams? Šifruotų laukų į el. laiškus įtraukti negalima',
'show_in_email_short' => 'Įtraukti į el. laiškus',
'help_text' => 'Pagalbos tekstas',
diff --git a/resources/lang/lt-LT/admin/depreciations/general.php b/resources/lang/lt-LT/admin/depreciations/general.php
index f708e08b66..c75fcdfb70 100644
--- a/resources/lang/lt-LT/admin/depreciations/general.php
+++ b/resources/lang/lt-LT/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Apie turto nusidėvėjimą',
- 'about_depreciations' => 'Jūs galite nustatyti turto nusidėvėjimą pagal tiesinį nusidėvėjimo modelį.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Turto nusidėvėjimas',
'create' => 'Sukurti nusidėvėjimą',
'depreciation_name' => 'Nusidėvėjimo pavadinimas',
diff --git a/resources/lang/lt-LT/admin/hardware/form.php b/resources/lang/lt-LT/admin/hardware/form.php
index 1a0b8b1357..fdb5a93fc4 100644
--- a/resources/lang/lt-LT/admin/hardware/form.php
+++ b/resources/lang/lt-LT/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Eiti į išduotus',
'select_statustype' => 'Pasirinkite būsenos tipą',
'serial' => 'Serijinis numeris',
+ 'serial_required' => 'Turtui :number būtina nurodyti serijinį numerį',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Būsena',
'tag' => 'Inventorinis numeris',
'update' => 'Turto atnaujinimas',
diff --git a/resources/lang/lt-LT/admin/hardware/general.php b/resources/lang/lt-LT/admin/hardware/general.php
index 25c3eb445d..c69adde471 100644
--- a/resources/lang/lt-LT/admin/hardware/general.php
+++ b/resources/lang/lt-LT/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Užsakytas',
'not_requestable' => 'Neužsakomas',
'requestable_status_warning' => 'Nekeisti užsakomo turto būsenos',
+ 'require_serial' => 'Reikalauti serijinio numerio',
+ 'require_serial_help' => 'Kuriant naują šio modelio turtą reikės įvesti jo serijinį numerį.',
'restore' => 'Atkurti turtą',
'pending' => 'Ruošiamas',
'undeployable' => 'Neišduotinas',
diff --git a/resources/lang/lt-LT/admin/licenses/message.php b/resources/lang/lt-LT/admin/licenses/message.php
index 8a4ff7eb4b..fefe2d05ea 100644
--- a/resources/lang/lt-LT/admin/licenses/message.php
+++ b/resources/lang/lt-LT/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Turimų laisvų vietų nepakanka licencijos išdavimui',
'mismatch' => 'Pateikta licencijos vieta nesutampa su licencija',
'unavailable' => 'Šios licencijos negalima išduoti.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Bandant paimti licenciją įvyko klaida. Bandykite dar kartą.',
- 'not_reassignable' => 'Ši licencija nėra perduodama',
+ 'not_reassignable' => 'Vieta buvo panadota',
'success' => 'Licencija paimta sėkmingai'
),
diff --git a/resources/lang/lt-LT/admin/locations/message.php b/resources/lang/lt-LT/admin/locations/message.php
index bab4a7d071..cbbeb30c42 100644
--- a/resources/lang/lt-LT/admin/locations/message.php
+++ b/resources/lang/lt-LT/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Tokios vietos nėra.',
- 'assoc_users' => 'Šios vietos negalima panaikinti, nes ji yra bent vieno turto vieneto ar naudotojo vieta, jai yra priskirtas turtas arba ji yra nurodyta kaip pagrindinė kitos vietos vieta. Atnaujinkite savo įrašus, kad jie nebeturėtų sąsajų su šia vieta ir bandykite dar kartą ',
+ 'assoc_users' => 'Šios vietos negalima panaikinti, nes ji yra bent vieno daikto ar naudotojo vieta, jai yra priskirtas turtas arba ji yra nurodyta kaip pagrindinė kitos vietos vieta. Atnaujinkite savo įrašus, kad jie nebeturėtų sąsajų su šia vieta ir bandykite dar kartą ',
'assoc_assets' => 'Ši vieta šiuo metu yra susieta bent su vienu turto vienetu ir negali būti panaikinta. Atnaujinkite savo turtą, kad nebebūtų sąsajos su šia vieta, ir bandykite dar kartą. ',
'assoc_child_loc' => 'Ši vieta šiuo metu yra kaip pagrindinė bent vienai žemesnio lygio vietai ir negali būti panaikinta. Atnaujinkite savo žemesnio lygio vietas, kad nebebūtų sąsajos su šia vieta, ir bandykite dar kartą. ',
'assigned_assets' => 'Priskirtas turtas',
'current_location' => 'Dabartinė vieta',
'open_map' => 'Atidaryti :map_provider_icon žemėlapiuose',
+ 'deleted_warning' => 'Ši vieta buvo ištrinta. Prieš bandydami atlikti bet kokius pakeitimus, turite ją atkurti.',
'create' => array(
diff --git a/resources/lang/lt-LT/admin/locations/table.php b/resources/lang/lt-LT/admin/locations/table.php
index 36ccd59196..3aeac7c105 100644
--- a/resources/lang/lt-LT/admin/locations/table.php
+++ b/resources/lang/lt-LT/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Sukurti vietą',
'update' => 'Atnaujinti vietą',
'print_assigned' => 'Spausdinti išduotą',
- 'print_all_assigned' => 'Spausdinti visą išduotą',
+ 'print_inventory' => 'Spausdinti inventorių',
+ 'print_all_assigned' => 'Spausdinti inventorių ir išduotus',
'name' => 'Vietos pavadinimas',
'address' => 'Adresas',
'address2' => 'Antroji adreso eilutė',
@@ -20,7 +21,7 @@ return [
'locations' => 'Vietos',
'parent' => 'Pagrindinė',
'currency' => 'Vietos valiuta',
- 'ldap_ou' => 'LDAP paieškos OU',
+ 'ldap_ou' => 'LDAP Paieškos OU',
'user_name' => 'Naudotojo vardas',
'department' => 'Skyrius',
'location' => 'Vieta',
diff --git a/resources/lang/lt-LT/admin/models/table.php b/resources/lang/lt-LT/admin/models/table.php
index ac9059f566..162b2028bf 100644
--- a/resources/lang/lt-LT/admin/models/table.php
+++ b/resources/lang/lt-LT/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Turto modeliai',
'update' => 'Atnaujinti turto modelį',
'view' => 'Peržiūrėti turto modelį',
- 'update' => 'Atnaujinti turto modelį',
- 'clone' => 'Klonuoti modelį',
- 'edit' => 'Redaguoti modelį',
+ 'clone' => 'Klonuoti modelį',
+ 'edit' => 'Redaguoti modelį',
);
diff --git a/resources/lang/lt-LT/admin/settings/general.php b/resources/lang/lt-LT/admin/settings/general.php
index 428f831285..8ce3b300ee 100644
--- a/resources/lang/lt-LT/admin/settings/general.php
+++ b/resources/lang/lt-LT/admin/settings/general.php
@@ -87,54 +87,54 @@ return [
'ldap_default_group_info' => 'Pasirinkite grupę, kurią norite priskirti naujai sinchronizuotiems naudotojams. Atminkite, kad naudotojas įgauna jam priskirtos grupės teises.',
'no_default_group' => 'Nėra numatytosios grupės',
'ldap_help' => 'LDAP/Active Directory',
- 'ldap_client_tls_key' => 'LDAP kliento TLS raktas',
- 'ldap_client_tls_cert' => 'LDAP kliento pusės TLS sertifikatas',
+ 'ldap_client_tls_key' => 'LDAP Kliento TLS raktas',
+ 'ldap_client_tls_cert' => 'LDAP Kliento pusės TLS sertifikatas',
'ldap_enabled' => 'LDAP įjungtas',
- 'ldap_integration' => 'LDAP integracija',
- 'ldap_settings' => 'LDAP nustatymai',
+ 'ldap_integration' => 'LDAP Integracija',
+ 'ldap_settings' => 'LDAP Nustatymai',
'ldap_client_tls_cert_help' => 'Kliento pusės TLS sertifikatas ir raktas LDAP ryšiams, paprastai, naudingi tik naudojant „Google Workspace“ konfigūracijas su „Saugiu LDAP“. Abu yra reikalingi.',
- 'ldap_location' => 'LDAP Location Field',
-'ldap_location_help' => 'The LDAP Location field should be used if an OU is not being used in the Base Bind DN. Leave this blank if an OU search is being used.',
+ 'ldap_location' => 'LDAP Vietos laukas',
+'ldap_location_help' => 'Lauką „LDAP Vieta“ reikia naudoti, kai OU paieška nėra atliekama pagrindiniame susiejimo DN (Base Bind DN). Palikite šį lauką tuščią, jei naudojate OU paiešką.',
'ldap_login_test_help' => 'Įveskite galiojantį LDAP naudotojo vardą ir slaptažodį iš pagrindinio DN, kurį nurodėte anksčiau, kad patikrintumėte, ar jūsų LDAP prisijungimas sukonfigūruotas teisingai. PIRMIAUSIA TURITE IŠSAUGOTI ATNAUJINTUS LDAP NUSTATYMUS.',
- 'ldap_login_sync_help' => 'This only tests that LDAP can sync and that your fields are mapped correctly. If your LDAP Authentication query is not correct, users may still not be able to login. YOU MUST SAVE YOUR UPDATED LDAP SETTINGS FIRST.',
- 'ldap_manager' => 'LDAP Manager Field',
- 'ldap_server' => 'LDAP serveris',
+ 'ldap_login_sync_help' => 'Tai tik patikrina, ar LDAP gali sinchronizuoti ir ar jūsų laukai yra susieti teisingai. Jei jūsų LDAP Autentifikavimo užklausa neteisinga, naudotojai vis tiek negalės prisijungti. PIRMIAUSIA TURITE IŠSAUGOTI ATNAUJINTUS LDAP NUSTATYMUS.',
+ 'ldap_manager' => 'LDAP Vadovo laukas',
+ 'ldap_server' => 'LDAP Serveris',
'ldap_server_help' => 'Turėtų prasidėti su ldap:// (nešifruotas) arba ldaps:// (jei tai TLS arba SSL)',
'ldap_server_cert' => 'LDAP SSL sertifikato tikrinimas',
'ldap_server_cert_ignore' => 'Leisti negaliojantį SSL sertifikatą',
'ldap_server_cert_help' => 'Pažymėkite šį laukelį, jei naudojate paties pasirašytą SSL sertifikatą ir norite leisti naudoti negaliojantį SSL sertifikatą.',
'ldap_tls' => 'Naudoti TLS',
'ldap_tls_help' => 'Tai turėtų būti pažymėta tik tada, jei savo LDAP serveryje naudojate STARTTLS. ',
- 'ldap_uname' => 'LDAP susiejimo naudotojo vardas',
- 'ldap_dept' => 'LDAP Department Field',
- 'ldap_phone' => 'LDAP Phone Number Field',
- 'ldap_jobtitle' => 'LDAP Job Title Field',
- 'ldap_country' => 'LDAP Country Field',
- 'ldap_pword' => 'LDAP susiejimo slaptažodis',
+ 'ldap_uname' => 'LDAP Susiejimo naudotojo vardas',
+ 'ldap_dept' => 'LDAP Skyriaus laukas',
+ 'ldap_phone' => 'LDAP Telefono numerio laukas',
+ 'ldap_jobtitle' => 'LDAP Pareigų laukas',
+ 'ldap_country' => 'LDAP Valstybės laukas',
+ 'ldap_pword' => 'LDAP Susiejimo slaptažodis',
'ldap_basedn' => 'Base Bind DN',
- 'ldap_filter' => 'LDAP filtras',
+ 'ldap_filter' => 'LDAP Filtras',
'ldap_pw_sync' => 'Saugoti LDAP slaptažodžius',
'ldap_pw_sync_help' => 'Atžymėkite šį langelį jei nenorite, kad LDAP slaptažodžiai būtų saugomi talpykloje kaip vietiniai maišos slaptažodžiai. Jei tai išjungsite, jūsų naudotojai gali negalėti prisijungti, jei jūsų LDAP serveris dėl kokios nors priežasties bus nepasiekiamas.',
- 'ldap_username_field' => 'LDAP Username Field',
- 'ldap_display_name' => 'LDAP Display Name Field',
+ 'ldap_username_field' => 'LDAP Naudotojo vardo laukas',
+ 'ldap_display_name' => 'LDAP Rodomo vardo laukas',
'ldap_display_name_help' => 'If you have a separate displayName field in your LDAP/AD, map it here and it will be used for displaying users within Snipe-IT.',
- 'ldap_lname_field' => 'LDAP Last Name Field',
- 'ldap_fname_field' => 'LDAP First Name Field',
- 'ldap_auth_filter_query' => 'LDAP autentifikavimo užklausa',
- 'ldap_version' => 'LDAP versija',
+ 'ldap_lname_field' => 'LDAP Pavardės laukas',
+ 'ldap_fname_field' => 'LDAP Vardo laukas',
+ 'ldap_auth_filter_query' => 'LDAP Autentifikavimo užklausa',
+ 'ldap_version' => 'LDAP Versija',
'ldap_active_flag' => 'LDAP Active Flag',
'ldap_activated_flag_help' => 'Ši reikšmė naudojama norint nustatyti, ar sinchronizuotas naudotojas gali prisijungti prie „Snipe-IT“. Tai neturi įtakos galimybei išduoti arba paimti daiktus iš šių naudotojų ir turėtų būti jūsų AD/LDAP atributo pavadinimas, o ne reikšmė.
Jei lauke nurodytas lauko pavadinimas, kurio nėra jūsų AD/LDAP, arba reikšmė AD/LDAP lauke nustatyta į 0 arba false , naudotojo prisijungimas bus išjungtas. Jei reikšmė AD/LDAP lauke nustatyta į 1 arba true arba bet kokį kitą tekstą, reiškia, kad naudotojas gali prisijungti. Kai jūsų AD šis laukas yra tuščias, bus paisoma atributo userAccountControl, kuris įprastai leidžia neišjungtiems naudotojams prisijungti.',
'ldap_invert_active_flag' => 'Invertuoti LDAP „Active Flag“',
'ldap_invert_active_flag_help' => 'Jei įjungta: kai LDAP „Active Flag“ grąžinama reikšmė yra 0 arba false, naudotojo paskyra bus aktyvi.',
- 'ldap_emp_num' => 'LDAP Employee Number Field',
- 'ldap_email' => 'LDAP Email Field',
- 'ldap_mobile' => 'LDAP Mobile Field',
- 'ldap_address' => 'LDAP Address Field',
- 'ldap_city' => 'LDAP City Field',
- 'ldap_state' => 'LDAP State/Province Field',
- 'ldap_zip' => 'LDAP Postal Code Field',
- 'ldap_test' => 'Testuoti LDAP',
- 'ldap_test_sync' => 'Testuoti LDAP sinchronizavimą',
+ 'ldap_emp_num' => 'LDAP Darbuotojo numerio laukas',
+ 'ldap_email' => 'LDAP El. pašto laukas',
+ 'ldap_mobile' => 'LDAP Mobiliojo laukas',
+ 'ldap_address' => 'LDAP Adreso laukas',
+ 'ldap_city' => 'LDAP Miesto laukas',
+ 'ldap_state' => 'LDAP Rajono laukas',
+ 'ldap_zip' => 'LDAP Pašto kodo laukas',
+ 'ldap_test' => 'Išbandyti LDAP',
+ 'ldap_test_sync' => 'Išbandyti LDAP sinchronizavimą',
'license' => 'Programinės įrangos licencija',
'load_remote' => 'Įkelti nuotolinius avatarus',
'load_remote_help_text' => 'Atžymėkite šį langelį, jei jūsų diegimas negali vykdyti skriptų iš interneto. Tai neleis „Snipe-IT“ bandyti įkelti avatarų iš „Gravatar“ ar kitų išorinių šaltinių.',
@@ -349,10 +349,10 @@ return [
'purge_help' => 'Išvalyti ištrintus įrašus',
'ldap_extension_warning' => 'Panašu, kad šiame serveryje nėra įdiegtas arba įjungtas LDAP plėtinys. Vis tiek galite išsaugoti nustatymus, bet turėsite įjungti LDAP plėtinį PHP, kad veiktų LDAP sinchronizavimas arba prisijungimas.',
'ldap_ad' => 'LDAP/AD',
- 'ldap_test_label' => 'Tikrinti LDAP sinchronizaciją',
+ 'ldap_test_label' => 'Išbandyti LDAP sinchronizaciją',
'ldap_test_login' => ' Tikrinti LDAP prisijungimą',
- 'ldap_username_placeholder' => 'LDAP naudotojo vardas',
- 'ldap_password_placeholder' => 'LDAP slaptažodis',
+ 'ldap_username_placeholder' => 'LDAP Naudotojo vardas',
+ 'ldap_password_placeholder' => 'LDAP Slaptažodis',
'employee_number' => 'Darbuotojo numeris',
'create_admin_user' => 'Sukurti naudotoją ::',
'create_admin_success' => 'Pavyko! Jūsų administratoriaus naudotojas buvo sukurtas!',
@@ -362,7 +362,7 @@ return [
'setup_successful_migrations' => 'Jūsų duomenų bazės lentelės buvo sukurtos',
'setup_migration_output' => 'Migravimo išvestis:',
'setup_migration_create_user' => 'Kitas: Sukurti naudotoją',
- 'ldap_settings_link' => 'LDAP nustatymų puslapis',
+ 'ldap_settings_link' => 'LDAP Nustatymų puslapis',
'slack_test' => 'Patikrinti integraciją',
'status_label_name' => 'Būsenos žymos pavadinimas',
'super_admin_only' => 'Tik superadministratoriams',
@@ -479,12 +479,12 @@ return [
'general' => 'Bendrieji',
'intervals' => 'Intervalai ir ribos',
'logos' => 'Logotipai ir rodymas',
- 'mapping' => 'LDAP Field Mapping',
- 'test' => 'Test LDAP Connection',
+ 'mapping' => 'LDAP Laukų susiejimas',
+ 'test' => 'Išbandyti LDAP ryšį',
'misc' => 'Įvairūs',
'misc_display' => 'Įvairios rodymo parinktys',
'profiles' => 'Naudotojų profiliai',
- 'server' => 'Server Settings',
+ 'server' => 'Serverio nustatymai',
'scoping' => 'Vietų susiejimas',
'security' => 'Saugumo nustatymai',
],
diff --git a/resources/lang/lt-LT/admin/suppliers/message.php b/resources/lang/lt-LT/admin/suppliers/message.php
index 178544d113..5ab53570e7 100644
--- a/resources/lang/lt-LT/admin/suppliers/message.php
+++ b/resources/lang/lt-LT/admin/suppliers/message.php
@@ -22,7 +22,7 @@ return array(
'success' => 'Tiekėjas panaikintas sėkmingai.',
'assoc_assets' => 'Šis tiekėjas šiuo metu yra susietas su :asset_count turto vienetu (-ais) ir negali būti panaikintas. Atnaujinkite savo turtą, kad nebebūtų sąsajos su šiuo tiekėju, ir bandykite dar kartą. ',
'assoc_licenses' => 'Šis tiekėjas šiuo metu yra susietas su :licenses_count licencija (-omis) ir negali būti panaikintas. Atnaujinkite savo licencijas, kad nebebūtų sąsajos su šiuo tiekėju, ir bandykite dar kartą. ',
- 'assoc_maintenances' => 'This supplier is currently associated with :maintenances_count asset maintenances(s) and cannot be deleted. Please update your asset maintenances to no longer reference this supplier and try again. ',
+ 'assoc_maintenances' => 'Šis tiekėjas šiuo metu yra susietas su :maintenances_count turto aptarnavimu (-ais) ir negali būti panaikintas. Atnaujinkite savo turto aptarnavimus, kad nebebūtų sąsajos su šiuo tiekėju, ir bandykite dar kartą. ',
)
);
diff --git a/resources/lang/lt-LT/admin/users/general.php b/resources/lang/lt-LT/admin/users/general.php
index 1f890576a8..e8b3dd3995 100644
--- a/resources/lang/lt-LT/admin/users/general.php
+++ b/resources/lang/lt-LT/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Įtraukti šį naudotoją, kai automatiškai priskiriamos tinkamos licencijos',
'auto_assign_help' => 'Praleisti šį naudotoją, kai automatiškai priskiriamos licencijos',
'software_user' => 'Programinė įranga išduota: :name',
- 'send_email_help' => 'Turite nurodyti šio naudotojo el. pašto adresą, kad galėmtumėte jam nusiųsti prisijungimo duomenis. El. pašto prisijungimo duomenis galima siųsti tik kuriant naudotoją. Slaptažodžiai saugomi vienpuse maiša ir jų negalima atkurti po to, kai jie yra išsaugomi.',
'view_user' => 'Peržiūrėti naudotoją :name',
'usercsv' => 'CSV failas',
'two_factor_admin_optin_help' => 'Dabartiniai administratoriaus nustatymai leidžia pasirinktinai naudoti dviejų veiksnių autentifikavimą. ',
diff --git a/resources/lang/lt-LT/admin/users/table.php b/resources/lang/lt-LT/admin/users/table.php
index e1ac4b4e90..65ced6f2f1 100644
--- a/resources/lang/lt-LT/admin/users/table.php
+++ b/resources/lang/lt-LT/admin/users/table.php
@@ -35,7 +35,7 @@ return array(
'total_assets_cost' => "Bendra turto vertė",
'updateuser' => 'Atnaujinti naudotoją',
'username' => 'Naudotojo vardas',
- 'display_name' => 'Display Name',
+ 'display_name' => 'Rodomas vardas',
'user_deleted_text' => 'Šis naudotojas buvo pažymėtas kaip panaikintas.',
'username_note' => '(Tai naudojama tik „Active Directory“ susiejimui, o ne prisijungimui.)',
'cloneuser' => 'Klonuoti naudotoją',
diff --git a/resources/lang/lt-LT/general.php b/resources/lang/lt-LT/general.php
index 47ee284f5d..912ffdd1bc 100644
--- a/resources/lang/lt-LT/general.php
+++ b/resources/lang/lt-LT/general.php
@@ -36,7 +36,7 @@ return [
'accept_assets_menu' => 'Priimti turtą',
'accept_item' => 'Priimti daiktą',
'audit' => 'Auditas',
- 'audited' => 'Audited',
+ 'audited' => 'Audituoti',
'audits' => 'Auditai',
'audit_report' => 'Audito žurnalas',
'assets' => 'Turtas',
@@ -160,7 +160,7 @@ return [
'import' => 'Importavimas',
'import_this_file' => 'Susieti laukus ir apdoroti šį failą',
'importing' => 'Importuojama',
- 'importing_help' => 'Galite importuoti turtą, priedus, licencijas, komponentus, eksploatacines medžiagas ir naudotojus, naudodami CSV failą.
CSV reikšmės turėtų būti atskirtos kableliais, o failas suformuotas su antraštėmis, kurios sutampa su esančiomis CSV pavyzdžiuose.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importuoti istoriją',
'asset_maintenance' => 'Turto aptarnavimas',
'asset_maintenance_report' => 'Turto aptarnavimo ataskaita',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'iš viso licencijų',
'total_accessories' => 'iš viso priedų',
'total_consumables' => 'iš viso eksploatacinių medžiagų',
+ 'total_cost' => 'Total Cost',
'type' => 'Tipas',
'undeployable' => 'Neišduotinas',
'unknown_admin' => 'Nežinomas administratorius',
'unknown_user' => 'Nežinomas naudotojas',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Naudotojo vardas',
'update' => 'Atnaujinti',
'updating_item' => 'Atnaujinamas :item',
@@ -338,7 +340,7 @@ return [
'zip' => 'Pašto kodas',
'noimage' => 'Neįkeltas arba nerastas atvaizdas.',
'file_does_not_exist' => 'Prašomas failas serveryje neegzistuoja.',
- 'file_not_inlineable' => 'The requested file cannot be opened inline in your browser. You can download it instead.',
+ 'file_not_inlineable' => 'Prašomo failo negalima atidaryti tiesiogiai naršyklėje. Vietoj to galite jį atsisiųsti.',
'open_new_window' => 'Atidaryti šį failą naujame lange',
'file_upload_success' => 'Failo įkėlimas pavyko!',
'no_files_uploaded' => 'Failo įkėlimas pavyko!',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Audito laikas praėjęs',
'accept' => 'Priimti :asset',
'i_accept' => 'Aš priimu',
- 'i_decline_item' => 'Atsisakyti šio daikto',
- 'i_accept_item' => 'Priimti šį daiktą',
+ 'i_accept_with_count' => 'Aš priimu :count daiktą|Aš priimu :count daiktus (-ų)',
+ 'i_decline_item' => 'Nepriimti šio daikto|Nepriimti šių daiktų',
+ 'i_accept_item' => 'Priimti šį daiktą|Priimti šiuos daiktus',
'i_decline' => 'Aš nepriimu',
+ 'i_decline_with_count' => 'Aš nepriimu :count daikto|Aš nepriimu :count daiktų',
'accept_decline' => 'Priimti/Nepriimti',
'sign_tos' => 'Pasirašykite žemiau, kad patvirtintumėte savo sutikimą su paslaugos sąlygomis:',
'clear_signature' => 'Išvalyti parašą',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Teisės',
'managed_ldap' => '(Valdoma per LDAP)',
'export' => 'Eksportuoti',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Sinchronizuoti su LDAP',
'ldap_user_sync' => 'LDAP naudotojų sinchronizacija',
'synchronize' => 'Sinchronizuoti',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Atnaujinti esamas reikšmes?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Automatiškai didėjančių inventorinių numerių generavimas yra išjungtas, todėl visose eilutėse, laukas „Inventorinis numeris“ privalo būti užpildytas.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Pastaba: įjungtas automatiškai didėjančių inventorinių numerių generavimas, todėl eilutėms, kuriose nėra užpildytas laukas „Inventorinis numeris“, bus sukurtas naujas turtas. Eilutėse, kuriose laukas „Inventorinis numeris“ yra užpildytas, bus atnaujinta pateikta informacija.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Siųsti sveikinimo laišką naujiems naudotojams',
+ 'send_welcome_email_help' => 'Tik naudotojai, turintys galiojantį el. pašto adresą ir pažymėti kaip suaktyvinti, gaus pasveikinimo laišką, kuriame galės iš naujo nustatyti slaptažodį.',
+ 'send_welcome_email_import_help' => 'Tik nauji naudotojai, turintys galiojantį el. pašto adresą ir importavimo faile pažymėti kaip suaktyvinti, gaus pasveikinimo laišką, kuriame galės nustatyti slaptažodį.',
'send_email' => 'Siųsti laišką',
'call' => 'Skambinti numeriu',
'back_before_importing' => 'Sukurti atsarginę kopiją prieš importuojant?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Pastabos',
'item_name_var' => ':item Pavadinimas',
'error_user_company' => 'Paskirties ir turto įmonės nesutampa',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Jums paskirtas turtas priklauso kitai įmonei, todėl jūs negalite jo priimti arba atsisakyti. Kreipkitės į savo vadovą.',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Išduota: vardas, pavardė',
'checked_out_to_first_name' => 'Išduota: vardas',
@@ -585,6 +595,8 @@ return [
'components' => ':count Komponentas|:count Komponentai',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Išsamiau',
'quickscan_bulk_help' => 'Pažymėjus šį langelį, turto įrašas bus atnaujintas, kad atspindėtų šią naują vietą. Jei paliksite jį nepažymėtą, vieta bus pažymėta tik audito žurnale. Atkreipkite dėmesį, kad jei šis turtas bus išduotas, tai nepakeis to asmens, turto ar vietos, kuriems išduodamas turtas, buvimo vietos.',
'whoops' => 'Oi!',
@@ -604,11 +616,13 @@ return [
'by' => 'Atlikti',
'version' => 'Versija',
'build' => 'sąranka',
- 'use_cloned_image' => 'Clone image from original',
- 'use_cloned_image_help' => 'You may clone the original image or you can upload a new one using the upload field below.',
- 'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
+ 'use_cloned_image' => 'Klonuoti atvaizdą iš originalo',
+ 'use_cloned_image_help' => 'Galite klonuoti originalų atvaizdą arba galite įkelti naują, naudodami žemiau pateiktą įkėlimo lauką.',
+ 'use_cloned_no_image_help' => 'Šis daiktas neturi susieto atvaizdo, o paveldi iš modelio arba kategorijos, kuriai jis priklauso. Jei norite šiam daiktui naudoti konkretų atvaizdą, jį galite įkelti žemiau.',
'footer_credit' => 'Snipe-IT yra atvirojo kodo programinė įranga, kurią su meile sukūrė @snipeitapp.com.',
'set_password' => 'Sukurti slaptažodį',
+ 'upload_deleted' => 'Įkėlimas ištrintas',
+ 'child_locations' => 'Antrinės vietos',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Svetainės numatytoji',
'default_blue' => 'Numatytoji mėlyna',
'blue_dark' => 'Mėlyna (tamsus režimas)',
- 'green' => 'Tamsiai žalia',
+ 'green' => 'Žalia',
'green_dark' => 'Žalia (tamsus režimas)',
- 'red' => 'Tamsiai raudona',
+ 'red' => 'Raudona',
'red_dark' => 'Raudona (tamsus režimas)',
- 'orange' => 'Tamsiai oranžinė',
+ 'orange' => 'Oranžinė',
'orange_dark' => 'Oranžinė (tamsus režimas)',
'black' => 'Juoda',
'black_dark' => 'Juoda (tamsus režimas)',
@@ -652,7 +666,7 @@ return [
'manufacturers' => [
'button' => 'Sukurti gamintojus',
'prompt' => 'You do not have any manufacturers yet. Would you like to seed a list of common manufacturers? (THIS WILL OVERWRITE EXISTING MANUFACTURERS, including those that have been soft-deleted.)',
- 'success' => 'Manufacturers seeded successfully',
+ 'success' => 'Gamintojai sukurti sėkmingai',
'error' => 'Could not seed manufacturers. A manufacturer record already exists and seeding would overwrite it.|Could not seed manufacturers. :count manufacturer records already exist and seeding would overwrite them.',
],
],
diff --git a/resources/lang/lt-LT/mail.php b/resources/lang/lt-LT/mail.php
index 70c18b42bb..bcc455e305 100644
--- a/resources/lang/lt-LT/mail.php
+++ b/resources/lang/lt-LT/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Priedas paimtas',
- 'Accessory_Checkout_Notification' => 'Priedas išduotas',
- 'Asset_Checkin_Notification' => 'Paimtas turtas: [:tag]',
- 'Asset_Checkout_Notification' => 'Išduotas turtas: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Priedas išduotas|:count priedai (-ų) išduoti',
+ 'Asset_Checkin_Notification' => 'Paimtas turtas: :tag',
+ 'Asset_Checkout_Notification' => 'Išduotas turtas: :tag',
'Confirm_Accessory_Checkin' => 'Priedo paėmimo patvirtinimas',
'Confirm_Asset_Checkin' => 'Turto paėmimo patvirtinimas',
'Confirm_component_checkin' => 'Komponento paėmimo patvirtinimas',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Jums yra išduotas turtas, kuris bus iš jūsų paimtas :date d.',
'Expected_Checkin_Notification' => 'Priminimas: artėja :name paėmimo terminas',
'Expected_Checkin_Report' => 'Numatomo paimti turto ataskaita',
- 'Expiring_Assets_Report' => 'Bebaigiančio galioti turto ataskaita.',
- 'Expiring_Licenses_Report' => 'Bebaigiančių galioti licencijų ataskaita.',
+ 'Expiring_Assets_Report' => 'Bebaigiančio galioti turto ataskaita',
+ 'Expiring_Licenses_Report' => 'Bebaigiančių galioti licencijų ataskaita',
'Item_Request_Canceled' => 'Daikto užsakymas atšauktas',
'Item_Requested' => 'Daiktas užsakytas',
'License_Checkin_Notification' => 'Licencija paimta',
@@ -31,19 +31,20 @@ return [
'Low_Inventory_Report' => 'Ataskaita apie mažas atsargas',
'a_user_canceled' => 'Naudotojas svetainėje atšaukė daikto užsakymą',
'a_user_requested' => 'Naudotojas svetainėje užsakė daiktą',
- 'acceptance_asset_accepted_to_user' => 'Priėmėte daiktą, kurį jums priskyrė :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Naudotojas priėmė daiktą',
'acceptance_asset_declined' => 'Naudotojas nepriėmė daikto',
'send_pdf_copy' => 'Siųsti šio sutikimo kopiją mano el. pašto adresu',
'accessory_name' => 'Priedo pavadinimas',
'additional_notes' => 'Papildomos pastabos',
- 'admin_has_created' => 'An administrator has created an account for you on the :web website. Please find your username below, and click on the link to set a password.',
+ 'admin_has_created' => 'Administratorius jums sukūrė paskyrą svetainėje :web. Peržiūrėkite savo naudotojo vardą ir spustelėkite nuorodą, kad sukurtumėte slaptažodį.',
'asset' => 'Turtas',
'asset_name' => 'Turto pavadinimas',
'asset_requested' => 'Turtas užsakytas',
'asset_tag' => 'Inventorinis numeris',
- 'assets_warrantee_alert' => 'Yra :count turto vienetas, kurio garantija baigiasi per kitas :threshold dienas (-ų).|Yra :count turto vienetai (-ų), kurių garantija baigiasi per kitas :threshold dienas (-ų).',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Išduota',
+ 'eol' => 'Nurašymo data',
'best_regards' => 'Pagarbiai,',
'canceled' => 'Atšauktas',
'checkin_date' => 'Paėmimo data',
@@ -58,6 +59,7 @@ return [
'days' => 'Dienos',
'expecting_checkin_date' => 'Numatoma paėmimo data',
'expires' => 'Baigia galioti',
+ 'terminates' => 'Terminates',
'following_accepted' => 'Buvo priimti šie',
'following_declined' => 'Buvo atmesti šie',
'hello' => 'Sveiki',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventoriaus ataskaita',
'item' => 'Daiktas',
'item_checked_reminder' => 'Tai priminimas, kad šiuo metu jums yra išduoti :count daiktai, kurių nepriėmėte arba neatmetėte. Spustelėkite toliau pateiktą nuorodą, kad patvirtintumėte savo sprendimą.',
- 'license_expiring_alert' => 'Yra :count licencija, kuri baigiasi per kitas :threshold dienas.|Yra :count licencijos (-ų), kurios baigiasi per kitas :threshold dienas (-ų).',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Spustelėkite šią nuorodą, kad atnaujintumėte savo :web slaptažodį:',
'login' => 'Prisijungti',
'login_first_admin' => 'Prisijunkite prie savo naujojo „Snipe-IT“ diegimo naudodami žemiau pateiktus prisijungimo duomenis:',
'low_inventory_alert' => 'Yra :count daiktas, kurio atsargos yra mažesnės (arba greitais bus mažesnės) nei numatytos minimalios atsargos.|Yra :count daiktai (-ų), kurių atsargos yra mažesnės (arba greitais bus mažesnės) nei numatytos minimalios atsargos.',
'min_QTY' => 'Mažiausias kiekis',
'name' => 'Pavadinimas',
- 'new_item_checked' => 'Jums buvo priskirtas naujas daiktas, išsami informacija pateikta žemiau.',
- 'new_item_checked_with_acceptance' => 'Jums buvo išduotas daiktas, kurį reikia priimti. Išsamesnė informacija pateikiama žemiau.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'Jums buvo išduotas daiktas, kurį reikia priimti. Išsamesnė informacija pateikiama žemiau.',
'notes' => 'Pastabos',
'password' => 'Slaptažodis',
diff --git a/resources/lang/lv-LV/admin/custom_fields/general.php b/resources/lang/lv-LV/admin/custom_fields/general.php
index 5f5672512a..75856b518c 100644
--- a/resources/lang/lv-LV/admin/custom_fields/general.php
+++ b/resources/lang/lv-LV/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Pārvaldīt',
'field' => 'Lauks',
'about_fieldsets_title' => 'Par lauka laukiem',
- 'about_fieldsets_text' => 'Lauka ailes ļauj jums izveidot pielāgotu lauku grupas, kuras bieži tiek atkārtoti izmantotas konkrētu aktīvu veidu tipiem.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Šifrējiet šī lauka vērtību datu bāzē',
'encrypt_field_help' => 'BRĪDINĀJUMS: lauka šifrēšana padara to neizpētītu.',
diff --git a/resources/lang/lv-LV/admin/depreciations/general.php b/resources/lang/lv-LV/admin/depreciations/general.php
index f476ead288..31a7f0ce64 100644
--- a/resources/lang/lv-LV/admin/depreciations/general.php
+++ b/resources/lang/lv-LV/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Par Asset Depreciations',
- 'about_depreciations' => 'Jūs varat izveidot aktīvu nolietojumu, lai nolietotu aktīvus, pamatojoties uz lineāro nolietojumu.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Aktīvu vērtības samazināšanās',
'create' => 'Izveidot nolietojumu',
'depreciation_name' => 'Nolietojuma nosaukums',
diff --git a/resources/lang/lv-LV/admin/hardware/form.php b/resources/lang/lv-LV/admin/hardware/form.php
index d74e8ba44f..7e9a560f85 100644
--- a/resources/lang/lv-LV/admin/hardware/form.php
+++ b/resources/lang/lv-LV/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Atlasiet statusa veidu',
'serial' => 'Sērijas numurs',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Statuss',
'tag' => 'Asset Tag',
'update' => 'Aktīvu atjaunošana',
diff --git a/resources/lang/lv-LV/admin/hardware/general.php b/resources/lang/lv-LV/admin/hardware/general.php
index 829c62ab9c..b6bf449805 100644
--- a/resources/lang/lv-LV/admin/hardware/general.php
+++ b/resources/lang/lv-LV/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Pieprasīts',
'not_requestable' => 'Nav pieprasāms',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Atjaunot aktīvus',
'pending' => 'Gaida',
'undeployable' => 'Nodarbināms',
diff --git a/resources/lang/lv-LV/admin/licenses/message.php b/resources/lang/lv-LV/admin/licenses/message.php
index 11c389baeb..a31aee2209 100644
--- a/resources/lang/lv-LV/admin/licenses/message.php
+++ b/resources/lang/lv-LV/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Licencē tika pārbaudīta problēma. Lūdzu mēģiniet vēlreiz.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Licence tika veiksmīgi reģistrēta'
),
diff --git a/resources/lang/lv-LV/admin/locations/message.php b/resources/lang/lv-LV/admin/locations/message.php
index 521ec295b3..4fe446ba8e 100644
--- a/resources/lang/lv-LV/admin/locations/message.php
+++ b/resources/lang/lv-LV/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Atrašanās vietas neeksistē.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Pašlaik šī atrašanās vieta ir saistīta ar vismaz vienu īpašumu un to nevar izdzēst. Lūdzu, atjauniniet savus aktīvus, lai vairs nerindotu šo atrašanās vietu, un mēģiniet vēlreiz.',
'assoc_child_loc' => 'Pašlaik šī vieta ir vismaz viena bērna atrašanās vieta un to nevar izdzēst. Lūdzu, atjauniniet savas atrašanās vietas, lai vairs nerindotu šo atrašanās vietu, un mēģiniet vēlreiz.',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/lv-LV/admin/locations/table.php b/resources/lang/lv-LV/admin/locations/table.php
index 48d5812b97..5d8154ce02 100644
--- a/resources/lang/lv-LV/admin/locations/table.php
+++ b/resources/lang/lv-LV/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Izveidot atrašanās vietu',
'update' => 'Atjaunināt atrašanās vietu',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Drukāt izsniegto',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Atrašanās vietas nosaukums',
'address' => 'Adrese',
'address2' => 'Address Line 2',
diff --git a/resources/lang/lv-LV/admin/models/table.php b/resources/lang/lv-LV/admin/models/table.php
index 84c9146a23..eee70080b5 100644
--- a/resources/lang/lv-LV/admin/models/table.php
+++ b/resources/lang/lv-LV/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Aktīvu modeļi',
'update' => 'Atjaunināt aktīvu modeli',
'view' => 'Skatīt aktīvu modeli',
- 'update' => 'Atjaunināt aktīvu modeli',
- 'clone' => 'Klona modelis',
- 'edit' => 'Rediģēt modeli',
+ 'clone' => 'Klona modelis',
+ 'edit' => 'Rediģēt modeli',
);
diff --git a/resources/lang/lv-LV/admin/users/general.php b/resources/lang/lv-LV/admin/users/general.php
index c7d6dce041..c4da0eb885 100644
--- a/resources/lang/lv-LV/admin/users/general.php
+++ b/resources/lang/lv-LV/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Programmatūra Pārbaudīta: nosaukums',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'Apskatīt Lietotāju: vārds',
'usercsv' => 'CSV fails',
'two_factor_admin_optin_help' => 'Jūsu pašreizējie administrēšanas iestatījumi ļauj atlasīt divu faktoru autentifikāciju.',
diff --git a/resources/lang/lv-LV/general.php b/resources/lang/lv-LV/general.php
index d19bb77e86..c296612d0b 100644
--- a/resources/lang/lv-LV/general.php
+++ b/resources/lang/lv-LV/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importēt',
'import_this_file' => 'Kartējiet laukus un apstrādājiet šo failu',
'importing' => 'Notiek ielāde',
- 'importing_help' => 'Jūs ar CSV failu varat ielādēt inventāru, piederumus, licences, sastāvdaļas, izlietojamus materiālus un lietotājus.
CSV failam jālieto atdalītājs - komats un jābūt formētam ar datiem galvenē, kas atbilst prasībām kas norādīta CSV dokumentācijā.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importa vēsture',
'asset_maintenance' => 'Aktīvu uzturēšana',
'asset_maintenance_report' => 'Aktīvu uzturēšanas pārskats',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'kopējās licences',
'total_accessories' => 'kopējie piederumi',
'total_consumables' => 'kopējie palīgmateriāli',
+ 'total_cost' => 'Total Cost',
'type' => 'Tips',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Nezināms administrators',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Lietotājvārds',
'update' => 'Atjaunināt',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Aizkavējies Audits',
'accept' => 'Apstiprināt :asset',
'i_accept' => 'Es pieņemu',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Es noraidu',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Pieņemt/Noraidīt',
'sign_tos' => 'Parakstieties apakšā, lai apstiprinātu, ka pieņemat pakalpojuma nosacījumus:',
'clear_signature' => 'Dzēst Parakstu',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Atļaujas',
'managed_ldap' => '(Pārvalda ar LDAP)',
'export' => 'Eksports',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sinhronizācija',
'ldap_user_sync' => 'LDAP Lietotāju Sinhr',
'synchronize' => 'Sinhronizēt',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Vai atjaunot esošās vērtības?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Auto-pieaugošu inventāra zīmes ģenerēšana ir atspējota lai visām rindām tiktu aizpildīta kolonna "Inventāra Nr.".',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Piezīmes',
'item_name_var' => ':item Vārds',
'error_user_company' => 'Izsniegšanas uzņēmums un inventāra uzņēmums nesakrīt',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Jums izsniegtais inventārs pieder citam uzņēmumam tapēc Jūs nevarat to pieņemt vai atteikties. Lūdzu sazinieties ar savu vadītāju',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Izsniegts: Vārds Uzvārds',
'checked_out_to_first_name' => 'Izsniegts: Vārds',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Vairāk informācijas',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/lv-LV/mail.php b/resources/lang/lv-LV/mail.php
index 40a63fc409..2f978290de 100644
--- a/resources/lang/lv-LV/mail.php
+++ b/resources/lang/lv-LV/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Pabeidzis aktīvu pārskats.',
- 'Expiring_Licenses_Report' => 'Pabeidzamo licenču pārskats.',
+ 'Expiring_Assets_Report' => 'Pabeidzis aktīvu pārskats',
+ 'Expiring_Licenses_Report' => 'Pabeidzamo licenču pārskats',
'Item_Request_Canceled' => 'Vienuma pieprasījums atcelts',
'Item_Requested' => 'Pieprasīts vienums',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Zema inventarizācijas atskaite',
'a_user_canceled' => 'Lietotājs vietnē ir atcēlis objekta pieprasījumu',
'a_user_requested' => 'Lietotājs ir pieprasījis vienumu vietnē',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Aktīva nosaukums',
'asset_requested' => 'Aktīvs pieprasīts',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Piešķirts',
+ 'eol' => 'EOL',
'best_regards' => 'Ar laba vēlējumiem,',
'canceled' => 'Atcelts',
'checkin_date' => 'Reģistrēšanās datums',
@@ -58,6 +59,7 @@ return [
'days' => 'Dienas',
'expecting_checkin_date' => 'Paredzamais reģistrēšanās datums',
'expires' => 'Beidzas',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Sveiki',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Vienums',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Pēc :threshold dienām beigsies termiņš :count licencei.| Pēc :threshold dienām beigsies termiņš :threshold :count licencēm.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Lūdzu, noklikšķiniet uz šīs saites, lai atjauninātu savu: web paroli:',
'login' => 'Pieslēgties',
'login_first_admin' => 'Piesakieties savā jaunajā Snipe-IT instalācijā, izmantojot tālāk minētos akreditācijas datus.',
'low_inventory_alert' => ':count vienības skaits ir zemāks par krājuma minimumu vai drīz būs zems.|:count vienību skaits ir zemāks par krājuma minimumu vai drīz būs zems.',
'min_QTY' => 'Min QTY',
'name' => 'Nosaukums',
- 'new_item_checked' => 'Jauns objekts ir atzīmēts zem sava vārda, sīkāk ir sniegta zemāk.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Piezīmes',
'password' => 'Parole',
diff --git a/resources/lang/mi-NZ/admin/custom_fields/general.php b/resources/lang/mi-NZ/admin/custom_fields/general.php
index 5bf33e7f10..4a5a35f59e 100644
--- a/resources/lang/mi-NZ/admin/custom_fields/general.php
+++ b/resources/lang/mi-NZ/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Āpure',
'about_fieldsets_title' => 'Mō Ngā Āpure',
- 'about_fieldsets_text' => 'Ka taea e nga maraahi ki a koe te hanga i nga roopu o nga mahinga ritenga e whakamahia ana mo nga momo waahanga motuhake.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Whakamunahia te uara o tenei mara i roto i te pātengi raraunga',
'encrypt_field_help' => 'WARNING: Ko te whakamunatanga o te mara kaore e kitea.',
diff --git a/resources/lang/mi-NZ/admin/depreciations/general.php b/resources/lang/mi-NZ/admin/depreciations/general.php
index 351d6ebfd1..a3b1c19a75 100644
--- a/resources/lang/mi-NZ/admin/depreciations/general.php
+++ b/resources/lang/mi-NZ/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Mō nga Tahaepaha Tahua',
- 'about_depreciations' => 'Ka taea e koe te whakarite i nga whakahekenga o te rawa ki te whakaiti i nga rawa i runga i te toenga o te raina tika.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Tapahatanga Tahua',
'create' => 'Waihangahia te whakahekenga',
'depreciation_name' => 'Te Ingoa Taweke',
diff --git a/resources/lang/mi-NZ/admin/hardware/form.php b/resources/lang/mi-NZ/admin/hardware/form.php
index daeb29e9f6..04137cae65 100644
--- a/resources/lang/mi-NZ/admin/hardware/form.php
+++ b/resources/lang/mi-NZ/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Tīpakohia te Momo Tūnga',
'serial' => 'Waea',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Tūnga',
'tag' => 'Tae Taonga',
'update' => 'Te Whakahou Ahua',
diff --git a/resources/lang/mi-NZ/admin/hardware/general.php b/resources/lang/mi-NZ/admin/hardware/general.php
index 8c25551b35..78cdefd0b6 100644
--- a/resources/lang/mi-NZ/admin/hardware/general.php
+++ b/resources/lang/mi-NZ/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'I tonohia',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Whakaorangia te Ahua',
'pending' => 'Kei te tatari',
'undeployable' => 'Kaore e taea',
diff --git a/resources/lang/mi-NZ/admin/licenses/message.php b/resources/lang/mi-NZ/admin/licenses/message.php
index 01f6dac723..c73fe98960 100644
--- a/resources/lang/mi-NZ/admin/licenses/message.php
+++ b/resources/lang/mi-NZ/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'I kitea he take e tirotirohia ana i roto i te raihana. Tena ngana ano.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'I tohua te raihana i te angitu'
),
diff --git a/resources/lang/mi-NZ/admin/locations/message.php b/resources/lang/mi-NZ/admin/locations/message.php
index 2a4e9455f1..e534ecded5 100644
--- a/resources/lang/mi-NZ/admin/locations/message.php
+++ b/resources/lang/mi-NZ/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Kāore i te tīariari te wāhi.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Kei te honohia tenei taapiri ki te iti rawa o te rawa me te kore e taea te muku. Whakaorangia nga taonga ki a koe kia kaua e tautuhi i tenei tauranga ka ngana ano.',
'assoc_child_loc' => 'Kei tenei waahi te matua o te iti rawa o te mokopuna me te kore e taea te muku. Whakaorangia nga taangata ki a koe kia kaua e tautuhi i tenei tauranga ka ngana ano.',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/mi-NZ/admin/locations/table.php b/resources/lang/mi-NZ/admin/locations/table.php
index 8dfe18310a..54af9cfe83 100644
--- a/resources/lang/mi-NZ/admin/locations/table.php
+++ b/resources/lang/mi-NZ/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Waihanga Wahi',
'update' => 'Whakahōu Tauwāhi',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Ingoa Tauwāhi',
'address' => 'Wāhitau',
'address2' => 'Address Line 2',
diff --git a/resources/lang/mi-NZ/admin/models/table.php b/resources/lang/mi-NZ/admin/models/table.php
index 65b0327ac4..ea05136a43 100644
--- a/resources/lang/mi-NZ/admin/models/table.php
+++ b/resources/lang/mi-NZ/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Ngā Ahua Ahua',
'update' => 'Whakahouhia te tauira Ahua',
'view' => 'Tirohia te Ahua Tahua',
- 'update' => 'Whakahouhia te tauira Ahua',
- 'clone' => 'He tauira tauira',
- 'edit' => 'Whakatikahia te tauira',
+ 'clone' => 'He tauira tauira',
+ 'edit' => 'Whakatikahia te tauira',
);
diff --git a/resources/lang/mi-NZ/admin/users/general.php b/resources/lang/mi-NZ/admin/users/general.php
index 5e02c07d86..2312cad376 100644
--- a/resources/lang/mi-NZ/admin/users/general.php
+++ b/resources/lang/mi-NZ/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Pūmanawa Kua tirotirohia ki: ingoa',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'Tirohia te Kaiwhakamahi: ingoa',
'usercsv' => 'Kōnae CSV',
'two_factor_admin_optin_help' => 'Ko to tautuhinga kaiwhakahaere o toianei kei te whakarite i te whakatinanatanga o te whakamotuhēhēnga-rua.',
diff --git a/resources/lang/mi-NZ/general.php b/resources/lang/mi-NZ/general.php
index 4c8393ae53..7f95ed669a 100644
--- a/resources/lang/mi-NZ/general.php
+++ b/resources/lang/mi-NZ/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Kawemai',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Kaweake Kawemai',
'asset_maintenance' => 'Te Whakahaere Ahua',
'asset_maintenance_report' => 'Pūrongo Whakahaere Taonga',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'katoa raihana',
'total_accessories' => 'nama katoa',
'total_consumables' => 'nga taonga katoa',
+ 'total_cost' => 'Total Cost',
'type' => 'Momo',
'undeployable' => 'Kaore e taea te whakaputa',
'unknown_admin' => 'Kaiwhakahaere unknown',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Ingoa Kaiwhakamahi',
'update' => 'Whakahou',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'He Korero Ano',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/mi-NZ/mail.php b/resources/lang/mi-NZ/mail.php
index 9d99d2c8c6..b0b9450617 100644
--- a/resources/lang/mi-NZ/mail.php
+++ b/resources/lang/mi-NZ/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Nga Putanga Taonga Taonga.',
- 'Expiring_Licenses_Report' => 'Ripoata Raihana Whakamutunga.',
+ 'Expiring_Assets_Report' => 'Nga Putanga Taonga Taonga',
+ 'Expiring_Licenses_Report' => 'Ripoata Raihana Whakamutunga',
'Item_Request_Canceled' => 'Te Whakakore i te Tono',
'Item_Requested' => 'Ko te nama i tonoa',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Pūrongo Inventory Low',
'a_user_canceled' => 'Kua whakakorea e tetahi kaiwhakamahi tetahi tonoemi i runga i te paetukutuku',
'a_user_requested' => 'Kua tono tetahi kaiwhakamahi i tetahi mea i runga i te paetukutuku',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Ingoa Ahua',
'asset_requested' => 'Ka tonohia te taonga',
'asset_tag' => 'Tae Taonga',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Tohua Ki To',
+ 'eol' => 'EOL',
'best_regards' => 'Ko nga whakaaro pai,',
'canceled' => 'Kua whakakorehia',
'checkin_date' => 'Rangi Titiro',
@@ -58,6 +59,7 @@ return [
'days' => 'Nga ra',
'expecting_checkin_date' => 'Ko te Whakataunga Whakataunga Whakaaro',
'expires' => 'Ka puta',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hiha',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Tuhinga',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Koahia te hono e whai ake nei hei whakahou i to: kupuhipahipa:',
'login' => 'Whakauru',
'login_first_admin' => 'Whakauru ki to taahiranga hou Snipe-IT ma te whakamahi i nga taipitopito kei raro nei:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Ingoa',
- 'new_item_checked' => 'Kua tohua tetahi mea hou i raro i to ingoa, kei raro iho nga korero.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Tuhipoka',
'password' => 'Kupuhipa',
diff --git a/resources/lang/mk-MK/admin/custom_fields/general.php b/resources/lang/mk-MK/admin/custom_fields/general.php
index 990cd702e3..45756f4660 100644
--- a/resources/lang/mk-MK/admin/custom_fields/general.php
+++ b/resources/lang/mk-MK/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Управувај',
'field' => 'Поле',
'about_fieldsets_title' => 'За Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets ви дозволуваат да креирате групи на сопствени полиња кои често се повторно употребувани за одредени типови на модели на средства.',
+ 'about_fieldsets_text' => 'Fildsets ви овозможуваат да создавате групи на прилагодени полиња што често се повторно користат за специфични типови на модели на средства.',
'custom_format' => 'Прилагоден Regex формат...',
'encrypt_field' => 'Енкриптирајте ја вредноста на ова поле во базата на податоци',
'encrypt_field_help' => 'ПРЕДУПРЕДУВАЊЕ: Шифрирањето на поле прави полето да не може да се пребарува.',
diff --git a/resources/lang/mk-MK/admin/depreciations/general.php b/resources/lang/mk-MK/admin/depreciations/general.php
index e4a0f75b80..1c54fcd2a0 100644
--- a/resources/lang/mk-MK/admin/depreciations/general.php
+++ b/resources/lang/mk-MK/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'За амортизационите планови',
- 'about_depreciations' => 'Можете да поставите амортизационен план за основните средства за да ја намалувате нивната вредност праволиниски.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Амортизациони планови',
'create' => 'Креирај амортизационен план',
'depreciation_name' => 'Име на амортизационен план',
diff --git a/resources/lang/mk-MK/admin/hardware/form.php b/resources/lang/mk-MK/admin/hardware/form.php
index ff53731de0..62559d7496 100644
--- a/resources/lang/mk-MK/admin/hardware/form.php
+++ b/resources/lang/mk-MK/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Оди на задолжени',
'select_statustype' => 'Изберете статус',
'serial' => 'Сериски број',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Статус',
'tag' => 'Код на основното средство',
'update' => 'Ажурирање на основни средства',
diff --git a/resources/lang/mk-MK/admin/hardware/general.php b/resources/lang/mk-MK/admin/hardware/general.php
index d738b29acf..3edb387f77 100644
--- a/resources/lang/mk-MK/admin/hardware/general.php
+++ b/resources/lang/mk-MK/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Побарано',
'not_requestable' => 'Не е побарливо',
'requestable_status_warning' => 'Не менувајте го побарливиот статус ',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Врати основно средство',
'pending' => 'Во чекање',
'undeployable' => 'Нераспоредливи',
diff --git a/resources/lang/mk-MK/admin/licenses/message.php b/resources/lang/mk-MK/admin/licenses/message.php
index 50b5ddb8d6..665f8e3b4f 100644
--- a/resources/lang/mk-MK/admin/licenses/message.php
+++ b/resources/lang/mk-MK/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Нема доволно достапни места за задолжување',
'mismatch' => 'Обезбеденото место за лиценца не одговара на лиценцата',
'unavailable' => 'Ова не е место достапно за задолжување.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Имаше проблем со раздолжување на лиценцата. Обидете се повторно.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Лиценцата беше успешно раздолжена'
),
diff --git a/resources/lang/mk-MK/admin/locations/message.php b/resources/lang/mk-MK/admin/locations/message.php
index 9a5db74237..238ac6648e 100644
--- a/resources/lang/mk-MK/admin/locations/message.php
+++ b/resources/lang/mk-MK/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Локацијата не постои.',
- 'assoc_users' => 'Локацијата моментално не може да се избрише затоа што постојат записи за најмалку едно средство или корисник, да има задолжено средство, или е главна локација на друга локација. Ве молиме, ажурирајте ги вашите записи за да немаат врска кон оваа локација и обидете се повторно ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Оваа локација моментално е поврзана со барем едно основно средство и не може да се избрише. Ве молиме да ги ажурирате вашите основни средства за да не ја користите оваа локација и обидете се повторно. ',
'assoc_child_loc' => 'Оваа локација моментално е родител на најмалку една локација и не може да се избрише. Ве молиме да ги ажурирате вашите локации повеќе да не ја користат оваа локација како родител и обидете се повторно. ',
'assigned_assets' => 'Доделени средства',
'current_location' => 'Моментална локација',
'open_map' => 'Отвори во :map_provider_icon мапи',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/mk-MK/admin/locations/table.php b/resources/lang/mk-MK/admin/locations/table.php
index 388e4a17bd..b88d3f43f5 100644
--- a/resources/lang/mk-MK/admin/locations/table.php
+++ b/resources/lang/mk-MK/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Креирај локација',
'update' => 'Ажурирај локација',
'print_assigned' => 'Доделено печатење',
- 'print_all_assigned' => 'Печати задолжение',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Име на локација',
'address' => 'Адреса',
'address2' => 'Адреса 2',
diff --git a/resources/lang/mk-MK/admin/models/table.php b/resources/lang/mk-MK/admin/models/table.php
index f508c5fde4..05926f8ffb 100644
--- a/resources/lang/mk-MK/admin/models/table.php
+++ b/resources/lang/mk-MK/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Модели на основни средства',
'update' => 'Ажурирај модел на основни средства',
'view' => 'Преглед на модел на основни средства',
- 'update' => 'Ажурирај модел на основни средства',
- 'clone' => 'Клонирај модел',
- 'edit' => 'Ажурирај модел',
+ 'clone' => 'Клонирај модел',
+ 'edit' => 'Ажурирај модел',
);
diff --git a/resources/lang/mk-MK/admin/users/general.php b/resources/lang/mk-MK/admin/users/general.php
index 52b23cf0eb..0f58bb48f0 100644
--- a/resources/lang/mk-MK/admin/users/general.php
+++ b/resources/lang/mk-MK/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Вклучете го овој корисник при автоматско доделување подобни лиценци',
'auto_assign_help' => 'Прескокнете го овој корисник при доделување лиценци',
'software_user' => 'Софтвер задолжен на :name',
- 'send_email_help' => 'Мора да наведете адреса на е-пошта за овој корисник да му се испратат ингеренциите. Испраќањето акредитиви преку е-пошта може да се направи само при креирање корисник. Лозинките се чуваат во еднонасочен хаш и не можат да се вратат откако ќе се зачуваат.',
'view_user' => 'Погледнете го/ја :name',
'usercsv' => 'CSV датотека',
'two_factor_admin_optin_help' => 'Вашите тековни администраторски поставки овозможуваат селективно спроведување на автентикација со два фактори. ',
diff --git a/resources/lang/mk-MK/general.php b/resources/lang/mk-MK/general.php
index 5272012c4e..744204da13 100644
--- a/resources/lang/mk-MK/general.php
+++ b/resources/lang/mk-MK/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Увоз',
'import_this_file' => 'Означи полиња и обработете ја оваа датотека',
'importing' => 'Увоз',
- 'importing_help' => 'Можете да увезувате средства, додатоци, лиценци, компоненти, потрошен материјали и корисници преку CSV -датотеката.
CSV треба да биде обележана со запирка и форматирана со заглавија што одговараат на оние во пример на CSV во документацијата.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Историја на увози',
'asset_maintenance' => 'Одржување на основни средства',
'asset_maintenance_report' => 'Извештај за одржување на основни средства',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'вкупно лиценци',
'total_accessories' => 'вкупно додатоци',
'total_consumables' => 'вкупно потрошни материјали',
+ 'total_cost' => 'Total Cost',
'type' => 'Тип',
'undeployable' => 'Не може да се распореди',
'unknown_admin' => 'Непознат Администратор',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Корисничко име',
'update' => 'Ажурирање',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Преку рокот за ревизија',
'accept' => 'Прифати :asset',
'i_accept' => 'Прифаќам',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Одбивам',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Прифати/Одбијај',
'sign_tos' => 'Потпишете се подолу за да потврдите дека ги прифаќате условите за користење:',
'clear_signature' => 'Избриши потпис',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Дозволи',
'managed_ldap' => '(Управувано преку LDAP)',
'export' => 'Извоз',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP синхронизација',
'ldap_user_sync' => 'LDAP синхронизација на корисници',
'synchronize' => 'Синхронизирај',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Обнови ги постоечките вредности?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Генерирање на ознаки за автоматско зголемување на средствата е оневозможено, така што сите редови треба да ја имаат колоната „ознака на средства“.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Забелешка: Генерирање на ознаки за автоматско зголемување на средствата е овозможено, така што ќе се создадат средства за редови кои немаат „ознака на средства“. Редовите што имаат „ознака на средства“ ќе се ажурираат со предвидените информации.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Испрати Е-пошта',
'call' => 'Повикај број',
'back_before_importing' => 'Направете резервна копија пред увоз?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Забелешки',
'item_name_var' => ':item Име',
'error_user_company' => 'Компанијата за задолжување и компанијата на предметот не се поклопуваат',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Предметите со кои ве задолжуваат припаѓаат на друга компанија и затоа неможете ни да прифатите ни да одбиете. Во молиме проверете со вашите надредени',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Одјавено на: Целосно име',
'checked_out_to_first_name' => 'Одјавено на: Име',
@@ -585,6 +595,8 @@ return [
'components' => ':count Компонента|:count Компоненти',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Повеќе информации',
'quickscan_bulk_help' => 'Потврдувањето на ова поле ќе го уреди записот на средствата за да ја одрази оваа нова локација. Оставањето непотврдено, едноставно ќе ја забележи локацијата во пописот. Забележете дека ако се потврди ова средство, нема да ја промени локацијата на лицето, средството или локацијата на која се задолжува.',
'whoops' => 'Упс!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/mk-MK/mail.php b/resources/lang/mk-MK/mail.php
index d05057cf39..89c49353b2 100644
--- a/resources/lang/mk-MK/mail.php
+++ b/resources/lang/mk-MK/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Додаток раздолжен',
- 'Accessory_Checkout_Notification' => 'Додаток задолжен',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Потврда за раздолжување додаток',
'Confirm_Asset_Checkin' => 'Потвдра за задолжување средство',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Средството со кое сте задолжени треба да се врати на :date',
'Expected_Checkin_Notification' => 'Потсетување: :name датумот за враќање наближува',
'Expected_Checkin_Report' => 'Извештај за средства кои треба да се вратат',
- 'Expiring_Assets_Report' => 'Извештај за истекување на средства.',
- 'Expiring_Licenses_Report' => 'Извештај за истекување на лиценци.',
+ 'Expiring_Assets_Report' => 'Извештај за истекување на средства',
+ 'Expiring_Licenses_Report' => 'Извештај за истекување на лиценци',
'Item_Request_Canceled' => 'Барањето е откажано',
'Item_Requested' => 'Побарана ставка',
'License_Checkin_Notification' => 'Лиценца задолжена',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Извештај за низок инвентар',
'a_user_canceled' => 'Корисникот го откажал барањето за средство на веб-страницата',
'a_user_requested' => 'Корисникот побарал средство на веб-страницата',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Корисникот го прифати средството',
'acceptance_asset_declined' => 'Корисникот го одби средството',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Име на основното средство',
'asset_requested' => 'Бараното основно средство',
'asset_tag' => 'Код на основното средство',
- 'assets_warrantee_alert' => 'Има :count средства чија гаранција истекува за :threshold дена.|Има :count средства чија гаранција истекува за :threshold дена.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Задолжен на',
+ 'eol' => 'EOL',
'best_regards' => 'Со почит,',
'canceled' => 'Откажано',
'checkin_date' => 'Датум на раздолжување',
@@ -58,6 +59,7 @@ return [
'days' => 'Денови',
'expecting_checkin_date' => 'Очекуван датум на раздолжување',
'expires' => 'Истекува',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Здраво',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Извештај за инвентар',
'item' => 'Ставка',
'item_checked_reminder' => 'Ова е потсетник дека во моментов го имате :count предмети кои не сте прифатиле или одбиле. Кликнете на врската подолу за да ја потврдите вашата одлука.',
- 'license_expiring_alert' => 'Има :count лиценца која истекува следните :threshold дена.|Има :count лиценци кои истекуваат следните :threshold дена.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Ве молиме кликнете на следната врска за да ја обновите вашата :web лозинка:',
'login' => 'Најава',
'login_first_admin' => 'Влезете во новата инсталација на Snipe-IT користејќи ги ингеренциите подолу:',
'low_inventory_alert' => 'Има :count предмети кои се под инвентарн минимум или ќе бидат наскоро.|Има :count предмети кои се под инвентарн минимум или ќе бидат наскоро.',
'min_QTY' => 'Минимална количина',
'name' => 'Име',
- 'new_item_checked' => 'Ново основно средство е задолжено на Ваше име, деталите се подолу.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Забелешки',
'password' => 'Лозинка',
diff --git a/resources/lang/ml-IN/admin/custom_fields/general.php b/resources/lang/ml-IN/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/ml-IN/admin/custom_fields/general.php
+++ b/resources/lang/ml-IN/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/ml-IN/admin/depreciations/general.php b/resources/lang/ml-IN/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/ml-IN/admin/depreciations/general.php
+++ b/resources/lang/ml-IN/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/ml-IN/admin/hardware/form.php b/resources/lang/ml-IN/admin/hardware/form.php
index 8fbd0b4e87..dc4754e71a 100644
--- a/resources/lang/ml-IN/admin/hardware/form.php
+++ b/resources/lang/ml-IN/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/ml-IN/admin/hardware/general.php b/resources/lang/ml-IN/admin/hardware/general.php
index bc972da290..09282b9190 100644
--- a/resources/lang/ml-IN/admin/hardware/general.php
+++ b/resources/lang/ml-IN/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/ml-IN/admin/licenses/message.php b/resources/lang/ml-IN/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/ml-IN/admin/licenses/message.php
+++ b/resources/lang/ml-IN/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/ml-IN/admin/locations/message.php b/resources/lang/ml-IN/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/ml-IN/admin/locations/message.php
+++ b/resources/lang/ml-IN/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ml-IN/admin/locations/table.php b/resources/lang/ml-IN/admin/locations/table.php
index d8b054b630..6f5f2573f7 100644
--- a/resources/lang/ml-IN/admin/locations/table.php
+++ b/resources/lang/ml-IN/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'സ്ഥലം ഉണ്ടാകുക',
'update' => 'സ്ഥലം പുതുക്കുക',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'സ്ഥലത്തിന്റെ പേര്',
'address' => 'വിലാസം',
'address2' => 'Address Line 2',
diff --git a/resources/lang/ml-IN/admin/models/table.php b/resources/lang/ml-IN/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/ml-IN/admin/models/table.php
+++ b/resources/lang/ml-IN/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/ml-IN/admin/users/general.php b/resources/lang/ml-IN/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/ml-IN/admin/users/general.php
+++ b/resources/lang/ml-IN/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/ml-IN/general.php b/resources/lang/ml-IN/general.php
index 8886e32d35..0b76e88710 100644
--- a/resources/lang/ml-IN/general.php
+++ b/resources/lang/ml-IN/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/ml-IN/mail.php b/resources/lang/ml-IN/mail.php
index 910c860e2c..70ee6ba42f 100644
--- a/resources/lang/ml-IN/mail.php
+++ b/resources/lang/ml-IN/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/mn-MN/admin/custom_fields/general.php b/resources/lang/mn-MN/admin/custom_fields/general.php
index bea7a40ec9..1539ade98f 100644
--- a/resources/lang/mn-MN/admin/custom_fields/general.php
+++ b/resources/lang/mn-MN/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Талбар',
'about_fieldsets_title' => 'Fieldsets-ийн тухай',
- 'about_fieldsets_text' => 'Fieldsets нь тусгай төрлийн загварт зориулж ашиглагддаг байнга ашигладаг тусгайлсан талбарын бүлгүүдийг үүсгэх боломжийг олгодог.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Энэ талбарын утгыг мэдээллийн санд оруулна уу',
'encrypt_field_help' => 'АНХААРУУЛГА: Талбарыг шифрлэх нь үүнийг ойлгомжгүй болгодог.',
diff --git a/resources/lang/mn-MN/admin/depreciations/general.php b/resources/lang/mn-MN/admin/depreciations/general.php
index 0565d5df56..01eba52d90 100644
--- a/resources/lang/mn-MN/admin/depreciations/general.php
+++ b/resources/lang/mn-MN/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Хөрөнгийн элэгдлийн тухай',
- 'about_depreciations' => 'Та шулуун шугамын элэгдэл дээр үндэслэн хөрөнгийг элэгдүүлэхийн тулд хөрөнгийн элэгдлийг үүсгэж болно.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Хөрөнгийн элэгдэл',
'create' => 'Элэгдэл бий болгох',
'depreciation_name' => 'Элэгдэл Нэр',
diff --git a/resources/lang/mn-MN/admin/hardware/form.php b/resources/lang/mn-MN/admin/hardware/form.php
index 98bad0d23f..039c85416f 100644
--- a/resources/lang/mn-MN/admin/hardware/form.php
+++ b/resources/lang/mn-MN/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Статусын төрлийг сонгоно уу',
'serial' => 'Цуваа',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Статус',
'tag' => 'Хөрөнгийн шошго',
'update' => 'Хөрөнгийн шинэчлэлт',
diff --git a/resources/lang/mn-MN/admin/hardware/general.php b/resources/lang/mn-MN/admin/hardware/general.php
index e9aa2d949c..cb72b4736b 100644
--- a/resources/lang/mn-MN/admin/hardware/general.php
+++ b/resources/lang/mn-MN/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Хүсэлт гаргасан',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Хөрөнгийг дахин сэргээх',
'pending' => 'Хүлээгдэж байна',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/mn-MN/admin/licenses/message.php b/resources/lang/mn-MN/admin/licenses/message.php
index 46ec5f9b60..28d7e3b465 100644
--- a/resources/lang/mn-MN/admin/licenses/message.php
+++ b/resources/lang/mn-MN/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Лиценз дээр асуудал гарлаа. Дахин оролдоно уу.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Лицензийг амжилттай шалгасан байна'
),
diff --git a/resources/lang/mn-MN/admin/locations/message.php b/resources/lang/mn-MN/admin/locations/message.php
index f9a3cf91ba..c4f1d6ed95 100644
--- a/resources/lang/mn-MN/admin/locations/message.php
+++ b/resources/lang/mn-MN/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Байршил байхгүй байна.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Энэ байршил нь одоогоор нэгээс доошгүй активтай холбоотой бөгөөд устгах боломжгүй байна. Энэ байршлыг лавлагаа болгохоо болихын тулд өөрийн хөрөнгийг шинэчлээд дахин оролдоно уу.',
'assoc_child_loc' => 'Энэ байршил нь одоогоор хамгийн багадаа нэг хүүхдийн байрлалын эцэг эх бөгөөд устгах боломжгүй байна. Энэ байршлыг лавшруулахгүй болгохын тулд байршлаа шинэчлээд дахин оролдоно уу.',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/mn-MN/admin/locations/table.php b/resources/lang/mn-MN/admin/locations/table.php
index 943c021006..2f7ae256c8 100644
--- a/resources/lang/mn-MN/admin/locations/table.php
+++ b/resources/lang/mn-MN/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Байршлыг үүсгэх нь',
'update' => 'Байршлын мэдээллийг шинэчлэх',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Бүх хуваарилагдсан хөрөнгийг хэвлэх',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Байршил нэр',
'address' => 'Хаяг',
'address2' => 'Address Line 2',
diff --git a/resources/lang/mn-MN/admin/models/table.php b/resources/lang/mn-MN/admin/models/table.php
index ba98bda324..2d9aece8b5 100644
--- a/resources/lang/mn-MN/admin/models/table.php
+++ b/resources/lang/mn-MN/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Хөрөнгийн загвар',
'update' => 'Активын загварыг шинэчлэх',
'view' => 'Активын загварыг харах',
- 'update' => 'Активын загварыг шинэчлэх',
- 'clone' => 'Клоны загвар',
- 'edit' => 'Загварыг засах',
+ 'clone' => 'Клоны загвар',
+ 'edit' => 'Загварыг засах',
);
diff --git a/resources/lang/mn-MN/admin/users/general.php b/resources/lang/mn-MN/admin/users/general.php
index 57a22e6ba4..1dc01becee 100644
--- a/resources/lang/mn-MN/admin/users/general.php
+++ b/resources/lang/mn-MN/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Програм хангамж: нэр',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'Хэрэглэгч: нэрийг харах',
'usercsv' => 'CSV файл',
'two_factor_admin_optin_help' => 'Таны одоогийн админ тохиргоо нь хоёр хүчин зүйлийн баталгаажуулалтыг сонгохыг зөвшөөрдөг.',
diff --git a/resources/lang/mn-MN/general.php b/resources/lang/mn-MN/general.php
index 58ecc3d1f9..22126d301b 100644
--- a/resources/lang/mn-MN/general.php
+++ b/resources/lang/mn-MN/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Импорт',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Түүхийг импортлох',
'asset_maintenance' => 'Хөрөнгийн засвар үйлчилгээ',
'asset_maintenance_report' => 'Хөрөнгийн засвар үйлчилгээний тайлан',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'нийт лиценз',
'total_accessories' => 'нийтлэг хэрэгслүүд',
'total_consumables' => 'Нийт хэрэглээ',
+ 'total_cost' => 'Total Cost',
'type' => 'Төрөл',
'undeployable' => 'Дахин ашиглах боломжгүй байна',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Нэвтрэх нэр',
'update' => 'Шинэчлэх',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Илүү мэдээлэл',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/mn-MN/mail.php b/resources/lang/mn-MN/mail.php
index 39ec8dadc8..5586b7e760 100644
--- a/resources/lang/mn-MN/mail.php
+++ b/resources/lang/mn-MN/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Хугацаа дууссан активын тайлан.',
- 'Expiring_Licenses_Report' => 'Хугацаа дуусгавар болсон лицензийн тайлан.',
+ 'Expiring_Assets_Report' => 'Хугацаа дууссан активын тайлан',
+ 'Expiring_Licenses_Report' => 'Хугацаа дуусгавар болсон лицензийн тайлан',
'Item_Request_Canceled' => 'Зүйлийн хүсэлтийг хүчингүй болгох',
'Item_Requested' => 'Барааны хүсэлт',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Бага нөөцийн тайлан',
'a_user_canceled' => 'Хэрэглэгч вэбсайт дээрх зүйл хүсэлтийг цуцалсан байна',
'a_user_requested' => 'Хэрэглэгч вэбсайт дээрх зүйлийг хүссэн байна',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Хөрөнгийн нэр',
'asset_requested' => 'Хөрөнгө хүссэн',
'asset_tag' => 'Хөрөнгийн шошго',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Томилогдсон',
+ 'eol' => 'EOL',
'best_regards' => 'Хамгийн сайн нь,',
'canceled' => 'Цуцалсан',
'checkin_date' => 'Checkin Огноо',
@@ -58,6 +59,7 @@ return [
'days' => 'Өдөр',
'expecting_checkin_date' => 'Хүлээгдэж буй хугацаа',
'expires' => 'Хугацаа дуусна',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Сайн уу',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Зүйл',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => ':count ширхэг лизенц :threshhold өдрийн дотор дуусна.|:count ширхэг лизенц :threshhold өдрийн дотор дуусна.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Вэбсайтаа шинэчлэхийн тулд дараах холбоос дээр дарна уу:',
'login' => 'Нэвтрэх',
'login_first_admin' => 'Слайд-IT-г суулгахын тулд доорх итгэмжлэлүүдийг ашиглана уу:',
'low_inventory_alert' => ':count ширхэг барааны нөөц дуусаж байна.|:count ширхэг барааны нөөц дуусаж байна.',
'min_QTY' => 'Min QTY',
'name' => 'Нэр',
- 'new_item_checked' => 'Таны нэрээр шинэ зүйл шалгасан бөгөөд дэлгэрэнгүй мэдээлэл доор байна.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Тэмдэглэл',
'password' => 'Нууц үг',
diff --git a/resources/lang/mr-IN/admin/custom_fields/general.php b/resources/lang/mr-IN/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/mr-IN/admin/custom_fields/general.php
+++ b/resources/lang/mr-IN/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/mr-IN/admin/depreciations/general.php b/resources/lang/mr-IN/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/mr-IN/admin/depreciations/general.php
+++ b/resources/lang/mr-IN/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/mr-IN/admin/hardware/form.php b/resources/lang/mr-IN/admin/hardware/form.php
index 8fbd0b4e87..dc4754e71a 100644
--- a/resources/lang/mr-IN/admin/hardware/form.php
+++ b/resources/lang/mr-IN/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/mr-IN/admin/hardware/general.php b/resources/lang/mr-IN/admin/hardware/general.php
index bc972da290..09282b9190 100644
--- a/resources/lang/mr-IN/admin/hardware/general.php
+++ b/resources/lang/mr-IN/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/mr-IN/admin/licenses/message.php b/resources/lang/mr-IN/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/mr-IN/admin/licenses/message.php
+++ b/resources/lang/mr-IN/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/mr-IN/admin/locations/message.php b/resources/lang/mr-IN/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/mr-IN/admin/locations/message.php
+++ b/resources/lang/mr-IN/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/mr-IN/admin/locations/table.php b/resources/lang/mr-IN/admin/locations/table.php
index 53176d8a4e..d7128b30f7 100644
--- a/resources/lang/mr-IN/admin/locations/table.php
+++ b/resources/lang/mr-IN/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/mr-IN/admin/models/table.php b/resources/lang/mr-IN/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/mr-IN/admin/models/table.php
+++ b/resources/lang/mr-IN/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/mr-IN/admin/users/general.php b/resources/lang/mr-IN/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/mr-IN/admin/users/general.php
+++ b/resources/lang/mr-IN/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/mr-IN/general.php b/resources/lang/mr-IN/general.php
index 1d501ee616..3c6738bbdc 100644
--- a/resources/lang/mr-IN/general.php
+++ b/resources/lang/mr-IN/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/mr-IN/mail.php b/resources/lang/mr-IN/mail.php
index 910c860e2c..70ee6ba42f 100644
--- a/resources/lang/mr-IN/mail.php
+++ b/resources/lang/mr-IN/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/ms-MY/admin/custom_fields/general.php b/resources/lang/ms-MY/admin/custom_fields/general.php
index 15c1610994..8b4f77a5f4 100644
--- a/resources/lang/ms-MY/admin/custom_fields/general.php
+++ b/resources/lang/ms-MY/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Padang',
'about_fieldsets_title' => 'Mengenai Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets membolehkan anda membuat kumpulan bidang tersuai yang sering digunakan semula digunakan untuk jenis model aset tertentu.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Sulitkan nilai medan ini dalam pangkalan data',
'encrypt_field_help' => 'AMARAN: Menyulitkan medan menjadikannya tidak dapat ditemui.',
diff --git a/resources/lang/ms-MY/admin/depreciations/general.php b/resources/lang/ms-MY/admin/depreciations/general.php
index ad416a6483..ab426dd0cc 100644
--- a/resources/lang/ms-MY/admin/depreciations/general.php
+++ b/resources/lang/ms-MY/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Mengenai Susut Nilai Harta',
- 'about_depreciations' => 'Anda boleh tetapkan susut nilai harta berdasarkan kepada penyusutan berasaskan susut nilai garisan lurus.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Susut Nilai Harta',
'create' => 'Buat Susut',
'depreciation_name' => 'Nama Susut Nilai',
diff --git a/resources/lang/ms-MY/admin/hardware/form.php b/resources/lang/ms-MY/admin/hardware/form.php
index 45ba0935bd..b3c5db877e 100644
--- a/resources/lang/ms-MY/admin/hardware/form.php
+++ b/resources/lang/ms-MY/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Pilih Jenis Status',
'serial' => 'Siri',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Tag Harta',
'update' => 'Kemaskini Harta',
diff --git a/resources/lang/ms-MY/admin/hardware/general.php b/resources/lang/ms-MY/admin/hardware/general.php
index 992a2c942f..692e944df6 100644
--- a/resources/lang/ms-MY/admin/hardware/general.php
+++ b/resources/lang/ms-MY/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Diminta',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Pulihkan Asset',
'pending' => 'Menunggu',
'undeployable' => 'Tidak dapat dipisahkan',
diff --git a/resources/lang/ms-MY/admin/licenses/message.php b/resources/lang/ms-MY/admin/licenses/message.php
index 3ff4328163..97c6ebf5e8 100644
--- a/resources/lang/ms-MY/admin/licenses/message.php
+++ b/resources/lang/ms-MY/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Ada isu semasa terima lesen. Sila cuba lagi.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Lesen berjaya diterima'
),
diff --git a/resources/lang/ms-MY/admin/locations/message.php b/resources/lang/ms-MY/admin/locations/message.php
index 7c186730e8..02f9c0971f 100644
--- a/resources/lang/ms-MY/admin/locations/message.php
+++ b/resources/lang/ms-MY/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Lokasi tidak wujud.',
- 'assoc_users' => 'Lokasi ini tidak boleh dipadam buat masa ini kerana ia merupakan lokasi rekod bagi sekurang-kurangnya satu aset atau pengguna, mempunyai aset yang ditetapkan kepadanya, atau merupakan lokasi induk kepada lokasi lain. Sila kemas kini rekod anda supaya tidak lagi merujuk kepada lokasi ini dan cuba semula.',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Lokasi ini kini dikaitkan dengan sekurang-kurangnya satu aset dan tidak boleh dihapuskan. Sila kemas kini aset anda untuk tidak merujuk lagi lokasi ini dan cuba lagi.',
'assoc_child_loc' => 'Lokasi ini adalah ibu bapa sekurang-kurangnya satu lokasi kanak-kanak dan tidak boleh dipadamkan. Sila kemas kini lokasi anda untuk tidak merujuk lokasi ini lagi dan cuba lagi.',
'assigned_assets' => 'Aset yang Ditetapkan',
'current_location' => 'Lokasi Semasa',
'open_map' => 'Buka dalam :map_provider_icon Peta',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ms-MY/admin/locations/table.php b/resources/lang/ms-MY/admin/locations/table.php
index 143f97fc80..a7165c88fb 100644
--- a/resources/lang/ms-MY/admin/locations/table.php
+++ b/resources/lang/ms-MY/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Cipta Lokasi',
'update' => 'Kemaskini Lokasi',
'print_assigned' => 'Cetakan Ditugaskan',
- 'print_all_assigned' => 'Cetak Semua yang Diperuntukkan',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nama Lokasi',
'address' => 'Alamat',
'address2' => 'Baris Alamat 2',
diff --git a/resources/lang/ms-MY/admin/models/table.php b/resources/lang/ms-MY/admin/models/table.php
index 4788bdaf11..2b8be6e37b 100644
--- a/resources/lang/ms-MY/admin/models/table.php
+++ b/resources/lang/ms-MY/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Model Harta',
'update' => 'Kemaskini Model Harta',
'view' => 'Papar Model Harta',
- 'update' => 'Kemaskini Model Harta',
- 'clone' => 'Pendua Model',
- 'edit' => 'Kemaskini Model',
+ 'clone' => 'Pendua Model',
+ 'edit' => 'Kemaskini Model',
);
diff --git a/resources/lang/ms-MY/admin/users/general.php b/resources/lang/ms-MY/admin/users/general.php
index d298a4dd36..8cfc4f39a8 100644
--- a/resources/lang/ms-MY/admin/users/general.php
+++ b/resources/lang/ms-MY/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Perisian diagihkan kepada :nama',
- 'send_email_help' => 'Anda mesti memberikan alamat e-mel untuk pengguna ini menghantar bukti kelayakan kepada mereka. Bukti kelayakan e-mel hanya boleh dilakukan pada penciptaan pengguna. Kata laluan disimpan dalam cincang sehala dan tidak boleh diambil semula setelah disimpan.',
'view_user' => 'Papar Pengguna :nama',
'usercsv' => 'Fail CSV',
'two_factor_admin_optin_help' => 'Tetapan admin semasa anda membenarkan penguatkuasaan selektif pengesahan dua faktor.',
diff --git a/resources/lang/ms-MY/general.php b/resources/lang/ms-MY/general.php
index 3fb6f505fe..1d6c18c29f 100644
--- a/resources/lang/ms-MY/general.php
+++ b/resources/lang/ms-MY/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Sejarah Import',
'asset_maintenance' => 'Penyelenggaraan Aset',
'asset_maintenance_report' => 'Laporan Penyenggaraan Aset',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'jumlah lesen',
'total_accessories' => 'jumlah aksesori',
'total_consumables' => 'jumlah barang guna habis',
+ 'total_cost' => 'Total Cost',
'type' => 'Taipkan',
'undeployable' => 'Tidak Boleh Agih',
'unknown_admin' => 'Pentadbir Tidak Dikenali',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Nama Pengguna',
'update' => 'Kemas kini',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Maklumat tambahan',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/ms-MY/mail.php b/resources/lang/ms-MY/mail.php
index 5e8fc697f3..6f05b97845 100644
--- a/resources/lang/ms-MY/mail.php
+++ b/resources/lang/ms-MY/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Laporan Aset Tamat.',
- 'Expiring_Licenses_Report' => 'Laporan Lesen Berakhir.',
+ 'Expiring_Assets_Report' => 'Laporan Aset Tamat',
+ 'Expiring_Licenses_Report' => 'Laporan Lesen Berakhir',
'Item_Request_Canceled' => 'Permintaan Item Dibatalkan',
'Item_Requested' => 'Item yang diminta',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Laporan Inventori Rendah',
'a_user_canceled' => 'Pengguna telah membatalkan permintaan item di laman web',
'a_user_requested' => 'Seorang pengguna telah meminta item di laman web',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nama Harta',
'asset_requested' => 'Aset diminta',
'asset_tag' => 'Tag Harta',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Ditugaskan untuk',
+ 'eol' => 'EOL',
'best_regards' => 'Selamat sejahtera,',
'canceled' => 'Dibatalkan',
'checkin_date' => 'Tarikh daftar masuk',
@@ -58,6 +59,7 @@ return [
'days' => 'Hari',
'expecting_checkin_date' => 'Tarikh Periksa Yang Diharapkan',
'expires' => 'Tamat tempoh',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Perkara',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Terdapat :count lesen yang akan tamat dalam tempoh :threshold hari.|Terdapat :count lesen yang akan tamat dalam tempoh :threshold hari.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Sila klik pada pautan berikut untuk mengemas kini kata laluan web anda:',
'login' => 'Log masuk',
'login_first_admin' => 'Masuk ke pemasangan Snipe-IT baru anda menggunakan kelayakan di bawah ini:',
'low_inventory_alert' => 'Terdapat :count item yang berada di bawah inventori minimum atau akan menjadi rendah. Terdapat :count item yang berada di bawah inventori minimum atau akan menjadi rendah.',
'min_QTY' => 'QTY min',
'name' => 'Nama',
- 'new_item_checked' => 'Item baru telah diperiksa di bawah nama anda, butiran di bawah.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Nota',
'password' => 'Kata Laluan',
diff --git a/resources/lang/nb-NO/admin/custom_fields/general.php b/resources/lang/nb-NO/admin/custom_fields/general.php
index 5c6832aac2..d9a20d1e93 100644
--- a/resources/lang/nb-NO/admin/custom_fields/general.php
+++ b/resources/lang/nb-NO/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Administrer',
'field' => 'Felt',
'about_fieldsets_title' => 'Om Feltsett',
- 'about_fieldsets_text' => 'Feltsett lar deg opprette grupper av egendefinerte felt som ofte gjenbrukes brukes til bestemte modelltyper.',
+ 'about_fieldsets_text' => 'Feltsett lar deg opprette grupper av egendefinerte felt som kan gjenbrukes til bestemte modelltyper.',
'custom_format' => 'Tilpasset Regex-format...',
'encrypt_field' => 'Kryptere verdien av dette feltet i databasen',
'encrypt_field_help' => 'ADVARSEL: Ved å kryptere et felt gjør du at det ikke kan søkes på.',
diff --git a/resources/lang/nb-NO/admin/depreciations/general.php b/resources/lang/nb-NO/admin/depreciations/general.php
index e7a8b1b0af..df2d42b1a0 100644
--- a/resources/lang/nb-NO/admin/depreciations/general.php
+++ b/resources/lang/nb-NO/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Om avskrivninger',
- 'about_depreciations' => 'Du kan sette opp avskrivninger for å kostnadsføre eiendeler basert på en lineær avskrivning i perioden.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Avskrivninger',
'create' => 'Opprett avskrivning',
'depreciation_name' => 'Avskrivningsnavn',
diff --git a/resources/lang/nb-NO/admin/hardware/form.php b/resources/lang/nb-NO/admin/hardware/form.php
index a042e9b9e3..bd1d1148e3 100644
--- a/resources/lang/nb-NO/admin/hardware/form.php
+++ b/resources/lang/nb-NO/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Velg statustype',
'serial' => 'Serienummer',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Eiendelsmerke',
'update' => 'Oppdater eiendel',
diff --git a/resources/lang/nb-NO/admin/hardware/general.php b/resources/lang/nb-NO/admin/hardware/general.php
index bbfda8acdd..7b09863022 100644
--- a/resources/lang/nb-NO/admin/hardware/general.php
+++ b/resources/lang/nb-NO/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Forespurt',
'not_requestable' => 'Ikke mulig å spørre etter',
'requestable_status_warning' => 'Ikke endre forespørselsstatus',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Gjenopprett eiendel',
'pending' => 'Under arbeid',
'undeployable' => 'Ikke utleverbar',
diff --git a/resources/lang/nb-NO/admin/licenses/message.php b/resources/lang/nb-NO/admin/licenses/message.php
index d788f77a2a..d03bc6fa6f 100644
--- a/resources/lang/nb-NO/admin/licenses/message.php
+++ b/resources/lang/nb-NO/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Ikke nok lisensseter tilgjengelige for utsjekking',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Det oppstod et problem under innsjekk av lisens. Vennligst prøv igjen.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Vellykket innsjekk av lisens'
),
diff --git a/resources/lang/nb-NO/admin/locations/message.php b/resources/lang/nb-NO/admin/locations/message.php
index 62c2156916..4947290079 100644
--- a/resources/lang/nb-NO/admin/locations/message.php
+++ b/resources/lang/nb-NO/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Lokasjon eksisterer ikke.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Lokasjonen er tilknyttet minst en eiendel og kan ikke slettes. Oppdater dine eiendeler slik at de ikke refererer til denne lokasjonen, og prøv igjen. ',
'assoc_child_loc' => 'Lokasjonen er overordnet til minst en underlokasjon og kan ikke slettes. Oppdater din lokasjoner til å ikke referere til denne lokasjonen, og prøv igjen. ',
'assigned_assets' => 'Tildelte ressurser',
'current_location' => 'Gjeldende plassering',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/nb-NO/admin/locations/table.php b/resources/lang/nb-NO/admin/locations/table.php
index 767d3fea4c..b1361fbf0b 100644
--- a/resources/lang/nb-NO/admin/locations/table.php
+++ b/resources/lang/nb-NO/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Opprett plassering',
'update' => 'Oppdater plassering',
'print_assigned' => 'Skriv ut tilordnede',
- 'print_all_assigned' => 'Skriv ut alle tilordnede',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Plasseringsnavn',
'address' => 'Adresse',
'address2' => 'Adresselinje 2',
diff --git a/resources/lang/nb-NO/admin/models/table.php b/resources/lang/nb-NO/admin/models/table.php
index b8c7daa389..a89cd55aea 100644
--- a/resources/lang/nb-NO/admin/models/table.php
+++ b/resources/lang/nb-NO/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modeller',
'update' => 'Endre modell',
'view' => 'Vis modell',
- 'update' => 'Endre modell',
- 'clone' => 'Klon modell',
- 'edit' => 'Endre modell',
+ 'clone' => 'Klon modell',
+ 'edit' => 'Endre modell',
);
diff --git a/resources/lang/nb-NO/admin/users/general.php b/resources/lang/nb-NO/admin/users/general.php
index 0361d2fdc8..edee30d14b 100644
--- a/resources/lang/nb-NO/admin/users/general.php
+++ b/resources/lang/nb-NO/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Inkluder denne brukeren ved automatisk tildeling av kvalifiserte lisenser',
'auto_assign_help' => 'Hopp over brukeren i autotildeling av lisenser',
'software_user' => 'Programvare utsjekket til :name',
- 'send_email_help' => 'Du må legge inn brukerens e-postadresse for å kunne sende dem innloggingsinformasjon. Sending av innloggingsinformasjon kan kun gjøres når brukeren blir opprettet. Passordet lagres på en sikker måte, slik at det ikke kan hentes opp når det er lagret.',
'view_user' => 'Vis bruker :name',
'usercsv' => 'CSV-fil',
'two_factor_admin_optin_help' => 'Gjeldende administrasjonsinnstillinger tillater selektiv håndhevelse av to-faktor autentisering. ',
@@ -53,5 +52,5 @@ return [
'next_save_user' => 'Neste: Lagre bruker',
'all_assigned_list_generation' => 'Generert på:',
'email_user_creds_on_create' => 'Send denne brukeren sin påloggingsinformasjon via e-post?',
- 'department_manager' => 'Department Manager',
+ 'department_manager' => 'Avdeling leder',
];
diff --git a/resources/lang/nb-NO/general.php b/resources/lang/nb-NO/general.php
index e149f9c24e..2818417488 100644
--- a/resources/lang/nb-NO/general.php
+++ b/resources/lang/nb-NO/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importer',
'import_this_file' => 'Kartfelter og behandle denne filen',
'importing' => 'Importerer',
- 'importing_help' => 'Du kan importere eiendeler, tilbehør, lisenser, komponenter, forbruksvarer og brukere via CSV-fil.
CSV-en må være kommaseparert og formatert med overskrifter som stemmer overens med de i eksempel-CSV i dokumentasjonen.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importhistorikk',
'asset_maintenance' => 'Vedlikehold av eiendeler',
'asset_maintenance_report' => 'Rapport Vedlikehold av eiendeler',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'lisener totalt',
'total_accessories' => 'antall tilbehør',
'total_consumables' => 'antall forbruksvarer',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Ikke utleverbar',
'unknown_admin' => 'Ukjent admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Brukernavn',
'update' => 'Oppdater',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Revisjonsfrist forfalt',
'accept' => 'Akseptér :asset',
'i_accept' => 'Jeg aksepterer',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Jeg avslår',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Godta/Avslå',
'sign_tos' => 'Signér under for å akseptere vilkårene for tjenesten:',
'clear_signature' => 'Fjern signatur',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Tillatelser',
'managed_ldap' => '(Administrert via LDAP)',
'export' => 'Eksport',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP-synk',
'ldap_user_sync' => 'Synk av LDAP-brukere',
'synchronize' => 'Synkroniser',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Oppdatere eksisterende verdier?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Automatisk generering av inkrementerende ressurskoder er skrudd av, så alle rader må ha "ressurskode"-kollonnen utfylt.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Merk: Automatisk generering av inkrementerende ressurskoder er er skrudd på, så for alle rader som ikke har fult ut "ressurskoden, så vil den bli generert autmatisk. Rader som har ressurskoden utfylt vil bli oppdatert med den gitte informasjonen.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send e-post',
'call' => 'Ring nummer',
'back_before_importing' => 'Sikkerhetskopier før importering?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item notater',
'item_name_var' => ':item navn',
'error_user_company' => 'Utsjekk firma og firmaet til ressursen stemmer ikke',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'En ressurs tildelt til deg tilhører en annen bedrift, slik at du ikke kan akseptere eller avslå den, vennligst sjekk med din leder',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Sjekket ut til: Fullt navn',
'checked_out_to_first_name' => 'Sjekket ut til: Fornavn',
@@ -585,6 +595,8 @@ return [
'components' => ':count Komponenter|:count komponenter',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Mer info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/nb-NO/mail.php b/resources/lang/nb-NO/mail.php
index 2266f29054..6f4c5b47bf 100644
--- a/resources/lang/nb-NO/mail.php
+++ b/resources/lang/nb-NO/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Tilbehør sjekket inn',
- 'Accessory_Checkout_Notification' => 'Tilbehør sjekket ut',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Bekreft innsjekk av tilbehør',
'Confirm_Asset_Checkin' => 'Bekreft innsjekk av eiendel',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,20 +21,20 @@ return [
'Expected_Checkin_Date' => 'En enhet som er sjekket ut til deg skal leveres tilbake den :date',
'Expected_Checkin_Notification' => 'Påminnelse: Innsjekkingsfrist for :name nærmer seg',
'Expected_Checkin_Report' => 'Rapport over forventet innsjekking av eiendeler',
- 'Expiring_Assets_Report' => 'Rapport utløpende eiendeler.',
- 'Expiring_Licenses_Report' => 'Rapport utløpende lisenser.',
+ 'Expiring_Assets_Report' => 'Rapport utløpende eiendeler',
+ 'Expiring_Licenses_Report' => 'Rapport utløpende lisenser',
'Item_Request_Canceled' => 'Forespørsel av enhet avbrutt',
'Item_Requested' => 'Forespurt enhet',
'License_Checkin_Notification' => 'Lisens sjekket inn',
'License_Checkout_Notification' => 'Lisens sjekket ut',
- 'license_for' => 'License for',
+ 'license_for' => 'Lisens for',
'Low_Inventory_Report' => 'Rapport lav lagerbeholdning',
'a_user_canceled' => 'Brukeren har avbrutt en element-forespørsel på webområdet',
'a_user_requested' => 'En bruker har bedt om et element på webområdet',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'En bruker har godtatt et element',
'acceptance_asset_declined' => 'En bruker har avvist et element',
- 'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
+ 'send_pdf_copy' => 'Send en kopi av denne godkjenningen til min epost adresse',
'accessory_name' => 'Navn tilbehør',
'additional_notes' => 'Flere notater',
'admin_has_created' => 'An administrator has created an account for you on the :web website. Please find your username below, and click on the link to set a password.',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Navn',
'asset_requested' => 'Eiendel forespurt',
'asset_tag' => 'Eiendelsmerke',
- 'assets_warrantee_alert' => 'En eiendel har garanti som utløper innenfor de neste :treshold dagene.|:count eiendeler har garanti som utløper innenfor de neste :tershold dagene.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Tilordnet til',
+ 'eol' => 'Levetid',
'best_regards' => 'Med vennlig hilsen,',
'canceled' => 'Avbrutt',
'checkin_date' => 'Innsjekkdato',
@@ -58,8 +59,9 @@ return [
'days' => 'Dager',
'expecting_checkin_date' => 'Forventet dato for innsjekk',
'expires' => 'Utløper',
- 'following_accepted' => 'The following was accepted',
- 'following_declined' => 'The following was declined',
+ 'terminates' => 'Terminates',
+ 'following_accepted' => 'Følgende ble akseptert',
+ 'following_declined' => 'Følgende ble avslått',
'hello' => 'Hallo',
'hi' => 'Hei',
'i_have_read' => 'Jeg har lest og godtar vilkårene for bruk, og har mottatt denne enheten.',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Lagerbeholdnings rapport',
'item' => 'Enhet',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => ':count lisens utløper de neste :threshold dagene.|:count lisenser utløper de neste :threshold dagene.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Klikk på følgende link for å bekrefte din :web passord:',
'login' => 'Logg inn',
'login_first_admin' => 'Logg inn på din nye Snipe-IT-installasjon ved å bruke kontoen nedenfor:',
'low_inventory_alert' => ':count enhet er under minimumnivå for beholdning, eller vil snart nå dette nivået.|:count enheter er under minimumnivå for beholdning, eller vil snart nå dette nivået.',
'min_QTY' => 'Min. antall',
'name' => 'Navn',
- 'new_item_checked' => 'En ny enhet har blitt sjekket ut under ditt navn, detaljer nedenfor.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notater',
'password' => 'Passord',
diff --git a/resources/lang/ne-NP/admin/custom_fields/general.php b/resources/lang/ne-NP/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/ne-NP/admin/custom_fields/general.php
+++ b/resources/lang/ne-NP/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/ne-NP/admin/depreciations/general.php b/resources/lang/ne-NP/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/ne-NP/admin/depreciations/general.php
+++ b/resources/lang/ne-NP/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/ne-NP/admin/hardware/form.php b/resources/lang/ne-NP/admin/hardware/form.php
index 8fbd0b4e87..dc4754e71a 100644
--- a/resources/lang/ne-NP/admin/hardware/form.php
+++ b/resources/lang/ne-NP/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/ne-NP/admin/hardware/general.php b/resources/lang/ne-NP/admin/hardware/general.php
index bc972da290..09282b9190 100644
--- a/resources/lang/ne-NP/admin/hardware/general.php
+++ b/resources/lang/ne-NP/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/ne-NP/admin/licenses/message.php b/resources/lang/ne-NP/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/ne-NP/admin/licenses/message.php
+++ b/resources/lang/ne-NP/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/ne-NP/admin/locations/message.php b/resources/lang/ne-NP/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/ne-NP/admin/locations/message.php
+++ b/resources/lang/ne-NP/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ne-NP/admin/locations/table.php b/resources/lang/ne-NP/admin/locations/table.php
index 53176d8a4e..d7128b30f7 100644
--- a/resources/lang/ne-NP/admin/locations/table.php
+++ b/resources/lang/ne-NP/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/ne-NP/admin/models/table.php b/resources/lang/ne-NP/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/ne-NP/admin/models/table.php
+++ b/resources/lang/ne-NP/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/ne-NP/admin/users/general.php b/resources/lang/ne-NP/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/ne-NP/admin/users/general.php
+++ b/resources/lang/ne-NP/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/ne-NP/general.php b/resources/lang/ne-NP/general.php
index 1d501ee616..3c6738bbdc 100644
--- a/resources/lang/ne-NP/general.php
+++ b/resources/lang/ne-NP/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/ne-NP/mail.php b/resources/lang/ne-NP/mail.php
index 910c860e2c..70ee6ba42f 100644
--- a/resources/lang/ne-NP/mail.php
+++ b/resources/lang/ne-NP/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/nl-NL/admin/depreciations/general.php b/resources/lang/nl-NL/admin/depreciations/general.php
index d700807ce3..dfdae72259 100644
--- a/resources/lang/nl-NL/admin/depreciations/general.php
+++ b/resources/lang/nl-NL/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Over afschrijvingen van Asset',
- 'about_depreciations' => 'U kan de asset-afschrijving instellen om assets af te schrijven op basis van lineaire afschrijving.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset afschrijvingen',
'create' => 'Afschrijving aanmaken',
'depreciation_name' => 'Afschrijvingsnaam',
diff --git a/resources/lang/nl-NL/admin/hardware/form.php b/resources/lang/nl-NL/admin/hardware/form.php
index 3588dd95ca..4276fd4599 100644
--- a/resources/lang/nl-NL/admin/hardware/form.php
+++ b/resources/lang/nl-NL/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Ga naar uitcheckt naar',
'select_statustype' => 'Selecteer status type',
'serial' => 'Serienummer',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Assettag',
'update' => 'Asset update',
diff --git a/resources/lang/nl-NL/admin/hardware/general.php b/resources/lang/nl-NL/admin/hardware/general.php
index b844a6a7da..e62400a06a 100644
--- a/resources/lang/nl-NL/admin/hardware/general.php
+++ b/resources/lang/nl-NL/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Aangevraagd',
'not_requestable' => 'Niet aanvraagbaar',
'requestable_status_warning' => 'Wijzig de status van de aanvraag niet',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Herstel Asset',
'pending' => 'In behandeling',
'undeployable' => 'Niet uitgeefbaar',
diff --git a/resources/lang/nl-NL/admin/licenses/message.php b/resources/lang/nl-NL/admin/licenses/message.php
index 96da22c94f..bac8f761d1 100644
--- a/resources/lang/nl-NL/admin/licenses/message.php
+++ b/resources/lang/nl-NL/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Niet genoeg licentieplaatsen beschikbaar voor de kassa',
'mismatch' => 'De opgegeven licentie werkplek komt niet overeen met de licentie',
'unavailable' => 'Deze licentie is niet beschikbaar voor uitchecken.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Er was een probleem met het inchecken van deze licentie. Probeer het opnieuw.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'De licentie is met succes ingecheckt'
),
diff --git a/resources/lang/nl-NL/admin/locations/message.php b/resources/lang/nl-NL/admin/locations/message.php
index 18b2245209..b3e94b0693 100644
--- a/resources/lang/nl-NL/admin/locations/message.php
+++ b/resources/lang/nl-NL/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Locatie bestaat niet.',
- 'assoc_users' => 'Deze locatie is momenteel niet verwijderbaar omdat het de locatie is voor ten minste één product of gebruiker, heeft de assets toegewezen of is de bovenliggende locatie van een andere locatie. Update uw gegevens zodat deze locatie niet langer gebruikt wordt en probeer het opnieuw ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Deze locatie is momenteel gekoppeld met tenminste één asset en kan hierdoor niet worden verwijderd. Update je assets die niet meer bij deze locatie en probeer het opnieuw. ',
'assoc_child_loc' => 'Deze locatie is momenteen de ouder van ten minste één kind locatie en kan hierdoor niet worden verwijderd. Update je locaties bij die niet meer naar deze locatie verwijzen en probeer het opnieuw. ',
'assigned_assets' => 'Toegewezen activa',
'current_location' => 'Huidige locatie',
'open_map' => 'Open in :map_provider_icon kaarten',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/nl-NL/admin/locations/table.php b/resources/lang/nl-NL/admin/locations/table.php
index 19e8e7ac08..4bf934dd78 100644
--- a/resources/lang/nl-NL/admin/locations/table.php
+++ b/resources/lang/nl-NL/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Locatie aanmaken',
'update' => 'Locatie bijwerken',
'print_assigned' => 'Print wat toegewezen is',
- 'print_all_assigned' => 'Print alles wat toegewezen is',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Locatie naam',
'address' => 'Adres',
'address2' => 'Adresregel 2',
diff --git a/resources/lang/nl-NL/admin/models/table.php b/resources/lang/nl-NL/admin/models/table.php
index e4cf9156f8..b346a383e7 100644
--- a/resources/lang/nl-NL/admin/models/table.php
+++ b/resources/lang/nl-NL/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset modellen',
'update' => 'Wijzig asset model',
'view' => 'Bekijk asset model',
- 'update' => 'Wijzig asset model',
- 'clone' => 'Kopieer model',
- 'edit' => 'Bewerk model',
+ 'clone' => 'Kopieer model',
+ 'edit' => 'Bewerk model',
);
diff --git a/resources/lang/nl-NL/admin/users/general.php b/resources/lang/nl-NL/admin/users/general.php
index a37a53970e..e093d4fa9c 100644
--- a/resources/lang/nl-NL/admin/users/general.php
+++ b/resources/lang/nl-NL/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Neem deze gebruiker op bij het automatisch toewijzen van in aanmerking komende licenties',
'auto_assign_help' => 'Automatisch licentie toewijzen overslaan voor deze gebruiker',
'software_user' => 'Software is uitgecheckt aan :name',
- 'send_email_help' => 'U moet een e-mailadres opgeven voor deze gebruiker om hen inloggegevens te sturen. E-mailen van inloggegevens kan alleen worden gedaan bij het maken van gebruikers. Wachtwoorden worden in eenrichtingshash opgeslagen en kunnen niet worden opgehaald zodra ze zijn opgeslagen.',
'view_user' => 'Bekijk gebruiker :name',
'usercsv' => 'CSV bestand',
'two_factor_admin_optin_help' => 'De huidige beheer instellingen staan selectief gebruik van twee factor authenticatie toe. ',
diff --git a/resources/lang/nl-NL/general.php b/resources/lang/nl-NL/general.php
index 2366f33fe2..4d786ed71a 100644
--- a/resources/lang/nl-NL/general.php
+++ b/resources/lang/nl-NL/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importeer',
'import_this_file' => 'Kaart velden en verwerk dit bestand',
'importing' => 'Importeren',
- 'importing_help' => 'U kunt assets, accessoires, licenties, componenten, verbruiksartikelen en gebruikers importeren via het CSV-bestand.
De CSV moet door komma\'s worden gescheiden en met koppen die overeenkomen met de koppen in de voorbeeld CSV\'s in de documentatie.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import historie',
'asset_maintenance' => 'Asset onderhoud',
'asset_maintenance_report' => 'Asset onderhoud rapport',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'totaal licenties',
'total_accessories' => 'totaal accessoires',
'total_consumables' => 'totaal verbruiksartikelen',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Niet-uitgeefbaar',
'unknown_admin' => 'Onbekende Beheerder',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Gebruikersnaam',
'update' => 'Bijwerken',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Over tijd voor audit',
'accept' => 'Accepteer :asset',
'i_accept' => 'Ik accepteer',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Ik ga niet akkoord',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accepteren/weigeren',
'sign_tos' => 'Teken hieronder om aan te geven dat je akkoord gaat met de servicevoorwaarden:',
'clear_signature' => 'Verwijder handtekening',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Machtigingen',
'managed_ldap' => '(Beheerd via LDAP)',
'export' => 'Exporteren',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Synchronisatie',
'ldap_user_sync' => 'LDAP gebruikers synchronisatie',
'synchronize' => 'Synchroniseer',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Bestaande waarden bijwerken?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Het genereren van automatisch oplopende asset-tags is uitgeschakeld, dus in alle rijen moet de kolom \'Asset-tag\' zijn ingevuld.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Opmerking: Het genereren van automatisch oplopende asset-tags is ingeschakeld zodat assets worden gemaakt voor rijen waarin de "Asset-tag" niet is ingevuld. Rijen waarin de "Asset Tag" is ingevuld, worden bijgewerkt met de opgegeven informatie.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'E-mail verzenden',
'call' => 'Bel nummer',
'back_before_importing' => 'Back-up maken voordat u importeert?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item notities',
'item_name_var' => ':item naam',
'error_user_company' => 'Uitcheck bestemming en activa van bedrijf komen niet overeen',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Een aan u toegewezen asset is eigendom van een ander bedrijf. U kunt dit dus niet accepteren of weigeren. Neem contact op met uw manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Uitgecheckt aan: Volledige naam',
'checked_out_to_first_name' => 'Uitgecheckt aan: Voornaam',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count componenten',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Meer Info',
'quickscan_bulk_help' => 'Als u dit selectievakje aanvinkt, wordt het asset record bewerkt om deze nieuwe locatie te weerspiegelen. Als u het uitgevinkt laat staan ziet u de locatie in het audit logboek. Let op dat als dit asset is uitgecheckt, dan zal de locatie van de persoon, product of locatie waar het uitgecheckt is niet veranderen.',
'whoops' => 'Oeps!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Standaard',
'default_blue' => 'Standaard Blauw',
'blue_dark' => 'Blauw (Donkere Modus)',
- 'green' => 'Groen Donker',
+ 'green' => 'Green',
'green_dark' => 'Groen (Donkere Modus)',
- 'red' => 'Rood Donker',
+ 'red' => 'Red',
'red_dark' => 'Rood (Donkere Modus)',
- 'orange' => 'Oranje Donker',
+ 'orange' => 'Orange',
'orange_dark' => 'Oranje (Donkere Modus)',
'black' => 'Zwart',
'black_dark' => 'Zwart (Donkere Modus)',
diff --git a/resources/lang/nl-NL/mail.php b/resources/lang/nl-NL/mail.php
index 920839e7a8..209cbae9db 100644
--- a/resources/lang/nl-NL/mail.php
+++ b/resources/lang/nl-NL/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessoire ingecheckt',
- 'Accessory_Checkout_Notification' => 'Accessoire uitgecheckt',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessoire check in bevestiging',
'Confirm_Asset_Checkin' => 'Asset check in bevestiging',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Een asset uitgecheckt aan jou moet worden ingecheckt op :date',
'Expected_Checkin_Notification' => 'Herinnering: :name check in deadline nadert',
'Expected_Checkin_Report' => 'Verwachte asset check in rapport',
- 'Expiring_Assets_Report' => 'Rapport van verlopen activa',
- 'Expiring_Licenses_Report' => 'Rapportage verlopende licenties.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Rapportage verlopende licenties',
'Item_Request_Canceled' => 'Item aanvraag geannuleerd',
'Item_Requested' => 'Item aangevraagd',
'License_Checkin_Notification' => 'Licentie ingecheckt',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Lage inventarisrapport',
'a_user_canceled' => 'Een gebruiker heeft een verzoek om een item op de website geannuleerd',
'a_user_requested' => 'Een gebruiker heeft een item op de website aangevraagd',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Een gebruiker heeft een artikel geaccepteerd',
'acceptance_asset_declined' => 'Een gebruiker heeft een artikel geweigerd',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset naam',
'asset_requested' => 'Asset aangevraagd',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'Er is :count asset met een garantie die afloopt in de volgende :threshold dagen.|Er zijn :count assets met garanties die vervallen in de volgende :threshold dagen.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Toegewezen aan',
+ 'eol' => 'EOL',
'best_regards' => 'Met vriendelijke groeten,',
'canceled' => 'Geannuleerd',
'checkin_date' => 'Incheck datum',
@@ -58,6 +59,7 @@ return [
'days' => 'Dagen',
'expecting_checkin_date' => 'Verwachte incheck datum',
'expires' => 'Verloopt',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hallo',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventarisrapport',
'item' => 'Item',
'item_checked_reminder' => 'Dit is een herinnering dat je op dit moment :count items uitgecheckt hebt die je niet hebt geaccepteerd of geweigerd. Klik op de onderstaande link om uw besluit te bevestigen.',
- 'license_expiring_alert' => 'Er is :count licentie die afloopt in de volgende :threshold dagen.|Er zijn :count licenties die vervallen in de volgende :threshold dagen.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Klik op de volgende link om je :web wachtwoord te vernieuwen:',
'login' => 'Inloggen',
'login_first_admin' => 'Meld u aan op uw nieuwe Snipe-IT installatie met onderstaande inloggegevens:',
'low_inventory_alert' => 'Er is :count item dat onder de minimumvoorraad ligt of binnenkort laag zal zijn.|Er zijn :count items die onder de minimumvoorraad zijn of binnenkort laag zullen zijn.',
'min_QTY' => 'Minimale hoeveelheid',
'name' => 'Naam',
- 'new_item_checked' => 'Een nieuw item is onder uw naam uitgecheckt, details staan hieronder.',
- 'new_item_checked_with_acceptance' => 'Er is een nieuw activa onder uw naam uitgecheckt dat moet worden geaccepteerd. Hieronder vindt u de details.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'Er is onlangs een activa onder uw naam uitgeleend dat moet worden geaccepteerd. Hieronder vindt u de details.',
'notes' => 'Opmerkingen',
'password' => 'Wachtwoord',
diff --git a/resources/lang/nn-NO/admin/custom_fields/general.php b/resources/lang/nn-NO/admin/custom_fields/general.php
index 5c6832aac2..d9a20d1e93 100644
--- a/resources/lang/nn-NO/admin/custom_fields/general.php
+++ b/resources/lang/nn-NO/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Administrer',
'field' => 'Felt',
'about_fieldsets_title' => 'Om Feltsett',
- 'about_fieldsets_text' => 'Feltsett lar deg opprette grupper av egendefinerte felt som ofte gjenbrukes brukes til bestemte modelltyper.',
+ 'about_fieldsets_text' => 'Feltsett lar deg opprette grupper av egendefinerte felt som kan gjenbrukes til bestemte modelltyper.',
'custom_format' => 'Tilpasset Regex-format...',
'encrypt_field' => 'Kryptere verdien av dette feltet i databasen',
'encrypt_field_help' => 'ADVARSEL: Ved å kryptere et felt gjør du at det ikke kan søkes på.',
diff --git a/resources/lang/nn-NO/admin/depreciations/general.php b/resources/lang/nn-NO/admin/depreciations/general.php
index e7a8b1b0af..df2d42b1a0 100644
--- a/resources/lang/nn-NO/admin/depreciations/general.php
+++ b/resources/lang/nn-NO/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Om avskrivninger',
- 'about_depreciations' => 'Du kan sette opp avskrivninger for å kostnadsføre eiendeler basert på en lineær avskrivning i perioden.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Avskrivninger',
'create' => 'Opprett avskrivning',
'depreciation_name' => 'Avskrivningsnavn',
diff --git a/resources/lang/nn-NO/admin/hardware/form.php b/resources/lang/nn-NO/admin/hardware/form.php
index a042e9b9e3..bd1d1148e3 100644
--- a/resources/lang/nn-NO/admin/hardware/form.php
+++ b/resources/lang/nn-NO/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Velg statustype',
'serial' => 'Serienummer',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Eiendelsmerke',
'update' => 'Oppdater eiendel',
diff --git a/resources/lang/nn-NO/admin/hardware/general.php b/resources/lang/nn-NO/admin/hardware/general.php
index bbfda8acdd..7b09863022 100644
--- a/resources/lang/nn-NO/admin/hardware/general.php
+++ b/resources/lang/nn-NO/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Forespurt',
'not_requestable' => 'Ikke mulig å spørre etter',
'requestable_status_warning' => 'Ikke endre forespørselsstatus',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Gjenopprett eiendel',
'pending' => 'Under arbeid',
'undeployable' => 'Ikke utleverbar',
diff --git a/resources/lang/nn-NO/admin/licenses/message.php b/resources/lang/nn-NO/admin/licenses/message.php
index d788f77a2a..d03bc6fa6f 100644
--- a/resources/lang/nn-NO/admin/licenses/message.php
+++ b/resources/lang/nn-NO/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Ikke nok lisensseter tilgjengelige for utsjekking',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Det oppstod et problem under innsjekk av lisens. Vennligst prøv igjen.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Vellykket innsjekk av lisens'
),
diff --git a/resources/lang/nn-NO/admin/locations/message.php b/resources/lang/nn-NO/admin/locations/message.php
index 62c2156916..4947290079 100644
--- a/resources/lang/nn-NO/admin/locations/message.php
+++ b/resources/lang/nn-NO/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Lokasjon eksisterer ikke.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Lokasjonen er tilknyttet minst en eiendel og kan ikke slettes. Oppdater dine eiendeler slik at de ikke refererer til denne lokasjonen, og prøv igjen. ',
'assoc_child_loc' => 'Lokasjonen er overordnet til minst en underlokasjon og kan ikke slettes. Oppdater din lokasjoner til å ikke referere til denne lokasjonen, og prøv igjen. ',
'assigned_assets' => 'Tildelte ressurser',
'current_location' => 'Gjeldende plassering',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/nn-NO/admin/locations/table.php b/resources/lang/nn-NO/admin/locations/table.php
index 767d3fea4c..b1361fbf0b 100644
--- a/resources/lang/nn-NO/admin/locations/table.php
+++ b/resources/lang/nn-NO/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Opprett plassering',
'update' => 'Oppdater plassering',
'print_assigned' => 'Skriv ut tilordnede',
- 'print_all_assigned' => 'Skriv ut alle tilordnede',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Plasseringsnavn',
'address' => 'Adresse',
'address2' => 'Adresselinje 2',
diff --git a/resources/lang/nn-NO/admin/models/table.php b/resources/lang/nn-NO/admin/models/table.php
index b8c7daa389..a89cd55aea 100644
--- a/resources/lang/nn-NO/admin/models/table.php
+++ b/resources/lang/nn-NO/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modeller',
'update' => 'Endre modell',
'view' => 'Vis modell',
- 'update' => 'Endre modell',
- 'clone' => 'Klon modell',
- 'edit' => 'Endre modell',
+ 'clone' => 'Klon modell',
+ 'edit' => 'Endre modell',
);
diff --git a/resources/lang/nn-NO/admin/users/general.php b/resources/lang/nn-NO/admin/users/general.php
index 0361d2fdc8..c83dc8006c 100644
--- a/resources/lang/nn-NO/admin/users/general.php
+++ b/resources/lang/nn-NO/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Inkluder denne brukeren ved automatisk tildeling av kvalifiserte lisenser',
'auto_assign_help' => 'Hopp over brukeren i autotildeling av lisenser',
'software_user' => 'Programvare utsjekket til :name',
- 'send_email_help' => 'Du må legge inn brukerens e-postadresse for å kunne sende dem innloggingsinformasjon. Sending av innloggingsinformasjon kan kun gjøres når brukeren blir opprettet. Passordet lagres på en sikker måte, slik at det ikke kan hentes opp når det er lagret.',
'view_user' => 'Vis bruker :name',
'usercsv' => 'CSV-fil',
'two_factor_admin_optin_help' => 'Gjeldende administrasjonsinnstillinger tillater selektiv håndhevelse av to-faktor autentisering. ',
diff --git a/resources/lang/nn-NO/general.php b/resources/lang/nn-NO/general.php
index e149f9c24e..2818417488 100644
--- a/resources/lang/nn-NO/general.php
+++ b/resources/lang/nn-NO/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importer',
'import_this_file' => 'Kartfelter og behandle denne filen',
'importing' => 'Importerer',
- 'importing_help' => 'Du kan importere eiendeler, tilbehør, lisenser, komponenter, forbruksvarer og brukere via CSV-fil.
CSV-en må være kommaseparert og formatert med overskrifter som stemmer overens med de i eksempel-CSV i dokumentasjonen.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importhistorikk',
'asset_maintenance' => 'Vedlikehold av eiendeler',
'asset_maintenance_report' => 'Rapport Vedlikehold av eiendeler',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'lisener totalt',
'total_accessories' => 'antall tilbehør',
'total_consumables' => 'antall forbruksvarer',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Ikke utleverbar',
'unknown_admin' => 'Ukjent admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Brukernavn',
'update' => 'Oppdater',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Revisjonsfrist forfalt',
'accept' => 'Akseptér :asset',
'i_accept' => 'Jeg aksepterer',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Jeg avslår',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Godta/Avslå',
'sign_tos' => 'Signér under for å akseptere vilkårene for tjenesten:',
'clear_signature' => 'Fjern signatur',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Tillatelser',
'managed_ldap' => '(Administrert via LDAP)',
'export' => 'Eksport',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP-synk',
'ldap_user_sync' => 'Synk av LDAP-brukere',
'synchronize' => 'Synkroniser',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Oppdatere eksisterende verdier?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Automatisk generering av inkrementerende ressurskoder er skrudd av, så alle rader må ha "ressurskode"-kollonnen utfylt.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Merk: Automatisk generering av inkrementerende ressurskoder er er skrudd på, så for alle rader som ikke har fult ut "ressurskoden, så vil den bli generert autmatisk. Rader som har ressurskoden utfylt vil bli oppdatert med den gitte informasjonen.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send e-post',
'call' => 'Ring nummer',
'back_before_importing' => 'Sikkerhetskopier før importering?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item notater',
'item_name_var' => ':item navn',
'error_user_company' => 'Utsjekk firma og firmaet til ressursen stemmer ikke',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'En ressurs tildelt til deg tilhører en annen bedrift, slik at du ikke kan akseptere eller avslå den, vennligst sjekk med din leder',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Sjekket ut til: Fullt navn',
'checked_out_to_first_name' => 'Sjekket ut til: Fornavn',
@@ -585,6 +595,8 @@ return [
'components' => ':count Komponenter|:count komponenter',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Mer info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/nn-NO/mail.php b/resources/lang/nn-NO/mail.php
index 2266f29054..7faada9974 100644
--- a/resources/lang/nn-NO/mail.php
+++ b/resources/lang/nn-NO/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Tilbehør sjekket inn',
- 'Accessory_Checkout_Notification' => 'Tilbehør sjekket ut',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Bekreft innsjekk av tilbehør',
'Confirm_Asset_Checkin' => 'Bekreft innsjekk av eiendel',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'En enhet som er sjekket ut til deg skal leveres tilbake den :date',
'Expected_Checkin_Notification' => 'Påminnelse: Innsjekkingsfrist for :name nærmer seg',
'Expected_Checkin_Report' => 'Rapport over forventet innsjekking av eiendeler',
- 'Expiring_Assets_Report' => 'Rapport utløpende eiendeler.',
- 'Expiring_Licenses_Report' => 'Rapport utløpende lisenser.',
+ 'Expiring_Assets_Report' => 'Rapport utløpende eiendeler',
+ 'Expiring_Licenses_Report' => 'Rapport utløpende lisenser',
'Item_Request_Canceled' => 'Forespørsel av enhet avbrutt',
'Item_Requested' => 'Forespurt enhet',
'License_Checkin_Notification' => 'Lisens sjekket inn',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Rapport lav lagerbeholdning',
'a_user_canceled' => 'Brukeren har avbrutt en element-forespørsel på webområdet',
'a_user_requested' => 'En bruker har bedt om et element på webområdet',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'En bruker har godtatt et element',
'acceptance_asset_declined' => 'En bruker har avvist et element',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Navn',
'asset_requested' => 'Eiendel forespurt',
'asset_tag' => 'Eiendelsmerke',
- 'assets_warrantee_alert' => 'En eiendel har garanti som utløper innenfor de neste :treshold dagene.|:count eiendeler har garanti som utløper innenfor de neste :tershold dagene.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Tilordnet til',
+ 'eol' => 'Levetid',
'best_regards' => 'Med vennlig hilsen,',
'canceled' => 'Avbrutt',
'checkin_date' => 'Innsjekkdato',
@@ -58,6 +59,7 @@ return [
'days' => 'Dager',
'expecting_checkin_date' => 'Forventet dato for innsjekk',
'expires' => 'Utløper',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hallo',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Lagerbeholdnings rapport',
'item' => 'Enhet',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => ':count lisens utløper de neste :threshold dagene.|:count lisenser utløper de neste :threshold dagene.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Klikk på følgende link for å bekrefte din :web passord:',
'login' => 'Logg inn',
'login_first_admin' => 'Logg inn på din nye Snipe-IT-installasjon ved å bruke kontoen nedenfor:',
'low_inventory_alert' => ':count enhet er under minimumnivå for beholdning, eller vil snart nå dette nivået.|:count enheter er under minimumnivå for beholdning, eller vil snart nå dette nivået.',
'min_QTY' => 'Min. antall',
'name' => 'Navn',
- 'new_item_checked' => 'En ny enhet har blitt sjekket ut under ditt navn, detaljer nedenfor.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notater',
'password' => 'Passord',
diff --git a/resources/lang/no-NO/admin/custom_fields/general.php b/resources/lang/no-NO/admin/custom_fields/general.php
index 5c6832aac2..d9a20d1e93 100644
--- a/resources/lang/no-NO/admin/custom_fields/general.php
+++ b/resources/lang/no-NO/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Administrer',
'field' => 'Felt',
'about_fieldsets_title' => 'Om Feltsett',
- 'about_fieldsets_text' => 'Feltsett lar deg opprette grupper av egendefinerte felt som ofte gjenbrukes brukes til bestemte modelltyper.',
+ 'about_fieldsets_text' => 'Feltsett lar deg opprette grupper av egendefinerte felt som kan gjenbrukes til bestemte modelltyper.',
'custom_format' => 'Tilpasset Regex-format...',
'encrypt_field' => 'Kryptere verdien av dette feltet i databasen',
'encrypt_field_help' => 'ADVARSEL: Ved å kryptere et felt gjør du at det ikke kan søkes på.',
diff --git a/resources/lang/no-NO/admin/depreciations/general.php b/resources/lang/no-NO/admin/depreciations/general.php
index e7a8b1b0af..df2d42b1a0 100644
--- a/resources/lang/no-NO/admin/depreciations/general.php
+++ b/resources/lang/no-NO/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Om avskrivninger',
- 'about_depreciations' => 'Du kan sette opp avskrivninger for å kostnadsføre eiendeler basert på en lineær avskrivning i perioden.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Avskrivninger',
'create' => 'Opprett avskrivning',
'depreciation_name' => 'Avskrivningsnavn',
diff --git a/resources/lang/no-NO/admin/hardware/form.php b/resources/lang/no-NO/admin/hardware/form.php
index a042e9b9e3..bd1d1148e3 100644
--- a/resources/lang/no-NO/admin/hardware/form.php
+++ b/resources/lang/no-NO/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Velg statustype',
'serial' => 'Serienummer',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Eiendelsmerke',
'update' => 'Oppdater eiendel',
diff --git a/resources/lang/no-NO/admin/hardware/general.php b/resources/lang/no-NO/admin/hardware/general.php
index bbfda8acdd..7b09863022 100644
--- a/resources/lang/no-NO/admin/hardware/general.php
+++ b/resources/lang/no-NO/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Forespurt',
'not_requestable' => 'Ikke mulig å spørre etter',
'requestable_status_warning' => 'Ikke endre forespørselsstatus',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Gjenopprett eiendel',
'pending' => 'Under arbeid',
'undeployable' => 'Ikke utleverbar',
diff --git a/resources/lang/no-NO/admin/licenses/message.php b/resources/lang/no-NO/admin/licenses/message.php
index d788f77a2a..d03bc6fa6f 100644
--- a/resources/lang/no-NO/admin/licenses/message.php
+++ b/resources/lang/no-NO/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Ikke nok lisensseter tilgjengelige for utsjekking',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Det oppstod et problem under innsjekk av lisens. Vennligst prøv igjen.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Vellykket innsjekk av lisens'
),
diff --git a/resources/lang/no-NO/admin/locations/message.php b/resources/lang/no-NO/admin/locations/message.php
index 62c2156916..4947290079 100644
--- a/resources/lang/no-NO/admin/locations/message.php
+++ b/resources/lang/no-NO/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Lokasjon eksisterer ikke.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Lokasjonen er tilknyttet minst en eiendel og kan ikke slettes. Oppdater dine eiendeler slik at de ikke refererer til denne lokasjonen, og prøv igjen. ',
'assoc_child_loc' => 'Lokasjonen er overordnet til minst en underlokasjon og kan ikke slettes. Oppdater din lokasjoner til å ikke referere til denne lokasjonen, og prøv igjen. ',
'assigned_assets' => 'Tildelte ressurser',
'current_location' => 'Gjeldende plassering',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/no-NO/admin/locations/table.php b/resources/lang/no-NO/admin/locations/table.php
index 767d3fea4c..b1361fbf0b 100644
--- a/resources/lang/no-NO/admin/locations/table.php
+++ b/resources/lang/no-NO/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Opprett plassering',
'update' => 'Oppdater plassering',
'print_assigned' => 'Skriv ut tilordnede',
- 'print_all_assigned' => 'Skriv ut alle tilordnede',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Plasseringsnavn',
'address' => 'Adresse',
'address2' => 'Adresselinje 2',
diff --git a/resources/lang/no-NO/admin/models/table.php b/resources/lang/no-NO/admin/models/table.php
index b8c7daa389..a89cd55aea 100644
--- a/resources/lang/no-NO/admin/models/table.php
+++ b/resources/lang/no-NO/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modeller',
'update' => 'Endre modell',
'view' => 'Vis modell',
- 'update' => 'Endre modell',
- 'clone' => 'Klon modell',
- 'edit' => 'Endre modell',
+ 'clone' => 'Klon modell',
+ 'edit' => 'Endre modell',
);
diff --git a/resources/lang/no-NO/admin/users/general.php b/resources/lang/no-NO/admin/users/general.php
index 0361d2fdc8..c83dc8006c 100644
--- a/resources/lang/no-NO/admin/users/general.php
+++ b/resources/lang/no-NO/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Inkluder denne brukeren ved automatisk tildeling av kvalifiserte lisenser',
'auto_assign_help' => 'Hopp over brukeren i autotildeling av lisenser',
'software_user' => 'Programvare utsjekket til :name',
- 'send_email_help' => 'Du må legge inn brukerens e-postadresse for å kunne sende dem innloggingsinformasjon. Sending av innloggingsinformasjon kan kun gjøres når brukeren blir opprettet. Passordet lagres på en sikker måte, slik at det ikke kan hentes opp når det er lagret.',
'view_user' => 'Vis bruker :name',
'usercsv' => 'CSV-fil',
'two_factor_admin_optin_help' => 'Gjeldende administrasjonsinnstillinger tillater selektiv håndhevelse av to-faktor autentisering. ',
diff --git a/resources/lang/no-NO/general.php b/resources/lang/no-NO/general.php
index e149f9c24e..2818417488 100644
--- a/resources/lang/no-NO/general.php
+++ b/resources/lang/no-NO/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importer',
'import_this_file' => 'Kartfelter og behandle denne filen',
'importing' => 'Importerer',
- 'importing_help' => 'Du kan importere eiendeler, tilbehør, lisenser, komponenter, forbruksvarer og brukere via CSV-fil.
CSV-en må være kommaseparert og formatert med overskrifter som stemmer overens med de i eksempel-CSV i dokumentasjonen.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importhistorikk',
'asset_maintenance' => 'Vedlikehold av eiendeler',
'asset_maintenance_report' => 'Rapport Vedlikehold av eiendeler',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'lisener totalt',
'total_accessories' => 'antall tilbehør',
'total_consumables' => 'antall forbruksvarer',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Ikke utleverbar',
'unknown_admin' => 'Ukjent admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Brukernavn',
'update' => 'Oppdater',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Revisjonsfrist forfalt',
'accept' => 'Akseptér :asset',
'i_accept' => 'Jeg aksepterer',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Jeg avslår',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Godta/Avslå',
'sign_tos' => 'Signér under for å akseptere vilkårene for tjenesten:',
'clear_signature' => 'Fjern signatur',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Tillatelser',
'managed_ldap' => '(Administrert via LDAP)',
'export' => 'Eksport',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP-synk',
'ldap_user_sync' => 'Synk av LDAP-brukere',
'synchronize' => 'Synkroniser',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Oppdatere eksisterende verdier?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Automatisk generering av inkrementerende ressurskoder er skrudd av, så alle rader må ha "ressurskode"-kollonnen utfylt.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Merk: Automatisk generering av inkrementerende ressurskoder er er skrudd på, så for alle rader som ikke har fult ut "ressurskoden, så vil den bli generert autmatisk. Rader som har ressurskoden utfylt vil bli oppdatert med den gitte informasjonen.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send e-post',
'call' => 'Ring nummer',
'back_before_importing' => 'Sikkerhetskopier før importering?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item notater',
'item_name_var' => ':item navn',
'error_user_company' => 'Utsjekk firma og firmaet til ressursen stemmer ikke',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'En ressurs tildelt til deg tilhører en annen bedrift, slik at du ikke kan akseptere eller avslå den, vennligst sjekk med din leder',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Sjekket ut til: Fullt navn',
'checked_out_to_first_name' => 'Sjekket ut til: Fornavn',
@@ -585,6 +595,8 @@ return [
'components' => ':count Komponenter|:count komponenter',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Mer info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/no-NO/mail.php b/resources/lang/no-NO/mail.php
index 2266f29054..7faada9974 100644
--- a/resources/lang/no-NO/mail.php
+++ b/resources/lang/no-NO/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Tilbehør sjekket inn',
- 'Accessory_Checkout_Notification' => 'Tilbehør sjekket ut',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Bekreft innsjekk av tilbehør',
'Confirm_Asset_Checkin' => 'Bekreft innsjekk av eiendel',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'En enhet som er sjekket ut til deg skal leveres tilbake den :date',
'Expected_Checkin_Notification' => 'Påminnelse: Innsjekkingsfrist for :name nærmer seg',
'Expected_Checkin_Report' => 'Rapport over forventet innsjekking av eiendeler',
- 'Expiring_Assets_Report' => 'Rapport utløpende eiendeler.',
- 'Expiring_Licenses_Report' => 'Rapport utløpende lisenser.',
+ 'Expiring_Assets_Report' => 'Rapport utløpende eiendeler',
+ 'Expiring_Licenses_Report' => 'Rapport utløpende lisenser',
'Item_Request_Canceled' => 'Forespørsel av enhet avbrutt',
'Item_Requested' => 'Forespurt enhet',
'License_Checkin_Notification' => 'Lisens sjekket inn',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Rapport lav lagerbeholdning',
'a_user_canceled' => 'Brukeren har avbrutt en element-forespørsel på webområdet',
'a_user_requested' => 'En bruker har bedt om et element på webområdet',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'En bruker har godtatt et element',
'acceptance_asset_declined' => 'En bruker har avvist et element',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Navn',
'asset_requested' => 'Eiendel forespurt',
'asset_tag' => 'Eiendelsmerke',
- 'assets_warrantee_alert' => 'En eiendel har garanti som utløper innenfor de neste :treshold dagene.|:count eiendeler har garanti som utløper innenfor de neste :tershold dagene.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Tilordnet til',
+ 'eol' => 'Levetid',
'best_regards' => 'Med vennlig hilsen,',
'canceled' => 'Avbrutt',
'checkin_date' => 'Innsjekkdato',
@@ -58,6 +59,7 @@ return [
'days' => 'Dager',
'expecting_checkin_date' => 'Forventet dato for innsjekk',
'expires' => 'Utløper',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hallo',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Lagerbeholdnings rapport',
'item' => 'Enhet',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => ':count lisens utløper de neste :threshold dagene.|:count lisenser utløper de neste :threshold dagene.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Klikk på følgende link for å bekrefte din :web passord:',
'login' => 'Logg inn',
'login_first_admin' => 'Logg inn på din nye Snipe-IT-installasjon ved å bruke kontoen nedenfor:',
'low_inventory_alert' => ':count enhet er under minimumnivå for beholdning, eller vil snart nå dette nivået.|:count enheter er under minimumnivå for beholdning, eller vil snart nå dette nivået.',
'min_QTY' => 'Min. antall',
'name' => 'Navn',
- 'new_item_checked' => 'En ny enhet har blitt sjekket ut under ditt navn, detaljer nedenfor.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notater',
'password' => 'Passord',
diff --git a/resources/lang/om-ET/admin/custom_fields/general.php b/resources/lang/om-ET/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/om-ET/admin/custom_fields/general.php
+++ b/resources/lang/om-ET/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/om-ET/admin/depreciations/general.php b/resources/lang/om-ET/admin/depreciations/general.php
index dde92b3504..8117828e34 100644
--- a/resources/lang/om-ET/admin/depreciations/general.php
+++ b/resources/lang/om-ET/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/om-ET/admin/hardware/form.php b/resources/lang/om-ET/admin/hardware/form.php
index 0e2a689230..f0dfdddd04 100644
--- a/resources/lang/om-ET/admin/hardware/form.php
+++ b/resources/lang/om-ET/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/om-ET/admin/hardware/general.php b/resources/lang/om-ET/admin/hardware/general.php
index d08ecf214a..66dd0f6fd8 100644
--- a/resources/lang/om-ET/admin/hardware/general.php
+++ b/resources/lang/om-ET/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Gaafatame',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Harka qhoofaa',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/om-ET/admin/licenses/message.php b/resources/lang/om-ET/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/om-ET/admin/licenses/message.php
+++ b/resources/lang/om-ET/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/om-ET/admin/locations/message.php b/resources/lang/om-ET/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/om-ET/admin/locations/message.php
+++ b/resources/lang/om-ET/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/om-ET/admin/locations/table.php b/resources/lang/om-ET/admin/locations/table.php
index 577adae7f4..2895cc23f4 100644
--- a/resources/lang/om-ET/admin/locations/table.php
+++ b/resources/lang/om-ET/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/om-ET/admin/models/table.php b/resources/lang/om-ET/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/om-ET/admin/models/table.php
+++ b/resources/lang/om-ET/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/om-ET/admin/users/general.php b/resources/lang/om-ET/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/om-ET/admin/users/general.php
+++ b/resources/lang/om-ET/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/om-ET/general.php b/resources/lang/om-ET/general.php
index 9e420995e9..ce4e78adbd 100644
--- a/resources/lang/om-ET/general.php
+++ b/resources/lang/om-ET/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Gulaali',
'import_this_file' => 'Fayyadama dabalata akkasumas faayil kana',
'importing' => 'Gulaalu',
- 'importing_help' => 'Qabeenya, qabeenya, liqiiwwan, components, furmaata, isa kaan galchuu fdgoos.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Seenaa Gulaaluu',
'asset_maintenance' => 'Dammamoo Qabeenya Hawaasa',
'asset_maintenance_report' => 'Gabaasa Dhammajjuu Qabeenya',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'heyyama waliigalaa',
'total_accessories' => 'meeshaalee waliigalaa',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Odiitiidhaaf yeroon isaa darbe',
'accept' => 'Qabeenya :asset Fudhadhu',
'i_accept' => 'Ani nan Fudhadha ykn Ittan Walii gala',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Ani hin fudhadhu ykn itti walii hin galu',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Fudhadhu/Didi',
'sign_tos' => 'Haala tajaajilaa irratti walii galuu kee agarsiisuuf kan armaan gadiirratti mallatteessi:',
'clear_signature' => 'Mallattoo qulqulleessi',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Odeeffannoo Dabalataa',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/om-ET/mail.php b/resources/lang/om-ET/mail.php
index 1a85974619..503092a9de 100644
--- a/resources/lang/om-ET/mail.php
+++ b/resources/lang/om-ET/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/pl-PL/admin/custom_fields/general.php b/resources/lang/pl-PL/admin/custom_fields/general.php
index 6b4ca6b282..44c28f1c7e 100644
--- a/resources/lang/pl-PL/admin/custom_fields/general.php
+++ b/resources/lang/pl-PL/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Zarządzaj',
'field' => 'Pole',
'about_fieldsets_title' => 'O zestawie pól',
- 'about_fieldsets_text' => 'Zestawy pól pozwalają tworzyć grupy pól niestandardowych, które często są używane dla specyficznych typów modeli.',
+ 'about_fieldsets_text' => 'Zestawy pól pozwalają na utworzenie grup własnych, niestandardowych pól, które są często wykorzystywane. Mogą być one wykorzystane i przypisane do modeli aktywów.',
'custom_format' => 'Własny format...',
'encrypt_field' => 'Szyfruje wartość tego pola w bazie danych',
'encrypt_field_help' => 'UWAGA: Szyfrowanie pola spowoduje brak możliwości wyszukiwania go.',
diff --git a/resources/lang/pl-PL/admin/depreciations/general.php b/resources/lang/pl-PL/admin/depreciations/general.php
index 2d12e14021..920846166b 100644
--- a/resources/lang/pl-PL/admin/depreciations/general.php
+++ b/resources/lang/pl-PL/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Informacja na temat amortyzacji nabytku',
- 'about_depreciations' => 'Możesz ustawić amortyzację środków trwałych na podstawie amortyzacji aktywów w oparciu o metodę liniową.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Amortyzacja nabytków',
'create' => 'Nowa amortyzacja',
'depreciation_name' => 'Nazwa amortyzacji',
diff --git a/resources/lang/pl-PL/admin/hardware/form.php b/resources/lang/pl-PL/admin/hardware/form.php
index fb71b1272d..3ce8d7bca2 100644
--- a/resources/lang/pl-PL/admin/hardware/form.php
+++ b/resources/lang/pl-PL/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Przejdź do wydania do',
'select_statustype' => 'Wybierz status',
'serial' => 'Numer seryjny',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Tag-i zasobu/nabytku',
'update' => 'Aktualizacja zasobu/nabytku',
diff --git a/resources/lang/pl-PL/admin/hardware/general.php b/resources/lang/pl-PL/admin/hardware/general.php
index e0416bcdd8..31df717f54 100644
--- a/resources/lang/pl-PL/admin/hardware/general.php
+++ b/resources/lang/pl-PL/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Zamówione',
'not_requestable' => 'Brak możliwości zarządzania',
'requestable_status_warning' => 'Nie zmieniaj statusu żądanego',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Przywróć aktywa',
'pending' => 'Oczekuje',
'undeployable' => 'Niemożliwe do wdrożenia',
diff --git a/resources/lang/pl-PL/admin/licenses/message.php b/resources/lang/pl-PL/admin/licenses/message.php
index 16cc59a73d..ab32908da1 100644
--- a/resources/lang/pl-PL/admin/licenses/message.php
+++ b/resources/lang/pl-PL/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Za mało dostępnych miejsc do zamówienia',
'mismatch' => 'Podane miejsce licencji nie jest zgodne z licencją',
'unavailable' => 'To miejsce nie jest dostępne do wydania.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Nastąpił problem podczas weryfikacji licencji. Spróbuj ponownie',
- 'not_reassignable' => 'Licencja nie może zostać ponownie przypisana',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Licencja poprawna'
),
diff --git a/resources/lang/pl-PL/admin/locations/message.php b/resources/lang/pl-PL/admin/locations/message.php
index 400e68461e..4d75992227 100644
--- a/resources/lang/pl-PL/admin/locations/message.php
+++ b/resources/lang/pl-PL/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Lokalizacja nie istnieje.',
- 'assoc_users' => 'Ta lokalizacja nie jest obecnie usuwana, ponieważ jest to lokalizacja rekordu dla co najmniej jednego zasobu lub użytkownika, posiada przypisane do niego aktywa lub jest miejscem macierzystym innej lokalizacji. Zaktualizuj swoje rekordy, aby nie odnosić się już do tej lokalizacji i spróbuj ponownie ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Lokalizacja obecnie jest skojarzona z minimum jednym aktywem i nie może zostać usunięta. Uaktualnij właściwości aktywów tak aby nie było relacji z tą lokalizacją i spróbuj ponownie. ',
'assoc_child_loc' => 'Lokalizacja obecnie jest rodzicem minimum jeden innej lokalizacji i nie może zostać usunięta. Uaktualnij właściwości lokalizacji tak aby nie było relacji z tą lokalizacją i spróbuj ponownie. ',
'assigned_assets' => 'Przypisane aktywa',
'current_location' => 'Bieżąca lokalizacja',
'open_map' => 'Otwórz w mapach :map_provider_icon',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/pl-PL/admin/locations/table.php b/resources/lang/pl-PL/admin/locations/table.php
index 8667d14a34..bd6847c5c7 100644
--- a/resources/lang/pl-PL/admin/locations/table.php
+++ b/resources/lang/pl-PL/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Utwórz Lokalizację',
'update' => 'Zaktualizuj lokalizację',
'print_assigned' => 'Drukuj przypisane',
- 'print_all_assigned' => 'Drukuj wszystkie przypisane',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nazwa Lokalizacji',
'address' => 'Adres',
'address2' => 'Druga linia adresu',
diff --git a/resources/lang/pl-PL/admin/models/table.php b/resources/lang/pl-PL/admin/models/table.php
index 664f44d962..5df369deb2 100644
--- a/resources/lang/pl-PL/admin/models/table.php
+++ b/resources/lang/pl-PL/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Model aktywa',
'update' => 'Uaktualnij model aktywa',
'view' => 'Podgląd modelu aktywa',
- 'update' => 'Uaktualnij model aktywa',
- 'clone' => 'Kopiuj Model',
- 'edit' => 'Edytuj Model',
+ 'clone' => 'Kopiuj Model',
+ 'edit' => 'Edytuj Model',
);
diff --git a/resources/lang/pl-PL/admin/users/general.php b/resources/lang/pl-PL/admin/users/general.php
index 77fe7a92a9..2039422d75 100644
--- a/resources/lang/pl-PL/admin/users/general.php
+++ b/resources/lang/pl-PL/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Uwzględnij tego użytkownika podczas automatycznego przypisywania kwalifikujących się licencji',
'auto_assign_help' => 'Pomiń tego użytkownika w automatycznym przypisaniu licencji',
'software_user' => 'Oprogramowanie przypisane do :name',
- 'send_email_help' => 'Musisz podać adres e-mail dla tego użytkownika, aby wysłać mu poświadczenia. Wysłanie danych logowania jest możliwe tylko w czasie tworzenia użytkownika. Hasła są zaszyfrowane i nie można ich odzyskać po zapisaniu.',
'view_user' => 'Zobacz Użytkownika :name',
'usercsv' => 'plik CSV',
'two_factor_admin_optin_help' => 'Bieżące ustawienia administracyjne pozwalają na wybiórcze rejestrowanie uwierzytelniania dwuskładnikowego. ',
diff --git a/resources/lang/pl-PL/general.php b/resources/lang/pl-PL/general.php
index f567ed30e2..48630d08b0 100644
--- a/resources/lang/pl-PL/general.php
+++ b/resources/lang/pl-PL/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Zaimportuj',
'import_this_file' => 'Mapuj pola i przetwarzaj ten plik',
'importing' => 'Importowanie',
- 'importing_help' => 'Możesz importować aktywa, akcesoria, licencje, komponenty, materiały eksploatacyjne i użytkowników za pomocą pliku CSV.
CSV powinien być rozdzielony przecinkami i sformatowany z nagłówkami, które pasują do tych w przykładowych CSV w dokumentacji.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Historia importu',
'asset_maintenance' => 'Utrzymanie aktywów',
'asset_maintenance_report' => 'Raport utrzymywania aktywów',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'Ogółem licencji',
'total_accessories' => 'Ogółem akcesorii',
'total_consumables' => 'Ogółem materiałów eksploatacyjnych',
+ 'total_cost' => 'Total Cost',
'type' => 'Rodzaj',
'undeployable' => 'Nie przypisane',
'unknown_admin' => 'Nieznany Administrator',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Nazwa użytkownika',
'update' => 'Zaktualizuj',
'updating_item' => 'Aktualizacja :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Zaległe z tytułu audytu',
'accept' => 'Zaakceptuj :asset',
'i_accept' => 'Akceptuję',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Odrzucam',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Akceptuj/Odrzuć',
'sign_tos' => 'Podpisz poniżej aby zaznaczyć, że zgadzasz się na regulamin usługi:',
'clear_signature' => 'Wyczyść podpis',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Uprawnienia',
'managed_ldap' => '(Zarządzane przez LDAP)',
'export' => 'Eksportuj',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Synchronizacja LDAP',
'ldap_user_sync' => 'Synchronizacja użytkownika LDAP',
'synchronize' => 'Synchronizuj',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Uaktualnić istniejące wartości?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generowanie automatycznie zwiększających się tagów aktywów jest wyłączone, więc wszystkie wiersze muszą mieć wypełnioną kolumnę "Znacznik aktywów".',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Uwaga: Generowanie automatycznie zwiększających się tagów aktywów jest włączone, więc aktywa zostaną utworzone dla wierszy, które nie mają wypełnionego "znacznika aktywów". Wiersze z wypełnionym "Znacznikiem aktywów" zostaną zaktualizowane podanymi informacjami.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Wyślij e-mail',
'call' => 'Numer wywoławczy',
'back_before_importing' => 'Kopia zapasowa przed zaimportowaniem?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notatki',
'item_name_var' => ':Item Nazwa',
'error_user_company' => '530***Checkout target company and asset company are not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Zasób przypisany do Ciebie należy do innej firmy, więc nie możesz go zaakceptować ani odrzucić, sprawdź go u swojego menedżera',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Zamówiono do: Pełna nazwa',
'checked_out_to_first_name' => 'Zamówiono do: Imię',
@@ -585,6 +595,8 @@ return [
'components' => ':count Składnik|:count Składniki',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Więcej informacji',
'quickscan_bulk_help' => 'Zaznaczenie tego pola spowoduje edycję rekordu aktywów, aby odzwierciedlić tę nową lokalizację. Pozostawienie go niezaznaczone spowoduje po prostu odnotowanie lokalizacji w dzienniku audytu.Zauważ, że jeśli ten zasób jest zablokowany, nie zmieni lokalizacji osoby, składnika aktywów lub miejsca, w którym jest ona kontrolowana.',
'whoops' => 'Uuuups!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/pl-PL/mail.php b/resources/lang/pl-PL/mail.php
index 0d273e32ff..ea0c1e6209 100644
--- a/resources/lang/pl-PL/mail.php
+++ b/resources/lang/pl-PL/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Akcesorium zwrócono',
- 'Accessory_Checkout_Notification' => 'Akcesoria zablokowane',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Potwierdź przyjęcie akcesorium',
'Confirm_Asset_Checkin' => 'Potwierdź otrzymanie sprzętu',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Zasób przypisany Tobie ma być zwrócony w dniu :date',
'Expected_Checkin_Notification' => 'Przypomnienie: :name sprawdza termin zbliżający się',
'Expected_Checkin_Report' => 'Oczekiwano raportu kontroli aktywów',
- 'Expiring_Assets_Report' => 'Raport wygasających sprzętów.',
- 'Expiring_Licenses_Report' => 'Raport Wygasających Licencji.',
+ 'Expiring_Assets_Report' => 'Raport wygasających sprzętów',
+ 'Expiring_Licenses_Report' => 'Raport Wygasających Licencji',
'Item_Request_Canceled' => 'Anulowano zamówioną pozycję',
'Item_Requested' => 'Pozycja Zamówiona',
'License_Checkin_Notification' => 'Akcesorium zwrócono',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Raport niskiego stanu zasobów',
'a_user_canceled' => 'Użytkownik anulował zapotrzebowanie na sprzęt na stronie www',
'a_user_requested' => 'Użytkownik zamówił pozycję na stronie internetowej',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Użytkownik zaakceptował zasób',
'acceptance_asset_declined' => 'Użytkownik odrzucił zasób',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nazwa nabytku',
'asset_requested' => 'Wystosowane zapotrzebowanie na sprzęt',
'asset_tag' => 'Tag sprzętu',
- 'assets_warrantee_alert' => 'Istnieje :count aktywów z gwarancją wygasającą w ciągu następnych :thereshold dni. | Istnieje :count aktywów z gwarancją wygasającą w ciągu następnych :threshold dni.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Przypisane do',
+ 'eol' => 'Koniec licencji',
'best_regards' => 'Pozdrawiam',
'canceled' => 'Anulowane',
'checkin_date' => 'Data przypisania',
@@ -58,6 +59,7 @@ return [
'days' => 'Dni',
'expecting_checkin_date' => 'Przewidywana data przyjęcia',
'expires' => 'Wygasa',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Cześć',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Raport z magazynu',
'item' => 'Przedmiot',
'item_checked_reminder' => 'To jest przypomnienie, że aktualnie masz :count elementów przydzielonych do Ciebie, których nie zaakceptowałeś lub nie odrzuciłeś. Kliknij poniższy link, aby potwierdzić swoją decyzję.',
- 'license_expiring_alert' => 'Istnieje: liczba licencja wygasająca w ciągu następnych: dni progowe. | Istnieje: liczba licencji wygasających w ciągu następnych: dni progowe.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Proszę kliknąć na poniższy link, aby zaktualizować swoje hasło na :web:',
'login' => 'Login',
'login_first_admin' => 'Zaloguj się do aplikacji Snipe-IT przy użyciu poniższych poświadczeń:',
'low_inventory_alert' => 'Istnieje: liczba przedmiot, który jest poniżej minimalnej ilości zapasów lub wkrótce ta wartość będzie niska. | Istnieją: policz przedmioty, które są poniżej minimalnej ilości zapasów lub wkrótce te wartości będą niskie.',
'min_QTY' => 'Min. ilość',
'name' => 'Nazwa',
- 'new_item_checked' => 'Nowy przedmiot został przypisany do Ciebie, szczegóły poniżej.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Uwagi',
'password' => 'Hasło',
diff --git a/resources/lang/pt-BR/admin/depreciations/general.php b/resources/lang/pt-BR/admin/depreciations/general.php
index 100e60e42b..c9121c0732 100644
--- a/resources/lang/pt-BR/admin/depreciations/general.php
+++ b/resources/lang/pt-BR/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Sobre as Depreciações de Ativos',
- 'about_depreciations' => 'Você pode configurar depreciações para depreciar ativos baseados na depreciação linear.',
+ 'about_depreciations' => 'Você pode configurar a depreciação de ativos para depreciar com base em três métodos: Linear (linha reta), Meio Ano aplicado com condição ou Meio Ano sempre aplicado.',
'asset_depreciations' => 'Depreciações de Ativos',
'create' => 'Criar Depreciação',
'depreciation_name' => 'Nome da Depreciação',
diff --git a/resources/lang/pt-BR/admin/hardware/form.php b/resources/lang/pt-BR/admin/hardware/form.php
index dae8e7e41f..b3150d7e35 100644
--- a/resources/lang/pt-BR/admin/hardware/form.php
+++ b/resources/lang/pt-BR/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Ir para Checked Out para',
'select_statustype' => 'Selecione o Tipo de Situação',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Situação',
'tag' => 'Marcação do Ativo',
'update' => 'Atualização do Ativo',
diff --git a/resources/lang/pt-BR/admin/hardware/general.php b/resources/lang/pt-BR/admin/hardware/general.php
index 394ea0d052..320e63cb5f 100644
--- a/resources/lang/pt-BR/admin/hardware/general.php
+++ b/resources/lang/pt-BR/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Solicitado',
'not_requestable' => 'Não solicitável',
'requestable_status_warning' => 'Não altere a situação de solicitável',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restaurar Ativo',
'pending' => 'Pendente',
'undeployable' => 'Não implementável',
diff --git a/resources/lang/pt-BR/admin/licenses/message.php b/resources/lang/pt-BR/admin/licenses/message.php
index 3d72c5da52..33d8ccd0b9 100644
--- a/resources/lang/pt-BR/admin/licenses/message.php
+++ b/resources/lang/pt-BR/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Não há vagas de licença suficientes disponíveis para o pagamento',
'mismatch' => 'A alocação de licença fornecida não corresponde à licença',
'unavailable' => 'Esta alocação não está disponível para empréstimo.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Houve um problema de registro na licença. Favor tentar novamente.',
- 'not_reassignable' => 'Licença não pode ser transferida',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'A licença foi registrada com sucesso.'
),
diff --git a/resources/lang/pt-BR/admin/locations/message.php b/resources/lang/pt-BR/admin/locations/message.php
index 17754f8db6..f7d5f68fa9 100644
--- a/resources/lang/pt-BR/admin/locations/message.php
+++ b/resources/lang/pt-BR/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'O local não existe.',
- 'assoc_users' => 'Este local não pode ser excluído no momento, pois é o local de registro de pelo menos um ativo ou usuário, possui ativos atribuídos a ele ou é o local principal de outro local. Atualize seus registros para que não façam mais referência a este local e tente novamente ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Este local esta atualmente associado a pelo menos um ativo e não pode ser deletado. Por favor atualize seu ativo para não fazer mais referência a este local e tente novamente. ',
'assoc_child_loc' => 'Este local é atualmente o principal de pelo menos local secundário e não pode ser deletado. Por favor atualize seus locais para não fazer mais referência a este local e tente novamente. ',
'assigned_assets' => 'Ativos atribuídos',
'current_location' => 'Localização Atual',
'open_map' => 'Abrir :map_provider_icon Maps',
+ 'deleted_warning' => 'Esta localização foi deletado. Por favor, restaure-o antes de tentar fazer quaisquer alterações.',
'create' => array(
diff --git a/resources/lang/pt-BR/admin/locations/table.php b/resources/lang/pt-BR/admin/locations/table.php
index f7dccf28fb..6c4d4d4e1f 100644
--- a/resources/lang/pt-BR/admin/locations/table.php
+++ b/resources/lang/pt-BR/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Criar Local',
'update' => 'Atualizar Local',
'print_assigned' => 'Impressão atribuída',
- 'print_all_assigned' => 'Imprimir Todos Atribuídos',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nome do Local',
'address' => 'Endereço',
'address2' => 'Linha de Endereço 2',
diff --git a/resources/lang/pt-BR/admin/models/table.php b/resources/lang/pt-BR/admin/models/table.php
index d3f6c3c811..7356b7b4fc 100644
--- a/resources/lang/pt-BR/admin/models/table.php
+++ b/resources/lang/pt-BR/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modelos de Ativos',
'update' => 'Atualizar Modelo de Ativos',
'view' => 'Ver Modelo de Ativos',
- 'update' => 'Atualizar Modelo de Ativos',
- 'clone' => 'Clonar Modelo',
- 'edit' => 'Editar Modelo',
+ 'clone' => 'Clonar Modelo',
+ 'edit' => 'Editar Modelo',
);
diff --git a/resources/lang/pt-BR/admin/settings/general.php b/resources/lang/pt-BR/admin/settings/general.php
index 91c2ade880..c337f38da3 100644
--- a/resources/lang/pt-BR/admin/settings/general.php
+++ b/resources/lang/pt-BR/admin/settings/general.php
@@ -145,7 +145,7 @@ return [
'login_user_agent' => 'Agente de usuário',
'login_help' => 'Lista de tentativas de login',
'login_note' => 'Login Note',
- 'login_note_placeholder' => "If you do not have a login or have found a device belonging to this company, please call technical support at 888-555-1212. Thank you.",
+ 'login_note_placeholder' => "Caso você não tenha um login ou tenha encontrado um dispositivo pertencente a esta empresa, por favor ligue para o suporte técnico entre 888-555-12. Obrigado.",
'login_note_help' => 'Optionally inclui algumas coisas na sua tela de login, por exemplo para ajudar pessoas que acharam um equipamento perdido ou um equipamento furtado. Este campo aceita Github flavored markdown',
'login_remote_user_text' => 'Opções de login do usuário remoto',
'login_remote_user_enabled_text' => 'Ativar login de usuário remoto',
diff --git a/resources/lang/pt-BR/admin/users/general.php b/resources/lang/pt-BR/admin/users/general.php
index 817806cd71..caf3869220 100644
--- a/resources/lang/pt-BR/admin/users/general.php
+++ b/resources/lang/pt-BR/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Inclua este usuário quando atribuir licenças elegíveis automaticamente',
'auto_assign_help' => 'Ignorar este usuário em atribuição automática de licenças',
'software_user' => 'Disponibilização de software para :name',
- 'send_email_help' => 'Você deve fornecer um endereço de e-mail para este usuário enviar credenciais. As credenciais de e-mail só podem ser feitas na criação do usuário. As senhas são armazenadas em hash unidirecional e não podem ser recuperadas uma vez salva.',
'view_user' => 'Ver Usuário :name',
'usercsv' => 'Arquivo CSV',
'two_factor_admin_optin_help' => 'As configurações de admin atuais permitem a aplicação seletiva de autenticação de dois passos. ',
diff --git a/resources/lang/pt-BR/general.php b/resources/lang/pt-BR/general.php
index 6c7457470a..5692445e3a 100644
--- a/resources/lang/pt-BR/general.php
+++ b/resources/lang/pt-BR/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importar',
'import_this_file' => 'Mapear os campos e processar este arquivo',
'importing' => 'Importando',
- 'importing_help' => 'Você pode importar ativos, acessórios, licenças, componentes, consumíveis e usuários via arquivo CSV.
O CSV deve ser delimitado por vírgula e formatado com cabeçalhos que correspondem aos dos CSVs de amostra na documentação.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importar Histórico',
'asset_maintenance' => 'Manutenção de Ativo',
'asset_maintenance_report' => 'Relatório de Manutenção em Ativo',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total de licenças',
'total_accessories' => 'total de acessórios',
'total_consumables' => 'total de consumíveis',
+ 'total_cost' => 'Total Cost',
'type' => 'Tipo',
'undeployable' => 'Não implementável',
'unknown_admin' => 'Administrador Desconhecido',
'unknown_user' => 'Usuário desconhecido',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Usuário',
'update' => 'Atualizar',
'updating_item' => 'Atualizando :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Atrasado para Auditoria',
'accept' => 'Aceitar :asset',
'i_accept' => 'Eu aceito',
- 'i_decline_item' => 'Recusar este item',
- 'i_accept_item' => 'Aceitar este item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Eu recuso',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Aceitar/Recusar',
'sign_tos' => 'Assine abaixo para indicar que você concorda com os termos do serviço:',
'clear_signature' => 'Limpar assinatura',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissões',
'managed_ldap' => '(Gerenciado via LDAP)',
'export' => 'Exportar',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Sincronização LDAP',
'ldap_user_sync' => 'Sincronização de usuário LDAP',
'synchronize' => 'Sincronizar',
@@ -484,7 +489,9 @@ Resultados da Sincronização',
'update_existing_values' => 'Atualizar Valores Existentes?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'A geração de etiquetas auto-incrementais de ativos está desabilitada, então todas as linhas precisam ter a coluna "Etiqueta de ativo" preenchidas.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Nota: A geração de etiquetas auto-incrementais de ativos está habilitada assim serão criadas para registros que não possuem a "Etiqueta de ativo" preenchida. As linhas que possuem "Etiqueta de ativo" preenchida serão atualizadas com as informações fornecidas.',
- 'send_welcome_email_to_users' => ' Enviar e-mail de boas-vindas para novos usuários? Note que somente usuários com um endereço de e-mail válido e que estiverem marcados como ativos em seu arquivo de importação receberão o e-mail de boas-vindas.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Enviar e-mail',
'call' => 'Número de chamada',
'back_before_importing' => 'Fazer backup antes de importar?',
@@ -514,7 +521,10 @@ Resultados da Sincronização',
'item_notes' => ':item Notas',
'item_name_var' => ':item Nome',
'error_user_company' => 'A empresa alvo do checkout e a empresa do ativo não correspondem',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Um Ativo atribuído a você pertence a uma empresa diferente, portanto, você não pode aceitá-lo nem recusá-lo. Por favor, verifique com seu gerente',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Alocado para: Nome Completo',
'checked_out_to_first_name' => 'Alocado para: Nome',
@@ -586,6 +596,8 @@ Resultados da Sincronização',
'components' => ':count Componente|:count Componentes',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Mais Informações',
'quickscan_bulk_help' => 'Marcar esta caixa irá editar o registro do ativo para refletir este novo local. Deixar desmarcado irá apenas registrar a localização no log de auditoria. Observe que, se este ativo estiver emprestado, não alterará o local da pessoa, do ativo ou do local para onde ele foi emprestado.',
'whoops' => 'Opa!',
@@ -610,6 +622,8 @@ Resultados da Sincronização',
'use_cloned_no_image_help' => 'Este item não tem uma imagem associada e, em vez disso, herda do modelo ou categoria a que pertence. Se você gostaria de usar uma imagem específica para este item, você pode fazer o upload de uma nova abaixo.',
'footer_credit' => 'Snipe-IT é um software de código aberto, feito com ama por @snipeitapp.com.',
'set_password' => 'Definir uma senha',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -626,11 +640,11 @@ Resultados da Sincronização',
'site_default' => 'Site padrão',
'default_blue' => 'Azul Padrão',
'blue_dark' => 'Azul (Modo Escuro)',
- 'green' => 'Verde escuro',
+ 'green' => 'Green',
'green_dark' => 'Verde (Modo Escuro)',
- 'red' => 'Vermelho escuro',
+ 'red' => 'Red',
'red_dark' => 'Vermelho (Modo escuro)',
- 'orange' => 'Laranja Escuro',
+ 'orange' => 'Orange',
'orange_dark' => 'Laranja (Modo escuro)',
'black' => 'Preto',
'black_dark' => 'Preto (Modo escuro)',
diff --git a/resources/lang/pt-BR/mail.php b/resources/lang/pt-BR/mail.php
index c4fd1c3249..958cce3179 100644
--- a/resources/lang/pt-BR/mail.php
+++ b/resources/lang/pt-BR/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Ativo verificado em',
- 'Accessory_Checkout_Notification' => 'Acessório verificado',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Confirme a devolução do acessório',
'Confirm_Asset_Checkin' => 'Confirme a devolução do ativo',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Um ativo disponibilizado a você deve ser retornado em :date',
'Expected_Checkin_Notification' => 'Lembrete: :name prazo de devolução aproximando',
'Expected_Checkin_Report' => 'Relatório de check-in de ativos esperado',
- 'Expiring_Assets_Report' => 'Relatório de ativos expirando.',
- 'Expiring_Licenses_Report' => 'Relatório de Licenças a expirar.',
+ 'Expiring_Assets_Report' => 'Relatório de ativos expirando',
+ 'Expiring_Licenses_Report' => 'Relatório de Licenças a expirar',
'Item_Request_Canceled' => 'Requisição de item cancelado',
'Item_Requested' => 'Item requisitado',
'License_Checkin_Notification' => 'Licença verificada em',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Relatório de baixas de inventario',
'a_user_canceled' => 'Um usuário cancelou uma requisição no website',
'a_user_requested' => 'Um usuário requisitou um item no website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Um usuário aceitou um item',
'acceptance_asset_declined' => 'Um usuário recusou um item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nome do Ativo',
'asset_requested' => 'Requisição de Ativo',
'asset_tag' => 'Etiqueta de Ativo',
- 'assets_warrantee_alert' => 'Há um :count ativo com a garantia expirando nos próximos :threshold dias. Existem :count ativos com a garantia expirando nos próximos :threshold dias.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Atribuído a',
+ 'eol' => 'EOL',
'best_regards' => 'Atenciosamente,',
'canceled' => 'Cancelado',
'checkin_date' => 'Data de devolução',
@@ -58,6 +59,7 @@ return [
'days' => 'Dias',
'expecting_checkin_date' => 'Excedeu a data dar entrada',
'expires' => 'Expira',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Olá',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Relatório de Inventário',
'item' => 'Item',
'item_checked_reminder' => 'Este é um lembrete que você tem atualmente :count itens check-out para você que você não aceitou ou recusou. Por favor, clique no link abaixo para confirmar sua decisão.',
- 'license_expiring_alert' => 'Há uma :count licença expirando nos próximos :threshold dias. | Existem :count licenças expirand nos próximos :threshold dias.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Por favor clique no link abaixo para atualizar a sua senha do :web:',
'login' => 'Entrar',
'login_first_admin' => 'Faça login na sua instalação do Snipe-IT usando os dados abaixo:',
'low_inventory_alert' => 'Há um :count que está abaixo do estoque mínimo ou em breve estará abaixo. | Existem :count items que estão abaixo do estoque mínimo ou em breve estarão baixos.',
'min_QTY' => 'Qtde. Min',
'name' => 'Nome',
- 'new_item_checked' => 'Um novo item foi atribuído em seu nome, os detalhes estão abaixo.',
- 'new_item_checked_with_acceptance' => 'Um novo item foi registrado em seu nome que requer aceitação, detalhes abaixo.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'Um novo item foi registrado em seu nome que requer aceitação, detalhes abaixo.',
'notes' => 'Notas',
'password' => 'Senha',
diff --git a/resources/lang/pt-PT/account/general.php b/resources/lang/pt-PT/account/general.php
index 76fd62bad3..1570816841 100644
--- a/resources/lang/pt-PT/account/general.php
+++ b/resources/lang/pt-PT/account/general.php
@@ -2,16 +2,16 @@
return array(
'personal_api_keys' => 'Chaves Pessoais de API',
- 'personal_access_token' => 'Personal Access Token',
- 'personal_api_keys_success' => 'Personal API Key :key created sucessfully',
- 'here_is_api_key' => 'Here is your new personal access token. This is the only time it will be shown so do not lose it! You may now use this token to make API requests.',
- 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.',
+ 'personal_access_token' => 'Token de Acesso Pessoal',
+ 'personal_api_keys_success' => 'Chave de API pessoal :key criada com sucesso',
+ 'here_is_api_key' => 'Aqui está seu novo token de acesso pessoal. Esta é a única vez que ela será mostrada então não perca! Agora pode usar esse token para fazer solicitações de API.',
+ 'api_key_warning' => 'Ao gerar um token de API, certifique-se de copiá-lo imediatamente pois eles não serão visíveis novamente.',
'api_base_url' => 'O URL base da API está localizada em:',
'api_base_url_endpoint' => '/<endpoint>',
'api_token_expiration_time' => 'Tokens de API estão definidos para expirar em:',
- 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.',
- 'profile_updated' => 'Account successfully updated',
- 'no_tokens' => 'You have not created any personal access tokens.',
- 'enable_sounds' => 'Enable sound effects',
- 'enable_confetti' => 'Enable confetti effects',
+ 'api_reference' => 'Verifique a referência da API para encontrar endpoints de API específicos e documentação adicional da API.',
+ 'profile_updated' => 'Conta atualizada com sucesso',
+ 'no_tokens' => 'Não criou nenhum token de acesso pessoal.',
+ 'enable_sounds' => 'Ativar efeitos sonoros',
+ 'enable_confetti' => 'Habilitar efeitos de confete',
);
diff --git a/resources/lang/pt-PT/admin/custom_fields/general.php b/resources/lang/pt-PT/admin/custom_fields/general.php
index ae66bd2a54..043da96d04 100644
--- a/resources/lang/pt-PT/admin/custom_fields/general.php
+++ b/resources/lang/pt-PT/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Gerir',
'field' => 'Campo',
'about_fieldsets_title' => 'Sobre conjuntos de campos',
- 'about_fieldsets_text' => 'Conjuntos de campos permitem criar grupos de campos personalizados que são frequentemente reutilizados para modelos de artigos especificos.',
+ 'about_fieldsets_text' => 'Conjuntos de campos permitem criar grupos de campos personalizados que são frequentemente reutilizados para modelos de artigos específicos.',
'custom_format' => 'Formato Regex personalizado...',
'encrypt_field' => 'Encriptar valor deste campo na base de dados',
'encrypt_field_help' => 'AVISO: Criptografar um campo torna-o não pesquisável.',
diff --git a/resources/lang/pt-PT/admin/depreciations/general.php b/resources/lang/pt-PT/admin/depreciations/general.php
index 2e57a8e052..f537f4c01d 100644
--- a/resources/lang/pt-PT/admin/depreciations/general.php
+++ b/resources/lang/pt-PT/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Acerca de Depreciações de Equipamentos',
- 'about_depreciations' => 'Podes configurar as depreciações dos equipamentos baseadas numa depreciação constante ao longo do tempo.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Depreciações dos Equipamentos',
'create' => 'Criar Depreciação',
'depreciation_name' => 'Nome da depreciação',
diff --git a/resources/lang/pt-PT/admin/hardware/form.php b/resources/lang/pt-PT/admin/hardware/form.php
index 1fd804fcca..4623385786 100644
--- a/resources/lang/pt-PT/admin/hardware/form.php
+++ b/resources/lang/pt-PT/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Selecionar Estado',
'serial' => 'Nº de Série',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Estado',
'tag' => 'Etiqueta do Ativo',
'update' => 'Atualização do ativo',
diff --git a/resources/lang/pt-PT/admin/hardware/general.php b/resources/lang/pt-PT/admin/hardware/general.php
index b351d97ff3..80cd5a6a28 100644
--- a/resources/lang/pt-PT/admin/hardware/general.php
+++ b/resources/lang/pt-PT/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requisitado',
'not_requestable' => 'Não solicitável',
'requestable_status_warning' => 'Não altere o estado solicitável',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restaurar ativo',
'pending' => 'Pendente',
'undeployable' => 'Não implementável',
diff --git a/resources/lang/pt-PT/admin/licenses/message.php b/resources/lang/pt-PT/admin/licenses/message.php
index fc300b24f0..3452527be1 100644
--- a/resources/lang/pt-PT/admin/licenses/message.php
+++ b/resources/lang/pt-PT/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Não há assentos de licença suficientes disponíveis para o pagamento',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Ocorreu um problema ao devolver esta licença. Por favor, tente novamente.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'A licença foi devolvida com sucesso'
),
diff --git a/resources/lang/pt-PT/admin/locations/message.php b/resources/lang/pt-PT/admin/locations/message.php
index 0a8eaf7a14..02c684de04 100644
--- a/resources/lang/pt-PT/admin/locations/message.php
+++ b/resources/lang/pt-PT/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Localização não existe.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Esta localização está atualmente associada com pelo menos um artigo e não pode ser removida. Atualize este artigos de modo a não referenciarem mais este local e tente novamente. ',
'assoc_child_loc' => 'Esta localização contém pelo menos uma sub-localização e não pode ser removida. Por favor, atualize as localizações para não referenciarem mais esta localização e tente novamente. ',
'assigned_assets' => 'Artigos atribuídos',
'current_location' => 'Localização atual',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/pt-PT/admin/locations/table.php b/resources/lang/pt-PT/admin/locations/table.php
index 2b22beb865..bbc6c15864 100644
--- a/resources/lang/pt-PT/admin/locations/table.php
+++ b/resources/lang/pt-PT/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Criar localização',
'update' => 'Atualizar localização',
'print_assigned' => 'Imprimir atribuído',
- 'print_all_assigned' => 'Imprimir todos atribuídos',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nome da localização',
'address' => 'Morada',
'address2' => 'Linha de Endereço 2',
diff --git a/resources/lang/pt-PT/admin/models/table.php b/resources/lang/pt-PT/admin/models/table.php
index ffaab53474..791de97f28 100644
--- a/resources/lang/pt-PT/admin/models/table.php
+++ b/resources/lang/pt-PT/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modelos de Artigo',
'update' => 'Atualizar Modelo de Artigo',
'view' => 'Ver Modelo de Artigo',
- 'update' => 'Atualizar Modelo de Artigo',
- 'clone' => 'Clonar Modelo',
- 'edit' => 'Editar Modelo',
+ 'clone' => 'Clonar Modelo',
+ 'edit' => 'Editar Modelo',
);
diff --git a/resources/lang/pt-PT/admin/users/general.php b/resources/lang/pt-PT/admin/users/general.php
index c97b0bc840..ece00e81aa 100644
--- a/resources/lang/pt-PT/admin/users/general.php
+++ b/resources/lang/pt-PT/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Inclua este utilizador quando atribuir licenças elegíveis automaticamente',
'auto_assign_help' => 'Ignorar este utilizador na atribuição automática de licenças',
'software_user' => 'Software alocado a :name',
- 'send_email_help' => 'Você deve fornecer um endereço de e-mail para este usuário para enviar-lhe credenciais. Credenciais via e-mail só podem ser feitas na criação do usuário. As senhas são armazenadas em hash e não podem ser recuperadas depois de salvas.',
'view_user' => 'Ver Utilizador :name',
'usercsv' => 'Ficheiro CSV',
'two_factor_admin_optin_help' => 'As configurações de admin actuais permitem a aplicação selectiva de autenticação de dois passos. ',
diff --git a/resources/lang/pt-PT/general.php b/resources/lang/pt-PT/general.php
index ea3ec19796..484c8c4c45 100644
--- a/resources/lang/pt-PT/general.php
+++ b/resources/lang/pt-PT/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importar',
'import_this_file' => 'Mapear os campos e processar este arquivo',
'importing' => 'A importar',
- 'importing_help' => 'Você pode importar ativoss, acessórios, licenças, componentes, consumíveis e utilizadores via ficheiro CSV.
O CSV deve ser delimitado por vírgula e formatado com cabeçalhos que correspondem aos dos CSVs de exemplo na documentação.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Histórico de Importação',
'asset_maintenance' => 'Manutenção de Artigo',
'asset_maintenance_report' => 'Relatório de Manutenção de Artigos',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'licenças',
'total_accessories' => 'acessórios totais',
'total_consumables' => 'consumíveis totais',
+ 'total_cost' => 'Total Cost',
'type' => 'Tipo',
'undeployable' => 'Não implementável',
'unknown_admin' => 'Administrador desconhecido',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Nome de utilizador',
'update' => 'Atualizar',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Atrasado para Auditoria',
'accept' => 'Aceitar :asset',
'i_accept' => 'Aceito',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Eu recuso',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Aceitar/Recusar',
'sign_tos' => 'Assine abaixo para indicar que você concorda com os termos do serviço:',
'clear_signature' => 'Apagar assinatura',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissões',
'managed_ldap' => '(Gerenciado via LDAP)',
'export' => 'Exportar',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Sincronização LDAP',
'ldap_user_sync' => 'Sincronização de utilizador LDAP',
'synchronize' => 'Sincronizar',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Atualizar Valores Existentes?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Gestão de auto incremento de etiquetas de conteúdo está desabilitado, assim todas as linhas precisam de ter a coluna "Etiqueta de Artigo" preenchida.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Nota: Gestão de auto incremento de etiquetas de conteúdo está habilitado assim serão criadas \\"Etiquetas de artigo\\" para os artigos que não a possuem. As linhas que possuem "Etiqueta de artigo" preenchidas, serão atualizadas com as informações fornecidas.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Enviar e-mail',
'call' => 'Número de chamada',
'back_before_importing' => 'Fazer cópias de segurança antes de importar?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notas',
'item_name_var' => ':item Nome',
'error_user_company' => 'A empresa alvo de check-out e a empresa de ativos não coincidem',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Um Ativo atribuído a você pertence a uma empresa diferente, por isso você não pode aceitá-lo nem negá-lo, por favor verifique com o seu gerente',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Entregue a: Nome Completo',
'checked_out_to_first_name' => 'Entregue a: Primeiro Nome',
@@ -585,6 +595,8 @@ return [
'components' => ':count Componente|:count Componentes',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Mais Informações',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/pt-PT/mail.php b/resources/lang/pt-PT/mail.php
index 622456d532..5678e5c2c3 100644
--- a/resources/lang/pt-PT/mail.php
+++ b/resources/lang/pt-PT/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Acessório recebido',
- 'Accessory_Checkout_Notification' => 'Acessório verificado',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Confirme a devolução do acessório',
'Confirm_Asset_Checkin' => 'Confirmação da devolução do artigo',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Um ativo entregue a si deve ser entregue até :date',
'Expected_Checkin_Notification' => 'Lembrete: :name entrega com prazo aproximado',
'Expected_Checkin_Report' => 'Relatório de entregas de artigos esperados',
- 'Expiring_Assets_Report' => 'Relatório de artigos a expirar.',
- 'Expiring_Licenses_Report' => 'Relatório de Licenças a expirar.',
+ 'Expiring_Assets_Report' => 'Relatório de artigos a expirar',
+ 'Expiring_Licenses_Report' => 'Relatório de Licenças a expirar',
'Item_Request_Canceled' => 'Requisição de item cancelado',
'Item_Requested' => 'Item requisitado',
'License_Checkin_Notification' => 'Licença recebida',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Relatório de baixas de inventario',
'a_user_canceled' => 'Um utilizador cancelou um pedido de artigo no site',
'a_user_requested' => 'Um utilizador solicitou um artigo no site',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Um usuário aceitou um item',
'acceptance_asset_declined' => 'Um usuário recusou um item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nome do Ativo',
'asset_requested' => 'Artigo requesitado',
'asset_tag' => 'Etiqueta do Ativo',
- 'assets_warrantee_alert' => 'Existe :count artigo com a garantia a expirar nos próximos :threshold dias.|Existem :count artigos com a garantia a expirar nos próximos :threshold dias.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Atribuído a',
+ 'eol' => 'EOL (Fim de vida)',
'best_regards' => 'Atenciosamente',
'canceled' => 'Cancelado',
'checkin_date' => 'Data de devolução',
@@ -58,6 +59,7 @@ return [
'days' => 'Dias',
'expecting_checkin_date' => 'Data de devolução esperada',
'expires' => 'Expira a',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Olá',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Relatório de Inventário',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Há :count licença a expirar nos próximos :threshold dias. Existem :count licenças que irão expirar nos próximos :threshold dias.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Por favor clique no link abaixo para actualizar a sua senha do :web:',
'login' => 'Nome de registo',
'login_first_admin' => 'Faça login na sua instalação do Snipe-IT usando os dados abaixo:',
'low_inventory_alert' => 'Há :count que está abaixo do estoque mínimo ou em breve estará baixo. Existem :count itens que estão abaixo do estoque mínimo ou em breve estarão baixos.',
'min_QTY' => 'Qt. Min.',
'name' => 'Nome',
- 'new_item_checked' => 'Um novo item foi atribuído a ti, os detalhes estão abaixo.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notas',
'password' => 'Password',
diff --git a/resources/lang/ro-RO/admin/custom_fields/general.php b/resources/lang/ro-RO/admin/custom_fields/general.php
index 4b4dd468a8..97ab508ceb 100644
--- a/resources/lang/ro-RO/admin/custom_fields/general.php
+++ b/resources/lang/ro-RO/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Gestionează',
'field' => 'Camp',
'about_fieldsets_title' => 'Despre câmpuri',
- 'about_fieldsets_text' => 'Seturile de câmpuri vă permit să creați grupuri de câmpuri personalizate care sunt frecvent reutilizate utilizate pentru tipurile de modele specifice de materiale.',
+ 'about_fieldsets_text' => 'Seturile de câmpuri vă permit să grupați câmpurile personalizate care sunt frecvent utilizate pentru tipuri specifice de modele ale activelor.',
'custom_format' => 'Format Regex personalizat...',
'encrypt_field' => 'Criptați valoarea acestui câmp în baza de date',
'encrypt_field_help' => 'AVERTISMENT: Criptarea unui câmp o face imposibilă.',
diff --git a/resources/lang/ro-RO/admin/depreciations/general.php b/resources/lang/ro-RO/admin/depreciations/general.php
index e3c63436d5..3f81a8c25a 100644
--- a/resources/lang/ro-RO/admin/depreciations/general.php
+++ b/resources/lang/ro-RO/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Despre deprecierea activelor',
- 'about_depreciations' => 'Poti sa setezi deprecierea activelor bazat pe depreciere in linie.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Deprecierea activelor',
'create' => 'Creați amortizări',
'depreciation_name' => 'Nume depreciere',
diff --git a/resources/lang/ro-RO/admin/hardware/form.php b/resources/lang/ro-RO/admin/hardware/form.php
index 451dfeb203..5631a653c5 100644
--- a/resources/lang/ro-RO/admin/hardware/form.php
+++ b/resources/lang/ro-RO/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Selecteaza tip status',
'serial' => 'Serie',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Stare',
'tag' => 'Eticheta activ',
'update' => 'Actualizeaza activ',
diff --git a/resources/lang/ro-RO/admin/hardware/general.php b/resources/lang/ro-RO/admin/hardware/general.php
index 7cf7fca799..da3d40a184 100644
--- a/resources/lang/ro-RO/admin/hardware/general.php
+++ b/resources/lang/ro-RO/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Solicitat',
'not_requestable' => 'Nu poate fi solicitat',
'requestable_status_warning' => 'Nu schimba starea care poate fi solicitată',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restabilirea activului',
'pending' => 'In asteptare',
'undeployable' => 'Nelansabil',
diff --git a/resources/lang/ro-RO/admin/licenses/message.php b/resources/lang/ro-RO/admin/licenses/message.php
index 411ec37f4f..fe297562c8 100644
--- a/resources/lang/ro-RO/admin/licenses/message.php
+++ b/resources/lang/ro-RO/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Nu sunt disponibile suficiente locuri de licență pentru checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'A aparut o problema la primirea licentei. Va rugam incercati iar.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Licenta a fost primita'
),
diff --git a/resources/lang/ro-RO/admin/locations/message.php b/resources/lang/ro-RO/admin/locations/message.php
index 500553c36e..fdb2bc2da5 100644
--- a/resources/lang/ro-RO/admin/locations/message.php
+++ b/resources/lang/ro-RO/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Locatia nu exista.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Această locație este în prezent asociată cu cel puțin un material și nu poate fi ștearsă. Actualizați-vă activele astfel încât acestea să nu mai fie menționate și să încercați din nou.',
'assoc_child_loc' => 'Această locație este în prezent părinte pentru cel puțin o locație copil și nu poate fi ștearsă. Actualizați locațiile dvs. pentru a nu mai referi această locație și încercați din nou.',
'assigned_assets' => 'Atribuire Active',
'current_location' => 'Locația curentă',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ro-RO/admin/locations/table.php b/resources/lang/ro-RO/admin/locations/table.php
index a1021925e0..387107682f 100644
--- a/resources/lang/ro-RO/admin/locations/table.php
+++ b/resources/lang/ro-RO/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Creeaza locatie',
'update' => 'Actualizeaza locatie',
'print_assigned' => 'Tipărește active atribuite',
- 'print_all_assigned' => 'Tipărește toate activele atribuite',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Nume locatie',
'address' => 'Adresa',
'address2' => 'Adresă linia 2',
diff --git a/resources/lang/ro-RO/admin/models/table.php b/resources/lang/ro-RO/admin/models/table.php
index 66c0f405f9..c1ae44c4a3 100644
--- a/resources/lang/ro-RO/admin/models/table.php
+++ b/resources/lang/ro-RO/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Model activ',
'update' => 'Actualizeaza model activ',
'view' => 'Vezi modelul de activ',
- 'update' => 'Actualizeaza model activ',
- 'clone' => 'Cloneaza model',
- 'edit' => 'Editeaza model',
+ 'clone' => 'Cloneaza model',
+ 'edit' => 'Editeaza model',
);
diff --git a/resources/lang/ro-RO/admin/users/general.php b/resources/lang/ro-RO/admin/users/general.php
index d7b0d47a6f..9a9ac1899e 100644
--- a/resources/lang/ro-RO/admin/users/general.php
+++ b/resources/lang/ro-RO/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include acest utilizator la atribuirea automată a licențelor eligibile',
'auto_assign_help' => 'Sari peste acest utilizator în atribuirea automată a licențelor',
'software_user' => 'Software predat catre :name',
- 'send_email_help' => 'Trebuie să furnizați o adresă de e-mail pentru ca acest utilizator să îi trimită acreditările. Trimiterea de acreditări poate fi efectuată numai la crearea utilizatorului. Parolele sunt stocate într-un singur fel și nu pot fi recuperate după ce au fost salvate.',
'view_user' => 'Vezi utilizator :name',
'usercsv' => 'Fișier CSV',
'two_factor_admin_optin_help' => 'Setările dvs. actuale de administrare permit executarea selectivă a autentificării cu două factori.',
diff --git a/resources/lang/ro-RO/general.php b/resources/lang/ro-RO/general.php
index d36795a77c..79070bcd7d 100644
--- a/resources/lang/ro-RO/general.php
+++ b/resources/lang/ro-RO/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Harta câmpuri și procesarea acestui fișier',
'importing' => 'Importul',
- 'importing_help' => 'Puteți importa active, accesorii, licențe, componente, consumabile și utilizatori prin fișierul CSV.
CSV ar trebui să fie delimitat prin virgulă și formatat cu antete care se potrivesc cu cele din eșantionul din documentația.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Istoricul importurilor',
'asset_maintenance' => 'Mentenanta produs',
'asset_maintenance_report' => 'Raport privind mentenanta produsului',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'Total licente',
'total_accessories' => 'accesorii complete',
'total_consumables' => 'consumabile totale',
+ 'total_cost' => 'Total Cost',
'type' => 'Tipul',
'undeployable' => 'Nelansabil',
'unknown_admin' => 'Admin necunoscut',
'unknown_user' => 'Utilizator Necunoscut',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Utilizator',
'update' => 'Actualizează',
'updating_item' => 'Se actualizează :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Audit întârziat',
'accept' => 'Acceptă :asset',
'i_accept' => 'Accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Am refuzat',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Acceptă/Refuză',
'sign_tos' => 'Înregistrează-te mai jos pentru a indica faptul că ești de acord cu termenii serviciului:',
'clear_signature' => 'Șterge semnătura',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permisiuni',
'managed_ldap' => '(Gestionat prin LDAP)',
'export' => 'Exportă',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Sincronizare LDAP',
'ldap_user_sync' => 'Sincronizare utilizator LDAP',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Actualizeaza Valori Existente?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generarea etichetelor de active cu auto-incrementare este dezactivată astfel încât toate rândurile trebuie să aibă coloana "Etichetă activă".',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Notă: Generarea de etichete active auto-incrementare este activată, astfel încât activele vor fi create pentru rândurile care nu au "Eticheta activului" populată. Rândurile care au "Eticheta activului" populate vor fi actualizate cu informaţiile furnizate.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Trimite email',
'call' => 'Nr. apel',
'back_before_importing' => 'Copie de rezervă înainte de import?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Note',
'item_name_var' => 'Numele :item',
'error_user_company' => 'Compania țintă de verificare și compania de active nu se potrivesc',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Un activ atribuit dvs. aparține unei alte firme, astfel încât nu puteți accepta sau refuza acest lucru, vă rugăm să verificați cu managerul dvs.',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Verificat la: Numele complet',
'checked_out_to_first_name' => 'Verificat la: Prenume',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Componente',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Mai multe',
'quickscan_bulk_help' => 'Bifarea acestei căsuțe va edita înregistrarea activului pentru a reflecta această nouă locație. Lăsând-o nebifată, se va înregistra doar locația în jurnalul de audit. Rețineți că dacă acest activ este înregistrat (checked out), nu va schimba locația persoanei, activului sau locației către care este înregistrat (checked out).',
'whoops' => 'Ups!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT este software open source, realizat cu dragoste de @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Implicit Site',
'default_blue' => 'Albastru Implicit',
'blue_dark' => 'Albastru (Mod Întunecat)',
- 'green' => 'Verde Închis',
+ 'green' => 'Green',
'green_dark' => 'Verde (Mod Întunecat)',
- 'red' => 'Roșu Închis',
+ 'red' => 'Red',
'red_dark' => 'Roșu (Mod Întunecat)',
- 'orange' => 'Portocaliu Închis',
+ 'orange' => 'Orange',
'orange_dark' => 'Portocaliu (Mod Întunecat)',
'black' => 'Negru',
'black_dark' => 'Negru (Mod Întunecat)',
diff --git a/resources/lang/ro-RO/mail.php b/resources/lang/ro-RO/mail.php
index 109478ba7c..58797e877a 100644
--- a/resources/lang/ro-RO/mail.php
+++ b/resources/lang/ro-RO/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accesoriu verificat în',
- 'Accessory_Checkout_Notification' => 'Accesoriu predat',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Confirmare verificare accesoriu',
'Confirm_Asset_Checkin' => 'Confirmare verificare active',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Un activ verificat pentru tine urmează să fie verificat în data de :date',
'Expected_Checkin_Notification' => 'Notă: :name checkin termenul limită se apropie',
'Expected_Checkin_Report' => 'Raportul așteptat de verificare a activelor',
- 'Expiring_Assets_Report' => 'Raportul privind expirarea activelor.',
- 'Expiring_Licenses_Report' => 'Certificatul de licență expirat.',
+ 'Expiring_Assets_Report' => 'Raportul privind expirarea activelor',
+ 'Expiring_Licenses_Report' => 'Certificatul de licență expirat',
'Item_Request_Canceled' => 'Cererea de solicitare a fost anulată',
'Item_Requested' => 'Elementul solicitat',
'License_Checkin_Notification' => 'Licență verificată în',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Raport privind inventarul redus',
'a_user_canceled' => 'Un utilizator a anulat o solicitare de element pe site',
'a_user_requested' => 'Un utilizator a solicitat un element de pe site',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Un utilizator a acceptat un articol',
'acceptance_asset_declined' => 'Un utilizator a refuzat un articol',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Nume activ',
'asset_requested' => 'Activul solicitat',
'asset_tag' => 'Eticheta activ',
- 'assets_warrantee_alert' => 'Există :count active cu o garanție care expiră în următoarele :prag zile. Există :count active cu garanții care expiră în următoarele :threshold zile.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Atribuit',
+ 'eol' => 'EOL',
'best_regards' => 'Toate cele bune,',
'canceled' => 'Anulat',
'checkin_date' => 'Verificați data',
@@ -58,6 +59,7 @@ return [
'days' => 'zi',
'expecting_checkin_date' => 'Data de așteptare așteptată',
'expires' => 'expiră',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'buna',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Raport de inventar',
'item' => 'Articol',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Există :count licență care expiră în următoarele :prag zile. Există :count licențe care expiră în următoarele :threshold zile.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Faceți clic pe următorul link pentru a vă actualiza parola web:',
'login' => 'Logare',
'login_first_admin' => 'Conectați-vă la noua dvs. instalare Snipe-IT utilizând următoarele acreditări:',
'low_inventory_alert' => 'Există :count articol care este sub nivelul minim de inventar sau care va fi în curând scăzut. Există :count articole care sunt sub nivelul minim de inventar sau care vor fi în curând scăzute.',
'min_QTY' => 'Cantitate min',
'name' => 'Nume',
- 'new_item_checked' => 'Un element nou a fost verificat sub numele dvs., detaliile sunt de mai jos.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'notițe',
'password' => 'Parola',
diff --git a/resources/lang/ru-RU/admin/asset_maintenances/form.php b/resources/lang/ru-RU/admin/asset_maintenances/form.php
index abe46e9ff1..5d9b1be24d 100644
--- a/resources/lang/ru-RU/admin/asset_maintenances/form.php
+++ b/resources/lang/ru-RU/admin/asset_maintenances/form.php
@@ -3,7 +3,7 @@
return [
'select_type' => 'Выберите тип обслуживания',
'asset_maintenance_type' => 'Вид обслуживания актива',
- 'title' => 'Заголовок',
+ 'title' => 'Название',
'start_date' => 'Дата начала',
'completion_date' => 'Дата завершения',
'cost' => 'Стоимость',
diff --git a/resources/lang/ru-RU/admin/asset_maintenances/general.php b/resources/lang/ru-RU/admin/asset_maintenances/general.php
index a68eb0c1db..4c2b87f2c1 100644
--- a/resources/lang/ru-RU/admin/asset_maintenances/general.php
+++ b/resources/lang/ru-RU/admin/asset_maintenances/general.php
@@ -1,7 +1,7 @@
'Обслуживание',
+ 'asset_maintenances' => 'Обслуживания активов',
'edit' => 'Редактировать',
'delete' => 'Удалить',
'view' => 'Показать подробности',
diff --git a/resources/lang/ru-RU/admin/custom_fields/general.php b/resources/lang/ru-RU/admin/custom_fields/general.php
index b257dce079..5cc67ad75e 100644
--- a/resources/lang/ru-RU/admin/custom_fields/general.php
+++ b/resources/lang/ru-RU/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Управление',
'field' => 'Поле',
'about_fieldsets_title' => 'О наборах полей',
- 'about_fieldsets_text' => 'Наборы полей позволяют вам создать группы пользовательских полей, которые часто используются для конкретных моделей автивов.',
+ 'about_fieldsets_text' => 'Наборы полей позволяют создавать группы настраиваемых полей, которые часто переиспользуются для конкретных типов моделей активов.',
'custom_format' => 'Пользовательский формат регулярных выражений...',
'encrypt_field' => 'Зашифровать значение этого поля в базе данных',
'encrypt_field_help' => 'ПРЕДУПРЕЖДЕНИЕ: Шифрование поля исключит возможность поиска по нему.',
diff --git a/resources/lang/ru-RU/admin/depreciations/general.php b/resources/lang/ru-RU/admin/depreciations/general.php
index 80c0da5007..e4bc5bb1f2 100644
--- a/resources/lang/ru-RU/admin/depreciations/general.php
+++ b/resources/lang/ru-RU/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'О износе активов',
- 'about_depreciations' => 'Этот раздел служит для настройки расчета вычисления степени износа активов.',
+ 'about_depreciations' => 'Вы можете настроить амортизацию активов, чтобы амортизировать активы на основе линейного метода (прямолинейного), метода полугодовой амортизации или метода полугодовой амортизации с учетом условий.',
'asset_depreciations' => 'Износ активов',
'create' => 'Создать амортизацию',
'depreciation_name' => 'Название амортизации',
@@ -14,7 +14,7 @@ return [
В настоящее время у вас нет настроенных амортизаций.
Пожалуйста, установите хотя бы одну амортизацию для просмотра отчета об амортизации.',
'depreciation_method' => 'Отчет по амортизации',
- 'linear_depreciation' => 'Linear (Default)',
- 'half_1' => 'Half-year convention, always applied',
- 'half_2' => 'Half-year convention, applied with condition',
+ 'linear_depreciation' => 'Линейный (по умолчанию)',
+ 'half_1' => 'Полугодовой амортизация',
+ 'half_2' => 'Полугодовая амортизация, с учетом условий',
];
diff --git a/resources/lang/ru-RU/admin/hardware/form.php b/resources/lang/ru-RU/admin/hardware/form.php
index 3b74a52de7..6d02b3c4ea 100644
--- a/resources/lang/ru-RU/admin/hardware/form.php
+++ b/resources/lang/ru-RU/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Перейти к заметке',
'select_statustype' => 'Выберите тип статуса',
'serial' => 'Серийный номер',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Статус',
'tag' => 'Тег актива',
'update' => 'Изменить актив',
diff --git a/resources/lang/ru-RU/admin/hardware/general.php b/resources/lang/ru-RU/admin/hardware/general.php
index e8eff15481..5dc7772e01 100644
--- a/resources/lang/ru-RU/admin/hardware/general.php
+++ b/resources/lang/ru-RU/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Запрошенное',
'not_requestable' => 'Не подлежит запросу',
'requestable_status_warning' => 'Не изменять запрашиваемый статус',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Восстановить актив',
'pending' => 'Ожидание',
'undeployable' => 'Выданные',
diff --git a/resources/lang/ru-RU/admin/licenses/message.php b/resources/lang/ru-RU/admin/licenses/message.php
index b6df0d1a41..f3ab73ead6 100644
--- a/resources/lang/ru-RU/admin/licenses/message.php
+++ b/resources/lang/ru-RU/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Недостаточно мест лицензии для выдачи',
'mismatch' => 'Предоставленное место лицензии не соответствует лицензии',
'unavailable' => 'Место недоступно для выдачи.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'При возврате лицензии произошла проблема. Попробуйте снова.',
- 'not_reassignable' => 'Лицензия не переназначаема',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Лицензия возвращена'
),
diff --git a/resources/lang/ru-RU/admin/locations/message.php b/resources/lang/ru-RU/admin/locations/message.php
index 8592afc96f..6d5d6a3b05 100644
--- a/resources/lang/ru-RU/admin/locations/message.php
+++ b/resources/lang/ru-RU/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Местоположение не существует.',
- 'assoc_users' => 'Это местоположение в не может быть удалено, потому что поскольку это местоположение по крайней мере для одного актива или пользователя, имеет назначенные ему активы или является родительским местоположением другого местоположения. Измените записи так, чтобы они не ссылались на это местоположение, и попробуйте снова ',
+ 'assoc_users' => 'Это местоположение в не может быть удалено, потому что это местоположение по крайней мере одного объекта или пользователя, имеет назначенные ему активы или является родительским местоположением другого местоположения. Измените записи так, чтобы они не ссылались на это местоположение, и попробуйте снова ',
'assoc_assets' => 'Это местоположение связано по крайней мере с одним активом и не может быть удалено. Измените активы так, чтобы они не ссылались на это местоположение и попробуйте снова. ',
'assoc_child_loc' => 'У этого месторасположения является родительским и у него есть как минимум одно месторасположение уровнем ниже. Поэтому оно не может быть удалено. Обновите ваши месторасположения, так чтобы не ссылаться на него, и попробуйте снова. ',
'assigned_assets' => 'Назначенные активы',
'current_location' => 'Текущее местоположение',
'open_map' => 'Открыть в картах :map_provider_icon',
+ 'deleted_warning' => 'Это местоположение было удалено. Восстановите его перед попыткой внести какие-либо изменения.',
'create' => array(
diff --git a/resources/lang/ru-RU/admin/locations/table.php b/resources/lang/ru-RU/admin/locations/table.php
index b91fcaf834..e82c62f420 100644
--- a/resources/lang/ru-RU/admin/locations/table.php
+++ b/resources/lang/ru-RU/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Создать местоположение',
'update' => 'Обновить местоположение',
'print_assigned' => 'Печать назначенных',
- 'print_all_assigned' => 'Печать всех выделенных',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Название',
'address' => 'Адрес',
'address2' => 'Адрес, строка 2',
diff --git a/resources/lang/ru-RU/admin/models/table.php b/resources/lang/ru-RU/admin/models/table.php
index 4d5f29b9a9..29356817d4 100644
--- a/resources/lang/ru-RU/admin/models/table.php
+++ b/resources/lang/ru-RU/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Модели активов',
'update' => 'Измененить модель актива',
'view' => 'Просмотр модели актива',
- 'update' => 'Измененить модель актива',
- 'clone' => 'Клонировать модель',
- 'edit' => 'Изменить модель',
+ 'clone' => 'Клонировать модель',
+ 'edit' => 'Изменить модель',
);
diff --git a/resources/lang/ru-RU/admin/users/general.php b/resources/lang/ru-RU/admin/users/general.php
index 86e52fe343..3692462428 100644
--- a/resources/lang/ru-RU/admin/users/general.php
+++ b/resources/lang/ru-RU/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Включить этого пользователя при автоматическом назначении лицензий',
'auto_assign_help' => 'Пропустить этого пользователя в автоматическом назначении лицензий',
'software_user' => 'Программное обеспечение привязано к :name',
- 'send_email_help' => 'Вы должны указать адрес электронной почты для этого пользователя, чтобы отправить им учетные данные. Электронная почта может быть выполнена только при создании пользователя. Пароли хранятся в одностороннем хэше и не могут быть восстановлены после сохранения.',
'view_user' => 'Показать пользователя :name',
'usercsv' => 'CSV файл',
'two_factor_admin_optin_help' => 'Ваши текущие параметры администрирования разрешают избирательное применение двухфакторной аутентификации. ',
diff --git a/resources/lang/ru-RU/auth/general.php b/resources/lang/ru-RU/auth/general.php
index a8c2cf2dfb..1fb8c966ab 100644
--- a/resources/lang/ru-RU/auth/general.php
+++ b/resources/lang/ru-RU/auth/general.php
@@ -14,7 +14,7 @@ return [
'username_help_bottom' => 'Ваши Имя Пользователя и Ваш E-Mail могут быть одинаковыми, но могут и не быть, в зависимости от Вашей конфигурации. Если Вы не можете вспомнить Ваше Имя Пользователя - обратитесь к Вашему системному администратору.
CSV должен быть разделен запятыми и отформатирован заголовками, которые соответствуют заголовкам образца CSV в документации.',
+ 'importing_help' => 'CSV-файл должен быть разделён запятыми и отформатирован с заголовками, соответствующими заголовкам в примерах CSV-файлов из документации.',
'import-history' => 'История импорта',
'asset_maintenance' => 'Обслуживание',
'asset_maintenance_report' => 'Отчет по обслуживанию',
@@ -228,13 +228,13 @@ return [
'order_number' => 'Номер заказа',
'only_deleted' => 'Только удаленные активы',
'page_menu' => 'Показаны элементы _MENU_',
- 'page_error' => 'Could not determine previous page. Redirected to homepage.',
+ 'page_error' => 'Не удалось определить предыдущую страницу. Переход на главную страницу.',
'pagination_info' => 'Показаны _START_ для _END_ _TOTAL_ элементы',
'pending' => 'Ожидание',
'people' => 'Пользователи',
'per_page' => 'Результатов на страницу',
'previous' => 'Пред',
- 'previous_page' => 'Previous Page',
+ 'previous_page' => 'Предыдущая страница',
'processing' => 'Обработка',
'profile' => 'Ваш профиль',
'purchase_cost' => 'Закупочная цена',
@@ -294,7 +294,7 @@ return [
'status_label' => 'Метки статуса',
'status' => 'Статус',
'accept_eula' => 'Соглашение о приемке',
- 'eula' => 'EULAs',
+ 'eula' => 'EULA',
'eula_long' => 'Лицензионное соглашение с конечным пользователем',
'show_or_hide_eulas' => 'Показать/скрыть EULA',
'supplier' => 'Поставщик',
@@ -309,14 +309,16 @@ return [
'total_licenses' => 'Всего лицензий',
'total_accessories' => 'всего аксессуаров',
'total_consumables' => 'всего расходников',
+ 'total_cost' => 'Общая стоимость ',
'type' => 'Тип',
'undeployable' => 'Не развертываемый',
'unknown_admin' => 'Неизвестный администратор',
'unknown_user' => 'Неизвестный пользователь',
+ 'unit_cost' => 'Стоимость единицы',
'username' => 'Пользователь',
'update' => 'Обновить',
'updating_item' => 'Обновление :item',
- 'upload_filetypes_help' => 'Allowed filetypes are: :allowed_filetypes. Max upload size allowed is :size.',
+ 'upload_filetypes_help' => 'Допустимые типы файлов: :allowed_filetypes. Максимальный размер загружаемых файлов: size.',
'uploaded' => 'Загружено',
'user' => 'Пользователь',
'password' => 'Пароль',
@@ -328,9 +330,9 @@ return [
'users' => 'Пользователи',
'viewall' => 'Посмотреть все',
'viewassets' => 'Показать присвоенные элементы',
- 'viewassetsfor' => 'View Items for :name',
- 'view_user_assets' => 'View Items Assigned to User',
- 'me' => 'Me',
+ 'viewassetsfor' => 'Список активов на :name',
+ 'view_user_assets' => 'Просмотр элементов, назначенных пользователю',
+ 'me' => 'Я',
'website' => 'Сайт',
'welcome' => 'Добро пожаловать, :name',
'years' => 'Лет',
@@ -338,13 +340,13 @@ return [
'zip' => 'Почтовый индекс',
'noimage' => 'Изображение не загружено или не найдено.',
'file_does_not_exist' => 'Запрашиваемый файл не существует на сервере.',
- 'file_not_inlineable' => 'The requested file cannot be opened inline in your browser. You can download it instead.',
- 'open_new_window' => 'Open this file in a new window',
+ 'file_not_inlineable' => 'Запрашиваемый файл не может быть открыт в Вашем браузере. Вы можете скачать его вместо этого.',
+ 'open_new_window' => 'Открыть этот файл в новом окне',
'file_upload_success' => 'Файл успешно загружен!',
'no_files_uploaded' => 'Файл успешно загружен!',
'token_expired' => 'Время вашей сессии истекло. Пожалуйста, войдите снова.',
'login_enabled' => 'Вход разрешен',
- 'login_disabled' => 'Login Disabled',
+ 'login_disabled' => 'Вход отключён',
'audit_due' => 'Ожидает аудита',
'audit_due_days' => '{}Активы, подлежащие или просроченные для аудита |[1]Активы, подлежащие или просроченные для аудита в течение дня|[2,*]Активы, подлежащие или просроченные для аудита в течение :days дней',
'checkin_due' => 'Срок сдачи чека',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Проверка просрочена',
'accept' => 'Принять :asset',
'i_accept' => 'Принимаю',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'Я принимаю :count элемент|Я принимаю :count предметов',
+ 'i_decline_item' => 'Отклонить этот пункт|Отклонить эти пункты',
+ 'i_accept_item' => 'Принять этот элемент|Принять эти элементы',
'i_decline' => 'Отклоняю',
+ 'i_decline_with_count' => 'Я отклоняю :count элемент|Я отклоняю :count элементов',
'accept_decline' => 'Принять/Отклонить',
'sign_tos' => 'Подпишитесь ниже, чтобы указать, что вы согласны с условиями предоставления услуг:',
'clear_signature' => 'Очистить подпись',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Права',
'managed_ldap' => '(Управляется через LDAP)',
'export' => 'Экспорт',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Синхронизация',
'ldap_user_sync' => 'Синхронизация пользователей LDAP',
'synchronize' => 'Синхронизировать',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Обновить существующие значения?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Генерация автоинкрементных тегов активов отключена, поэтому во всех строках должен быть заполнен столбец "Asset Tag".',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Примечание: включен автоинкремент для счетчика тегов активов. Поэтому теги будут созданы для строк с пустым полем "Тег Актива". Строки с заполненным полем "Тег актива" будут обновлены в соответствии с предоставленной информацией.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Отправить приветственное письмо новым пользователям',
+ 'send_welcome_email_help' => 'Только пользователи, имеющие действительный адрес электронной почты и помеченные как активированные, получат приветственное письмо, где они могут сбросить свой пароль.',
+ 'send_welcome_email_import_help' => 'Только новые пользователи с действительным адресом электронной почты и отмеченные как активированные в вашем файле импорта получат приветственное письмо, где они могут установить свой пароль.',
'send_email' => 'Отправить письмо',
'call' => 'Номер телефона',
'back_before_importing' => 'Сделать бекап перед импортом?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Заметки',
'item_name_var' => ':название',
'error_user_company' => 'Компания-получатель актива не соответствует компании-владельцу актива',
+ 'error_user_company_multiple' => 'Компания-получатель актива не соответствует компании-владельцу актива',
'error_user_company_accept_view' => 'Актив, назначенный вам принадлежит другой компании, поэтому вы не можете принять или отклонить его, пожалуйста, проверьте с вашим менеджером',
+ 'error_assets_already_checked_out' => 'Один или несколько активов уже выданы',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Проверено на: Полное имя',
'checked_out_to_first_name' => 'Перемещено на: Имя',
@@ -525,7 +535,7 @@ return [
'manager_last_name' => 'Фамилия менеджера',
'manager_full_name' => 'Полное имя менеджера',
'manager_username' => 'Имя пользователя',
- 'manager_employee_num' => 'Manager Employee Number',
+ 'manager_employee_num' => 'Номер сотрудника менеджера',
'checkout_type' => 'Тип оформления заказа',
'checkout_location' => 'Оформить заказ на адрес',
'image_filename' => 'Имя файла изображения',
@@ -556,8 +566,8 @@ return [
'phone' => 'Телефон',
'fax' => 'Факс',
'contact' => 'Контакт',
- 'show_admins' => 'Admin Users',
- 'show_superadmins' => 'Superusers',
+ 'show_admins' => 'Администраторы',
+ 'show_superadmins' => 'Суперпользователи',
'edit_fieldset' => 'Редактировать поля и параметры набора полей',
'permission_denied_superuser_demo' => 'В разрешении отказано. Вы не можете обновить информацию пользователя для суперадминов в демо.',
'pwd_reset_not_sent' => 'Пользователь не активирован, синхронизирован LDAP или не имеет адреса электронной почты',
@@ -585,6 +595,8 @@ return [
'components' => ':count компонент|:count компонентов',
],
+ 'show_inactive' => 'Истек или завершен',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Подробнее',
'quickscan_bulk_help' => 'Установка этого флажка приведет к изменению записи об активе с учетом нового местоположения. Если флажок не установлен, то местоположение будет просто отмечено в журнале аудита. Обратите внимание, что если этот актив выписан, то он не изменит местоположение человека, актива или места, на которое он выписан.',
'whoops' => 'Упс!',
@@ -604,11 +616,13 @@ return [
'by' => 'Кем',
'version' => 'Версия',
'build' => 'Билд',
- 'use_cloned_image' => 'Clone image from original',
- 'use_cloned_image_help' => 'You may clone the original image or you can upload a new one using the upload field below.',
- 'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
- 'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
- 'set_password' => 'Set a Password',
+ 'use_cloned_image' => 'Клонировать изображение с оригинала',
+ 'use_cloned_image_help' => 'Вы можете клонировать исходное изображение или вы можете загрузить новое с помощью поля загрузки ниже.',
+ 'use_cloned_no_image_help' => 'Этот элемент не имеет связанного изображения и наследует из модели или категории, к которой он принадлежит. Если вы хотите использовать конкретное изображение для этого элемента, вы можете загрузить новое ниже.',
+ 'footer_credit' => 'Snipe-IT - это программное обеспечение с открытым исходным кодом, созданное с любовью командой @snipeitapp.com.',
+ 'set_password' => 'Установить пароль',
+ 'upload_deleted' => 'Загрузка удалена',
+ 'child_locations' => 'Дочерние места',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Стандартный',
'default_blue' => 'Стандартный синий',
'blue_dark' => 'Синий (тёмный режим)',
- 'green' => 'Тёмно-зелёный',
+ 'green' => 'Зеленый',
'green_dark' => 'Зелёный (темный режим)',
- 'red' => 'Тёмно-красный',
+ 'red' => 'Красный',
'red_dark' => 'Красный (тёмный режим)',
- 'orange' => 'Тёмно-оранжевый',
+ 'orange' => 'Оранжевый',
'orange_dark' => 'Оранжевый (тёмный режим)',
'black' => 'Чёрный',
'black_dark' => 'Чёрный (тёмный режим)',
@@ -660,28 +674,28 @@ return [
'file_upload_status' => [
'upload' => [
- 'success' => 'File successfully uploaded |:count files successfully uploaded',
- 'error' => 'File upload failed |:count file uploads failed',
+ 'success' => 'Файл успешно загружен |:count файлов успешно загружено',
+ 'error' => 'Не удалось загрузить файл |:count файл не удалось',
],
'delete' => [
- 'success' => 'File successfully deleted |:count files successfully deleted',
- 'error' => 'File deletion failed |:count file deletions failed',
+ 'success' => 'Файл успешно загружен |:count файлов успешно загружено',
+ 'error' => 'Не удалось загрузить файл |:count файл не удалось',
],
- 'file_not_found' => 'The selected file was not found on server',
+ 'file_not_found' => 'Выбранный файл не найден на сервере',
'invalid_id' => 'Этот ID файла неверный',
- 'invalid_object' => 'That object ID is invalid',
- 'nofiles' => 'No files were included for upload',
- 'confirm_delete' => 'Are you sure you want to delete this file?',
+ 'invalid_object' => 'Этот ID файла неверный',
+ 'nofiles' => 'Файлы не были включены для загрузки',
+ 'confirm_delete' => 'Вы действительно хотите удалить этот файл?',
],
'depreciation_options' => [
- 'amount' => 'Amount',
- 'percent' => 'Percentage',
+ 'amount' => 'Всего',
+ 'percent' => 'Проценты',
],
- 'months_plural' => '1 month|:count months',
+ 'months_plural' => '1 месяц|:count месяцев',
];
diff --git a/resources/lang/ru-RU/localizations.php b/resources/lang/ru-RU/localizations.php
index 54cef61baa..bbe3d03f17 100644
--- a/resources/lang/ru-RU/localizations.php
+++ b/resources/lang/ru-RU/localizations.php
@@ -2,7 +2,7 @@
return [
- 'select_language' => 'Select a Language',
+ 'select_language' => 'Выберите язык',
'languages' => [
'en-US'=> 'Английский, США',
'en-GB'=> 'Английский, Великобритания',
@@ -41,7 +41,7 @@ return [
'mi-NZ'=> 'Маори',
'mn-MN'=> 'Монгольский',
'nb-NO'=> 'Норвежский Букмол',
- 'om-ET' => 'Oromo (Ethiopian)',
+ 'om-ET' => 'Оромо (Эфиопия)',
//'nn-NO'=> 'Norwegian Nynorsk',
'fa-IR'=> 'Персидский',
'pl-PL'=> 'Польский',
@@ -68,7 +68,7 @@ return [
'zu-ZA'=> 'Зулу',
],
- 'select_country' => 'Select a Country',
+ 'select_country' => 'Выберите страну',
'countries' => [
'AC'=>'Остров Вознесения',
diff --git a/resources/lang/ru-RU/mail.php b/resources/lang/ru-RU/mail.php
index 6ccc17dd46..e4c082afd6 100644
--- a/resources/lang/ru-RU/mail.php
+++ b/resources/lang/ru-RU/mail.php
@@ -3,47 +3,48 @@
return [
'Accessory_Checkin_Notification' => 'Аксессуар выдан',
- 'Accessory_Checkout_Notification' => 'Аксессуар выведен',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Аксессуар выдан|:count Аксессуара выдано',
+ 'Asset_Checkin_Notification' => 'Актив принят',
+ 'Asset_Checkout_Notification' => 'Актив выдан',
'Confirm_Accessory_Checkin' => 'Подтвердить возврат аксессуара',
'Confirm_Asset_Checkin' => 'Подтверждение возврата активов',
- 'Confirm_component_checkin' => 'Component checkin confirmation',
+ 'Confirm_component_checkin' => 'Подтвердить возврат аксессуара',
'Confirm_accessory_delivery' => 'Подтвердить доставку аксессуара',
'Confirm_asset_delivery' => 'Подтвердить доставку актива',
'Confirm_consumable_delivery' => 'Подтвердить доставку расходников',
- 'Confirm_component_delivery' => 'Component delivery confirmation',
+ 'Confirm_component_delivery' => 'Подтвердить доставки аксессуара',
'Confirm_license_delivery' => 'Подтвердите получение лицензии',
'Consumable_checkout_notification' => 'Расходный материал выведен',
- 'Component_checkout_notification' => 'Component checked out',
- 'Component_checkin_notification' => 'Component checked in',
+ 'Component_checkout_notification' => 'Компонент выдан',
+ 'Component_checkin_notification' => 'Компонент возвращен',
'Days' => 'Дни',
'Expected_Checkin_Date' => 'Актив, выданный вам ранее, должен быть проверен :date дней назад',
'Expected_Checkin_Notification' => 'Напоминание: приближается крайний срок проверки :name',
'Expected_Checkin_Report' => 'Отчёт запрошенных активов',
- 'Expiring_Assets_Report' => 'Отчет об истечении активов.',
- 'Expiring_Licenses_Report' => 'Отчет об истечении лицензий.',
+ 'Expiring_Assets_Report' => 'Отчет об истечении активов',
+ 'Expiring_Licenses_Report' => 'Отчет об истечении лицензий',
'Item_Request_Canceled' => 'Запрос предмета отменен',
'Item_Requested' => 'Предмет запрошен',
'License_Checkin_Notification' => 'Лицензия выдана',
'License_Checkout_Notification' => 'Лицензия заблокирована',
- 'license_for' => 'License for',
+ 'license_for' => 'Лицензия для',
'Low_Inventory_Report' => 'Отчет о заканчивающихся предметах',
'a_user_canceled' => 'Пользователь отменил запрос элемента на веб-сайте',
'a_user_requested' => 'Пользователь запросил элемент на веб-сайте',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'Вы подтвердили элемент, назначенный вам на :site_name. | Вы подтвердили :qty элементов, назначенных вам на :site_name',
'acceptance_asset_accepted' => 'Пользователь принял элемент',
'acceptance_asset_declined' => 'Пользователь отклонил элемент',
- 'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
+ 'send_pdf_copy' => 'Отправить копию этого подтверждения на мой адрес электронной почты',
'accessory_name' => 'Имя аксессуара',
'additional_notes' => 'Дополнительные Примечания',
- 'admin_has_created' => 'An administrator has created an account for you on the :web website. Please find your username below, and click on the link to set a password.',
+ 'admin_has_created' => 'Администратор создал для вас учетную запись на сайте :web. Пожалуйста, найдите ваше имя пользователя ниже и перейдите по ссылке, чтобы установить пароль.',
'asset' => 'Актив',
'asset_name' => 'Имя актива',
'asset_requested' => 'Актив запрошен',
'asset_tag' => 'Тег актива',
- 'assets_warrantee_alert' => 'Имеется :count актив, гарантия на который истечет в следующ(ие/ий) :threshold дней/день.|Имеется :count активов, гарантия на которые истечет в следующ(ие/ий) :threshold дней/день.',
+ 'assets_warrantee_alert' => 'Есть :count актив с истекающей гарантией или приближающийся к концу срока службы в ближайш(ий/ие) :threshold день/дней. | Есть :count актив(а/ов) с истекающими гарантиями или приближающихся к концу срока службы в ближайш(ий/ие) :threshold день/дней.',
'assigned_to' => 'Выдано',
+ 'eol' => 'Срок службы',
'best_regards' => 'С наилучшими пожеланиями,',
'canceled' => 'Отменен',
'checkin_date' => 'Дата возврата',
@@ -58,27 +59,28 @@ return [
'days' => 'Дни',
'expecting_checkin_date' => 'Ожидаемая дата возврата',
'expires' => 'Истекает',
- 'following_accepted' => 'The following was accepted',
- 'following_declined' => 'The following was declined',
+ 'terminates' => 'Terminates',
+ 'following_accepted' => 'Следующее было подтверждено',
+ 'following_declined' => 'Следующее было отклонено',
'hello' => 'Привет',
'hi' => 'Привет',
'i_have_read' => 'Я прочитал и согласен с условиями использования, и получил этот предмет.',
- 'initiated_accepted' => 'A checkout you initiated was accepted',
- 'initiated_declined' => 'A checkout you initiated was declined',
+ 'initiated_accepted' => 'Выдача, которую вы инициировали, была подтверждена',
+ 'initiated_declined' => 'Выдача, которую вы инициировали, была отклонена',
'inventory_report' => 'Отчет о запасах',
'item' => 'Предмет',
'item_checked_reminder' => 'Напоминание о том, что в настоящее время у вас есть :count предметов, выданных вам, которые вы не приняли. Пожалуйста, нажмите на ссылку ниже, чтобы принять решение.',
- 'license_expiring_alert' => 'Имеется :count лицензия, срок которой истечет в следующ(ие/ий) :threshold дней/день.|Имеются :count лицензии, срок которых истечет в следующ(ие/ий) :threshold дней/день.',
+ 'license_expiring_alert' => 'Имеется :count лиценз(ия/ий), срок котор(ой/ых) истечет в следующ(ие/ий) :threshold дней/день.|Имеются :count лиценз(ия/ии), срок котор(ой/ых) истечет в следующ(ие/ий) :threshold дней/день.',
'link_to_update_password' => 'Пожалуйста, перейдите по ссылке, чтобы обновить ваш :web пароль:',
'login' => 'Логин',
'login_first_admin' => 'Чтобы войти в Snipe-It используйте следующие логин и пароль:',
'low_inventory_alert' => 'Осталась :count штука, что или уже ниже минимального запаса, или скоро будет ниже.|Осталось :count штук, что или уже ниже минимального запаса, или скоро будет ниже.',
'min_QTY' => 'Мин Кол-во',
'name' => 'Название',
- 'new_item_checked' => 'Новый предмет был выдан под вашем именем, подробности ниже.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
- 'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked' => 'Новый элемент был оформлен на ваше имя, подробности находятся ниже.|:count нов(ый/ых) элемент(ов) было оформлено на ваше имя, подробности ниже.',
+ 'new_item_checked_with_acceptance' => 'Новый элемент был оформлен под вашим именем, который требует подтверждения, подробности приведены ниже.|:count новых элементов было выгружено на ваше имя, что требует подтверждения, подробности ниже.',
+ 'new_item_checked_location' => 'Новый элемент был зарегистрирован по адресу :location, подробности ниже.',
+ 'recent_item_checked' => 'Недавно на ваше имя был зарегистрирован элемент, требующий подтверждения, подробности ниже.',
'notes' => 'Заметки',
'password' => 'Пароль',
'password_reset' => 'Сброс пароля',
@@ -101,7 +103,7 @@ return [
'upcoming-audits' => ':count активов запланированы для аудита в течение :threshold дней.| :count активов будут запланированы для аудита через :threshold дней.',
'user' => 'Пользователь',
'username' => 'Имя пользователя',
- 'unaccepted_asset_reminder' => 'Reminder: You have Unaccepted Assets.',
+ 'unaccepted_asset_reminder' => 'Напоминание: У вас есть неподтвержденные активы.',
'welcome' => 'Добро пожаловать, :name',
'welcome_to' => 'Добро пожаловать на :web!',
'your_assets' => 'Посмотреть активы',
diff --git a/resources/lang/si-LK/account/general.php b/resources/lang/si-LK/account/general.php
index 7f9e2f848e..6b22d78fb0 100644
--- a/resources/lang/si-LK/account/general.php
+++ b/resources/lang/si-LK/account/general.php
@@ -4,14 +4,14 @@ return array(
'personal_api_keys' => 'Personal API Keys',
'personal_access_token' => 'Personal Access Token',
'personal_api_keys_success' => 'Personal API Key :key created sucessfully',
- 'here_is_api_key' => 'Here is your new personal access token. This is the only time it will be shown so do not lose it! You may now use this token to make API requests.',
- 'api_key_warning' => 'When generating an API token, be sure to copy it down immediately as they will not be visible to you again.',
- 'api_base_url' => 'Your API base url is located at:',
+ 'here_is_api_key' => 'මෙන්න ඔබේ නව පුද්ගලික ප්රවේශ ටෝකනය. මෙය පෙන්වන එකම අවස්ථාව මෙය බැවින් එය නැති කර නොගන්න! දැන් ඔබට API ඉල්ලීම් කිරීමට මෙම ටෝකනය භාවිතා කළ හැකිය.',
+ 'api_key_warning' => 'API ටෝකනයක් ජනනය කරන විට, ඒවා ඔබට නැවත දෘශ්යමාන නොවන බැවින් එය වහාම පිටපත් කිරීමට වග බලා ගන්න.',
+ 'api_base_url' => 'ඔබගේ API පාදක url එක පිහිටා ඇත්තේ:',
'api_base_url_endpoint' => '/<endpoint>',
- 'api_token_expiration_time' => 'API tokens are set to expire in:',
- 'api_reference' => 'Please check the API reference to find specific API endpoints and additional API documentation.',
- 'profile_updated' => 'Account successfully updated',
- 'no_tokens' => 'You have not created any personal access tokens.',
- 'enable_sounds' => 'Enable sound effects',
+ 'api_token_expiration_time' => 'API ටෝකන කල් ඉකුත් වීමට සකසා ඇත්තේ:',
+ 'api_reference' => 'නිශ්චිත API අන්ත ලක්ෂ්ය සහ අමතර API ලියකියවිලි සොයා ගැනීමට කරුණාකර API යොමුව පරීක්ෂා කරන්න.',
+ 'profile_updated' => 'ගිණුම සාර්ථකව යාවත්කාලීන කරන ලදී',
+ 'no_tokens' => 'ඔබ කිසිදු පුද්ගලික ප්රවේශ ටෝකනයක් නිර්මාණය කර නොමැත.',
+ 'enable_sounds' => 'ශබ්ද ප්රයෝග සබල කරන්න',
'enable_confetti' => 'Enable confetti effects',
);
diff --git a/resources/lang/si-LK/admin/custom_fields/general.php b/resources/lang/si-LK/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/si-LK/admin/custom_fields/general.php
+++ b/resources/lang/si-LK/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/si-LK/admin/depreciations/general.php b/resources/lang/si-LK/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/si-LK/admin/depreciations/general.php
+++ b/resources/lang/si-LK/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/si-LK/admin/hardware/form.php b/resources/lang/si-LK/admin/hardware/form.php
index 2ba04ea5ea..b5951bb100 100644
--- a/resources/lang/si-LK/admin/hardware/form.php
+++ b/resources/lang/si-LK/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/si-LK/admin/hardware/general.php b/resources/lang/si-LK/admin/hardware/general.php
index bc972da290..09282b9190 100644
--- a/resources/lang/si-LK/admin/hardware/general.php
+++ b/resources/lang/si-LK/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/si-LK/admin/licenses/message.php b/resources/lang/si-LK/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/si-LK/admin/licenses/message.php
+++ b/resources/lang/si-LK/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/si-LK/admin/locations/message.php b/resources/lang/si-LK/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/si-LK/admin/locations/message.php
+++ b/resources/lang/si-LK/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/si-LK/admin/locations/table.php b/resources/lang/si-LK/admin/locations/table.php
index 53176d8a4e..d7128b30f7 100644
--- a/resources/lang/si-LK/admin/locations/table.php
+++ b/resources/lang/si-LK/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/si-LK/admin/models/table.php b/resources/lang/si-LK/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/si-LK/admin/models/table.php
+++ b/resources/lang/si-LK/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/si-LK/admin/users/general.php b/resources/lang/si-LK/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/si-LK/admin/users/general.php
+++ b/resources/lang/si-LK/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/si-LK/auth.php b/resources/lang/si-LK/auth.php
index 14d8acfce0..8c19b914a7 100644
--- a/resources/lang/si-LK/auth.php
+++ b/resources/lang/si-LK/auth.php
@@ -13,8 +13,8 @@ return array(
|
*/
- 'failed' => 'These credentials do not match our records.',
- 'password' => 'The provided password is incorrect.',
- 'throttle' => 'Too many login attempts. Please try again in :minutes minute(s).',
+ 'failed' => 'මෙම credentials අපගේ වාර්තා සමඟ නොගැලපේ.',
+ 'password' => 'සපයා ඇති මුරපදය වැරදියි.',
+ 'throttle' => 'පිවිසුම් උත්සාහයන් වැඩියි. කරුණාකර මිනිත්තු :minutes කින් නැවත උත්සාහ කරන්න.',
);
diff --git a/resources/lang/si-LK/datepicker.php b/resources/lang/si-LK/datepicker.php
index 1abad03a81..060726f284 100644
--- a/resources/lang/si-LK/datepicker.php
+++ b/resources/lang/si-LK/datepicker.php
@@ -13,66 +13,66 @@ return array(
|
*/
- 'today' => 'Today',
+ 'today' => 'අද',
'clear' => 'Clear',
'days' => [
- 'sunday' => 'Sunday',
- 'monday' => 'Monday',
- 'tuesday' => 'Tuesday',
- 'wednesday' => 'Wednesday',
- 'thursday' => 'Thursday',
- 'friday' => 'Friday',
- 'saturday' => 'Saturday',
+ 'sunday' => 'ඉරිදා',
+ 'monday' => 'සඳුදා',
+ 'tuesday' => 'අඟහරුවාදා',
+ 'wednesday' => 'බදාදා',
+ 'thursday' => 'බ්රහස්පතින්දා',
+ 'friday' => 'සිකුරාදා',
+ 'saturday' => 'සෙනසුරාදා',
],
'short_days' => [
- 'sunday' => 'Sun',
- 'monday' => 'Mon',
- 'tuesday' => 'Tue',
- 'wednesday' => 'Wed',
- 'thursday' => 'Thu',
- 'friday' => 'Fri',
- 'saturday' => 'Sat',
+ 'sunday' => 'ඉරි',
+ 'monday' => 'සඳු',
+ 'tuesday' => 'අඟ',
+ 'wednesday' => 'බදා',
+ 'thursday' => 'බ්රහ',
+ 'friday' => 'සිකු',
+ 'saturday' => 'සෙන',
],
'min_days' => [
- 'sunday' => 'Su',
- 'monday' => 'Mo',
- 'tuesday' => 'Tu',
- 'wednesday' => 'We',
- 'thursday' => 'Th',
- 'friday' => 'Fr',
- 'saturday' => 'Sa',
+ 'sunday' => 'ඉ',
+ 'monday' => 'ස',
+ 'tuesday' => 'අ',
+ 'wednesday' => 'බ',
+ 'thursday' => 'බ්ර',
+ 'friday' => 'සි',
+ 'saturday' => 'සෙ',
],
'months' => [
- 'january' => 'January',
- 'february' => 'February',
- 'march' => 'March',
- 'april' => 'April',
- 'may' => 'May',
- 'june' => 'June',
- 'july' => 'July',
- 'august' => 'August',
- 'september' => 'September',
- 'october' => 'October',
- 'november' => 'November',
- 'december' => 'December',
+ 'january' => 'ජනවාරි',
+ 'february' => 'පෙබරවාරි',
+ 'march' => 'මාර්තු',
+ 'april' => 'අප්රේල්',
+ 'may' => 'මැයි',
+ 'june' => 'ජූනි',
+ 'july' => 'ජූලි',
+ 'august' => 'අගෝස්තු',
+ 'september' => 'සැප්තැම්බර්',
+ 'october' => 'ඔක්තෝබර්',
+ 'november' => 'නොවැම්බර්',
+ 'december' => 'දෙසැම්බර්',
],
'months_short' => [
- 'january' => 'Jan',
- 'february' => 'Feb',
- 'march' => 'Mar',
- 'april' => 'Apr',
- 'may' => 'May',
- 'june' => 'Jun',
- 'july' => 'Jul',
- 'august' => 'Aug',
- 'september' => 'Sep',
- 'october' => 'Oct',
- 'november' => 'Nov',
- 'december' => 'Dec',
+ 'january' => 'ජන',
+ 'february' => 'පෙබ',
+ 'march' => 'මාර්තු',
+ 'april' => 'අප්රේල්',
+ 'may' => 'මැයි',
+ 'june' => 'ජූනි',
+ 'july' => 'ජූලි',
+ 'august' => 'අගෝ',
+ 'september' => 'සැප්',
+ 'october' => 'ඔක්',
+ 'november' => 'නොවැ',
+ 'december' => 'දෙසැ',
],
);
diff --git a/resources/lang/si-LK/general.php b/resources/lang/si-LK/general.php
index ce6358e4ad..5a30363de3 100644
--- a/resources/lang/si-LK/general.php
+++ b/resources/lang/si-LK/general.php
@@ -8,7 +8,7 @@ return [
'accepted_date' => 'Date Accepted',
'accessory' => 'Accessory',
'accessory_report' => 'Accessory Report',
- 'action' => 'Action',
+ 'action' => 'ක්රියාව',
'action_date' => 'Action Date',
'activity_report' => 'Activity Report',
'address' => 'Address',
@@ -43,7 +43,7 @@ return [
'assets_audited' => 'assets audited',
'assets_checked_in_count' => 'assets checked in',
'assets_checked_out_count' => 'assets checked out',
- 'asset_deleted_warning' => 'This asset has been deleted. You must restore it before you can assign it to someone.',
+ 'asset_deleted_warning' => 'මෙම වත්කම(asset) මකා දමා ඇත. ඔබට එය යමෙකුට පැවරීමට පෙර එය ප්රතිසාධනය(restore) කළ යුතුය.',
'assigned_date' => 'Date Assigned',
'assigned_to' => 'Assigned to :name',
'assignee' => 'Assigned to',
@@ -160,12 +160,12 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
'asset_maintenances' => 'Asset Maintenances',
- 'item' => 'Item',
+ 'item' => 'අයිතමය',
'item_name' => 'Item Name',
'import_file' => 'import CSV file',
'import_type' => 'CSV import type',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'යාවත්කාල',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/si-LK/help.php b/resources/lang/si-LK/help.php
index a59e0056be..21ce5d3b57 100644
--- a/resources/lang/si-LK/help.php
+++ b/resources/lang/si-LK/help.php
@@ -13,13 +13,13 @@ return [
|
*/
- 'more_info_title' => 'More Info',
+ 'more_info_title' => 'වැඩි විස්තර',
- 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.
Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
+ 'audit_help' => 'මෙම කොටුව සලකුණු කිරීමෙන් මෙම නව ස්ථානය පිළිබිඹු කිරීම සඳහා වත්කම් වාර්තාව සංස්කරණය කරනු ඇත. එය සලකුණු නොකර තැබීමෙන් විගණන ලොගයේ ස්ථානය සටහන් වනු ඇත.
මෙම වත්කම පරීක්ෂා කර ඇත්නම්, එය පරීක්ෂා කර ඇති පුද්ගලයාගේ, වත්කමේ හෝ ස්ථානයේ ස්ථානය වෙනස් නොකරන බව සලකන්න.',
- 'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.',
+ 'assets' => 'වත්කම් යනු අනුක්රමික අංකය හෝ වත්කම් ටැගය මගින් නිරීක්ෂණය කරන ලද අයිතම වේ. නිශ්චිත අයිතමයක් හඳුනා ගැනීම වැදගත් වන විට ඒවා ඉහළ වටිනාකමක් ඇති අයිතම වේ.',
- 'categories' => 'Categories help you organize your items. Some example categories might be "Desktops", "Laptops", "Mobile Phones", "Tablets", and so on, but you can use categories any way that makes sense for you.',
+ 'categories' => 'කාණ්ඩ ඔබේ අයිතම සංවිධානය කිරීමට උපකාරී වේ. උදාහරණ කාණ්ඩ කිහිපයක් "ඩෙස්ක්ටොප්", "ලැප්ටොප්", "ජංගම දුරකථන", "ටැබ්ලට්" යනාදිය විය හැකි නමුත්, ඔබට අර්ථවත් වන ඕනෑම ආකාරයකින් කාණ්ඩ භාවිතා කළ හැකිය.',
'accessories' => 'Accessories are anything you issue to users but that do not have a serial number (or you do not care about tracking them uniquely). For example, computer mice or keyboards.',
diff --git a/resources/lang/si-LK/mail.php b/resources/lang/si-LK/mail.php
index 82cace4f48..c39f75948b 100644
--- a/resources/lang/si-LK/mail.php
+++ b/resources/lang/si-LK/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'දින',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -66,18 +68,18 @@ return [
'initiated_accepted' => 'A checkout you initiated was accepted',
'initiated_declined' => 'A checkout you initiated was declined',
'inventory_report' => 'Inventory Report',
- 'item' => 'Item',
+ 'item' => 'අයිතමය',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'සටහන්',
'password' => 'Password',
diff --git a/resources/lang/si-LK/pagination.php b/resources/lang/si-LK/pagination.php
index b573b51e91..e44cf5fdd2 100644
--- a/resources/lang/si-LK/pagination.php
+++ b/resources/lang/si-LK/pagination.php
@@ -13,8 +13,8 @@ return array(
|
*/
- 'previous' => '« Previous',
+ 'previous' => '« පෙර',
- 'next' => 'Next »',
+ 'next' => 'ඊළඟ »',
);
diff --git a/resources/lang/si-LK/passwords.php b/resources/lang/si-LK/passwords.php
index 41a87f98ed..9e23853661 100644
--- a/resources/lang/si-LK/passwords.php
+++ b/resources/lang/si-LK/passwords.php
@@ -1,9 +1,9 @@
'If a matching user with a valid email address exists in our system, a password recovery email has been sent.',
- 'user' => 'If a matching user with a valid email address exists in our system, a password recovery email has been sent.',
- 'token' => 'This password reset token is invalid or expired, or does not match the username provided.',
- 'reset' => 'Your password has been reset!',
- 'password_change' => 'Your password has been updated!',
+ 'sent' => 'වලංගු විද්යුත් තැපැල් ලිපිනයක් සහිත ගැලපෙන පරිශීලකයෙකු අපගේ පද්ධතිය තුළ සිටී නම්, මුරපද ප්රතිසාධන විද්යුත් තැපෑලක් යවා ඇත.',
+ 'user' => 'වලංගු විද්යුත් තැපැල් ලිපිනයක් සහිත ගැලපෙන පරිශීලකයෙකු අපගේ පද්ධතිය තුළ සිටී නම්, මුරපද ප්රතිසාධන විද්යුත් තැපෑලක් යවා ඇත.',
+ 'token' => 'මෙම මුරපද යළි පිහිටුවීමේ ටෝකනය අවලංගු වී හෝ කල්ඉකුත් වී ඇත, නැතහොත් සපයා ඇති පරිශීලක නාමයට නොගැලපේ.',
+ 'reset' => 'ඔබගේ මුරපදය නැවත සකසා ඇත!',
+ 'password_change' => 'ඔබගේ මුරපදය යාවත්කාලීන කර ඇත!',
];
diff --git a/resources/lang/si-LK/reminders.php b/resources/lang/si-LK/reminders.php
index 8a197467df..3f6d3fa565 100644
--- a/resources/lang/si-LK/reminders.php
+++ b/resources/lang/si-LK/reminders.php
@@ -13,9 +13,9 @@ return array(
|
*/
- "password" => "Passwords must be six characters and match the confirmation.",
- "user" => "Username or email address is incorrect",
- "token" => 'This password reset token is invalid or expired, or does not match the username provided.',
- 'sent' => 'If a matching user with a valid email address exists in our system, a password recovery email has been sent.',
+ "password" => "මුරපදය අක්ෂර හයකින් යුක්ත විය යුතු අතර තහවුරු කිරීමට අනුරූප විය යුතුය.",
+ "user" => "පරිශීලක නාමය හෝ විද්යුත් තැපැල් ලිපිනය වැරදියි",
+ "token" => 'මෙම මුරපද යළි පිහිටුවීමේ ටෝකනය අවලංගු වී හෝ කල්ඉකුත් වී ඇත, නැතහොත් සපයා ඇති පරිශීලක නාමයට නොගැලපේ.',
+ 'sent' => 'වලංගු විද්යුත් තැපැල් ලිපිනයක් සහිත ගැලපෙන පරිශීලකයෙකු අපගේ පද්ධතිය තුළ සිටී නම්, මුරපද ප්රතිසාධන විද්යුත් තැපෑලක් යවා ඇත.',
);
diff --git a/resources/lang/si-LK/table.php b/resources/lang/si-LK/table.php
index 16e32b148f..3c1de0dfdb 100644
--- a/resources/lang/si-LK/table.php
+++ b/resources/lang/si-LK/table.php
@@ -2,10 +2,10 @@
return array(
- 'actions' => 'Actions',
- 'action' => 'Action',
+ 'actions' => 'ක්රියාවන්',
+ 'action' => 'ක්රියාව',
'by' => 'By',
- 'item' => 'Item',
- 'no_matching_records' => 'No matching records found',
+ 'item' => 'අයිතමය',
+ 'no_matching_records' => 'ගැළපෙන වාර්තා හමු නොවීය',
);
diff --git a/resources/lang/sk-SK/admin/custom_fields/general.php b/resources/lang/sk-SK/admin/custom_fields/general.php
index c905755424..460c667a45 100644
--- a/resources/lang/sk-SK/admin/custom_fields/general.php
+++ b/resources/lang/sk-SK/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Spravovať',
'field' => 'Pole',
'about_fieldsets_title' => 'O skupinách polí',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Skupina polí umožňuje vytvoriť skupinu vlastných polí ktoré sú často prepoužívané pre špecifické typy modelov majetku.',
'custom_format' => 'Vlastný formát regexu...',
'encrypt_field' => 'Zašifrovať hodnotu tohto poľa v databáze',
'encrypt_field_help' => 'VAROVANIE: Šifrované pole bude nevyhľadateľné.',
diff --git a/resources/lang/sk-SK/admin/depreciations/general.php b/resources/lang/sk-SK/admin/depreciations/general.php
index 1aab072e4f..237a88bb1a 100644
--- a/resources/lang/sk-SK/admin/depreciations/general.php
+++ b/resources/lang/sk-SK/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'O odpisovaní majetku',
- 'about_depreciations' => 'Môžete nastaviť odpisovanie majetku, aby dochádzalo k rovnomernému odpisovaniu.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Odpisy majetku',
'create' => 'Vytovirť typ odpisu',
'depreciation_name' => 'Názov odpisovania',
diff --git a/resources/lang/sk-SK/admin/hardware/form.php b/resources/lang/sk-SK/admin/hardware/form.php
index af177da66c..176cca1bdd 100644
--- a/resources/lang/sk-SK/admin/hardware/form.php
+++ b/resources/lang/sk-SK/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Prejsť na priradenie',
'select_statustype' => 'Vyberte typ stavu',
'serial' => 'Sériové číslo',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Stav',
'tag' => 'Označenie majetku',
'update' => 'Úprava majetku',
diff --git a/resources/lang/sk-SK/admin/hardware/general.php b/resources/lang/sk-SK/admin/hardware/general.php
index 4cea1ea467..e1f1a651ab 100644
--- a/resources/lang/sk-SK/admin/hardware/general.php
+++ b/resources/lang/sk-SK/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Vyžiadané',
'not_requestable' => 'Nevyžiadateľný',
'requestable_status_warning' => 'Nemeniť stav vyžiadateľnosti',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Obnoviť majetok',
'pending' => 'Čakajúce',
'undeployable' => 'Neodovzdateľný',
diff --git a/resources/lang/sk-SK/admin/licenses/message.php b/resources/lang/sk-SK/admin/licenses/message.php
index b76b49d01c..355a8a5c72 100644
--- a/resources/lang/sk-SK/admin/licenses/message.php
+++ b/resources/lang/sk-SK/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Nedostatok licenčných miest pre odovzdanie',
'mismatch' => 'Poskytnutý licenčný slot sa nezhoduje s licenciou',
'unavailable' => 'Tento slot nie je dostupné pre odovzdanie.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Pri prevzatí licencie nastala chyba. Skúste prosím znovu.',
- 'not_reassignable' => 'Licencia nie je preraditeľná',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Licencia bola úspešne prevzatá'
),
diff --git a/resources/lang/sk-SK/admin/locations/message.php b/resources/lang/sk-SK/admin/locations/message.php
index 8406050876..e5990b00f0 100644
--- a/resources/lang/sk-SK/admin/locations/message.php
+++ b/resources/lang/sk-SK/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Lokalita neexistuje.',
- 'assoc_users' => 'Túto lokalitu nie je možné odstrániť nakoľko je využívaná pri minimálne jednom majetku alebo užívateľovi, má priradené majetky alebo je nadradenou lokalitou inej lokality. Prosím upravte ostatné záznamy, aby nevyužívali túto lokalitu a skúste znovu ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Táto lokalita je priradená minimálne jednému majetku, preto nemôže byť odstránená. Prosím odstráňte referenciu na túto lokalitu z príslušného majetku a skúste znovu. ',
'assoc_child_loc' => 'Táto lokalita je nadradenou minimálne jednej podradenej lokalite, preto nemôže byť odstránená. Prosím odstráňte referenciu s príslušnej lokality a skúste znovu. ',
'assigned_assets' => 'Priradené položky majetku',
'current_location' => 'Aktuálna lokalita',
'open_map' => 'Otvoriť v :map_provider_icon mapách',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/sk-SK/admin/locations/table.php b/resources/lang/sk-SK/admin/locations/table.php
index 119fd28dfd..6680bc14ad 100644
--- a/resources/lang/sk-SK/admin/locations/table.php
+++ b/resources/lang/sk-SK/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Vytvoriť lokalitu',
'update' => 'Upraviť lokalitu',
'print_assigned' => 'Vytlačiť priradené',
- 'print_all_assigned' => 'Vytlačiť všetky priradené',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Názov lokality',
'address' => 'Adresa',
'address2' => 'Adresa 2. riadok',
diff --git a/resources/lang/sk-SK/admin/models/table.php b/resources/lang/sk-SK/admin/models/table.php
index 718b57b0eb..b2a6ff4f42 100644
--- a/resources/lang/sk-SK/admin/models/table.php
+++ b/resources/lang/sk-SK/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Typy majetku',
'update' => 'Upraviť typ majetku',
'view' => 'Zobraziť typ majetku',
- 'update' => 'Upraviť typ majetku',
- 'clone' => 'Zduplikovať model',
- 'edit' => 'Upraviť model',
+ 'clone' => 'Zduplikovať model',
+ 'edit' => 'Upraviť model',
);
diff --git a/resources/lang/sk-SK/admin/users/general.php b/resources/lang/sk-SK/admin/users/general.php
index 2c4f12a97f..240f985e14 100644
--- a/resources/lang/sk-SK/admin/users/general.php
+++ b/resources/lang/sk-SK/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Zahrnúť tohto používateľa do automatického priraďovania licencií',
'auto_assign_help' => 'Nezaradiť tohto používateľa do automatického priraďovania licencií',
'software_user' => 'Software priradený :name',
- 'send_email_help' => 'Pre zaslanie prístupových údajov musíte zadať e-mailovú adresu používateľa. Zaslanie prístupových údajov je možné iba v procese vytvárania nového používateľa. Heslá sú ukladané šifrované, nie je ich možné prečítať po uložení.',
'view_user' => 'Zobraziť používateľa :name',
'usercsv' => 'CSV súbor',
'two_factor_admin_optin_help' => 'Vaše súčasné nastavenie administrátora umožňujú selektívne vynútenie dvojfaktorovej autentifikácie. ',
diff --git a/resources/lang/sk-SK/general.php b/resources/lang/sk-SK/general.php
index 3c7cee3993..16bb421eb9 100644
--- a/resources/lang/sk-SK/general.php
+++ b/resources/lang/sk-SK/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Namapovať polia a spracovať tento súbor',
'importing' => 'Importujem',
- 'importing_help' => 'Môžete importovať majetok, príslušenstvo, licencie, komponenty, spotrebný materiál a používateľov cez CSV súbor.
CSV súbor musí používať ako oddelovač čiarku a obsahovať hlavičky v súlade s definíciou vzorového CSV uvedeného v dokumentácií.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importovať históriu',
'asset_maintenance' => 'Opravy majetku',
'asset_maintenance_report' => 'Report opráv majetku',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'celkom licencií',
'total_accessories' => 'celkom príslušenstva',
'total_consumables' => 'celkom spotrebného materiálu',
+ 'total_cost' => 'Total Cost',
'type' => 'Typ',
'undeployable' => 'Neodovzdateľné',
'unknown_admin' => 'Neznámy admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Používateľské meno',
'update' => 'Aktualizovať',
'updating_item' => 'Aktualizujem :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Po termíne na inventúru',
'accept' => 'Prijať :asset',
'i_accept' => 'Príjmam',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Odmietam',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Prijať/Odmietnuť',
'sign_tos' => 'Podpísaním nižšie akceptujete podmienky služby:',
'clear_signature' => 'Vymazať podpis',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Oprávnenia',
'managed_ldap' => '(Manažovať cez LDAP)',
'export' => 'Exportovať',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP synchronizácia',
'ldap_user_sync' => 'LDAP užívateľská synchronizácia',
'synchronize' => 'Synchronizovať',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Aktualizovať existujúce hodnoty?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generovanie automatického inkrementu značiek majetku je zakázané, preto všetky nové položky musia mať Značku majetku vyplnenú.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Poznámka: Generovanie automatického inkrementu značiek majetku je povolené, takže majetok bude zaevidovaný pre položky, ktoré nemajú značku majetku zadefinovanú. Položky ktoré majú značku majetku vyplnenú budú aktualizované s poskytnutými informáciami.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Poslať mail',
'call' => 'Zavolať číslo',
'back_before_importing' => 'Vytvoriť zálohu pre importovaním?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item poznámky',
'item_name_var' => ':názov položky',
'error_user_company' => 'Cieľová spoločnosť pre odovzdanie sa nezhoduje so spoločnosťou majetku',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Priradený majetok patrí inej spoločnosti, takže nemôžete potvrdiť ani odmietnuť jeho prijatie, prosím kontaktujte svojho nadriadeného',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Odovzdané: Celé meno',
'checked_out_to_first_name' => 'Odovzdané: Meno',
@@ -585,6 +595,8 @@ return [
'components' => ':count komponent|:count komponentov',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Viac info',
'quickscan_bulk_help' => 'Zakliknutím tohto poľa upravíte majetkové záznamy tak, aby reflektovali novú lokalitu. Ak ho nezakliknete, tak sa iba poznačí lokalita v logovacom zázname. Majte na pamäti, že pri priradení majetku nedochádza k zmene lokality používateľa, majetku alebo lokality, do ktorej na priradený.',
'whoops' => 'Hopsla!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/sk-SK/mail.php b/resources/lang/sk-SK/mail.php
index 4175d54653..ee690908c8 100644
--- a/resources/lang/sk-SK/mail.php
+++ b/resources/lang/sk-SK/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Príslušenstvo vrátené',
- 'Accessory_Checkout_Notification' => 'Príslušenstvo odovzdané',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Potvrdenie vrátenia príslušenstva',
'Confirm_Asset_Checkin' => 'Potvrdenie vrátenia majetku',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Majetok, ktorý vám bol odovzdaný, musí byť vrátený späť do :date',
'Expected_Checkin_Notification' => 'Pripomienka: Termín na vrátenie :name sa blíži',
'Expected_Checkin_Report' => 'Report očakávaných vrátení majetku',
- 'Expiring_Assets_Report' => 'Report majetku s končiacou zárukou.',
- 'Expiring_Licenses_Report' => 'Report exspirujúcich licencií.',
+ 'Expiring_Assets_Report' => 'Report majetku s končiacou zárukou',
+ 'Expiring_Licenses_Report' => 'Report exspirujúcich licencií',
'Item_Request_Canceled' => 'Požiadavka na položku zrušená',
'Item_Requested' => 'Položka vyžiadaná',
'License_Checkin_Notification' => 'Licencia odobratá',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Report nízkych zásob',
'a_user_canceled' => 'Používateľ zrušil žiadosť o položku na webe',
'a_user_requested' => 'Používateľ vytvoril žiadosť o položku na webe',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Používateľ potvrdil prijatie položky',
'acceptance_asset_declined' => 'Používateľ zamietol prijatie položky',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Názov majetku',
'asset_requested' => 'Vyžiadaný majetok',
'asset_tag' => 'Označenie majetku',
- 'assets_warrantee_alert' => 'Existuje :count položka majetku, ktorej končí záruka v najbližších :threshold dňoch.|Existuje :count položiek majetku, ktorým končí záruka v najbližších :threshold dňoch.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Pridelené',
+ 'eol' => 'EOL',
'best_regards' => 'S pozdravom,',
'canceled' => 'Zrušené',
'checkin_date' => 'Dátum vrátenia',
@@ -58,6 +59,7 @@ return [
'days' => 'Dní',
'expecting_checkin_date' => 'Očakávaný dátum vrátenia',
'expires' => 'Exspiruje',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Ahoj',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Report majetku',
'item' => 'Položka',
'item_checked_reminder' => 'Toto je pripomienka, že vám boli odovzdané :count položky, ktorých prijatie ste nepotvrdili a ani neodmietli. Prosím kliknite na odkaz nižšie pre potvrdenie vašej voľby.',
- 'license_expiring_alert' => 'V nasledujúcich :threshold dňoch exspiruje :count licencia.|V nasledujúcich :threshold dňoch exspirujú :count licencie.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Prosím kliknite na nasledovný odkaz pre zmenu hesla na stránke :web :',
'login' => 'Prihlásenie',
'login_first_admin' => 'Prihláste sa do vašej novej Snipe-IT inštalácie s použitím prihlasovacích údajov:',
'low_inventory_alert' => 'Existuje :count položka, ktorá je alebo čoskoro bude pod hranicou minimálnych skladových zásob.|Existuje :count položiek, ktoré sú alebo čoskoro budú pod hranicou minimálnych skladových zásob.',
'min_QTY' => 'Minimálne množstvo',
'name' => 'Názov',
- 'new_item_checked' => 'bola ti odovzdaná nová položka, podrobnosti sú uvedené nižšie.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Poznámky',
'password' => 'Heslo',
diff --git a/resources/lang/sl-SI/admin/depreciations/general.php b/resources/lang/sl-SI/admin/depreciations/general.php
index e32ef1c978..2675bf1490 100644
--- a/resources/lang/sl-SI/admin/depreciations/general.php
+++ b/resources/lang/sl-SI/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'O amortizaciji sredstev',
- 'about_depreciations' => 'Za amortizacijo sredstev lahko določite amortizacijo sredstev, ki temelji na enakomerni amortizaciji.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Amortizacija sredstev',
'create' => 'Ustvari amortizacijo',
'depreciation_name' => 'Ime amortizacije',
diff --git a/resources/lang/sl-SI/admin/hardware/form.php b/resources/lang/sl-SI/admin/hardware/form.php
index d58f81b76f..81ac42ad10 100644
--- a/resources/lang/sl-SI/admin/hardware/form.php
+++ b/resources/lang/sl-SI/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Pojdite na odjavljeno do',
'select_statustype' => 'Izberite vrsto statusa',
'serial' => 'Serijska številka',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Oznaka sredstva',
'update' => 'Posodobitev sredstva',
diff --git a/resources/lang/sl-SI/admin/hardware/general.php b/resources/lang/sl-SI/admin/hardware/general.php
index f63a353fe6..992141b8a9 100644
--- a/resources/lang/sl-SI/admin/hardware/general.php
+++ b/resources/lang/sl-SI/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Zahtevano',
'not_requestable' => 'Ni zahtevano',
'requestable_status_warning' => 'Ne spreminjaj zahtevanega statusa',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Obnovitev sredstev',
'pending' => 'Na čakanju',
'undeployable' => 'Nerazdeljeno',
diff --git a/resources/lang/sl-SI/admin/licenses/message.php b/resources/lang/sl-SI/admin/licenses/message.php
index dc37977d6e..0ea45530f7 100644
--- a/resources/lang/sl-SI/admin/licenses/message.php
+++ b/resources/lang/sl-SI/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Prišlo je do težave pri prevzemu licence. Prosim poskusite ponovno.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Licenca je uspešno prevzeta'
),
diff --git a/resources/lang/sl-SI/admin/locations/message.php b/resources/lang/sl-SI/admin/locations/message.php
index 925cc3f34a..5897e281f6 100644
--- a/resources/lang/sl-SI/admin/locations/message.php
+++ b/resources/lang/sl-SI/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Lokacija ne obstaja.',
- 'assoc_users' => 'Te lokacije trenutno ni mogoče izbrisati, ker je lokacija zapisa za vsaj eno sredstvo ali uporabnika, ker so ji dodeljena sredstva ali ker je starševska lokacija druge lokacije. Posodobite svoje zapise tako, da se na to lokacijo ne boste več sklicevali, in poskusite znova ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Ta lokacija je trenutno povezana z vsaj enim sredstvom in je ni mogoče izbrisati. Prosimo, posodobite svoja sredstva, da ne bodo več vsebovali te lokacije in poskusite znova. ',
'assoc_child_loc' => 'Ta lokacija je trenutno starš vsaj ene lokacije otroka in je ni mogoče izbrisati. Posodobite svoje lokacije, da ne bodo več vsebovale te lokacije in poskusite znova. ',
'assigned_assets' => 'Dodeljena sredstva',
'current_location' => 'Trenutna lokacija',
'open_map' => 'Odpri v :map_provider_icon Zemljevidih',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/sl-SI/admin/locations/table.php b/resources/lang/sl-SI/admin/locations/table.php
index 479a621cb5..0165cde84a 100644
--- a/resources/lang/sl-SI/admin/locations/table.php
+++ b/resources/lang/sl-SI/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Ustvari lokacijo',
'update' => 'Posodobi lokacijo',
'print_assigned' => 'Natisni dodeljene',
- 'print_all_assigned' => 'Natisni vse dodeljene',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Ime lokacije',
'address' => 'Naslov',
'address2' => 'Druga vrstica naslova',
diff --git a/resources/lang/sl-SI/admin/models/table.php b/resources/lang/sl-SI/admin/models/table.php
index 2cb9698acb..0e33af4da1 100644
--- a/resources/lang/sl-SI/admin/models/table.php
+++ b/resources/lang/sl-SI/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modeli sredstva',
'update' => 'Posodobi model sredstva',
'view' => 'Oglej si model sredstva',
- 'update' => 'Posodobi model sredstva',
- 'clone' => 'Kloniraj model',
- 'edit' => 'Uredi model',
+ 'clone' => 'Kloniraj model',
+ 'edit' => 'Uredi model',
);
diff --git a/resources/lang/sl-SI/admin/users/general.php b/resources/lang/sl-SI/admin/users/general.php
index b6bdf74322..e450bc84ca 100644
--- a/resources/lang/sl-SI/admin/users/general.php
+++ b/resources/lang/sl-SI/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Vključi tega uporabnika pri samodejni dodelitvi upravičenih licenc',
'auto_assign_help' => 'Preskoči tega uporabnika pri samodejni dodelitvi licenc',
'software_user' => 'Programska oprema izdana osebi :name',
- 'send_email_help' => 'Obvezno je potrebno navesti e-poštni račun za tega uporabnika kamor bo prejel poverilnice. Pošiljanje poverilnic je mogoče le ob ustvarjanju uporabnika. Gesla so shranjena eno-smerno šifrirano in jih je nemogoče pridobiti po shranjenju.',
'view_user' => 'Ogled uporabnika :name',
'usercsv' => 'Datoteko CSV',
'two_factor_admin_optin_help' => 'Vaše trenutne nastavitve skrbnika omogočajo selektivno uveljavljanje dvotaktne pristnosti. ',
diff --git a/resources/lang/sl-SI/general.php b/resources/lang/sl-SI/general.php
index 15ad6cdf4d..fdbabc5724 100644
--- a/resources/lang/sl-SI/general.php
+++ b/resources/lang/sl-SI/general.php
@@ -160,8 +160,7 @@ return [
'import' => 'Uvozi',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Uvažanje',
- 'importing_help' => 'Mogoč je uvoz sredstev, dodatkov, licenc, komponent, potrošnega materiala in uporabnikov preko datotek CSV.
-
Datoteka CSV mora bi ločena z vejico in oblikovana z glavami, ki se ujemajo tistim v vzorčni datoteki CSV in dokumentaciji.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Uvoz zgodovine',
'asset_maintenance' => 'Vzdrževanje sredstev',
'asset_maintenance_report' => 'Poročilo o vzdrževanju sredstev',
@@ -310,10 +309,12 @@ return [
'total_licenses' => 'skupno licenc',
'total_accessories' => 'skupno dodatkov',
'total_consumables' => 'skupno potrošni material',
+ 'total_cost' => 'Total Cost',
'type' => 'Tip',
'undeployable' => 'Nerazporejeno',
'unknown_admin' => 'Neznan skrbnik',
'unknown_user' => 'Neznani uporabnik',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Uporabniško ime',
'update' => 'Posodobi',
'updating_item' => 'Updating :item',
@@ -354,9 +355,11 @@ return [
'audit_overdue' => 'Zamuda za revizijo',
'accept' => 'Sprejmi :asset',
'i_accept' => 'Sprejmem',
- 'i_decline_item' => 'Zavrni ta element',
- 'i_accept_item' => 'Sprejmi ta element',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Zavračam',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Sprejmi/Zavrni',
'sign_tos' => 'Podpiši spodaj za potrditev strinjanja s pogoji storitve:',
'clear_signature' => 'Počisti podpise',
@@ -395,6 +398,7 @@ return [
'permissions' => 'Dovoljenja',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Izvoz',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Sinhroniziraj',
@@ -484,7 +488,9 @@ return [
'update_existing_values' => 'Posodobiti obstoječe vrednosti?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Ustvarjanje samodejnega povečevanja oznak sredstev je onemogočeno, zato mora biti v vseh vrsticah izpolnjen stolpec »Oznaka sredstva«.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Opomba: Omogočeno je ustvarjanje samodejnega povečevanja oznak sredstev, zato bodo sredstva ustvarjena za vrstice, ki nimajo izpolnjene vrednosti »Oznaka sredstva«. Vrstice, ki imajo izpolnjeno vrednost »Oznaka sredstva«, bodo posodobljene z navedenimi podatki.',
- 'send_welcome_email_to_users' => ' Pošljite pozdravno e-pošto novim uporabnikom? Upoštevajte, da bodo pozdravno sporočilo prejeli le uporabniki z veljavnim e-poštnim naslovom, ki so v vaši uvozni datoteki označeni kot aktivirani.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Pošljite e-pošto',
'call' => 'Pokličite številko',
'back_before_importing' => 'Varnostno kopiranje pred uvozom?',
@@ -514,7 +520,10 @@ return [
'item_notes' => ':item Opombe',
'item_name_var' => ':item ime',
'error_user_company' => 'Ciljno podjetje za blagajno in podjetje, ki uporablja sredstva, se ne ujemata',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Sredstvo, ki vam je bilo dodeljeno, pripada drugemu podjetju, zato ga ne morete ne sprejeti ne zavrniti. Prosimo, preverite pri svojem vodji',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -586,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Več informacij',
'quickscan_bulk_help' => 'Če potrdite to polje, boste uredili zapis sredstva tako, da bo odražal to novo lokacijo. Če polje ne potrdite, bo lokacija preprosto zabeležena v dnevniku nadzora. Upoštevajte, da če je to sredstvo rezervirano, se lokacija osebe, sredstva ali lokacije, na katero je rezervirano, ne bo spremenila.',
'whoops' => 'Ups!',
@@ -610,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT je odprtokodna programska oprema, izdelana z ljubeznijo avtorja @snipeitapp.com.',
'set_password' => 'Nastavite geslo',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -626,11 +639,11 @@ return [
'site_default' => 'Privzeto mesto',
'default_blue' => 'Modra privzeto',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Rdeča temna',
+ 'red' => 'Red',
'red_dark' => 'Rdeča (temni način)',
- 'orange' => 'Oranžna temna',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Črna',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/sl-SI/mail.php b/resources/lang/sl-SI/mail.php
index 96124e4a0f..e822010d9a 100644
--- a/resources/lang/sl-SI/mail.php
+++ b/resources/lang/sl-SI/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Sredstvo, ki vam je bilo rezervirano, bo ponovno prijavljeno dne :datum',
'Expected_Checkin_Notification' => 'Opomin :name rok za prijavo se približuje',
'Expected_Checkin_Report' => 'Pričakovana poročila o prevzemu sredstev',
- 'Expiring_Assets_Report' => 'Poročilo o izteku sredstev.',
- 'Expiring_Licenses_Report' => 'Poročilo o izteku licenc.',
+ 'Expiring_Assets_Report' => 'Poročilo o izteku sredstev',
+ 'Expiring_Licenses_Report' => 'Poročilo o izteku licenc',
'Item_Request_Canceled' => 'Zahteva je bila preklicana',
'Item_Requested' => 'Zahtevana postavka',
'License_Checkin_Notification' => 'Preverjena licenca',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Poročilo o nizki zalogi',
'a_user_canceled' => 'Uporabnik je preklical zahtevo za sredstev na spletnem mestu',
'a_user_requested' => 'Uporabnik je zahteval sredstev na spletnem mestu',
- 'acceptance_asset_accepted_to_user' => 'Sprejeli ste predmet, ki vam ga je dodelil :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Uporabnik je sprejel artikel',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Pošljite kopijo tega sprejema na moj e-poštni naslov',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Ime sredstva',
'asset_requested' => 'Sredstev zahtevano',
'asset_tag' => 'Oznaka sredstva',
- 'assets_warrantee_alert' => 'Obstaja :count sredstev z garancijo, ki poteče v naslednjih :threshold dneh.|Obstaja :count sredstev z garancijami, ki potečejo v naslednjih :threshold dneh.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Dodeljena',
+ 'eol' => 'EOL',
'best_regards' => 'Lep pozdrav,',
'canceled' => 'Preklicana',
'checkin_date' => 'Datum sprejema',
@@ -58,6 +59,7 @@ return [
'days' => 'Dnevi',
'expecting_checkin_date' => 'Predviden datum dobave',
'expires' => 'Poteče',
+ 'terminates' => 'Terminates',
'following_accepted' => 'Slednje je bilo sprejeto',
'following_declined' => 'The following was declined',
'hello' => 'Pozdravljeni',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Poročilo o inventarju',
'item' => 'Element',
'item_checked_reminder' => 'To je opomnik, da imate trenutno :count rezerviranih artiklov, ki jih niste sprejeli ali zavrnili. Za potrditev svoje odločitve kliknite spodnjo povezavo.',
- 'license_expiring_alert' => 'V naslednjih :threshold dneh poteče :count licenca.|V naslednjih :threshold dneh poteče :count licenc.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Prosimo, kliknite na to povezavo, da posodobite svoje: spletno geslo:',
'login' => 'Prijava',
'login_first_admin' => 'Prijavite se v svojo novo namestitev Snipe-IT s spodnjimi poverilnicami:',
'low_inventory_alert' => 'Obstaja :count artikel, ki je pod minimalno zalogo ali bo kmalu nizka.|Obstajajo :count artikli, ki so pod minimalno zalogo ali bodo kmalu nizki.',
'min_QTY' => 'Min kol',
'name' => 'Ime',
- 'new_item_checked' => 'Pod vašim imenom je bil izdan nov element, spodaj so podrobnosti.',
- 'new_item_checked_with_acceptance' => 'Pod vašim imenom je bil rezerviran nov element, ki ga je treba potrditi. Podrobnosti so spodaj.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'Pred kratkim je bil na vaše ime rezerviran artikel, ki ga je treba potrditi. Podrobnosti so navedene spodaj.',
'notes' => 'Opombe',
'password' => 'Geslo',
diff --git a/resources/lang/so-SO/admin/custom_fields/general.php b/resources/lang/so-SO/admin/custom_fields/general.php
index 68b231b2cd..c98d6bedfe 100644
--- a/resources/lang/so-SO/admin/custom_fields/general.php
+++ b/resources/lang/so-SO/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Maamul',
'field' => 'Garoonka',
'about_fieldsets_title' => 'Ku saabsan Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets waxay kuu oggolaanayaan inaad abuurto kooxo garoomo gaar ah kuwaas oo inta badan dib loogu isticmaalo noocyada moodooyinka hantida gaarka ah.',
'custom_format' => 'Qaabka Regex ee gaarka ah...',
'encrypt_field' => 'Siri qiimaha goobtan kaydka xogta',
'encrypt_field_help' => 'DIGNIIN: Siraynta goobta ayaa ka dhigaysa mid aan la baari karin.',
diff --git a/resources/lang/so-SO/admin/depreciations/general.php b/resources/lang/so-SO/admin/depreciations/general.php
index f3e259cacf..66cbed0a84 100644
--- a/resources/lang/so-SO/admin/depreciations/general.php
+++ b/resources/lang/so-SO/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Ku saabsan Qiimo dhaca Hantida',
- 'about_depreciations' => 'Waxaad dejin kartaa qiimo dhimista hantida si aad u qiimayso hantida ku salaysan qiimo-dhaca khadka tooska ah.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Qiimo dhaca Hantida',
'create' => 'Samee Qiimo Dhac',
'depreciation_name' => 'Magaca Qiimo dhaca',
diff --git a/resources/lang/so-SO/admin/hardware/form.php b/resources/lang/so-SO/admin/hardware/form.php
index 683ff9aa6c..676b216930 100644
--- a/resources/lang/so-SO/admin/hardware/form.php
+++ b/resources/lang/so-SO/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Dooro Nooca Xaaladda',
'serial' => 'Taxane',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Xaalada',
'tag' => 'Hantida Tag',
'update' => 'Cusboonaysiinta Hantida',
diff --git a/resources/lang/so-SO/admin/hardware/general.php b/resources/lang/so-SO/admin/hardware/general.php
index 75d22fd851..14c10b08ff 100644
--- a/resources/lang/so-SO/admin/hardware/general.php
+++ b/resources/lang/so-SO/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'La codsaday',
'not_requestable' => 'Looma baahna',
'requestable_status_warning' => 'Ha bedelin heerka la codsan karo',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Soo Celinta Hantida',
'pending' => 'La sugayo',
'undeployable' => 'Aan la hawlgelin',
diff --git a/resources/lang/so-SO/admin/licenses/message.php b/resources/lang/so-SO/admin/licenses/message.php
index f07a883856..8325930998 100644
--- a/resources/lang/so-SO/admin/licenses/message.php
+++ b/resources/lang/so-SO/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Lama hayo shatiyo ku filan wax bixinta',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Cillad ayaa dhacday intii la hubinayay shatiga. Fadlan kuceli markale.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Shatiga si guul leh ayaa loo hubiyay'
),
diff --git a/resources/lang/so-SO/admin/locations/message.php b/resources/lang/so-SO/admin/locations/message.php
index 4913b0c7ec..12215e61b0 100644
--- a/resources/lang/so-SO/admin/locations/message.php
+++ b/resources/lang/so-SO/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Goobtu ma jirto.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Goobtan waxaa hadda ku xiran hal isticmaale suurogalna maahan in latiro. Fadlan cusboonaysii hantidaada si aanay meeshan u tixraacin mar kalena isku day. ',
'assoc_child_loc' => 'Goobtan waxay xarun rasmi ah u tahay farac kale ugu yaraan suuragalna maahan in la tir-tiro. Fadlan cusbooneysii goobtaada si aaney markale usoo tilmaamin mowqican iskuna day markale. ',
'assigned_assets' => 'Hantida la qoondeeyay',
'current_location' => 'Goobta xilligan',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/so-SO/admin/locations/table.php b/resources/lang/so-SO/admin/locations/table.php
index 06d7a2f0e0..00710c52a9 100644
--- a/resources/lang/so-SO/admin/locations/table.php
+++ b/resources/lang/so-SO/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Samee Goobta',
'update' => 'Cusbooneysii Goobta',
'print_assigned' => 'Daabacaadda la qoondeeyay',
- 'print_all_assigned' => 'Daabac Dhammaan kuwa la qoondeeyay',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Magaca Goobta',
'address' => 'Cinwaanka',
'address2' => 'Khadka Ciwaanka 2',
diff --git a/resources/lang/so-SO/admin/models/table.php b/resources/lang/so-SO/admin/models/table.php
index 2b431f5b81..9db3b7c736 100644
--- a/resources/lang/so-SO/admin/models/table.php
+++ b/resources/lang/so-SO/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Qaababka Hantida',
'update' => 'Cusbooneysii Qaabka Hantida',
'view' => 'Soo bandhig Qaabka Hantida',
- 'update' => 'Cusbooneysii Qaabka Hantida',
- 'clone' => 'Qaabka Clone',
- 'edit' => 'Wax ka beddel Model',
+ 'clone' => 'Qaabka Clone',
+ 'edit' => 'Wax ka beddel Model',
);
diff --git a/resources/lang/so-SO/admin/users/general.php b/resources/lang/so-SO/admin/users/general.php
index 9f4d23df56..7e3c463b86 100644
--- a/resources/lang/so-SO/admin/users/general.php
+++ b/resources/lang/so-SO/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Ku dar isticmaalahaan marka si toos ah loo qoondeeyo shatiyada xaqa u leh',
'auto_assign_help' => 'Ka bood isticmaalehan si otomaatig ah loogu diri lahaa shatiyada',
'software_user' => 'Software-ka la hubiyay :name',
- 'send_email_help' => 'Waa inaad siisaa ciwaanka iimaylka isticmaalahan si uu ugu soo diro aqoonsiyo. Aqoonsiga iimaylka waxaa lagu samayn karaa oo kaliya abuurista isticmaale. Erayada sirta ah waxa lagu kaydiyaa hash hal dhinac ah lamana soo saari karo marka la kaydiyo.',
'view_user' => 'Eeg isticmaale :name',
'usercsv' => 'Faylka CSV',
'two_factor_admin_optin_help' => 'Dejinta maamulkaada hadda waxay ogolaadaan dhaqangelinta xulashada xaqiijinta laba arrimood. ',
diff --git a/resources/lang/so-SO/general.php b/resources/lang/so-SO/general.php
index 59ea6a33ce..32597130d8 100644
--- a/resources/lang/so-SO/general.php
+++ b/resources/lang/so-SO/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Soo dejinta',
'import_this_file' => 'Meelaha khariidad samee oo habee faylkan',
'importing' => 'Soo dejinta',
- 'importing_help' => 'Waxaad ku soo dejisan kartaa hantida, agabka, shatiga, qaybaha, alaabta la isticmaalo, iyo isticmaalayaasha faylka CSV.
CSV-gu waa in uu noqdaa mid barar kooban oo lagu qaabeeyey madax u dhigma kuwa ku jira tusaale CSV-yada ku jira dukumeentiga.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Soo dejinta Taariikhda',
'asset_maintenance' => 'Dayactirka hantida',
'asset_maintenance_report' => 'Warbixinta Dayactirka Hantida',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'wadarta shatiyada',
'total_accessories' => 'qalabka guud',
'total_consumables' => 'wadarta guud ee la isticmaalo',
+ 'total_cost' => 'Total Cost',
'type' => 'Nooca',
'undeployable' => 'Aan la diri karin',
'unknown_admin' => 'Admin aan la garanayn',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Magaca isticmaale',
'update' => 'Cusbooneysii',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Dib u dhac ku yimid Hanti-dhawrka',
'accept' => 'Aqbal :asset',
'i_accept' => 'Waan aqbalay',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Waan diiday',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Aqbal/Diiday',
'sign_tos' => 'Hoos Saxiix si aad u muujiso inaad ogolaatay shuruudaha adeega:',
'clear_signature' => 'Saxeexa Saxeexa',
@@ -393,6 +397,7 @@ return [
'permissions' => 'Ogolaanshaha',
'managed_ldap' => '(Waxaa lagu maareeyaa LDAP)',
'export' => 'Dhoofinta',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Iskuxidhka LDAP',
'ldap_user_sync' => 'Isku-xidhka Isticmaalaha LDAP',
'synchronize' => 'Isku xidh',
@@ -482,7 +487,9 @@ return [
'update_existing_values' => 'Cusbooneysii qiyamka jira?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Soo saarista calaamadaha hantida si toos ah u kordhiya waa naafo sidaa darteed dhammaan safafka waxay u baahan yihiin inay lahaadaan tiirka "Asset Tag" oo la buux dhaafiyay.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Fiiro gaar ah: Soo saarista sumadaha hantida si toos ah u kordhiya si hantida waxaa loo abuuri doonaa safaf aan lahayn "Hanti Tag" oo ay dadku ku badan yihiin. Safafka leh "Tag Hantida" oo ay buuxsameen ayaa lagu cusboonaysiin doonaa macluumaadka la bixiyay.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Kaabta ka hor inta aan la soo dejin?',
@@ -512,7 +519,10 @@ return [
'item_notes' => ':item Xusuusin',
'item_name_var' => ':item Magaca',
'error_user_company' => 'Hubinta shirkadda bartilmaameedka ah iyo shirkadda hantidu isma dhigmaan',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Hanti laguu qoondeeyay waxaa iska leh shirkad kale si aadan aqbali karin mana u diidi kartid, fadlan la xiriir maamulahaaga',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Lagu hubiyay: Magaca oo buuxa',
'checked_out_to_first_name' => 'Lagu Hubiyay: Magaca Koowaad',
@@ -584,6 +594,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Macluumaad dheeraad ah',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -608,6 +620,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -624,11 +638,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/so-SO/mail.php b/resources/lang/so-SO/mail.php
index 4ba46ac463..35a48ba505 100644
--- a/resources/lang/so-SO/mail.php
+++ b/resources/lang/so-SO/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Agabka waa la hubiyay',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Xaqiijinta hubinta dheeraadka ah',
'Confirm_Asset_Checkin' => 'Xaqiijinta hubinta hantida',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Hantida lagugu hubiyay waa in lagugu soo celiyaa :date',
'Expected_Checkin_Notification' => 'Xusuusin: :name wakhtiga kama dambaysta ah ee hubinta ayaa soo dhow',
'Expected_Checkin_Report' => 'Warbixinta hubinta hantida la filayo',
- 'Expiring_Assets_Report' => 'Warbixinta hantida dhaceysa.',
- 'Expiring_Licenses_Report' => 'Warbixinta Shatiyada dhacaya.',
+ 'Expiring_Assets_Report' => 'Warbixinta hantida dhaceysa',
+ 'Expiring_Licenses_Report' => 'Warbixinta Shatiyada dhacaya',
'Item_Request_Canceled' => 'Codsiga shayga waa la joojiyay',
'Item_Requested' => 'Shayga la codsaday',
'License_Checkin_Notification' => 'Shatiga waa la hubiyay',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Warbixinta Alaabada Hoose',
'a_user_canceled' => 'Isticmaaluhu waxa uu joojiyay shay codsi ah oo ku jiray mareegaha',
'a_user_requested' => 'Isticmaaluhu wuxuu ka codsaday shay shabakada',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Isticmaaluhu waa aqbalay shay',
'acceptance_asset_declined' => 'Isticmaaluhu waa diiday shay',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Magaca Hantida',
'asset_requested' => 'Hantida la codsaday',
'asset_tag' => 'Hantida Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Loo xilsaaray',
+ 'eol' => 'EOL',
'best_regards' => 'Salaan wanagsan,',
'canceled' => 'La joojiyay',
'checkin_date' => 'Taariikhda la soo galayo',
@@ -58,6 +59,7 @@ return [
'days' => 'Maalmo',
'expecting_checkin_date' => 'Taariikhda la filayo',
'expires' => 'Dhacaya',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Warbixinta Alaabada',
'item' => 'Shayga',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Fadlan dhagsii xidhiidhka soo socda si aad u cusboonaysiiso :web eraygaaga sirta ah:',
'login' => 'Soo gal',
'login_first_admin' => 'Soo gal rakibaaddaada cusub ee Snipe-IT adoo isticmaalaya aqoonsiga hoose:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Magaca',
- 'new_item_checked' => 'Shay cusub ayaa lagu hubiyay magacaaga hoostiisa.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Xusuusin',
'password' => 'Password-ka',
diff --git a/resources/lang/sq-AL/admin/custom_fields/general.php b/resources/lang/sq-AL/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/sq-AL/admin/custom_fields/general.php
+++ b/resources/lang/sq-AL/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/sq-AL/admin/depreciations/general.php b/resources/lang/sq-AL/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/sq-AL/admin/depreciations/general.php
+++ b/resources/lang/sq-AL/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/sq-AL/admin/hardware/form.php b/resources/lang/sq-AL/admin/hardware/form.php
index 8fbd0b4e87..dc4754e71a 100644
--- a/resources/lang/sq-AL/admin/hardware/form.php
+++ b/resources/lang/sq-AL/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/sq-AL/admin/hardware/general.php b/resources/lang/sq-AL/admin/hardware/general.php
index bc972da290..09282b9190 100644
--- a/resources/lang/sq-AL/admin/hardware/general.php
+++ b/resources/lang/sq-AL/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/sq-AL/admin/licenses/message.php b/resources/lang/sq-AL/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/sq-AL/admin/licenses/message.php
+++ b/resources/lang/sq-AL/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/sq-AL/admin/locations/message.php b/resources/lang/sq-AL/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/sq-AL/admin/locations/message.php
+++ b/resources/lang/sq-AL/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/sq-AL/admin/locations/table.php b/resources/lang/sq-AL/admin/locations/table.php
index 53176d8a4e..d7128b30f7 100644
--- a/resources/lang/sq-AL/admin/locations/table.php
+++ b/resources/lang/sq-AL/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/sq-AL/admin/models/table.php b/resources/lang/sq-AL/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/sq-AL/admin/models/table.php
+++ b/resources/lang/sq-AL/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/sq-AL/admin/users/general.php b/resources/lang/sq-AL/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/sq-AL/admin/users/general.php
+++ b/resources/lang/sq-AL/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/sq-AL/general.php b/resources/lang/sq-AL/general.php
index 7e59275d9b..eacfd74b44 100644
--- a/resources/lang/sq-AL/general.php
+++ b/resources/lang/sq-AL/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/sq-AL/mail.php b/resources/lang/sq-AL/mail.php
index 910c860e2c..70ee6ba42f 100644
--- a/resources/lang/sq-AL/mail.php
+++ b/resources/lang/sq-AL/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/sr-CS/admin/custom_fields/general.php b/resources/lang/sr-CS/admin/custom_fields/general.php
index 60cd3cd545..0d4fd837ec 100644
--- a/resources/lang/sr-CS/admin/custom_fields/general.php
+++ b/resources/lang/sr-CS/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Uredi',
'field' => 'Polje',
'about_fieldsets_title' => 'O grupi polja',
- 'about_fieldsets_text' => 'Skupovi polja vam omogućavaju da kreirate grupe prilagođenih polja koja se često ponovo koriste za određene tipove modela imovine.',
+ 'about_fieldsets_text' => 'Skupovi polja vam omogućavaju da kreirate grupe prilagođenih polja koja se često ponovo koriste za određene tipove modela sredstava.',
'custom_format' => 'Prilagodljivi Regex format...',
'encrypt_field' => 'Enkriptujte vrednost polja u bazi podataka',
'encrypt_field_help' => 'UPUZORENJE: Nije moguće pretraživati enkriptovana polja.',
diff --git a/resources/lang/sr-CS/admin/depreciations/general.php b/resources/lang/sr-CS/admin/depreciations/general.php
index 9738e907c2..f909006656 100644
--- a/resources/lang/sr-CS/admin/depreciations/general.php
+++ b/resources/lang/sr-CS/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'O amortizacijama imovine',
- 'about_depreciations' => 'Možete postaviti amortizaciju imovine na osnovu linearne amortizacije.',
+ 'about_depreciations' => 'Možete podesiti amortizaciju imovine kako bi amortizacija tekla linearno (prava linija), polugodišnju sa uslovima, ili polugodišnju koja se uvek primenjuje.',
'asset_depreciations' => 'Amortizacija imovine',
'create' => 'Kreiraj amortizaciju',
'depreciation_name' => 'Naziv amortizacije',
diff --git a/resources/lang/sr-CS/admin/hardware/form.php b/resources/lang/sr-CS/admin/hardware/form.php
index 7cfba5b682..f72acd9097 100644
--- a/resources/lang/sr-CS/admin/hardware/form.php
+++ b/resources/lang/sr-CS/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Idi na zaduženo',
'select_statustype' => 'Odaberite vrstu statusa',
'serial' => 'Serial',
+ 'serial_required' => 'Imovini :number je neophodan serijski broj',
+ 'serial_required_post_model_update' => ':asset_model je izmenjen tako da je serijski broj obavezan. Molim vas dodajte serijski broj ovoj imovini.',
'status' => 'Status',
'tag' => 'Oznaka imovine',
'update' => 'Ažuriranje imovine',
diff --git a/resources/lang/sr-CS/admin/hardware/general.php b/resources/lang/sr-CS/admin/hardware/general.php
index fb259629ef..609b60592f 100644
--- a/resources/lang/sr-CS/admin/hardware/general.php
+++ b/resources/lang/sr-CS/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Zatraženo',
'not_requestable' => 'Ne može da se potražuje',
'requestable_status_warning' => 'Ne manjajte status mogućnosti potraživanja',
+ 'require_serial' => 'Zahteva serijski broj',
+ 'require_serial_help' => 'Serijski broj će biti zahtevan pri kreiranju nove imovine ovog modela.',
'restore' => 'Restore Asset',
'pending' => 'U čekanju',
'undeployable' => 'Ne može da se razmesti',
diff --git a/resources/lang/sr-CS/admin/licenses/message.php b/resources/lang/sr-CS/admin/licenses/message.php
index 5a996b6e30..cde18a845d 100644
--- a/resources/lang/sr-CS/admin/licenses/message.php
+++ b/resources/lang/sr-CS/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Nema dovoljno dostupnih licenci za zaduživanje',
'mismatch' => 'Dostavljeno mesto licence se ne poklapa sa licencom',
'unavailable' => 'Ovo mesto nije dostupno za zaduživanje.',
+ 'license_is_inactive' => 'Licenca je istekla ili je otkazana.',
),
'checkin' => array(
'error' => 'Došlo je do problema prilikom provere licence. Molim pokušajte ponovo.',
- 'not_reassignable' => 'Licenca nije premestiva',
+ 'not_reassignable' => 'Mesto je iskorišćeno',
'success' => 'Licenca je uspešno proverena'
),
diff --git a/resources/lang/sr-CS/admin/locations/message.php b/resources/lang/sr-CS/admin/locations/message.php
index e29f0bb8c1..273afab066 100644
--- a/resources/lang/sr-CS/admin/locations/message.php
+++ b/resources/lang/sr-CS/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Lokacija ne postoji.',
- 'assoc_users' => 'Lokacija trenutno nije obrisiva zato što je to lokacija zapisa barem jedne imovine ili korisnika, ima imovinu zaduženju njoj, ili je nadlokacija druge lokacije. Molim vas izmenite vaše podatke tako da više nemaju vezu ka ovoj lokaciji i pokušajte ponovo ',
+ 'assoc_users' => 'Ova lokacija trenutno nije obrisiva jer je lokacija zapisa za barem jednu stavku ili korisnika, ima imovinu zaduženu njoj, ili je nadlokacija drugoj lokaciji. Molim vas ažurirajte vaše zapise da više ne budu povezani sa ovom lokacijom i pokušajte ponovo ',
'assoc_assets' => 'Ta je lokacija trenutno povezana s barem jednim resursom i ne može se izbrisati. Ažurirajte resurs da se više ne referencira na tu lokaciju i pokušajte ponovno. ',
'assoc_child_loc' => 'Ta je lokacija trenutno roditelj najmanje jednoj podredjenoj lokaciji i ne može se izbrisati. Ažurirajte svoje lokacije da se više ne referenciraju na ovu lokaciju i pokušajte ponovo. ',
'assigned_assets' => 'Dodeljena imovina',
'current_location' => 'Trenutna lokacija',
'open_map' => 'Otvori u :map_provider_icon mapama',
+ 'deleted_warning' => 'Lokacija je obrisana. Molim vas prvo je povratite pre pokušaja vršenja bilo kakvih izmena.',
'create' => array(
diff --git a/resources/lang/sr-CS/admin/locations/table.php b/resources/lang/sr-CS/admin/locations/table.php
index 35de465946..d185603b89 100644
--- a/resources/lang/sr-CS/admin/locations/table.php
+++ b/resources/lang/sr-CS/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Kreiraj lokaciju',
'update' => 'Ažuriraj lokaciju',
'print_assigned' => 'Oštampaj zaduženo',
- 'print_all_assigned' => 'Oštampaj sve zaduženo',
+ 'print_inventory' => 'Oštampaj inventar',
+ 'print_all_assigned' => 'Ostampaj inventar i zaduženo',
'name' => 'Naziv lokacije',
'address' => 'Adresa',
'address2' => 'Adresa 2',
diff --git a/resources/lang/sr-CS/admin/models/table.php b/resources/lang/sr-CS/admin/models/table.php
index 654d3d9ff3..96853dbc92 100644
--- a/resources/lang/sr-CS/admin/models/table.php
+++ b/resources/lang/sr-CS/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modeli imovine',
'update' => 'Ažuriraj model imovine',
'view' => 'Prikaz modela imovine',
- 'update' => 'Ažuriraj model imovine',
- 'clone' => 'Kloniraj model',
- 'edit' => 'Uredi model',
+ 'clone' => 'Kloniraj model',
+ 'edit' => 'Uredi model',
);
diff --git a/resources/lang/sr-CS/admin/users/general.php b/resources/lang/sr-CS/admin/users/general.php
index 7508f239ec..b1d3288ac2 100644
--- a/resources/lang/sr-CS/admin/users/general.php
+++ b/resources/lang/sr-CS/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Uvrsti ovog korisnika u automatskom dodeljivanju kvalifikovanih licenci',
'auto_assign_help' => 'Preskoči ovog korisnika u automatskoj dodeli licenci',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'Morate da navedete adresu e-pošte za ovog korisnika da biste mu poslali akreditive. Slanje akreditiva e-poštom se može izvršiti samo prilikom kreiranja korisnika. Lozinke se čuvaju u jednosmernom hešu i ne mogu se preuzeti kada su sačuvane.',
'view_user' => 'Prikaži korisnika :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/sr-CS/general.php b/resources/lang/sr-CS/general.php
index 6924ee091e..bc4f5d4764 100644
--- a/resources/lang/sr-CS/general.php
+++ b/resources/lang/sr-CS/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Mapiraj polja i obradi ovu datoteku',
'importing' => 'Uvoženje',
- 'importing_help' => 'Možete uvesti imovinu, opremu, licence, komponente, potrošnu robu i korisnike uz pomoć CSV datoteke.
Podaci u CSV datoteci trebaju biti odvojeni zarezom i formatirani sa zaglavljima koji se poklapaju sa primerima CSV-a u dokumentaciji.',
+ 'importing_help' => 'CSV bi trebao biti razdvojen zarezima i formatiran sa zaglavljima koja se poklapaju sa onima u primeru CSV-a iz dokumentacije.',
'import-history' => 'Import History',
'asset_maintenance' => 'Održavanje imovine',
'asset_maintenance_report' => 'Izveštaj o održavanju imovine',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'ukupne licence',
'total_accessories' => 'ukupni pribor',
'total_consumables' => 'ukupni potrošni materijal',
+ 'total_cost' => 'Ukupan trošak',
'type' => 'Tip',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Nepoznati administrator',
'unknown_user' => 'Nepoznati korisnik',
+ 'unit_cost' => 'Troškovi jedinice',
'username' => 'Korisničko ime',
'update' => 'Ažuriraj',
'updating_item' => 'Izmena :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Preko roka za reviziju',
'accept' => 'Prihvati :asset',
'i_accept' => 'Prihvatam',
- 'i_decline_item' => 'Odbij ovu stavku',
- 'i_accept_item' => 'Prihvati ovu stavku',
+ 'i_accept_with_count' => 'Prihvatam :count stavku|Prihvatam :count stavki',
+ 'i_decline_item' => 'Odbij ovu stavku|Odbij ove stavke',
+ 'i_accept_item' => 'Prihvati ovu stavku|Prihvati ove stavke',
'i_decline' => 'Odbijam',
+ 'i_decline_with_count' => 'Odbijam :count stavku|Odbijam :count stavke',
'accept_decline' => 'Prihvati/odbij',
'sign_tos' => 'Potpišite se ispod kako bi potvrdili da prihvatate uslove korišćenja:',
'clear_signature' => 'Ukloni potpis',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Dozvole',
'managed_ldap' => '(Upravlja se kroz LDAP)',
'export' => 'Izvoz',
+ 'export_all_to_csv' => 'Izvezi sve u CSV',
'ldap_sync' => 'LDAP sinhronizacija',
'ldap_user_sync' => 'LDAP sinhronizacija korisnika',
'synchronize' => 'Sinhronizuj',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Osvežiti postojeće vrednosti?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generisanje samo-inkrementirajuće imovinske oznake je onemogućeno tako da svi redovi moraju imati popunjenu kolonu "Imovinska Oznaka".',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Omogućeno je generisanje oznaka sredstava koje se automatski povećavaju tako da će sredstva biti kreirana za redove u kojima nije popunjena „Oznaka sredstva“. Redovi koji imaju popunjenu „oznaku sredstva“ biće ažurirani datim informacijama.',
- 'send_welcome_email_to_users' => ' Poslati e-poruku Dobrodošlice novim korisnicima? Imajte na umu da samo korisnici sa ispravnom adresom e-pošte i koji su označeni kao aktivirani u vašoj uvoznoj datoteci će primiti dobrodošlicu.',
+ 'send_welcome_email_to_users' => ' Pošalji e-poruku dobrodošlice novim korisnicima',
+ 'send_welcome_email_help' => 'Samo korisnici sa ispravnom adresom e-pošte i koji su označeni kao aktivirani će primiti e-poruku dobrodošlice sa kojom će moći da promene lozinku.',
+ 'send_welcome_email_import_help' => 'Samo novi korisnici sa ispravnom adresom e-pošte i koji su označeni kao aktivirani u uveženoj datoteci će primiti e-poruku dobrodošlice sa kojom će moći da postave lozinku.',
'send_email' => 'Pošalji e-poruku',
'call' => 'Pozovi broj',
'back_before_importing' => 'Napraviti rezervnu kopiju pre uvoza?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':stavka Napomena',
'item_name_var' => ':naziv stavke',
'error_user_company' => 'Kompanija odredišta za zaduživanje i kompanija imovine se ne poklapaju',
+ 'error_user_company_multiple' => 'Jedna ili više od ciljnih kompanija za zaduživanje se ne poklapa sa kompanijom imovine',
'error_user_company_accept_view' => 'Imovina koja je vama zadužena pripada drugoj kompaniji i zato je ne možete prihvatiti niti odbiti. Molim vas proverite sa vašim nadređenim',
+ 'error_assets_already_checked_out' => 'Jedna ili više imovina su već zadužene',
+ 'assigned_assets_removed' => 'Sledeće je uklonjeno iz izabrane imovine jer je već zadužena',
'importer' => [
'checked_out_to_fullname' => 'Odjavljeno na: Puno ime',
'checked_out_to_first_name' => 'Odjavljeno na: Ime',
@@ -585,6 +595,8 @@ return [
'components' => ':count komponenta|:count komponenti',
],
+ 'show_inactive' => 'Istekla ili ukinuta',
+ 'show_expiring' => 'Ističe ili se obustavlja uskoro',
'more_info' => 'Više informacija',
'quickscan_bulk_help' => 'Potvrđivanjem ovog polja će izmeniti zapis imovine kako bi se ažurirala ova nova lokacija. Ukoliko ostane nepotvrđeno lokacija će se evidentirati samo u zapisu popisa. Imajte na umu da, ukoliko je imovina zadužena, neće promeniti lokaciju osobe, imovine ili lokacije za koju je zadužena.',
'whoops' => 'Ups!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'Ova stavka nema povezan sliku i umesto toga nasleđuje iz modela ili kategorije kojoj pripada. Ako bi ste hteli da koristite određeni sliku za ovu stavku, možete postaviti novu ispod.',
'footer_credit' => 'Snipe-IT je softver otvorenog koda, napravljen sa ljubavlju od strane @snipeitapp.com.',
'set_password' => 'Postavi lozinku',
+ 'upload_deleted' => 'Stavka je obrisana',
+ 'child_locations' => 'Podlokacije',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Podrazumevano za lokaciju',
'default_blue' => 'Podrazumevana plava',
'blue_dark' => 'Plava (tamni režim)',
- 'green' => 'Tamno zelena',
+ 'green' => 'Zelena',
'green_dark' => 'Zelena (tamni režim)',
- 'red' => 'Tamno crvena',
+ 'red' => 'Crvena',
'red_dark' => 'Crvena (tamni režim)',
- 'orange' => 'Tamno narandžasta',
+ 'orange' => 'Narandžasta',
'orange_dark' => 'Narandžasta (tamni režim)',
'black' => 'Crna',
'black_dark' => 'Crna (tamni režim)',
diff --git a/resources/lang/sr-CS/mail.php b/resources/lang/sr-CS/mail.php
index 62ef32d65d..f40374d73d 100644
--- a/resources/lang/sr-CS/mail.php
+++ b/resources/lang/sr-CS/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Oprema razdužena',
- 'Accessory_Checkout_Notification' => 'Oprema je zadužena',
- 'Asset_Checkin_Notification' => 'Imovina je razdužena: [:tag]',
- 'Asset_Checkout_Notification' => 'Imovina je zadužena: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Dodatna oprema je zadužena|:count dodatne opreme je zaduženo',
+ 'Asset_Checkin_Notification' => 'Imovina je razdužena :tag',
+ 'Asset_Checkout_Notification' => 'Imovina je zadužena: :tag',
'Confirm_Accessory_Checkin' => 'Potvrda razduženja opreme',
'Confirm_Asset_Checkin' => 'Potvrda razduženja imovine',
'Confirm_component_checkin' => 'Potvrda razduženja komponente',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Imovina koja vam je odjavljena treba da bude ponovo prijavljena :date',
'Expected_Checkin_Notification' => 'Izveštaj o očekivanoj proveri imovine',
'Expected_Checkin_Report' => 'Izveštaj o očekivanoj proveri imovine',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Izveštaj o imovini koja ističe',
+ 'Expiring_Licenses_Report' => 'Izveštaj o licencama koja ističu',
'Item_Request_Canceled' => 'Zahtev za stavku je otkazan',
'Item_Requested' => 'Zahtevana stavka',
'License_Checkin_Notification' => 'Licenca razdužena',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Izveštaj o niskim zalihama',
'a_user_canceled' => 'Korisnik je otkazao zahtev za stavke na Web lokaciji',
'a_user_requested' => 'Korisnik je zatražio stavke na Web lokaciji',
- 'acceptance_asset_accepted_to_user' => 'Prihvatili ste stavku koja vam je dodeljena od :site_name',
+ 'acceptance_asset_accepted_to_user' => 'Prihvatili ste stavku koja vam je zadužena od strane :site_name|Prihvatili ste :qty stavki koje su vam zadužene od strane :site_name',
'acceptance_asset_accepted' => 'Korisnik je prihvatio stavku',
'acceptance_asset_declined' => 'Korisnik je odbio stavku',
'send_pdf_copy' => 'Pošalji kopiju ove prihvatnice na adresu moje e-pošte',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Naziv imovine',
'asset_requested' => 'Traženo sredstvo',
'asset_tag' => 'Oznaka imovine',
- 'assets_warrantee_alert' => 'Postoji :stanje licenci koja/e ističe u narednih :treshold dana.|Postoje :count licenci koje ističu u narednih :treshold dana.',
+ 'assets_warrantee_alert' => 'Postoji :count imovina sa garancijom koja uskoro ističe ili kojoj ističe životni vek u narednih :threshold dana.|Postoji :count imovine sa garancijom koja uskoro ističe ili kojoj ističe životni vek u narednih :threshold dana.',
'assigned_to' => 'Dodijeljena',
+ 'eol' => 'EOL',
'best_regards' => 'Srdačan pozdrav',
'canceled' => 'Otkazano',
'checkin_date' => 'Datum razduženja',
@@ -58,6 +59,7 @@ return [
'days' => 'Dana',
'expecting_checkin_date' => 'Očekivani datum razduženja',
'expires' => 'Ističe',
+ 'terminates' => 'Obustavlja se',
'following_accepted' => 'Sledeće je prihvaćeno',
'following_declined' => 'Sledeće je odbijeno',
'hello' => 'Zdravo',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Izveštaj o zalihama',
'item' => 'Stavka',
'item_checked_reminder' => 'Ovo je podsetnik da trenutno imate :count stavki koje su zadužene vama koje niste prihvatili ili odbili. Molim vas kliknite na vezu ispod da bi ste potvrdili vašu odluku.',
- 'license_expiring_alert' => 'Postoji :count licenci koja/e ističe u narednih treshold dana.|Postoje :count licencei koje ističu u narednih :treshold dana.',
+ 'license_expiring_alert' => 'Postoji :count licenca koja uskoro ističe ili koja se poništava u narednih :threshold dana.|Postoji :count licenci koje uskoro ističu ili koje se poništavaju u narednih :threshold dana.',
'link_to_update_password' => 'Kliknite na sledeću vezu kako biste obnovili svoju :web lozinku:',
'login' => 'Prijava',
'login_first_admin' => 'Prijavite se u vašu novu Snipe-IT instalaciju koristeći kredencijale ispod:',
'low_inventory_alert' => 'Postoji :count artikla ispod minimalne zalihe ili će uskoro biti nizak. |Postoje :count artikla koji su ispod minimalne zalihe ili će uskoro biti.',
'min_QTY' => 'Min Kol',
'name' => 'Naziv',
- 'new_item_checked' => 'Nova stavka je proverena pod vašim imenom, detalji su u nastavku.',
- 'new_item_checked_with_acceptance' => 'Nova stavka je zadužena na vaše ime što zahteva prihvatanje. Detalji su u nastavku.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'Nova stavka je zadužena na vaše ime, detalji su ispod.|:count novih stavki je zaduženo na vaše ime, detalji su ispod.',
+ 'new_item_checked_with_acceptance' => 'Nova stavka je zadužena na vaše ime koja zahteva prihvatanje, detalji su ispod.|:count novih stavki je zaduženo na vaše ime koje zahtevaju prihvatanje, detalji su ispod.',
+ 'new_item_checked_location' => 'Nova stavka je zadužena u :location, detalji su ispod.|:count novih stavki su zaduženi u :location, detalji su ispod.',
'recent_item_checked' => 'Stavka je nedavno zadužena na vaše ime što zahteva prihvatanje. Detalji su u nastavku.',
'notes' => 'Zabeleške',
'password' => 'Lozinka',
diff --git a/resources/lang/sv-SE/admin/custom_fields/general.php b/resources/lang/sv-SE/admin/custom_fields/general.php
index 0b008d36c5..e07f2508a4 100644
--- a/resources/lang/sv-SE/admin/custom_fields/general.php
+++ b/resources/lang/sv-SE/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Hantera',
'field' => 'Fält',
'about_fieldsets_title' => 'Om fältuppsättningar',
- 'about_fieldsets_text' => 'Fieldsets låter dig skapa grupper av fält som är anpassade efter och ofta använda av en viss typ av tillgång. Ex. "CPU", "RAM", "HDD", etc.',
+ 'about_fieldsets_text' => 'Fältuppsättningar låter dig skapa grupper av anpassade fält som ofta återanvänds för specifika tillgångsmodelltyper.',
'custom_format' => 'Anpassat Regex-format...',
'encrypt_field' => 'Kryptera värdet för det här fältet i databasen',
'encrypt_field_help' => 'VARNING: Kryptering av ett fält genererar fältet osökbart.',
diff --git a/resources/lang/sv-SE/admin/depreciations/general.php b/resources/lang/sv-SE/admin/depreciations/general.php
index c776d8bf22..77d28f8e86 100644
--- a/resources/lang/sv-SE/admin/depreciations/general.php
+++ b/resources/lang/sv-SE/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Om värdeminskning av tillgångar',
- 'about_depreciations' => 'Du kan ställa in värdeminskning av tillgångar baserat på linjär värdeminskning.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Värdeminskning av tillgångar',
'create' => 'Skapa värdeminskning',
'depreciation_name' => 'Värdeminskningsnamn',
diff --git a/resources/lang/sv-SE/admin/hardware/form.php b/resources/lang/sv-SE/admin/hardware/form.php
index 6158bb9523..ca18d9ac46 100644
--- a/resources/lang/sv-SE/admin/hardware/form.php
+++ b/resources/lang/sv-SE/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Navigera till "utcheckade till"',
'select_statustype' => 'Välj statustyp',
'serial' => 'Serienummer',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Tillgångstagg',
'update' => 'Tillgångsuppdatering',
diff --git a/resources/lang/sv-SE/admin/hardware/general.php b/resources/lang/sv-SE/admin/hardware/general.php
index e3144b9e20..b2ce182d17 100644
--- a/resources/lang/sv-SE/admin/hardware/general.php
+++ b/resources/lang/sv-SE/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Begärda',
'not_requestable' => 'Inte begärbar',
'requestable_status_warning' => 'Ändra inte begärbar status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Återställ tillgången',
'pending' => 'Väntande',
'undeployable' => 'Otillgänglig',
diff --git a/resources/lang/sv-SE/admin/licenses/message.php b/resources/lang/sv-SE/admin/licenses/message.php
index 1f3e73e647..674fc1bc20 100644
--- a/resources/lang/sv-SE/admin/licenses/message.php
+++ b/resources/lang/sv-SE/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Inte tillräckligt med licenssäten tillgängliga för utcheckning',
'mismatch' => 'Licenssätet som anges matchar inte licensen',
'unavailable' => 'Detta säte är inte tillgängligt för utcheckning.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Det gick inte att checka in licensen. Vänligen försök igen.',
- 'not_reassignable' => 'Licens ej omfördelningsbar',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Licens incheckad.'
),
diff --git a/resources/lang/sv-SE/admin/locations/message.php b/resources/lang/sv-SE/admin/locations/message.php
index 1bc34c8713..043d5223d9 100644
--- a/resources/lang/sv-SE/admin/locations/message.php
+++ b/resources/lang/sv-SE/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Platsen finns inte.',
- 'assoc_users' => 'Denna plats går inte att ta bort eftersom det är en plats tillhörande minst en tillgång eller användare, har kopplade tillgångar eller är standardplats för en annan plats. Vänligen uppdatera dina register för att ta bort referenser till denna plats och försök igen ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Platsen är associerad med minst en tillgång och kan inte tas bort. Vänligen uppdatera dina tillgångar så dom inte refererar till denna plats och försök igen. ',
'assoc_child_loc' => 'Denna plats är för närvarande överliggande för minst en annan plats och kan inte tas bort. Vänligen uppdatera dina platser så dom inte längre refererar till denna och försök igen.',
'assigned_assets' => 'Tilldelade tillgångar',
'current_location' => 'Nuvarande plats',
'open_map' => 'Öppna i :map_provider_icon Kartor',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/sv-SE/admin/locations/table.php b/resources/lang/sv-SE/admin/locations/table.php
index f3e3c1d67c..80e187c92c 100644
--- a/resources/lang/sv-SE/admin/locations/table.php
+++ b/resources/lang/sv-SE/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Skapa plats',
'update' => 'Uppdatera plats',
'print_assigned' => 'Skriv ut tilldelade',
- 'print_all_assigned' => 'Skriv ut alla tilldelade',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Platsnamn',
'address' => 'Adress',
'address2' => 'Adressrad 2',
diff --git a/resources/lang/sv-SE/admin/models/table.php b/resources/lang/sv-SE/admin/models/table.php
index 5690fa30f2..461a2a286a 100644
--- a/resources/lang/sv-SE/admin/models/table.php
+++ b/resources/lang/sv-SE/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Modeller',
'update' => 'Uppdatera tillgångsmodell',
'view' => 'Visa tillgångsmodell',
- 'update' => 'Uppdatera tillgångsmodell',
- 'clone' => 'Kopiera modell',
- 'edit' => 'Ändra modell',
+ 'clone' => 'Kopiera modell',
+ 'edit' => 'Ändra modell',
);
diff --git a/resources/lang/sv-SE/admin/users/general.php b/resources/lang/sv-SE/admin/users/general.php
index 2a80e76d00..206ad9aefa 100644
--- a/resources/lang/sv-SE/admin/users/general.php
+++ b/resources/lang/sv-SE/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Inkludera denna användare när du automatiskt tilldelar kvalificerade licenser',
'auto_assign_help' => 'Hoppa över denna användare i automatisk tilldelning av licenser',
'software_user' => 'Programvara utcheckad till :name',
- 'send_email_help' => 'Du måste ange en e-postadress till användaren för att kunna skicka inloggningsuppgifterna. Utskick av inloggningsuppgifter kan endast göras när användaren skapas. Lösenorden lagras i en one-way hash och kan inte hämtas när de väl sparats.',
'view_user' => 'Visa användare :name',
'usercsv' => 'CSV-fil',
'two_factor_admin_optin_help' => 'Dina nuvarande administratörsinställningar tillåter selektiv tillämpning av tvåfaktorsautentisering. ',
diff --git a/resources/lang/sv-SE/general.php b/resources/lang/sv-SE/general.php
index b21901eae6..dbbb773987 100644
--- a/resources/lang/sv-SE/general.php
+++ b/resources/lang/sv-SE/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Importera',
'import_this_file' => 'Mappa fält och bearbeta denna fil',
'importing' => 'Importerar',
- 'importing_help' => 'Du kan importera tillgångar, tillbehör, licenser, komponenter, förbrukningsvaror och användare via CSV-fil.
CSV-filen bör vara komma-avgränsad och formaterad med rubriker som matchar de i ta prov CSVs i dokumentationen.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Importera historik',
'asset_maintenance' => 'Tillgångsunderhåll',
'asset_maintenance_report' => 'Tillgångsunderhållsrapport',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'Licenser',
'total_accessories' => 'Tillbehör',
'total_consumables' => 'Förbrukningsvaror',
+ 'total_cost' => 'Total Cost',
'type' => 'Typ',
'undeployable' => 'Otillgängliga tillgångar',
'unknown_admin' => 'Okänd Administratör',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Användarnamn',
'update' => 'Uppdatera',
'updating_item' => 'Uppdaterar :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Förfallen för inventering',
'accept' => 'Acceptera :asset',
'i_accept' => 'Jag accepterar',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Jag nekar',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Acceptera/Neka',
'sign_tos' => 'Signera nedan för att godkänna användarvillkoren:',
'clear_signature' => 'Rensa signatur',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Behörigheter',
'managed_ldap' => '(Hanteras via LDAP)',
'export' => 'Exportera',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP-synkronisering',
'ldap_user_sync' => 'LDAP-användarsynkronisering',
'synchronize' => 'Synkronisera',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Uppdatera befintliga värden?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Automatiskt ökande tillgångstaggar är inaktiverat, således måste alla rader ha kolumnen "Tillgångstagg" ifyllt.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Notera: Generering av automatiskt ökande tillgångstaggar är aktiverat, varvid tillgångar kommer att skapas för rader som inte har "Tillgångstagg" ifyllt. Rader med "Tillgångstagg" ifyllt kommer att uppdateras med den angivna informationen.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Skicka e-post',
'call' => 'Ring nummer',
'back_before_importing' => 'Säkerhetskopiera innan import?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item noteringar',
'item_name_var' => ':item namn',
'error_user_company' => 'Checkout målbolag och tillgångsbolag matchar inte',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'En tillgång tilldelad till dig tillhör ett annat företag så att du inte kan acceptera eller neka det, vänligen kontrollera detta med din ansvarige',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Utcheckad till: Fullständigt namn',
'checked_out_to_first_name' => 'Utcheckad till: Förnamn',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Komponenter',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Mer information',
'quickscan_bulk_help' => 'Markering av denna ruta kommer att justera tillgångshistoriken till att visa den nya platsen. Om du lämnar rutan omarkerad noteras platsen i inventeringsloggen. Observera att om tillgången är utcheckad kommer inte ändringar hos användaren, tillgången eller platsen att göras.',
'whoops' => 'Hoppsan!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/sv-SE/mail.php b/resources/lang/sv-SE/mail.php
index 837bbf0e12..ad5d9dc407 100644
--- a/resources/lang/sv-SE/mail.php
+++ b/resources/lang/sv-SE/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Tillbehör incheckat',
- 'Accessory_Checkout_Notification' => 'Tillbehör utchekat',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Bekräfta incheckning av tillbehör',
'Confirm_Asset_Checkin' => 'Bekräfta incheckning av tillgång',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'En tillgång som checkas ut till dig kommer att checkas in igen :date',
'Expected_Checkin_Notification' => 'Påminnelse: :name sluttiden för incheckning närmar sig',
'Expected_Checkin_Report' => 'Förväntad incheckningsrapport för tillgång',
- 'Expiring_Assets_Report' => 'Rapport över tillgångar med förfallodatum.',
- 'Expiring_Licenses_Report' => 'Rapport över licenser med förfallodatum.',
+ 'Expiring_Assets_Report' => 'Rapport över tillgångar med förfallodatum',
+ 'Expiring_Licenses_Report' => 'Rapport över licenser med förfallodatum',
'Item_Request_Canceled' => 'Objektförfrågan avbruten',
'Item_Requested' => 'Objekt begärt',
'License_Checkin_Notification' => 'Licens incheckad',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Meddelande om lågt lagersaldo',
'a_user_canceled' => 'En användare har avbrutit en objektbegäran på webbplatsen',
'a_user_requested' => 'En användare har efterfrågat ett objekt på webbplatsen',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'En användare har accepterat ett objekt',
'acceptance_asset_declined' => 'En användare har avböjt ett objekt',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Företagsnamn',
'asset_requested' => 'Tillgång begärd',
'asset_tag' => 'Tillgångstagg',
- 'assets_warrantee_alert' => 'Det finns :count tillgång vars garanti löper ut under de kommande :threshold dagar.|Det finns :count tillgångar med garantier som löper ut under de kommande :threshold dagar.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Tilldelat till',
+ 'eol' => 'EOL',
'best_regards' => 'Vänliga hälsningar,',
'canceled' => 'Avbruten',
'checkin_date' => 'Incheck.dat.',
@@ -58,6 +59,7 @@ return [
'days' => 'Dagar',
'expecting_checkin_date' => 'Förväntat incheck.dat.',
'expires' => 'Utgår',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hejsan',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventarierapport',
'item' => 'Objekt',
'item_checked_reminder' => 'Detta är en påminnelse om att du för närvarande har :count objekt utcheckade till dig som du inte har accepterat eller nekat. Klicka på länken nedan för att bekräfta ditt beslut.',
- 'license_expiring_alert' => ':count licens löper ut inom :threshold dagar.|:count licenser löper ut inom :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Vänligen klicka på följande länk för att uppdatera ditt :web lösenord:',
'login' => 'Logga in',
'login_first_admin' => 'Logga in på din nya Snipe-IT-installation med hjälp av inloggningsuppgifterna nedan:',
'low_inventory_alert' => ':count artikel understiger det lägsta tillåtna lagersaldot eller är på väg att ta slut.|:count artiklar understiger det lägsta tillåtna lagersaldot eller är på väg att ta slut.',
'min_QTY' => 'Min. antal',
'name' => 'Namn',
- 'new_item_checked' => 'Ett nytt objekt har blivit utcheckat i ditt namn, se detaljer nedan.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Anteckningar',
'password' => 'Lösenord',
diff --git a/resources/lang/ta-IN/admin/custom_fields/general.php b/resources/lang/ta-IN/admin/custom_fields/general.php
index 0be95f60d6..53db87b077 100644
--- a/resources/lang/ta-IN/admin/custom_fields/general.php
+++ b/resources/lang/ta-IN/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'களம்',
'about_fieldsets_title' => 'புலங்கள் பற்றி',
- 'about_fieldsets_text' => 'குறிப்பிட்ட சொத்து மாதிரி வகைகளுக்கு அடிக்கடி பயன்படுத்தப்படும் மீண்டும் பயன்படுத்தப்படும் தனிபயன் துறைகள் குழுக்களை உருவாக்க புலங்கள் அனுமதிக்கின்றன.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'தரவுத்தளத்தில் இந்த களத்தின் மதிப்பை குறியாக்கு',
'encrypt_field_help' => 'எச்சரிக்கை: ஒரு புலத்தை குறியாக்காதே அது தெரியாததாக்குகிறது.',
diff --git a/resources/lang/ta-IN/admin/depreciations/general.php b/resources/lang/ta-IN/admin/depreciations/general.php
index 134df23b0e..e88ef60a1a 100644
--- a/resources/lang/ta-IN/admin/depreciations/general.php
+++ b/resources/lang/ta-IN/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'சொத்து துயரங்கள் பற்றி',
- 'about_depreciations' => 'நேராக வரி தேய்மானத்தை அடிப்படையாகக் கொண்ட சொத்துக்களை அடமானம் செய்வதற்கு சொத்து இழப்புகளை நீங்கள் அமைக்கலாம்.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'சொத்து குறைபாடுகள்',
'create' => 'தேய்மானத்தை உருவாக்குங்கள்',
'depreciation_name' => 'தேய்மானி பெயர்',
diff --git a/resources/lang/ta-IN/admin/hardware/form.php b/resources/lang/ta-IN/admin/hardware/form.php
index 48a7cb8836..97c64ef74e 100644
--- a/resources/lang/ta-IN/admin/hardware/form.php
+++ b/resources/lang/ta-IN/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'நிலை வகை தேர்ந்தெடுக்கவும்',
'serial' => 'சீரியல்',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'நிலைமை',
'tag' => 'சொத்து டேக்',
'update' => 'சொத்து புதுப்பிப்பு',
diff --git a/resources/lang/ta-IN/admin/hardware/general.php b/resources/lang/ta-IN/admin/hardware/general.php
index ad322955ec..45d72927b6 100644
--- a/resources/lang/ta-IN/admin/hardware/general.php
+++ b/resources/lang/ta-IN/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'கோரப்பட்டது',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'சொத்து மீட்டமை',
'pending' => 'நிலுவையில்',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/ta-IN/admin/licenses/message.php b/resources/lang/ta-IN/admin/licenses/message.php
index a2b2e7f3f8..f3495a6204 100644
--- a/resources/lang/ta-IN/admin/licenses/message.php
+++ b/resources/lang/ta-IN/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'உரிமத்தில் சோதனை ஒரு சிக்கல் இருந்தது. தயவு செய்து மீண்டும் முயற்சிக்கவும்.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'உரிமம் வெற்றிகரமாக சரிபார்க்கப்பட்டது'
),
diff --git a/resources/lang/ta-IN/admin/locations/message.php b/resources/lang/ta-IN/admin/locations/message.php
index d114130efa..eec7a5dc2d 100644
--- a/resources/lang/ta-IN/admin/locations/message.php
+++ b/resources/lang/ta-IN/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'இருப்பிடம் இல்லை.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'இந்த இடம் தற்போது குறைந்தது ஒரு சொத்துடன் தொடர்புடையது மற்றும் நீக்கப்பட முடியாது. இந்த இருப்பிடத்தை இனி குறிப்பிடாமல் உங்கள் சொத்துக்களை புதுப்பித்து மீண்டும் முயற்சிக்கவும்.',
'assoc_child_loc' => 'இந்த இடம் தற்போது குறைந்தது ஒரு குழந்தையின் இருப்பிடத்தின் பெற்றோர் மற்றும் அதை நீக்க முடியாது. இந்த இருப்பிடத்தை இனி குறிப்பிடாமல் இருக்க உங்கள் இருப்பிடங்களை புதுப்பித்து மீண்டும் முயற்சிக்கவும்.',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ta-IN/admin/locations/table.php b/resources/lang/ta-IN/admin/locations/table.php
index 06d989d39c..81fe184c46 100644
--- a/resources/lang/ta-IN/admin/locations/table.php
+++ b/resources/lang/ta-IN/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'இருப்பிடத்தை உருவாக்கவும்',
'update' => 'இருப்பிடம் புதுப்பிக்கவும்',
'print_assigned' => 'ஒப்படைக்கப்பட்டதை அச்சிடு',
- 'print_all_assigned' => 'ஒப்படைக்கப்பட்ட அனைத்தையும் அச்சிடு',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'இருப்பிடம் பெயர்',
'address' => 'முகவரி',
'address2' => 'Address Line 2',
diff --git a/resources/lang/ta-IN/admin/models/table.php b/resources/lang/ta-IN/admin/models/table.php
index 76047d239d..3826d2ff7d 100644
--- a/resources/lang/ta-IN/admin/models/table.php
+++ b/resources/lang/ta-IN/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'சொத்து மாதிரிகள்',
'update' => 'சொத்து மாதிரியை புதுப்பி',
'view' => 'சொத்து மாடலைக் காண்க',
- 'update' => 'சொத்து மாதிரியை புதுப்பி',
- 'clone' => 'குளோன் மாதிரி',
- 'edit' => 'மாதிரி திருத்தவும்',
+ 'clone' => 'குளோன் மாதிரி',
+ 'edit' => 'மாதிரி திருத்தவும்',
);
diff --git a/resources/lang/ta-IN/admin/users/general.php b/resources/lang/ta-IN/admin/users/general.php
index 549a7f9381..58add1b43f 100644
--- a/resources/lang/ta-IN/admin/users/general.php
+++ b/resources/lang/ta-IN/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'மென்பொருள் சரிபார்க்கப்பட்டது: பெயர்',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'பயனர் காண்க: பெயர்',
'usercsv' => 'CSV கோப்பு',
'two_factor_admin_optin_help' => 'உங்கள் தற்போதைய நிர்வாக அமைப்புகள் இரண்டு காரணி அங்கீகரிப்பின் தேர்ந்தெடுக்கப்பட்ட செயல்பாட்டை அனுமதிக்கின்றன.',
diff --git a/resources/lang/ta-IN/general.php b/resources/lang/ta-IN/general.php
index 20451456a4..5c5ae12a57 100644
--- a/resources/lang/ta-IN/general.php
+++ b/resources/lang/ta-IN/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'இறக்குமதி',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'வரலாற்றை இறக்குமதி செய்க',
'asset_maintenance' => 'சொத்து பராமரிப்பு',
'asset_maintenance_report' => 'சொத்து பராமரிப்பு அறிக்கை',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'மொத்த உரிமங்கள்',
'total_accessories' => 'மொத்த பாகங்கள்',
'total_consumables' => 'மொத்த நுகர்வு',
+ 'total_cost' => 'Total Cost',
'type' => 'வகை',
'undeployable' => 'அன்-அணியப்படுத்தக்',
'unknown_admin' => 'அறியப்படாத நிர்வாகம்',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'பயனர்பெயர்',
'update' => 'புதுப்பிக்கப்பட்டது',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'மேலும் தகவல்',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/ta-IN/mail.php b/resources/lang/ta-IN/mail.php
index 6bf7d05f2d..4f71e3d0b3 100644
--- a/resources/lang/ta-IN/mail.php
+++ b/resources/lang/ta-IN/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'சொத்துக்கள் அறிக்கை முடிவடைகிறது.',
- 'Expiring_Licenses_Report' => 'காலாவதி உரிமைகள் அறிக்கை.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'பொருள் கோரிக்கை ரத்து செய்யப்பட்டது',
'Item_Requested' => 'பொருள் கோரியது',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'குறைவான சரக்கு அறிக்கை',
'a_user_canceled' => 'வலைத்தளத்தில் பயனர் ஒரு உருப்படி கோரிக்கையை ரத்து செய்துள்ளார்',
'a_user_requested' => 'வலைத்தளத்தில் பயனர் ஒரு உருப்படியைக் கோரியுள்ளார்',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'சொத்து பெயர்',
'asset_requested' => 'சொத்து கோரப்பட்டது',
'asset_tag' => 'சொத்து டேக்',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'ஒதுக்கப்படும்',
+ 'eol' => ', EOL',
'best_regards' => 'சிறந்த வாழ்த்துக்கள்,',
'canceled' => 'Canceled',
'checkin_date' => 'சரி தேதி',
@@ -58,6 +59,7 @@ return [
'days' => 'நாட்களில்',
'expecting_checkin_date' => 'எதிர்பார்த்த செக்கின் தேதி',
'expires' => 'காலாவதியாகிறது',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'வணக்கம்',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'பொருள்',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'தயவுசெய்து புதுப்பிக்க பின்வரும் இணைப்பை கிளிக் செய்யவும்: உங்கள் இணைய கடவுச்சொல்:',
'login' => 'உள் நுழை',
'login_first_admin' => 'கீழே உள்ள சான்றுகளை பயன்படுத்தி உங்கள் புதிய Snipe-IT நிறுவலுக்கு உள்நுழையவும்:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'குறைந்தது QTY',
'name' => 'பெயர்',
- 'new_item_checked' => 'உங்கள் பெயரில் ஒரு புதிய உருப்படி சோதிக்கப்பட்டது, விவரங்கள் கீழே உள்ளன.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'குறிப்புக்கள்',
'password' => 'கடவுச்சொல்',
diff --git a/resources/lang/th-TH/admin/custom_fields/general.php b/resources/lang/th-TH/admin/custom_fields/general.php
index bf2a5d5225..d7e7a34163 100644
--- a/resources/lang/th-TH/admin/custom_fields/general.php
+++ b/resources/lang/th-TH/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'จัดการ',
'field' => 'สนาม',
'about_fieldsets_title' => 'เกี่ยวกับ Fieldsets',
- 'about_fieldsets_text' => 'ฟิลด์ช่วยให้คุณสามารถสร้างกลุ่มของฟิลด์ที่กำหนดเองซึ่งมักใช้ซ้ำสำหรับรูปแบบโมเดลของเนื้อหาบางประเภท',
+ 'about_fieldsets_text' => 'ชุดฟิลด์ที่ช่วยให้คุณสร้างกลุ่มของฟิลด์ที่กำหนดได้เอง ซึ่งมักจะใช้ซ้ำสำหรับการเจาะจงประเภทของสินทรัพย์',
'custom_format' => 'กำหนดรูปแบบ...',
'encrypt_field' => 'เข้ารหัสค่าของฟิลด์นี้ในฐานข้อมูล',
'encrypt_field_help' => 'คำเตือน: การเข้ารหัสฟิลด์ทำให้ไม่สามารถค้นหาได้',
diff --git a/resources/lang/th-TH/admin/depreciations/general.php b/resources/lang/th-TH/admin/depreciations/general.php
index 070ac0f694..ed1754aaf7 100644
--- a/resources/lang/th-TH/admin/depreciations/general.php
+++ b/resources/lang/th-TH/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'เกี่ยวกับค่าเสื่อมราคาสินทรัพย์',
- 'about_depreciations' => 'คุณสามารถกำหนดการคิดค่าเสื่อมราคาเพื่อตัดค่าเสื่อมราคาโดยวิธีการคิดค่าเสื่อมราคาแบบเส้นตรง',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'ค่าเสื่อมราคาสินทรัพย์',
'create' => 'สร้างค่าเสื่อมราคา',
'depreciation_name' => 'ชื่อค่าเสื่อมราคา',
diff --git a/resources/lang/th-TH/admin/hardware/form.php b/resources/lang/th-TH/admin/hardware/form.php
index 42307a87ce..9aa8b75556 100644
--- a/resources/lang/th-TH/admin/hardware/form.php
+++ b/resources/lang/th-TH/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'เลือกประเภทสถานะ',
'serial' => 'ซีเรียล',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'สถานะ',
'tag' => 'รหัสทรัพย์สิน',
'update' => 'ปรับปรุงสินทรัพย์',
diff --git a/resources/lang/th-TH/admin/hardware/general.php b/resources/lang/th-TH/admin/hardware/general.php
index fd090afba4..d63e04b33d 100644
--- a/resources/lang/th-TH/admin/hardware/general.php
+++ b/resources/lang/th-TH/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'การขอใช้บริการ',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'กู้คืนสินทรัพย์',
'pending' => 'อยู่ระหว่างดำเนินการ',
'undeployable' => 'ไม่สามารถนำไปใช้งานได้',
diff --git a/resources/lang/th-TH/admin/licenses/message.php b/resources/lang/th-TH/admin/licenses/message.php
index 57892e69eb..12b273b144 100644
--- a/resources/lang/th-TH/admin/licenses/message.php
+++ b/resources/lang/th-TH/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'เกิดปัญหาในการตรวจสอบใบอนุญาต กรุณาลองอีกครั้ง.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'ใบอนุญาตได้รับการตรวจสอบเรียบร้อยแล้ว'
),
diff --git a/resources/lang/th-TH/admin/locations/message.php b/resources/lang/th-TH/admin/locations/message.php
index b0e110fd83..25cdd93b66 100644
--- a/resources/lang/th-TH/admin/locations/message.php
+++ b/resources/lang/th-TH/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'ไม่มีสถานที่นี้.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'สถานที่นี้ถูกใช้งานหรือเกี่ยวข้องอยู่กับผู้ใช้งานคนใดคนหนึ่ง และไม่สามารถลบได้ กรุณาปรับปรุงผู้ใช้งานของท่านไม่ให้มีส่วนเกี่ยวข้องกับสถานที่นี้ และลองอีกครั้ง. ',
'assoc_child_loc' => 'สถานที่นี้ถูกใช้งานหรือเกี่ยวข้องอยู่กับหมวดสถานที่ใดที่หนึ่ง และไม่สามารถลบได้ กรุณาปรับปรุงสถานที่ของท่านไม่ให้มีส่วนเกี่ยวข้องกับหมวดสถานที่นี้ และลองอีกครั้ง. ',
'assigned_assets' => 'สินทรัพย์ถูกมอบหมายแล้ว',
'current_location' => 'ตำแหน่งปัจจุบัน',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/th-TH/admin/locations/table.php b/resources/lang/th-TH/admin/locations/table.php
index c1c5e8dd2b..d6e61be7f1 100644
--- a/resources/lang/th-TH/admin/locations/table.php
+++ b/resources/lang/th-TH/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'สร้างสถานที่',
'update' => 'อัพเดทสถานที่',
'print_assigned' => 'พิมพ์ งานที่มอบหมาย',
- 'print_all_assigned' => 'พิมพ์ งานที่มอบหมาย ทั้งหมด',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'ชื่อสถานที่',
'address' => 'ที่อยู่',
'address2' => 'ที่อยู่บรรทัดที่ 2',
diff --git a/resources/lang/th-TH/admin/models/table.php b/resources/lang/th-TH/admin/models/table.php
index 77379d418f..df3dedbab1 100644
--- a/resources/lang/th-TH/admin/models/table.php
+++ b/resources/lang/th-TH/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'รุ่นทรัพย์สิน',
'update' => 'อัพเดทรุ่นสินทรัพย์',
'view' => 'ดูรุ่นสินทรัพย์',
- 'update' => 'อัพเดทรุ่นสินทรัพย์',
- 'clone' => 'คัดลอกแบบรุ่น',
- 'edit' => 'แก้ไขรุ่น',
+ 'clone' => 'คัดลอกแบบรุ่น',
+ 'edit' => 'แก้ไขรุ่น',
);
diff --git a/resources/lang/th-TH/admin/users/general.php b/resources/lang/th-TH/admin/users/general.php
index a89106d46c..9f0da4cd15 100644
--- a/resources/lang/th-TH/admin/users/general.php
+++ b/resources/lang/th-TH/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'ซอฟต์แวร์ที่กำหนดให้ :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'ดูผู้ใช้ :name',
'usercsv' => 'ไฟล์ CSV',
'two_factor_admin_optin_help' => 'การตั้งค่าผู้ดูแลระบบปัจจุบันช่วยให้สามารถใช้การตรวจสอบสิทธิ์แบบสองปัจจัยได้อย่างมีประสิทธิภาพ',
diff --git a/resources/lang/th-TH/general.php b/resources/lang/th-TH/general.php
index 9268ce36ca..e4f3360a38 100644
--- a/resources/lang/th-TH/general.php
+++ b/resources/lang/th-TH/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'นำเข้า',
'import_this_file' => 'Map fields and process this file',
'importing' => 'กำลังนำเข้า…',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'นำเข้าประวัติ',
'asset_maintenance' => 'การซ่อมบำรุงสินทรัพย์',
'asset_maintenance_report' => 'รายงานการซ่อมบำรุงสินทรัพย์',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'ลิขสิทธิ์ทั้งหมด',
'total_accessories' => 'อุปกรณ์เสริมทั้งหมด',
'total_consumables' => 'เครื่องอุปโภคบริโภคทั้งหมด',
+ 'total_cost' => 'Total Cost',
'type' => 'ประเภท',
'undeployable' => 'ไม่สามารถใช้งานได้',
'unknown_admin' => 'ผู้ดูแลระบบที่ไม่รู้จัก',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'ชื่อผู้ใช้งาน',
'update' => 'ปรับปรุง',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'ยอมรับ',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'ปฏิเสธ',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'ยอมรับ/ปฏิเสธ',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'ล้างลายเซ็น',
@@ -394,6 +398,7 @@ return [
'permissions' => 'สิทธิ',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'ส่งออก',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'ซิงค์',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'ข้อมูลเพิ่มเติม',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/th-TH/mail.php b/resources/lang/th-TH/mail.php
index 7e12174b70..6c71086dc9 100644
--- a/resources/lang/th-TH/mail.php
+++ b/resources/lang/th-TH/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'เช็คอินอุปกรณ์เสริมแล้ว',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'ยืนยันการเช็คอินอุปกรณ์เสริม',
'Confirm_Asset_Checkin' => 'ยืนยันการเช็คอินสินทรัพย์',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'เตือนความจำ :: ใกล้หมดเวลาเช็คอิน',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'รายงานสินทรัพย์หมดอายุ',
- 'Expiring_Licenses_Report' => 'รายงานใบอนุญาตหมดอายุ',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'ขอรายการถูกยกเลิกแล้ว',
'Item_Requested' => 'รายการที่ขอ',
'License_Checkin_Notification' => 'เช็คอินใบอนุญาตแล้ว',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'รายงานพื้นที่โฆษณาต่ำ',
'a_user_canceled' => 'ผู้ใช้ยกเลิกคำร้องขอสินค้าในเว็บไซต์แล้ว',
'a_user_requested' => 'ผู้ใช้ร้องขอรายการบนเว็บไซต์',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'ชื่อสินทรัพย์',
'asset_requested' => 'สินทรัพย์ที่ขอ',
'asset_tag' => 'แท็กทรัพย์สิน',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'ได้รับมอบหมายให้',
+ 'eol' => 'อายุการใช้งาน',
'best_regards' => 'ด้วยความเคารพ,',
'canceled' => 'ยกเลิก',
'checkin_date' => 'วันที่เช็คอิน',
@@ -58,6 +59,7 @@ return [
'days' => 'วัน',
'expecting_checkin_date' => 'วันที่เช็คอินที่คาดหวังไว้',
'expires' => 'วันที่หมดอายุ',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'สวัสดี',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'รายการ',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'มี: ใบอนุญาตที่จะหมดอายุในวันถัดไป: วันที่กำหนด|มี: ใบอนุญาตที่จะหมดอายุในวันถัดไป: วันที่กำหนด',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'โปรดคลิกลิงก์ต่อไปนี้เพื่ออัปเดต: รหัสผ่านเว็บ:',
'login' => 'เข้าสู่ระบบ',
'login_first_admin' => 'เข้าสู่ระบบการติดตั้ง Snipe-IT ใหม่ของคุณโดยใช้ข้อมูลรับรองด้านล่าง:',
'low_inventory_alert' => 'มี: นับสินค้าที่ต่ำกว่าสินค้าคงคลังขั้นต่ำหรือเร็ว ๆ นี้จะต่ำ|มี: นับสินค้าที่ต่ำกว่าสินค้าคงคลังขั้นต่ำหรือจะเร็วเกินไป',
'min_QTY' => 'Min QTY',
'name' => 'ชื่อ',
- 'new_item_checked' => 'รายการใหม่ได้รับการตรวจสอบภายใต้ชื่อของคุณแล้วรายละเอียดมีดังนี้',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'จดบันทึก',
'password' => 'รหัสผ่าน',
diff --git a/resources/lang/tl-PH/admin/custom_fields/general.php b/resources/lang/tl-PH/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/tl-PH/admin/custom_fields/general.php
+++ b/resources/lang/tl-PH/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/tl-PH/admin/depreciations/general.php b/resources/lang/tl-PH/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/tl-PH/admin/depreciations/general.php
+++ b/resources/lang/tl-PH/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/tl-PH/admin/hardware/form.php b/resources/lang/tl-PH/admin/hardware/form.php
index d4fd2fe945..1f78263057 100644
--- a/resources/lang/tl-PH/admin/hardware/form.php
+++ b/resources/lang/tl-PH/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/tl-PH/admin/hardware/general.php b/resources/lang/tl-PH/admin/hardware/general.php
index bc972da290..09282b9190 100644
--- a/resources/lang/tl-PH/admin/hardware/general.php
+++ b/resources/lang/tl-PH/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/tl-PH/admin/licenses/message.php b/resources/lang/tl-PH/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/tl-PH/admin/licenses/message.php
+++ b/resources/lang/tl-PH/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/tl-PH/admin/locations/message.php b/resources/lang/tl-PH/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/tl-PH/admin/locations/message.php
+++ b/resources/lang/tl-PH/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/tl-PH/admin/locations/table.php b/resources/lang/tl-PH/admin/locations/table.php
index 66a4187f35..7bd38fbc22 100644
--- a/resources/lang/tl-PH/admin/locations/table.php
+++ b/resources/lang/tl-PH/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/tl-PH/admin/models/table.php b/resources/lang/tl-PH/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/tl-PH/admin/models/table.php
+++ b/resources/lang/tl-PH/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/tl-PH/admin/users/general.php b/resources/lang/tl-PH/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/tl-PH/admin/users/general.php
+++ b/resources/lang/tl-PH/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/tl-PH/general.php b/resources/lang/tl-PH/general.php
index 6e6b1d453e..660e87acb2 100644
--- a/resources/lang/tl-PH/general.php
+++ b/resources/lang/tl-PH/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Propyedad sa Kinabubuhay',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'I-update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/tl-PH/mail.php b/resources/lang/tl-PH/mail.php
index 6165422476..669c0804e8 100644
--- a/resources/lang/tl-PH/mail.php
+++ b/resources/lang/tl-PH/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Sa Ngalan ng Propyedad',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Ang mga araw',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Aytem',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Ngalan',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Ang mga Palatandaan',
'password' => 'Password',
diff --git a/resources/lang/tr-TR/admin/asset_maintenances/form.php b/resources/lang/tr-TR/admin/asset_maintenances/form.php
index 7b5172d3b5..a58ae3e701 100644
--- a/resources/lang/tr-TR/admin/asset_maintenances/form.php
+++ b/resources/lang/tr-TR/admin/asset_maintenances/form.php
@@ -1,7 +1,7 @@
'Select Maintenance Type',
+ 'select_type' => 'Bakım Türü Seçin',
'asset_maintenance_type' => 'Varlık Bakım Türü',
'title' => 'Başlık',
'start_date' => 'Başlangıç Tarihi',
diff --git a/resources/lang/tr-TR/admin/custom_fields/general.php b/resources/lang/tr-TR/admin/custom_fields/general.php
index 779946078c..95c2e19b35 100644
--- a/resources/lang/tr-TR/admin/custom_fields/general.php
+++ b/resources/lang/tr-TR/admin/custom_fields/general.php
@@ -33,7 +33,7 @@ return [
'create_fieldset_title' => 'Yeni bir alan kümesi oluştur',
'create_field' => 'Yeni özel alan',
'create_field_title' => 'Yeni bir özel alan oluştur',
- 'value_encrypted' => 'The value of this field is encrypted in the database. Only users with permission to view encrypted custom fields will be able to view the decrypted value',
+ 'value_encrypted' => 'Bu alanın değeri veritabanında şifrelidir. Yalnızca yönetici kullanıcıları şifresi çözülen değeri görüntüleyebilir.',
'show_in_email' => 'Bu hane içerisindeki bilgi "Zimmet e-postası" içerisinde kullanıcıya gönderilsinmi? Şifrelenmiş hanelerin içerisindeki bilgiler gönderilemez.',
'show_in_email_short' => 'E-postalara dahil edin',
'help_text' => 'Yardım Metni',
@@ -61,10 +61,10 @@ return [
'display_checkout' => 'Çıkış formlarında görüntüle',
'display_audit' => 'Denetim formlarında görüntüle',
'types' => [
- 'text' => 'Text Box',
- 'listbox' => 'List Box',
- 'textarea' => 'Textarea (multi-line)',
- 'checkbox' => 'Checkbox',
- 'radio' => 'Radio Buttons',
+ 'text' => 'Metin Kutusu',
+ 'listbox' => 'Seçenek Listesi',
+ 'textarea' => 'Metin Alanı',
+ 'checkbox' => 'Onay Kutusu',
+ 'radio' => 'Radyo Butonları',
],
];
diff --git a/resources/lang/tr-TR/admin/depreciations/general.php b/resources/lang/tr-TR/admin/depreciations/general.php
index 083ac7f255..5ef0911aaa 100644
--- a/resources/lang/tr-TR/admin/depreciations/general.php
+++ b/resources/lang/tr-TR/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Demirbaş Amortismanları Hakkında',
- 'about_depreciations' => 'Demirbaş amortismanını sabit bir oran ile düşecek şekilde ayarlayabilirsiniz.',
+ 'about_depreciations' => 'Varlık amortismanlarını; doğrusal (normal amortisman), koşullu uygulanan Kıst Amortisman veya her zaman uygulanan Kıst Amortisman yöntemlerine göre ayarlayabilirsiniz.',
'asset_depreciations' => 'Demirbaş Amortismanları',
'create' => 'Değer Kaybı Oluştur',
'depreciation_name' => 'Amortisman Adı',
diff --git a/resources/lang/tr-TR/admin/hardware/form.php b/resources/lang/tr-TR/admin/hardware/form.php
index 931756f8e9..36cfbebb94 100644
--- a/resources/lang/tr-TR/admin/hardware/form.php
+++ b/resources/lang/tr-TR/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Tıkla Çekilmişlere Git',
'select_statustype' => 'Durum Seçiniz',
'serial' => 'Seri No',
+ 'serial_required' => 'Asset :number numaralı varlık için bir seri numarası gereklidir',
+ 'serial_required_post_model_update' => ':asset_model, seri numarası gerektirecek şekilde güncellendi. Lütfen bu varlık için bir seri numarası ekleyin.',
'status' => 'Durum',
'tag' => 'Demirbaş Etiketi',
'update' => 'Demirbaş Güncelle',
diff --git a/resources/lang/tr-TR/admin/hardware/general.php b/resources/lang/tr-TR/admin/hardware/general.php
index 9f514ee265..1e52b39871 100644
--- a/resources/lang/tr-TR/admin/hardware/general.php
+++ b/resources/lang/tr-TR/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Talep edildi',
'not_requestable' => 'Talep Edilemez',
'requestable_status_warning' => 'Talep edilebilir durumu değiştirme',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'Seri Numarası Gerekli.',
'restore' => 'Demirbaşı Geri Getir',
'pending' => 'Bekliyor',
'undeployable' => 'Dağtılamaz',
diff --git a/resources/lang/tr-TR/admin/kits/general.php b/resources/lang/tr-TR/admin/kits/general.php
index 68eac0c874..8405da4a7d 100644
--- a/resources/lang/tr-TR/admin/kits/general.php
+++ b/resources/lang/tr-TR/admin/kits/general.php
@@ -47,5 +47,5 @@ return [
'kit_deleted' => 'Kit başarıyla silindi',
'kit_model_updated' => 'Model başarıyla güncellendi',
'kit_model_detached' => 'Model başarıyla ayrıldı',
- 'model_already_attached' => 'Model already attached to kit',
+ 'model_already_attached' => 'Model halihazırda kite dahil',
];
diff --git a/resources/lang/tr-TR/admin/licenses/message.php b/resources/lang/tr-TR/admin/licenses/message.php
index 077ab2a004..151d017a0e 100644
--- a/resources/lang/tr-TR/admin/licenses/message.php
+++ b/resources/lang/tr-TR/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Ödeme için yeterli sayıda lisans yeri yok',
'mismatch' => 'Girdiğiniz bu lisans türü lisans ile eşleşmiyor',
'unavailable' => 'Bu varlığı atayamazsınız.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Lisans girişi yapılırken hata oluştu. Lütfen tekrar deneyin.',
- 'not_reassignable' => 'Lisans devredilemez',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Lisans girişi yapıldı'
),
diff --git a/resources/lang/tr-TR/admin/locations/message.php b/resources/lang/tr-TR/admin/locations/message.php
index 3bf1d634b5..197a585ce5 100644
--- a/resources/lang/tr-TR/admin/locations/message.php
+++ b/resources/lang/tr-TR/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Konum mevcut değil.',
- 'assoc_users' => 'Bu konum şu anda silinemez çünkü en az bir varlık veya kullanıcı için kayıt konumudur, kendisine atanmış varlıkları vardır veya başka bir konumun üst konumudur. Lütfen kayıtlarınızı artık bu konuma referans vermeyecek şekilde güncelleyin ve tekrar deneyin.',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Bu konum şu anda en az bir varlık ile ilişkili ve silinemez. Lütfen artık bu konumu kullanabilmek için varlık konumlarını güncelleştirin.',
'assoc_child_loc' => 'Bu konum şu anda en az bir alt konum üstüdür ve silinemez. Lütfen artık bu konuma ait alt konumları güncelleyin. ',
'assigned_assets' => 'Atanan Varlıklar',
'current_location' => 'Mevcut konum',
'open_map' => ':map_provider_icon Haritalar\'da açın',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/tr-TR/admin/locations/table.php b/resources/lang/tr-TR/admin/locations/table.php
index 18fbe48fe5..1a2b492540 100644
--- a/resources/lang/tr-TR/admin/locations/table.php
+++ b/resources/lang/tr-TR/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Konum Oluştur',
'update' => 'Konum Güncelle',
'print_assigned' => 'Atananların Tümünü Yazdır',
- 'print_all_assigned' => 'Atananların Tümünü Yazdır',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Konum Adı',
'address' => 'Adres',
'address2' => 'Adres Satırı 2',
diff --git a/resources/lang/tr-TR/admin/maintenances/form.php b/resources/lang/tr-TR/admin/maintenances/form.php
index 7b5172d3b5..a58ae3e701 100644
--- a/resources/lang/tr-TR/admin/maintenances/form.php
+++ b/resources/lang/tr-TR/admin/maintenances/form.php
@@ -1,7 +1,7 @@
'Select Maintenance Type',
+ 'select_type' => 'Bakım Türü Seçin',
'asset_maintenance_type' => 'Varlık Bakım Türü',
'title' => 'Başlık',
'start_date' => 'Başlangıç Tarihi',
diff --git a/resources/lang/tr-TR/admin/models/table.php b/resources/lang/tr-TR/admin/models/table.php
index 939ef6cf9b..e1bfee97f1 100644
--- a/resources/lang/tr-TR/admin/models/table.php
+++ b/resources/lang/tr-TR/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Demirbaş Modelleri',
'update' => 'Demirbaş Modeli Güncelle',
'view' => 'Demirbaş Modeli Görüntüle',
- 'update' => 'Demirbaş Modeli Güncelle',
- 'clone' => 'Modeli Kopyala',
- 'edit' => 'Modeli Düzenle',
+ 'clone' => 'Modeli Kopyala',
+ 'edit' => 'Modeli Düzenle',
);
diff --git a/resources/lang/tr-TR/admin/users/general.php b/resources/lang/tr-TR/admin/users/general.php
index dc9d8e9eb0..2bb7d4b80e 100644
--- a/resources/lang/tr-TR/admin/users/general.php
+++ b/resources/lang/tr-TR/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Uygun lisansları otomatik olarak atarken bu kullanıcıyı dahil edin',
'auto_assign_help' => 'Lisansların otomatik atanmasında bu kullanıcıyı atla',
'software_user' => 'Yazılıma :name için çıkış yapılmış',
- 'send_email_help' => 'Bu kullanıcıya kimlik bilgilerini gönderebilmesi için bir e-posta adresi sağlamalısınız. E-posta kimlik bilgileri yalnızca kullanıcı oluşturulurken yapılabilir. Parolalar tek yönlü bir karmada saklanır ve bir kez kaydedildikten sonra geri alınamaz.',
'view_user' => 'Kullanıcıyı Görüntüle :name',
'usercsv' => 'CSV Dosyası',
'two_factor_admin_optin_help' => 'Mevcut yönetici ayarlarınız, iki aşamalı kimlik doğrulamasının seçici olarak uygulanmasına izin verir. ',
diff --git a/resources/lang/tr-TR/general.php b/resources/lang/tr-TR/general.php
index 4e827676c9..265f9de8b8 100644
--- a/resources/lang/tr-TR/general.php
+++ b/resources/lang/tr-TR/general.php
@@ -4,16 +4,16 @@ return [
'2FA_reset' => '2 Aşamalı doğrulama yenile',
'accessories' => 'Aksesuarlar',
'activated' => 'Aktif edildi',
- 'login_status' => 'Login Status',
+ 'login_status' => 'Giriş Durumu',
'accepted_date' => 'Kabul edilme günü',
'accessory' => 'Aksesuar',
'accessory_report' => 'Aksesuar Raporu',
'action' => 'Hareket',
- 'action_date' => 'Action Date',
+ 'action_date' => 'İşlem Tarihi',
'activity_report' => 'Aktivite Raporu',
'address' => 'Adres',
'admin' => 'Yönetici Ayarları',
- 'admin_user' => 'Admin User',
+ 'admin_user' => 'Yönetici Kullanıcı',
'admin_tooltip' => 'Kullanici admin yetkisine sahiptir',
'superuser' => 'Super Kullanici',
'superuser_tooltip' => 'Super Kullanici yetkisine sahiptir',
@@ -30,14 +30,14 @@ return [
'asset_report' => 'Demirbaş Raporu',
'asset_tag' => 'Demirbaş Etiketi',
'asset_tags' => 'Varlık Adı',
- 'available' => 'Available',
+ 'available' => 'Mevcut',
'assets_available' => 'Kullanılabilir Demirbaşlar',
'accept_assets' => 'Varlıkları Kabul Et :name',
'accept_assets_menu' => 'Demirbaş Kabul',
- 'accept_item' => 'Accept Item',
+ 'accept_item' => 'Öğeyi Kabul Et',
'audit' => 'Denetim',
- 'audited' => 'Audited',
- 'audits' => 'Audits',
+ 'audited' => 'Denetlenmiş',
+ 'audits' => 'Denetlemeler',
'audit_report' => 'Denetim Günlüğü',
'assets' => 'Demirbaşlar',
'assets_audited' => 'denetlenen varlıklar',
@@ -69,8 +69,8 @@ return [
'changepassword' => 'Şifreyi Değiştir',
'checkin' => 'Giriş',
'checkin_from' => 'Geri al',
- 'checkin_note' => 'Checkin Note',
- 'checkout_note' => 'Checkout Note',
+ 'checkin_note' => 'İade Notu',
+ 'checkout_note' => 'Zimmet Notu',
'checkout' => 'Atama',
'checkouts_count' => 'Kullanıma alma',
'checkins_count' => 'Girişler',
@@ -103,7 +103,7 @@ return [
'customize_report' => 'Raporu Özelleştir',
'custom_report' => 'Özel demirbaş raporu',
'dashboard' => 'Pano',
- 'data_source' => 'Data Source',
+ 'data_source' => 'Veri Kaynağı',
'days' => 'günler',
'days_to_next_audit' => 'Sonraki Denetime Günden Gün Sayısı',
'date' => 'Tarih',
@@ -138,7 +138,7 @@ Context | Request Context
'example' => 'Örnek: ',
'files' => 'Dosyalar',
- 'file_name' => 'File Name',
+ 'file_name' => 'Dosya İsmi',
'file_type' => 'Dosya Türü',
'filesize' => 'Dosya Boyutu',
'file_uploads' => 'Dosya Yüklemeleri',
@@ -157,13 +157,13 @@ Context | Request Context
'include_deleted' => 'Silinen Varlıkları Dahil Et',
'image_upload' => 'Resim yükle',
'filetypes_accepted_help' => 'Kabul edilen dosya türü: :types. İzin verilen en büyük dosya boyutu: :size.|Kabul edilen dosya türleri: :types. İzin verilen en büyük dosya yükleme boyutu: :size.',
- 'filetypes_size_help' => 'The maximum upload size allowed is :size.',
+ 'filetypes_size_help' => 'İzin verilen maksimum yükleme boyutu :size\'dır.',
'image_filetypes_help' => 'Kabul edilen dosya türleri jpg, webp, png, gif ve svg\'dir. İzin verilen en büyük dosya yükleme boyutu: :size.',
'unaccepted_image_type' => 'Bu dosya okunamadı. Kabul edilen dosya türleri jpg, webp, png, gif ve svg\'dir. Bu dosyanın mime tipi: :mimetype.',
'import' => 'İçeri aktar',
'import_this_file' => 'Alanları eşleyin ve bu dosyayı işleyin',
'importing' => 'İçeri Aktarma',
- 'importing_help' => 'Demirbaşları, aksesuarları, lisansları, bileşenleri, sarf malzemelerini ve kullanıcıları CSV dosyası ile içeri aktarabilirsiniz.
CSV, virgülle ayrılmış olmalı ve dökümandaki örnek CSV\'lerdekilerle eşleşen başlıklarla hazırlanmalıdır..',
+ 'importing_help' => 'CSV dosyası virgülle ayrılmış olmalı ve başlıkları dokümantasyondaki örnek CSV\'lerde bulunanlarla eşleşmelidir.',
'import-history' => 'İçeri aktarma geçmişi',
'asset_maintenance' => 'Demirbaş bakımı',
'asset_maintenance_report' => 'Demirbaş bakım raporu',
@@ -198,7 +198,7 @@ Context | Request Context
'logout' => 'Çıkış Yap',
'lookup_by_tag' => 'Varlık etiketine göre arama',
'maintenances' => 'Bakımlar',
- 'manage_api_keys' => 'Manage API keys',
+ 'manage_api_keys' => 'API Anahtarlarını Yönet',
'manufacturer' => 'Üretici',
'manufacturers' => 'Üreticiler',
'markdown' => 'Bu alan Github tarafından desteklenir.',
@@ -212,21 +212,21 @@ Context | Request Context
'next' => 'Sonraki',
'next_audit_date' => 'Sonraki Denetim Tarihi',
'next_audit_date_help' => 'Om du använder inventeringsverktyget i din verksamhet så beräknas detta vanligtvis automatiskt baserat på tillgången's senaste inventeringsdatum och inventeringsintervall (i Admininställningar > Aviseringar) och du kan således lämna detta tomt. Du kan manuellt ställa in detta datum här om du behöver, men det måste vara senare än det senaste inventeringsdatumet.',
- 'audit_images_help' => 'You can find audit images in the asset\'s history tab.',
- 'no_email' => 'No email address associated with this user',
+ 'audit_images_help' => 'Denetim görsellerini varlığın geçmiş sekmesinde bulabilirsiniz.',
+ 'no_email' => 'Bu kullanıcıya ait bir e-posta adresi bulunmuyor',
'last_audit' => 'Son denetim',
'new' => 'yeni!',
'no_depreciation' => 'Değer kaybı yok',
'no_results' => 'Sonuç Bulunamadı.',
'no' => 'Hayır',
'notes' => 'Notlar',
- 'note_added' => 'Note Added',
- 'options' => 'Options',
- 'preview' => 'Preview',
- 'add_note' => 'Add Note',
+ 'note_added' => 'Not Eklendi',
+ 'options' => 'Seçenekler',
+ 'preview' => 'Ön İzle',
+ 'add_note' => 'Not Ekle',
'note_edited' => 'Not Düzenlendi',
- 'edit_note' => 'Edit Note',
- 'note_deleted' => 'Note Deleted',
+ 'edit_note' => 'Notu Düzenle',
+ 'note_deleted' => 'Not Silindi',
'delete_note' => 'Notu Sil',
'order_number' => 'Sipariş Numarası',
'only_deleted' => 'Yalnızca Silinen Varlıklar',
@@ -237,7 +237,7 @@ Context | Request Context
'people' => 'Kişiler',
'per_page' => 'Sayfa başına sonuç sayısı',
'previous' => 'Önceki',
- 'previous_page' => 'Previous Page',
+ 'previous_page' => 'Önceki Sayfa',
'processing' => 'İşleniyor',
'profile' => 'Profiliniz',
'purchase_cost' => 'Satın Alma Ücreti',
@@ -259,7 +259,7 @@ Context | Request Context
'requested' => 'Talep Edilen',
'requested_date' => 'Talep Tarihi',
'requested_assets' => 'Talep Edilen Varlıklar',
- 'requested_assets_menu' => 'Requested Items',
+ 'requested_assets_menu' => 'Talep Edilen Öğeler',
'request_canceled' => 'Talep iptal edildi',
'request_item' => 'Ürünü Talep Et',
'external_link_tooltip' => 'Dış bağlantı',
@@ -269,7 +269,7 @@ Context | Request Context
'select_all' => 'Tümünü Seç',
'search' => 'Ara',
'select_category' => 'Kategori Seç',
- 'select_datasource' => 'Select a data source',
+ 'select_datasource' => 'Veri kaynağı seçin',
'select_department' => 'Bölüm Seç',
'select_depreciation' => 'Bir Değer Kaybı Türü Seç',
'select_location' => 'Konum Seç',
@@ -289,17 +289,17 @@ Context | Request Context
'signed_off_by' => 'İmzalayan',
'skin' => 'Tema',
'webhook_msg_note' => 'Webhook üzerinden bir ileti gönderilecek',
- 'webhook_test_msg' => 'Oh hai! It looks like your :app integration with Snipe-IT is working!',
+ 'webhook_test_msg' => 'Selam! Görünüşe göre Snipe-IT ile olan :app entegrasyonunuz çalışıyor!',
'some_features_disabled' => 'DEMO modu: Bu yükleme için bazı özellikleri devre dışı bırakılır.',
'site_name' => 'Site Adı',
'state' => 'İlçe',
'status_labels' => 'Durum Etiketleri',
- 'status_label' => 'Status Label',
+ 'status_label' => 'Durum Etiketi',
'status' => 'Durum',
'accept_eula' => 'Lisans Sözleşmesi',
- 'eula' => 'EULAs',
- 'eula_long' => 'End-User License Agreements',
- 'show_or_hide_eulas' => 'Show/Hide EULAs',
+ 'eula' => 'Son-Kullanıcı Sözleşmeleri',
+ 'eula_long' => 'Son-Kullanıcı Lisans Sözleşmesi',
+ 'show_or_hide_eulas' => 'Son-Kullanıcı Sözleşmelerini Göster/Gizle',
'supplier' => 'Tedarikçi',
'suppliers' => 'Tedarikçiler',
'sure_to_delete' => 'Silmek istediğinize emin misiniz',
@@ -312,28 +312,30 @@ Context | Request Context
'total_licenses' => 'Toplam Lisanslar',
'total_accessories' => 'tüm aksesuarlar',
'total_consumables' => 'tüm sarf malzemeler',
+ 'total_cost' => 'Toplam Maliyet',
'type' => 'Tip',
'undeployable' => 'Atanamaz',
'unknown_admin' => 'Bilinmeyen Yönetici',
- 'unknown_user' => 'Unknown User',
+ 'unknown_user' => 'Bilinmeyen Kullanıcı',
+ 'unit_cost' => 'Birim Maliyeti',
'username' => 'Kullanıcı Adı',
'update' => 'Güncelle',
- 'updating_item' => 'Updating :item',
+ 'updating_item' => ':item Güncelleniyor',
'upload_filetypes_help' => 'Allowed filetypes are: :allowed_filetypes. Max upload size allowed is :size.',
'uploaded' => 'Yüklendi',
'user' => 'Kullanıcı',
'password' => 'Şifre',
'accepted' => 'kabul edildi',
'declined' => 'reddedildi',
- 'declined_note' => 'Declined Notes',
+ 'declined_note' => 'Red Notları',
'unassigned' => 'Atanmamış',
'unaccepted_asset_report' => 'Kabul Edilmeyen Varlıklar',
'users' => 'Kullanıcılar',
'viewall' => 'Tümünü Görüntüle',
- 'viewassets' => 'View Assigned Items',
- 'viewassetsfor' => 'View Items for :name',
- 'view_user_assets' => 'View Items Assigned to User',
- 'me' => 'Me',
+ 'viewassets' => 'Atanmış Öğeleri Görüntüle',
+ 'viewassetsfor' => ':name\'in Öğelerini Görüntüle',
+ 'view_user_assets' => 'Kullanıcıya Atanmış Öğeleri Görüntüle',
+ 'me' => 'Ben',
'website' => 'İnternet sitesi',
'welcome' => 'Hoşgeldiniz, :name',
'years' => 'Yıl',
@@ -341,24 +343,26 @@ Context | Request Context
'zip' => 'Zip',
'noimage' => 'Yüklenen görüntü veya resim bulunamadı.',
'file_does_not_exist' => 'İstenen dosya sunucuda yok.',
- 'file_not_inlineable' => 'The requested file cannot be opened inline in your browser. You can download it instead.',
- 'open_new_window' => 'Open this file in a new window',
+ 'file_not_inlineable' => 'Talep edilen dosya tarayıcınızda doğrudan açılamaz. Bunun yerine dosyayı indirebilirsiniz.',
+ 'open_new_window' => 'Bu dosyayı yeni bir pencerede aç',
'file_upload_success' => 'Dosya yükleme başarılı!',
'no_files_uploaded' => 'Dosya yükleme başarılı!',
'token_expired' => 'Oturum zaman aşımına uğradı. Lütfen tekrar giriş yapın.',
'login_enabled' => 'Kullanıcı Aktif',
- 'login_disabled' => 'Login Disabled',
+ 'login_disabled' => 'Giriş Devre Dışı',
'audit_due' => 'Beklenen Denetimler',
- 'audit_due_days' => '{}Assets Due or Overdue for Audit|[1]Assets Due or Overdue for Audit Within a Day|[2,*]Assets Due or Overdue for Audit Within :days Days',
+ 'audit_due_days' => '{}Denetimi Gereken veya Gecikmiş Varlıklar|[1]1 Gün İçinde Denetimi Gereken veya Gecikmiş Varlıklar|[2,*]:days Gün İçinde Denetimi Gereken veya Gecikmiş Varlıklar',
'checkin_due' => 'Kontrol zamanı gelenler',
'checkin_overdue' => 'Kontrol zamanı geçenler',
'checkin_due_days' => '{}Kontrol zamanı gelenler|[1]:days Gün İçinde Kontrol Zamanı Gelen Varlık|[2,*]:days Gün İçinde Kontrol Zamanı Gelen Varlıklar',
'audit_overdue' => 'Zamanı Geçmiş Denetimler',
'accept' => 'Demirbaş Kabul',
'i_accept' => 'Kabul ediyorum',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => ':count adet öğeyi kabul ediyorum.|:count adet öğeyi kabul ediyorum',
+ 'i_decline_item' => 'Bu öğeyi reddet.|Bu öğeleri reddet',
+ 'i_accept_item' => 'Bu öğeyi Kabul Et|Bu öğeleri Kabul Et',
'i_decline' => 'Reddediyorum',
+ 'i_decline_with_count' => ':count adet öğeyi reddediyorum.|:count adet öğeyi reddediyorum',
'accept_decline' => 'Kabul Et/Reddet',
'sign_tos' => 'Hizmet şartlarını kabul ettiğinizi belirtmek için aşağıyı imzalayın:',
'clear_signature' => 'İmzayı Temizle',
@@ -367,16 +371,16 @@ Context | Request Context
'view_all' => 'tümünü görüntüle',
'hide_deleted' => 'Silinenleri Gizle',
'email' => 'E-Posta',
- 'do_not_change' => 'Do not change',
- 'bug_report' => 'Report a bug',
+ 'do_not_change' => 'Değiştirme',
+ 'bug_report' => 'Hata bildir',
'user_manual' => 'Kullanım Kılavuzu',
'setup_step_1' => 'Adım 1',
'setup_step_2' => 'Adım 2',
'setup_step_3' => 'Adım 3',
'setup_step_4' => 'Adım 4',
'setup_config_check' => 'Yapılandırma Kontrolü',
- 'setup_create_database' => 'Create database tables',
- 'setup_create_admin' => 'Create an admin user',
+ 'setup_create_database' => 'Veritabanı tablosu yarat',
+ 'setup_create_admin' => 'Yönetici kullanıcı yarat',
'setup_done' => 'Tamamlandı!',
'bulk_edit_about_to' => 'Şunları düzenlemek üzeresiniz: ',
'checked_out' => 'Çıkış Yapıldı',
@@ -397,6 +401,7 @@ Context | Request Context
'permissions' => 'İzinler',
'managed_ldap' => '(LDAP vasıtasıyla yönetiliyor)',
'export' => 'Dışa aktar',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Eşitleme',
'ldap_user_sync' => 'LDAP Kullanıcı Eşitleme',
'synchronize' => 'Eşitleme',
@@ -411,8 +416,8 @@ Context | Request Context
'new_license' => 'Yeni Lisans',
'new_accessory' => 'Yeni Aksesuar',
'new_consumable' => 'Yeni Sarf Malzemesi',
- 'new_component' => 'New Component',
- 'new_user' => 'New User',
+ 'new_component' => 'Yeni Bileşen',
+ 'new_user' => 'Yeni Kullanıcı',
'collapse' => 'Daralt',
'assigned' => 'Atandı',
'asset_count' => 'Varlık Adedi',
@@ -448,20 +453,20 @@ Context | Request Context
'bulk_soft_delete' =>'Ayrıca bu kullanıcıları geçici olarak silin. Yönetici Ayarlarında silinen kayıtları temizlemediğiniz sürece/tasfiye edene kadar bu kişilerin varlık geçmişi olduğu gibi kalacaktır.',
'bulk_checkin_delete_success' => 'Seçtiğiniz kullanıcılar silindi ve öğeleri teslim edildi.',
'bulk_checkin_success' => 'Seçilen kullanıcılar için öğeler iade edildi.',
- 'set_to_null' => 'Delete values for this selection|Delete values for all :selection_count selections ',
+ 'set_to_null' => 'Bu seçimin değerlerini sil.|Tüm :selection_count seçimin değerlerini sil ',
'set_users_field_to_null' => 'Sil : Bu kullanıcının bilgileri Sil: bütün kullanıcıların bu alandaki bilgileri :user_count ',
'na_no_purchase_date' => 'Bulunmuyor - Satın alma tarihi belirtilmedi',
'assets_by_status' => 'Duruma Göre Varlıklar',
'assets_by_status_type' => 'Durum Türüne Göre Varlıklar',
'pie_chart_type' => 'Pano Pasta Grafik Türü',
'hello_name' => 'Merhaba, :name!',
- 'unaccepted_profile_warning' => 'You have one item requiring acceptance. Click here to accept or decline it | You have :count items requiring acceptance. Click here to accept or decline them',
+ 'unaccepted_profile_warning' => 'Kabul edilmesi gereken bir öğeniz bulunuyor. Kabul etmek veya reddetmek için buraya tıklayın.|Kabul edilmesi gereken :count adet öğeniz bulunuyor. Bunları kabul etmek veya reddetmek için buraya tıklayın',
'start_date' => 'Başlangıç Tarihi',
'end_date' => 'Bitiş Tarihi',
'alt_uploaded_image_thumbnail' => 'Yüklenen küçük resim',
'placeholder_kit' => 'Bir kit seçin',
'file_not_found' => 'Dosya bulunamadı',
- 'log_record_not_found' => 'No record for that log entry was found.',
+ 'log_record_not_found' => 'O log kaydına ait bir kayıt bulunamadı.',
'preview_not_available' => '(ön izleme yok)',
'setup' => 'Kurulum',
'pre_flight' => 'Deneme',
@@ -486,9 +491,11 @@ Context | Request Context
'update_existing_values' => 'Mevcut Değerler Güncellensinmi?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Otomatik artan varlık etiketi pasif olduğu için bütün "Varlık Etiketi" sütunu doldurmalısınız.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Not: Otomatik artan varlık etiketlerinin oluşturulması etkindir, böylece "Varlık Etiketi" doldurulmamış satırlar için etiket oluşturulur. "Varlık Etiketi" girilmiş olan satırlar eski bilgilerle kalacaktır..',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
- 'send_email' => 'Send Email',
- 'call' => 'Call number',
+ 'send_welcome_email_to_users' => ' Yeni kullanıcılara hoş geldin e-postası gönder',
+ 'send_welcome_email_help' => 'Yalnızca geçerli bir e-posta adresine sahip olan ve aktif olarak işaretlenmiş kullanıcılar, şifrelerini sıfırlayabilecekleri bir hoş geldin e-postası alır.',
+ 'send_welcome_email_import_help' => 'Yalnızca, içe aktarma dosyanızda geçerli bir e-posta adresi olan ve aktif olarak işaretlenmiş yeni kullanıcılar, şifrelerini belirleyebilecekleri bir hoş geldin e-postası alır.',
+ 'send_email' => 'E-posta yolla',
+ 'call' => 'Numarayı ara',
'back_before_importing' => 'İçeri almadan önce yedeklensinmi?',
'csv_header_field' => 'CSV Başlık Alanı',
'import_field' => 'İçeri alma alanı',
@@ -510,13 +517,16 @@ Context | Request Context
'no_autoassign_licenses_help' => 'Lisans kullanıcı arayüzü veya toplu atama için kullanıcıyı dahil etmeyin.',
'modal_confirm_generic' => 'Emin misiniz?',
'cannot_be_deleted' => 'Bu öğe silinemez',
- 'cannot_be_edited' => 'This item cannot be edited.',
+ 'cannot_be_edited' => 'Bu öğe düzenlenemez.',
'undeployable_tooltip' => 'Bu ürün teslim alınamıyor. Kalan miktarı kontrol edin.',
'serial_number' => 'Seri Numarası',
'item_notes' => ':item Notları',
'item_name_var' => ':item Adı',
'error_user_company' => 'Ürüne sahip olan şirket ile zimmet yapılmak istenen şirket farklı.',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Size zimmetlenen ürün başka bir şirkete ait. Kabul yada red edemezsin. Lütfen durumu yöneticinize iletiniz.',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Çıkış Tarihi: Tam Ad',
'checked_out_to_first_name' => 'Çıkış Tarihi: Ad',
@@ -528,7 +538,7 @@ Context | Request Context
'manager_last_name' => 'Yöneticinin Soyadı',
'manager_full_name' => 'Yöneticinin Adı Soyadı',
'manager_username' => 'Yöneticinin Kullanıcı Adı',
- 'manager_employee_num' => 'Manager Employee Number',
+ 'manager_employee_num' => 'Yöneticinin Personel Numarası',
'checkout_type' => 'Ödeme Tipi',
'checkout_location' => 'Ödeme Konumu',
'image_filename' => 'Dosya Adı',
@@ -540,11 +550,11 @@ Context | Request Context
'address2' => 'Adres Satırı 2',
'import_note' => 'Csv içe aktarıldı',
],
- 'remove_customfield_association' => 'Remove this field from the fieldset. This will not delete the custom field, only this field\'s association with this fieldset.',
- 'checked_out_to_fields' => 'Checked Out To Fields',
+ 'remove_customfield_association' => 'Bu alanı alan setinden kaldırın. Bu işlem özel alanı silmez, yalnızca bu alanın bu alan setiyle olan ilişkisini kaldırır.',
+ 'checked_out_to_fields' => 'Zimmetleme Alanları',
'percent_complete' => '% tamamlandı',
'uploading' => 'Yükleniyor... ',
- 'upload_error' => 'Error uploading file. Please check that you have no empty rows or duplicated column names in your CSV, and that the server permissions allow uploads.',
+ 'upload_error' => 'Dosya yüklenirken hata oluştu. Lütfen CSV dosyanızda boş satır veya yinelenen sütun adları olmadığını ve sunucu izinlerinin yüklemelere izin verdiğini kontrol edin.',
'copy_to_clipboard' => 'Panoya kopyala',
'copied' => 'Kopyalandı!',
'status_compatibility' => 'Varlıklar zaten atanmışsa konuşlandırılamayan bir durum türüne değiştirilemezler ve bu değer değişikliği atlanır.',
@@ -558,60 +568,64 @@ Context | Request Context
'url' => 'Link',
'phone' => 'Telefon',
'fax' => 'Faks',
- 'contact' => 'Contact',
- 'show_admins' => 'Admin Users',
- 'show_superadmins' => 'Superusers',
- 'edit_fieldset' => 'Edit fieldset fields and options',
+ 'contact' => 'İletişim',
+ 'show_admins' => 'Yönetici Kullanıcılar',
+ 'show_superadmins' => 'Süper Kullanıcılar',
+ 'edit_fieldset' => 'Alan setinin alanlarını ve seçeneklerini düzenle',
'permission_denied_superuser_demo' => 'İzin reddedildi. Demo üzerinde süper yöneticilerin kullanıcı bilgilerini güncelleyemezsiniz.',
'pwd_reset_not_sent' => 'Kullanıcı etkinleştirilmemiş, LDAP ile senkronize edilmemiş ya da bir e-posta adresine sahip değil',
'error_sending_email' => 'E-posta gönderme hatası',
- 'sad_panda' => 'Sad panda. You are not authorized to do the thing. Maybe return to the dashboard, or contact your administrator.',
+ 'sad_panda' => 'Hay aksi! Bu işlemi yapmak için yetkiniz bulunmuyor. Belki kontrol paneline dönebilir ya da yöneticinizle iletişime geçebilirsiniz.',
'bulk' => [
'delete' =>
[
'header' => 'Toplu Silme: :object_type',
- 'warn' => 'You are about to delete one :object_type|You are about to delete :count :object_type',
- 'success' => ':object_type successfully deleted|Successfully deleted :count :object_type',
- 'error' => 'Could not delete :object_type',
- 'nothing_selected' => 'No :object_type selected - nothing to do',
- 'partial' => 'Deleted :success_count :object_type, but :error_count :object_type could not be deleted',
+ 'warn' => 'Bir adet :object_type silmek üzeresiniz.|:count adet :object_type silmek üzeresiniz',
+ 'success' => ':object_type başarıyla silindi.|:count adet :object_type başarıyla silindi',
+ 'error' => ':object_type silinemedi',
+ 'nothing_selected' => ':object_type seçilmedi - yapılacak bir işlem yok',
+ 'partial' => ':success_count adet :object_type silindi, ancak :error_count adet :object_type silinemedi',
],
],
'no_requestable' => 'Talep edilebilir bir varlık veya varlık modeli bulunmamaktadır.',
'countable' => [
- 'accessories' => ':count Accessory|:count Accessories',
+ 'accessories' => ':count Aksesuar|:count Aksesuar',
'assets' => ':count Varlık|:count Varlıklar',
- 'licenses' => ':count License|:count Licenses',
- 'license_seats' => ':count License Seat|:count License Seats',
- 'consumables' => ':count Consumable|:count Consumables',
- 'components' => ':count Component|:count Components',
+ 'licenses' => ':count Lisans|:count Lisans',
+ 'license_seats' => ':count Lisans Hakkı|:count Lisans Hakkı',
+ 'consumables' => ':count Sarf Malzemesi|:count Sarf Malzemesi',
+ 'components' => ':count Bileşen|:count Bileşen',
],
+ 'show_inactive' => 'Süresi Dolmuş veya Sonlandırılmış',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Daha Fazla Bilgi',
- 'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
- 'whoops' => 'Whoops!',
- 'something_went_wrong' => 'Something went wrong with your request.',
- 'close' => 'Close',
+ 'quickscan_bulk_help' => 'Bu kutuyu işaretlemeniz, varlık kaydını bu yeni konumu yansıtacak şekilde günceller. İşaretlemeden bırakmanız ise konumu yalnızca denetim günlüğüne kaydeder. Not: Eğer bu varlık başka birine zimmetliyse, bu işlem zimmetlendiği kişinin, varlığın veya konumun yerini değiştirmez.',
+ 'whoops' => 'Hay aksi!',
+ 'something_went_wrong' => 'İsteğinizle ilgili bir sorun oluştu.',
+ 'close' => 'Kapat',
'expires' => 'Bitiş',
- 'map_fields'=> 'Map :item_type Fields',
- 'remaining_var' => ':count Remaining',
- 'label' => 'Label',
- 'import_asset_tag_exists' => 'An asset with the asset tag :asset_tag already exists and an update was not requested. No change was made.',
- 'countries_manually_entered_help' => 'Values with an asterisk (*) were manually entered and do not match existing ISO 3166 dropdown values',
- 'accessories_assigned' => 'Assigned Accessories',
- 'user_managed_passwords' => 'Password Management',
- 'user_managed_passwords_disallow' => 'Disallow users from managing their own passwords',
- 'user_managed_passwords_allow' => 'Allow users to manage their own passwords',
- 'from' => 'From',
+ 'map_fields'=> ':item_type Alanlarını Eşleştir',
+ 'remaining_var' => ':count adet kaldı',
+ 'label' => 'Etiket',
+ 'import_asset_tag_exists' => ':asset_tag varlık etiketine sahip bir varlık zaten mevcut ve güncelleme talep edilmedi. Herhangi bir değişiklik yapılmadı.',
+ 'countries_manually_entered_help' => 'Yıldız (*) işareti olan değerler manuel olarak girilmiştir ve mevcut ISO 3166 açılır menü değerleriyle eşleşmemektedir',
+ 'accessories_assigned' => 'Zimmetli Aksesuarlar',
+ 'user_managed_passwords' => 'Parola Yönetimi',
+ 'user_managed_passwords_disallow' => 'Kullanıcıların kendi parolalarını yönetmelerini engelle',
+ 'user_managed_passwords_allow' => 'Kullanıcıların kendi parolalarını yönetmelerine izin ver',
+ 'from' => 'Gönderen',
'by' => 'Tarafından',
- 'version' => 'Version',
- 'build' => 'build',
- 'use_cloned_image' => 'Clone image from original',
- 'use_cloned_image_help' => 'You may clone the original image or you can upload a new one using the upload field below.',
- 'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
+ 'version' => 'Sürüm',
+ 'build' => 'Derleme',
+ 'use_cloned_image' => 'Görseli orijinalinden klonla',
+ 'use_cloned_image_help' => 'Orijinal görseli klonlayabilir veya aşağıdaki yükleme alanını kullanarak yeni bir tane yükleyebilirsiniz.',
+ 'use_cloned_no_image_help' => 'Bu öğenin ilişkili bir görseli yoktur ve bunun yerine ait olduğu modelden veya kategoriden görsel devralır. Bu öğe için belirli bir görsel kullanmak isterseniz, aşağıdan yeni bir tane yükleyebilirsiniz.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -628,11 +642,11 @@ Context | Request Context
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/tr-TR/mail.php b/resources/lang/tr-TR/mail.php
index d2c1ae69ab..f09d5accc6 100644
--- a/resources/lang/tr-TR/mail.php
+++ b/resources/lang/tr-TR/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Aksesuar Zimmet Kabul',
- 'Accessory_Checkout_Notification' => 'Aksesuar teslim alındı',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Aksesuar giriş onayı',
'Confirm_Asset_Checkin' => 'Varlık Kabul Onayı',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Size teslim edilen bir varlık :date tarihinde tekrar teslim edilecektir',
'Expected_Checkin_Notification' => 'Hatırlatma ::name Son seçim zamanı yaklaşıyor',
'Expected_Checkin_Report' => 'Beklenen varlık iade raporu',
- 'Expiring_Assets_Report' => 'Süresi Dolan Varlık Raporu.',
- 'Expiring_Licenses_Report' => 'Süresi Dolan Lisans Raporu.',
+ 'Expiring_Assets_Report' => 'Süresi Dolan Varlık Raporu',
+ 'Expiring_Licenses_Report' => 'Süresi Dolan Lisans Raporu',
'Item_Request_Canceled' => 'Talep İptal Edildi',
'Item_Requested' => 'Varlık Talep Edildi',
'License_Checkin_Notification' => 'Lisans Zimmet Kabul',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Düşük Stok Raporu',
'a_user_canceled' => 'Bir kullanıcı web sitede öğe talebinden vazgeçti',
'a_user_requested' => 'Bir kullanıcı websitede bir öğe talebinde bulundu',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Kullanıcı bir öğeyi kabul etti',
'acceptance_asset_declined' => 'Kullanıcı bir öğeyi reddetti',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Demirbaş Adı',
'asset_requested' => 'İstenen varlık',
'asset_tag' => 'Varlık Adı',
- 'assets_warrantee_alert' => 'Şu var: gelecek vadede garanti süresi dolmuş varlık sayımı: eşik günler. | Şunlar var: gelecek yıl sona ermesi garantili varlıklar sayılır: eşik günleri.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Atanmış',
+ 'eol' => 'Ömür Süresi',
'best_regards' => 'En iyi dileklerimizle,',
'canceled' => 'İptal edildi',
'checkin_date' => 'Giriş Tarihi',
@@ -58,6 +59,7 @@ return [
'days' => 'Günler',
'expecting_checkin_date' => 'Beklenen geri alma tarihi',
'expires' => 'Bitiş',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Merhaba',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Envanter Raporu',
'item' => 'Ürün',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Şu var: bir sonraki günlerde süren lisans sayımı: eşik günleri. | Şunlar var: bir sonraki günlerde süren sayım lisansları: eşik günleri.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Şifrenizi güncellemek için aşağıdaki linke tıklayınız :web password:',
'login' => 'Giriş',
'login_first_admin' => 'Yeni Snipe-IT Kurulumu oturum açma kimlik bilgilerini aşağıdaki gibidir. ',
'low_inventory_alert' => 'Şu var: Minimum envanterin altında olan veya yakında düşük olacak olan sayı maddesi. | Şunlar var: Minimum envanterin altında olan veya yakında olacak olan sayım maddeleri.',
'min_QTY' => 'Min. Miktar',
'name' => 'Ad',
- 'new_item_checked' => 'Yeni varlık altında kullanıma alındı, ayrıntıları aşağıdadır.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notlar',
'password' => 'Şifre',
diff --git a/resources/lang/uk-UA/admin/custom_fields/general.php b/resources/lang/uk-UA/admin/custom_fields/general.php
index f23b3f6b59..eafbcf5767 100644
--- a/resources/lang/uk-UA/admin/custom_fields/general.php
+++ b/resources/lang/uk-UA/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Керування',
'field' => 'Поле',
'about_fieldsets_title' => 'Про польові набори',
- 'about_fieldsets_text' => 'Поля дозволяють створювати групи настроюваних полів, які часто повторно використовуються для певних типів моделі активів.',
+ 'about_fieldsets_text' => 'Поля дозволяють створювати групи настроюваних полів, які часто повторно використовуються для конкретних типів моделі активів.',
'custom_format' => 'Користувацький формат регулярного виразу...',
'encrypt_field' => 'Шифрувати значення цього поля в базі даних',
'encrypt_field_help' => 'УВАГА: Шифрування поля робить його непридатним для пошуку.',
diff --git a/resources/lang/uk-UA/admin/depreciations/general.php b/resources/lang/uk-UA/admin/depreciations/general.php
index 0e32207b90..0d5d64dd83 100644
--- a/resources/lang/uk-UA/admin/depreciations/general.php
+++ b/resources/lang/uk-UA/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Про амортизації активів',
- 'about_depreciations' => 'Ви можете встановити амортизацію активів для знецінення активів, заснованих на амортизації прямої лінії.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Амортизація Активу',
'create' => 'Створити амортизацію',
'depreciation_name' => 'Назва амортизації',
diff --git a/resources/lang/uk-UA/admin/hardware/form.php b/resources/lang/uk-UA/admin/hardware/form.php
index 26873e544b..3166347026 100644
--- a/resources/lang/uk-UA/admin/hardware/form.php
+++ b/resources/lang/uk-UA/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Перейти до виданих',
'select_statustype' => 'Виберіть тип статусу',
'serial' => 'Серійник',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Статус',
'tag' => 'Тег активу',
'update' => 'Оновити актив',
diff --git a/resources/lang/uk-UA/admin/hardware/general.php b/resources/lang/uk-UA/admin/hardware/general.php
index ba85541d5f..b126564913 100644
--- a/resources/lang/uk-UA/admin/hardware/general.php
+++ b/resources/lang/uk-UA/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Запрошено користувачем',
'not_requestable' => 'Ви не можете запросити',
'requestable_status_warning' => 'Не змінювати статус запиту',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Очікуєтся',
'undeployable' => 'Непридатний для зберігання',
diff --git a/resources/lang/uk-UA/admin/licenses/message.php b/resources/lang/uk-UA/admin/licenses/message.php
index 7beee110a7..3fcb78405c 100644
--- a/resources/lang/uk-UA/admin/licenses/message.php
+++ b/resources/lang/uk-UA/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Недостатньо вільних ліцензійних місць для оформлення замовлення',
'mismatch' => 'Надане місце ліцензії не відповідає ліцензії',
'unavailable' => 'Це місце недоступне для видачі.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Виникла помилка перевірки ліцензії. Будь ласка, спробуйте ще раз.',
- 'not_reassignable' => 'Ліцензія не є допустимою',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Ліцензія успішно перевірена'
),
diff --git a/resources/lang/uk-UA/admin/locations/message.php b/resources/lang/uk-UA/admin/locations/message.php
index dbaa6ea80f..48fad06d35 100644
--- a/resources/lang/uk-UA/admin/locations/message.php
+++ b/resources/lang/uk-UA/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Розташування не існує.',
- 'assoc_users' => 'Це розташування наразі не можна видалити, оскільки воно є місцем запису принаймні для одного Активу чи користувача, йому призначено Активи або воно є батьківським місцем для іншого розташування. Оновіть свої записи, щоб більше не згадувати це місце, і повторіть спробу ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Це розташування в даний час пов\'язано принаймні з одним активом і не може бути видалений. Будь ласка, оновіть ваші медіафайли, щоб більше не посилатися на це розташування і повторіть спробу. ',
'assoc_child_loc' => 'Це місцезнаходження наразі батько принаймні одного дочірнього місця і не може бути видалений. Будь ласка, оновіть ваше місцеположення, щоб більше не посилатися на це місце і повторіть спробу. ',
'assigned_assets' => 'Призначені активи',
'current_location' => 'Поточне місцезнаходження',
'open_map' => 'Відкрити в картах :map_provider_icon',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/uk-UA/admin/locations/table.php b/resources/lang/uk-UA/admin/locations/table.php
index 970ad3f981..da7e8dd5b3 100644
--- a/resources/lang/uk-UA/admin/locations/table.php
+++ b/resources/lang/uk-UA/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Створити розташування',
'update' => 'Оновити розташування',
'print_assigned' => 'Друк призначено',
- 'print_all_assigned' => 'Друкувати всі призначені',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Назва розташування',
'address' => 'Адреса',
'address2' => 'Адресний рядок 2',
diff --git a/resources/lang/uk-UA/admin/models/table.php b/resources/lang/uk-UA/admin/models/table.php
index baeba3635d..d9d0aa2f86 100644
--- a/resources/lang/uk-UA/admin/models/table.php
+++ b/resources/lang/uk-UA/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Моделі активів',
'update' => 'Оновити модель активу',
'view' => 'Переглянути модель активу',
- 'update' => 'Оновити модель активу',
- 'clone' => 'Клонувати модель',
- 'edit' => 'Редагувати модель',
+ 'clone' => 'Клонувати модель',
+ 'edit' => 'Редагувати модель',
);
diff --git a/resources/lang/uk-UA/admin/users/general.php b/resources/lang/uk-UA/admin/users/general.php
index 663cb6ac91..5809715308 100644
--- a/resources/lang/uk-UA/admin/users/general.php
+++ b/resources/lang/uk-UA/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Включати цього користувача при автоматичному призначенні ліцензій',
'auto_assign_help' => 'Пропустити цього користувача в автопризначенні ліцензій',
'software_user' => 'Програмне забезпечення перевірено :name',
- 'send_email_help' => 'Ви повинні вказати email адресу для цього користувача для відправки їм облікових даних. Електронна пошта може бути виконана лише при створенні користувача. Паролі зберігаються в хеші одностороння і не можуть бути завантажені після збереження.',
'view_user' => 'Переглянути користувача :name',
'usercsv' => 'Файл CSV',
'two_factor_admin_optin_help' => 'Ваш поточний параметр адміністратора дозволяє вибіркове виконання двофакторної автентифікації. ',
diff --git a/resources/lang/uk-UA/general.php b/resources/lang/uk-UA/general.php
index 8a248d0548..90aff36eee 100644
--- a/resources/lang/uk-UA/general.php
+++ b/resources/lang/uk-UA/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Імпорт',
'import_this_file' => 'Поля карти і обробка цього файлу',
'importing' => 'Імпортування',
- 'importing_help' => 'Ви можете імпортувати активи, аксесуари, ліцензії, компоненти, витратні матеріали та користувачів за допомогою файлу CSV.
CSV має бути розділений комами та відформатований із заголовками, які відповідають заголовкам у зразка CSV у документації.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Історія імпорту',
'asset_maintenance' => 'Обслуговування активів',
'asset_maintenance_report' => 'Звіт про обслуговування активів',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'всього ліцензій',
'total_accessories' => 'всього аксесуарів',
'total_consumables' => 'всі витратні матеріали',
+ 'total_cost' => 'Total Cost',
'type' => 'Тип',
'undeployable' => 'Не доступний для встановлення',
'unknown_admin' => 'Невідомий адміністратор',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Ім\'я кристувача',
'update' => 'Оновлення',
'updating_item' => 'Оновлення :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Прострочені для аудиту',
'accept' => 'Прийняти :asset',
'i_accept' => 'Я приймаю',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Я відхиляю',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Прийняти/Відхилити',
'sign_tos' => 'Щоб вказати, що Ви погоджуєтеся з умовами надання послуги:',
'clear_signature' => 'Очистити підпис',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Дозволи',
'managed_ldap' => '(Керується через LDAP)',
'export' => 'Експорт',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Синхронізація LDAP',
'ldap_user_sync' => 'Синхронізація користувачів LDAP',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Оновити наявні значення?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Генерування теґів автоматичного збільшення активів вимкнено, тому всі рядки повинні мати заповнену колонку "Тег активу".',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Примітка: Генерування тегів автоматичного збільшення активів увімкнено, тому активи будуть створені для рядків, які не мають заповнених "Активу Тег". Рядки, що мають заповнені «Тег активу», будуть оновлені за наданою інформацією.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Надіслати ел. листа',
'call' => 'Виклик на номер',
'back_before_importing' => 'Зробити резервну копію перед імпортом?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item примітки',
'item_name_var' => ':item назва',
'error_user_company' => 'Вираховувати цільову компанію і активну компанію не співпадає',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'Актив, призначений вам належить інша компанія, так що ви не можете приймати і не приймати його, будь ласка, перевіряйте з вашим менеджером',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Перевірено на: Повне ім'я',
'checked_out_to_first_name' => 'Перевірено : Ім'я',
@@ -585,6 +595,8 @@ return [
'components' => ':count компонент|:count компонентів',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Детальніше',
'quickscan_bulk_help' => 'Поставивши цю позначку, ви зміните запис активу, щоб він відображав нове розташування. Якщо залишити поле без позначки, розташування буде лише зафіксовано в журналі аудиту. Зверніть увагу, що якщо актив перебуває в статусі "видано", це не змінить місцеперебування особи, активу чи місця, куди його видано.',
'whoops' => 'Упс!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Стандартний сайт',
'default_blue' => 'Синій стандартний',
'blue_dark' => 'Синій (темний режим)',
- 'green' => 'Зелений темний',
+ 'green' => 'Green',
'green_dark' => 'Зелений (темний режим)',
- 'red' => 'Темно-червона',
+ 'red' => 'Red',
'red_dark' => 'Червоний (темний режим)',
- 'orange' => 'Оранжевий Темний',
+ 'orange' => 'Orange',
'orange_dark' => 'Оранжевий (Темний режим)',
'black' => 'Чорний',
'black_dark' => 'Чорний (Темний режим)',
diff --git a/resources/lang/uk-UA/mail.php b/resources/lang/uk-UA/mail.php
index caaed1e4f8..beef1b9144 100644
--- a/resources/lang/uk-UA/mail.php
+++ b/resources/lang/uk-UA/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Аксесуар встановлено в',
- 'Accessory_Checkout_Notification' => 'Аксесуар перевірено',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Підтвердити реєстрацію аксесуара.',
'Confirm_Asset_Checkin' => 'Підтвердити реєстрацію активів.',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Медіафайл не відмічений вам через перевірку в :date',
'Expected_Checkin_Notification' => 'Нагадування: завершується термін перевірки імені',
'Expected_Checkin_Report' => 'Очікуваний звіт про перевірку активів',
- 'Expiring_Assets_Report' => 'Звіт про активи з завершенням терміну придатності.',
- 'Expiring_Licenses_Report' => 'Звіт про ліцензії з завершеням терміну придатності.',
+ 'Expiring_Assets_Report' => 'Звіт про активи з завершенням терміну придатності',
+ 'Expiring_Licenses_Report' => 'Звіт про ліцензії з завершеням терміну придатності',
'Item_Request_Canceled' => 'Запит скасовано',
'Item_Requested' => 'Запит на',
'License_Checkin_Notification' => 'Ліцензія перевірена',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Звіт про низький рівень інвентарю',
'a_user_canceled' => 'Користувач скасував запит на об\'єкт на веб-сайті',
'a_user_requested' => 'Користувач надіслав запит на об\'єкт на веб-сайті',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Користувач прийняв позицію',
'acceptance_asset_declined' => 'Користувач відхилив елемент',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Назва активу',
'asset_requested' => 'Запит на актив',
'asset_tag' => 'Тег активу',
- 'assets_warrantee_alert' => 'В наступні :threshold днів є :count медіафайл з гарантією, яка закінчується в наступні :threshold днів.|В наступних :threshold медіафайлів з гарантіями, що закінчуються в наступні :threshold днів.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Відповідальний',
+ 'eol' => 'EOL',
'best_regards' => 'З найкращими побажаннями,',
'canceled' => 'Скасовано',
'checkin_date' => 'Дата повернення',
@@ -58,6 +59,7 @@ return [
'days' => 'Днів',
'expecting_checkin_date' => 'Очікувана дата повернення',
'expires' => 'Термін закінчується',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Привіт',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Звіт про запаси',
'item' => 'Елемент',
'item_checked_reminder' => 'Нагадуємо, що у вас є :count активів що видані вам, але не що не були підтверджені вами або відхилені. Будь ласка, натисніть на посилання нижче, щоб підтвердити своє рішення.',
- 'license_expiring_alert' => 'В наступні :threshold днів закінчується :count термін дії ліцензії для наступних :threshold днів.|В наступному :threshold строк дії ліцензії.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Будь-ласка, натисніть на це посилання, щоб оновити свій пароль:',
'login' => 'Вхід',
'login_first_admin' => 'Увійдіть до вашої нової установки Snipe-IT за допомогою нижче:',
'low_inventory_alert' => 'Є :count елемент, який нижчий мінімальний інвентар або низький. Є :count предмети, які нижче мінімального інвентарю, або скоро будуть низькими.',
'min_QTY' => 'Мін. кількість',
'name' => 'Назва',
- 'new_item_checked' => 'Новий елемент був виданий під вашим ім\'ям, докладніше про це нижче.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Примітки.',
'password' => 'Пароль',
diff --git a/resources/lang/ur-PK/admin/custom_fields/general.php b/resources/lang/ur-PK/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/ur-PK/admin/custom_fields/general.php
+++ b/resources/lang/ur-PK/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/ur-PK/admin/depreciations/general.php b/resources/lang/ur-PK/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/ur-PK/admin/depreciations/general.php
+++ b/resources/lang/ur-PK/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/ur-PK/admin/hardware/form.php b/resources/lang/ur-PK/admin/hardware/form.php
index 8fbd0b4e87..dc4754e71a 100644
--- a/resources/lang/ur-PK/admin/hardware/form.php
+++ b/resources/lang/ur-PK/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/ur-PK/admin/hardware/general.php b/resources/lang/ur-PK/admin/hardware/general.php
index bc972da290..09282b9190 100644
--- a/resources/lang/ur-PK/admin/hardware/general.php
+++ b/resources/lang/ur-PK/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/ur-PK/admin/licenses/message.php b/resources/lang/ur-PK/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/ur-PK/admin/licenses/message.php
+++ b/resources/lang/ur-PK/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/ur-PK/admin/locations/message.php b/resources/lang/ur-PK/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/ur-PK/admin/locations/message.php
+++ b/resources/lang/ur-PK/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/ur-PK/admin/locations/table.php b/resources/lang/ur-PK/admin/locations/table.php
index 53176d8a4e..d7128b30f7 100644
--- a/resources/lang/ur-PK/admin/locations/table.php
+++ b/resources/lang/ur-PK/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/ur-PK/admin/models/table.php b/resources/lang/ur-PK/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/ur-PK/admin/models/table.php
+++ b/resources/lang/ur-PK/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/ur-PK/admin/users/general.php b/resources/lang/ur-PK/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/ur-PK/admin/users/general.php
+++ b/resources/lang/ur-PK/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/ur-PK/general.php b/resources/lang/ur-PK/general.php
index 0754635da5..5d6e5dfeed 100644
--- a/resources/lang/ur-PK/general.php
+++ b/resources/lang/ur-PK/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/ur-PK/mail.php b/resources/lang/ur-PK/mail.php
index 5f529a0f4b..2122df909d 100644
--- a/resources/lang/ur-PK/mail.php
+++ b/resources/lang/ur-PK/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Item',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/vi-VN/admin/custom_fields/general.php b/resources/lang/vi-VN/admin/custom_fields/general.php
index ef9f2a30d8..6672177699 100644
--- a/resources/lang/vi-VN/admin/custom_fields/general.php
+++ b/resources/lang/vi-VN/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Quản lý',
'field' => 'Cánh đồng',
'about_fieldsets_title' => 'Giới thiệu về các trường',
- 'about_fieldsets_text' => 'Các trường cho phép bạn tạo các nhóm các trường tùy chỉnh thường được sử dụng lại cho các loại mô hình tài sản cụ thể.',
+ 'about_fieldsets_text' => 'Các trường cho phép bạn tạo các nhóm trường tuỳ chỉnh thường xuyên được sử dụng lại cho các mô hình tài sản cụ thể.',
'custom_format' => 'Định dạng tuỳ chỉnh...',
'encrypt_field' => 'Mã hóa giá trị của trường này trong cơ sở dữ liệu',
'encrypt_field_help' => 'CẢNH BÁO: Mã hóa một trường làm cho nó không thể tìm kiếm được.',
diff --git a/resources/lang/vi-VN/admin/depreciations/general.php b/resources/lang/vi-VN/admin/depreciations/general.php
index 970652f4bc..f940a595ca 100644
--- a/resources/lang/vi-VN/admin/depreciations/general.php
+++ b/resources/lang/vi-VN/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Thông tin về khấu hao tài sản',
- 'about_depreciations' => 'Bạn có thể thiết lập các loại khấu hao để khấu hao tài sản dựa trên straight-line khấu hao.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Khấu hao tài sản',
'create' => 'Tạo khấu hao',
'depreciation_name' => 'Tên khấu hao',
diff --git a/resources/lang/vi-VN/admin/hardware/form.php b/resources/lang/vi-VN/admin/hardware/form.php
index dd72cd55e3..1fed9d065d 100644
--- a/resources/lang/vi-VN/admin/hardware/form.php
+++ b/resources/lang/vi-VN/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Chuyển đến mục Đã cấp phát',
'select_statustype' => 'Lựa chọn loại tình trạng',
'serial' => 'Số Sê-ri',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Tình trạng',
'tag' => 'Thẻ tài sản',
'update' => 'Cập nhật tài sản',
diff --git a/resources/lang/vi-VN/admin/hardware/general.php b/resources/lang/vi-VN/admin/hardware/general.php
index e81e6e7296..ecfa632da8 100644
--- a/resources/lang/vi-VN/admin/hardware/general.php
+++ b/resources/lang/vi-VN/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Yêu cầu',
'not_requestable' => 'Không cho phép đề xuất',
'requestable_status_warning' => 'Không thay đổi trạng thái yêu cầu',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Phục hồi tài sản',
'pending' => 'Đang chờ',
'undeployable' => 'Không cho phép cấp phát',
diff --git a/resources/lang/vi-VN/admin/licenses/message.php b/resources/lang/vi-VN/admin/licenses/message.php
index 3275667c08..d03ceb058e 100644
--- a/resources/lang/vi-VN/admin/licenses/message.php
+++ b/resources/lang/vi-VN/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Có vấn đề xảy ra khi checkin bản quyền. Xin vui lòng thử lại.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Bản quyền đã được checkin thành công'
),
diff --git a/resources/lang/vi-VN/admin/locations/message.php b/resources/lang/vi-VN/admin/locations/message.php
index 423a744076..e5b988e257 100644
--- a/resources/lang/vi-VN/admin/locations/message.php
+++ b/resources/lang/vi-VN/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Địa phương không tồn tại.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Địa phương này hiện tại đã được liên kết với ít nhất một tài sản và không thể xóa. Xin vui lòng cập nhật tài sản của bạn để không còn liên kết với địa phương này nữa và thử lại. ',
'assoc_child_loc' => 'Địa phương này hiện tại là cấp parent của ít nhật một địa phương con và không thể xóa. Xin vui lòng cập nhật địa phương của bạn để không liên kết đến địa phương này và thử lại. ',
'assigned_assets' => 'Tài sản được giao',
'current_location' => 'Vị trí hiện tại',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/vi-VN/admin/locations/table.php b/resources/lang/vi-VN/admin/locations/table.php
index d9c5d66c7a..3d7636a751 100644
--- a/resources/lang/vi-VN/admin/locations/table.php
+++ b/resources/lang/vi-VN/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Tạo địa phương',
'update' => 'Cập nhật địa phương',
'print_assigned' => 'In tài sản đã cấp phát',
- 'print_all_assigned' => 'In tất cả tài sản đã cấp phát',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Tên địa phương',
'address' => 'Địa chỉ',
'address2' => 'Địa chỉ thứ 2',
diff --git a/resources/lang/vi-VN/admin/models/table.php b/resources/lang/vi-VN/admin/models/table.php
index 0046dc68d8..7367e1ba79 100644
--- a/resources/lang/vi-VN/admin/models/table.php
+++ b/resources/lang/vi-VN/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Kiểu tài sản',
'update' => 'Cập nhật kiểu tài sản',
'view' => 'Xem kiểu tài sản',
- 'update' => 'Cập nhật kiểu tài sản',
- 'clone' => 'Nhân đôi kiểu tài sản',
- 'edit' => 'Cập nhật kiểu tài sản',
+ 'clone' => 'Nhân đôi kiểu tài sản',
+ 'edit' => 'Cập nhật kiểu tài sản',
);
diff --git a/resources/lang/vi-VN/admin/users/general.php b/resources/lang/vi-VN/admin/users/general.php
index 71c735d69d..3f78111562 100644
--- a/resources/lang/vi-VN/admin/users/general.php
+++ b/resources/lang/vi-VN/admin/users/general.php
@@ -25,7 +25,6 @@ return [
'auto_assign_label' => 'Bao gồm người dùng này khi giấy phép đủ điều kiện tự động chỉ định',
'auto_assign_help' => 'Bỏ qua người dùng này trong chế độ tự động chỉ định giấy phép',
'software_user' => 'Phần mềm đã được checkout đến :name',
- 'send_email_help' => 'Bạn phải cung cấp địa chỉ email của người dùng để gửi chứng thực. Gửi mail chứng thực chỉ có hiệu lực đối với người dùng tạo ra. Mật khẩu được mã hóa một chiều và không thể lấy lại một khi đã lưu.',
'view_user' => 'Xem người dùng :name',
'usercsv' => 'Tập tin CSV',
'two_factor_admin_optin_help' => 'Cài đặt quản trị hiện tại của bạn cho phép thực thi có chọn lọc xác thực hai yếu tố.',
diff --git a/resources/lang/vi-VN/general.php b/resources/lang/vi-VN/general.php
index d0cccf12fd..8942029b6b 100644
--- a/resources/lang/vi-VN/general.php
+++ b/resources/lang/vi-VN/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Nhập',
'import_this_file' => 'Các trường bản đồ và quá trình xử lý tệp này',
'importing' => 'Đang nhập',
- 'importing_help' => 'Bạn có thể nhập nội dung, phụ kiện, giấy phép, linh kiện, vật tư tiêu hao và người dùng qua tệp CSV.
CSV phải được phân cách bằng dấu phẩy và được định dạng với các tiêu đề khớp với các tiêu đề trong CSV trong tài liệu mẫu .',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Lịch sử Nhập khẩu',
'asset_maintenance' => 'Tài sản đang bảo trì',
'asset_maintenance_report' => 'Báo cáo tài sản bảo trì',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'tổng số bản quyền',
'total_accessories' => 'tổng số phụ kiện',
'total_consumables' => 'tổng số hàng tiêu dùng',
+ 'total_cost' => 'Total Cost',
'type' => 'Loại',
'undeployable' => 'Không cho phép cấp phát',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Tên đăng nhập',
'update' => 'Cập nhật',
'updating_item' => 'Updating :item',
@@ -354,9 +356,11 @@ return [
'audit_overdue' => 'Quá hạn kiểm kê',
'accept' => 'Chấp nhận :asset',
'i_accept' => 'Tôi đồng ý',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'Tôi từ chối',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Phê duyệt / Từ chối',
'sign_tos' => 'Ký tên bên dưới để biết rằng bạn đồng ý với các điều khoản dịch vụ:',
'clear_signature' => 'Xóa chữ ký',
@@ -395,6 +399,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Được quản lý qua LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'Đồng bộ hóa LDAP',
'ldap_user_sync' => 'Đồng bộ hóa người dùng LDAP',
'synchronize' => 'Đồng bộ',
@@ -409,7 +414,7 @@ return [
'new_license' => 'New License',
'new_accessory' => 'Thêm phụ kiện',
'new_consumable' => 'Tạo vật tư phụ',
- 'new_component' => 'New Component',
+ 'new_component' => 'Thành phần mới',
'new_user' => 'New User',
'collapse' => 'Thu gọn',
'assigned' => 'Đã giao',
@@ -484,7 +489,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => 'Gửi email chào mừng cho người dùng mới? Lưu ý: chỉ những người dùng có địa chỉ email hợp lệ và được đánh dấu là đã kích hoạt trong tệp nhập dữ liệu mới nhận được email chào mừng.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Gửi Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -514,7 +521,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':tên thiết bị',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -586,6 +596,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Xem thêm thông tin',
'quickscan_bulk_help' => 'Chọn hộp này sẽ chỉnh sửa bản ghi tài sản để phản ánh vị trí mới này. Bỏ chọn hộp này sẽ chỉ ghi chú vị trí trong nhật ký kiểm tra. Lưu ý rằng nếu tài sản này được kiểm tra, vị trí của người, tài sản hoặc vị trí mà nó được kiểm tra sẽ không thay đổi.',
'whoops' => 'Whoops!',
@@ -610,6 +622,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -626,11 +640,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/vi-VN/mail.php b/resources/lang/vi-VN/mail.php
index aa928c524e..d6caae495b 100644
--- a/resources/lang/vi-VN/mail.php
+++ b/resources/lang/vi-VN/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Phụ kiện đã cấp phát thành công',
- 'Accessory_Checkout_Notification' => 'Phụ kiện đã cấp phát thành công',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Xác nhận cấp phát Phụ kiện',
'Confirm_Asset_Checkin' => 'Xác nhận cấp phát tài sản',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'Một tài sản đã thu hồi về cho bạn vì đã hoàn lại vào ngày :date',
'Expected_Checkin_Notification' => 'Nhắn nhở: hạn chót cấp phát cho :name gần đến',
'Expected_Checkin_Report' => 'Báo cáo tài sản dự kiến thu hồi',
- 'Expiring_Assets_Report' => 'Báo cáo tài sản đang hết hạn.',
- 'Expiring_Licenses_Report' => 'Giấy phép Giấy phép hết hạn.',
+ 'Expiring_Assets_Report' => 'Báo cáo tài sản đang hết hạn',
+ 'Expiring_Licenses_Report' => 'Giấy phép Giấy phép hết hạn',
'Item_Request_Canceled' => 'Yêu cầu Mặt hàng bị Hủy',
'Item_Requested' => 'Yêu cầu',
'License_Checkin_Notification' => 'Giấy phép đã cấp phát thành công',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Báo cáo tồn kho thấp',
'a_user_canceled' => 'Người dùng đã hủy bỏ một khoản mục yêu cầu trên trang web',
'a_user_requested' => 'Người dùng đã yêu cầu một mục trên trang web',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'Người dùng đã chấp nhận',
'acceptance_asset_declined' => 'Người dùng từ chối',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Tên tài sản',
'asset_requested' => 'Tài sản được yêu cầu',
'asset_tag' => 'Thẻ tài sản',
- 'assets_warrantee_alert' => 'Tài sản có bảo hành sắp hết hạn vào ngày mai: threshold days. | Tài sản có bảo hành sắp hết hạn trong ngày mai: threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Cấp phát cho',
+ 'eol' => 'EOL',
'best_regards' => 'Trân trọng,',
'canceled' => 'Canceled',
'checkin_date' => 'Ngày Checkin',
@@ -58,6 +59,7 @@ return [
'days' => 'Ngày',
'expecting_checkin_date' => 'Ngày muốn thu hồi',
'expires' => 'Hết hạn',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'xin chào',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Báo cáo kho',
'item' => 'Mục',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'Có: giấy phép bản quyền sắp hết hạn trong ngày mai:threshold days. | Có nhiều: giấy phép bản quyên sắp hết hạn trong lần tiếp theo: threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Vui lòng nhấp vào liên kết sau để cập nhật: mật khẩu web:',
'login' => 'Đăng nhập',
'login_first_admin' => 'Đăng nhập vào hệ thống Snipe-IT mới bằng các thông tin dưới đây:',
'low_inventory_alert' => 'Có: mặt hàng tồn dưới mức tối thiểu hoặc sẽ sớm ở mức thấp. | Có nhiều: mặt hàng tồn dưới mức tồn kho tối thiểu hoặc sẽ sớm ở mức thấp.',
'min_QTY' => 'Min QTY',
'name' => 'Tên',
- 'new_item_checked' => 'Một mục mới đã được kiểm tra dưới tên của bạn, chi tiết dưới đây.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Ghi chú',
'password' => 'Mật khẩu',
diff --git a/resources/lang/zh-CN/admin/custom_fields/general.php b/resources/lang/zh-CN/admin/custom_fields/general.php
index f2fce4c3ac..e15b5d5317 100644
--- a/resources/lang/zh-CN/admin/custom_fields/general.php
+++ b/resources/lang/zh-CN/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => '管理',
'field' => '字段',
'about_fieldsets_title' => '关于字段集',
- 'about_fieldsets_text' => '字段组功能允许您创建可重复使用的自定义字段集合,这些字段组可针对特定资产模型类型进行配置。',
+ 'about_fieldsets_text' => '字段集允许你创建用于特定资产模型类型的可复用的自定义字段组。',
'custom_format' => '自定义正则表达式格式...',
'encrypt_field' => '在数据库中加密此字段',
'encrypt_field_help' => '警告︰ 对字段的加密将导致该字段无法用于搜索',
@@ -33,7 +33,7 @@ return [
'create_fieldset_title' => '创建一个新的字段集',
'create_field' => '新增字段',
'create_field_title' => '创建一个新自定义字段',
- 'value_encrypted' => 'The value of this field is encrypted in the database. Only users with permission to view encrypted custom fields will be able to view the decrypted value',
+ 'value_encrypted' => '此字段的值是在数据库中加密的。 只有拥有查看加密自定义字段权限的用户才能查看该值',
'show_in_email' => '是否在发送给用户的签出通知邮件中包含此字段?邮件中不包含加密字段。',
'show_in_email_short' => '包含在电子邮件中',
'help_text' => '帮助文本',
diff --git a/resources/lang/zh-CN/admin/depreciations/general.php b/resources/lang/zh-CN/admin/depreciations/general.php
index 9977531099..a428657af6 100644
--- a/resources/lang/zh-CN/admin/depreciations/general.php
+++ b/resources/lang/zh-CN/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => '关于资产折旧',
- 'about_depreciations' => '你可以设置资产折旧时间期限',
+ 'about_depreciations' => '您可以设置资产折旧,方法包括:线性、条件性半年法或无条件半年法。',
'asset_depreciations' => '资产折旧',
'create' => '新建折旧',
'depreciation_name' => '折旧名称',
diff --git a/resources/lang/zh-CN/admin/hardware/form.php b/resources/lang/zh-CN/admin/hardware/form.php
index 6d5c8b93b5..2ea2820a48 100644
--- a/resources/lang/zh-CN/admin/hardware/form.php
+++ b/resources/lang/zh-CN/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => '跳转到已签出者',
'select_statustype' => '选择状态类型',
'serial' => '序列号',
+ 'serial_required' => 'Asset :number 需要序列号',
+ 'serial_required_post_model_update' => ':asset_model 已更新,需要序列号。请为此资产添加序列号。',
'status' => '状态',
'tag' => '资产标签',
'update' => '更新资产',
diff --git a/resources/lang/zh-CN/admin/hardware/general.php b/resources/lang/zh-CN/admin/hardware/general.php
index 72f9d04285..a236571a6a 100644
--- a/resources/lang/zh-CN/admin/hardware/general.php
+++ b/resources/lang/zh-CN/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => '已申请',
'not_requestable' => '不可申领',
'requestable_status_warning' => '不可更改申领状态',
+ 'require_serial' => '需要序列号',
+ 'require_serial_help' => '创建此型号的新资产时需要序列号。',
'restore' => '还原资产',
'pending' => '待处理',
'undeployable' => '不可部署',
diff --git a/resources/lang/zh-CN/admin/licenses/message.php b/resources/lang/zh-CN/admin/licenses/message.php
index 84a7d948b0..e75a2ac9de 100644
--- a/resources/lang/zh-CN/admin/licenses/message.php
+++ b/resources/lang/zh-CN/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => '没有足够的许可证席位可供签出',
'mismatch' => '提供的许可证席位与许可证不匹配',
'unavailable' => '这个席位不能签出。',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => '归还许可证的过程中出现了一些问题,请重试。',
- 'not_reassignable' => '许可证不可重新分配',
+ 'not_reassignable' => '席位已被使用',
'success' => '许可证已经成功归还。'
),
diff --git a/resources/lang/zh-CN/admin/locations/message.php b/resources/lang/zh-CN/admin/locations/message.php
index 20c8f9e154..7f06061924 100644
--- a/resources/lang/zh-CN/admin/locations/message.php
+++ b/resources/lang/zh-CN/admin/locations/message.php
@@ -9,6 +9,7 @@ return array(
'assigned_assets' => '已分配的资产',
'current_location' => '当前位置',
'open_map' => '在 :map_provider_icon 地图中打开',
+ 'deleted_warning' => '此位置已被删除。请在尝试做更改之前将其还原。',
'create' => array(
diff --git a/resources/lang/zh-CN/admin/locations/table.php b/resources/lang/zh-CN/admin/locations/table.php
index 54234af508..c029fc41f6 100644
--- a/resources/lang/zh-CN/admin/locations/table.php
+++ b/resources/lang/zh-CN/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => '创建位置',
'update' => '更新位置',
'print_assigned' => '打印已分配资产',
- 'print_all_assigned' => '打印所有已分配资产',
+ 'print_inventory' => '打印库存',
+ 'print_all_assigned' => '打印库存和分配',
'name' => '位置名称',
'address' => '地址',
'address2' => '地址行2',
diff --git a/resources/lang/zh-CN/admin/models/table.php b/resources/lang/zh-CN/admin/models/table.php
index 8fc4f5ea96..f16276da3b 100644
--- a/resources/lang/zh-CN/admin/models/table.php
+++ b/resources/lang/zh-CN/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => '资产型号',
'update' => '更新资产型号',
'view' => '查看资产型号',
- 'update' => '更新资产型号',
- 'clone' => '克隆型号',
- 'edit' => '编辑型号',
+ 'clone' => '克隆型号',
+ 'edit' => '编辑型号',
);
diff --git a/resources/lang/zh-CN/admin/settings/general.php b/resources/lang/zh-CN/admin/settings/general.php
index 62865784cf..aaa63b564d 100644
--- a/resources/lang/zh-CN/admin/settings/general.php
+++ b/resources/lang/zh-CN/admin/settings/general.php
@@ -93,11 +93,11 @@ return [
'ldap_integration' => 'LDAP集成',
'ldap_settings' => 'LDAP 设置',
'ldap_client_tls_cert_help' => 'LDAP 连接的客户端TLS 证书和密钥通常仅用于谷歌工作空间配置,两者都是必需的。',
- 'ldap_location' => 'LDAP Location Field',
-'ldap_location_help' => 'The LDAP Location field should be used if an OU is not being used in the Base Bind DN. Leave this blank if an OU search is being used.',
+ 'ldap_location' => 'LDAP 位置字段',
+'ldap_location_help' => '如果 Base Bind DN 未指定组织单元 (OU),则应使用 Ldap Location 字段来指定位置。 如果正在使用组织单元 (OU) 搜索,则请将此字段留空。',
'ldap_login_test_help' => '根据你指定的base DN,输入有效的LDAP用户名和密码,以测试您的LDAP登录是否配置正确。当然您必须先保存您更改的LDAP设置。',
- 'ldap_login_sync_help' => 'This only tests that LDAP can sync and that your fields are mapped correctly. If your LDAP Authentication query is not correct, users may still not be able to login. YOU MUST SAVE YOUR UPDATED LDAP SETTINGS FIRST.',
- 'ldap_manager' => 'LDAP Manager Field',
+ 'ldap_login_sync_help' => '这只是测试LDAP是否可以正确同步。如果LDAP认证设置不正确,用户可能仍然无法登录。在此之前,请务必保存更新后的LDAP设置。',
+ 'ldap_manager' => 'LDAP 管理者字段',
'ldap_server' => 'LDAP 服务器',
'ldap_server_help' => '此处应该以 ldap:// (对于未加密的) 或 ldaps:// (对于TLS 或 SSL) 开始',
'ldap_server_cert' => '检验LDAP的SSL证书',
@@ -106,33 +106,33 @@ return [
'ldap_tls' => '使用TLS',
'ldap_tls_help' => '仅当LDAP服务器使用STARTTLS时本选项才被勾选',
'ldap_uname' => 'LDAP 绑定用户名',
- 'ldap_dept' => 'LDAP Department Field',
- 'ldap_phone' => 'LDAP Phone Number Field',
- 'ldap_jobtitle' => 'LDAP Job Title Field',
- 'ldap_country' => 'LDAP Country Field',
+ 'ldap_dept' => 'LDAP 部门字段',
+ 'ldap_phone' => 'LDAP 电话号码字段',
+ 'ldap_jobtitle' => 'LDAP 职位字段',
+ 'ldap_country' => 'LDAP 国家字段',
'ldap_pword' => 'LDAP 密码',
'ldap_basedn' => 'Base Bind DN',
'ldap_filter' => 'LDAP 过滤器',
'ldap_pw_sync' => '缓存 LDAP 密码',
'ldap_pw_sync_help' => '如果您不希望将LDAP密码缓存为本地哈希密码,请取消选中此项。 禁用这意味着如果您的LDAP服务器因某些原因无法访问,您的用户可能无法登录。',
- 'ldap_username_field' => 'LDAP Username Field',
- 'ldap_display_name' => 'LDAP Display Name Field',
- 'ldap_display_name_help' => 'If you have a separate displayName field in your LDAP/AD, map it here and it will be used for displaying users within Snipe-IT.',
- 'ldap_lname_field' => 'LDAP Last Name Field',
- 'ldap_fname_field' => 'LDAP First Name Field',
+ 'ldap_username_field' => 'LDAP 用户名字段',
+ 'ldap_display_name' => 'LDAP 显示名称字段',
+ 'ldap_display_name_help' => '如果您在 LDAP/AD中有一个单独的 displayname 字段,在这里映射它,并且它将用于显示Snipe-IT中的用户。',
+ 'ldap_lname_field' => 'LDAP 姓氏字段',
+ 'ldap_fname_field' => 'LDAP 名字字段',
'ldap_auth_filter_query' => 'LDAP认证请求',
'ldap_version' => 'LDAP 版本',
'ldap_active_flag' => 'LDAP 启用标志',
'ldap_activated_flag_help' => '此值用于确定同步用户是否可以登录 Snipe-IT。 它不会影响用户向其签入或签出物品,并且应该是您 AD/LDAP 中的 属性名称,而非属性值。
请确保 CSV 文件是逗号分隔的,并且文件格式的标题行应与文档中提供的 CSV 示例中的标题完全一致。',
+ 'importing_help' => 'CSV 文件应使用逗号作为分隔符,并且其表头格式需要与文档中的 CSV 示例文件中的表头保持一致。',
'import-history' => '导入历史记录',
'asset_maintenance' => '资产维护',
'asset_maintenance_report' => '资产维护报表',
@@ -309,10 +309,12 @@ return [
'total_licenses' => '共计许可证',
'total_accessories' => '总配件',
'total_consumables' => '总耗材',
+ 'total_cost' => 'Total Cost',
'type' => '类型',
'undeployable' => '无法被分配',
'unknown_admin' => '未知管理员',
'unknown_user' => '未知用户',
+ 'unit_cost' => 'Unit Cost',
'username' => '用户名',
'update' => '更新',
'updating_item' => '正在更新 :item',
@@ -338,13 +340,13 @@ return [
'zip' => 'Zip',
'noimage' => '图片未上传或图片无法找到。',
'file_does_not_exist' => '请求的文件在服务器上不存在。',
- 'file_not_inlineable' => 'The requested file cannot be opened inline in your browser. You can download it instead.',
- 'open_new_window' => 'Open this file in a new window',
+ 'file_not_inlineable' => '请求的文件不能在您的浏览器内联打开。您可以下载它。',
+ 'open_new_window' => '在新窗口中打开此文件',
'file_upload_success' => '文件上传成功!',
'no_files_uploaded' => '文件上传成功!',
'token_expired' => '表单会话已过期,请重新提交',
'login_enabled' => '登录已启用',
- 'login_disabled' => 'Login Disabled',
+ 'login_disabled' => '登录已禁用',
'audit_due' => '到期审计',
'audit_due_days' => '{}到期或逾期未盘点的资产|[1]一天内到期或逾期未盘点的资产|[2,*] :days 天内到期或逾期未盘点的资产',
'checkin_due' => '到期签入',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => '盘点逾期',
'accept' => '接受 :asset',
'i_accept' => '我接受',
- 'i_decline_item' => '拒绝此物品',
- 'i_accept_item' => '接受这个物品',
+ 'i_accept_with_count' => '我接受 :count 个物品|我接受 :count 个物品',
+ 'i_decline_item' => '拒绝此物品|拒绝这些物品',
+ 'i_accept_item' => '接受此物品|接受这些物品',
'i_decline' => '我拒绝',
+ 'i_decline_with_count' => '我拒绝 :count 个项目|我拒绝 :count 个项目',
'accept_decline' => '接受/拒绝',
'sign_tos' => '请在下面登录以表明您同意服务条款:',
'clear_signature' => '清除签名',
@@ -394,6 +398,7 @@ return [
'permissions' => '权限',
'managed_ldap' => '(通过 LDAP 管理)',
'export' => '导出',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP 同步',
'ldap_user_sync' => 'LDAP 用户同步',
'synchronize' => '同步',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => '更新现有值?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => '生成自动递增资产标签已禁用,因此所有行都需要配置“资产标签”栏。',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => '注意:生成自动递增资产标签已启用,因此资产将被创建为不包含“资产标签”的行。 确实有"资产标签"的行将使用所提供的信息更新。已包含“资产标签”的行将使用所提供的信息进行更新。',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' 发送欢迎邮件给新用户',
+ 'send_welcome_email_help' => '只有拥有有效电子邮件地址且状态为已激活的用户,才会收到可用于重置密码的欢迎邮件。',
+ 'send_welcome_email_import_help' => '只有拥有有效电子邮箱地址、且在您的导入文件中被标记为“已激活”的新用户,才会收到一封欢迎邮件,他们可以在该邮件中设置密码。',
'send_email' => '发送电子邮件',
'call' => '呼叫号码',
'back_before_importing' => '导入前备份?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item 备注',
'item_name_var' => ':item 名称',
'error_user_company' => '签出的公司和资产所在公司不匹配',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => '分配给您的资产属于另一家公司,所以您不能接受或拒绝它,请与您的经理联系。',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => '签出给: 全名',
'checked_out_to_first_name' => '签出给: 名',
@@ -556,8 +566,8 @@ return [
'phone' => '电话',
'fax' => '传真',
'contact' => '联系',
- 'show_admins' => 'Admin Users',
- 'show_superadmins' => 'Superusers',
+ 'show_admins' => '管理员用户',
+ 'show_superadmins' => '超级用户',
'edit_fieldset' => '编辑字段集字段和选项',
'permission_denied_superuser_demo' => '权限被拒绝。您不能更新演示上超级管理员的用户信息。',
'pwd_reset_not_sent' => '用户未激活,可能因为LDAP同步,或没有电子邮件地址',
@@ -585,6 +595,8 @@ return [
'components' => ':count 组件|:count 组件',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => '更多信息',
'quickscan_bulk_help' => '勾选此框将编辑资产记录以反映其新的位置。不勾选则只会在盘点日志中记录该位置。注意,如果此资产已被借出,则不会更改其借出到的人员、资产或位置的位置。',
'whoops' => '哎呀!',
@@ -604,11 +616,13 @@ return [
'by' => '经由',
'version' => '版本',
'build' => '版本号',
- 'use_cloned_image' => 'Clone image from original',
- 'use_cloned_image_help' => 'You may clone the original image or you can upload a new one using the upload field below.',
- 'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
+ 'use_cloned_image' => '从原始图像复制',
+ 'use_cloned_image_help' => '您可以克隆原始图片,也可以使用下方的上传区域上传一张新图片。',
+ 'use_cloned_no_image_help' => '此项目没有相关的图像,而是从它所属的模型或类别继承。 如果你想要使用特定的图像,你可以在下面上传一个新的图像。',
'footer_credit' => 'Snipe-IT 是开源软件,用 爱 由 @snipeitapp.com 制作。',
- 'set_password' => 'Set a Password',
+ 'set_password' => '设置密码',
+ 'upload_deleted' => '上传已删除',
+ 'child_locations' => '子位置',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => '站点默认',
'default_blue' => '默认蓝色',
'blue_dark' => '蓝色(深色模式)',
- 'green' => '深绿色',
+ 'green' => '绿色',
'green_dark' => '绿色(深色模式)',
- 'red' => '暗红色',
+ 'red' => '红色',
'red_dark' => '红色(深色模式)',
- 'orange' => '暗橙色',
+ 'orange' => '橙色',
'orange_dark' => '橙色(深色模式)',
'black' => '黑色',
'black_dark' => '黑色(深色模式)',
diff --git a/resources/lang/zh-CN/mail.php b/resources/lang/zh-CN/mail.php
index d2ce182406..c6dcaa99f8 100644
--- a/resources/lang/zh-CN/mail.php
+++ b/resources/lang/zh-CN/mail.php
@@ -3,26 +3,26 @@
return [
'Accessory_Checkin_Notification' => '配件已归还',
- 'Accessory_Checkout_Notification' => '配件已签出',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => '已签入的资产: :tag',
+ 'Asset_Checkout_Notification' => '已签出的资产: :tag',
'Confirm_Accessory_Checkin' => '配件签入确认',
'Confirm_Asset_Checkin' => '确认资产收回',
- 'Confirm_component_checkin' => 'Component checkin confirmation',
+ 'Confirm_component_checkin' => '组件签入确认',
'Confirm_accessory_delivery' => '配件交付确认',
'Confirm_asset_delivery' => '资产交付确认',
'Confirm_consumable_delivery' => '耗材交付确认',
- 'Confirm_component_delivery' => 'Component delivery confirmation',
+ 'Confirm_component_delivery' => '组件交付确认',
'Confirm_license_delivery' => '许可证交付确认',
'Consumable_checkout_notification' => '耗材已签出',
- 'Component_checkout_notification' => 'Component checked out',
- 'Component_checkin_notification' => 'Component checked in',
+ 'Component_checkout_notification' => '组件签出',
+ 'Component_checkin_notification' => '组件签入',
'Days' => '天',
- 'Expected_Checkin_Date' => '借出的资产将在 :date 重新签入',
+ 'Expected_Checkin_Date' => '签出的资产将在 :date 重新签入',
'Expected_Checkin_Notification' => '提醒::name 签入截止日期已接近。',
'Expected_Checkin_Report' => '预期的资产检查报告',
- 'Expiring_Assets_Report' => '过期资产报告',
- 'Expiring_Licenses_Report' => '过期许可证报告',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => '已取消申领物品',
'Item_Requested' => '已申领物品',
'License_Checkin_Notification' => '许可证已签入',
@@ -31,24 +31,25 @@ return [
'Low_Inventory_Report' => '低库存报告',
'a_user_canceled' => '用户已取消物品申请',
'a_user_requested' => '用户已申请物品',
- 'acceptance_asset_accepted_to_user' => '您已接受由 :site_name 分配给您的物品',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => '用户已接受一件物品',
'acceptance_asset_declined' => '用户拒绝了一件物品',
'send_pdf_copy' => '将此接受的副本发送到我的电子邮件地址',
'accessory_name' => '配件名称',
'additional_notes' => '附加注释',
- 'admin_has_created' => 'An administrator has created an account for you on the :web website. Please find your username below, and click on the link to set a password.',
+ 'admin_has_created' => '管理员在 :web 网站上为您创建了一个帐户。 请在下方找到您的用户名,然后点击链接来设置密码。',
'asset' => '资产',
'asset_name' => '资产名称',
'asset_requested' => '已申请资产',
'asset_tag' => '资产标签',
- 'assets_warrantee_alert' => '有 :count 个资产保修期将于 :threshold 天到期。|有 :count 个资产 保修期将于 :threshold 天到期。',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => '已分配给',
+ 'eol' => '生命周期',
'best_regards' => '此致',
'canceled' => '已取消',
'checkin_date' => '归还日期',
'checkout_date' => '签出日期',
- 'checkedout_from' => '借出自',
+ 'checkedout_from' => '签出自',
'checkedin_from' => '归还自',
'checked_into' => '归还至',
'click_on_the_link_accessory' => '请点击链接确认您已经收到配件。',
@@ -58,6 +59,7 @@ return [
'days' => '天',
'expecting_checkin_date' => '预计归还日期',
'expires' => '过期',
+ 'terminates' => 'Terminates',
'following_accepted' => '以下内容被接受',
'following_declined' => '以下内容被拒绝',
'hello' => '您好',
@@ -67,17 +69,17 @@ return [
'initiated_declined' => '您发起的签出已被拒绝',
'inventory_report' => '库存报告',
'item' => '项目',
- 'item_checked_reminder' => '提醒,当前借出给您 :count 件物品,您还没有签收或拒绝。 请点击下面的链接以确认您的决定。',
- 'license_expiring_alert' => '有 :count 个许可将在 :threshold 天后到期。|有 :count 个许可将在 :threshold 天后到期。',
+ 'item_checked_reminder' => '提醒,当前签出给您 :count 件物品,您还没有签收或拒绝。 请点击下面的链接以确认您的决定。',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => '请点击以下链接以更新 :web 的密码:',
'login' => '登录',
'login_first_admin' => '请使用以下凭据登录新安装的 Snipe-IT:',
'low_inventory_alert' => '有:种物品已经低于或者接近最小库存。|有:种物品已经低于或者接近最小库存。',
'min_QTY' => '最小数量',
'name' => '名字',
- 'new_item_checked' => '一项新物品已分配至您的名下,详细信息如下。',
- 'new_item_checked_with_acceptance' => '一件新物品已借至您的名下,需要签收,详情如下。',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => '有一件物品刚刚签出到您的名下,需要签收,详情如下。',
'notes' => '备注',
'password' => '密码',
diff --git a/resources/lang/zh-HK/admin/custom_fields/general.php b/resources/lang/zh-HK/admin/custom_fields/general.php
index a1cda96d2f..03caf10fa9 100644
--- a/resources/lang/zh-HK/admin/custom_fields/general.php
+++ b/resources/lang/zh-HK/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Field',
'about_fieldsets_title' => 'About Fieldsets',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Encrypt the value of this field in the database',
'encrypt_field_help' => 'WARNING: Encrypting a field makes it unsearchable.',
diff --git a/resources/lang/zh-HK/admin/depreciations/general.php b/resources/lang/zh-HK/admin/depreciations/general.php
index 90246e9cd8..73596e2695 100644
--- a/resources/lang/zh-HK/admin/depreciations/general.php
+++ b/resources/lang/zh-HK/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'About Asset Depreciations',
- 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Asset Depreciations',
'create' => 'Create Depreciation',
'depreciation_name' => 'Depreciation Name',
diff --git a/resources/lang/zh-HK/admin/hardware/form.php b/resources/lang/zh-HK/admin/hardware/form.php
index 8fbd0b4e87..dc4754e71a 100644
--- a/resources/lang/zh-HK/admin/hardware/form.php
+++ b/resources/lang/zh-HK/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Select Status Type',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Status',
'tag' => 'Asset Tag',
'update' => 'Asset Update',
diff --git a/resources/lang/zh-HK/admin/hardware/general.php b/resources/lang/zh-HK/admin/hardware/general.php
index bc972da290..09282b9190 100644
--- a/resources/lang/zh-HK/admin/hardware/general.php
+++ b/resources/lang/zh-HK/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Requested',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Restore Asset',
'pending' => 'Pending',
'undeployable' => 'Undeployable',
diff --git a/resources/lang/zh-HK/admin/licenses/message.php b/resources/lang/zh-HK/admin/licenses/message.php
index 74e1d7af5a..29ab06cbd9 100644
--- a/resources/lang/zh-HK/admin/licenses/message.php
+++ b/resources/lang/zh-HK/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'There was an issue checking in the license. Please try again.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'The license was checked in successfully'
),
diff --git a/resources/lang/zh-HK/admin/locations/message.php b/resources/lang/zh-HK/admin/locations/message.php
index b21c70ad89..4f0b7b2cfe 100644
--- a/resources/lang/zh-HK/admin/locations/message.php
+++ b/resources/lang/zh-HK/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Location does not exist.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'This location is currently associated with at least one asset and cannot be deleted. Please update your assets to no longer reference this location and try again. ',
'assoc_child_loc' => 'This location is currently the parent of at least one child location and cannot be deleted. Please update your locations to no longer reference this location and try again. ',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/zh-HK/admin/locations/table.php b/resources/lang/zh-HK/admin/locations/table.php
index 53176d8a4e..d7128b30f7 100644
--- a/resources/lang/zh-HK/admin/locations/table.php
+++ b/resources/lang/zh-HK/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Create Location',
'update' => 'Update Location',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Location Name',
'address' => 'Address',
'address2' => 'Address Line 2',
diff --git a/resources/lang/zh-HK/admin/models/table.php b/resources/lang/zh-HK/admin/models/table.php
index 11a512b3d3..20af866dde 100644
--- a/resources/lang/zh-HK/admin/models/table.php
+++ b/resources/lang/zh-HK/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Asset Models',
'update' => 'Update Asset Model',
'view' => 'View Asset Model',
- 'update' => 'Update Asset Model',
- 'clone' => 'Clone Model',
- 'edit' => 'Edit Model',
+ 'clone' => 'Clone Model',
+ 'edit' => 'Edit Model',
);
diff --git a/resources/lang/zh-HK/admin/users/general.php b/resources/lang/zh-HK/admin/users/general.php
index cecf786ce2..fa0f478d4b 100644
--- a/resources/lang/zh-HK/admin/users/general.php
+++ b/resources/lang/zh-HK/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Software Checked out to :name',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
diff --git a/resources/lang/zh-HK/general.php b/resources/lang/zh-HK/general.php
index b5655bcbb9..f26bba71a6 100644
--- a/resources/lang/zh-HK/general.php
+++ b/resources/lang/zh-HK/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Import',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Import History',
'asset_maintenance' => 'Asset Maintenance',
'asset_maintenance_report' => 'Asset Maintenance Report',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'total licenses',
'total_accessories' => 'total accessories',
'total_consumables' => 'total consumables',
+ 'total_cost' => 'Total Cost',
'type' => 'Type',
'undeployable' => 'Un-deployable',
'unknown_admin' => 'Unknown Admin',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Username',
'update' => 'Update',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'More Info',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/zh-HK/mail.php b/resources/lang/zh-HK/mail.php
index 64e42f2dce..376d6aa2b8 100644
--- a/resources/lang/zh-HK/mail.php
+++ b/resources/lang/zh-HK/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Expiring Assets Report.',
- 'Expiring_Licenses_Report' => 'Expiring Licenses Report.',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => 'Item Request Canceled',
'Item_Requested' => 'Item Requested',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Low Inventory Report',
'a_user_canceled' => 'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Asset Name',
'asset_requested' => 'Asset requested',
'asset_tag' => 'Asset Tag',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Assigned To',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => 'Checkin Date',
@@ -58,6 +59,7 @@ return [
'days' => 'Days',
'expecting_checkin_date' => 'Expected Checkin Date',
'expires' => 'Expires',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => '項目',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Please click on the following link to update your :web password:',
'login' => 'Login',
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'Min QTY',
'name' => 'Name',
- 'new_item_checked' => 'A new item has been checked out under your name, details are below.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Notes',
'password' => 'Password',
diff --git a/resources/lang/zh-TW/admin/accessories/message.php b/resources/lang/zh-TW/admin/accessories/message.php
index c9f947f0d2..ab27fd2d50 100644
--- a/resources/lang/zh-TW/admin/accessories/message.php
+++ b/resources/lang/zh-TW/admin/accessories/message.php
@@ -28,7 +28,7 @@ return array(
'unavailable' => '配件不足無法借出, 檢查可用數量.',
'user_does_not_exist' => '使用者不正確。請再試一次。',
'checkout_qty' => array(
- 'lte' => 'There is currently only one available accessory of this type, and you are trying to check out :checkout_qty. Please adjust the checkout quantity or the total stock of this accessory and try again.|There are :number_currently_remaining total available accessories, and you are trying to check out :checkout_qty. Please adjust the checkout quantity or the total stock of this accessory and try again.',
+ 'lte' => '目前此類型只有一個可用的配件,您正在試圖借出 :checkout_qty 個。 請修改借出數量或是該配件的庫存量後再試一次。|有 :num_currently_restotal 個可用配件,您正在試圖借出 :checkout_qty 個。請修改借出數量或是該配件的庫存量後再試一次。',
),
),
diff --git a/resources/lang/zh-TW/admin/categories/general.php b/resources/lang/zh-TW/admin/categories/general.php
index 38fc326038..ae1e54faa4 100644
--- a/resources/lang/zh-TW/admin/categories/general.php
+++ b/resources/lang/zh-TW/admin/categories/general.php
@@ -4,7 +4,7 @@ return array(
'asset_categories' => '資產類別',
'category_name' => '類別名稱',
'checkin_email' => '在借出/繳回時發送郵件給使用者。',
- 'email_to_initiator' => 'Send email to you when user accepts or declines checkout.',
+ 'email_to_initiator' => '在用戶接受或拒絕繳回時發送郵件給您。',
'checkin_email_notification' => '在借出/繳回時該使用者會發送郵件。',
'clone' => '複製類別',
'create' => '新建類別',
diff --git a/resources/lang/zh-TW/admin/custom_fields/general.php b/resources/lang/zh-TW/admin/custom_fields/general.php
index 9575f3218e..0297eee27f 100644
--- a/resources/lang/zh-TW/admin/custom_fields/general.php
+++ b/resources/lang/zh-TW/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => '管理',
'field' => '欄位',
'about_fieldsets_title' => '關於欄位集',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used used for specific asset model types.',
+ 'about_fieldsets_text' => '欄位集允許您為常用的資產模型定義一組可重複使用的欄位。',
'custom_format' => '自訂正規表達式格式...',
'encrypt_field' => '加密資料庫中此欄位的值',
'encrypt_field_help' => '警告:對欄位加密將導致此欄無法用於搜索',
diff --git a/resources/lang/zh-TW/admin/depreciations/general.php b/resources/lang/zh-TW/admin/depreciations/general.php
index 3cc8b08c71..25dc6220f0 100644
--- a/resources/lang/zh-TW/admin/depreciations/general.php
+++ b/resources/lang/zh-TW/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => '關於資產折舊',
- 'about_depreciations' => '您可以設置資產折舊期限',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => '資產折舊',
'create' => '新建折舊',
'depreciation_name' => '折舊名稱',
diff --git a/resources/lang/zh-TW/admin/hardware/form.php b/resources/lang/zh-TW/admin/hardware/form.php
index 44179f8bfd..8a48c8f780 100644
--- a/resources/lang/zh-TW/admin/hardware/form.php
+++ b/resources/lang/zh-TW/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => '選擇狀態類型',
'serial' => '序號',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => '狀態',
'tag' => '資產標籤',
'update' => '更新資產',
diff --git a/resources/lang/zh-TW/admin/hardware/general.php b/resources/lang/zh-TW/admin/hardware/general.php
index fe39f1d1cb..32e8195ca8 100644
--- a/resources/lang/zh-TW/admin/hardware/general.php
+++ b/resources/lang/zh-TW/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => '已申領',
'not_requestable' => '不可申請',
'requestable_status_warning' => '請不要更改可申請狀態',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => '還原資產',
'pending' => '待處理',
'undeployable' => '不可部署',
diff --git a/resources/lang/zh-TW/admin/licenses/message.php b/resources/lang/zh-TW/admin/licenses/message.php
index 86debf28ef..b5d4f310a2 100644
--- a/resources/lang/zh-TW/admin/licenses/message.php
+++ b/resources/lang/zh-TW/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => '繳回授權時發生問題,請重試。',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => '繳回授權成功。'
),
diff --git a/resources/lang/zh-TW/admin/locations/message.php b/resources/lang/zh-TW/admin/locations/message.php
index 330e21aa57..110e04e69b 100644
--- a/resources/lang/zh-TW/admin/locations/message.php
+++ b/resources/lang/zh-TW/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => '地點不存在.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => '至少還有一個資產與此位置關聯,目前不能被删除,請檢查後重試。 ',
'assoc_child_loc' => '至少還有一個子項目與此位置關聯,目前不能被删除,請檢查後重試。 ',
'assigned_assets' => '已分配資產',
'current_location' => '目前位置',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/zh-TW/admin/locations/table.php b/resources/lang/zh-TW/admin/locations/table.php
index a8b3c87dc6..31b9ff7039 100644
--- a/resources/lang/zh-TW/admin/locations/table.php
+++ b/resources/lang/zh-TW/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => '新增位置',
'update' => '更新位置',
'print_assigned' => '列印已分配的',
- 'print_all_assigned' => '列印所有已分配的',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => '位置名稱',
'address' => '地址',
'address2' => '地址第二行',
diff --git a/resources/lang/zh-TW/admin/models/table.php b/resources/lang/zh-TW/admin/models/table.php
index 11b0300a26..409da5b721 100644
--- a/resources/lang/zh-TW/admin/models/table.php
+++ b/resources/lang/zh-TW/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => '資產樣板',
'update' => '更新資產樣板',
'view' => '檢視資產樣板',
- 'update' => '更新資產樣板',
- 'clone' => '複製樣板',
- 'edit' => '編輯樣板',
+ 'clone' => '複製樣板',
+ 'edit' => '編輯樣板',
);
diff --git a/resources/lang/zh-TW/admin/users/general.php b/resources/lang/zh-TW/admin/users/general.php
index 49088792d0..c385f5bee2 100644
--- a/resources/lang/zh-TW/admin/users/general.php
+++ b/resources/lang/zh-TW/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => '自動分配可用軟體授權時包含此使用者',
'auto_assign_help' => '自動分配可用軟體授權時跳過此使用者',
'software_user' => ':name 借出的軟體',
- 'send_email_help' => '必須為此使用者提供一個電子郵件地址以傳送他們的憑證。只有在建立使用者時,才能夠傳送電子郵件憑證。密碼儲存在一個單向雜湊中,一旦儲存,就無法再取回。',
'view_user' => '檢視使用者: :name',
'usercsv' => 'CSV 檔',
'two_factor_admin_optin_help' => '您當前的管理員設置允許使用雙因素身份驗證。',
diff --git a/resources/lang/zh-TW/general.php b/resources/lang/zh-TW/general.php
index 5e6398dc6f..8fbb47441b 100644
--- a/resources/lang/zh-TW/general.php
+++ b/resources/lang/zh-TW/general.php
@@ -160,7 +160,7 @@ return [
'import' => '匯入',
'import_this_file' => 'Map fields and process this file',
'importing' => '匯入中',
- 'importing_help' => '您可透過 CSV 格式檔案匯入資產、授權、配件、耗材以及使用者。
CSV檔案必須以逗號分格,並依照說明文件中的CSV範例保留首部及格式。',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => '匯入歷史記錄',
'asset_maintenance' => '資產維護',
'asset_maintenance_report' => '資產維護報告',
@@ -309,10 +309,12 @@ return [
'total_licenses' => '總計授權',
'total_accessories' => '配件總計',
'total_consumables' => '耗材總計',
+ 'total_cost' => 'Total Cost',
'type' => '類型',
'undeployable' => '不可佈署',
'unknown_admin' => '未知管理員',
'unknown_user' => '未知的使用者',
+ 'unit_cost' => 'Unit Cost',
'username' => '使用者名稱',
'update' => '更新',
'updating_item' => '正在更新 :item',
@@ -344,7 +346,7 @@ return [
'no_files_uploaded' => '檔案上傳成功!',
'token_expired' => '表單已過期,請重新送出',
'login_enabled' => '登入已啟用',
- 'login_disabled' => 'Login Disabled',
+ 'login_disabled' => '已被禁止登入',
'audit_due' => '審核到期',
'audit_due_days' => '{}Assets Due or Overdue for Audit|[1]Assets Due or Overdue for Audit Within a Day|[2,*]Assets Due or Overdue for Audit Within :days Days',
'checkin_due' => 'Due for Checkin',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => '審核過期',
'accept' => '接受 :asset',
'i_accept' => '我接受',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => '我拒絕',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => '接受/拒絕',
'sign_tos' => '請在下面簽署來表示您同意服務條款:',
'clear_signature' => '清除簽名',
@@ -394,6 +398,7 @@ return [
'permissions' => '權限',
'managed_ldap' => '(由 LDAP 管理)',
'export' => '匯出',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP同步',
'ldap_user_sync' => 'LDAP使用者同步',
'synchronize' => '同步',
@@ -432,7 +437,7 @@ return [
'accessory_name' => '配件名稱:',
'clone_item' => '複製項目',
'checkout_tooltip' => '借出此項目',
- 'checkin_tooltip' => 'Check this item in so that it is available for re-issue, re-imaging, etc',
+ 'checkin_tooltip' => '歸還此項目以便再次分發、使用',
'checkout_user_tooltip' => '將此項目借出給使用者',
'checkin_to_diff_location' => 'You can choose to check this asset in to a location other than this asset\'s default location of :default_location if one is set',
'maintenance_mode' => '系統升級中,服務目前暫時無法使用,請稍後再查看。',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => '更新現有的值?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => '已停用產生自動遞增的資產標籤,所以所有列都需要填寫 "資產標籤" 欄位。',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => '注意:已啟用產生自動遞增的資產標籤,所以將會為沒有填寫 "資產標籤" 的列建立資產。已填寫 "資產標籤" 的列將會更新為提供的資訊。',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => '匯入前先進行備份?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item 備註',
'item_name_var' => ':item 名稱',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => '借出給:全名',
'checked_out_to_first_name' => '借出給:名字',
@@ -556,8 +566,8 @@ return [
'phone' => '電話',
'fax' => '傳真',
'contact' => 'Contact',
- 'show_admins' => 'Admin Users',
- 'show_superadmins' => 'Superusers',
+ 'show_admins' => '管理員用戶',
+ 'show_superadmins' => '超級使用者',
'edit_fieldset' => 'Edit fieldset fields and options',
'permission_denied_superuser_demo' => 'Permission denied. You cannot update user information for superadmins on the demo.',
'pwd_reset_not_sent' => 'User is not activated, is LDAP synced, or does not have an email address',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => '更多資訊',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -605,10 +617,12 @@ return [
'version' => 'Version',
'build' => 'build',
'use_cloned_image' => 'Clone image from original',
- 'use_cloned_image_help' => 'You may clone the original image or you can upload a new one using the upload field below.',
+ 'use_cloned_image_help' => '您可以在下面欄位中,從原圖檔複製或是上傳新的圖檔。',
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/zh-TW/mail.php b/resources/lang/zh-TW/mail.php
index 90f0dfeb7f..d3aec3ae6d 100644
--- a/resources/lang/zh-TW/mail.php
+++ b/resources/lang/zh-TW/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => '配件繳回',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => '確認配件繳回',
'Confirm_Asset_Checkin' => '確認資產繳回',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => '您借出的一項資產預計在 :date 歸還',
'Expected_Checkin_Notification' => '提醒: :name 接近繳回最後期限',
'Expected_Checkin_Report' => '預計資產繳回報告',
- 'Expiring_Assets_Report' => '過期資產報告',
- 'Expiring_Licenses_Report' => '過期授權報告',
+ 'Expiring_Assets_Report' => 'Expiring Assets Report',
+ 'Expiring_Licenses_Report' => 'Expiring Licenses Report',
'Item_Request_Canceled' => '已取消申請物品',
'Item_Requested' => '已申請物品',
'License_Checkin_Notification' => '授權繳回',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => '低庫存報告',
'a_user_canceled' => '使用者已取消項目申請',
'a_user_requested' => '使用者已申請項目',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => '使用者已接收一項物品',
'acceptance_asset_declined' => '使用者已拒絕一項物品',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => '資產名稱',
'asset_requested' => '申請資產',
'asset_tag' => '資產標籤',
- 'assets_warrantee_alert' => '有 :count 項資產的保固將在接下來的 :threshold 天內到期。|有 :count 項資產的保固將在接下來的 :threshold 天內到期。',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => '分配給',
+ 'eol' => 'EOL',
'best_regards' => 'Best regards,',
'canceled' => 'Canceled',
'checkin_date' => '繳回日期',
@@ -58,6 +59,7 @@ return [
'days' => '日',
'expecting_checkin_date' => '預計歸還日期',
'expires' => '過期',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Hello',
@@ -68,16 +70,16 @@ return [
'inventory_report' => '庫存報告',
'item' => '項目',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => '有 :count 個授權將在 :threshold 天後到期。|有 :count 個授權將在 :threshold 天後到期。',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => '請點擊以下鏈結以更新 :web 的密碼:',
'login' => '登入',
'login_first_admin' => '使用以下憑證登入新安裝的 Snipe-IT:',
'low_inventory_alert' => '有 :count 種物品已經低於或者接近最小庫存。|有 :count 種物品已經低於或者接近最小庫存。',
'min_QTY' => '最小數量',
'name' => '名字',
- 'new_item_checked' => '一項新物品已分配至您的名下,詳細資訊如下。',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => '備註',
'password' => '密碼',
diff --git a/resources/lang/zu-ZA/admin/custom_fields/general.php b/resources/lang/zu-ZA/admin/custom_fields/general.php
index 9cf8ef5e70..0394a545d8 100644
--- a/resources/lang/zu-ZA/admin/custom_fields/general.php
+++ b/resources/lang/zu-ZA/admin/custom_fields/general.php
@@ -5,7 +5,7 @@ return [
'manage' => 'Manage',
'field' => 'Inkambu',
'about_fieldsets_title' => 'Mayelana nama-Fieldsets',
- 'about_fieldsets_text' => 'Ama-Fieldsets akuvumela ukuthi udale amaqembu wenkambiso yenkambiso evame ukusetshenziselwa kabusha asetshenziselwa izinhlobo ezithile zemodeli yefa.',
+ 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
'custom_format' => 'Custom Regex format...',
'encrypt_field' => 'Bhala ukubaluleka kwalensimu ku-database',
'encrypt_field_help' => 'ISEXWAYISO: Ukubethela insimu kungenza kungabhekeki.',
diff --git a/resources/lang/zu-ZA/admin/depreciations/general.php b/resources/lang/zu-ZA/admin/depreciations/general.php
index c0461a815f..662e8bee1b 100644
--- a/resources/lang/zu-ZA/admin/depreciations/general.php
+++ b/resources/lang/zu-ZA/admin/depreciations/general.php
@@ -2,7 +2,7 @@
return [
'about_asset_depreciations' => 'Mayelana nokunciphisa kwefa',
- 'about_depreciations' => 'Ungasetha ukwehla kwefa ukuze wehlise izimpahla ezisuselwe ekunciphiseni komugqa oqondile.',
+ 'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on linear (straight-line), Half Year applied with condition, or Half Year always applied.',
'asset_depreciations' => 'Ukuncishiswa kwempahla',
'create' => 'Dala ukwehla',
'depreciation_name' => 'Igama lokunciphisa',
diff --git a/resources/lang/zu-ZA/admin/hardware/form.php b/resources/lang/zu-ZA/admin/hardware/form.php
index b7c9db90a0..fe2ccb10e8 100644
--- a/resources/lang/zu-ZA/admin/hardware/form.php
+++ b/resources/lang/zu-ZA/admin/hardware/form.php
@@ -44,6 +44,8 @@ return [
'redirect_to_checked_out_to' => 'Go to Checked Out to',
'select_statustype' => 'Khetha uhlobo lomumo',
'serial' => 'Serial',
+ 'serial_required' => 'Asset :number requires a serial number',
+ 'serial_required_post_model_update' => ':asset_model have been updated to require a serial number. Please add a serial number for this asset.',
'status' => 'Isimo',
'tag' => 'Ithegi lefa',
'update' => 'Ukuvuselelwa kwefa',
diff --git a/resources/lang/zu-ZA/admin/hardware/general.php b/resources/lang/zu-ZA/admin/hardware/general.php
index 263b217485..1c356e858b 100644
--- a/resources/lang/zu-ZA/admin/hardware/general.php
+++ b/resources/lang/zu-ZA/admin/hardware/general.php
@@ -22,6 +22,8 @@ return [
'requested' => 'Kuceliwe',
'not_requestable' => 'Not Requestable',
'requestable_status_warning' => 'Do not change requestable status',
+ 'require_serial' => 'Require Serial Number',
+ 'require_serial_help' => 'A serial number will be required when creating a new asset of this model.',
'restore' => 'Buyisela imali',
'pending' => 'Kulindile',
'undeployable' => 'Awuvumelekile',
diff --git a/resources/lang/zu-ZA/admin/licenses/message.php b/resources/lang/zu-ZA/admin/licenses/message.php
index f0a5b6497d..9e4fa52000 100644
--- a/resources/lang/zu-ZA/admin/licenses/message.php
+++ b/resources/lang/zu-ZA/admin/licenses/message.php
@@ -46,11 +46,12 @@ return array(
'not_enough_seats' => 'Not enough license seats available for checkout',
'mismatch' => 'The license seat provided does not match the license',
'unavailable' => 'This seat is not available for checkout.',
+ 'license_is_inactive' => 'This license is expired or terminated.',
),
'checkin' => array(
'error' => 'Kube nenkinga ekuhloleni ilayisense. Ngicela uzame futhi.',
- 'not_reassignable' => 'License not reassignable',
+ 'not_reassignable' => 'Seat has been used',
'success' => 'Ilayisensi ihlolwe ngempumelelo'
),
diff --git a/resources/lang/zu-ZA/admin/locations/message.php b/resources/lang/zu-ZA/admin/locations/message.php
index 433f47fd31..9d0e39729e 100644
--- a/resources/lang/zu-ZA/admin/locations/message.php
+++ b/resources/lang/zu-ZA/admin/locations/message.php
@@ -3,12 +3,13 @@
return array(
'does_not_exist' => 'Indawo ayikho.',
- 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one asset or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
+ 'assoc_users' => 'This location is not currently deletable because it is the location of record for at least one item or user, has assets assigned to it, or is the parent location of another location. Please update your records to no longer reference this location and try again ',
'assoc_assets' => 'Le ndawo okwamanje ihlotshaniswa okungenani nefa elilodwa futhi ayikwazi ukususwa. Sicela ubuyekeze izimpahla zakho ukuze ungasaphinde ubhekise le ndawo futhi uzame futhi.',
'assoc_child_loc' => 'Le ndawo okwamanje ungumzali okungenani indawo eyodwa yengane futhi ayikwazi ukususwa. Sicela ubuyekeze izindawo zakho ukuze ungasaphinde ubhekisele kule ndawo bese uyazama futhi.',
'assigned_assets' => 'Assigned Assets',
'current_location' => 'Current Location',
'open_map' => 'Open in :map_provider_icon Maps',
+ 'deleted_warning' => 'This location has been deleted. Please restore it before attempting to make any changes.',
'create' => array(
diff --git a/resources/lang/zu-ZA/admin/locations/table.php b/resources/lang/zu-ZA/admin/locations/table.php
index 3cc3d30831..68f5e0be5f 100644
--- a/resources/lang/zu-ZA/admin/locations/table.php
+++ b/resources/lang/zu-ZA/admin/locations/table.php
@@ -12,7 +12,8 @@ return [
'create' => 'Dala indawo',
'update' => 'Buyekeza Indawo',
'print_assigned' => 'Print Assigned',
- 'print_all_assigned' => 'Print All Assigned',
+ 'print_inventory' => 'Print Inventory',
+ 'print_all_assigned' => 'Print Inventory and Assigned',
'name' => 'Igama lendawo',
'address' => 'Ikheli',
'address2' => 'Address Line 2',
diff --git a/resources/lang/zu-ZA/admin/models/table.php b/resources/lang/zu-ZA/admin/models/table.php
index a3b43f07d8..cca9cea286 100644
--- a/resources/lang/zu-ZA/admin/models/table.php
+++ b/resources/lang/zu-ZA/admin/models/table.php
@@ -11,7 +11,6 @@ return array(
'title' => 'Amamodeli asefa',
'update' => 'Buyekeza i-Asset Model',
'view' => 'Buka i-Model Model',
- 'update' => 'Buyekeza i-Asset Model',
- 'clone' => 'I-Clone Model',
- 'edit' => 'Hlela Isibonelo',
+ 'clone' => 'I-Clone Model',
+ 'edit' => 'Hlela Isibonelo',
);
diff --git a/resources/lang/zu-ZA/admin/users/general.php b/resources/lang/zu-ZA/admin/users/general.php
index c1d594af2e..f30a64b549 100644
--- a/resources/lang/zu-ZA/admin/users/general.php
+++ b/resources/lang/zu-ZA/admin/users/general.php
@@ -24,7 +24,6 @@ return [
'auto_assign_label' => 'Include this user when auto-assigning eligible licenses',
'auto_assign_help' => 'Skip this user in auto assignment of licenses',
'software_user' => 'Isofthiwe ihlolwe ku: igama',
- 'send_email_help' => 'You must provide an email address for this user to send them credentials. Emailing credentials can only be done on user creation. Passwords are stored in a one-way hash and cannot be retrieved once saved.',
'view_user' => 'Buka umsebenzisi: igama',
'usercsv' => 'Ifayela le-CSV',
'two_factor_admin_optin_help' => 'Izilungiselelo zakho zamanje zomlawuli zivumela ukusethwa okukhethiwe kokuqinisekiswa kwezinto ezimbili.',
diff --git a/resources/lang/zu-ZA/general.php b/resources/lang/zu-ZA/general.php
index fd8088447e..63a09a620f 100644
--- a/resources/lang/zu-ZA/general.php
+++ b/resources/lang/zu-ZA/general.php
@@ -160,7 +160,7 @@ return [
'import' => 'Ngenisa',
'import_this_file' => 'Map fields and process this file',
'importing' => 'Importing',
- 'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file.
The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
+ 'importing_help' => 'The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.',
'import-history' => 'Ngenisa Umlando',
'asset_maintenance' => 'Ukugcinwa Kwempahla',
'asset_maintenance_report' => 'Umbiko Wokugcinwa Kwempahla',
@@ -309,10 +309,12 @@ return [
'total_licenses' => 'amalayisensi ephelele',
'total_accessories' => 'izesekeli eziphelele',
'total_consumables' => 'ukusetshenziswa okuphelele',
+ 'total_cost' => 'Total Cost',
'type' => 'Thayipha',
'undeployable' => 'I-non-deployable',
'unknown_admin' => 'Isilawuli esingaziwa',
'unknown_user' => 'Unknown User',
+ 'unit_cost' => 'Unit Cost',
'username' => 'Igama lomsebenzisi',
'update' => 'Ukubuyekeza',
'updating_item' => 'Updating :item',
@@ -353,9 +355,11 @@ return [
'audit_overdue' => 'Overdue for Audit',
'accept' => 'Accept :asset',
'i_accept' => 'I accept',
- 'i_decline_item' => 'Decline this item',
- 'i_accept_item' => 'Accept this item',
+ 'i_accept_with_count' => 'I accept :count item|I accept :count items',
+ 'i_decline_item' => 'Decline this item|Decline these items',
+ 'i_accept_item' => 'Accept this item|Accept these items',
'i_decline' => 'I decline',
+ 'i_decline_with_count' => 'I decline :count item|I decline :count items',
'accept_decline' => 'Accept/Decline',
'sign_tos' => 'Sign below to indicate that you agree to the terms of service:',
'clear_signature' => 'Clear Signature',
@@ -394,6 +398,7 @@ return [
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
'export' => 'Export',
+ 'export_all_to_csv' => 'Export all to CSV',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
@@ -483,7 +488,9 @@ return [
'update_existing_values' => 'Update Existing Values?',
'auto_incrementing_asset_tags_disabled_so_tags_required' => 'Generating auto-incrementing asset tags is disabled so all rows need to have the "Asset Tag" column populated.',
'auto_incrementing_asset_tags_enabled_so_now_assets_will_be_created' => 'Note: Generating auto-incrementing asset tags is enabled so assets will be created for rows that do not have "Asset Tag" populated. Rows that do have "Asset Tag" populated will be updated with the provided information.',
- 'send_welcome_email_to_users' => ' Send Welcome Email for new Users? Note that only users with a valid email address and who are marked as activated in your import file will received a welcome.',
+ 'send_welcome_email_to_users' => ' Send welcome email to new users',
+ 'send_welcome_email_help' => 'Only users with a valid email address and who are marked as activated will receive a welcome email where they can reset their password.',
+ 'send_welcome_email_import_help' => 'Only new users with a valid email address and who are marked as activated in your import file will receive a welcome email where they can set their password.',
'send_email' => 'Send Email',
'call' => 'Call number',
'back_before_importing' => 'Backup before importing?',
@@ -513,7 +520,10 @@ return [
'item_notes' => ':item Notes',
'item_name_var' => ':item Name',
'error_user_company' => 'Checkout target company and asset company do not match',
+ 'error_user_company_multiple' => 'One or more of the checkout target company and asset company do not match',
'error_user_company_accept_view' => 'An Asset assigned to you belongs to a different company so you can\'t accept nor deny it, please check with your manager',
+ 'error_assets_already_checked_out' => 'One or more of the assets are already checked out',
+ 'assigned_assets_removed' => 'The following were removed from the selected assets because they are already checked out',
'importer' => [
'checked_out_to_fullname' => 'Checked Out to: Full Name',
'checked_out_to_first_name' => 'Checked Out to: First Name',
@@ -585,6 +595,8 @@ return [
'components' => ':count Component|:count Components',
],
+ 'show_inactive' => 'Expired or Terminated',
+ 'show_expiring' => 'Expiring or Terminating Soon',
'more_info' => 'Ulwazi oluningi',
'quickscan_bulk_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log. Note that if this asset is checked out, it will not change the location of the person, asset or location it is checked out to.',
'whoops' => 'Whoops!',
@@ -609,6 +621,8 @@ return [
'use_cloned_no_image_help' => 'This item does not have an associated image and instead inherits from the model or category it belongs to. If you would like to use a specific image for this item, you can upload a new one below.',
'footer_credit' => 'Snipe-IT is open source software, made with love by @snipeitapp.com.',
'set_password' => 'Set a Password',
+ 'upload_deleted' => 'Upload Deleted',
+ 'child_locations' => 'Child Locations',
// Add form placeholders here
'placeholders' => [
@@ -625,11 +639,11 @@ return [
'site_default' => 'Site Default',
'default_blue' => 'Default Blue',
'blue_dark' => 'Blue (Dark Mode)',
- 'green' => 'Green Dark',
+ 'green' => 'Green',
'green_dark' => 'Green (Dark Mode)',
- 'red' => 'Red Dark',
+ 'red' => 'Red',
'red_dark' => 'Red (Dark Mode)',
- 'orange' => 'Orange Dark',
+ 'orange' => 'Orange',
'orange_dark' => 'Orange (Dark Mode)',
'black' => 'Black',
'black_dark' => 'Black (Dark Mode)',
diff --git a/resources/lang/zu-ZA/mail.php b/resources/lang/zu-ZA/mail.php
index 056f834ed0..fbd352eed6 100644
--- a/resources/lang/zu-ZA/mail.php
+++ b/resources/lang/zu-ZA/mail.php
@@ -3,9 +3,9 @@
return [
'Accessory_Checkin_Notification' => 'Accessory checked in',
- 'Accessory_Checkout_Notification' => 'Accessory checked out',
- 'Asset_Checkin_Notification' => 'Asset checked in: [:tag]',
- 'Asset_Checkout_Notification' => 'Asset checked out: [:tag]',
+ 'Accessory_Checkout_Notification' => 'Accessory checked out|:count Accessories checked out',
+ 'Asset_Checkin_Notification' => 'Asset checked in: :tag',
+ 'Asset_Checkout_Notification' => 'Asset checked out: :tag',
'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation',
'Confirm_Asset_Checkin' => 'Asset checkin confirmation',
'Confirm_component_checkin' => 'Component checkin confirmation',
@@ -21,8 +21,8 @@ return [
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Report' => 'Expected asset checkin report',
- 'Expiring_Assets_Report' => 'Ukubika Okubanjelwe Amafa.',
- 'Expiring_Licenses_Report' => 'Umbiko Welayisense Okuphelelwa yisikhathi.',
+ 'Expiring_Assets_Report' => 'Ukubika Okubanjelwe Amafa',
+ 'Expiring_Licenses_Report' => 'Umbiko Welayisense Okuphelelwa yisikhathi',
'Item_Request_Canceled' => 'Into yokucela ikhanseliwe',
'Item_Requested' => 'Into ifunwe',
'License_Checkin_Notification' => 'License checked in',
@@ -31,7 +31,7 @@ return [
'Low_Inventory_Report' => 'Umbiko Wokungenisa Okuphansi',
'a_user_canceled' => 'Umsebenzisi ukhanse isicelo sezinto kuwebhusayithi',
'a_user_requested' => 'Umsebenzisi ucele into ku-website',
- 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name',
+ 'acceptance_asset_accepted_to_user' => 'You have accepted an item assigned to you by :site_name|You have accepted :qty items assigned to you by :site_name',
'acceptance_asset_accepted' => 'A user has accepted an item',
'acceptance_asset_declined' => 'A user has declined an item',
'send_pdf_copy' => 'Send a copy of this acceptance to my email address',
@@ -42,8 +42,9 @@ return [
'asset_name' => 'Igama lefa',
'asset_requested' => 'Ifa liceliwe',
'asset_tag' => 'Ithegi lefa',
- 'assets_warrantee_alert' => 'There is :count asset with a warranty expiring in the next :threshold days.|There are :count assets with warranties expiring in the next :threshold days.',
+ 'assets_warrantee_alert' => 'There is :count asset with an expiring warranty or that are reaching their end of life in the next :threshold days.|There are :count assets with expiring warranties or that are reaching their end of life in the next :threshold days.',
'assigned_to' => 'Kwabiwa Ku',
+ 'eol' => 'I-EOL',
'best_regards' => 'Ozithobayo,',
'canceled' => 'Ikhanseliwe',
'checkin_date' => 'Usuku lokuhlola',
@@ -58,6 +59,7 @@ return [
'days' => 'Izinsuku',
'expecting_checkin_date' => 'Ilanga le-Checkin elilindelekile',
'expires' => 'Iphelelwa yisikhathi',
+ 'terminates' => 'Terminates',
'following_accepted' => 'The following was accepted',
'following_declined' => 'The following was declined',
'hello' => 'Sawubona',
@@ -68,16 +70,16 @@ return [
'inventory_report' => 'Inventory Report',
'item' => 'Into',
'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.',
- 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
+ 'license_expiring_alert' => 'There is :count license expiring or terminating in the next :threshold days.|There are :count licenses expiring or terminating in the next :threshold days.',
'link_to_update_password' => 'Sicela uchofoze kusixhumanisi esilandelayo ukuze ubuyekeze: iphasiwedi yakho yewebhu:',
'login' => 'Ngena ngemvume',
'login_first_admin' => 'Ngena ngemvume ekufakweni kwakho okusha kwe-Snipe-IT usebenzisa iziqinisekiso ezingezansi:',
'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.',
'min_QTY' => 'I-Min QTY',
'name' => 'Igama',
- 'new_item_checked' => 'Into entsha ihloliwe ngaphansi kwegama lakho, imininingwane ingezansi.',
- 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.',
- 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.',
+ 'new_item_checked' => 'A new item has been checked out under your name, details are below.|:count new items have been checked out under your name, details are below.',
+ 'new_item_checked_with_acceptance' => 'A new item has been checked out under your name that requires acceptance, details are below.|:count new items have been checked out under your name that requires acceptance, details are below.',
+ 'new_item_checked_location' => 'A new item has been checked out to :location, details are below.|:count new items have been checked out to :location, details are below.',
'recent_item_checked' => 'An item was recently checked out under your name that requires acceptance, details are below.',
'notes' => 'Amanothi',
'password' => 'Iphasiwedi',
diff --git a/resources/macros/macros.php b/resources/macros/macros.php
index d356c52605..0c3628fe26 100644
--- a/resources/macros/macros.php
+++ b/resources/macros/macros.php
@@ -92,9 +92,9 @@ Form::macro('name_display_format', function ($name = 'name_display_format', $sel
'last_first' => trans('general.lastname_firstname_display'),
];
- $select = '