diff --git a/.all-contributorsrc b/.all-contributorsrc
index 1e602b9898..7ff6b6fe72 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -2549,6 +2549,15 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "TenOfTens",
+ "name": "TenOfTens",
+ "avatar_url": "https://avatars.githubusercontent.com/u/48162670?v=4",
+ "profile": "https://github.com/TenOfTens",
+ "contributions": [
+ "code"
+ ]
}
]
}
diff --git a/app/Console/Commands/LdapSync.php b/app/Console/Commands/LdapSync.php
index 0601c7b0c4..19694569f9 100755
--- a/app/Console/Commands/LdapSync.php
+++ b/app/Console/Commands/LdapSync.php
@@ -3,11 +3,11 @@
namespace App\Console\Commands;
use App\Models\Department;
-use App\Models\Ldap;
-use App\Models\Location;
-use App\Models\Setting;
-use App\Models\User;
use Illuminate\Console\Command;
+use App\Models\Setting;
+use App\Models\Ldap;
+use App\Models\User;
+use App\Models\Location;
use Log;
class LdapSync extends Command
@@ -189,6 +189,7 @@ class LdapSync extends Command
'name' => $item['department'],
]);
+
$user = User::where('username', $item['username'])->first();
if ($user) {
// Updating an existing user.
diff --git a/app/Http/Controllers/Api/AssetsController.php b/app/Http/Controllers/Api/AssetsController.php
index cc04207b88..aacff45918 100644
--- a/app/Http/Controllers/Api/AssetsController.php
+++ b/app/Http/Controllers/Api/AssetsController.php
@@ -119,7 +119,7 @@ class AssetsController extends Controller
'model.category', 'model.manufacturer', 'model.fieldset','supplier'); //it might be tempting to add 'assetlog' here, but don't. It blows up update-heavy users.
- if($filter_non_deprecable_assets) {
+ if ($filter_non_deprecable_assets) {
$non_deprecable_models = AssetModel::select('id')->whereNotNull('depreciation_id')->get();
$assets->InModelList($non_deprecable_models->toArray());
@@ -128,6 +128,16 @@ class AssetsController extends Controller
// These are used by the API to query against specific ID numbers.
// They are also used by the individual searches on detail pages like
// locations, etc.
+
+
+ // Search custom fields by column name
+ foreach ($all_custom_fields as $field) {
+ if ($request->filled($field->db_column_name())) {
+ $assets->where($field->db_column_name(), '=', $request->input($field->db_column_name()));
+ }
+ }
+
+
if ($request->filled('status_id')) {
$assets->where('assets.status_id', '=', $request->input('status_id'));
}
diff --git a/app/Http/Controllers/Assets/BulkAssetsController.php b/app/Http/Controllers/Assets/BulkAssetsController.php
index 0e519251ad..4dbaa78916 100644
--- a/app/Http/Controllers/Assets/BulkAssetsController.php
+++ b/app/Http/Controllers/Assets/BulkAssetsController.php
@@ -6,6 +6,7 @@ use App\Models\Actionlog;
use App\Helpers\Helper;
use App\Http\Controllers\CheckInOutRequest;
use App\Http\Controllers\Controller;
+use App\Models\Actionlog;
use App\Models\Asset;
use App\Models\Setting;
use Illuminate\Http\Request;
diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php
index e55dbe0709..14f9ba81c0 100755
--- a/app/Http/Controllers/ProfileController.php
+++ b/app/Http/Controllers/ProfileController.php
@@ -64,10 +64,12 @@ class ProfileController extends Controller
$user->location_id = $request->input('location_id');
}
+
if ($request->input('avatar_delete') == 1) {
$user->avatar = null;
}
+
if ($request->hasFile('avatar')) {
$path = 'avatars';
@@ -101,6 +103,7 @@ class ProfileController extends Controller
return redirect()->back()->withInput()->withErrors($user->getErrors());
}
+
/**
* Returns a page with the API token generation interface.
*
@@ -183,11 +186,12 @@ class ProfileController extends Controller
if (! $validator->fails()) {
$user->password = Hash::make($request->input('password'));
$user->save();
-
return redirect()->route('account.password.index')->with('success', 'Password updated!');
- }
+ }
return redirect()->back()->withInput()->withErrors($validator);
+
+
}
/**
diff --git a/app/Importer/ItemImporter.php b/app/Importer/ItemImporter.php
index 7b4fc36643..3188a46052 100644
--- a/app/Importer/ItemImporter.php
+++ b/app/Importer/ItemImporter.php
@@ -288,8 +288,7 @@ class ItemImporter extends Importer
return $category->id;
}
-
- $this->logError($category, 'Category "'.$asset_category.'"');
+ $this->logError($category, 'Category "'. $asset_category. '"');
return null;
}
@@ -380,7 +379,6 @@ class ItemImporter extends Importer
}
$this->logError($status, 'Status "'.$asset_statuslabel_name.'"');
-
return null;
}
diff --git a/app/Importer/UserImporter.php b/app/Importer/UserImporter.php
index cb3a3fdb5d..940c758f34 100644
--- a/app/Importer/UserImporter.php
+++ b/app/Importer/UserImporter.php
@@ -76,6 +76,7 @@ class UserImporter extends ItemImporter
}
+
// This needs to be applied after the update logic, otherwise we'll overwrite user passwords
// Issue #5408
$this->item['password'] = bcrypt($this->tempPassword);
@@ -145,7 +146,6 @@ class UserImporter extends ItemImporter
return null;
}
-
public function sendWelcome($send = true)
{
$this->send_welcome = $send;
diff --git a/app/Models/Asset.php b/app/Models/Asset.php
index 49f2ca1ff3..82c6d97120 100644
--- a/app/Models/Asset.php
+++ b/app/Models/Asset.php
@@ -262,12 +262,13 @@ class Asset extends Depreciable
&& ($this->assetstatus->deployable == '1'))
{
return true;
+
}
}
-
return false;
}
+
/**
* Checks the asset out to the target
*
@@ -301,6 +302,7 @@ class Asset extends Depreciable
$this->assignedTo()->associate($target);
+
if ($name != null) {
$this->name = $name;
}
@@ -502,9 +504,10 @@ class Asset extends Depreciable
}
//this makes no sense
return $this->defaultLoc;
- }
+
}
+ }
return $this->defaultLoc;
}
@@ -675,13 +678,15 @@ class Asset extends Depreciable
*/
public static function getExpiringWarrantee($days = 30)
{
+ $days = (is_null($days)) ? 30 : $days;
+
return self::where('archived', '=', '0')
->whereNotNull('warranty_months')
->whereNotNull('purchase_date')
->whereNull('deleted_at')
->whereRaw(\DB::raw('DATE_ADD(`purchase_date`,INTERVAL `warranty_months` MONTH) <= DATE(NOW() + INTERVAL '
- .$days
- .' DAY) AND DATE_ADD(`purchase_date`,INTERVAL `warranty_months` MONTH) > NOW()'))
+ . $days
+ . ' DAY) AND DATE_ADD(`purchase_date`, INTERVAL `warranty_months` MONTH) > NOW()'))
->orderBy('purchase_date', 'ASC')
->get();
}
@@ -1316,6 +1321,7 @@ class Asset extends Depreciable
{
return $query->where(function ($query) use ($filter) {
foreach ($filter as $key => $search_val) {
+
$fieldname = str_replace('custom_fields.', '', $key);
if ($fieldname == 'asset_tag') {
@@ -1453,6 +1459,7 @@ class Asset extends Depreciable
$query->where('assets.'.$fieldname, 'LIKE', '%' . $search_val . '%');
}
+
}
diff --git a/app/Models/License.php b/app/Models/License.php
index c25e8366b7..bcdcf3128e 100755
--- a/app/Models/License.php
+++ b/app/Models/License.php
@@ -415,6 +415,7 @@ class License extends Depreciable
->count();
}
+
/**
* Return the number of seats for this asset
*
@@ -595,6 +596,7 @@ class License extends Depreciable
return $this->belongsTo(\App\Models\Supplier::class, 'supplier_id');
}
+
/**
* Gets the next available free seat - used by
* the API to populate next_seat
@@ -638,6 +640,8 @@ class License extends Depreciable
*/
public static function getExpiringLicenses($days = 60)
{
+ $days = (is_null($days)) ? 60 : $days;
+
return self::whereNotNull('expiration_date')
->whereNull('deleted_at')
->whereRaw(DB::raw('DATE_SUB(`expiration_date`,INTERVAL '.$days.' DAY) <= DATE(NOW()) '))
diff --git a/resources/assets/js/components/importer/importer-file.vue b/resources/assets/js/components/importer/importer-file.vue
index 13425e884b..b363b51a93 100644
--- a/resources/assets/js/components/importer/importer-file.vue
+++ b/resources/assets/js/components/importer/importer-file.vue
@@ -184,6 +184,7 @@
{id: 'address', text: 'Address' },
{id: 'city', text: 'City' },
{id: 'state', text: 'State' },
+ {id: 'zip', text: 'ZIP' },
{id: 'country', text: 'Country' },
{id: 'zip', text: 'ZIP' },
diff --git a/resources/lang/ar/button.php b/resources/lang/ar/button.php
index ba0ffa4400..e9b51685cf 100644
--- a/resources/lang/ar/button.php
+++ b/resources/lang/ar/button.php
@@ -8,7 +8,7 @@ return [
'delete' => 'حذف',
'edit' => 'تعديل',
'restore' => 'إستعادة',
- 'remove' => 'Remove',
+ 'remove' => 'إزالة',
'request' => 'طلب',
'submit' => 'إرسال',
'upload' => 'رفع',
@@ -16,9 +16,9 @@ return [
'select_files' => 'إختيار ملف...',
'generate_labels' => '{1} انشاء تسميات [2,*] توليد تسميات',
'send_password_link' => 'إرسال رابط إعادة تعيين كلمة السر',
- 'go' => 'Go',
+ 'go' => 'انطلق',
'bulk_actions' => 'Bulk Actions',
'add_maintenance' => 'Add Maintenance',
'append' => 'Append',
- 'new' => 'New',
+ 'new' => 'جديد',
];
diff --git a/resources/lang/de/admin/companies/general.php b/resources/lang/de/admin/companies/general.php
index 279165b7c5..bedfdc13f4 100644
--- a/resources/lang/de/admin/companies/general.php
+++ b/resources/lang/de/admin/companies/general.php
@@ -2,6 +2,6 @@
return [
'select_company' => 'Firma auswählen',
- 'about_companies' => 'About Companies',
+ 'about_companies' => 'Über Unternehmen',
'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.',
];
diff --git a/resources/lang/de/admin/custom_fields/general.php b/resources/lang/de/admin/custom_fields/general.php
index feb20115e5..e373c4ba5c 100644
--- a/resources/lang/de/admin/custom_fields/general.php
+++ b/resources/lang/de/admin/custom_fields/general.php
@@ -2,11 +2,11 @@
return [
'custom_fields' => 'Benutzerdefinierte Felder',
- 'manage' => 'Manage',
+ 'manage' => 'Verwalten',
'field' => 'Feld',
'about_fieldsets_title' => 'Über Feldsätze',
'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...',
+ '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.',
'encrypted' => 'Verschlüsselt',
@@ -29,17 +29,17 @@ return [
'create_fieldset' => 'Neuer Feldsatz',
'create_fieldset_title' => 'Create a new fieldset',
'create_field' => 'Neues benutzerdefiniertes Feld',
- 'create_field_title' => 'Create a new custom field',
+ 'create_field_title' => 'Neues benutzerdefiniertes Feld erstellen',
'value_encrypted' => 'Der Wert dieses Feldes ist in der Datenbank verschlüsselt. Nur Benutzer mit Administratorrechten können den entschlüsselten Wert anzeigen',
'show_in_email' => 'Feld miteinbeziehen bei Herausgabe-Emails an die Benutzer? Verschlüsselte Felder können nicht miteinbezogen werden.',
- 'help_text' => 'Help Text',
+ 'help_text' => 'Hilfetext',
'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.',
- 'about_custom_fields_title' => 'About Custom Fields',
+ 'about_custom_fields_title' => 'Über benutzerdefinierte Felder',
'about_custom_fields_text' => 'Custom fields allow you to add arbitrary attributes to assets.',
'add_field_to_fieldset' => 'Add Field to Fieldset',
'make_optional' => 'Required - click to make optional',
'make_required' => 'Optional - click to make required',
- 'reorder' => 'Reorder',
+ 'reorder' => 'Sortieren',
'db_field' => 'DB Field',
'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column
but should be :expected .'
];
diff --git a/resources/lang/de/admin/groups/titles.php b/resources/lang/de/admin/groups/titles.php
index b504378302..5cc06e6b91 100644
--- a/resources/lang/de/admin/groups/titles.php
+++ b/resources/lang/de/admin/groups/titles.php
@@ -10,7 +10,7 @@ return [
'group_admin' => 'Gruppenadministrator',
'allow' => 'Erlauben',
'deny' => 'Nicht erlauben',
- 'permission' => 'Permission',
- 'grant' => 'Grant',
- 'no_permissions' => 'This group has no permissions.'
+ 'permission' => 'Berechtigung',
+ 'grant' => 'Erlauben',
+ 'no_permissions' => 'Diese Gruppe hat keine Berechtigungen.'
];
diff --git a/resources/lang/de/admin/hardware/form.php b/resources/lang/de/admin/hardware/form.php
index 5c5f335307..d9e6630417 100644
--- a/resources/lang/de/admin/hardware/form.php
+++ b/resources/lang/de/admin/hardware/form.php
@@ -40,10 +40,10 @@ return [
'warranty' => 'Garantie',
'warranty_expires' => 'Garantie Ablaufdatum',
'years' => 'Jahre',
- 'asset_location' => 'Update Asset Location',
- 'asset_location_update_default_current' => 'Update default location AND actual location',
- 'asset_location_update_default' => 'Update only default location',
- 'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.',
- 'asset_deployable' => 'That status is deployable. This asset can be checked out.',
- 'processing_spinner' => 'Processing...',
+ 'asset_location' => 'Standort des Assets aktualisieren',
+ 'asset_location_update_default_current' => 'Standardort und aktuellen Standort aktualisieren',
+ 'asset_location_update_default' => 'Nur den Standardort aktualisieren',
+ 'asset_not_deployable' => 'Dieses Asset ist nicht verfügbar und kann nicht herausgegeben werden.',
+ 'asset_deployable' => 'Dieses Asset ist verfügbar und kann herausgegeben werden.',
+ 'processing_spinner' => 'Wird verarbeitet...',
];
diff --git a/resources/lang/de/admin/hardware/general.php b/resources/lang/de/admin/hardware/general.php
index 9d377dfc1f..cdcefa9b9c 100644
--- a/resources/lang/de/admin/hardware/general.php
+++ b/resources/lang/de/admin/hardware/general.php
@@ -15,13 +15,13 @@ return [
'model_deleted' => 'Dieses Modell für Assets wurde gelöscht. Sie müssen das Modell wiederherstellen, bevor Sie das Asset wiederherstellen können.',
'requestable' => 'Anforderbar',
'requested' => 'Angefordert',
- 'not_requestable' => 'Not Requestable',
+ 'not_requestable' => 'Kann nicht angefordert werden',
'requestable_status_warning' => 'Do not change requestable status',
'restore' => 'Asset wiederherstellen',
'pending' => 'Ausstehend',
'undeployable' => 'Nicht einsetzbar',
'view' => 'Asset ansehen',
- 'csv_error' => 'You have an error in your CSV file:',
+ 'csv_error' => 'Es gibt einen Fehler in der CSV-Datei:',
'import_text' => '
Upload a CSV that contains asset history. The assets and users MUST already exist in the system, or they will be skipped. Matching assets for history import happens against the asset tag. We will try to find a matching user based on the user\'s name you provide, and the criteria you select below. If you do not select any criteria below, it will simply try to match on the username format you configured in the Admin > General Settings.
@@ -36,8 +36,8 @@ return [
'csv_import_match_first' => 'Try to match users by first name (jane) format',
'csv_import_match_email' => 'Try to match users by email as username',
'csv_import_match_username' => 'Try to match users by username',
- 'error_messages' => 'Error messages:',
- 'success_messages' => 'Success messages:',
- 'alert_details' => 'Please see below for details.',
- 'custom_export' => 'Custom Export'
+ 'error_messages' => 'Fehlermeldungen:',
+ 'success_messages' => 'Erfolgsmeldungen:',
+ 'alert_details' => 'Siehe unten für Details.',
+ 'custom_export' => 'Benutzerdefinierter Export'
];
diff --git a/resources/lang/de/admin/hardware/message.php b/resources/lang/de/admin/hardware/message.php
index ed49e72fb9..e6107d2c73 100644
--- a/resources/lang/de/admin/hardware/message.php
+++ b/resources/lang/de/admin/hardware/message.php
@@ -5,7 +5,7 @@ return [
'undeployable' => 'Achtung:Dieses Asset wurde kürzlich als nicht verteilbar markiert.
Falls sich dieser Status verändert hat, aktualisieren Sie bitte den Asset Status.',
'does_not_exist' => 'Asset existiert nicht.',
- 'does_not_exist_or_not_requestable' => 'That asset does not exist or is not requestable.',
+ 'does_not_exist_or_not_requestable' => 'Dieses Asset existiert nicht oder kann nicht angefordert werden.',
'assoc_users' => 'Dieses Asset ist im Moment an einen Benutzer herausgegeben und kann nicht entfernt werden. Bitte buchen sie das Asset wieder ein und versuchen Sie dann erneut es zu entfernen. ',
'create' => [
diff --git a/resources/lang/de/admin/hardware/table.php b/resources/lang/de/admin/hardware/table.php
index ed58c65d9a..b4617e35c3 100644
--- a/resources/lang/de/admin/hardware/table.php
+++ b/resources/lang/de/admin/hardware/table.php
@@ -22,9 +22,9 @@ return [
'image' => 'Geräte-Bild',
'days_without_acceptance' => 'Tage ohne Akzeptierung',
'monthly_depreciation' => 'Monatliche Abschreibung',
- 'assigned_to' => 'Assigned To',
+ 'assigned_to' => 'Zugewiesen an',
'requesting_user' => 'Requesting User',
'requested_date' => 'Requested Date',
- 'changed' => 'Changed',
- 'icon' => 'Icon',
+ 'changed' => 'Geändert',
+ 'icon' => 'Symbol',
];
diff --git a/resources/lang/de/admin/kits/general.php b/resources/lang/de/admin/kits/general.php
index a4cd60641a..5bb273df88 100644
--- a/resources/lang/de/admin/kits/general.php
+++ b/resources/lang/de/admin/kits/general.php
@@ -36,15 +36,15 @@ return [
'accessory_updated' => 'Accessory was successfully updated',
'accessory_detached' => 'Accessory was successfully detached',
'accessory_error' => 'Accessory already attached to kit',
- 'accessory_deleted' => 'Delete was successful',
- 'accessory_none' => 'Accessory does not exist',
- 'checkout_success' => 'Checkout was successful',
- 'checkout_error' => 'Checkout error',
- 'kit_none' => 'Kit does not exist',
- 'kit_created' => 'Kit was successfully created',
- 'kit_updated' => 'Kit was successfully updated',
- 'kit_not_found' => 'Kit not found',
- 'kit_deleted' => 'Kit was successfully deleted',
- 'kit_model_updated' => 'Model was successfully updated',
+ 'accessory_deleted' => 'Löschen war erfolgreich',
+ 'accessory_none' => 'Zubehör existiert nicht',
+ 'checkout_success' => 'Herausgabe war erfolgreich',
+ 'checkout_error' => 'Herausgabe Fehler',
+ 'kit_none' => 'Kit existiert nicht',
+ 'kit_created' => 'Kit wurde erfolgreich erstellt',
+ 'kit_updated' => 'Kit wurde erfolgreich aktualisiert',
+ 'kit_not_found' => 'Kit nicht gefunden',
+ 'kit_deleted' => 'Kit wurde erfolgreich gelöscht',
+ 'kit_model_updated' => 'Modell wurde erfolgreich aktualisiert',
'kit_model_detached' => 'Model was successfully detached',
];
diff --git a/resources/lang/de/admin/locations/table.php b/resources/lang/de/admin/locations/table.php
index e7a3bbddb5..0073b7872d 100644
--- a/resources/lang/de/admin/locations/table.php
+++ b/resources/lang/de/admin/locations/table.php
@@ -20,21 +20,21 @@ return [
'parent' => 'Übergeordneter Standort',
'currency' => 'Landeswährung',
'ldap_ou' => 'LDAP OU Suche',
- 'user_name' => 'User Name',
- 'department' => 'Department',
- 'location' => 'Location',
- 'asset_tag' => 'Assets Tag',
+ 'user_name' => 'Benutzername',
+ 'department' => 'Abteilung',
+ 'location' => 'Standort',
+ 'asset_tag' => 'Asset-Tag',
'asset_name' => 'Name',
- 'asset_category' => 'Category',
- 'asset_manufacturer' => 'Manufacturer',
- 'asset_model' => 'Model',
- 'asset_serial' => 'Serial',
- 'asset_location' => 'Location',
- 'asset_checked_out' => 'Checked Out',
+ 'asset_category' => 'Kategorie',
+ 'asset_manufacturer' => 'Hersteller',
+ 'asset_model' => 'Modell',
+ 'asset_serial' => 'Seriennummer',
+ 'asset_location' => 'Standort',
+ 'asset_checked_out' => 'Herausgegeben',
'asset_expected_checkin' => 'Expected Checkin',
- 'date' => 'Date:',
+ 'date' => 'Datum:',
'signed_by_asset_auditor' => 'Signed By (Asset Auditor):',
'signed_by_finance_auditor' => 'Signed By (Finance Auditor):',
'signed_by_location_manager' => 'Signed By (Location Manager):',
- 'signed_by' => 'Signed Off By:',
+ 'signed_by' => 'Unterschrieben von:',
];
diff --git a/resources/lang/de/admin/reports/general.php b/resources/lang/de/admin/reports/general.php
index 23d11973ab..b22e00b752 100644
--- a/resources/lang/de/admin/reports/general.php
+++ b/resources/lang/de/admin/reports/general.php
@@ -2,9 +2,9 @@
return [
'info' => 'Wähle eine Option für deinen Asset Bericht.',
- 'deleted_user' => 'Deleted user',
- 'send_reminder' => 'Send reminder',
- 'reminder_sent' => 'Reminder sent',
+ 'deleted_user' => 'Gelöschter Benutzer',
+ 'send_reminder' => 'Erinnerung senden',
+ 'reminder_sent' => 'Erinnerung gesendet',
'acceptance_deleted' => 'Acceptance request deleted',
'acceptance_request' => 'Acceptance request'
];
\ No newline at end of file
diff --git a/resources/lang/de/admin/settings/general.php b/resources/lang/de/admin/settings/general.php
index 7e4e54ce16..867bd86f00 100644
--- a/resources/lang/de/admin/settings/general.php
+++ b/resources/lang/de/admin/settings/general.php
@@ -24,12 +24,12 @@ return [
'audit_interval_help' => 'Wenn Sie Ihre Assets regelmäßig physisch überprüfen müssen, geben Sie das Intervall in Monaten ein.',
'audit_warning_days' => 'Audit-Warnschwelle',
'audit_warning_days_help' => 'Wie viele Tage im Voraus sollten wir Sie warnen, wenn Vermögenswerte zur Prüfung fällig werden?',
- 'auto_increment_assets' => 'Generate auto-incrementing asset tags',
+ 'auto_increment_assets' => 'Erzeugen von fortlaufenden Asset Tags',
'auto_increment_prefix' => 'Präfix (optional)',
- 'auto_incrementing_help' => 'Enable auto-incrementing asset tags first to set this',
+ 'auto_incrementing_help' => 'Aktiviere zuerst fortlaufende Asset Tags um dies zu setzen',
'backups' => 'Sicherungen',
'backups_restoring' => 'Restoring from Backup',
- 'backups_upload' => 'Upload Backup',
+ 'backups_upload' => 'Backup hochladen',
'backups_path' => 'Backups on the server are stored in :path
',
'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.
Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ',
'backups_logged_out' => 'You will be logged out once your restore is complete.',
@@ -81,7 +81,7 @@ return [
'ldap_integration' => 'LDAP Integration',
'ldap_settings' => 'LDAP Einstellungen',
'ldap_client_tls_cert_help' => 'Client-seitige TLS-Zertifikat und Schlüssel für LDAP Verbindungen sind in der Regel nur in Google Workspace Konfigurationen mit "Secure LDAP" nützlich. Beide werden benötigt.',
- 'ldap_client_tls_key' => 'LDAP Client-Side TLS key',
+ 'ldap_client_tls_key' => 'LDAP Client-seitiger TLS-Schlüssel',
'ldap_login_test_help' => 'Geben Sie einen gültigen LDAP-Benutzernamen und ein Passwort von der oben angegebenen Basis-DN ein, um zu testen, ob Ihre LDAP-Anmeldung korrekt konfiguriert ist. SIE MÜSSEN IHRE AKTUALISIERTEN LDAP-EINSTELLUNGEN ZUERST SPEICHERN.',
'ldap_login_sync_help' => 'Dies testet nur, ob LDAP korrekt synchronisiert werden kann. Wenn Ihre LDAP-Authentifizierungsabfrage nicht korrekt ist, können sich Benutzer möglicherweise nicht anmelden. SIE MÜSSEN IHRE AKTUALISIERTEN LDAP-EINSTELLUNGEN ZUERST SPEICHERN.',
'ldap_server' => 'LDAP Server',
@@ -110,14 +110,14 @@ return [
'ldap_activated_flag_help' => 'Diese Einstellung steuert, ob sich ein Benutzer bei Snipe-IT anmelden kann und hat keinen Einfluss auf die Möglichkeit, Elemente auszugeben oder zurück zu nehmen.',
'ldap_emp_num' => 'LDAP Mitarbeiternummer',
'ldap_email' => 'LDAP E-Mail',
- 'ldap_test' => 'Test LDAP',
- 'ldap_test_sync' => 'Test LDAP Synchronization',
+ 'ldap_test' => 'LDAP testen',
+ 'ldap_test_sync' => 'LDAP-Synchronisierung testen',
'license' => 'Softwarelizenz',
'load_remote_text' => 'Remote Skripte',
'load_remote_help_text' => 'Diese Installation von Snipe-IT kann Skripte von außerhalb laden.',
- 'login' => 'Login Attempts',
- 'login_attempt' => 'Login Attempt',
- 'login_ip' => 'IP Address',
+ 'login' => 'Anmeldeversuche',
+ 'login_attempt' => 'Anmeldeversuch',
+ 'login_ip' => 'IP-Adresse',
'login_success' => 'Success?',
'login_user_agent' => 'User Agent',
'login_help' => 'List of attempted logins',
@@ -144,7 +144,7 @@ return [
'php_info' => 'PHP Info',
'php_overview' => 'PHP',
'php_overview_keywords' => 'phpinfo, system, info',
- 'php_overview_help' => 'PHP System info',
+ 'php_overview_help' => 'PHP-Systeminfo',
'php_gd_info' => 'Um QR-Codes anzeigen zu können muss php-gd installiert sein, siehe Installationshinweise.',
'php_gd_warning' => 'PHP Image Processing and GD Plugin ist NICHT installiert.',
'pwd_secure_complexity' => 'Passwortkomplexität',
diff --git a/resources/lang/de/admin/settings/message.php b/resources/lang/de/admin/settings/message.php
index 53ba0a8234..f7cd133c59 100644
--- a/resources/lang/de/admin/settings/message.php
+++ b/resources/lang/de/admin/settings/message.php
@@ -37,7 +37,7 @@ return [
'sending' => 'Sending Slack test message...',
'success_pt1' => 'Success! Check the ',
'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.',
- '500' => '500 Server Error.',
+ '500' => '500 Server Fehler.',
'error' => 'Something went wrong.',
]
];
diff --git a/resources/lang/de/admin/users/general.php b/resources/lang/de/admin/users/general.php
index 85c1d68fab..09f0aec5aa 100644
--- a/resources/lang/de/admin/users/general.php
+++ b/resources/lang/de/admin/users/general.php
@@ -24,13 +24,13 @@ return [
'two_factor_admin_optin_help' => 'Ihre aktuellen Administrator-Einstellungen erlauben die selektive Durchführung der zwei-Faktor-Authentifizierung. ',
'two_factor_enrolled' => '2FA Gerät eingeschrieben ',
'two_factor_active' => '2FA aktiv ',
- 'user_deactivated' => 'User is de-activated',
+ 'user_deactivated' => 'Benutzer ist deaktiviert',
'activation_status_warning' => 'Do not change activation status',
'group_memberships_helpblock' => 'Only superadmins may edit group memberships.',
'superadmin_permission_warning' => 'Only superadmins may grant a user superadmin access.',
'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.',
- 'remove_group_memberships' => 'Remove Group Memberships',
- 'warning_deletion' => 'WARNING:',
+ 'remove_group_memberships' => 'Gruppenmitgliedschaften entfernen',
+ 'warning_deletion' => 'WARNUNG:',
'warning_deletion_information' => 'You are about to delete the :count user(s) listed below. Super admin names are highlighted in red.',
'update_user_asssets_status' => 'Update all assets for these users to this status',
'checkin_user_properties' => 'Check in all properties associated with these users',
diff --git a/resources/lang/de/general.php b/resources/lang/de/general.php
index 5e018b5d68..779d4db954 100644
--- a/resources/lang/de/general.php
+++ b/resources/lang/de/general.php
@@ -319,32 +319,32 @@
'invalid_category' => 'Ungültige Kategorie',
'dashboard_info' => 'Dies ist Ihr Dashboard. Es gibt viele ähnlich, aber dieses ist Ihnen.',
'60_percent_warning' => '60% abgeschlossen (Warnung)',
- 'dashboard_empty' => 'Es sieht so aus, als hättest du noch nichts hinzugefügt, so dass wir nichts Großartiges zum Anzeigen haben. Beginne jetzt mit dem Hinzufügen einiger Assets, Zubehör, Verbrauchsmaterialien oder Lizenzen!',
- 'new_asset' => 'New Asset',
- 'new_license' => 'New License',
- 'new_accessory' => 'New Accessory',
- 'new_consumable' => 'New Consumable',
- 'collapse' => 'Collapse',
- 'assigned' => 'Assigned',
- 'asset_count' => 'Asset Count',
- 'accessories_count' => 'Accessories Count',
- 'consumables_count' => 'Consumables Count',
- 'components_count' => 'Components Count',
- 'licenses_count' => 'Licenses Count',
- 'notification_error' => 'Error:',
- 'notification_error_hint' => 'Please check the form below for errors',
- 'notification_success' => 'Success:',
- 'notification_warning' => 'Warning:',
+ 'dashboard_empty' => 'Es sieht so aus, als hättest du noch nichts hinzugefügt, so dass wir nichts Großartiges zum Anzeigen haben. Beginne jetzt mit dem Hinzufügen einiger Assets, Zubehörs, Verbrauchsmaterialien oder Lizenzen!',
+ 'new_asset' => 'Neues Asset',
+ 'new_license' => 'Neue Lizenz',
+ 'new_accessory' => 'Neues Zubehör',
+ 'new_consumable' => 'Neues Verbrauchsmaterial',
+ 'collapse' => 'Zusammenklappen',
+ 'assigned' => 'Zugewiesen',
+ 'asset_count' => 'Anzahl Assets',
+ 'accessories_count' => 'Anzahl Zubehör',
+ 'consumables_count' => 'Anzahl Verbrauchsmaterialien',
+ 'components_count' => 'Anzahl Komponenten',
+ 'licenses_count' => 'Anzahl Lizenzen',
+ 'notification_error' => 'Fehler:',
+ 'notification_error_hint' => 'Bitte überprüfen Sie das unten stehende Formular auf Fehler',
+ 'notification_success' => 'Erfolg:',
+ 'notification_warning' => 'Warnung:',
'notification_info' => 'Info:',
- 'asset_information' => 'Asset Information',
- 'model_name' => 'Model Name:',
- 'asset_name' => 'Asset Name:',
+ 'asset_information' => 'Asset-Informationen',
+ 'model_name' => 'Modelname:',
+ 'asset_name' => 'Assetname:',
'consumable_information' => 'Consumable Information:',
'consumable_name' => 'Consumable Name:',
'accessory_information' => 'Accessory Information:',
'accessory_name' => 'Accessory Name:',
'clone_item' => 'Clone Item',
- 'checkout_tooltip' => 'Check this item out',
+ 'checkout_tooltip' => 'Diesen Gegenstand zuweisen',
'checkin_tooltip' => 'Diesen Artikel zurücknehmen',
'checkout_user_tooltip' => 'Diesen Artikel an einen Benutzer herausgeben',
];
diff --git a/resources/lang/de/mail.php b/resources/lang/de/mail.php
index e5d338a7f6..4c91db8a59 100644
--- a/resources/lang/de/mail.php
+++ b/resources/lang/de/mail.php
@@ -59,7 +59,7 @@ return [
'test_mail_text' => 'Dies ist ein Test von Snipe-IT-Asset-Management-System. Wenn Sie das erhalten haben, funktioniert das Senden von Mails :)',
'the_following_item' => 'Der folgende Gegenstand wurde eingecheckt: ',
'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.',
- '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' => 'Die Garantie von :count Asset wird in :threshold Tagen auslaufen.|Die Garantie von :count Assets wird in :threshold Tagen auslaufen.',
'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.',
'to_reset' => 'Zum Zurücksetzen Ihres :web Passwortes, füllen Sie bitte dieses Formular aus:',
'type' => 'Typ',
diff --git a/resources/lang/en/admin/asset_maintenances/message.php b/resources/lang/en/admin/asset_maintenances/message.php
index b202533aaa..b44f618207 100644
--- a/resources/lang/en/admin/asset_maintenances/message.php
+++ b/resources/lang/en/admin/asset_maintenances/message.php
@@ -1,6 +1,6 @@
'Asset Maintenance you were looking for was not found!',
'delete' => [
'confirm' => 'Are you sure you wish to delete this asset maintenance?',
@@ -18,4 +18,4 @@
'asset_maintenance_incomplete' => 'Not Completed Yet',
'warranty' => 'Warranty',
'not_warranty' => 'Not Warranty',
- );
+ ];
diff --git a/resources/lang/en/admin/asset_maintenances/table.php b/resources/lang/en/admin/asset_maintenances/table.php
index 95ed6c832d..3ba895038d 100644
--- a/resources/lang/en/admin/asset_maintenances/table.php
+++ b/resources/lang/en/admin/asset_maintenances/table.php
@@ -1,8 +1,8 @@
'Asset Maintenance',
'asset_name' => 'Asset Name',
'is_warranty' => 'Warranty',
'dl_csv' => 'Download CSV',
- );
+ ];
diff --git a/resources/lang/en/admin/companies/general.php b/resources/lang/en/admin/companies/general.php
index ad56b85db6..37781012ba 100644
--- a/resources/lang/en/admin/companies/general.php
+++ b/resources/lang/en/admin/companies/general.php
@@ -1,7 +1,7 @@
'Select Company',
'about_companies' => 'About Companies',
'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.',
-);
+];
diff --git a/resources/lang/en/admin/companies/message.php b/resources/lang/en/admin/companies/message.php
index cea398245c..b44bdd4b85 100644
--- a/resources/lang/en/admin/companies/message.php
+++ b/resources/lang/en/admin/companies/message.php
@@ -1,6 +1,6 @@
'Company does not exist.',
'assoc_users' => 'This company is currently associated with at least one model and cannot be deleted. Please update your models to no longer reference this company and try again. ',
'create' => [
@@ -16,4 +16,4 @@ return array(
'error' => 'There was an issue deleting the company. Please try again.',
'success' => 'The Company was deleted successfully.',
],
-);
+];
diff --git a/resources/lang/en/admin/custom_fields/general.php b/resources/lang/en/admin/custom_fields/general.php
index 1eca1cc1c7..8483c67c69 100644
--- a/resources/lang/en/admin/custom_fields/general.php
+++ b/resources/lang/en/admin/custom_fields/general.php
@@ -1,6 +1,6 @@
'Custom Fields',
'manage' => 'Manage',
'field' => 'Field',
@@ -42,4 +42,4 @@ return array(
'reorder' => 'Reorder',
'db_field' => 'DB Field',
'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column
but should be :expected .'
-);
+];
diff --git a/resources/lang/en/admin/depreciations/general.php b/resources/lang/en/admin/depreciations/general.php
index f4908b7c9a..1a5666f9dc 100644
--- a/resources/lang/en/admin/depreciations/general.php
+++ b/resources/lang/en/admin/depreciations/general.php
@@ -1,6 +1,6 @@
'About Asset Depreciations',
'about_depreciations' => 'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
'asset_depreciations' => 'Asset Depreciations',
@@ -13,4 +13,4 @@ return array(
'no_depreciations_warning' => 'Warning:
You do not currently have any depreciations set up.
Please set up at least one depreciation to view the depreciation report.',
-);
+];
diff --git a/resources/lang/en/admin/depreciations/table.php b/resources/lang/en/admin/depreciations/table.php
index 36b3fb9f2c..256b10b92a 100644
--- a/resources/lang/en/admin/depreciations/table.php
+++ b/resources/lang/en/admin/depreciations/table.php
@@ -1,6 +1,6 @@
'ID',
'months' => 'Months',
@@ -8,4 +8,4 @@ return array(
'title' => 'Name ',
'depreciation_min' => 'Floor Value',
-);
+];
diff --git a/resources/lang/en/admin/groups/titles.php b/resources/lang/en/admin/groups/titles.php
index 4077cea2e2..d875f190d7 100644
--- a/resources/lang/en/admin/groups/titles.php
+++ b/resources/lang/en/admin/groups/titles.php
@@ -1,6 +1,6 @@
'About Groups',
'about_groups' => 'Groups are used to generalize user permissions.',
'group_management' => 'Group Management',
@@ -13,4 +13,4 @@ return array(
'permission' => 'Permission',
'grant' => 'Grant',
'no_permissions' => 'This group has no permissions.'
-);
+];
diff --git a/resources/lang/en/admin/hardware/form.php b/resources/lang/en/admin/hardware/form.php
index af7372d4f7..0c1a3167be 100644
--- a/resources/lang/en/admin/hardware/form.php
+++ b/resources/lang/en/admin/hardware/form.php
@@ -1,6 +1,6 @@
'Confirm Bulk Delete Assets',
'bulk_delete_help' => 'Review the assets for bulk deletion below. Once deleted, these assets can be restored, but they will no longer be associated with any users they are currently assigned to.',
'bulk_delete_warn' => 'You are about to delete :asset_count assets.',
@@ -46,4 +46,4 @@ return array(
'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.',
'asset_deployable' => 'That status is deployable. This asset can be checked out.',
'processing_spinner' => 'Processing...',
-);
+];
diff --git a/resources/lang/en/admin/hardware/general.php b/resources/lang/en/admin/hardware/general.php
index e7fcfdb044..1ac49efef1 100644
--- a/resources/lang/en/admin/hardware/general.php
+++ b/resources/lang/en/admin/hardware/general.php
@@ -1,6 +1,6 @@
'About Assets',
'about_assets_text' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.',
'archived' => 'Archived',
@@ -40,4 +40,4 @@ return array(
'success_messages' => 'Success messages:',
'alert_details' => 'Please see below for details.',
'custom_export' => 'Custom Export'
-);
+];
diff --git a/resources/lang/en/admin/hardware/message.php b/resources/lang/en/admin/hardware/message.php
index 2bf1e8b835..8c8e323a73 100644
--- a/resources/lang/en/admin/hardware/message.php
+++ b/resources/lang/en/admin/hardware/message.php
@@ -1,6 +1,6 @@
'Warning: This asset has been marked as currently undeployable.
If this status has changed, please update the asset status.',
@@ -80,4 +80,4 @@ return array(
'canceled' => 'Checkout request successfully canceled',
],
-);
+];
diff --git a/resources/lang/en/admin/hardware/table.php b/resources/lang/en/admin/hardware/table.php
index eda08efc02..6166ba8045 100644
--- a/resources/lang/en/admin/hardware/table.php
+++ b/resources/lang/en/admin/hardware/table.php
@@ -1,6 +1,6 @@
'Asset Tag',
'asset_model' => 'Model',
@@ -27,4 +27,4 @@ return array(
'requested_date' => 'Requested Date',
'changed' => 'Changed',
'icon' => 'Icon',
-);
+];
diff --git a/resources/lang/en/admin/kits/general.php b/resources/lang/en/admin/kits/general.php
index be9af1721e..f724ecbf07 100644
--- a/resources/lang/en/admin/kits/general.php
+++ b/resources/lang/en/admin/kits/general.php
@@ -1,6 +1,6 @@
'About Predefined Kits',
'about_kits_text' => 'Predefined Kits let you quickly check out a collection of items (assets, licenses, etc) to a user. This can be helpful when your onboarding process is consistent across many users and all users receive the same items.',
'checkout' => 'Checkout Kit ',
@@ -47,4 +47,4 @@ return array(
'kit_deleted' => 'Kit was successfully deleted',
'kit_model_updated' => 'Model was successfully updated',
'kit_model_detached' => 'Model was successfully detached',
-);
+];
diff --git a/resources/lang/en/admin/locations/table.php b/resources/lang/en/admin/locations/table.php
index 077be4154c..29edf0f565 100644
--- a/resources/lang/en/admin/locations/table.php
+++ b/resources/lang/en/admin/locations/table.php
@@ -1,6 +1,6 @@
'About Locations',
'about_locations' => 'Locations are used to track location information for users, assets, and other items',
'assets_rtd' => 'Assets', // This has NEVER meant Assets Retired. I don't know how it keeps getting reverted.
@@ -37,4 +37,4 @@ return array(
'signed_by_finance_auditor' => 'Signed By (Finance Auditor):',
'signed_by_location_manager' => 'Signed By (Location Manager):',
'signed_by' => 'Signed Off By:',
-);
+];
diff --git a/resources/lang/en/admin/reports/general.php b/resources/lang/en/admin/reports/general.php
index 1aeb2509e6..344d5c8743 100644
--- a/resources/lang/en/admin/reports/general.php
+++ b/resources/lang/en/admin/reports/general.php
@@ -1,10 +1,10 @@
'Select the options you want for your asset report.',
'deleted_user' => 'Deleted user',
'send_reminder' => 'Send reminder',
'reminder_sent' => 'Reminder sent',
'acceptance_deleted' => 'Acceptance request deleted',
'acceptance_request' => 'Acceptance request'
-);
\ No newline at end of file
+];
\ No newline at end of file
diff --git a/resources/lang/en/admin/settings/general.php b/resources/lang/en/admin/settings/general.php
index 439c05a229..d5044c3811 100644
--- a/resources/lang/en/admin/settings/general.php
+++ b/resources/lang/en/admin/settings/general.php
@@ -1,6 +1,6 @@
'Active Directory',
'ad_domain' => 'Active Directory domain',
'ad_domain_help' => 'This is sometimes the same as your email domain, but not always.',
@@ -17,7 +17,7 @@ return array(
'alerts_enabled' => 'Email Alerts Enabled',
'alert_interval' => 'Expiring Alerts Threshold (in days)',
'alert_inv_threshold' => 'Inventory Alert Threshold',
- 'allow_user_skin' => 'Allow user skin',
+ 'allow_user_skin' => 'Allow User Skin',
'allow_user_skin_help_text' => 'Checking this box will allow a user to override the UI skin with a different one.',
'asset_ids' => 'Asset IDs',
'audit_interval' => 'Audit Interval',
@@ -174,7 +174,7 @@ return array(
'saml_idp_metadata_help' => 'You can specify the IdP metadata using a URL or XML file.',
'saml_attr_mapping_username' => 'Attribute Mapping - Username',
'saml_attr_mapping_username_help' => 'NameID will be used if attribute mapping is unspecified or invalid.',
- 'saml_forcelogin_label' => 'SAML Default Login',
+ 'saml_forcelogin_label' => 'SAML Force Login',
'saml_forcelogin' => 'Make SAML the primary login',
'saml_forcelogin_help' => 'You can use \'/login?nosaml\' to get to the normal login page.',
'saml_slo_label' => 'SAML Single Log Out',
@@ -318,4 +318,4 @@ return array(
'setup_migration_create_user' => 'Next: Create User',
'ldap_settings_link' => 'LDAP Settings Page',
'slack_test' => 'Test Integration',
-);
+];
diff --git a/resources/lang/en/admin/settings/message.php b/resources/lang/en/admin/settings/message.php
index 30f20d8db0..174a15fbd9 100644
--- a/resources/lang/en/admin/settings/message.php
+++ b/resources/lang/en/admin/settings/message.php
@@ -1,6 +1,6 @@
[
'error' => 'An error has occurred while updating. ',
@@ -40,4 +40,4 @@ return array(
'500' => '500 Server Error.',
'error' => 'Something went wrong.',
]
-);
+];
diff --git a/resources/lang/en/admin/statuslabels/message.php b/resources/lang/en/admin/statuslabels/message.php
index 8188b4c610..fe9adbf928 100644
--- a/resources/lang/en/admin/statuslabels/message.php
+++ b/resources/lang/en/admin/statuslabels/message.php
@@ -1,6 +1,6 @@
'Status Label does not exist.',
'assoc_assets' => 'This Status Label is currently associated with at least one Asset and cannot be deleted. Please update your assets to no longer reference this status and try again. ',
@@ -28,4 +28,4 @@ return array(
'pending' => 'These assets can not yet be assigned to anyone, often used for items that are out for repair, but are expected to return to circulation.',
],
-);
+];
diff --git a/resources/lang/en/admin/users/general.php b/resources/lang/en/admin/users/general.php
index 72975d9117..852890a9cf 100644
--- a/resources/lang/en/admin/users/general.php
+++ b/resources/lang/en/admin/users/general.php
@@ -1,6 +1,6 @@
'This user can login',
'activated_disabled_help_text' => 'You cannot edit activation status for your own account.',
'assets_user' => 'Assets assigned to :name',
@@ -22,8 +22,8 @@ return array(
'view_user' => 'View User :name',
'usercsv' => 'CSV file',
'two_factor_admin_optin_help' => 'Your current admin settings allow selective enforcement of two-factor authentication. ',
- 'two_factor_enrolled' => '2FA Device Enrolled',
- 'two_factor_active' => '2FA Active',
+ 'two_factor_enrolled' => '2FA Device Enrolled ',
+ 'two_factor_active' => '2FA Active ',
'user_deactivated' => 'User is de-activated',
'activation_status_warning' => 'Do not change activation status',
'group_memberships_helpblock' => 'Only superadmins may edit group memberships.',
@@ -34,4 +34,4 @@ return array(
'warning_deletion_information' => 'You are about to delete the :count user(s) listed below. Super admin names are highlighted in red.',
'update_user_asssets_status' => 'Update all assets for these users to this status',
'checkin_user_properties' => 'Check in all properties associated with these users',
-);
+];
diff --git a/resources/lang/en/button.php b/resources/lang/en/button.php
index 7ce991f19c..1e44af7d1a 100644
--- a/resources/lang/en/button.php
+++ b/resources/lang/en/button.php
@@ -1,6 +1,6 @@
'Actions',
'add' => 'Add New',
'cancel' => 'Cancel',
@@ -21,4 +21,4 @@ return array(
'add_maintenance' => 'Add Maintenance',
'append' => 'Append',
'new' => 'New',
-);
+];
diff --git a/resources/lang/en/general.php b/resources/lang/en/general.php
index 33c3f7bdab..2e358c77f9 100644
--- a/resources/lang/en/general.php
+++ b/resources/lang/en/general.php
@@ -1,6 +1,6 @@
'Accessories',
'activated' => 'Activated',
'accessory' => 'Accessory',
@@ -347,4 +347,4 @@
'checkout_tooltip' => 'Check this item out',
'checkin_tooltip' => 'Check this item in',
'checkout_user_tooltip' => 'Check this item out to a user',
-);
+];
diff --git a/resources/lang/en/help.php b/resources/lang/en/help.php
index c9e69ba426..ac0df59422 100644
--- a/resources/lang/en/help.php
+++ b/resources/lang/en/help.php
@@ -1,6 +1,6 @@
'You can set up asset depreciations to depreciate assets based on straight-line depreciation.',
-);
+];
diff --git a/resources/lang/en/mail.php b/resources/lang/en/mail.php
index 4d5401595d..db5e157135 100644
--- a/resources/lang/en/mail.php
+++ b/resources/lang/en/mail.php
@@ -1,6 +1,6 @@
'A user has canceled an item request on the website',
'a_user_requested' => 'A user has requested an item on the website',
'accessory_name' => 'Accessory Name:',
@@ -77,4 +77,4 @@ return array(
'Expected_Checkin_Notification' => 'Reminder: :name checkin deadline approaching',
'Expected_Checkin_Date' => 'An asset checked out to you is due to be checked back in on :date',
'your_assets' => 'View Your Assets',
-);
+];
diff --git a/resources/lang/en/passwords.php b/resources/lang/en/passwords.php
index b4bd60db34..6205ef774d 100644
--- a/resources/lang/en/passwords.php
+++ b/resources/lang/en/passwords.php
@@ -1,6 +1,6 @@
'Your password link has been sent!',
'user' => 'No matching active user found with that email.',
-);
+];
diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php
index 61adbff23f..72b465f211 100644
--- a/resources/lang/en/validation.php
+++ b/resources/lang/en/validation.php
@@ -1,6 +1,6 @@
[],
-);
+];
diff --git a/resources/lang/hu/admin/hardware/general.php b/resources/lang/hu/admin/hardware/general.php
index 5e13f85529..d90bd2adba 100644
--- a/resources/lang/hu/admin/hardware/general.php
+++ b/resources/lang/hu/admin/hardware/general.php
@@ -21,7 +21,7 @@ return [
'pending' => 'Függőben',
'undeployable' => 'Nem telepíthető',
'view' => 'Eszköz megtekintése',
- 'csv_error' => 'You have an error in your CSV file:',
+ 'csv_error' => 'A CSV állomány hibás:',
'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. diff --git a/resources/lang/hu/admin/hardware/table.php b/resources/lang/hu/admin/hardware/table.php index dcd8078179..73c7ed945a 100644 --- a/resources/lang/hu/admin/hardware/table.php +++ b/resources/lang/hu/admin/hardware/table.php @@ -4,11 +4,11 @@ return [ 'asset_tag' => 'Eszköz cimke', 'asset_model' => 'Modell', - 'book_value' => 'Current Value', + 'book_value' => 'Jelenlegi érték', 'change' => 'Be/ki', 'checkout_date' => 'Kiadási dátum', 'checkoutto' => 'Kiadva', - 'current_value' => 'Current Value', + 'current_value' => 'Jelenlegi érték', 'diff' => 'Eltérés', 'dl_csv' => 'Cvs letöltése', 'eol' => 'Lejárat', @@ -22,7 +22,7 @@ return [ 'image' => 'Készülék kép', 'days_without_acceptance' => 'Nem elfogadás óta eltelt napok száma', 'monthly_depreciation' => 'Havi értékcsökkenés', - 'assigned_to' => 'Assigned To', + 'assigned_to' => 'Felelős', 'requesting_user' => 'Requesting User', 'requested_date' => 'Requested Date', 'changed' => 'Changed', diff --git a/resources/lang/hu/admin/locations/table.php b/resources/lang/hu/admin/locations/table.php index 31798981f2..f1a72bc845 100644 --- a/resources/lang/hu/admin/locations/table.php +++ b/resources/lang/hu/admin/locations/table.php @@ -20,19 +20,19 @@ return [ 'parent' => 'Szülő', 'currency' => 'Helyi valuta', 'ldap_ou' => 'LDAP keresés OU', - 'user_name' => 'User Name', - 'department' => 'Department', + 'user_name' => 'Felhasználónév', + 'department' => 'Osztály', 'location' => 'Location', 'asset_tag' => 'Assets Tag', 'asset_name' => 'Name', 'asset_category' => 'Category', 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', - 'asset_serial' => 'Serial', + 'asset_model' => 'Modell', + 'asset_serial' => 'Sorozatszám', 'asset_location' => 'Location', 'asset_checked_out' => 'Checked Out', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Dátum:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/is/admin/locations/table.php b/resources/lang/is/admin/locations/table.php index 29e60c10ee..ac88bce027 100644 --- a/resources/lang/is/admin/locations/table.php +++ b/resources/lang/is/admin/locations/table.php @@ -21,7 +21,7 @@ return [ 'currency' => 'Gjaldmiðill staðsetningar', 'ldap_ou' => 'LDAP Search OU', 'user_name' => 'User Name', - 'department' => 'Department', + 'department' => 'Deild', 'location' => 'Location', 'asset_tag' => 'Assets Tag', 'asset_name' => 'Name', diff --git a/resources/lang/ko/admin/custom_fields/general.php b/resources/lang/ko/admin/custom_fields/general.php index aca8a283e7..ae1699179a 100644 --- a/resources/lang/ko/admin/custom_fields/general.php +++ b/resources/lang/ko/admin/custom_fields/general.php @@ -2,7 +2,7 @@ return [ 'custom_fields' => '사용자 정의 항목들', - 'manage' => 'Manage', + 'manage' => '관리', 'field' => '항목', 'about_fieldsets_title' => '항목세트란', 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.', diff --git a/resources/lang/ko/auth/message.php b/resources/lang/ko/auth/message.php index 6b5d38bbde..38347b67e3 100644 --- a/resources/lang/ko/auth/message.php +++ b/resources/lang/ko/auth/message.php @@ -11,7 +11,7 @@ return array( 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', - 'success' => 'You have successfully logged in.', + 'success' => '로그인에 성공했습니다.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', ), diff --git a/resources/lang/ko/general.php b/resources/lang/ko/general.php index 0e78b47a79..f084be0110 100644 --- a/resources/lang/ko/general.php +++ b/resources/lang/ko/general.php @@ -37,7 +37,7 @@ 'bulk_delete' => 'Bulk Delete', 'bulk_actions' => 'Bulk Actions', 'bulk_checkin_delete' => 'Bulk Checkin & Delete', - 'bystatus' => 'by Status', + 'bystatus' => '상태별', 'cancel' => '취소', 'categories' => '분류', 'category' => '분류', @@ -65,7 +65,7 @@ 'created' => '품목 생성됨', 'created_asset' => '생성된 자산', 'created_at' => '생성 위치', - 'record_created' => 'Record Created', + 'record_created' => '레코드 생성', 'updated_at' => '업데이트', 'currency' => '원', // this is deprecated 'current' => '현재', @@ -82,7 +82,7 @@ 'delete_confirm' => ':item 을 삭제 하시겠습니까?', 'deleted' => '삭제됨', 'delete_seats' => '삭제한 Seat', - 'deletion_failed' => 'Deletion failed', + 'deletion_failed' => '삭제 실패', 'departments' => '부서', 'department' => '부서', 'deployed' => '사용중', @@ -97,7 +97,7 @@ 'email_domain' => '전자 우편 도메인', 'email_format' => '전자 우편 형식', 'email_domain_help' => '읽어오기시 전자 우편 주소를 생성하는데 사용됩니다.', - 'error' => 'Error', + 'error' => '오류', 'filastname_format' => '초기 성명 (jsmith@example.com)', 'firstname_lastname_format' => '이름 성 (jane.smith@example.com)', 'firstname_lastname_underscore_format' => '이름 성 (jane.smith@example.com)', @@ -114,9 +114,9 @@ 'file_name' => '파일', 'file_type' => '파일 형식', 'file_uploads' => '파일 올리기', - 'file_upload' => 'File Upload', + 'file_upload' => '파일 올리기', 'generate' => '생성', - 'generate_labels' => 'Generate Labels', + 'generate_labels' => '라벨 생성', 'github_markdown' => '이 항목은 Github flavored markdown을 채택합니다.', 'groups' => '그룹', 'gravatar_email' => 'Gravatar 메일 주소', @@ -207,7 +207,7 @@ 'request_canceled' => '요청 취소', 'save' => '저장', 'select' => '선택', - 'select_all' => 'Select All', + 'select_all' => '모두 선택', 'search' => '찾기', 'select_category' => '분류 선택', 'select_department' => '부서 선택', @@ -227,7 +227,7 @@ 'sign_in' => '로그인', 'signature' => '서명', 'skin' => '스킨', - 'slack_msg_note' => 'A slack message will be sent', + 'slack_msg_note' => '슬랙으로 메세지 보내기', 'slack_test_msg' => 'Oh hai! Looks like your Slack integration with Snipe-IT is working!', 'some_features_disabled' => '데모 모드: 설치 시 일부 기능은 사용할 수 없습니다.', 'site_name' => '사이트 명', @@ -278,20 +278,20 @@ 'clear_signature' => 'Clear Signature', 'show_help' => '도움말 보기', 'hide_help' => '도움말 숨기기', - 'view_all' => 'view all', + 'view_all' => '모두 보기', 'hide_deleted' => 'Hide Deleted', 'email' => 'Email', 'do_not_change' => 'Do Not Change', - 'bug_report' => 'Report a Bug', - 'user_manual' => 'User\'s Manual', - 'setup_step_1' => 'Step 1', - 'setup_step_2' => 'Step 2', + 'bug_report' => '오류 보고', + 'user_manual' => '사용자 설명서', + 'setup_step_1' => '1 단계', + 'setup_step_2' => '2 단계', 'setup_step_3' => 'Step 3', 'setup_step_4' => 'Step 4', 'setup_config_check' => 'Configuration Check', 'setup_create_database' => 'Create Database Tables', - 'setup_create_admin' => 'Create Admin User', - 'setup_done' => 'Finished!', + 'setup_create_admin' => '관리자 유저 생성', + 'setup_done' => '완료됨', 'bulk_edit_about_to' => 'You are about to edit the following: ', 'checked_out' => 'Checked Out', 'checked_out_to' => 'Checked out to', @@ -300,17 +300,17 @@ 'due_to_checkin' => 'The following :count items are due to be checked in soon:', 'expected_checkin' => 'Expected Checkin', 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', - 'changed' => 'Changed', + 'changed' => '변경됨', 'to' => 'To', 'report_fields_info' => '
Select the fields you would like to include in your custom report, and click Generate. The file (custom-asset-report-YYYY-mm-dd.csv) will download automatically, and you can open it in Excel.
If you would like to export only certain assets, use the options below to fine-tune your results.
', - 'range' => 'Range', + 'range' => '범위', 'bom_remark' => 'Add a BOM (byte-order mark) to this CSV', 'improvements' => 'Improvements', - 'information' => 'Information', - 'permissions' => 'Permissions', + 'information' => '정보', + 'permissions' => '권한', 'managed_ldap' => '(Managed via LDAP)', - 'export' => 'Export', + 'export' => '내보내기', 'ldap_sync' => 'LDAP Sync', 'ldap_user_sync' => 'LDAP User Sync', 'synchronize' => 'Synchronize', @@ -320,10 +320,10 @@ 'dashboard_info' => 'This is your dashboard. There are many like it, but this one is yours.', '60_percent_warning' => '60% Complete (warning)', 'dashboard_empty' => 'It looks like you haven not added anything yet, so we do not have anything awesome to display. Get started by adding some assets, accessories, consumables, or licenses now!', - 'new_asset' => 'New Asset', - 'new_license' => 'New License', - 'new_accessory' => 'New Accessory', - 'new_consumable' => 'New Consumable', + 'new_asset' => '새 자산', + 'new_license' => '새 라이센스', + 'new_accessory' => '새 부속품', + 'new_consumable' => '새 소모품', 'collapse' => 'Collapse', 'assigned' => 'Assigned', 'asset_count' => 'Asset Count', @@ -333,10 +333,10 @@ 'licenses_count' => 'Licenses Count', 'notification_error' => 'Error:', 'notification_error_hint' => 'Please check the form below for errors', - 'notification_success' => 'Success:', - 'notification_warning' => 'Warning:', - 'notification_info' => 'Info:', - 'asset_information' => 'Asset Information', + 'notification_success' => '성공:', + 'notification_warning' => '경고:', + 'notification_info' => '정보:', + 'asset_information' => '자산 정보', 'model_name' => 'Model Name:', 'asset_name' => 'Asset Name:', 'consumable_information' => 'Consumable Information:', diff --git a/resources/lang/nl/admin/hardware/general.php b/resources/lang/nl/admin/hardware/general.php index c76f8dbff1..416e33ba17 100644 --- a/resources/lang/nl/admin/hardware/general.php +++ b/resources/lang/nl/admin/hardware/general.php @@ -15,13 +15,13 @@ return [ 'model_deleted' => 'Dit Assets model is verwijderd. U moet het model herstellen voordat u het Asset kunt herstellen.', 'requestable' => 'Aanvraagbaar', 'requested' => 'Aangevraagd', - 'not_requestable' => 'Not Requestable', - 'requestable_status_warning' => 'Do not change requestable status', + 'not_requestable' => 'Niet aanvraagbaar', + 'requestable_status_warning' => 'Verander de aanvraagbare status niet', 'restore' => 'Herstel Asset', 'pending' => 'In behandeling', 'undeployable' => 'Niet uitgeefbaar', 'view' => 'Bekijk Asset', - 'csv_error' => 'You have an error in your CSV file:', + 'csv_error' => 'Je hebt een fout in je CSV-bestand:', 'import_text' => '
Upload a CSV that contains asset history. The assets and users MUST already exist in the system, or they will be skipped. Matching assets for history import happens against the asset tag. We will try to find a matching user based on the user\'s name you provide, and the criteria you select below. If you do not select any criteria below, it will simply try to match on the username format you configured in the Admin > General Settings.
@@ -36,8 +36,8 @@ return [
'csv_import_match_first' => 'Try to match users by first name (jane) format',
'csv_import_match_email' => 'Try to match users by email as username',
'csv_import_match_username' => 'Try to match users by username',
- 'error_messages' => 'Error messages:',
- 'success_messages' => 'Success messages:',
- 'alert_details' => 'Please see below for details.',
- 'custom_export' => 'Custom Export'
+ 'error_messages' => 'Foutmeldingen:',
+ 'success_messages' => 'Succesvolle berichten:',
+ 'alert_details' => 'Zie hieronder voor details.',
+ 'custom_export' => 'Aangepaste export'
];
diff --git a/resources/lang/nl/admin/hardware/message.php b/resources/lang/nl/admin/hardware/message.php
index 74b2ccb8a3..354a3ce4bf 100644
--- a/resources/lang/nl/admin/hardware/message.php
+++ b/resources/lang/nl/admin/hardware/message.php
@@ -5,7 +5,7 @@ return [
'undeployable' => 'Waarschuwing: Dit bestand is gemarkeerd als niet-uitgeefbaar.
Als deze status is veranderd, update dan de asset status.',
'does_not_exist' => 'Dit asset bestaat niet.',
- 'does_not_exist_or_not_requestable' => 'That asset does not exist or is not requestable.',
+ 'does_not_exist_or_not_requestable' => 'Die asset bestaat niet of is niet aanvraagbaar.',
'assoc_users' => 'Dit asset is momenteel toegewezen aan een gebruiker en kan niet worden verwijderd. Controleer het asset eerst en probeer het opnieuw. ',
'create' => [
diff --git a/resources/lang/nl/admin/hardware/table.php b/resources/lang/nl/admin/hardware/table.php
index 0b5ac51041..eb772f3bc4 100644
--- a/resources/lang/nl/admin/hardware/table.php
+++ b/resources/lang/nl/admin/hardware/table.php
@@ -4,11 +4,11 @@ return [
'asset_tag' => 'Asset tag',
'asset_model' => 'Model',
- 'book_value' => 'Current Value',
+ 'book_value' => 'Huidige Waarde',
'change' => 'In/Uit',
'checkout_date' => 'Uitcheck datum',
'checkoutto' => 'Uitgecheckt',
- 'current_value' => 'Current Value',
+ 'current_value' => 'Huidige Waarde',
'diff' => 'Verschil',
'dl_csv' => 'CSV downloaden',
'eol' => 'EOL',
@@ -22,9 +22,9 @@ return [
'image' => 'Asset afbeelding',
'days_without_acceptance' => 'Dagen zonder acceptatie',
'monthly_depreciation' => 'Maandelijkse afschrijving',
- 'assigned_to' => 'Assigned To',
- 'requesting_user' => 'Requesting User',
- 'requested_date' => 'Requested Date',
- 'changed' => 'Changed',
- 'icon' => 'Icon',
+ 'assigned_to' => 'Toegewezen aan',
+ 'requesting_user' => 'Verzoekende gebruiker',
+ 'requested_date' => 'Aangevraagde datum',
+ 'changed' => 'Gewijzigd',
+ 'icon' => 'Pictogram',
];
diff --git a/resources/lang/nl/admin/locations/table.php b/resources/lang/nl/admin/locations/table.php
index de5fea6c7a..01e8639bb9 100644
--- a/resources/lang/nl/admin/locations/table.php
+++ b/resources/lang/nl/admin/locations/table.php
@@ -20,21 +20,21 @@ return [
'parent' => 'Bovenliggend',
'currency' => 'Locatie valuta',
'ldap_ou' => 'LDAP zoek OU',
- 'user_name' => 'User Name',
- 'department' => 'Department',
- 'location' => 'Location',
+ 'user_name' => 'Gebruiksnaam',
+ 'department' => 'Afdeling',
+ 'location' => 'Locatie',
'asset_tag' => 'Assets Tag',
- 'asset_name' => 'Name',
- 'asset_category' => 'Category',
- 'asset_manufacturer' => 'Manufacturer',
+ 'asset_name' => 'Naam',
+ 'asset_category' => 'Categorie',
+ 'asset_manufacturer' => 'Fabrikant',
'asset_model' => 'Model',
- 'asset_serial' => 'Serial',
- 'asset_location' => 'Location',
- 'asset_checked_out' => 'Checked Out',
- 'asset_expected_checkin' => 'Expected Checkin',
- 'date' => 'Date:',
- 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):',
- 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):',
- 'signed_by_location_manager' => 'Signed By (Location Manager):',
- 'signed_by' => 'Signed Off By:',
+ 'asset_serial' => 'Serie nummer',
+ 'asset_location' => 'Locatie',
+ 'asset_checked_out' => 'Uitgecheckt',
+ 'asset_expected_checkin' => 'Verwachte incheck datum',
+ 'date' => 'Datum:',
+ 'signed_by_asset_auditor' => 'Ondertekend door (Asset Auditor):',
+ 'signed_by_finance_auditor' => 'Ondertekend door (Asset Auditor):',
+ 'signed_by_location_manager' => 'Ondertekend door (Locatiebeheer):',
+ 'signed_by' => 'Afgetekend door:',
];
diff --git a/resources/lang/nl/admin/statuslabels/message.php b/resources/lang/nl/admin/statuslabels/message.php
index 112a6d26ee..90641a1233 100644
--- a/resources/lang/nl/admin/statuslabels/message.php
+++ b/resources/lang/nl/admin/statuslabels/message.php
@@ -23,7 +23,7 @@ return [
'help' => [
'undeployable' => 'Deze assets kunnen niet aan iemand worden toegewezen.',
- 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.',
+ 'deployable' => 'Deze assets kunnen worden uitgecheckt. Zodra ze zijn toegewezen, nemen ze een meta-status van Ingezet.',
'archived' => 'Deze assets kunnen niet uitgecheckt worden en worden alleen weergegeven in de gearchiveerde weergave. Dit is nuttig om informatie te bewaren over assets voor budgetteren/historische doeleinden, maar om deze buiten de dagelijkse asset-lijst te houden.',
'pending' => 'Deze assets kunnen nog niet aan iemand worden toegewezen, vaak gebruikt voor items die in reparatie zijn, maar naar verwachting zullen ze weer in omloop komen.',
],
diff --git a/resources/lang/nl/admin/users/general.php b/resources/lang/nl/admin/users/general.php
index 9f3e639e39..d9401d061a 100644
--- a/resources/lang/nl/admin/users/general.php
+++ b/resources/lang/nl/admin/users/general.php
@@ -24,9 +24,9 @@ return [
'two_factor_admin_optin_help' => 'De huidige beheer instellingen staan selectief gebruik van twee factor authenticatie toe. ',
'two_factor_enrolled' => 'Twee factor authenticatie apparaat ingesteld ',
'two_factor_active' => 'Twee factor authenticatie actief ',
- 'user_deactivated' => 'User is de-activated',
- 'activation_status_warning' => 'Do not change activation status',
- 'group_memberships_helpblock' => 'Only superadmins may edit group memberships.',
+ 'user_deactivated' => 'Gebruiker is ge-deactiveert',
+ 'activation_status_warning' => 'Activatiestatus niet wijzigen',
+ 'group_memberships_helpblock' => 'Alleen superadmins kunnen leden van groepen bewerken.',
'superadmin_permission_warning' => 'Only superadmins may grant a user superadmin access.',
'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.',
'remove_group_memberships' => 'Remove Group Memberships',
diff --git a/resources/lang/no/admin/companies/general.php b/resources/lang/no/admin/companies/general.php
index 8a3d336ddb..dc4853775f 100644
--- a/resources/lang/no/admin/companies/general.php
+++ b/resources/lang/no/admin/companies/general.php
@@ -2,6 +2,6 @@
return [
'select_company' => 'Velg bedrift',
- 'about_companies' => 'About Companies',
- 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.',
+ 'about_companies' => 'Om bedrifter',
+ 'about_companies_description' => ' Du kan bruke bedrifter som et enkelt informasjonsfelt, eller slå på Full Bedriftstøtte i Admin-innstillingene for å kunne begrense tilgangen til brukere fra forskjellige bedrifter.',
];
diff --git a/resources/lang/no/admin/custom_fields/general.php b/resources/lang/no/admin/custom_fields/general.php
index 4717e9d43c..973edd60e1 100644
--- a/resources/lang/no/admin/custom_fields/general.php
+++ b/resources/lang/no/admin/custom_fields/general.php
@@ -2,11 +2,11 @@
return [
'custom_fields' => 'Egendefinerte Felt',
- 'manage' => 'Manage',
+ 'manage' => 'Administrer',
'field' => 'Felt',
'about_fieldsets_title' => 'Om Feltsett',
- 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.',
- 'custom_format' => 'Custom Regex format...',
+ 'about_fieldsets_text' => '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å.',
'encrypted' => 'Kryptert',
@@ -27,19 +27,19 @@ return [
'used_by_models' => 'Brukes av modeller',
'order' => 'Bestill',
'create_fieldset' => 'Nytt Feltsett',
- 'create_fieldset_title' => 'Create a new fieldset',
+ 'create_fieldset_title' => 'Opprett et nytt feltsett',
'create_field' => 'Nytt Egendefinert Felt',
- 'create_field_title' => 'Create a new custom field',
+ 'create_field_title' => 'Opprett nytt egendefinert felt',
'value_encrypted' => 'Verdien i dette feltet er kryptert i databasen. Bare administratorer kan se hva som står i dette feltet',
'show_in_email' => 'Inkluder verdien i dette feltet i utsjekkseposter sendt til brukeren? Krypterte felter kan ikke inkluderes i eposter.',
- 'help_text' => 'Help Text',
- 'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.',
- 'about_custom_fields_title' => 'About Custom Fields',
- 'about_custom_fields_text' => 'Custom fields allow you to add arbitrary attributes to assets.',
- 'add_field_to_fieldset' => 'Add Field to Fieldset',
- 'make_optional' => 'Required - click to make optional',
- 'make_required' => 'Optional - click to make required',
- 'reorder' => 'Reorder',
- 'db_field' => 'DB Field',
- 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column
but should be :expected .'
+ 'help_text' => 'Hjelpetekst',
+ 'help_text_description' => 'Dette er en valgfri tekst som vises under feltet når man redigerer et element, ment for å gi kontekst til feltets innhold.',
+ 'about_custom_fields_title' => 'Om egendefinerte felt',
+ 'about_custom_fields_text' => 'Egendefinerte felt lar deg legge til vilkårlige attributter til eiendeler.',
+ 'add_field_to_fieldset' => 'Legg feltet inn i feltsett',
+ 'make_optional' => 'Påkrevd - klikk for å gjøre valgfritt',
+ 'make_required' => 'Valgfritt - klikk for å gjøre påkrevd',
+ 'reorder' => 'Endre rekkefølge',
+ 'db_field' => 'DB-felt',
+ 'db_convert_warning' => 'ADVARSEL: Dette feltet er i tabellen for egendefinerte felt som :db_column
, men burde være :expected
.'
];
diff --git a/resources/lang/no/admin/depreciations/general.php b/resources/lang/no/admin/depreciations/general.php
index 91abbd511f..be4f6d862c 100644
--- a/resources/lang/no/admin/depreciations/general.php
+++ b/resources/lang/no/admin/depreciations/general.php
@@ -6,11 +6,11 @@ return [
'asset_depreciations' => 'Avskrivninger',
'create' => 'Opprett avskrivning',
'depreciation_name' => 'Avskrivningsnavn',
- 'depreciation_min' => 'Floor Value of Depreciation',
+ 'depreciation_min' => 'Nedre verdi for avskrivning',
'number_of_months' => 'Antall måneder',
'update' => 'Oppdater avskrivninger',
'depreciation_min' => 'Minimumsverdi etter avskrivning',
- 'no_depreciations_warning' => 'Warning:
- You do not currently have any depreciations set up.
- Please set up at least one depreciation to view the depreciation report.',
+ 'no_depreciations_warning' => 'Advarsel:
+ Du har for øyeblikket ingen avskrivninger satt opp.
+ Vennligst sett opp minst én avskrivning for å se avskrivningsrapporten.',
];
diff --git a/resources/lang/no/admin/depreciations/table.php b/resources/lang/no/admin/depreciations/table.php
index 4498fc8e20..4e986a38be 100644
--- a/resources/lang/no/admin/depreciations/table.php
+++ b/resources/lang/no/admin/depreciations/table.php
@@ -6,6 +6,6 @@ return [
'months' => 'Måneder',
'term' => 'Avskrivningsperiode',
'title' => 'Navn ',
- 'depreciation_min' => 'Floor Value',
+ 'depreciation_min' => 'Nedre verdi',
];
diff --git a/resources/lang/no/admin/groups/titles.php b/resources/lang/no/admin/groups/titles.php
index efe3675103..bce3673e6f 100644
--- a/resources/lang/no/admin/groups/titles.php
+++ b/resources/lang/no/admin/groups/titles.php
@@ -10,7 +10,7 @@ return [
'group_admin' => 'Gruppeadministrator',
'allow' => 'Tillat',
'deny' => 'Avslå',
- 'permission' => 'Permission',
- 'grant' => 'Grant',
- 'no_permissions' => 'This group has no permissions.'
+ 'permission' => 'Rettigheter',
+ 'grant' => 'Gi tilgang',
+ 'no_permissions' => 'Denne gruppen har ingen rettigheter.'
];
diff --git a/resources/lang/no/admin/hardware/form.php b/resources/lang/no/admin/hardware/form.php
index 2eb524d5eb..53e2de8cbe 100644
--- a/resources/lang/no/admin/hardware/form.php
+++ b/resources/lang/no/admin/hardware/form.php
@@ -40,10 +40,10 @@ return [
'warranty' => 'Garanti',
'warranty_expires' => 'Garantien utløper',
'years' => 'år',
- 'asset_location' => 'Update Asset Location',
- 'asset_location_update_default_current' => 'Update default location AND actual location',
- 'asset_location_update_default' => 'Update only default location',
- 'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.',
- 'asset_deployable' => 'That status is deployable. This asset can be checked out.',
- 'processing_spinner' => 'Processing...',
+ 'asset_location' => 'Oppdater lokasjon for eiendelen',
+ 'asset_location_update_default_current' => 'Oppdater standardlokasjon OG faktisk lokasjon',
+ 'asset_location_update_default' => 'Oppdater bare standardlokasjon',
+ 'asset_not_deployable' => 'Den eiendelstatusen gjør at denne eiendelen ikke kan sjekkes ut.',
+ 'asset_deployable' => 'Den statusen gjør det mulig å sjekke ut denne eiendelen.',
+ 'processing_spinner' => 'Behandler...',
];
diff --git a/resources/lang/no/admin/hardware/general.php b/resources/lang/no/admin/hardware/general.php
index 3e021f51df..1d098623df 100644
--- a/resources/lang/no/admin/hardware/general.php
+++ b/resources/lang/no/admin/hardware/general.php
@@ -15,29 +15,29 @@ return [
'model_deleted' => 'Denne eiendelsmodellen er slettet. Du må gjenopprette modellen før du kan gjenopprette eiendelen.',
'requestable' => 'Forespørrbar',
'requested' => 'Forespurt',
- 'not_requestable' => 'Not Requestable',
- 'requestable_status_warning' => 'Do not change requestable status',
+ 'not_requestable' => 'Ikke mulig å spørre etter',
+ 'requestable_status_warning' => 'Ikke endre forespørselsstatus',
'restore' => 'Gjenopprett eiendel',
'pending' => 'Under arbeid',
'undeployable' => 'Ikke utleverbar',
'view' => 'Vis eiendel',
- 'csv_error' => 'You have an error in your CSV file:',
+ 'csv_error' => 'Du har en feil i din CSV-fil:',
'import_text' => '
-
- Upload a CSV that contains asset history. The assets and users MUST already exist in the system, or they will be skipped. Matching assets for history import happens against the asset tag. We will try to find a matching user based on the user\'s name you provide, and the criteria you select below. If you do not select any criteria below, it will simply try to match on the username format you configured in the Admin > General Settings. -
++ Last opp en CSV-fil som inneholder eiendelshistorikk. Eiendeler og brukere i fila MÅ allerede finnes i systemet, hvis ikke blir de oversett. Eiendelene blir matchet mot Eiendelsmerke (Asset Tag). Vi vil forsøke å finne en matchende bruker basert på brukerens navn og de kriteriene du spesifiserer under. Hvis du ikke spesifiserer noen kriterier vil vi forsøke å matche brukere på brukernavn-formatet som er satt opp i Admin > Generelle innstillinger +
-Fields included in the CSV must match the headers: Asset Tag, Name, Checkout Date, Checkin Date. Any additional fields will be ignored.
+CSV-fila må inneholde headerne Asset Tag, Name, Checkout Data, Checkin Date. Ekstra felter blir oversett.
-Checkin Date: blank or future checkin dates will checkout items to associated user. Excluding the Checkin Date column will create a checkin date with todays date.
+Checkin Date: Tomme eller datoer i fremtiden vil sjekke ut eiendelen til den tilknyttede brukeren. Manger Checkin Date-kolonnen vil det føre til at innsjekk blir dagens dato.
', - 'csv_import_match_f-l' => 'Try to match users by firstname.lastname (jane.smith) format', - 'csv_import_match_initial_last' => 'Try to match users by first initial last name (jsmith) format', - 'csv_import_match_first' => 'Try to match users by first name (jane) format', - 'csv_import_match_email' => 'Try to match users by email as username', - 'csv_import_match_username' => 'Try to match users by username', - 'error_messages' => 'Error messages:', - 'success_messages' => 'Success messages:', - 'alert_details' => 'Please see below for details.', - 'custom_export' => 'Custom Export' + 'csv_import_match_f-l' => 'Prøv å matche brukere med formatet fornavn.etternavn (eli.nordmann)', + 'csv_import_match_initial_last' => 'Prøv å matche brukere med formatet initial+etternavn (enordmann)', + 'csv_import_match_first' => 'Prøv å matche brukere med formatet fornavn (eli)', + 'csv_import_match_email' => 'Prøv å matche brukere med e-post som brukernavn', + 'csv_import_match_username' => 'Prøv å matche brukere med brukernavn', + 'error_messages' => 'Feilmeldinger:', + 'success_messages' => 'Suksessmeldinger:', + 'alert_details' => 'Vennligst se nedenfor for detaljer.', + 'custom_export' => 'Egendefinert eksport' ]; diff --git a/resources/lang/no/admin/hardware/table.php b/resources/lang/no/admin/hardware/table.php index e606b65f54..16c3f8a723 100644 --- a/resources/lang/no/admin/hardware/table.php +++ b/resources/lang/no/admin/hardware/table.php @@ -4,11 +4,11 @@ return [ 'asset_tag' => 'Eiendelsmerke', 'asset_model' => 'Modell', - 'book_value' => 'Current Value', + 'book_value' => 'Gjeldende verdi', 'change' => 'Inne/ute', 'checkout_date' => 'Utsjekkdato', 'checkoutto' => 'Utsjekket', - 'current_value' => 'Current Value', + 'current_value' => 'Gjeldende verdi', 'diff' => 'Forskjell', 'dl_csv' => 'Last ned CSV', 'eol' => 'EOL', @@ -22,9 +22,9 @@ return [ 'image' => 'Enhet bilde', 'days_without_acceptance' => 'Dager uten aksept', 'monthly_depreciation' => 'Månedlig avskrivning', - 'assigned_to' => 'Assigned To', - 'requesting_user' => 'Requesting User', - 'requested_date' => 'Requested Date', - 'changed' => 'Changed', - 'icon' => 'Icon', + 'assigned_to' => 'Tilordnet til', + 'requesting_user' => 'Forespurt av', + 'requested_date' => 'Dato forespurt', + 'changed' => 'Endret', + 'icon' => 'Symbol', ]; diff --git a/resources/lang/no/admin/kits/general.php b/resources/lang/no/admin/kits/general.php index 9f031609f8..f0358b9174 100644 --- a/resources/lang/no/admin/kits/general.php +++ b/resources/lang/no/admin/kits/general.php @@ -13,38 +13,38 @@ return [ 'none_licenses' => 'Det er ikke nok seter for :license til å sjekke ut. Det trengs :qty ekstra. ', 'none_consumables' => 'Det er ikke nok tilgjengelige :consumable til å sjekke ut. Det trengs :qty. ', 'none_accessory' => 'Det er ikke nok tilgjengelige :accessory til å sjekke ut. Det trengs :qty. ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', + 'append_accessory' => 'Legg til tilbehør', + 'update_appended_accessory' => 'Oppdater tilbehør som er lagt til', + 'append_consumable' => 'Legg til forbruksvare', + 'update_appended_consumable' => 'Oppdater forbruksvare som er lagt til', + 'append_license' => 'Legg til lisens', + 'update_appended_license' => 'Oppdater lisens som er lagt til', + 'append_model' => 'Legg til modell', + 'update_appended_model' => 'Oppdater modell', + 'license_error' => 'Lisensen er allerede i settet', + 'license_added_success' => 'Lisensen ble lagt til', + 'license_updated' => 'Lisensen ble oppdatert', + 'license_none' => 'Lisens eksisterer ikke', + 'license_detached' => 'Lisensen ble koblet fra', + 'consumable_added_success' => 'Forbruksvare lagt til', + 'consumable_updated' => 'Forbruksvaren ble oppdatert', + 'consumable_error' => 'Forbruksvaren er allerede i settet', + 'consumable_deleted' => 'Slettingen var vellykket', + 'consumable_none' => 'Forbruksvaren finnes ikke', + 'consumable_detached' => 'Forbruksvaren ble fjernet', + 'accessory_added_success' => 'Tilbehør lagt til', + 'accessory_updated' => 'Tilbehøret ble oppdatert', + 'accessory_detached' => 'Tilbehør ble koblet fra', + 'accessory_error' => 'Tilbehøret er allerede i settet', + 'accessory_deleted' => 'Slettingen var vellykket', + 'accessory_none' => 'Tilbehør eksisterer ikke', + 'checkout_success' => 'Utsjekk vellykket', + 'checkout_error' => 'Feil ved utsjekk', + 'kit_none' => 'Settet eksisterer ikke', + 'kit_created' => 'Settet ble opprettet', + 'kit_updated' => 'Settet har blitt oppdatert', + 'kit_not_found' => 'Settet ble ikke funnet', + 'kit_deleted' => 'Settet har blitt slettet', + 'kit_model_updated' => 'Modellen ble oppdatert', + 'kit_model_detached' => 'Modellen har blitt frakoblet', ]; diff --git a/resources/lang/no/admin/locations/table.php b/resources/lang/no/admin/locations/table.php index 4222ccbeef..caceb23768 100644 --- a/resources/lang/no/admin/locations/table.php +++ b/resources/lang/no/admin/locations/table.php @@ -20,21 +20,21 @@ return [ 'parent' => 'Overordnet', 'currency' => 'Valuta i lokasjon', 'ldap_ou' => 'LDAP-søk OU', - 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', - 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', - 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', - 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', - 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', - 'signed_by_location_manager' => 'Signed By (Location Manager):', - 'signed_by' => 'Signed Off By:', + 'user_name' => 'Brukernavn', + 'department' => 'Avdeling', + 'location' => 'Lokasjon', + 'asset_tag' => 'Eiendelsmerke', + 'asset_name' => 'Navn', + 'asset_category' => 'Kategori', + 'asset_manufacturer' => 'Produsent', + 'asset_model' => 'Modell', + 'asset_serial' => 'Serienummer', + 'asset_location' => 'Lokasjon', + 'asset_checked_out' => 'Utsjekket', + 'asset_expected_checkin' => 'Forventet innsjekk', + 'date' => 'Dato:', + 'signed_by_asset_auditor' => 'Signert av (Eiendelskontrollør):', + 'signed_by_finance_auditor' => 'Undertegnet av (finansrevisor):', + 'signed_by_location_manager' => 'Signert av (Stedsansvarlig):', + 'signed_by' => 'Signert av:', ]; diff --git a/resources/lang/no/admin/reports/general.php b/resources/lang/no/admin/reports/general.php index f4d0894159..626f025a26 100644 --- a/resources/lang/no/admin/reports/general.php +++ b/resources/lang/no/admin/reports/general.php @@ -2,9 +2,9 @@ return [ 'info' => 'Velg de alternativene du ønsker skal inngå i rapporten.', - 'deleted_user' => 'Deleted user', - 'send_reminder' => 'Send reminder', - 'reminder_sent' => 'Reminder sent', - 'acceptance_deleted' => 'Acceptance request deleted', - 'acceptance_request' => 'Acceptance request' + 'deleted_user' => 'Slettet bruker', + 'send_reminder' => 'Send påminnelse', + 'reminder_sent' => 'Påminnelse sendt', + 'acceptance_deleted' => 'Aksepteringsforespørsel slettet', + 'acceptance_request' => 'Akseptanseforespørsel' ]; \ No newline at end of file diff --git a/resources/lang/no/admin/settings/general.php b/resources/lang/no/admin/settings/general.php index 423c0432e0..9daaeffec3 100644 --- a/resources/lang/no/admin/settings/general.php +++ b/resources/lang/no/admin/settings/general.php @@ -10,10 +10,10 @@ return [ 'admin_cc_email' => 'CC e-post', 'admin_cc_email_help' => 'Hvis du vil sende en kopi av innsjekk-/utsjekkeposter som sendes til brukere til en ekstra epostadresse, skriv den inn her. La ellers feltet stå tomt.', 'is_ad' => 'Dette er en Active Directory server', - 'alerts' => 'Alerts', - 'alert_title' => 'Update Alert Settings', + 'alerts' => 'Varsler', + 'alert_title' => 'Oppdater varslingsinnstillinger', 'alert_email' => 'Send varslinger til', - 'alert_email_help' => 'Email addresses or distribution lists you want alerts to be sent to, comma separated', + 'alert_email_help' => 'E-postadresser eller distribusjonslister som du ønsker varsler skal sendes til, kommaseparert', 'alerts_enabled' => 'Varslinger aktivert', 'alert_interval' => 'Terskel for utløpende varslinger (dager)', 'alert_inv_threshold' => 'Terskel for eiendelsvarslinger', @@ -24,16 +24,16 @@ return [ 'audit_interval_help' => 'Hvis du regelmessig må fysisk overvåke dine eiendeler, angi intervallet i måneder.', 'audit_warning_days' => 'Audit terskelverdi for advarsel', 'audit_warning_days_help' => 'Hvor mange dager i forveien bør vi advare deg når eiendeler forfaller for overvåking?', - 'auto_increment_assets' => 'Generate auto-incrementing asset tags', + 'auto_increment_assets' => 'Generer automatisk økende eiendelsmerker', 'auto_increment_prefix' => 'Prefiks (valgfritt)', - 'auto_incrementing_help' => 'Enable auto-incrementing asset tags first to set this', + 'auto_incrementing_help' => 'Slå på automatisk økende eiendelsmerker for å velge dette', 'backups' => 'Sikkerhetskopier', - 'backups_restoring' => 'Restoring from Backup', - 'backups_upload' => 'Upload Backup', - 'backups_path' => 'Backups on the server are stored in:path
',
- 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.:path
',
+ 'backups_restore_warning' => 'Bruk gjenopprettingsknappen for å gjenopprette fra en tidligere sikkerhetskopi. (Dette fungerer ikke med S3-fillagring eller Docker.Select the fields you would like to include in your custom report, and click Generate. The file (custom-asset-report-YYYY-mm-dd.csv) will download automatically, and you can open it in Excel.
-If you would like to export only certain assets, use the options below to fine-tune your results.
', - 'range' => 'Range', - 'bom_remark' => 'Add a BOM (byte-order mark) to this CSV', - 'improvements' => 'Improvements', - 'information' => 'Information', - 'permissions' => 'Permissions', - 'managed_ldap' => '(Managed via LDAP)', - 'export' => 'Export', - 'ldap_sync' => 'LDAP Sync', - 'ldap_user_sync' => 'LDAP User Sync', - 'synchronize' => 'Synchronize', - 'sync_results' => 'Synchronization Results', - 'license_serial' => 'Serial/Product Key', - 'invalid_category' => 'Invalid category', - 'dashboard_info' => 'This is your dashboard. There are many like it, but this one is yours.', - '60_percent_warning' => '60% Complete (warning)', - 'dashboard_empty' => 'It looks like you haven not added anything yet, so we do not have anything awesome to display. Get started by adding some assets, accessories, consumables, or licenses now!', - 'new_asset' => 'New Asset', - 'new_license' => 'New License', - 'new_accessory' => 'New Accessory', - 'new_consumable' => 'New Consumable', - 'collapse' => 'Collapse', - 'assigned' => 'Assigned', - 'asset_count' => 'Asset Count', - 'accessories_count' => 'Accessories Count', - 'consumables_count' => 'Consumables Count', - 'components_count' => 'Components Count', - 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error:', - 'notification_error_hint' => 'Please check the form below for errors', - 'notification_success' => 'Success:', - 'notification_warning' => 'Warning:', + 'view_all' => 'se alle', + 'hide_deleted' => 'Skjul slettede', + 'email' => 'E-post', + 'do_not_change' => 'Ikke endre', + 'bug_report' => 'Rapporter feil', + 'user_manual' => 'Brukerhåndbok', + 'setup_step_1' => 'Trinn 1', + 'setup_step_2' => 'Trinn 2', + 'setup_step_3' => 'Trinn 3', + 'setup_step_4' => 'Trinn 4', + 'setup_config_check' => 'Sjekk konfigurasjon', + 'setup_create_database' => 'Opprett databasetabeller', + 'setup_create_admin' => 'Opprett adminbruker', + 'setup_done' => 'Ferdig!', + 'bulk_edit_about_to' => 'Du er i ferd med å redigere følgende: ', + 'checked_out' => 'Sjekket ut', + 'checked_out_to' => 'Sjekket ut til', + 'fields' => 'Felter', + 'last_checkout' => 'Siste utsjekk', + 'due_to_checkin' => 'Følgende :count elementer skal snart sjekkes inn:', + 'expected_checkin' => 'Forventet innsjekk', + 'reminder_checked_out_items' => 'Dette er en påminnelse om utstyr som er sjekket ut til deg. Hvis du mener at denne listen er unøyaktig (noe mangler, eller at noe vises her du tror du aldri har fått), vennligst send e-post til :reply_to_name på :reply_to_address.', + 'changed' => 'Endret', + 'to' => 'Til', + 'report_fields_info' => 'Velg feltene du vil inkludere i din egendefinerte rapport, og klikk Generer. Filen (custom-asset-report-YYYY-mm-dd.csv) vil bli lastet ned automatisk, og du kan åpne den i Excel.
+Hvis du ønsker å eksportere bare enkelte eiendeler, bruk alternativene nedenfor til å finjustere resultatene dine.
', + 'range' => 'Område', + 'bom_remark' => 'Legg til et BOM (byte-order merke) i CSV-fila', + 'improvements' => 'Forbedringer', + 'information' => 'Informasjon', + 'permissions' => 'Tillatelser', + 'managed_ldap' => '(Administrert via LDAP)', + 'export' => 'Eksport', + 'ldap_sync' => 'LDAP-synk', + 'ldap_user_sync' => 'Synk av LDAP-brukere', + 'synchronize' => 'Synkroniser', + 'sync_results' => 'Synkroniseringsresultat', + 'license_serial' => 'Serienr/produktnøkkel', + 'invalid_category' => 'Ugyldig kategori', + 'dashboard_info' => 'Dette er dashbordet ditt. Det er mange som det, men dette er ditt.', + '60_percent_warning' => '60% fullført (advarsel)', + 'dashboard_empty' => 'Det ser ut som du har lagt noe du ikke har lagt til enda, så vi har ikke noe fantastisk å vise. Kom i gang ved å legge til noen eiendeler, tilbehør, forbruksartikler eller lisenser nå!', + 'new_asset' => 'Ny eiendel', + 'new_license' => 'Ny lisens', + 'new_accessory' => 'Nytt tilbehør', + 'new_consumable' => 'Ny forbruksvare', + 'collapse' => 'Kollaps', + 'assigned' => 'Tilordnet', + 'asset_count' => 'Antall eiendeler', + 'accessories_count' => 'Antall tilbehør', + 'consumables_count' => 'Antall forbruksvarer', + 'components_count' => 'Antall komponenter', + 'licenses_count' => 'Antall lisenser', + 'notification_error' => 'Feil:', + 'notification_error_hint' => 'Vennligst sjekk skjemaet nedenfor for feil', + 'notification_success' => 'Suksess:', + 'notification_warning' => 'Advarsel:', 'notification_info' => 'Info:', - 'asset_information' => 'Asset Information', - 'model_name' => 'Model Name:', - 'asset_name' => 'Asset Name:', - 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', - 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', - 'clone_item' => 'Clone Item', - 'checkout_tooltip' => 'Check this item out', - 'checkin_tooltip' => 'Check this item in', - 'checkout_user_tooltip' => 'Check this item out to a user', + 'asset_information' => 'Eiendelsinfo', + 'model_name' => 'Modellnavn:', + 'asset_name' => 'Eiendelens navn:', + 'consumable_information' => 'Info om forbruksvare:', + 'consumable_name' => 'Navn på forbruksvare:', + 'accessory_information' => 'Info om tilbehør:', + 'accessory_name' => 'Tilbehørets navn:', + 'clone_item' => 'Klon element', + 'checkout_tooltip' => 'Sjekk ut denne gjenstanden', + 'checkin_tooltip' => 'Sjekk inn dette elementet', + 'checkout_user_tooltip' => 'Sjekk dette elementet ut til en bruker', ]; diff --git a/resources/lang/no/mail.php b/resources/lang/no/mail.php index 60f377b279..47828eb01c 100644 --- a/resources/lang/no/mail.php +++ b/resources/lang/no/mail.php @@ -59,7 +59,7 @@ return [ 'test_mail_text' => 'Dette er en test fra Snipe-IT eiendelsadministrasjonssystem. Hvis du mottok denne meldingen fungerer e-post.', 'the_following_item' => 'Følgende enheter har blitt sjekket inn: ', '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.', - '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' => 'En eiendel har garanti som utløper innenfor de neste :treshold dagene.|:count eiendeler har garanti som utløper innenfor de neste :tershold dagene.', 'license_expiring_alert' => ':count lisens utløper de neste :threshold dagene.|:count lisenser utløper de neste :threshold dagene.', 'to_reset' => 'Fullfør dette skjemaet for å tilbakestille ditt :web passord:', 'type' => 'Type', diff --git a/resources/lang/no/validation.php b/resources/lang/no/validation.php index 0ec79e091a..1953b391ec 100644 --- a/resources/lang/no/validation.php +++ b/resources/lang/no/validation.php @@ -64,7 +64,7 @@ return [ 'string' => 'Attributtet :attribute må være minst :min tegn.', 'array' => 'Attributtet må ha minst: min elementer.', ], - 'starts_with' => 'The :attribute must start with one of the following: :values.', + 'starts_with' => ':attribute må starte med en av følgende: :values.', 'not_in' => 'Attributtet :attribute er ugyldig.', 'numeric' => 'Attributtet :attribute må være et nummer.', 'present' => 'Atributtfeltet :attribute må ha en verdi.', diff --git a/resources/lang/pl/admin/companies/general.php b/resources/lang/pl/admin/companies/general.php index afb249f4e7..2205d41fa8 100644 --- a/resources/lang/pl/admin/companies/general.php +++ b/resources/lang/pl/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Wybierz firmę', - 'about_companies' => 'About Companies', - 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', + 'about_companies' => 'O Firmach', + 'about_companies_description' => ' Możesz używać firm jako prostego pola informacyjnego, lub możesz go użyć do ograniczenia widoczności i dostępności zasobów dla użytkowników w określonej firmie poprzez włączenie Pełnej Obsługi Firm w ustawieniach administratora.', ]; diff --git a/resources/lang/pl/admin/custom_fields/general.php b/resources/lang/pl/admin/custom_fields/general.php index c53d9896fb..1ce06f08f1 100644 --- a/resources/lang/pl/admin/custom_fields/general.php +++ b/resources/lang/pl/admin/custom_fields/general.php @@ -2,11 +2,11 @@ return [ 'custom_fields' => 'Pola niestandardowe', - 'manage' => 'Manage', + 'manage' => 'Zarządzaj', 'field' => 'Pole', 'about_fieldsets_title' => 'O zestawie pól', '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...', + '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.', 'encrypted' => 'Zaszyfrowane', @@ -27,19 +27,19 @@ return [ 'used_by_models' => 'Używane przez modele', 'order' => 'Kolejność', 'create_fieldset' => 'Nowy zestaw pól', - 'create_fieldset_title' => 'Create a new fieldset', + 'create_fieldset_title' => 'Utwórz nową listę', 'create_field' => 'Nowe pole niestandardowe', - 'create_field_title' => 'Create a new custom field', + 'create_field_title' => 'Utwórz pole niestandardowe', 'value_encrypted' => 'Wartość tego pola jest zaszyfrowana w bazie danych. Tylko admini będą mogli wyświetlić rozszyfrowaną wartość', 'show_in_email' => 'Czy podać wartość tego pola w e-mailach z przypisaniem, wysłanych do użytkownika? Zaszyfrowane pola nie mogą być zawarte w wiadomościach e-mail.', - 'help_text' => 'Help Text', + 'help_text' => 'Tekst pomocniczy', 'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.', - 'about_custom_fields_title' => 'About Custom Fields', + 'about_custom_fields_title' => 'O polach niestandardowych', 'about_custom_fields_text' => 'Custom fields allow you to add arbitrary attributes to assets.', - 'add_field_to_fieldset' => 'Add Field to Fieldset', - 'make_optional' => 'Required - click to make optional', - 'make_required' => 'Optional - click to make required', - 'reorder' => 'Reorder', + 'add_field_to_fieldset' => 'Dodaj pole do listy pól', + 'make_optional' => 'Wymagane - kliknij, aby ustawić jako opcjonalne', + 'make_required' => 'Opcjonalnie - kliknij, aby ustawić jako wymagane', + 'reorder' => 'Zmień kolejność', 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column
but should be :expected .'
+ 'db_convert_warning' => 'UWAGA. To pole znajduje się w tabeli pól niestandardowych jako :db_column
ale powinno być :expected .'
];
diff --git a/resources/lang/pl/admin/depreciations/general.php b/resources/lang/pl/admin/depreciations/general.php
index 6add1efbb5..cf0d2d0ce1 100644
--- a/resources/lang/pl/admin/depreciations/general.php
+++ b/resources/lang/pl/admin/depreciations/general.php
@@ -6,11 +6,11 @@ return [
'asset_depreciations' => 'Amortyzacja nabytków',
'create' => 'Nowa amortyzacja',
'depreciation_name' => 'Nazwa amortyzacji',
- 'depreciation_min' => 'Floor Value of Depreciation',
+ 'depreciation_min' => 'Minimalna wartość amortyzacji',
'number_of_months' => 'Numer miesiąca',
'update' => 'Aktualizuj amortyzację',
'depreciation_min' => 'Minimalna wartość po spadku wartości',
- 'no_depreciations_warning' => 'Warning:
- You do not currently have any depreciations set up.
- Please set up at least one depreciation to view the depreciation report.',
+ 'no_depreciations_warning' => 'Uwaga:
+ Obecnie nie masz żadnych skonfigurowanych amortyzacji.
+ Skonfiguruj co najmniej jedną amortyzację, aby wyświetlić raport.',
];
diff --git a/resources/lang/pl/admin/depreciations/table.php b/resources/lang/pl/admin/depreciations/table.php
index 55e2427724..d8a2c3e6bb 100644
--- a/resources/lang/pl/admin/depreciations/table.php
+++ b/resources/lang/pl/admin/depreciations/table.php
@@ -6,6 +6,6 @@ return [
'months' => 'Miesiące',
'term' => 'Termin',
'title' => 'Nazwa ',
- 'depreciation_min' => 'Floor Value',
+ 'depreciation_min' => 'Minimalna wartość',
];
diff --git a/resources/lang/pl/admin/groups/titles.php b/resources/lang/pl/admin/groups/titles.php
index 91811b2198..9107c96ec5 100644
--- a/resources/lang/pl/admin/groups/titles.php
+++ b/resources/lang/pl/admin/groups/titles.php
@@ -10,7 +10,7 @@ return [
'group_admin' => 'Admin grupy',
'allow' => 'Zezwól',
'deny' => 'Odmów',
- 'permission' => 'Permission',
- 'grant' => 'Grant',
- 'no_permissions' => 'This group has no permissions.'
+ 'permission' => 'Uprawnienie',
+ 'grant' => 'Przyznaj',
+ 'no_permissions' => 'Ta grupa nie ma żadnych uprawnień.'
];
diff --git a/resources/lang/pl/admin/hardware/form.php b/resources/lang/pl/admin/hardware/form.php
index 9dfcf753da..307e8a1fb3 100644
--- a/resources/lang/pl/admin/hardware/form.php
+++ b/resources/lang/pl/admin/hardware/form.php
@@ -40,10 +40,10 @@ return [
'warranty' => 'Gwarancja',
'warranty_expires' => 'Gwarancja wygasa',
'years' => 'rok',
- 'asset_location' => 'Update Asset Location',
- 'asset_location_update_default_current' => 'Update default location AND actual location',
- 'asset_location_update_default' => 'Update only default location',
+ 'asset_location' => 'Zaktualizuj lokalizację aktywa',
+ 'asset_location_update_default_current' => 'Zaktualizuj domyślną i aktualną lokalizację',
+ 'asset_location_update_default' => 'Zaktualizuj tylko domyślną lokalizację',
'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.',
'asset_deployable' => 'That status is deployable. This asset can be checked out.',
- 'processing_spinner' => 'Processing...',
+ 'processing_spinner' => 'Przetwarzanie...',
];
diff --git a/resources/lang/pl/admin/hardware/general.php b/resources/lang/pl/admin/hardware/general.php
index 67aef37fc9..64a4fde80a 100644
--- a/resources/lang/pl/admin/hardware/general.php
+++ b/resources/lang/pl/admin/hardware/general.php
@@ -34,10 +34,10 @@ return [
'csv_import_match_f-l' => 'Try to match users by firstname.lastname (jane.smith) format',
'csv_import_match_initial_last' => 'Try to match users by first initial last name (jsmith) format',
'csv_import_match_first' => 'Try to match users by first name (jane) format',
- 'csv_import_match_email' => 'Try to match users by email as username',
- 'csv_import_match_username' => 'Try to match users by username',
- 'error_messages' => 'Error messages:',
+ 'csv_import_match_email' => 'Spróbuj dopasować użytkowników po adresie e-mail',
+ 'csv_import_match_username' => 'Spróbuj dopasować użytkowników po nazwie użytkownika',
+ 'error_messages' => 'Komunikat błędu:',
'success_messages' => 'Success messages:',
'alert_details' => 'Please see below for details.',
- 'custom_export' => 'Custom Export'
+ 'custom_export' => 'Eksport niestandardowy'
];
diff --git a/resources/lang/pl/admin/hardware/table.php b/resources/lang/pl/admin/hardware/table.php
index 9083d896cb..f256f07c59 100644
--- a/resources/lang/pl/admin/hardware/table.php
+++ b/resources/lang/pl/admin/hardware/table.php
@@ -4,11 +4,11 @@ return [
'asset_tag' => 'Kod',
'asset_model' => 'Model',
- 'book_value' => 'Current Value',
+ 'book_value' => 'Aktualna Wartość',
'change' => 'In/Out',
'checkout_date' => 'Data przypisania',
'checkoutto' => 'Data wypisania',
- 'current_value' => 'Current Value',
+ 'current_value' => 'Aktualna Wartość',
'diff' => 'Różnica',
'dl_csv' => 'Pobierz CSV',
'eol' => 'Koniec licencji',
@@ -22,9 +22,9 @@ return [
'image' => 'Zdjęcie urządzenia',
'days_without_acceptance' => 'Dni bez akceptacji',
'monthly_depreciation' => 'Amortyzacja miesięczna',
- 'assigned_to' => 'Assigned To',
- 'requesting_user' => 'Requesting User',
- 'requested_date' => 'Requested Date',
- 'changed' => 'Changed',
- 'icon' => 'Icon',
+ 'assigned_to' => 'Przypisany do',
+ 'requesting_user' => 'Zapotrzebowanie od użytkownika',
+ 'requested_date' => 'Data złożenia zapotrzebowania',
+ 'changed' => 'Zmieniono',
+ 'icon' => 'Ikona',
];
diff --git a/resources/lang/pl/admin/kits/general.php b/resources/lang/pl/admin/kits/general.php
index f41214f4ed..549ca7888a 100644
--- a/resources/lang/pl/admin/kits/general.php
+++ b/resources/lang/pl/admin/kits/general.php
@@ -13,19 +13,19 @@ return [
'none_licenses' => 'Brak wystarczającej liczby dostępnych miejsc dla :license do zamówienia. :qty są wymagane. ',
'none_consumables' => 'Nie ma wystarczającej ilości dostępnych jednostek :consumable do zakupu. :qty są wymagane. ',
'none_accessory' => 'Brak wystarczającej liczby dostępnych jednostek z :accessory do zamówienia. :qty są wymagane. ',
- 'append_accessory' => 'Append Accessory',
- 'update_appended_accessory' => 'Update appended Accessory',
+ 'append_accessory' => 'Dołącz Akcesoria',
+ 'update_appended_accessory' => 'Aktualizuj załączone Akcesoria',
'append_consumable' => 'Append Consumable',
'update_appended_consumable' => 'Update appended Consumable',
- 'append_license' => 'Append license',
- 'update_appended_license' => 'Update appended license',
+ 'append_license' => 'Dołącz licencję',
+ 'update_appended_license' => 'Zaktualizuj załączone licencje',
'append_model' => 'Append model',
'update_appended_model' => 'Update appended model',
- 'license_error' => 'License already attached to kit',
+ 'license_error' => 'Licencja została już dołączona do zestawu',
'license_added_success' => 'License added successfully',
- 'license_updated' => 'License was successfully updated',
- 'license_none' => 'License does not exist',
- 'license_detached' => 'License was successfully detached',
+ 'license_updated' => 'Licencja zaktualizowana pomyślnie',
+ 'license_none' => 'Licencja nie istnieje',
+ 'license_detached' => 'Licencja została pomyślnie odłączona',
'consumable_added_success' => 'Consumable added successfully',
'consumable_updated' => 'Consumable was successfully updated',
'consumable_error' => 'Consumable already attached to kit',
diff --git a/resources/lang/pl/admin/locations/table.php b/resources/lang/pl/admin/locations/table.php
index 1ccc976a53..04759d196f 100644
--- a/resources/lang/pl/admin/locations/table.php
+++ b/resources/lang/pl/admin/locations/table.php
@@ -20,21 +20,21 @@ return [
'parent' => 'Rodzic',
'currency' => 'Waluta lokalna',
'ldap_ou' => 'OU wyszukiwania LDAP',
- 'user_name' => 'User Name',
- 'department' => 'Department',
- 'location' => 'Location',
- 'asset_tag' => 'Assets Tag',
- 'asset_name' => 'Name',
- 'asset_category' => 'Category',
- 'asset_manufacturer' => 'Manufacturer',
+ 'user_name' => 'Nazwa użytkownika',
+ 'department' => 'Departament',
+ 'location' => 'Lokalizacja',
+ 'asset_tag' => 'Tag sprzętu',
+ 'asset_name' => 'Nazwa',
+ 'asset_category' => 'Kategoria',
+ 'asset_manufacturer' => 'Producent',
'asset_model' => 'Model',
- 'asset_serial' => 'Serial',
- 'asset_location' => 'Location',
+ 'asset_serial' => 'Nr seryjny',
+ 'asset_location' => 'Lokalizacja',
'asset_checked_out' => 'Checked Out',
'asset_expected_checkin' => 'Expected Checkin',
- 'date' => 'Date:',
- 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):',
- 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):',
- 'signed_by_location_manager' => 'Signed By (Location Manager):',
- 'signed_by' => 'Signed Off By:',
+ 'date' => 'Data:',
+ 'signed_by_asset_auditor' => 'Podpisane przez (Audytor aktywów):',
+ 'signed_by_finance_auditor' => 'Podpisane przez (Audytor finansowy):',
+ 'signed_by_location_manager' => 'Podpisane przez (Audytor Lokalizacji):',
+ 'signed_by' => 'Podpisano przez:',
];
diff --git a/resources/lang/pl/admin/reports/general.php b/resources/lang/pl/admin/reports/general.php
index 34b3b62290..21f2a763ae 100644
--- a/resources/lang/pl/admin/reports/general.php
+++ b/resources/lang/pl/admin/reports/general.php
@@ -3,8 +3,8 @@
return [
'info' => 'Wybierz opcje, które chcesz by znalazły się w raporcie aktywów.',
'deleted_user' => 'Deleted user',
- 'send_reminder' => 'Send reminder',
- 'reminder_sent' => 'Reminder sent',
+ 'send_reminder' => 'Wyślij przypomnienie',
+ 'reminder_sent' => 'Przypomnienie wysłane',
'acceptance_deleted' => 'Acceptance request deleted',
- 'acceptance_request' => 'Acceptance request'
+ 'acceptance_request' => 'Prośba o akceptację'
];
\ No newline at end of file
diff --git a/resources/lang/pl/admin/settings/general.php b/resources/lang/pl/admin/settings/general.php
index 8348b9face..5f32caea2c 100644
--- a/resources/lang/pl/admin/settings/general.php
+++ b/resources/lang/pl/admin/settings/general.php
@@ -10,10 +10,10 @@ return [
'admin_cc_email' => 'Kopia',
'admin_cc_email_help' => 'Jeśli chcesz otrzymywać kopię e-maili przypisań wysyłanych do użytkowników na dodatkowy adres e-mail, wpisz go tutaj. W przeciwnym razie zostaw to pole puste.',
'is_ad' => 'To jest serwer Active Directory',
- 'alerts' => 'Alerts',
- 'alert_title' => 'Update Alert Settings',
+ 'alerts' => 'Powiadomienia',
+ 'alert_title' => 'Zaktualizuj ustawienia powiadomień',
'alert_email' => 'Wyślij powiadomienia do',
- 'alert_email_help' => 'Email addresses or distribution lists you want alerts to be sent to, comma separated',
+ 'alert_email_help' => 'Adresy e-mail lub list dystrybucyjnych, do których mają być wysyłane powiadomienia, oddzielone przecinkami',
'alerts_enabled' => 'Alarmy włączone',
'alert_interval' => 'Próg wygasających alarmów (w dniach)',
'alert_inv_threshold' => 'Inwentarz progu alarmów',
@@ -28,11 +28,11 @@ return [
'auto_increment_prefix' => 'Prefix (opcjonalnie)',
'auto_incrementing_help' => 'Enable auto-incrementing asset tags first to set this',
'backups' => 'Kopie zapasowe',
- 'backups_restoring' => 'Restoring from Backup',
- 'backups_upload' => 'Upload Backup',
- 'backups_path' => 'Backups on the server are stored in :path
',
+ 'backups_restoring' => 'Przywróć z kopii zapasowej',
+ 'backups_upload' => 'Prześlij kopię zapasową',
+ 'backups_path' => 'Kopie zapasowe na serwerze są przechowywane w :path
',
'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker. :db_column
but should be :expected .'
+ 'help_text' => 'Texto de Ajuda',
+ 'help_text_description' => 'Este é um texto opcional que irá aparecer abaixo dos elementos de formulário ao editar um ativo para fornecer o contexto no campo.',
+ 'about_custom_fields_title' => 'Sobre os campos personalizados',
+ 'about_custom_fields_text' => 'Campos personalizados permitem-lhe adicionar atributos arbitrários aos artigos.',
+ 'add_field_to_fieldset' => 'Adicionar Campo ao Conjunto de Campos',
+ 'make_optional' => 'Obrigatório - clique para tornar opcional',
+ 'make_required' => 'Opcional - clique para tornar obrigatório',
+ 'reorder' => 'Reordenar',
+ 'db_field' => 'Campo DB',
+ 'db_convert_warning' => 'AVISO. Este campo está na tabela de campos personalizados como :db_column
mas deve ser :expected .'
];
diff --git a/resources/lang/pt-PT/admin/depreciations/general.php b/resources/lang/pt-PT/admin/depreciations/general.php
index b4813c844d..96218e2342 100644
--- a/resources/lang/pt-PT/admin/depreciations/general.php
+++ b/resources/lang/pt-PT/admin/depreciations/general.php
@@ -6,11 +6,11 @@ return [
'asset_depreciations' => 'Depreciações dos Equipamentos',
'create' => 'Criar Depreciação',
'depreciation_name' => 'Nome da depreciação',
- 'depreciation_min' => 'Floor Value of Depreciation',
+ 'depreciation_min' => 'Valor base de Depreciação',
'number_of_months' => 'Número de mêses',
'update' => 'Actualizar depreciação',
'depreciation_min' => 'Valor Mínimo após a Depreciação',
- 'no_depreciations_warning' => 'Warning:
- You do not currently have any depreciations set up.
- Please set up at least one depreciation to view the depreciation report.',
+ 'no_depreciations_warning' => 'Aviso:
+ Não tem atualmente nenhuma depreciação configurada.
+ Por favor, defina pelo menos uma depreciação para visualizar o relatório de depreciação.',
];
diff --git a/resources/lang/pt-PT/admin/depreciations/table.php b/resources/lang/pt-PT/admin/depreciations/table.php
index d371120667..f75d000b31 100644
--- a/resources/lang/pt-PT/admin/depreciations/table.php
+++ b/resources/lang/pt-PT/admin/depreciations/table.php
@@ -6,6 +6,6 @@ return [
'months' => 'Meses',
'term' => 'Termo',
'title' => 'Nome ',
- 'depreciation_min' => 'Floor Value',
+ 'depreciation_min' => 'Valor base',
];
diff --git a/resources/lang/pt-PT/admin/groups/titles.php b/resources/lang/pt-PT/admin/groups/titles.php
index b6b44f0e1d..a7387ff648 100644
--- a/resources/lang/pt-PT/admin/groups/titles.php
+++ b/resources/lang/pt-PT/admin/groups/titles.php
@@ -10,7 +10,7 @@ return [
'group_admin' => 'Administrador do Grupo',
'allow' => 'Permitir',
'deny' => 'Recusar',
- 'permission' => 'Permission',
- 'grant' => 'Grant',
- 'no_permissions' => 'This group has no permissions.'
+ 'permission' => 'Permissão',
+ 'grant' => 'Permitir',
+ 'no_permissions' => 'Este grupo não tem permissões.'
];
diff --git a/resources/lang/pt-PT/admin/hardware/form.php b/resources/lang/pt-PT/admin/hardware/form.php
index 376e5fcf06..3430de1ccf 100644
--- a/resources/lang/pt-PT/admin/hardware/form.php
+++ b/resources/lang/pt-PT/admin/hardware/form.php
@@ -40,10 +40,10 @@ return [
'warranty' => 'Garantia',
'warranty_expires' => 'Garantia expira',
'years' => 'anos',
- 'asset_location' => 'Update Asset Location',
- 'asset_location_update_default_current' => 'Update default location AND actual location',
- 'asset_location_update_default' => 'Update only default location',
+ 'asset_location' => 'Atualizar a localização do artigo',
+ 'asset_location_update_default_current' => 'Atualizar a localização por defeito E localização atual',
+ 'asset_location_update_default' => 'Atualizar apenas a localização por defeito',
'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.',
'asset_deployable' => 'That status is deployable. This asset can be checked out.',
- 'processing_spinner' => 'Processing...',
+ 'processing_spinner' => 'A processar...',
];
diff --git a/resources/lang/pt-PT/admin/hardware/general.php b/resources/lang/pt-PT/admin/hardware/general.php
index a950a61e4e..dcf55ba085 100644
--- a/resources/lang/pt-PT/admin/hardware/general.php
+++ b/resources/lang/pt-PT/admin/hardware/general.php
@@ -39,5 +39,5 @@ return [
'error_messages' => 'Error messages:',
'success_messages' => 'Success messages:',
'alert_details' => 'Please see below for details.',
- 'custom_export' => 'Custom Export'
+ 'custom_export' => 'Exportação Personalizada'
];
diff --git a/resources/lang/pt-PT/general.php b/resources/lang/pt-PT/general.php
index 7b33dfe772..a505248f46 100644
--- a/resources/lang/pt-PT/general.php
+++ b/resources/lang/pt-PT/general.php
@@ -19,10 +19,10 @@
'asset' => 'Artigo',
'asset_report' => 'Relatório de Artigo',
'asset_tag' => 'Etiqueta de Artigo',
- 'asset_tags' => 'Asset Tags',
- 'assets_available' => 'Assets available',
- 'accept_assets' => 'Accept Assets :name',
- 'accept_assets_menu' => 'Accept Assets',
+ 'asset_tags' => 'Etiquetas de Artigo',
+ 'assets_available' => 'Artigos Disponíveis',
+ 'accept_assets' => 'Artigos Aceites :name',
+ 'accept_assets_menu' => 'Artigos Aceites',
'audit' => 'Auditoria',
'audit_report' => 'Registro de auditoria',
'assets' => 'Artigos',
@@ -33,11 +33,11 @@
'bulkaudit' => 'Auditoria em massa',
'bulkaudit_status' => 'Status da auditoria',
'bulk_checkout' => 'Saída em massa',
- 'bulk_edit' => 'Bulk Edit',
- 'bulk_delete' => 'Bulk Delete',
- 'bulk_actions' => 'Bulk Actions',
+ 'bulk_edit' => 'Editar em massa',
+ 'bulk_delete' => 'Eliminar em massa',
+ 'bulk_actions' => 'Ações em massa',
'bulk_checkin_delete' => 'Bulk Checkin & Delete',
- 'bystatus' => 'by Status',
+ 'bystatus' => 'por Estado',
'cancel' => 'Cancelar',
'categories' => 'Categorias',
'category' => 'Categoria',
@@ -65,12 +65,12 @@
'created' => 'Item criado',
'created_asset' => 'artigo criado',
'created_at' => 'Criado em',
- 'record_created' => 'Record Created',
+ 'record_created' => 'Registro criado',
'updated_at' => 'Atualizado em',
'currency' => '€', // this is deprecated
'current' => 'Atuais',
- 'current_password' => 'Current Password',
- 'customize_report' => 'Customize Report',
+ 'current_password' => 'Senha atual',
+ 'customize_report' => 'Personalizar relatório',
'custom_report' => 'Relatório de Artigo personalizado',
'dashboard' => 'Dashboard',
'days' => 'dias',
@@ -82,41 +82,41 @@
'delete_confirm' => 'Tem a certeza que deseja eliminar :item?',
'deleted' => 'Removidos',
'delete_seats' => 'Utilizadores apagados',
- 'deletion_failed' => 'Deletion failed',
+ 'deletion_failed' => 'Falha ao Eliminar',
'departments' => 'Departamentos',
'department' => 'Departamento',
'deployed' => 'Implementado',
'depreciation' => 'Depreciação',
- 'depreciations' => 'Depreciations',
+ 'depreciations' => 'Depreciação',
'depreciation_report' => 'Relatório de Depreciação',
'details' => 'Detalhes',
'download' => 'Download',
- 'download_all' => 'Download All',
+ 'download_all' => 'Descarregar todos',
'editprofile' => 'Editar o seu perfil',
'eol' => 'EOL (Fim de vida)',
'email_domain' => 'Email do Domínio',
'email_format' => 'Formato do Email',
'email_domain_help' => 'Isto é usado para criar endereços de email ao importar',
- 'error' => 'Error',
+ 'error' => 'Erro',
'filastname_format' => 'Primeira Inicial Último Nome(jsmith@example.com)',
'firstname_lastname_format' => 'Primeiro Nome Último Nome (jane.smith@example.com)',
'firstname_lastname_underscore_format' => 'Nome próprio e Sobrenome (jane_smith@exemplo.com)',
'lastnamefirstinitial_format' => 'Sobrenome Primeira Inicial (smithj@example.com)',
- 'firstintial_dot_lastname_format' => 'First Initial Last Name (j.smith@example.com)',
+ 'firstintial_dot_lastname_format' => 'Inicial Nome Próprio Sobrenome (j.smith@example.com)',
'first' => 'Primeiro',
- 'firstnamelastname' => 'First Name Last Name (janesmith@example.com)',
- 'lastname_firstinitial' => 'Last Name First Initial (smith_j@example.com)',
- 'firstinitial.lastname' => 'First Initial Last Name (j.smith@example.com)',
- 'firstnamelastinitial' => 'First Name Last Initial (janes@example.com)',
+ 'firstnamelastname' => 'Nome próprio Sobrenome (jane_smith@exemple.com)',
+ 'lastname_firstinitial' => 'Sobrenome Inicial Nome Próprio (smith_j@example.com)',
+ 'firstinitial.lastname' => 'Inicial Nome Próprio Sobrenome(j.smith@example.com)',
+ 'firstnamelastinitial' => 'Nome próprio Sobrenome (janes@exemple.com)',
'first_name' => 'Nome',
'first_name_format' => 'Primeiro Nome (jane@example.com)',
'files' => 'Ficheiros',
'file_name' => 'Ficheiro',
- 'file_type' => 'File Type',
+ 'file_type' => 'Tipo de ficheiro',
'file_uploads' => 'Upload de Ficheiros',
- 'file_upload' => 'File Upload',
+ 'file_upload' => 'Envio de Ficheiro',
'generate' => 'Gerar',
- 'generate_labels' => 'Generate Labels',
+ 'generate_labels' => 'Gerar Etiquetas',
'github_markdown' => 'Este campo aceita Github flavored markdown.',
'groups' => 'Grupos',
'gravatar_email' => 'Endereço de email do Gravatar',
@@ -127,20 +127,20 @@
'image' => 'Imagem',
'image_delete' => 'Apagar imagem',
'image_upload' => 'Carregar Imagem',
- 'filetypes_accepted_help' => 'Accepted filetype is :types. Max upload size allowed is :size.|Accepted filetypes are :types. Max upload size allowed is :size.',
- 'filetypes_size_help' => 'Max upload size allowed is :size.',
- 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.',
+ 'filetypes_accepted_help' => 'O tipo de arquivo aceito é :types. O tamanho máximo de upload permitido é :size.abroad. tipos de arquivos aceitos são :types. O tamanho máximo de upload permitido é :size.',
+ 'filetypes_size_help' => 'O tamanho máximo de upload permitido é :size.',
+ 'image_filetypes_help' => 'Os tipos de ficheiros aceites são jpg, webp, png, gif e svg. O tamanho máximo permitido para envio é de :size.',
'import' => 'Importar',
- 'importing' => 'Importing',
+ 'importing' => 'A importar',
'importing_help' => 'You can import assets, accessories, licenses, components, consumables, and users via CSV file. :db_column
but should be :expected .'
+ 'help_text' => 'Text de ajutor',
+ 'help_text_description' => 'Acesta este un text opțional care va apărea mai jos de elementele formularului în timp ce editezi un activ pentru a oferi informații contextuale pentru fiecare câmp.',
+ 'about_custom_fields_title' => 'Despre câmpuri personalizate',
+ 'about_custom_fields_text' => 'Câmpurile personalizate vă permit să adăugați atribute arbitrare la active.',
+ 'add_field_to_fieldset' => 'Adaugă câmp la un set de câmpuri',
+ 'make_optional' => 'Obligatoriu - faceți clic pentru a deveni opțional',
+ 'make_required' => 'Opțional - faceți clic pentru a deveni obligatoriu',
+ 'reorder' => 'Reordonare',
+ 'db_field' => 'Câmp în baza de date',
+ 'db_convert_warning' => 'AVERTISMENT. Acest câmp este în tabelul câmpurilor personalizate ca :db_column
dar ar trebui să fie :expected .'
];
diff --git a/resources/lang/ro/admin/groups/titles.php b/resources/lang/ro/admin/groups/titles.php
index 1406b60d1d..b9b5840963 100644
--- a/resources/lang/ro/admin/groups/titles.php
+++ b/resources/lang/ro/admin/groups/titles.php
@@ -10,7 +10,7 @@ return [
'group_admin' => 'Admin grup',
'allow' => 'Permite',
'deny' => 'Refuza',
- 'permission' => 'Permission',
- 'grant' => 'Grant',
- 'no_permissions' => 'This group has no permissions.'
+ 'permission' => 'Permisiune',
+ 'grant' => 'Permite',
+ 'no_permissions' => 'Acest grup nu are permisiuni.'
];
diff --git a/resources/lang/ro/admin/hardware/form.php b/resources/lang/ro/admin/hardware/form.php
index a8d03ac4e2..0e4fee502a 100644
--- a/resources/lang/ro/admin/hardware/form.php
+++ b/resources/lang/ro/admin/hardware/form.php
@@ -40,10 +40,10 @@ return [
'warranty' => 'Garantie',
'warranty_expires' => 'Garanția expiră',
'years' => 'Ani',
- 'asset_location' => 'Update Asset Location',
- 'asset_location_update_default_current' => 'Update default location AND actual location',
- 'asset_location_update_default' => 'Update only default location',
- 'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.',
- 'asset_deployable' => 'That status is deployable. This asset can be checked out.',
- 'processing_spinner' => 'Processing...',
+ 'asset_location' => 'Actualizați locația activului',
+ 'asset_location_update_default_current' => 'Actualizați locația implicită ȘI locația curentă',
+ 'asset_location_update_default' => 'Actualizați doar locația implicită',
+ 'asset_not_deployable' => 'Activul este indisponibil și nu poate fi eliberat.',
+ 'asset_deployable' => 'Activul e disponibil și poate fi eliberat.',
+ 'processing_spinner' => 'În curs de procesare...',
];
diff --git a/resources/lang/ro/admin/hardware/general.php b/resources/lang/ro/admin/hardware/general.php
index 9622c708bd..042269fafc 100644
--- a/resources/lang/ro/admin/hardware/general.php
+++ b/resources/lang/ro/admin/hardware/general.php
@@ -15,29 +15,29 @@ return [
'model_deleted' => 'Acest model de active a fost șters. Trebuie să restaurați modelul înainte de a putea restaura activul.',
'requestable' => 'Requestable',
'requested' => 'Solicitat',
- 'not_requestable' => 'Not Requestable',
+ 'not_requestable' => 'Nu poate fi solicitat',
'requestable_status_warning' => 'Do not change requestable status',
'restore' => 'Restabilirea activului',
'pending' => 'In asteptare',
'undeployable' => 'Nelansabil',
'view' => 'Vizualizeaza activ',
- 'csv_error' => 'You have an error in your CSV file:',
+ 'csv_error' => 'Aveți o eroare în fișierul dvs. CSV:',
'import_text' => '
- Upload a CSV that contains asset history. The assets and users MUST already exist in the system, or they will be skipped. Matching assets for history import happens against the asset tag. We will try to find a matching user based on the user\'s name you provide, and the criteria you select below. If you do not select any criteria below, it will simply try to match on the username format you configured in the Admin > General Settings. + Încărcați un CSV care conține istoricul activelor. Activele și utilizatorii TREBUIE să existe deja în sistem sau acestea vor fi ignorate. Potrivirea activelor pentru importul istoricului se face pe baza etichetei activului. Vom încerca să găsim un utilizator care se potrivește pe baza numelui de utilizator pe care îl furnizați, și a criteriilor pe care le selectați mai jos. Dacă nu selectați niciun criteriu de mai jos, va încerca potrivirea pe baza formatul numelui de utilizator configurat în Admin > Setări Generale.
-Fields included in the CSV must match the headers: Asset Tag, Name, Checkout Date, Checkin Date. Any additional fields will be ignored.
+Câmpurile incluse în CSV trebuie să se potrivească cu antetul: Etichetă Activ, Nume, Dată Predare, Dată Primire. Alte câmpuri suplimentare vor fi ignorate.
-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.
+Dată Primire: datele de primire în gestiune necompletate sau viitoare vor marca produsele ca predate către utilizatorul asociat. Dacă coloana Dată Primire este exclusă, data primirii în gestiune va fi data curentă.
', - 'csv_import_match_f-l' => 'Try to match users by firstname.lastname (jane.smith) format', - 'csv_import_match_initial_last' => 'Try to match users by first initial last name (jsmith) format', - 'csv_import_match_first' => 'Try to match users by first name (jane) format', - 'csv_import_match_email' => 'Try to match users by email as username', - 'csv_import_match_username' => 'Try to match users by username', - 'error_messages' => 'Error messages:', - 'success_messages' => 'Success messages:', - 'alert_details' => 'Please see below for details.', - 'custom_export' => 'Custom Export' + 'csv_import_match_f-l' => 'Încercați potrivirea utilizatorilor după prenume.nume de familie (de ex. jane.smith)', + 'csv_import_match_initial_last' => 'Încercați potrivirea utilizatorilor după inițiala numelui și numele de familie (de ex. jsmith)', + 'csv_import_match_first' => 'Încercați potrivirea utilizatorilor după prenume (de ex. jane)', + 'csv_import_match_email' => 'Încercați potrivirea utilizatorilor folosind emailul ca nume utilizator', + 'csv_import_match_username' => 'Încercați potrivirea utilizatorilor după numele de utilizator', + 'error_messages' => 'Mesaje de eroare:', + 'success_messages' => 'Mesaje de succes:', + 'alert_details' => 'Vezi mai jos pentru detalii.', + 'custom_export' => 'Export date personalizat' ]; diff --git a/resources/lang/ro/admin/hardware/message.php b/resources/lang/ro/admin/hardware/message.php index d11e4f1559..1fd82bc6ad 100644 --- a/resources/lang/ro/admin/hardware/message.php +++ b/resources/lang/ro/admin/hardware/message.php @@ -4,7 +4,7 @@ return [ 'undeployable' => 'Warning: Acest activ a fost marcat ca fiind în prezent nedelimitat. Dacă această stare sa modificat, actualizați starea activelor.', 'does_not_exist' => 'Activul nu exista.', - 'does_not_exist_or_not_requestable' => 'That asset does not exist or is not requestable.', + 'does_not_exist_or_not_requestable' => 'Acest activ nu există sau nu poate fi solicitat.', 'assoc_users' => 'Acest activ este predat catre un utilizator si nu se poate sterge. Va rugam verificati activul, dupa care incercati sa-l stergeti iar. ', 'create' => [ diff --git a/resources/lang/ro/admin/hardware/table.php b/resources/lang/ro/admin/hardware/table.php index 2567a73be6..8989ba9ac4 100644 --- a/resources/lang/ro/admin/hardware/table.php +++ b/resources/lang/ro/admin/hardware/table.php @@ -4,11 +4,11 @@ return [ 'asset_tag' => 'Eticheta activ', 'asset_model' => 'Model', - 'book_value' => 'Current Value', + 'book_value' => 'Valoarea Curentă', 'change' => 'Predat/Primit', 'checkout_date' => 'Data predare', 'checkoutto' => 'Predat', - 'current_value' => 'Current Value', + 'current_value' => 'Valoarea Curentă', 'diff' => 'Diferenta', 'dl_csv' => 'Descarca CSV', 'eol' => 'EOL', @@ -22,9 +22,9 @@ return [ 'image' => 'Imagine dispozitiv', 'days_without_acceptance' => 'Zile fără acceptare', 'monthly_depreciation' => 'Depreciere lunară', - 'assigned_to' => 'Assigned To', - 'requesting_user' => 'Requesting User', - 'requested_date' => 'Requested Date', - 'changed' => 'Changed', - 'icon' => 'Icon', + 'assigned_to' => 'Desemnat către', + 'requesting_user' => 'Utilizatorul solicitant', + 'requested_date' => 'Data solicitării', + 'changed' => 'Modificat', + 'icon' => 'Pictogramă', ]; diff --git a/resources/lang/ro/admin/locations/table.php b/resources/lang/ro/admin/locations/table.php index ebb654e255..298eee5f2e 100644 --- a/resources/lang/ro/admin/locations/table.php +++ b/resources/lang/ro/admin/locations/table.php @@ -20,16 +20,16 @@ return [ 'parent' => 'Mamă', 'currency' => 'Locație Monedă', 'ldap_ou' => 'LDAP Căutați OU', - 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', - 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', + 'user_name' => 'Nume utilizator', + 'department' => 'Departament', + 'location' => 'Locatie', + 'asset_tag' => 'Eticheta activului', + 'asset_name' => 'Nume', + 'asset_category' => 'Categorie', + 'asset_manufacturer' => 'Producator', 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', + 'asset_serial' => 'Serie', + 'asset_location' => 'Locatie', 'asset_checked_out' => 'Checked Out', 'asset_expected_checkin' => 'Expected Checkin', 'date' => 'Date:', diff --git a/resources/lang/ro/admin/settings/message.php b/resources/lang/ro/admin/settings/message.php index 87373491c3..a039bd2615 100644 --- a/resources/lang/ro/admin/settings/message.php +++ b/resources/lang/ro/admin/settings/message.php @@ -11,8 +11,8 @@ return [ 'file_deleted' => 'Fișierul de rezervă a fost șters cu succes.', 'generated' => 'Un nou dosar de rezervă a fost creat cu succes.', 'file_not_found' => 'Acest fișier de rezervă nu a putut fi găsit pe server.', - 'restore_warning' => 'Yes, restore it. I acknowledge that this will overwrite any existing data currently in the database. This will also log out all of your existing users (including you).', - 'restore_confirm' => 'Are you sure you wish to restore your database from :filename?' + 'restore_warning' => 'Da, restaurează. Confirm suprascrierea tuturor datelor existente în baza de date. Acest lucru va deconecta și pe toți utilizatorii curenți (inclusiv pe tine).', + 'restore_confirm' => 'Sunteți sigur că doriți restaurarea bazei de date din fișierul :filename?' ], 'purge' => [ 'error' => 'A apărut o eroare în timpul epurării.', @@ -20,10 +20,10 @@ return [ 'success' => 'Înregistrările șterse au fost eliminate cu succes.', ], 'mail' => [ - 'sending' => 'Sending Test Email...', - 'success' => 'Mail sent!', - 'error' => 'Mail could not be sent.', - 'additional' => 'No additional error message provided. Check your mail settings and your app log.' + 'sending' => 'Se trimite email-ul de test...', + 'success' => 'Email trimis!', + 'error' => 'Email-ul nu a putut fi trimis.', + 'additional' => 'Nu a fost furnizat nici un mesaj de eroare suplimentar. Verificați setările de email și logurile aplicației.' ], 'ldap' => [ 'testing' => 'Testing LDAP Connection, Binding & Query ...', diff --git a/resources/lang/ru/admin/companies/general.php b/resources/lang/ru/admin/companies/general.php index 68fde7a656..3a21faaf63 100644 --- a/resources/lang/ru/admin/companies/general.php +++ b/resources/lang/ru/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Выберите компанию', - 'about_companies' => 'About Companies', - 'about_companies_description' => ' You can use companies as a simple informative field, or you can use them to restrict asset visibility and availability to users with a specific company by enabling Full Company Support in your Admin Settings.', + 'about_companies' => 'О компаниях', + 'about_companies_description' => ' Вы можете использовать компании в качестве простого информационного поля или использовать их для ограничения видимости и доступности активов для пользователей определенной компании, включив полную поддержку компании в настройках администратора.', ]; diff --git a/resources/lang/ru/admin/custom_fields/general.php b/resources/lang/ru/admin/custom_fields/general.php index 346da7c714..4149989f36 100644 --- a/resources/lang/ru/admin/custom_fields/general.php +++ b/resources/lang/ru/admin/custom_fields/general.php @@ -2,11 +2,11 @@ return [ 'custom_fields' => 'Настраиваемые поля', - 'manage' => 'Manage', + 'manage' => 'Управление', 'field' => 'Поле', 'about_fieldsets_title' => 'О наборах полей', - 'about_fieldsets_text' => 'Fieldsets allow you to create groups of custom fields that are frequently re-used for specific asset model types.', - 'custom_format' => 'Custom Regex format...', + 'about_fieldsets_text' => 'Наборы полей позволяют вам создавать группы пользовательских полей, которые часто используются для конкретных типов модели активов.', + 'custom_format' => 'Пользовательский формат регулярных выражений...', 'encrypt_field' => 'Зашифровать значение этого поля в базе данных', 'encrypt_field_help' => 'ПРЕДУПРЕЖДЕНИЕ: Шифрование поля исключит возможность его поиска.', 'encrypted' => 'Зашифровано', @@ -27,19 +27,19 @@ return [ 'used_by_models' => 'Использован в моделях', 'order' => 'Порядок', 'create_fieldset' => 'Новый набор полей', - 'create_fieldset_title' => 'Create a new fieldset', + 'create_fieldset_title' => 'Создайте новый набор полей', 'create_field' => 'Новое настраиваемое поле', - 'create_field_title' => 'Create a new custom field', + 'create_field_title' => 'Создайте новое настраиваемое поле', 'value_encrypted' => 'Значение этого поля зашифровано в базе данных. Только администраторам будет доступно для просмотра расшифрованное значение', 'show_in_email' => 'Включить значение этого поля в письма, которое будет отправлено пользователю? Зашифрованные поля не могут быть включены в сообщения электронной почты.', - 'help_text' => 'Help Text', - 'help_text_description' => 'This is optional text that will appear below the form elements while editing an asset to provide context on the field.', - 'about_custom_fields_title' => 'About Custom Fields', - 'about_custom_fields_text' => 'Custom fields allow you to add arbitrary attributes to assets.', - 'add_field_to_fieldset' => 'Add Field to Fieldset', - 'make_optional' => 'Required - click to make optional', - 'make_required' => 'Optional - click to make required', - 'reorder' => 'Reorder', - 'db_field' => 'DB Field', - 'db_convert_warning' => 'WARNING. This field is in the custom fields table as :db_column
but should be :expected .'
+ 'help_text' => 'Текст справки',
+ 'help_text_description' => 'Это необязательный текст, который будет отображаться под элементами формы при редактировании ресурса для предоставления контекста в поле.',
+ 'about_custom_fields_title' => 'О пользовательских полях',
+ 'about_custom_fields_text' => 'Настраиваемые поля позволяют добавлять произвольные атрибуты к ресурсам.',
+ 'add_field_to_fieldset' => 'Добавить поле к набору полей',
+ 'make_optional' => 'Требуется - нажмите чтобы сделать необязательным',
+ 'make_required' => 'Необязательное - нажмите чтобы сделать обязательным',
+ 'reorder' => 'Изменить порядок',
+ 'db_field' => 'Поле БД',
+ 'db_convert_warning' => 'ВНИМАНИЕ. Это поле находится в пользовательской таблице как :db_column
но должно быть :expected .'
];
diff --git a/resources/lang/ru/admin/settings/general.php b/resources/lang/ru/admin/settings/general.php
index 71e743e03b..24fd3a968f 100644
--- a/resources/lang/ru/admin/settings/general.php
+++ b/resources/lang/ru/admin/settings/general.php
@@ -115,9 +115,9 @@ return [
'license' => 'Лицензия на ПО',
'load_remote_text' => 'Внешние скрипты',
'load_remote_help_text' => 'Данная установка Snipe-IT может загружать внешние скрипты.',
- 'login' => 'Login Attempts',
+ 'login' => 'Попытки входа',
'login_attempt' => 'Login Attempt',
- 'login_ip' => 'IP Address',
+ 'login_ip' => 'IP-адрес',
'login_success' => 'Success?',
'login_user_agent' => 'User Agent',
'login_help' => 'List of attempted logins',
diff --git a/resources/lang/ru/button.php b/resources/lang/ru/button.php
index f642ccc8bb..e996d9f266 100644
--- a/resources/lang/ru/button.php
+++ b/resources/lang/ru/button.php
@@ -20,5 +20,5 @@ return [
'bulk_actions' => 'Bulk Actions',
'add_maintenance' => 'Add Maintenance',
'append' => 'Append',
- 'new' => 'New',
+ 'new' => 'Создать',
];
diff --git a/resources/lang/ru/general.php b/resources/lang/ru/general.php
index 75b196fb33..00b45c3ac3 100644
--- a/resources/lang/ru/general.php
+++ b/resources/lang/ru/general.php
@@ -97,7 +97,7 @@
'email_domain' => 'Домен адреса электронной почты',
'email_format' => 'Формат адреса электронной почты',
'email_domain_help' => 'Он используется для генерации адреса при импорте',
- 'error' => 'Error',
+ 'error' => 'Ошибка',
'filastname_format' => 'Первая буква имени и фамилия (jsmith@example.com)',
'firstname_lastname_format' => 'Имя и фамилия через точку (jane.smith@example.com)',
'firstname_lastname_underscore_format' => 'Имя и фамилия (jane_smith@example.com)',
@@ -169,7 +169,7 @@
'months' => 'Месяцев',
'moreinfo' => 'Подробнее',
'name' => 'Имя',
- 'new_password' => 'New Password',
+ 'new_password' => 'Новый пароль',
'next' => 'Далее',
'next_audit_date' => 'Следующая дата аудита',
'last_audit' => 'Последний аудит',
@@ -207,7 +207,7 @@
'request_canceled' => 'Запрос отменен',
'save' => 'Сохранить',
'select' => 'Выбор',
- 'select_all' => 'Select All',
+ 'select_all' => 'Выбрать все',
'search' => 'Поиск',
'select_category' => 'Выберите категорию',
'select_department' => 'Выбрать департамент',
@@ -310,34 +310,34 @@
'information' => 'Information',
'permissions' => 'Permissions',
'managed_ldap' => '(Managed via LDAP)',
- 'export' => 'Export',
+ 'export' => 'Экспорт',
'ldap_sync' => 'LDAP Sync',
'ldap_user_sync' => 'LDAP User Sync',
'synchronize' => 'Synchronize',
'sync_results' => 'Synchronization Results',
- 'license_serial' => 'Serial/Product Key',
- 'invalid_category' => 'Invalid category',
+ 'license_serial' => 'Серийный номер/Ключ продукта',
+ 'invalid_category' => 'Неверная категория',
'dashboard_info' => 'This is your dashboard. There are many like it, but this one is yours.',
- '60_percent_warning' => '60% Complete (warning)',
+ '60_percent_warning' => '60% выполнено (предупреждение)',
'dashboard_empty' => 'It looks like you haven not added anything yet, so we do not have anything awesome to display. Get started by adding some assets, accessories, consumables, or licenses now!',
- 'new_asset' => 'New Asset',
+ 'new_asset' => 'Создать актив',
'new_license' => 'New License',
- 'new_accessory' => 'New Accessory',
- 'new_consumable' => 'New Consumable',
+ 'new_accessory' => 'Создать аксессуар',
+ 'new_consumable' => 'Создать новый расходник',
'collapse' => 'Collapse',
'assigned' => 'Assigned',
- 'asset_count' => 'Asset Count',
- 'accessories_count' => 'Accessories Count',
- 'consumables_count' => 'Consumables Count',
- 'components_count' => 'Components Count',
+ 'asset_count' => 'Количество активов',
+ 'accessories_count' => 'Количество аксессуаров',
+ 'consumables_count' => 'Количество расходников',
+ 'components_count' => 'Количество компонентов',
'licenses_count' => 'Licenses Count',
- 'notification_error' => 'Error:',
+ 'notification_error' => 'Ошибка:',
'notification_error_hint' => 'Please check the form below for errors',
- 'notification_success' => 'Success:',
- 'notification_warning' => 'Warning:',
- 'notification_info' => 'Info:',
+ 'notification_success' => 'Успешно:',
+ 'notification_warning' => 'Внимание:',
+ 'notification_info' => 'Информация:',
'asset_information' => 'Asset Information',
- 'model_name' => 'Model Name:',
+ 'model_name' => 'Название модели:',
'asset_name' => 'Asset Name:',
'consumable_information' => 'Consumable Information:',
'consumable_name' => 'Consumable Name:',
diff --git a/resources/lang/ru/help.php b/resources/lang/ru/help.php
index 69ca0c88d1..4b9fa3bbd5 100644
--- a/resources/lang/ru/help.php
+++ b/resources/lang/ru/help.php
@@ -19,9 +19,9 @@ return [
'assets' => 'Assets are items tracked by serial number or asset tag. They tend to be higher value items where identifying a specific item matters.',
- '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.',
+ 'accessories' => 'Аксессуары — это периферийное оборудование, которое выдаётся пользователям, но не имеет серийного номера (или вам не требуется его учитывать индивидуально). Например, компьютерная мышь или клавиатура.',
'companies' => 'Companies can be used as a simple identifier field, or can be used to limit visibility of assets, users, etc if full company support is enabled in your Admin settings.',
diff --git a/resources/lang/ru/validation.php b/resources/lang/ru/validation.php
index ab235fe40c..4777ae69ec 100644
--- a/resources/lang/ru/validation.php
+++ b/resources/lang/ru/validation.php
@@ -64,7 +64,7 @@ return [
'string' => ':attribute должно быть не менее :min символов.',
'array' => 'Атрибут: должен содержать не менее: мин.',
],
- 'starts_with' => 'The :attribute must start with one of the following: :values.',
+ 'starts_with' => ':attribute должен начинаться с одного из следующих значений: :values.',
'not_in' => 'Выбранный :attribute неправильный.',
'numeric' => ':attribute должно быть числом.',
'present' => 'Поле атрибута: должно присутствовать.',
diff --git a/resources/lang/sk/admin/settings/general.php b/resources/lang/sk/admin/settings/general.php
index 1140904128..7d654e5a4c 100644
--- a/resources/lang/sk/admin/settings/general.php
+++ b/resources/lang/sk/admin/settings/general.php
@@ -10,8 +10,8 @@ return [
'admin_cc_email' => 'Kópia e-mailu',
'admin_cc_email_help' => 'Ak chcete poslať kópiu potvrdzujúceho emailu o prevzatí / odovzdaní, ktorý sa posiela používateľom, aj na ďalšiu e-mailovú adresu, tu ju zadajte. V opačnom prípade nechajte políčko prázdne.',
'is_ad' => 'Toto je server typu Active Directory',
- 'alerts' => 'Alerts',
- 'alert_title' => 'Update Alert Settings',
+ 'alerts' => 'Upozornenia',
+ 'alert_title' => 'Aktualizovať nastavenia upozornení',
'alert_email' => 'Poslať varovania na adresu',
'alert_email_help' => 'Email addresses or distribution lists you want alerts to be sent to, comma separated',
'alerts_enabled' => 'Povoliť varovania mailom',
@@ -115,9 +115,9 @@ return [
'license' => 'Softvérová licencia',
'load_remote_text' => 'Remote Scripts',
'load_remote_help_text' => 'This Snipe-IT install can load scripts from the outside world.',
- 'login' => 'Login Attempts',
- 'login_attempt' => 'Login Attempt',
- 'login_ip' => 'IP Address',
+ 'login' => 'Pokusy o prihlásenie',
+ 'login_attempt' => 'Pokus o prihlásenie',
+ 'login_ip' => 'IP adresa',
'login_success' => 'Success?',
'login_user_agent' => 'User Agent',
'login_help' => 'List of attempted logins',
@@ -143,17 +143,17 @@ return [
'php' => 'PHP verzia',
'php_info' => 'PHP Info',
'php_overview' => 'PHP',
- 'php_overview_keywords' => 'phpinfo, system, info',
- 'php_overview_help' => 'PHP System info',
+ 'php_overview_keywords' => 'phpinfo, systém, info',
+ 'php_overview_help' => 'PHP systémové info',
'php_gd_info' => 'Musíte nainštalovať php-gd ak chcete zobrazovať QR kódu. Viac v inštalačnej príručke.',
'php_gd_warning' => 'PHP plugin pre spracovanie obrázkov a GD plugin nie sú nainštalované.',
'pwd_secure_complexity' => 'Komplexnosť hesla',
'pwd_secure_complexity_help' => 'Vyberte ktoré pravidlá pre zvýšenie bezpečnosti chcete vyžadovať.',
- 'pwd_secure_complexity_disallow_same_pwd_as_user_fields' => 'Password cannot be the same as first name, last name, email, or username',
- 'pwd_secure_complexity_letters' => 'Require at least one letter',
- 'pwd_secure_complexity_numbers' => 'Require at least one number',
- 'pwd_secure_complexity_symbols' => 'Require at least one symbol',
- 'pwd_secure_complexity_case_diff' => 'Require at least one uppercase and one lowercase',
+ 'pwd_secure_complexity_disallow_same_pwd_as_user_fields' => 'Heslo nemôže byť rovnaké ako krstné meno, priezvisko, email alebo užívateľské meno',
+ 'pwd_secure_complexity_letters' => 'Požadované minimálne jedno písmeno',
+ 'pwd_secure_complexity_numbers' => 'Požadované minimálne jedno číslo',
+ 'pwd_secure_complexity_symbols' => 'Požadované minimálne jeden znak',
+ 'pwd_secure_complexity_case_diff' => 'Požadované minimálne jedno veľké a jedno malé písmeno',
'pwd_secure_min' => 'Minimálny počet znakov',
'pwd_secure_min_help' => 'Minimálne povolená hodnota je 8',
'pwd_secure_uncommon' => 'Zabraňte bežným heslám',
@@ -161,8 +161,8 @@ return [
'qr_help' => 'K nastaveniu je potrebné najprv povoliť QR kód',
'qr_text' => 'Text QR kódu',
'saml' => 'SAML',
- 'saml_title' => 'Update SAML settings',
- 'saml_help' => 'SAML settings',
+ 'saml_title' => 'Aktualizovať SAML nastavenia',
+ 'saml_help' => 'SAML nastavenia',
'saml_enabled' => 'SAML povolené',
'saml_integration' => 'SAML integrácia',
'saml_sp_entityid' => 'ID entitz',
@@ -182,7 +182,7 @@ return [
'saml_slo_help' => 'Zabezpečí presmerovanie používateľa na IdP pri odhlásení. Nechajte odkliknuté ak IdP plnohodnotene nepodporuje SP-inicializovaný SAML SLO.',
'saml_custom_settings' => 'SAML vlastné nastavenia',
'saml_custom_settings_help' => 'Možete špecifikovať dodatočné nastavenia pre onelogin/php-saml knižnicu. Použitie na vlastné nebezpečensto.',
- 'saml_download' => 'Download Metadata',
+ 'saml_download' => 'Stiahnuť metadáta',
'setting' => 'Nastavenie',
'settings' => 'Nastavenia',
'show_alerts_in_menu' => 'Zobraziť upozornenia v hornom menu',
@@ -194,8 +194,8 @@ return [
'show_images_in_email_help' => 'Odznačne toto políčko ak je Vaša Snipe-IT inštalácia za VPN alebo uzavretou sieťou a používatelia mimo siete nebudú mocť zobraziť obrázky z tejto inštancie v ich mailoch.',
'site_name' => 'Názov stránky',
'slack' => 'Slack',
- 'slack_title' => 'Update Slack Settings',
- 'slack_help' => 'Slack settings',
+ 'slack_title' => 'Aktualizovať Slack nastavenia',
+ 'slack_help' => 'Slack nastavenia',
'slack_botname' => 'Slack Botname',
'slack_channel' => 'Slack kanál',
'slack_endpoint' => 'Slack koncový bod',
@@ -212,8 +212,8 @@ return [
'update' => 'Aktualizovať nastavenia',
'value' => 'Hodnota',
'brand' => 'Branding',
- 'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css',
- 'brand_help' => 'Logo, Site Name',
+ 'brand_keywords' => 'päta, logo, tlač, téma, skin, hlavička, farby, farba, css',
+ 'brand_help' => 'Logo, Názov stránky',
'web_brand' => 'Typ webového brandingu',
'about_settings_title' => 'O nastaveniach',
'about_settings_text' => 'Tieto nastavenia umožňujú upraviť vybrané aspekty Vašej inštalácie.',
@@ -271,51 +271,51 @@ return [
'unique_serial_help_text' => 'Checking this box will enforce a uniqueness constraint on asset serials',
'zerofill_count' => 'Length of asset tags, including zerofill',
'username_format_help' => 'This setting will only be used by the import process if a username is not provided and we have to generate a username for you.',
- 'oauth_title' => 'OAuth API Settings',
+ 'oauth_title' => 'OAuth API nastavenia ',
'oauth' => 'OAuth',
'oauth_help' => 'Oauth Endpoint Settings',
'asset_tag_title' => 'Update Asset Tag Settings',
'barcode_title' => 'Update Barcode Settings',
- 'barcodes' => 'Barcodes',
- 'barcodes_help_overview' => 'Barcode & QR settings',
+ 'barcodes' => 'Čiarové kódy',
+ 'barcodes_help_overview' => 'Čiarový kód & QR nastavenia',
'barcodes_help' => 'This will attempt to delete cached barcodes. This would typically only be used if your barcode settings have changed, or if your Snipe-IT URL has changed. Barcodes will be re-generated when accessed next.',
- 'barcodes_spinner' => 'Attempting to delete files...',
- 'barcode_delete_cache' => 'Delete Barcode Cache',
- 'branding_title' => 'Update Branding Settings',
- 'general_title' => 'Update General Settings',
- 'mail_test' => 'Send Test',
+ 'barcodes_spinner' => 'Pokus o mazanie súborov...',
+ 'barcode_delete_cache' => 'Vymazať cache čiarových kódov',
+ 'branding_title' => 'Aktualizovať nastavenia značky',
+ 'general_title' => 'Aktualizovať všeobecné nastavenia',
+ 'mail_test' => 'Poslať Test',
'mail_test_help' => 'This will attempt to send a test mail to :replyto.',
'filter_by_keyword' => 'Filter by setting keyword',
- 'security' => 'Security',
- 'security_title' => 'Update Security Settings',
- 'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication',
+ 'security' => 'Zabezpečenie',
+ 'security_title' => 'Aktualizovať nastavenia zabezpečenia',
+ 'security_keywords' => 'heslo, heslá, požiadavky, dvoj faktorové, dvoj-faktorové, bežné heslá, vzdialené prihlásenie, odhlásenie, autentifikácia',
'security_help' => 'Two-factor, Password Restrictions',
'groups_keywords' => 'permissions, permission groups, authorization',
'groups_help' => 'Account permission groups',
'localization' => 'Localization',
'localization_title' => 'Update Localization Settings',
'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation',
- 'localization_help' => 'Language, date display',
- 'notifications' => 'Notifications',
- 'notifications_help' => 'Email alerts, audit settings',
+ 'localization_help' => 'Jazyk, zobrazenie dátumu',
+ 'notifications' => 'Notifikácie',
+ 'notifications_help' => 'Emailové upozornenia, nastavenia autitu',
'asset_tags_help' => 'Incrementing and prefixes',
- 'labels' => 'Labels',
- 'labels_title' => 'Update Label Settings',
- 'labels_help' => 'Label sizes & settings',
+ 'labels' => 'Štítky',
+ 'labels_title' => 'Aktualizovať nastavenia štítka',
+ 'labels_help' => 'Veľkosti štítka & nastavenia',
'purge' => 'Purge',
- 'purge_keywords' => 'permanently delete',
+ 'purge_keywords' => 'natrvalo odstrániť',
'purge_help' => 'Purge Deleted Records',
'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.',
'ldap_ad' => 'LDAP/AD',
- 'employee_number' => 'Employee Number',
- 'create_admin_user' => 'Create a User ::',
- 'create_admin_success' => 'Success! Your admin user has been added!',
+ 'employee_number' => 'Číslo zamestnanca',
+ 'create_admin_user' => 'Vytvoriť Užívateľa ::',
+ 'create_admin_success' => 'Úspech! Váš admin užívateľ bol pridaný!',
'create_admin_redirect' => 'Click here to go to your app login!',
- 'setup_migrations' => 'Database Migrations ::',
+ 'setup_migrations' => 'Migrácie databázy ::',
'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!',
'setup_successful_migrations' => 'Your database tables have been created',
'setup_migration_output' => 'Migration output:',
'setup_migration_create_user' => 'Next: Create User',
- 'ldap_settings_link' => 'LDAP Settings Page',
+ 'ldap_settings_link' => 'Stránka nastavenia LDAP',
'slack_test' => 'Test Integration',
];
diff --git a/resources/lang/sk/auth/general.php b/resources/lang/sk/auth/general.php
index 78b6780927..571117c1d9 100644
--- a/resources/lang/sk/auth/general.php
+++ b/resources/lang/sk/auth/general.php
@@ -1,16 +1,16 @@
'Send Password Reset Link',
- 'email_reset_password' => 'Email Password Reset',
- 'reset_password' => 'Reset Password',
- 'saml_login' => 'Login via SAML',
- 'login' => 'Login',
- 'login_prompt' => 'Please Login',
- 'forgot_password' => 'I forgot my password',
- 'ldap_reset_password' => 'Please click here to reset your LDAP password',
- 'remember_me' => 'Remember Me',
- 'username_help_top' => 'Enter your username to be emailed a password reset link.',
- 'username_help_bottom' => 'Your username and email address may be the same, but may not be, depending on your configuration. If you cannot remember your username, contact your administrator. Select the fields you would like to include in your custom report, and click Generate. The file (custom-asset-report-YYYY-mm-dd.csv) will download automatically, and you can open it in Excel.
If you would like to export only certain assets, use the options below to fine-tune your results.
', - 'range' => 'Range', + 'range' => 'Rozsah', 'bom_remark' => 'Add a BOM (byte-order mark) to this CSV', - 'improvements' => 'Improvements', - 'information' => 'Information', - 'permissions' => 'Permissions', - 'managed_ldap' => '(Managed via LDAP)', - 'export' => 'Export', - 'ldap_sync' => 'LDAP Sync', - 'ldap_user_sync' => 'LDAP User Sync', - 'synchronize' => 'Synchronize', + 'improvements' => 'Vylepšenia', + 'information' => 'Informácie', + 'permissions' => 'Oprávnenia', + 'managed_ldap' => '(Manažovať cez LDAP)', + 'export' => 'Exportovať', + 'ldap_sync' => 'LDAP synchronizácia', + 'ldap_user_sync' => 'LDAP užívateľská synchronizácia', + 'synchronize' => 'Synchronizovať', 'sync_results' => 'Synchronization Results', - 'license_serial' => 'Serial/Product Key', - 'invalid_category' => 'Invalid category', - 'dashboard_info' => 'This is your dashboard. There are many like it, but this one is yours.', - '60_percent_warning' => '60% Complete (warning)', - 'dashboard_empty' => 'It looks like you haven not added anything yet, so we do not have anything awesome to display. Get started by adding some assets, accessories, consumables, or licenses now!', - 'new_asset' => 'New Asset', - 'new_license' => 'New License', - 'new_accessory' => 'New Accessory', - 'new_consumable' => 'New Consumable', + 'license_serial' => 'Sériové číslo/Produktový kľúč', + 'invalid_category' => 'Nesprávna kategória', + 'dashboard_info' => 'Toto je Vaša nástenka. Je ich veľa podobných, ale toto táto konkrétna je Vaša.', + '60_percent_warning' => '60% hotové (pozor)', + 'dashboard_empty' => 'Zdá sa, že ste ešte nič nepridali, takže nemáme nič úžasné na zobrazenie. Začnite pridaním nejakého majetku/assetu, príslušenstva, spotrebného materiálu alebo licencií hneď teraz!', + 'new_asset' => 'Nový asset/majetok', + 'new_license' => 'Nová licencia', + 'new_accessory' => 'Nové príslušenstvo', + 'new_consumable' => 'Nový spotrebný materiál', 'collapse' => 'Collapse', - 'assigned' => 'Assigned', + 'assigned' => 'Priradené', 'asset_count' => 'Asset Count', 'accessories_count' => 'Accessories Count', 'consumables_count' => 'Consumables Count', 'components_count' => 'Components Count', 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error:', + 'notification_error' => 'Chyba:', 'notification_error_hint' => 'Please check the form below for errors', 'notification_success' => 'Success:', - 'notification_warning' => 'Warning:', + 'notification_warning' => 'Upozornenie:', 'notification_info' => 'Info:', 'asset_information' => 'Asset Information', - 'model_name' => 'Model Name:', - 'asset_name' => 'Asset Name:', + 'model_name' => 'Názov modelu', + 'asset_name' => 'Názov assetu/majetku:', 'consumable_information' => 'Consumable Information:', 'consumable_name' => 'Consumable Name:', 'accessory_information' => 'Accessory Information:', 'accessory_name' => 'Accessory Name:', - 'clone_item' => 'Clone Item', + 'clone_item' => 'Duplikovať položku', 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', 'checkout_user_tooltip' => 'Check this item out to a user', diff --git a/resources/lang/sk/table.php b/resources/lang/sk/table.php index f7a49d86c1..a27158be03 100644 --- a/resources/lang/sk/table.php +++ b/resources/lang/sk/table.php @@ -2,9 +2,9 @@ return array( - 'actions' => 'Actions', - 'action' => 'Action', - 'by' => 'By', - 'item' => 'Item', + 'actions' => 'Akcie', + 'action' => 'Akcia', + 'by' => 'Podľa', + 'item' => 'Položka', ); diff --git a/resources/lang/tr/admin/hardware/form.php b/resources/lang/tr/admin/hardware/form.php index 630a4566c2..44c5c85973 100644 --- a/resources/lang/tr/admin/hardware/form.php +++ b/resources/lang/tr/admin/hardware/form.php @@ -40,9 +40,9 @@ return [ 'warranty' => 'Garanti', 'warranty_expires' => 'Garanti Süresi Sona Erdi', 'years' => 'yıl', - 'asset_location' => 'Update Asset Location', - 'asset_location_update_default_current' => 'Update default location AND actual location', - 'asset_location_update_default' => 'Update only default location', + 'asset_location' => 'Varlık konumunu güncelle', + 'asset_location_update_default_current' => 'Varsayılan konumu ve gerçek konumu güncelle', + 'asset_location_update_default' => 'Sadece varsayılan konumu güncelle', 'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.', 'asset_deployable' => 'That status is deployable. This asset can be checked out.', 'processing_spinner' => 'Processing...', diff --git a/resources/lang/tr/admin/hardware/table.php b/resources/lang/tr/admin/hardware/table.php index 203a5c721d..9364824d0a 100644 --- a/resources/lang/tr/admin/hardware/table.php +++ b/resources/lang/tr/admin/hardware/table.php @@ -4,7 +4,7 @@ return [ 'asset_tag' => 'Demirbaş Etiketi', 'asset_model' => 'Model', - 'book_value' => 'Current Value', + 'book_value' => 'Son Değer', 'change' => 'Giriş/Çıkış', 'checkout_date' => 'Çıkış Tarihi', 'checkoutto' => 'Çıkış Yapıldı', @@ -23,8 +23,8 @@ return [ 'days_without_acceptance' => 'Kabul edilmeden geçen gün', 'monthly_depreciation' => 'Aylık Amortisman', 'assigned_to' => 'Assigned To', - 'requesting_user' => 'Requesting User', - 'requested_date' => 'Requested Date', - 'changed' => 'Changed', + 'requesting_user' => 'Talep Sahibi', + 'requested_date' => 'Talep Edilen Tarih', + 'changed' => 'Değişti', 'icon' => 'Icon', ]; diff --git a/resources/lang/tr/admin/kits/general.php b/resources/lang/tr/admin/kits/general.php index 68bff4ba68..db1ec2690f 100644 --- a/resources/lang/tr/admin/kits/general.php +++ b/resources/lang/tr/admin/kits/general.php @@ -16,21 +16,21 @@ return [ 'append_accessory' => 'Append Accessory', 'update_appended_accessory' => 'Update appended Accessory', 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', + 'update_appended_consumable' => 'Eklenmiş sarf malzemeyi güncelle', + 'append_license' => 'Lisans ekle', + 'update_appended_license' => 'Eklenmiş lisansı güncelle', + 'append_model' => 'Model ekle', 'update_appended_model' => 'Update appended model', 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', + 'license_added_success' => 'Lisans sorunsuz eklendi', 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', + 'license_none' => 'Lisans mevcut değil', 'license_detached' => 'License was successfully detached', 'consumable_added_success' => 'Consumable added successfully', 'consumable_updated' => 'Consumable was successfully updated', 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', + 'consumable_deleted' => 'Silme işlemi sorunsuz tamamlandı', + 'consumable_none' => 'Sarf malzeme mevcut değil', 'consumable_detached' => 'Consumable was successfully detached', 'accessory_added_success' => 'Accessory added successfully', 'accessory_updated' => 'Accessory was successfully updated', diff --git a/resources/lang/tr/admin/locations/table.php b/resources/lang/tr/admin/locations/table.php index e3db283227..7de0dca0e7 100644 --- a/resources/lang/tr/admin/locations/table.php +++ b/resources/lang/tr/admin/locations/table.php @@ -20,19 +20,19 @@ return [ 'parent' => 'Üst', 'currency' => 'Lokasyon Para Birimi', 'ldap_ou' => 'LDAP arama OU', - 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', - 'asset_tag' => 'Assets Tag', + 'user_name' => 'Kullancı Adı', + 'department' => 'Bölüm', + 'location' => 'Yer', + 'asset_tag' => 'Demirbaş Etiketi', 'asset_name' => 'Name', - 'asset_category' => 'Category', + 'asset_category' => 'Kategori', 'asset_manufacturer' => 'Manufacturer', 'asset_model' => 'Model', 'asset_serial' => 'Serial', 'asset_location' => 'Location', 'asset_checked_out' => 'Checked Out', 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', + 'date' => 'Tarih:', 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', 'signed_by_location_manager' => 'Signed By (Location Manager):', diff --git a/resources/lang/tr/admin/reports/general.php b/resources/lang/tr/admin/reports/general.php index 5c21feda6f..c29a40d2b9 100644 --- a/resources/lang/tr/admin/reports/general.php +++ b/resources/lang/tr/admin/reports/general.php @@ -2,8 +2,8 @@ return [ 'info' => 'Demirbaş Raporu için istediğiniz seçenekleri seçiniz.', - 'deleted_user' => 'Deleted user', - 'send_reminder' => 'Send reminder', + 'deleted_user' => 'Kullanıcı silindi', + 'send_reminder' => 'Hatırlatma gönder', 'reminder_sent' => 'Reminder sent', 'acceptance_deleted' => 'Acceptance request deleted', 'acceptance_request' => 'Acceptance request' diff --git a/resources/lang/tr/admin/settings/general.php b/resources/lang/tr/admin/settings/general.php index 4517d5b77b..845b842ee8 100644 --- a/resources/lang/tr/admin/settings/general.php +++ b/resources/lang/tr/admin/settings/general.php @@ -33,7 +33,7 @@ return [ 'backups_path' => 'Yedeklerin sunucuda saklanacağı yer:path
',
'backups_restore_warning' => 'Geri yükleme butonunu kullanın önceki yedeklemelerden (Şu anda "S3 file storage" yada "Docker" çalışmıyor. :db_column
but should be :expected .'
+ 'help_text' => '帮助文本',
+ 'help_text_description' => '这是可选文本,在编辑一个资产以提供字段上下文时将显示在表单元素下方。',
+ 'about_custom_fields_title' => '关于自定义字段',
+ 'about_custom_fields_text' => '自定义字段允许您向资产添加任意属性。',
+ 'add_field_to_fieldset' => '添加字段到字段集',
+ 'make_optional' => '必填 - 点击转为可选项',
+ 'make_required' => '可选 - 点击转为必填项',
+ 'reorder' => '重新排序',
+ 'db_field' => '数据库字段',
+ 'db_convert_warning' => '警告。该字段在自定义字段表中为 :db_column
但应该是 :expected '
];
diff --git a/resources/lang/zh-CN/admin/depreciations/general.php b/resources/lang/zh-CN/admin/depreciations/general.php
index 44722c7f67..eb1022237c 100644
--- a/resources/lang/zh-CN/admin/depreciations/general.php
+++ b/resources/lang/zh-CN/admin/depreciations/general.php
@@ -6,11 +6,11 @@ return [
'asset_depreciations' => '资产折旧',
'create' => '新建折旧',
'depreciation_name' => '折旧名称',
- 'depreciation_min' => 'Floor Value of Depreciation',
+ 'depreciation_min' => '折旧底值',
'number_of_months' => '月数',
'update' => '更新折旧',
'depreciation_min' => '最底折旧值',
- 'no_depreciations_warning' => 'Warning:
- You do not currently have any depreciations set up.
- Please set up at least one depreciation to view the depreciation report.',
+ 'no_depreciations_warning' => '警告:
+ 您目前没有设置任何折旧。
+ 请设置至少一个折旧来查看折旧报告。',
];
diff --git a/resources/lang/zh-CN/admin/depreciations/table.php b/resources/lang/zh-CN/admin/depreciations/table.php
index aadf1f1001..ed1c8b69b9 100644
--- a/resources/lang/zh-CN/admin/depreciations/table.php
+++ b/resources/lang/zh-CN/admin/depreciations/table.php
@@ -6,6 +6,6 @@ return [
'months' => '月数',
'term' => '条件',
'title' => '名称',
- 'depreciation_min' => 'Floor Value',
+ 'depreciation_min' => '底值',
];
diff --git a/resources/lang/zh-CN/admin/groups/titles.php b/resources/lang/zh-CN/admin/groups/titles.php
index 5ad8f7ca2b..fc8d194a41 100644
--- a/resources/lang/zh-CN/admin/groups/titles.php
+++ b/resources/lang/zh-CN/admin/groups/titles.php
@@ -10,7 +10,7 @@ return [
'group_admin' => '分组管理员',
'allow' => '允许',
'deny' => '拒绝',
- 'permission' => 'Permission',
- 'grant' => 'Grant',
- 'no_permissions' => 'This group has no permissions.'
+ 'permission' => '权限',
+ 'grant' => '授权',
+ 'no_permissions' => '此组没有权限。'
];
diff --git a/resources/lang/zh-CN/admin/hardware/form.php b/resources/lang/zh-CN/admin/hardware/form.php
index 0efd2b503e..6d76b871bd 100644
--- a/resources/lang/zh-CN/admin/hardware/form.php
+++ b/resources/lang/zh-CN/admin/hardware/form.php
@@ -40,10 +40,10 @@ return [
'warranty' => '质保',
'warranty_expires' => '保修期已过',
'years' => '年',
- 'asset_location' => 'Update Asset Location',
- 'asset_location_update_default_current' => 'Update default location AND actual location',
- 'asset_location_update_default' => 'Update only default location',
- 'asset_not_deployable' => 'That asset status is not deployable. This asset cannot be checked out.',
- 'asset_deployable' => 'That status is deployable. This asset can be checked out.',
- 'processing_spinner' => 'Processing...',
+ 'asset_location' => '更新资产位置',
+ 'asset_location_update_default_current' => '更新默认位置与实际位置',
+ 'asset_location_update_default' => '仅更新默认位置',
+ 'asset_not_deployable' => '该资产状态为不可部署。无法签出此资产。',
+ 'asset_deployable' => '该状态为可部署。可以签出此资产。',
+ 'processing_spinner' => '处理中……',
];
diff --git a/resources/lang/zh-CN/admin/hardware/general.php b/resources/lang/zh-CN/admin/hardware/general.php
index cf966e9b07..970604f092 100644
--- a/resources/lang/zh-CN/admin/hardware/general.php
+++ b/resources/lang/zh-CN/admin/hardware/general.php
@@ -15,29 +15,29 @@ return [
'model_deleted' => '这个资源模型已被删除。您必须先还原模型才能还原素材。',
'requestable' => '可申领',
'requested' => '已申请',
- 'not_requestable' => 'Not Requestable',
- 'requestable_status_warning' => 'Do not change requestable status',
+ 'not_requestable' => '不可申领',
+ 'requestable_status_warning' => '不可更改申领状态',
'restore' => '还原资产',
'pending' => '待处理',
'undeployable' => '不可部署',
'view' => '查看资产',
- 'csv_error' => 'You have an error in your CSV file:',
+ 'csv_error' => '您的CSV文件中有一个错误:',
'import_text' => '
- - Upload a CSV that contains asset history. The assets and users MUST already exist in the system, or they will be skipped. Matching assets for history import happens against the asset tag. We will try to find a matching user based on the user\'s name you provide, and the criteria you select below. If you do not select any criteria below, it will simply try to match on the username format you configured in the Admin > General Settings. +
+ 上传一个包含资产历史的CSV文件。“资产”和“用户”必须已存在于系统中,否则将被跳过。历史导入的匹配资产是针对资产标签进行的。我们将尝试根据您提供的用户名以及您在下面选择的条件找到匹配的用户。如果您未选择以下任何条件,它只会尝试匹配您在“管理”> “常规设置”中配置的用户名格式。
-Fields included in the CSV must match the headers: Asset Tag, Name, Checkout Date, Checkin Date. Any additional fields will be ignored.
+CSV 文件中包含的字段必须与以下标题匹配:资产标签、姓名、签出日期、签入日期。任何其他字段都将被忽略。
-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', - 'error_messages' => 'Error messages:', - 'success_messages' => 'Success messages:', - 'alert_details' => 'Please see below for details.', - 'custom_export' => 'Custom Export' + 'csv_import_match_f-l' => '尝试按“名、姓 (jane.smith)” 格式匹配用户', + 'csv_import_match_initial_last' => '尝试按“名首字母、姓 (jsmith)” 格式匹配用户', + 'csv_import_match_first' => '尝试按“名 (jane)” 格式匹配用户', + 'csv_import_match_email' => '尝试按“电子邮件”匹配用户作为用户名', + 'csv_import_match_username' => '尝试按用户名匹配用户', + 'error_messages' => '错误信息:', + 'success_messages' => '成功信息:', + 'alert_details' => '请参阅下面的详细信息。', + 'custom_export' => '自定义导出' ]; diff --git a/resources/lang/zh-CN/admin/hardware/message.php b/resources/lang/zh-CN/admin/hardware/message.php index 48b0125a8a..0b56eb1d07 100644 --- a/resources/lang/zh-CN/admin/hardware/message.php +++ b/resources/lang/zh-CN/admin/hardware/message.php @@ -4,7 +4,7 @@ return [ 'undeployable' => '警告: 该资产目前已经被标记为不可被分配,如果该资产状态已经改变,请刷新。', 'does_not_exist' => '资产不存在', - 'does_not_exist_or_not_requestable' => 'That asset does not exist or is not requestable.', + 'does_not_exist_or_not_requestable' => '该资产不存在或不可申领。', 'assoc_users' => '这个资产目前已经借给某个用户,不能被删除,请检查资产信息,然后再尝试删除。', 'create' => [ diff --git a/resources/lang/zh-CN/admin/hardware/table.php b/resources/lang/zh-CN/admin/hardware/table.php index 9f969b2762..3839a39fa6 100644 --- a/resources/lang/zh-CN/admin/hardware/table.php +++ b/resources/lang/zh-CN/admin/hardware/table.php @@ -4,11 +4,11 @@ return [ 'asset_tag' => '资产标签', 'asset_model' => '型号', - 'book_value' => 'Current Value', + 'book_value' => '当前值', 'change' => '进/出', 'checkout_date' => '借出日期', 'checkoutto' => '已借出', - 'current_value' => 'Current Value', + 'current_value' => '当前值', 'diff' => '差价', 'dl_csv' => '下载CSV格式', 'eol' => '寿命', @@ -22,9 +22,9 @@ return [ 'image' => '设备图片', 'days_without_acceptance' => '过期天数', 'monthly_depreciation' => '每月折旧率', - 'assigned_to' => 'Assigned To', - 'requesting_user' => 'Requesting User', - 'requested_date' => 'Requested Date', - 'changed' => 'Changed', - 'icon' => 'Icon', + 'assigned_to' => '已分配给', + 'requesting_user' => '申领中的用户', + 'requested_date' => '请求日期', + 'changed' => '已修改', + 'icon' => '图标', ]; diff --git a/resources/lang/zh-CN/admin/kits/general.php b/resources/lang/zh-CN/admin/kits/general.php index 8515aa9c1c..0eabca8f15 100644 --- a/resources/lang/zh-CN/admin/kits/general.php +++ b/resources/lang/zh-CN/admin/kits/general.php @@ -13,38 +13,38 @@ return [ 'none_licenses' => '没有足够的可用坐席可供签出 :license。 需要 :qty。 ', 'none_consumables' => '没有足够的:consumable可用来签出,需要 :qty 。 ', 'none_accessory' => '没有足够的 :accessory 可用来签出,需要 :qty。 ', - 'append_accessory' => 'Append Accessory', - 'update_appended_accessory' => 'Update appended Accessory', - 'append_consumable' => 'Append Consumable', - 'update_appended_consumable' => 'Update appended Consumable', - 'append_license' => 'Append license', - 'update_appended_license' => 'Update appended license', - 'append_model' => 'Append model', - 'update_appended_model' => 'Update appended model', - 'license_error' => 'License already attached to kit', - 'license_added_success' => 'License added successfully', - 'license_updated' => 'License was successfully updated', - 'license_none' => 'License does not exist', - 'license_detached' => 'License was successfully detached', - 'consumable_added_success' => 'Consumable added successfully', - 'consumable_updated' => 'Consumable was successfully updated', - 'consumable_error' => 'Consumable already attached to kit', - 'consumable_deleted' => 'Delete was successful', - 'consumable_none' => 'Consumable does not exist', - 'consumable_detached' => 'Consumable was successfully detached', - 'accessory_added_success' => 'Accessory added successfully', - 'accessory_updated' => 'Accessory was successfully updated', - 'accessory_detached' => 'Accessory was successfully detached', - 'accessory_error' => 'Accessory already attached to kit', - 'accessory_deleted' => 'Delete was successful', - 'accessory_none' => 'Accessory does not exist', - 'checkout_success' => 'Checkout was successful', - 'checkout_error' => 'Checkout error', - 'kit_none' => 'Kit does not exist', - 'kit_created' => 'Kit was successfully created', - 'kit_updated' => 'Kit was successfully updated', - 'kit_not_found' => 'Kit not found', - 'kit_deleted' => 'Kit was successfully deleted', - 'kit_model_updated' => 'Model was successfully updated', - 'kit_model_detached' => 'Model was successfully detached', + 'append_accessory' => '附加配件', + 'update_appended_accessory' => '更新附加的配件', + 'append_consumable' => '附加耗材', + 'update_appended_consumable' => '更新附加的耗材', + 'append_license' => '附加许可证', + 'update_appended_license' => '更新附加的许可证', + 'append_model' => '附加型号', + 'update_appended_model' => '更新附加型号', + 'license_error' => '许可证已附加到套件中', + 'license_added_success' => '已成功添加许可证', + 'license_updated' => '许可证已成功更新', + 'license_none' => '许可证不存在', + 'license_detached' => '许可证已成功分离。', + 'consumable_added_success' => '耗材添加成功', + 'consumable_updated' => '耗材已成功更新', + 'consumable_error' => '耗材已经附加到套件', + 'consumable_deleted' => '删除成功', + 'consumable_none' => '耗材不存在', + 'consumable_detached' => '耗材已成功分离。', + 'accessory_added_success' => '添加配件成功', + 'accessory_updated' => '配件已成功更新', + 'accessory_detached' => '配件已成功分离。', + 'accessory_error' => '配件已附加到套件中', + 'accessory_deleted' => '删除成功', + 'accessory_none' => '配件不存在', + 'checkout_success' => '借出成功', + 'checkout_error' => '借出错误', + 'kit_none' => '套件不存在', + 'kit_created' => '套件已成功创建', + 'kit_updated' => '套件已成功更新', + 'kit_not_found' => '找不到套件', + 'kit_deleted' => '套件已删除', + 'kit_model_updated' => '型号已更新', + 'kit_model_detached' => '型号已成功分离。', ]; diff --git a/resources/lang/zh-CN/admin/locations/table.php b/resources/lang/zh-CN/admin/locations/table.php index 805ec32231..92add3158f 100644 --- a/resources/lang/zh-CN/admin/locations/table.php +++ b/resources/lang/zh-CN/admin/locations/table.php @@ -20,21 +20,21 @@ return [ 'parent' => '上级节点', 'currency' => '当地货币单位', 'ldap_ou' => 'LDAP中搜索组织单位(OU)', - 'user_name' => 'User Name', - 'department' => 'Department', - 'location' => 'Location', - 'asset_tag' => 'Assets Tag', - 'asset_name' => 'Name', - 'asset_category' => 'Category', - 'asset_manufacturer' => 'Manufacturer', - 'asset_model' => 'Model', - 'asset_serial' => 'Serial', - 'asset_location' => 'Location', - 'asset_checked_out' => 'Checked Out', - 'asset_expected_checkin' => 'Expected Checkin', - 'date' => 'Date:', - 'signed_by_asset_auditor' => 'Signed By (Asset Auditor):', - 'signed_by_finance_auditor' => 'Signed By (Finance Auditor):', - 'signed_by_location_manager' => 'Signed By (Location Manager):', - 'signed_by' => 'Signed Off By:', + 'user_name' => '用户名', + 'department' => '部门', + 'location' => '位置', + 'asset_tag' => '资产标签', + 'asset_name' => '名称', + 'asset_category' => '类别', + 'asset_manufacturer' => '制造商', + 'asset_model' => '型号', + 'asset_serial' => '序列号', + 'asset_location' => '位置', + 'asset_checked_out' => '已借出', + 'asset_expected_checkin' => '预计归还日期', + 'date' => '日期:', + 'signed_by_asset_auditor' => '签名(资产管理员):', + 'signed_by_finance_auditor' => '签名(财务人员):', + 'signed_by_location_manager' => '签名(当地经理):', + 'signed_by' => '签名:', ]; diff --git a/resources/lang/zh-CN/admin/reports/general.php b/resources/lang/zh-CN/admin/reports/general.php index bccdeb6d7c..0a2d39db91 100644 --- a/resources/lang/zh-CN/admin/reports/general.php +++ b/resources/lang/zh-CN/admin/reports/general.php @@ -2,9 +2,9 @@ return [ 'info' => '请选择你要报备资产的选项。', - 'deleted_user' => 'Deleted user', - 'send_reminder' => 'Send reminder', - 'reminder_sent' => 'Reminder sent', - 'acceptance_deleted' => 'Acceptance request deleted', - 'acceptance_request' => 'Acceptance request' + 'deleted_user' => '已删除用户', + 'send_reminder' => '发送提醒', + 'reminder_sent' => '提醒信息已发送', + 'acceptance_deleted' => '接受请求已删除', + 'acceptance_request' => '接受请求' ]; \ No newline at end of file diff --git a/resources/lang/zh-CN/admin/settings/general.php b/resources/lang/zh-CN/admin/settings/general.php index 6a7a2d1c1a..02db6e9a56 100644 --- a/resources/lang/zh-CN/admin/settings/general.php +++ b/resources/lang/zh-CN/admin/settings/general.php @@ -10,10 +10,10 @@ return [ 'admin_cc_email' => '邮件抄送', 'admin_cc_email_help' => '如果你想给用户额外的邮件账户发送签入/签出副本,请在此输入邮箱地址,否则请留空。', 'is_ad' => '这是AD域服务器', - 'alerts' => 'Alerts', - 'alert_title' => 'Update Alert Settings', + 'alerts' => '警报', + 'alert_title' => '更新警报设置', 'alert_email' => '发送警报', - 'alert_email_help' => 'Email addresses or distribution lists you want alerts to be sent to, comma separated', + 'alert_email_help' => '您希望向其发送警报的电子邮件地址或通讯组列表,以逗号分隔', 'alerts_enabled' => '警报已启用', 'alert_interval' => '警报阈值(天)', 'alert_inv_threshold' => '库存警报阈值', @@ -24,16 +24,16 @@ return [ 'audit_interval_help' => '如果您需要定期盘点您的资产,请输入月数间隔。', 'audit_warning_days' => '盘点开始提醒', 'audit_warning_days_help' => '需要提前多少天让我们通知您需要盘点资产?', - 'auto_increment_assets' => 'Generate auto-incrementing asset tags', + 'auto_increment_assets' => '生成自动递增的资产标签', 'auto_increment_prefix' => '前缀(可选)', - 'auto_incrementing_help' => 'Enable auto-incrementing asset tags first to set this', + 'auto_incrementing_help' => '先启用自动递增资产标签来设置这个', 'backups' => '备份', - 'backups_restoring' => 'Restoring from Backup', - 'backups_upload' => 'Upload Backup', - 'backups_path' => 'Backups on the server are stored in:path
',
- 'backups_restore_warning' => 'Use the restore button to restore from a previous backup. (This does not currently work with S3 file storage or Docker.:path
',
+ 'backups_restore_warning' => '使用还原按钮 从上次备份还原。 (目前无法使用 S3 文件存储或 Docker容器。)Select the fields you would like to include in your custom report, and click Generate. The file (custom-asset-report-YYYY-mm-dd.csv) will download automatically, and you can open it in Excel.
-If you would like to export only certain assets, use the options below to fine-tune your results.
', - 'range' => 'Range', + 'view_all' => '查看全部', + 'hide_deleted' => '隐藏已删除', + 'email' => '邮箱', + 'do_not_change' => '不要更改', + 'bug_report' => '报告错误', + 'user_manual' => '用户手册', + 'setup_step_1' => '第 1 步', + 'setup_step_2' => '第 2 步', + 'setup_step_3' => '第 3 步', + 'setup_step_4' => '第 4 步', + 'setup_config_check' => '配置检查', + 'setup_create_database' => '创建数据库表', + 'setup_create_admin' => '创建管理员用户', + 'setup_done' => '完成!', + 'bulk_edit_about_to' => '您将要编辑以下内容: ', + 'checked_out' => '已借出', + 'checked_out_to' => '借出至', + 'fields' => '字段', + 'last_checkout' => '上次借出', + 'due_to_checkin' => '以下:count 物品将很快归还:', + 'expected_checkin' => '预计归还日期', + 'reminder_checked_out_items' => '这是当前借出给您的物品的提醒。 如果你觉得这个列表不准确(有些东西缺失,或者你认为你从未收到的东西),请发送电子邮件::reply_to_name 到 :reply_to_address_address。', + 'changed' => '已修改', + 'to' => '至', + 'report_fields_info' => '选择您想要在自定义报告中包含的字段,然后单击生成. 该文件 (cunstom-YYYY-mm-dd.csv) 将自动下载,您可以在 Excel中打开它。
+如果您只想导出某些资产,使用下面的选项来微调您的结果。
', + 'range' => '范围', 'bom_remark' => 'Add a BOM (byte-order mark) to this CSV', - 'improvements' => 'Improvements', - 'information' => 'Information', - 'permissions' => 'Permissions', - 'managed_ldap' => '(Managed via LDAP)', - 'export' => 'Export', - 'ldap_sync' => 'LDAP Sync', - 'ldap_user_sync' => 'LDAP User Sync', - 'synchronize' => 'Synchronize', - 'sync_results' => 'Synchronization Results', - 'license_serial' => 'Serial/Product Key', - 'invalid_category' => 'Invalid category', - 'dashboard_info' => 'This is your dashboard. There are many like it, but this one is yours.', - '60_percent_warning' => '60% Complete (warning)', - 'dashboard_empty' => 'It looks like you haven not added anything yet, so we do not have anything awesome to display. Get started by adding some assets, accessories, consumables, or licenses now!', - 'new_asset' => 'New Asset', - 'new_license' => 'New License', - 'new_accessory' => 'New Accessory', - 'new_consumable' => 'New Consumable', - 'collapse' => 'Collapse', - 'assigned' => 'Assigned', - 'asset_count' => 'Asset Count', - 'accessories_count' => 'Accessories Count', - 'consumables_count' => 'Consumables Count', - 'components_count' => 'Components Count', - 'licenses_count' => 'Licenses Count', - 'notification_error' => 'Error:', - 'notification_error_hint' => 'Please check the form below for errors', - 'notification_success' => 'Success:', - 'notification_warning' => 'Warning:', - 'notification_info' => 'Info:', - 'asset_information' => 'Asset Information', - 'model_name' => 'Model Name:', - 'asset_name' => 'Asset Name:', - 'consumable_information' => 'Consumable Information:', - 'consumable_name' => 'Consumable Name:', - 'accessory_information' => 'Accessory Information:', - 'accessory_name' => 'Accessory Name:', - 'clone_item' => 'Clone Item', - 'checkout_tooltip' => 'Check this item out', - 'checkin_tooltip' => 'Check this item in', - 'checkout_user_tooltip' => 'Check this item out to a user', + 'improvements' => '改进', + 'information' => '信息', + 'permissions' => '权限', + 'managed_ldap' => '(通过 LDAP 管理)', + 'export' => '导出', + 'ldap_sync' => 'LDAP 同步', + 'ldap_user_sync' => 'LDAP 用户同步', + 'synchronize' => '同步', + 'sync_results' => '同步结果', + 'license_serial' => '序列号/产品密钥', + 'invalid_category' => '无效的类别', + 'dashboard_info' => '这是您的仪表板。有很多类似的,但这个就是您的。', + '60_percent_warning' => '60% 完成 (警告)', + 'dashboard_empty' => '看起来你还没有添加任何东西,所以我们没有什么东西可以显示。 现在就开始添加一些资产、配件、耗材或许可证吧!', + 'new_asset' => '新建资产', + 'new_license' => '新建许可证', + 'new_accessory' => '新建配件', + 'new_consumable' => '新建耗材', + 'collapse' => '收起', + 'assigned' => '已分配', + 'asset_count' => '资产计数', + 'accessories_count' => '配件计数', + 'consumables_count' => '耗材计数', + 'components_count' => '组件计数', + 'licenses_count' => '许可证计数', + 'notification_error' => '错误:', + 'notification_error_hint' => '请检查下面的表单以了解错误', + 'notification_success' => '成功:', + 'notification_warning' => '警告:', + 'notification_info' => '信息:', + 'asset_information' => '资产信息', + 'model_name' => '型号名称:', + 'asset_name' => '资产名称:', + 'consumable_information' => '耗材信息:', + 'consumable_name' => '耗材名称:', + 'accessory_information' => '配件信息:', + 'accessory_name' => '配件名称:', + 'clone_item' => '克隆物品', + 'checkout_tooltip' => '借出此物品', + 'checkin_tooltip' => '归还此物品', + 'checkout_user_tooltip' => '借出此物品给一个用户', ]; diff --git a/resources/lang/zh-CN/mail.php b/resources/lang/zh-CN/mail.php index df0a20e9e8..fc1e5b2484 100644 --- a/resources/lang/zh-CN/mail.php +++ b/resources/lang/zh-CN/mail.php @@ -59,7 +59,7 @@ return [ 'test_mail_text' => '这是一封 Snipe-IT 资产管理系统的测试电子邮件,如果您收到,表示邮件通知正常运作 :)', 'the_following_item' => '以下项目已交回:', 'low_inventory_alert' => '有:种物品已经低于或者接近最小库存。|有:种物品已经低于或者接近最小库存。', - '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' => '有 :count 个资产保修期将于 :threshold 天到期。|有 :count 个资产 保修期将于 :threshold 天到期。', 'license_expiring_alert' => '有:个许可将在:天后到期。|有:个许可将在:天后到期。', 'to_reset' => '要重置 :web 的密码,请完成此表格:', 'type' => '类型', diff --git a/resources/views/depreciations/edit.blade.php b/resources/views/depreciations/edit.blade.php index 54696a3acc..7c7e309cd0 100755 --- a/resources/views/depreciations/edit.blade.php +++ b/resources/views/depreciations/edit.blade.php @@ -16,8 +16,9 @@ {{ trans('admin/depreciations/general.number_of_months') }}