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.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', - 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', + 'backups_restoring' => 'Gjenoppretting fra sikkerhetskopi', + 'backups_upload' => 'Last opp sikkerhetskopi', + 'backups_path' => 'Sikkerhetskopier på tjeneren lagres i :path', + 'backups_restore_warning' => 'Bruk gjenopprettingsknappen for å gjenopprette fra en tidligere sikkerhetskopi. (Dette fungerer ikke med S3-fillagring eller Docker.

Din hele :app_name databasen og eventuelle opplastede filer vil bli fullstendig erstattet av det som er i sikkerhetskopifilen. ', + 'backups_logged_out' => 'Du vil bli logget ut når gjenopprettingen er fullført.', + 'backups_large' => 'Veldig store sikkerhetskopier kan få tidsavbrudd under gjenopprettingsforsøket og må fortsatt kjøres via kommandolinjen. ', 'barcode_settings' => 'Strekkodeinnstillinger', 'confirm_purge' => 'Bekreft rensking', 'confirm_purge_help' => 'Skriv "DELETE" i boksen under for å fjerne dine slettende data. Denne handlingen kan ikke angres og vil PERMANENT slette alle slettede elementer og brukere. (Du bør først gjøre en sikkerhetskopi, bare for å være trygg.)', @@ -56,7 +56,7 @@ return [ 'barcode_type' => '2D strekkodetype', 'alt_barcode_type' => '1D strekkodetype', 'email_logo_size' => 'Kvadratiske logoer ser best ut i e-post. ', - 'enabled' => 'Enabled', + 'enabled' => 'Slått på', 'eula_settings' => 'EULA-innstillinger', 'eula_markdown' => 'Denne EULAen tillater Github Flavored markdown.', 'favicon' => 'Favicon', @@ -66,8 +66,8 @@ return [ 'footer_text_help' => 'Denne teksten vil fremstå i høyre del av bunnteksten. Lenker er tillatt ved å bruke Github flavored markdown. Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.', 'general_settings' => 'Generelle innstillinger', - 'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, tos, dashboard, privacy', - 'general_settings_help' => 'Default EULA and more', + 'general_settings_keywords' => 'bedriftsstøtte, signatur, e-postformat, brukerformat, bilder, per side, miniatyrbilde, eula, samtykke, dashbord, personvern', + 'general_settings_help' => 'Standard EULA og mer', 'generate_backup' => 'Generer Sikkerhetskopi', 'header_color' => 'Overskriftsfarge', 'info' => 'Disse innstillingene lar deg tilpasse enkelte aspekter av installasjonen din.', @@ -76,13 +76,13 @@ Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.', 'laravel' => 'Laravel-versjon', 'ldap' => 'LDAP', 'ldap_help' => 'LDAP/Active Directory', - 'ldap_client_tls_key' => 'LDAP Client TLS Key', + 'ldap_client_tls_key' => 'LDAP-klient TLS-nøkkel', 'ldap_client_tls_cert' => 'LDAP TLS klient-sertifikat', 'ldap_enabled' => 'LDAP aktivert', 'ldap_integration' => 'LDAP Integrering', 'ldap_settings' => 'LDAP Instillinger', - 'ldap_client_tls_cert_help' => 'Client-Side TLS Certificate and Key for LDAP connections are usually only useful in Google Workspace configurations with "Secure LDAP." Both are required.', - 'ldap_client_tls_key' => 'LDAP Client-Side TLS key', + 'ldap_client_tls_cert_help' => 'Klientside TLS-sertifikat og nøkkel for LDAP tilkoblinger er vanligvis bare nyttig i Google Workspace-konfigurasjoner med "Secure LDAP." Begge er påkrevd.', + 'ldap_client_tls_key' => 'LDAP Klient-Side TLS-nøkkel', 'ldap_login_test_help' => 'Skriv inn et gyldig LDAP brukernavn og passord fra samme base DN som du anga ovenfor for å teste at LDAP-innlogging er riktig konfigurert. DU MÅ LAGRE DINE OPPDATERTE LDAP-INNSTILLINGER FØRST.', 'ldap_login_sync_help' => 'Tester at LDAP kan synkronisere. Feil i LDAP autentiseringsspørringen din kan før til at brukere ikke kan logge inn. DU MÅ LAGRE DINE OPPDATERTE LDAP-INNSTILLINGER FØRST.', 'ldap_server' => 'LDAP Server', @@ -112,16 +112,16 @@ Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.', 'ldap_emp_num' => 'LDAP ansattnummer', 'ldap_email' => 'LDAP E-post', 'ldap_test' => 'Test LDAP', - 'ldap_test_sync' => 'Test LDAP Synchronization', + 'ldap_test_sync' => 'Test LDAP-synkronisering', 'license' => 'Programvarelisens', 'load_remote_text' => 'Eksterne Skript', 'load_remote_help_text' => 'Denne Snipe-IT-installasjonen kan laste skript fra Internett.', - 'login' => 'Login Attempts', - 'login_attempt' => 'Login Attempt', - 'login_ip' => 'IP Address', - 'login_success' => 'Success?', - 'login_user_agent' => 'User Agent', - 'login_help' => 'List of attempted logins', + 'login' => 'Innloggingsforsøk', + 'login_attempt' => 'Innloggingsforsøk', + 'login_ip' => 'IP-addresse', + 'login_success' => 'Suksess?', + 'login_user_agent' => 'Brukeragent', + 'login_help' => 'Liste over forsøkte pålogginger', 'login_note' => 'Logg inn melding', 'login_note_help' => 'Eventuelt inkludere et par setninger på logg inn skjermen, for eksempel for å hjelpe mennesker som har funnet en mistet eller stjålet enhet. Dette feltet godtar Github flavored markdown', 'login_remote_user_text' => 'Fjernbruker pålogging valg', @@ -142,19 +142,19 @@ Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.', 'optional' => 'valgfri', 'per_page' => 'Resultater pr side', 'php' => 'PHP-versjon', - 'php_info' => 'PHP Info', + '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' => 'Du må installere php-gd for å vise QR-koder. Se installasjonsinstruksjoner.', 'php_gd_warning' => 'PHP bildebehandling og GD-plugin er IKKE installert.', 'pwd_secure_complexity' => 'Passordkompleksitet', 'pwd_secure_complexity_help' => 'Velg hvilken passord kompleksitet du ønsker å håndheve.', - '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' => 'Passord kan ikke være det samme som fornavn, etternavn, e-post eller brukernavn', + 'pwd_secure_complexity_letters' => 'Krev minst én bokstav', + 'pwd_secure_complexity_numbers' => 'Krev minst ett tall', + 'pwd_secure_complexity_symbols' => 'Krev minst ett symbol', + 'pwd_secure_complexity_case_diff' => 'Krev minst én stor bokstav og én liten bokstav', 'pwd_secure_min' => 'Passord minimum antall tegn', 'pwd_secure_min_help' => 'Minimum tillatt verdi er 8', 'pwd_secure_uncommon' => 'Forhindre vanlige passord', @@ -162,8 +162,8 @@ Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.', 'qr_help' => 'Aktiver QR-koder først for å velge denne', 'qr_text' => 'Tekst QR-kode', 'saml' => 'SAML', - 'saml_title' => 'Update SAML settings', - 'saml_help' => 'SAML settings', + 'saml_title' => 'Oppdater SAML-innstillinger', + 'saml_help' => 'SAML-innstillinger', 'saml_enabled' => 'SAML aktivert', 'saml_integration' => 'SAML-integrasjon', 'saml_sp_entityid' => 'Entity ID', @@ -183,7 +183,7 @@ Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.', 'saml_slo_help' => 'Dette vil føre til at brukeren først blir omdirigert til idP når hen logger ut. Ikke kryss av om idP ikke støtter \'SP-initiated SAML SLO\'.', 'saml_custom_settings' => 'SAML Egendefinerte innstillinger', 'saml_custom_settings_help' => 'Du kan angi flere innstillinger til onelogin/php-saml biblioteket. Bruk på eget ansvar.', - 'saml_download' => 'Download Metadata', + 'saml_download' => 'Last ned Metadata', 'setting' => 'Innstilling', 'settings' => 'Innstillinger', 'show_alerts_in_menu' => 'Vis varsler i toppmenyen', @@ -195,8 +195,8 @@ Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.', 'show_images_in_email_help' => 'Fjern merkingen i denne boksen hvis Snipe-IT-installasjonen er bak en VPN eller et lukket nettverk og brukere utenfor nettverket ikke vil kunne laste bilder servert fra denne installasjonen i e-posten.', 'site_name' => 'Nettstedsnavn', 'slack' => 'Slack', - 'slack_title' => 'Update Slack Settings', - 'slack_help' => 'Slack settings', + 'slack_title' => 'Oppdater Slack-innstillinger', + 'slack_help' => 'Slack-innstillinger', 'slack_botname' => 'Slack botnavn', 'slack_channel' => 'Slack-kanal', 'slack_endpoint' => 'Slack endepunkt', @@ -214,7 +214,7 @@ Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.', 'value' => 'Verdi', 'brand' => 'Merkevare', 'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css', - 'brand_help' => 'Logo, Site Name', + 'brand_help' => 'Logo, nettstedsnavn', 'web_brand' => 'Velg branding-type', 'about_settings_title' => 'Om Innstillinger', 'about_settings_text' => 'Disse innstillingene lar deg tilpasse enkelte aspekter av installasjonen din.', @@ -226,7 +226,7 @@ Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.', 'privacy_policy' => 'Personvernerklæring', 'privacy_policy_link_help' => 'Angi en URL i dette feltet for å inkludere en lenke til personvern-policy i applikasjonsbunntekst og i alle eposter som dette systemet sender ut. Støtter GDPR. ', 'purge' => 'Tømme slettede poster', - 'purge_deleted' => 'Purge Deleted ', + 'purge_deleted' => 'Fjern slettede ', 'labels_display_bgutter' => 'Etikett bunnmarg', 'labels_display_sgutter' => 'Etikett sidemarg', 'labels_fontsize' => 'Label skriftstørrelse', @@ -272,51 +272,51 @@ Linjeskift, topptekst, bilder, osv. kan føre til uventede resultater.', 'unique_serial_help_text' => 'Håndhever at eiendelsserienumre er unike', 'zerofill_count' => 'Lengden på ID-merker, inkludert zerofill', 'username_format_help' => 'Denne innstillingen vil bare bli brukt av importprosessen dersom et brukernavn ikke er oppgitt, og vi må generere et brukernavn for deg.', - 'oauth_title' => 'OAuth API Settings', + 'oauth_title' => 'OAuth API-innstillinger', 'oauth' => 'OAuth', - 'oauth_help' => 'Oauth Endpoint Settings', - 'asset_tag_title' => 'Update Asset Tag Settings', - 'barcode_title' => 'Update Barcode Settings', - 'barcodes' => 'Barcodes', - 'barcodes_help_overview' => 'Barcode & QR settings', - 'barcodes_help' => 'This will attempt to delete cached barcodes. This would typically only be used if your barcode settings have changed, or if your Snipe-IT URL has changed. Barcodes will be re-generated when accessed next.', - 'barcodes_spinner' => 'Attempting to delete files...', - 'barcode_delete_cache' => 'Delete Barcode Cache', - 'branding_title' => 'Update Branding Settings', - 'general_title' => 'Update General Settings', - 'mail_test' => 'Send Test', - 'mail_test_help' => 'This will attempt to send a test mail to :replyto.', - 'filter_by_keyword' => 'Filter by setting keyword', - 'security' => 'Security', - 'security_title' => 'Update Security Settings', + 'oauth_help' => 'Oauth Endepunktinnstillinger', + 'asset_tag_title' => 'Oppdater Innstillinger for Eiendelsmerker', + 'barcode_title' => 'Oppdater strekkodeinnstillinger', + 'barcodes' => 'Strekkoder', + 'barcodes_help_overview' => 'Strekkode- & QR-innstillinger', + 'barcodes_help' => 'Dette forsøker å slette hurtigbufrede strekkoder. Dette vil vanligvis bare bli brukt hvis strekkodeinnstillingene dine er endret, eller hvis Snipe-IT adressen er endret. Strekkoder genereres på nytt når de blir åpnet neste gang.', + 'barcodes_spinner' => 'Forsøker å slette filer...', + 'barcode_delete_cache' => 'Slett strekkode-buffer', + 'branding_title' => 'Oppdater Branding-innstillinger', + 'general_title' => 'Oppdater generelle innstillinger', + 'mail_test' => 'Send test', + 'mail_test_help' => 'Dette vil forsøke å sende en e-post til :replyto.', + 'filter_by_keyword' => 'Filtrer ved å sette nøkkelord', + 'security' => 'Sikkerhet', + 'security_title' => 'Oppdater sikkerhetsinnstillinger', 'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication', - 'security_help' => 'Two-factor, Password Restrictions', + 'security_help' => 'Tofaktor, passordbegrensinger', 'groups_keywords' => 'permissions, permission groups, authorization', - 'groups_help' => 'Account permission groups', - 'localization' => 'Localization', - 'localization_title' => 'Update Localization Settings', + 'groups_help' => 'Tillatelsesgrupper', + 'localization' => 'Oversettelser', + 'localization_title' => 'Oppdater språkinnstillinger', 'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation', - 'localization_help' => 'Language, date display', - 'notifications' => 'Notifications', - 'notifications_help' => 'Email alerts, audit settings', - 'asset_tags_help' => 'Incrementing and prefixes', - 'labels' => 'Labels', - 'labels_title' => 'Update Label Settings', - 'labels_help' => 'Label sizes & settings', - 'purge' => 'Purge', - 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', - 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', + 'localization_help' => 'Språk, datoformat', + 'notifications' => 'Varslinger', + 'notifications_help' => 'E-postvarsler, revisjonsinnstillinger', + 'asset_tags_help' => 'Økninger og prefikser', + 'labels' => 'Etiketter', + 'labels_title' => 'Oppdater etikettinnstillinger', + 'labels_help' => 'Etikettstørrelse & innstillinger', + 'purge' => 'Slett', + 'purge_keywords' => 'slett permanent', + 'purge_help' => 'Tømme slettede poster', + 'ldap_extension_warning' => 'Det ser ikke ut som LDAP-utvidelsen er installert eller aktivert på denne serveren. Du kan fortsatt lagre innstillingene, men du må installere og aktivere LDAP-tillegget til PHP før LDAP-synkronisering eller innlogging virker.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', - 'create_admin_user' => 'Create a User ::', - 'create_admin_success' => 'Success! Your admin user has been added!', - 'create_admin_redirect' => 'Click here to go to your app login!', - 'setup_migrations' => 'Database Migrations ::', - 'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!', - 'setup_successful_migrations' => 'Your database tables have been created', - 'setup_migration_output' => 'Migration output:', - 'setup_migration_create_user' => 'Next: Create User', - 'ldap_settings_link' => 'LDAP Settings Page', - 'slack_test' => 'Test Integration', + 'employee_number' => 'Ansattnummer', + 'create_admin_user' => 'Opprett en bruker ::', + 'create_admin_success' => 'Suksess! Din adminbruker har blitt lagt til!', + 'create_admin_redirect' => 'Klikk her for å gå til innlogging!', + 'setup_migrations' => 'Database-migreringer ::', + 'setup_no_migrations' => 'Det var ingenting å migrere. Databasetabellene var allerede oppdaterte!', + 'setup_successful_migrations' => 'Databasetabellene er opprettet', + 'setup_migration_output' => 'Migrasjonsmeldinger:', + 'setup_migration_create_user' => 'Neste: Opprett bruker', + 'ldap_settings_link' => 'Side for LDAP-innstillinger', + 'slack_test' => 'Test Integrasjon', ]; diff --git a/resources/lang/no/admin/settings/message.php b/resources/lang/no/admin/settings/message.php index 19200020d5..3cae0f7a00 100644 --- a/resources/lang/no/admin/settings/message.php +++ b/resources/lang/no/admin/settings/message.php @@ -11,8 +11,8 @@ return [ 'file_deleted' => 'Den Sikkerhetskopierte filen ble slettet. ', 'generated' => 'En ny sikkerhetskopi fil ble opprettet.', 'file_not_found' => 'Den backup-filen ble ikke funnet på serveren.', - 'restore_warning' => 'Yes, restore it. I acknowledge that this will overwrite any existing data currently in the database. This will also log out all of your existing users (including you).', - 'restore_confirm' => 'Are you sure you wish to restore your database from :filename?' + 'restore_warning' => 'Ja, kjør gjenoppretting. Jeg forstår at dette vil overskive alle eksisterende data som er i databasen. Dette vil også logge ut alle eksisterende brukere (inkludert meg selv).', + 'restore_confirm' => 'Er du sikker på at du vil gjenopprette databasen fra :filename?' ], 'purge' => [ 'error' => 'Det oppstod en feil under fjerning. ', @@ -20,24 +20,24 @@ return [ 'success' => 'Slettede rader ble fjernet.', ], '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' => 'Sender e-post...', + 'success' => 'E-post er sendt!', + 'error' => 'E-post kunne ikke sendes.', + 'additional' => 'Ingen ytterligere feilmelding oppgitt. Sjekk e-postinnstillingene og loggen.' ], 'ldap' => [ - 'testing' => 'Testing LDAP Connection, Binding & Query ...', - '500' => '500 Server Error. Please check your server logs for more information.', - 'error' => 'Something went wrong :(', - 'sync_success' => 'A sample of 10 users returned from the LDAP server based on your settings:', - 'testing_authentication' => 'Testing LDAP Authentication...', - 'authentication_success' => 'User authenticated against LDAP successfully!' + 'testing' => 'Tester LDAP-tilkobling, binding og spørring ...', + '500' => '500 serverfeil. Sjekk tjenerens logger for mer informasjon.', + 'error' => 'Noe gikk galt :(', + 'sync_success' => 'Et utvalg på 10 brukere som returneres fra LDAP-serveren basert på innstillingene:', + 'testing_authentication' => 'Tester LDAP-autentisering...', + 'authentication_success' => 'Brukeren ble autentisert mot LDAP!' ], 'slack' => [ - 'sending' => 'Sending Slack test message...', - 'success_pt1' => 'Success! Check the ', - 'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.', - '500' => '500 Server Error.', - 'error' => 'Something went wrong.', + 'sending' => 'Sender testmelding på Slack...', + 'success_pt1' => 'Suksess! Se etter meldingen i kanalen ', + 'success_pt2' => ' , og sørg for å klikke på LAGRE nedenfor for å lagre innstillingene.', + '500' => '500 Tjenerfeil.', + 'error' => 'Noe gikk galt.', ] ]; diff --git a/resources/lang/no/admin/statuslabels/message.php b/resources/lang/no/admin/statuslabels/message.php index aea9000790..63d1e3d164 100644 --- a/resources/lang/no/admin/statuslabels/message.php +++ b/resources/lang/no/admin/statuslabels/message.php @@ -23,7 +23,7 @@ return [ 'help' => [ 'undeployable' => 'Disse eiendelene kan ikke tilordnes noen.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Disse eiendelene kan sjekkes ut. Når de er tildelt, antar de en metastatus på Utlevert.', 'archived' => 'Disse eiendelene kan ikke sjekkes ut, og vises bare i arkivert visning. Dette er nyttig for å beholde informasjon om eiendeler for budsjettering / historiske formål, men å holde dem ut av den daglige aktivitetslisten.', 'pending' => 'Disse eiendelene kan ikke tildeles til noen, ofte brukt til gjenstander som er ute for reparasjon, men forventes å komme tilbake til omløp.', ], diff --git a/resources/lang/no/admin/users/general.php b/resources/lang/no/admin/users/general.php index 093bce5785..ece7746019 100644 --- a/resources/lang/no/admin/users/general.php +++ b/resources/lang/no/admin/users/general.php @@ -24,14 +24,14 @@ return [ 'two_factor_admin_optin_help' => 'Gjeldende administrasjonsinnstillinger tillater selektiv håndhevelse av to-faktor autentisering. ', 'two_factor_enrolled' => '2FA enhet registrert ', 'two_factor_active' => '2FA Aktiv ', - 'user_deactivated' => 'User is de-activated', - 'activation_status_warning' => 'Do not change activation status', - 'group_memberships_helpblock' => 'Only superadmins may edit group memberships.', - 'superadmin_permission_warning' => 'Only superadmins may grant a user superadmin access.', - 'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.', - 'remove_group_memberships' => 'Remove Group Memberships', - 'warning_deletion' => 'WARNING:', - 'warning_deletion_information' => 'You are about to delete the :count user(s) listed below. Super admin names are highlighted in red.', - 'update_user_asssets_status' => 'Update all assets for these users to this status', - 'checkin_user_properties' => 'Check in all properties associated with these users', + 'user_deactivated' => 'Brukeren er deaktivert', + 'activation_status_warning' => 'Ikke endre aktiveringsstatus', + 'group_memberships_helpblock' => 'Bare superbrukere kan redigere gruppemedlemskap.', + 'superadmin_permission_warning' => 'Kun superbrukere kan gjøre en annen bruker til superbruker.', + 'admin_permission_warning' => 'Kun brukere med adminrettigheter eller høyere kan gi en annen bruker admintilgang.', + 'remove_group_memberships' => 'Fjern gruppemedlemskap', + 'warning_deletion' => 'ADVARSEL:', + 'warning_deletion_information' => 'Du er i ferd med å slette :count brukere listet nedenfor. Superadmin-brukere er uthevet med rødt.', + 'update_user_asssets_status' => 'Oppdater alle eiendelens til disse brukerne til denne statusen', + 'checkin_user_properties' => 'Sjekk inn alt tilbehør koblet til disse brukerne', ]; diff --git a/resources/lang/no/button.php b/resources/lang/no/button.php index c3a51656fe..18c2848c10 100644 --- a/resources/lang/no/button.php +++ b/resources/lang/no/button.php @@ -8,7 +8,7 @@ return [ 'delete' => 'Slett', 'edit' => 'Rediger', 'restore' => 'Gjenopprett', - 'remove' => 'Remove', + 'remove' => 'Fjern', 'request' => 'Forespørsel', 'submit' => 'Send', 'upload' => 'Last opp', @@ -16,9 +16,9 @@ return [ 'select_files' => 'Velg filer...', 'generate_labels' => '{1} Lag etikett [2,*] Lag etiketter', 'send_password_link' => 'Send lenke for å nullstille passordet', - 'go' => 'Go', - 'bulk_actions' => 'Bulk Actions', - 'add_maintenance' => 'Add Maintenance', - 'append' => 'Append', - 'new' => 'New', + 'go' => 'Gå', + 'bulk_actions' => 'Massehandlinger', + 'add_maintenance' => 'Legg til vedlikehold', + 'append' => 'Legg til', + 'new' => 'Ny', ]; diff --git a/resources/lang/no/general.php b/resources/lang/no/general.php index f6e94a5aaf..36c9181292 100644 --- a/resources/lang/no/general.php +++ b/resources/lang/no/general.php @@ -19,10 +19,10 @@ 'asset' => 'Eiendel', 'asset_report' => 'Eiendelsrapport', 'asset_tag' => 'Eiendelsmerke', - 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', - 'accept_assets' => 'Accept Assets :name', - 'accept_assets_menu' => 'Accept Assets', + 'asset_tags' => 'Eiendelsmerker', + 'assets_available' => 'Tilgjengelige eiendeler', + 'accept_assets' => 'Godta Eiendelen :name', + 'accept_assets_menu' => 'Godta eiendeler', 'audit' => 'Revisjon', 'audit_report' => 'Overvåkingslogg', 'assets' => 'Eiendeler', @@ -33,10 +33,10 @@ 'bulkaudit' => 'Bulk revisjon', 'bulkaudit_status' => 'Revisjon Status', 'bulk_checkout' => 'Masseutsjekk', - 'bulk_edit' => 'Bulk Edit', - 'bulk_delete' => 'Bulk Delete', - 'bulk_actions' => 'Bulk Actions', - 'bulk_checkin_delete' => 'Bulk Checkin & Delete', + 'bulk_edit' => 'Masseredigering', + 'bulk_delete' => 'Massesletting', + 'bulk_actions' => 'Massehandlinger', + 'bulk_checkin_delete' => 'Masseinnsjekk & sletting', 'bystatus' => 'etter Status', 'cancel' => 'Avbryt', 'categories' => 'Kategorier', @@ -69,8 +69,8 @@ 'updated_at' => 'Oppdatert', 'currency' => '$', // this is deprecated 'current' => 'Nåværende', - 'current_password' => 'Current Password', - 'customize_report' => 'Customize Report', + 'current_password' => 'Gjeldende passord', + 'customize_report' => 'Tilpass rapport', 'custom_report' => 'Tilpasset eiendelsrapport', 'dashboard' => 'Kontrollpanel', 'days' => 'dager', @@ -82,12 +82,12 @@ 'delete_confirm' => 'Er du sikker på at du vil slette :item?', 'deleted' => 'Slettet', 'delete_seats' => 'Slettede setelisenser', - 'deletion_failed' => 'Deletion failed', + 'deletion_failed' => 'Sletting mislyktes', 'departments' => 'Avdelinger', 'department' => 'Avdeling', 'deployed' => 'Utlevert', 'depreciation' => 'Avskrivning', - 'depreciations' => 'Depreciations', + 'depreciations' => 'Avskrivninger', 'depreciation_report' => 'Avskrivningsrapport', 'details' => 'Detaljer', 'download' => 'Last ned', @@ -97,7 +97,7 @@ 'email_domain' => 'E-postdomene', 'email_format' => 'E-postformat', 'email_domain_help' => 'Brukes til å generere e-postadresser ved import', - 'error' => 'Error', + 'error' => 'Feil', 'filastname_format' => 'Fornavn (kun initial) Etternavn (oladunk@example.com)', 'firstname_lastname_format' => 'Fornavn Etternavn (oladunk@example.com)', 'firstname_lastname_underscore_format' => 'Fornavn Etternavn (oladunk@example.com)', @@ -114,21 +114,21 @@ 'file_name' => 'Fil', 'file_type' => 'Filtype', 'file_uploads' => 'Filopplastinger', - 'file_upload' => 'File Upload', + 'file_upload' => 'Filopplastning', 'generate' => 'Generer', - 'generate_labels' => 'Generate Labels', + 'generate_labels' => 'Opprett etiketter', 'github_markdown' => 'Dette feltet tillater Github flavored markdown.', 'groups' => 'Grupper', 'gravatar_email' => 'Gravatar e-postadresse', - 'gravatar_url' => 'Change your avatar at Gravatar.com.', + 'gravatar_url' => 'Endre din avatar på Gravatar.com.', 'history' => 'Historie', 'history_for' => 'Historikk for', 'id' => 'ID', 'image' => 'Bilde', 'image_delete' => 'Slett bilde', 'image_upload' => 'Last opp bilde', - 'filetypes_accepted_help' => 'Accepted filetype is :types. Max upload size allowed is :size.|Accepted filetypes are :types. Max upload size allowed is :size.', - 'filetypes_size_help' => 'Max upload size allowed is :size.', + 'filetypes_accepted_help' => 'Godkjent filtype er :types. Maks opplastingsstørrelse er :size.|Aksepterte filtyper er :types. Maks opplastingsstørrelse er :size.', + 'filetypes_size_help' => 'Maks opplastingsstørrelse er :size.', 'image_filetypes_help' => 'Tillatte filtyper er jpg, webp, png, gif, og svg. Maks filstørrelse er :size.', 'import' => 'Importer', 'importing' => 'Importerer', @@ -138,7 +138,7 @@ 'asset_maintenance_report' => 'Rapport Vedlikehold av eiendeler', 'asset_maintenances' => 'Vedlikehold av eiendeler', 'item' => 'Enhet', - 'item_name' => 'Item Name', + 'item_name' => 'Navn', 'insufficient_permissions' => 'Utilstrekkelige rettigheter!', 'kits' => 'Forhåndsdefinerte sett', 'language' => 'Språk', @@ -150,7 +150,7 @@ 'licenses_available' => 'Tilgjengelige lisenser', 'licenses' => 'Lisenser', 'list_all' => 'List alle', - 'loading' => 'Loading... please wait....', + 'loading' => 'Laster... vennligst vent....', 'lock_passwords' => 'Denne feltverdien vil ikke bli lagret i en demo-installasjon.', 'feature_disabled' => 'Denne funksjonen er deaktivert i demo-installasjonen.', 'location' => 'Lokasjon', @@ -159,17 +159,17 @@ 'logout' => 'Logg ut', 'lookup_by_tag' => 'Søk på ID-merke', 'maintenances' => 'Vedlikehold', - 'manage_api_keys' => 'Manage API Keys', + 'manage_api_keys' => 'Administrer API-nøkler', 'manufacturer' => 'Produsent', 'manufacturers' => 'Produsenter', 'markdown' => 'Dette feltet tillater Github flavored markdown.', 'min_amt' => 'Min. antall', - 'min_amt_help' => 'Minimum number of items that should be available before an alert gets triggered. Leave Min. QTY blank if you do not want to receive alerts for low inventory.', + 'min_amt_help' => 'Minimum antall varer som skal være tilgjengelig før et varsel blir utløst. La stå tomt hvis du ikke vil motta varsler for lavt inventar.', 'model_no' => 'Modellnummer', 'months' => 'måneder', 'moreinfo' => 'Mer info', 'name' => 'Navn', - 'new_password' => 'New Password', + 'new_password' => 'Nytt passord', 'next' => 'Neste', 'next_audit_date' => 'Neste revisjon dato', 'last_audit' => 'Siste revisjon', @@ -191,23 +191,23 @@ 'purchase_date' => 'Innkjøpsdato', 'qty' => 'Antall', 'quantity' => 'Antall', - 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quantity_minimum' => 'Du har :count enheter under eller nesten under minimum antall', 'ready_to_deploy' => 'Klar for utlevering', 'recent_activity' => 'Nylig aktivitet', - 'remaining' => 'Remaining', + 'remaining' => 'Gjenstår', 'remove_company' => 'Fjern tilknytning til bedrift', 'reports' => 'Rapporter', 'restored' => 'gjenopprettet', 'restore' => 'Gjenopprett', - 'requestable_models' => 'Requestable Models', + 'requestable_models' => 'Forespørrbare modeller', 'requested' => 'Forespurt', - 'requested_date' => 'Requested Date', - 'requested_assets' => 'Requested Assets', - 'requested_assets_menu' => 'Requested Assets', + 'requested_date' => 'Forespurt dato', + 'requested_assets' => 'Forespurte eiendeler', + 'requested_assets_menu' => 'Forespurte eiendeler', 'request_canceled' => 'Forespørsel avbrutt', 'save' => 'Lagre', 'select' => 'Velg', - 'select_all' => 'Select All', + 'select_all' => 'Velg alle', 'search' => 'Søk', 'select_category' => 'Velg en kategori', 'select_department' => 'Velg en avdeling', @@ -227,7 +227,7 @@ 'sign_in' => 'Logg inn', 'signature' => 'Signatur', 'skin' => 'Tema', - 'slack_msg_note' => 'A slack message will be sent', + 'slack_msg_note' => 'En slack-melding vil bli sendt', 'slack_test_msg' => 'Hei-hå! Ser som din Slack-integrasjon med Snipe-IT fungerer!', 'some_features_disabled' => 'DEMO MODUS: Noe funksjonalitet er skrudd av i denne installasjonen.', 'site_name' => 'Nettstedsnavn', @@ -239,7 +239,7 @@ 'sure_to_delete' => 'Er du sikker på at du vil slette', 'submit' => 'Send', 'target' => 'Mål', - 'toggle_navigation' => 'Toogle Navigation', + 'toggle_navigation' => 'Navigasjon av/på', 'time_and_date_display' => 'Tid og Datovisning', 'total_assets' => 'eiendeler totalt', 'total_licenses' => 'lisener totalt', @@ -259,7 +259,7 @@ 'users' => 'Brukere', 'viewall' => 'Vis alle', 'viewassets' => 'Vis tildelte eiendeler', - 'viewassetsfor' => 'View Assets for :name', + 'viewassetsfor' => 'Vis eiendelene til :name', 'website' => 'Nettsted', 'welcome' => 'Velkommen, :name', 'years' => 'år', @@ -273,78 +273,78 @@ 'accept' => 'Akseptér :asset', 'i_accept' => 'Jeg aksepterer', 'i_decline' => 'Jeg avslår', - 'accept_decline' => 'Accept/Decline', + 'accept_decline' => 'Godta/Avslå', 'sign_tos' => 'Signér under for å akseptere vilkårene for tjenesten:', 'clear_signature' => 'Fjern signatur', 'show_help' => 'Vis hjelp', 'hide_help' => 'Skjul hjelp', - 'view_all' => 'view all', - 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', - 'do_not_change' => 'Do Not Change', - 'bug_report' => 'Report a Bug', - 'user_manual' => 'User\'s Manual', - 'setup_step_1' => 'Step 1', - 'setup_step_2' => 'Step 2', - 'setup_step_3' => 'Step 3', - 'setup_step_4' => 'Step 4', - 'setup_config_check' => 'Configuration Check', - 'setup_create_database' => 'Create Database Tables', - 'setup_create_admin' => 'Create Admin User', - 'setup_done' => 'Finished!', - 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', - 'checked_out_to' => 'Checked out to', - 'fields' => 'Fields', - 'last_checkout' => 'Last Checkout', - 'due_to_checkin' => 'The following :count items are due to be checked in soon:', - 'expected_checkin' => 'Expected Checkin', - 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', - 'changed' => 'Changed', - 'to' => 'To', - 'report_fields_info' => '

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

-

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

', - 'range' => 'Range', - 'bom_remark' => 'Add a BOM (byte-order mark) to this CSV', - 'improvements' => 'Improvements', - '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.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', + 'backups_logged_out' => 'Zostaniesz wylogowany po zakończeniu przywracania.', 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', 'barcode_settings' => 'Ustawienia Kodów Kreskowych', 'confirm_purge' => 'Potwierdź wyczyszczenie', @@ -74,7 +74,7 @@ return [ 'label_logo_size' => 'Najlepiej wygląda logo kwadratowe - będzie wyświetlane w prawym górnym rogu każdej etykiety aktywów. ', 'laravel' => 'Wersja Laravel', 'ldap' => 'LDAP', - 'ldap_help' => 'LDAP/Active Directory', + 'ldap_help' => 'Usługa katalogowa Active Directory', 'ldap_client_tls_key' => 'Klucz TLS klienta LDAP', 'ldap_client_tls_cert' => 'Ceryfikat TLS klienta LDAP', 'ldap_enabled' => 'LDAP włączone', @@ -115,9 +115,9 @@ return [ 'license' => 'Licencja oprogramowania', 'load_remote_text' => 'Skrypty zdalne', 'load_remote_help_text' => 'Ta instalacja Snipe-IT może załadować skrypty z zewnętrznego świata.', - 'login' => 'Login Attempts', + 'login' => 'Próby logowania', 'login_attempt' => 'Login Attempt', - 'login_ip' => 'IP Address', + 'login_ip' => 'Adres IP', 'login_success' => 'Success?', 'login_user_agent' => 'User Agent', 'login_help' => 'List of attempted logins', @@ -149,11 +149,11 @@ return [ 'php_gd_warning' => 'PHP Image Processing i GD plugin nie są zainstalowane.', 'pwd_secure_complexity' => 'Złożoności haseł', 'pwd_secure_complexity_help' => 'Wybierz dowolną regułę złożoności hasła, którą chcesz wymusić.', - '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' => 'Hasło nie może być takie samo jak imię, nazwisko, adres e-mail lub nazwa użytkownika', + 'pwd_secure_complexity_letters' => 'Wymagaj co najmniej jednej litery', + 'pwd_secure_complexity_numbers' => 'Wymagaj co najmniej jednej liczby', + 'pwd_secure_complexity_symbols' => 'Wymaga co najmniej jednego symbolu', + 'pwd_secure_complexity_case_diff' => 'Wymagaj co najmniej jednej wielkiej i jednej małej litery', 'pwd_secure_min' => 'Minimalne znaki hasła', 'pwd_secure_min_help' => 'Minimalna dozwolona wartość to 8', 'pwd_secure_uncommon' => 'Zapobieganie wspólnym hasłom', @@ -283,7 +283,7 @@ return [ 'barcode_delete_cache' => 'Delete Barcode Cache', 'branding_title' => 'Update Branding Settings', 'general_title' => 'Update General Settings', - 'mail_test' => 'Send Test', + 'mail_test' => 'Wyślij wiadomość testową', 'mail_test_help' => 'This will attempt to send a test mail to :replyto.', 'filter_by_keyword' => 'Filter by setting keyword', 'security' => 'Security', @@ -299,7 +299,7 @@ return [ 'notifications' => 'Notifications', 'notifications_help' => 'Email alerts, audit settings', 'asset_tags_help' => 'Incrementing and prefixes', - 'labels' => 'Labels', + 'labels' => 'Etykiety', 'labels_title' => 'Update Label Settings', 'labels_help' => 'Label sizes & settings', 'purge' => 'Purge', @@ -309,13 +309,13 @@ return [ 'ldap_ad' => 'LDAP/AD', 'employee_number' => 'Employee Number', 'create_admin_user' => 'Create a User ::', - 'create_admin_success' => 'Success! Your admin user has been added!', + 'create_admin_success' => 'Sukces! Twój użytkownik administratracyjny został dodany!', 'create_admin_redirect' => 'Click here to go to your app login!', - 'setup_migrations' => 'Database Migrations ::', + 'setup_migrations' => 'Migracje bazy danych ::', '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', + 'setup_migration_create_user' => 'Następnie: Stwórz użytkownika', + 'ldap_settings_link' => 'Ustawienia LDAP', 'slack_test' => 'Test Integration', ]; diff --git a/resources/lang/pl/admin/settings/message.php b/resources/lang/pl/admin/settings/message.php index d932d56308..ca2ac209a0 100644 --- a/resources/lang/pl/admin/settings/message.php +++ b/resources/lang/pl/admin/settings/message.php @@ -11,8 +11,8 @@ return [ 'file_deleted' => 'Kopia zapasowa usunięta pomyślnie. ', 'generated' => 'Nowa kopia zapasowa utworzona pomyślnie.', 'file_not_found' => 'Nie odnaleziono kopii zapasowej na serwerze.', - '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' => 'Tak, przywróć. Mam świadomość, że spowoduje to nadpisanie istniejących danych w bazie danych. Spowoduje to również wylogowanie wszystkich istniejących użytkowników (w tym Ciebie).', + 'restore_confirm' => 'Czy na pewno chcesz przywrócić bazę danych z :filename?' ], 'purge' => [ 'error' => 'Wystąpił błąd podczas czyszczenia. ', @@ -20,24 +20,24 @@ return [ 'success' => 'Pomyślnie wyczyszczono rekordy usunięte.', ], 'mail' => [ - 'sending' => 'Sending Test Email...', - 'success' => 'Mail sent!', - 'error' => 'Mail could not be sent.', + 'sending' => 'Wysyłanie testowej wiadomości e-mail...', + 'success' => 'Wiadomość wysłana!', + 'error' => 'Wiadomość nie może zostać wysłana.', 'additional' => 'No additional error message provided. Check your mail settings and your app log.' ], 'ldap' => [ 'testing' => 'Testing LDAP Connection, Binding & Query ...', - '500' => '500 Server Error. Please check your server logs for more information.', - 'error' => 'Something went wrong :(', - 'sync_success' => 'A sample of 10 users returned from the LDAP server based on your settings:', - 'testing_authentication' => 'Testing LDAP Authentication...', + '500' => 'Błąd serwera 500. Sprawdź logi serwera, aby uzyskać więcej informacji.', + 'error' => 'Coś poszło nie tak :(', + 'sync_success' => 'Przykładowe 10 użytkowników zwrócona z serwera LDAP na podstawie Twoich ustawień:', + 'testing_authentication' => 'Testowanie uwierzytelniania LDAP...', 'authentication_success' => 'User authenticated against LDAP successfully!' ], 'slack' => [ 'sending' => 'Sending Slack test message...', 'success_pt1' => 'Success! Check the ', 'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.', - '500' => '500 Server Error.', - 'error' => 'Something went wrong.', + '500' => 'Błąd 500 serwera.', + 'error' => 'Coś poszło nie tak.', ] ]; diff --git a/resources/lang/pl/admin/users/general.php b/resources/lang/pl/admin/users/general.php index 2e9257b215..7965ba1559 100644 --- a/resources/lang/pl/admin/users/general.php +++ b/resources/lang/pl/admin/users/general.php @@ -24,14 +24,14 @@ return [ 'two_factor_admin_optin_help' => 'Bieżące ustawienia administracyjne pozwalają na wybiórcze rejestrowanie uwierzytelniania dwuskładnikowego. ', 'two_factor_enrolled' => 'Zarejestrowane urządzenie 2FA ', 'two_factor_active' => 'Aktywuj 2FA ', - 'user_deactivated' => 'User is de-activated', - 'activation_status_warning' => 'Do not change activation status', + 'user_deactivated' => 'Użytkownik jest dezaktywowany', + 'activation_status_warning' => 'Nie zmieniaj statusu aktywacji', 'group_memberships_helpblock' => 'Only superadmins may edit group memberships.', 'superadmin_permission_warning' => 'Only superadmins may grant a user superadmin access.', 'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.', 'remove_group_memberships' => 'Remove Group Memberships', - 'warning_deletion' => 'WARNING:', - 'warning_deletion_information' => 'You are about to delete the :count user(s) listed below. Super admin names are highlighted in red.', - 'update_user_asssets_status' => 'Update all assets for these users to this status', + 'warning_deletion' => 'OSTRZEŻENIE:', + 'warning_deletion_information' => 'Zamierzasz usunąć :count użytkowników wymienionych poniżej. Superadministratorzy zaznaczeni są na czerwono.', + 'update_user_asssets_status' => 'Zaktualizuj wszystkie zasoby dla tych użytkowników do tego statusu', 'checkin_user_properties' => 'Check in all properties associated with these users', ]; diff --git a/resources/lang/pl/button.php b/resources/lang/pl/button.php index 7f33b23e70..b87d48ab20 100644 --- a/resources/lang/pl/button.php +++ b/resources/lang/pl/button.php @@ -8,7 +8,7 @@ return [ 'delete' => 'Kasuj', 'edit' => 'Edycja', 'restore' => 'Przywróć', - 'remove' => 'Remove', + 'remove' => 'Usuń', 'request' => 'Zamówienie', 'submit' => 'Zatwierdź', 'upload' => 'Wgraj', @@ -16,9 +16,9 @@ return [ 'select_files' => 'Wybierz pliki...', 'generate_labels' => '{1} Generuj etykietę|[2,*] Generuj etykiety', 'send_password_link' => 'Wyślij e-mail z linkiem resetującym hasło', - 'go' => 'Go', + 'go' => 'Dalej', 'bulk_actions' => 'Bulk Actions', 'add_maintenance' => 'Add Maintenance', - 'append' => 'Append', - 'new' => 'New', + 'append' => 'Dołącz', + 'new' => 'Nowy', ]; diff --git a/resources/lang/pl/general.php b/resources/lang/pl/general.php index 5dbfcb2483..8a6a84d8c7 100644 --- a/resources/lang/pl/general.php +++ b/resources/lang/pl/general.php @@ -33,10 +33,10 @@ 'bulkaudit' => 'Audyt zbiorczy', 'bulkaudit_status' => 'Kontrola stanu', 'bulk_checkout' => 'Zbiorcze Przypisanie', - 'bulk_edit' => 'Bulk Edit', - 'bulk_delete' => 'Bulk Delete', - 'bulk_actions' => 'Bulk Actions', - 'bulk_checkin_delete' => 'Bulk Checkin & Delete', + 'bulk_edit' => 'Zbiorcza Edycja', + 'bulk_delete' => 'Zbiorcze Usuwanie', + 'bulk_actions' => 'Masowe przetwarzanie', + 'bulk_checkin_delete' => 'Zaznacz wiele i usuń', 'bystatus' => 'wg statusu', 'cancel' => 'Anuluj', 'categories' => 'Kategorie', @@ -69,8 +69,8 @@ 'updated_at' => 'Zaktualizowano', 'currency' => 'PLN', // this is deprecated 'current' => 'Lista urzytkowników', - 'current_password' => 'Current Password', - 'customize_report' => 'Customize Report', + 'current_password' => 'Bieżące hasło', + 'customize_report' => 'Dostosuj raport', 'custom_report' => 'Raport niestandardowy składnik aktywów', 'dashboard' => 'Panel główny', 'days' => 'dni', @@ -82,7 +82,7 @@ 'delete_confirm' => 'Czy na pewno chcesz usunąć :przedmiot?', 'deleted' => 'Usunięte', 'delete_seats' => 'Usunięte miejsca', - 'deletion_failed' => 'Deletion failed', + 'deletion_failed' => 'Usunięcie nieudane', 'departments' => 'Lokalizacje', 'department' => 'Lokalizacja', 'deployed' => 'Rozmieszczone', @@ -97,7 +97,7 @@ 'email_domain' => 'Domena poczty e-mail', 'email_format' => 'Format e-mail', 'email_domain_help' => 'To jest używane do generowania e-maili podczas importowania', - 'error' => 'Error', + 'error' => 'Błąd', 'filastname_format' => 'Pierwsza litera imienia i nazwisko (jsmith@example.com)', 'firstname_lastname_format' => 'Imię nazwisko (jane.smith@example.com)', 'firstname_lastname_underscore_format' => 'Imię Nazwisko (pawel@example.com)', @@ -114,7 +114,7 @@ 'file_name' => 'Plik', 'file_type' => 'Rodzaj pliku', 'file_uploads' => 'Dodaj plik', - 'file_upload' => 'File Upload', + 'file_upload' => 'Dodaj plik', 'generate' => 'Generuj', 'generate_labels' => 'Generate Labels', 'github_markdown' => 'To pole akceptuje markdown z Github\'a.', @@ -128,7 +128,7 @@ 'image_delete' => 'Usuń zdjęcie', 'image_upload' => 'Dodaj zdjęcie', 'filetypes_accepted_help' => 'Accepted filetype is :types. Max upload size allowed is :size.|Accepted filetypes are :types. Max upload size allowed is :size.', - 'filetypes_size_help' => 'Max upload size allowed is :size.', + 'filetypes_size_help' => 'Maksymalny dozwolony rozmiar wysyłania to :size.', 'image_filetypes_help' => 'Akceptowane typy plików to jpg, webp, png, gif i svg. Maksymalny dozwolony rozmiar to :size.', 'import' => 'Zaimportuj', 'importing' => 'Importowanie', @@ -150,7 +150,7 @@ 'licenses_available' => 'Dostępne licencje', 'licenses' => 'Licencje', 'list_all' => 'Pokaż Wszystkie', - 'loading' => 'Loading... please wait....', + 'loading' => 'Ładuję, proszę czekać....', 'lock_passwords' => 'Ta wartość pola nie zostanie zapisana w instalacji demonstracyjnej.', 'feature_disabled' => 'Ta funkcja została wyłączona dla instalacji demo.', 'location' => 'Lokalizacja', @@ -169,7 +169,7 @@ 'months' => 'miesięcy', 'moreinfo' => 'Więcej informacji', 'name' => 'Nazwa', - 'new_password' => 'New Password', + 'new_password' => 'Nowe hasło', 'next' => 'Następny', 'next_audit_date' => 'Data następnej inspekcji', 'last_audit' => 'Ostatnia inspekcja', @@ -194,14 +194,14 @@ 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', 'ready_to_deploy' => 'Gotowe do wdrożenia', 'recent_activity' => 'Ostatnia aktywność', - 'remaining' => 'Remaining', + 'remaining' => 'Pozostało', 'remove_company' => 'Usuń powiązanie firmy', 'reports' => 'Raporty', 'restored' => 'przywrócone', 'restore' => 'Przywróć', 'requestable_models' => 'Requestable Models', 'requested' => 'Wymagane', - 'requested_date' => 'Requested Date', + 'requested_date' => 'Data złożenia zapotrzebowania', 'requested_assets' => 'Requested Assets', 'requested_assets_menu' => 'Requested Assets', 'request_canceled' => 'Żądanie anulowane', diff --git a/resources/lang/pt-PT/admin/companies/general.php b/resources/lang/pt-PT/admin/companies/general.php index 2e2e325439..1d9fd2cd86 100644 --- a/resources/lang/pt-PT/admin/companies/general.php +++ b/resources/lang/pt-PT/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Selecione a empresa', - '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' => 'Sobre empresas', + 'about_companies_description' => ' Pode usar empresas como um simples campo informativo, ou pode usá-las para restringir a visibilidade e disponibilidade de activos a utilizadores com uma empresa específica, permitindo o Suporte Completo a Empresas nas suas Configurações Administrativas.', ]; diff --git a/resources/lang/pt-PT/admin/custom_fields/general.php b/resources/lang/pt-PT/admin/custom_fields/general.php index 8be0bd62ac..d12b67315d 100644 --- a/resources/lang/pt-PT/admin/custom_fields/general.php +++ b/resources/lang/pt-PT/admin/custom_fields/general.php @@ -2,11 +2,11 @@ return [ 'custom_fields' => 'Campos Personalizados', - 'manage' => 'Manage', + 'manage' => 'Gerir', 'field' => 'Campo', 'about_fieldsets_title' => 'Sobre conjuntos de campos', - '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' => 'Conjuntos de campos permitem criar grupos de campos personalizados que são frequentemente reutilizados para modelos de artigos específicos.', + 'custom_format' => 'Formato Regex personalizado...', 'encrypt_field' => 'Encriptar valor deste campo na base de dados', 'encrypt_field_help' => 'AVISO: Criptografar um campo torna-o não pesquisável.', 'encrypted' => 'Encriptado', @@ -28,19 +28,19 @@ return [ 'used_by_models' => 'Usado por modelos', 'order' => 'Ordem', 'create_fieldset' => 'Novo conjunto de campos', - 'create_fieldset_title' => 'Create a new fieldset', + 'create_fieldset_title' => 'Criar um novo conjunto de campos', 'create_field' => 'Novo conjunto de campos personalizado', - 'create_field_title' => 'Create a new custom field', + 'create_field_title' => 'Criar um novo campo personalizado', 'value_encrypted' => 'O valor deste campo está encriptado na base de dados. apenas administradores poderão ver o valor desencriptado', 'show_in_email' => 'Incluir o valor deste campo nos e-mails de checktout enviados ao utilizador? Os campos encriptados não serão incluídos.', - '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' => '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.

The CSV should be comma-delimited and formatted with headers that match the ones in the sample CSVs in the documentation.', 'import-history' => 'Histórico de Importação', 'asset_maintenance' => 'Manutenção de Artigo', 'asset_maintenance_report' => 'Relatório de Manutenção de Artigos', 'asset_maintenances' => 'Manutenções de Artigos', 'item' => 'Item', - 'item_name' => 'Item Name', + 'item_name' => 'Nome do Item', 'insufficient_permissions' => 'Permissões insuficientes!', - 'kits' => 'Predefined Kits', + 'kits' => 'Kits padrão', 'language' => 'Idioma', 'last' => 'Última', 'last_login' => 'Último login', @@ -150,7 +150,7 @@ 'licenses_available' => 'Licenças disponíveis', 'licenses' => 'Licenças', 'list_all' => 'Listar todas', - 'loading' => 'Loading... please wait....', + 'loading' => 'A carregar... por favor aguarde....', 'lock_passwords' => 'This field value will not be saved in a demo installation.', 'feature_disabled' => 'Esta funcionalidade foi desativada na versão de demonstração.', 'location' => 'Localização', @@ -159,7 +159,7 @@ 'logout' => 'Sair', 'lookup_by_tag' => 'Procurar por Código', 'maintenances' => 'Manutenções', - 'manage_api_keys' => 'Manage API Keys', + 'manage_api_keys' => 'Gerir API Keys', 'manufacturer' => 'Fabricante', 'manufacturers' => 'Fabricantes', 'markdown' => 'Este campo permite Github flavored markdown.', @@ -169,7 +169,7 @@ 'months' => 'meses', 'moreinfo' => 'Mais informação', 'name' => 'Nome', - 'new_password' => 'New Password', + 'new_password' => 'Nova senha', 'next' => 'Próximo', 'next_audit_date' => 'Próxima Data de Auditoria', 'last_audit' => 'Última auditoria', @@ -194,20 +194,20 @@ 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', 'ready_to_deploy' => 'Pronto para implementar', 'recent_activity' => 'Actividade Recente', - 'remaining' => 'Remaining', + 'remaining' => 'Restantes', 'remove_company' => 'Remover associação de empresa', 'reports' => 'Relatórios', 'restored' => 'restaurado', - 'restore' => 'Restore', - 'requestable_models' => 'Requestable Models', + 'restore' => 'Restaurar', + 'requestable_models' => 'Modelos Solicitados', 'requested' => 'Solicitado', - 'requested_date' => 'Requested Date', - 'requested_assets' => 'Requested Assets', - 'requested_assets_menu' => 'Requested Assets', + 'requested_date' => 'Data de solicitação', + 'requested_assets' => 'Artigos solicitados', + 'requested_assets_menu' => 'Artigos solicitados', 'request_canceled' => 'Pedido cancelado', 'save' => 'Guardar', 'select' => 'Selecione', - 'select_all' => 'Select All', + 'select_all' => 'Selecionar Tudo', 'search' => 'Pesquisar', 'select_category' => 'Selecionar Categoria', 'select_department' => 'Selecione um Departamento', @@ -227,8 +227,8 @@ 'sign_in' => 'Iniciar sessão', 'signature' => 'Assinatura', 'skin' => 'Skin', - 'slack_msg_note' => 'A slack message will be sent', - 'slack_test_msg' => 'Oh hai! Looks like your Slack integration with Snipe-IT is working!', + 'slack_msg_note' => 'Uma mensagem de slack será enviada', + 'slack_test_msg' => 'Parece que a integração Slack com o Snipe-IT está a funcionar!', 'some_features_disabled' => 'MODO DE DEMONSTRAÇÃO: Algumas funcionalidades estão desativadas para esta instalação.', 'site_name' => 'Nome do site', 'state' => 'Distrito', @@ -239,7 +239,7 @@ 'sure_to_delete' => 'Tem certeza de que deseja excluir', 'submit' => 'Submeter', 'target' => 'Destino', - 'toggle_navigation' => 'Toogle Navigation', + 'toggle_navigation' => 'Activar/Desactivar Navegação', 'time_and_date_display' => 'Exibição de hora e data', 'total_assets' => 'artigos', 'total_licenses' => 'licenças', diff --git a/resources/lang/pt-PT/help.php b/resources/lang/pt-PT/help.php index ac0df59422..1e4c861266 100644 --- a/resources/lang/pt-PT/help.php +++ b/resources/lang/pt-PT/help.php @@ -13,7 +13,7 @@ return [ | */ - 'more_info_title' => 'More Info', + 'more_info_title' => 'Mais Informações', 'audit_help' => 'Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.

Note that is this asset is checked out, it will not change the location of the person, asset or location it is checked out to.', diff --git a/resources/lang/pt-PT/mail.php b/resources/lang/pt-PT/mail.php index 0c3e00e77e..4f506eadfa 100644 --- a/resources/lang/pt-PT/mail.php +++ b/resources/lang/pt-PT/mail.php @@ -18,9 +18,9 @@ return [ 'click_to_confirm' => 'Por favor clique no link a seguir para confirmar sua conta :web:', 'click_on_the_link_accessory' => 'Por favor clique no link na parte inferior para confirmar que recebeu o acessório.', 'click_on_the_link_asset' => 'Por favor clique no link na parte inferior para confirmar que recebeu o artigo.', - 'Confirm_Asset_Checkin' => 'Asset checkin confirmation', - 'Confirm_Accessory_Checkin' => 'Accessory checkin confirmation', - 'Confirm_accessory_delivery' => 'Accessory delivery confirmation', + 'Confirm_Asset_Checkin' => 'Confirmação da devolução do artigo', + 'Confirm_Accessory_Checkin' => 'Confirme a devolução do acessório', + 'Confirm_accessory_delivery' => 'Confirme a entrega do acessório', 'Confirm_license_delivery' => 'License delivery confirmation', 'Confirm_asset_delivery' => 'Asset delivery confirmation', 'Confirm_consumable_delivery' => 'Consumable delivery confirmation', diff --git a/resources/lang/pt-PT/validation.php b/resources/lang/pt-PT/validation.php index b1d7633320..cd83393e58 100644 --- a/resources/lang/pt-PT/validation.php +++ b/resources/lang/pt-PT/validation.php @@ -64,7 +64,7 @@ return [ 'string' => 'O :attribute deve conter pelos menos :min caracteres.', 'array' => 'O atributo deve ter pelo menos: itens mínimos.', ], - 'starts_with' => 'The :attribute must start with one of the following: :values.', + 'starts_with' => 'O :attribute deve começar com um dos seguintes: :values.', 'not_in' => 'O :attribute selecionado é inválido.', 'numeric' => ':attribute tem que ser um número.', 'present' => 'O campo: atributo deve estar presente.', @@ -90,7 +90,7 @@ return [ 'uploaded' => 'O atributo: não foi possível carregar.', 'url' => 'O formato do :attribute é inválido.', 'unique_undeleted' => 'O :atribute deve ser único.', - 'non_circular' => 'The :attribute must not create a circular reference.', + 'non_circular' => 'O :attribute não deve criar uma referência circular.', /* |-------------------------------------------------------------------------- diff --git a/resources/lang/ro/admin/companies/general.php b/resources/lang/ro/admin/companies/general.php index 651e13b37c..7312ad9e3a 100644 --- a/resources/lang/ro/admin/companies/general.php +++ b/resources/lang/ro/admin/companies/general.php @@ -2,6 +2,6 @@ return [ 'select_company' => 'Selectați Companie', - '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' => 'Despre companii', + 'about_companies_description' => ' Poți folosi câmpul "Companie" ca un câmp simplu de informare sau le puteți folosi pentru a restricționa vizibilitatea și disponibilitatea activelor la utilizatorii unei anumite companii prin activarea opțiunii "Suport complet companii" din setările administrative.', ]; diff --git a/resources/lang/ro/admin/custom_fields/general.php b/resources/lang/ro/admin/custom_fields/general.php index 6860d88c86..f39eb30be1 100644 --- a/resources/lang/ro/admin/custom_fields/general.php +++ b/resources/lang/ro/admin/custom_fields/general.php @@ -2,11 +2,11 @@ return [ 'custom_fields' => 'câmpuri customizate', - 'manage' => 'Manage', + 'manage' => 'Gestionează', 'field' => 'Camp', 'about_fieldsets_title' => 'Despre câmpuri', - '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' => 'Seturile de câmpuri vă permit să grupați câmpurile personalizate care sunt frecvent utilizate pentru tipuri specifice de modele ale activelor.', + 'custom_format' => 'Format Regex personalizat...', 'encrypt_field' => 'Criptați valoarea acestui câmp în baza de date', 'encrypt_field_help' => 'AVERTISMENT: Criptarea unui câmp o face imposibilă.', 'encrypted' => 'criptat', @@ -27,19 +27,19 @@ return [ 'used_by_models' => 'Folosit de modele', 'order' => 'Ordin', 'create_fieldset' => 'Setul de câmpuri noi', - 'create_fieldset_title' => 'Create a new fieldset', + 'create_fieldset_title' => 'Creați un nou set de câmpuri', 'create_field' => 'Noul câmp personalizat', - 'create_field_title' => 'Create a new custom field', + 'create_field_title' => 'Creați un nou câmp personalizat', 'value_encrypted' => 'Valoarea acestui câmp este criptată în baza de date. Numai utilizatorii de administrare vor putea vizualiza valoarea decriptată', 'show_in_email' => 'Includeți valoarea acestui câmp în e-mailurile trimise utilizatorului? Căsuțele criptate nu pot fi incluse în e-mailuri.', - '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' => '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.

Usernames without an associated email address will not be emailed a password reset link. ', + 'send_password_link' => 'Odoslať odkaz na zmenu hesla', + 'email_reset_password' => 'Email na zmenu hesla', + 'reset_password' => 'Reset hesla', + 'saml_login' => 'Prihlásiť cez SAML', + 'login' => 'Prihlásenie', + 'login_prompt' => 'Prosím, prihláste sa', + 'forgot_password' => 'Zabudol som heslo', + 'ldap_reset_password' => 'Prosím kliknite tu pre zresetovanie LDAP hesla', + 'remember_me' => 'Zapamätať prihlásenie', + 'username_help_top' => 'Vložte Vaše užívateľské meno pre odoslanie odkazu emailom na resetovanie hesla.', + 'username_help_bottom' => 'Vaše používateľské meno a e-mailová adresa môžu byť rovnaké, ale nemusia, v závislosti od vašej konfigurácie. Ak si nepamätáte svoje používateľské meno, obráťte sa na správcu.

Používateľským menám bez priradenej e-mailovej adresy nebude odoslaný odkaz na obnovenie hesla. ', ]; diff --git a/resources/lang/sk/button.php b/resources/lang/sk/button.php index f7f28a1842..d9595be7e3 100644 --- a/resources/lang/sk/button.php +++ b/resources/lang/sk/button.php @@ -8,17 +8,17 @@ return [ 'delete' => 'Odstrániť', 'edit' => 'Upraviť', 'restore' => 'Obnoviť', - 'remove' => 'Remove', + 'remove' => 'Odstrániť', 'request' => 'Požiadavka', 'submit' => 'Odoslať', 'upload' => 'Odoslať', 'select_file' => 'Vybrať súbor...', 'select_files' => 'Vybrať súbory...', 'generate_labels' => '{1} Generovať štítok|[2,*] Generovať štítky', - 'send_password_link' => 'Send Password Reset Link', + 'send_password_link' => 'Odoslať odkaz na zmenu hesla', 'go' => 'Go', - 'bulk_actions' => 'Bulk Actions', - 'add_maintenance' => 'Add Maintenance', + 'bulk_actions' => 'Hromadné akcie', + 'add_maintenance' => 'Pridať údržbu', 'append' => 'Append', - 'new' => 'New', + 'new' => 'Nový', ]; diff --git a/resources/lang/sk/general.php b/resources/lang/sk/general.php index ae50796182..c3798cc491 100644 --- a/resources/lang/sk/general.php +++ b/resources/lang/sk/general.php @@ -33,9 +33,9 @@ 'bulkaudit' => 'Bulk Audit', 'bulkaudit_status' => 'Audit Status', 'bulk_checkout' => 'Bulk Checkout', - 'bulk_edit' => 'Bulk Edit', - 'bulk_delete' => 'Bulk Delete', - 'bulk_actions' => 'Bulk Actions', + 'bulk_edit' => 'Hromadná editácia', + 'bulk_delete' => 'Hromadné vymazanie', + 'bulk_actions' => 'Hromadné akcie', 'bulk_checkin_delete' => 'Bulk Checkin & Delete', 'bystatus' => 'by Status', 'cancel' => 'Zrušiť', @@ -69,8 +69,8 @@ 'updated_at' => 'Updated at', 'currency' => '$', // this is deprecated 'current' => 'Current', - 'current_password' => 'Current Password', - 'customize_report' => 'Customize Report', + 'current_password' => 'Aktuálne heslo', + 'customize_report' => 'Prispôsobiť report', 'custom_report' => 'Custom Asset Report', 'dashboard' => 'Dashboard', 'days' => 'days', @@ -82,7 +82,7 @@ 'delete_confirm' => 'Are you sure you wish to delete :item?', 'deleted' => 'Deleted', 'delete_seats' => 'Deleted Seats', - 'deletion_failed' => 'Deletion failed', + 'deletion_failed' => 'Vymazanie zlyhalo', 'departments' => 'Departments', 'department' => 'Department', 'deployed' => 'Deployed', @@ -97,7 +97,7 @@ 'email_domain' => 'Email Domain', 'email_format' => 'Email Format', 'email_domain_help' => 'This is used to generate email addresses when importing', - 'error' => 'Error', + 'error' => 'Chyba', 'filastname_format' => 'First Initial Last Name (jsmith@example.com)', 'firstname_lastname_format' => 'First Name Last Name (jane.smith@example.com)', 'firstname_lastname_underscore_format' => 'First Name Last Name (jane_smith@example.com)', @@ -114,21 +114,21 @@ 'file_name' => 'File', 'file_type' => 'File Type', 'file_uploads' => 'File Uploads', - 'file_upload' => 'File Upload', + 'file_upload' => 'Nahratie súboru', 'generate' => 'Generate', - 'generate_labels' => 'Generate Labels', + 'generate_labels' => 'Generovať štítky', 'github_markdown' => 'This field accepts Github flavored markdown.', 'groups' => 'Groups', 'gravatar_email' => 'Gravatar Email Address', - 'gravatar_url' => 'Change your avatar at Gravatar.com.', + 'gravatar_url' => 'Zmeniť avatar na Gravatar.com.', 'history' => 'History', 'history_for' => 'History for', 'id' => 'ID', 'image' => 'Image', 'image_delete' => 'Delete Image', 'image_upload' => 'Upload Image', - 'filetypes_accepted_help' => 'Accepted filetype is :types. Max upload size allowed is :size.|Accepted filetypes are :types. Max upload size allowed is :size.', - 'filetypes_size_help' => 'Max upload size allowed is :size.', + 'filetypes_accepted_help' => 'Akceptovaný typ súboru :types. Maximálna povolená veľkosť :size.|Akceptované typy súborov :types. Maximálna povolená veľkosť :size.', + 'filetypes_size_help' => 'Maximálna povolená veľkosť :size.', 'image_filetypes_help' => 'Accepted filetypes are jpg, webp, png, gif, and svg. Max upload size allowed is :size.', 'import' => 'Import', 'importing' => 'Importing', @@ -138,7 +138,7 @@ 'asset_maintenance_report' => 'Asset Maintenance Report', 'asset_maintenances' => 'Asset Maintenances', 'item' => 'Item', - 'item_name' => 'Item Name', + 'item_name' => 'Názov položky', 'insufficient_permissions' => 'Insufficient permissions!', 'kits' => 'Predefined Kits', 'language' => 'Language', @@ -150,7 +150,7 @@ 'licenses_available' => 'licenses available', 'licenses' => 'Licenses', 'list_all' => 'List All', - 'loading' => 'Loading... please wait....', + 'loading' => 'Načítavanie... prosím čakajte....', 'lock_passwords' => 'This field value will not be saved in a demo installation.', 'feature_disabled' => 'This feature has been disabled for the demo installation.', 'location' => 'Location', @@ -159,17 +159,17 @@ 'logout' => 'Logout', 'lookup_by_tag' => 'Lookup by Asset Tag', 'maintenances' => 'Maintenances', - 'manage_api_keys' => 'Manage API Keys', + 'manage_api_keys' => 'Spravovať API kľúče', 'manufacturer' => 'Manufacturer', 'manufacturers' => 'Manufacturers', 'markdown' => 'This field allows Github flavored markdown.', 'min_amt' => 'Min. QTY', - 'min_amt_help' => 'Minimum number of items that should be available before an alert gets triggered. Leave Min. QTY blank if you do not want to receive alerts for low inventory.', + 'min_amt_help' => 'Minimálny počet položiek, ktoré by mali byť dostupné pred spustením upozornenia. Nechajte minimálne množstvo prázdne, ak nechcete dostávať upozornenia na nízky inventár.', 'model_no' => 'Model No.', 'months' => 'months', 'moreinfo' => 'More Info', 'name' => 'Name', - 'new_password' => 'New Password', + 'new_password' => 'Nové Heslo', 'next' => 'Next', 'next_audit_date' => 'Next Audit Date', 'last_audit' => 'Last Audit', @@ -207,7 +207,7 @@ 'request_canceled' => 'Request Canceled', 'save' => 'Uložiť', 'select' => 'Select', - 'select_all' => 'Select All', + 'select_all' => 'Vybrať všetko', 'search' => 'Search', 'select_category' => 'Select a Category', 'select_department' => 'Select a Department', @@ -239,7 +239,7 @@ 'sure_to_delete' => 'Are you sure you wish to delete', 'submit' => 'Submit', 'target' => 'Target', - 'toggle_navigation' => 'Toogle Navigation', + 'toggle_navigation' => 'Prepnúť navigáciu', 'time_and_date_display' => 'Time and Date Display', 'total_assets' => 'total assets', 'total_licenses' => 'total licenses', @@ -273,77 +273,77 @@ 'accept' => 'Accept :asset', 'i_accept' => 'I accept', 'i_decline' => 'I decline', - 'accept_decline' => 'Accept/Decline', + 'accept_decline' => 'Prijať/Odmietnuť', 'sign_tos' => 'Sign below to indicate that you agree to the terms of service:', 'clear_signature' => 'Clear Signature', 'show_help' => 'Show help', 'hide_help' => 'Hide help', - 'view_all' => 'view all', - 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', - 'do_not_change' => 'Do Not Change', - 'bug_report' => 'Report a Bug', - 'user_manual' => 'User\'s Manual', - 'setup_step_1' => 'Step 1', - 'setup_step_2' => 'Step 2', - 'setup_step_3' => 'Step 3', - 'setup_step_4' => 'Step 4', - 'setup_config_check' => 'Configuration Check', - 'setup_create_database' => 'Create Database Tables', - 'setup_create_admin' => 'Create Admin User', - 'setup_done' => 'Finished!', + 'view_all' => 'zobraziť všetko', + 'hide_deleted' => 'Skryť zmazané', + 'email' => 'E-mail', + 'do_not_change' => 'Nemeniť', + 'bug_report' => 'Nahlásiť chybu', + 'user_manual' => 'Užívateľský manuál', + 'setup_step_1' => 'Krok 1', + 'setup_step_2' => 'Krok 2', + 'setup_step_3' => 'Krok 3', + 'setup_step_4' => 'Krok 4', + 'setup_config_check' => 'Kontrola konfigurácie', + 'setup_create_database' => 'Vytvoriť databázové tabuľky', + 'setup_create_admin' => 'Vytvoriť admin užívateľa', + 'setup_done' => 'Hotovo!', 'bulk_edit_about_to' => 'You are about to edit the following: ', 'checked_out' => 'Checked Out', 'checked_out_to' => 'Checked out to', - 'fields' => 'Fields', + 'fields' => 'Polia', 'last_checkout' => 'Last Checkout', 'due_to_checkin' => 'The following :count items are due to be checked in soon:', 'expected_checkin' => 'Expected Checkin', 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', - 'changed' => 'Changed', + 'changed' => 'Zmenené', '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' => '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.

Sizinentire :app_name Veritabanı yüklediğiniz dosyalarla değiştirilecektir.. ', 'backups_logged_out' => 'Geri yükleme tamamlandığında oturumunuz kapatılacaktır.', - 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', + 'backups_large' => 'Çok büyük yedeklemeler, geri yükleme girişiminde zaman aşımına uğrayabilir ve komut satırı üzerinden çalıştırılması gerekebilir. ', 'barcode_settings' => 'Barkod Ayarları', 'confirm_purge' => 'Temizleme Onayı', 'confirm_purge_help' => 'Silinmiş kayıtlarınızı temizlemek için aşağıdaki kutuya "DELETE" yazın. Bu işlem geri alınamaz ve silinmiş tüm eşya ve kullanıcılar KALICI OLARAK silinir. (Güvende olabilmek için öncelikle bir yedek almalısınız.)', @@ -56,7 +56,7 @@ return [ 'barcode_type' => '2D Barkod Türü', 'alt_barcode_type' => '1D Barkod Türü', 'email_logo_size' => 'E-posta iletilerinde kare biçimli logolar önerilir. ', - 'enabled' => 'Enabled', + 'enabled' => 'Etkin', 'eula_settings' => 'Son Kullanıcı Lisans Sözleşmesi Ayarları', 'eula_markdown' => 'This EULA allows Github flavored markdown.', 'favicon' => 'Favicon', @@ -65,8 +65,8 @@ return [ 'footer_text' => 'Ek Altbilgi Metni ', 'footer_text_help' => 'Bu metin altbilginin sağ köşesinde görünür. Linklerde Github flavored markdown şeklinde kullanıma izin verilir. Satır sonu, satır başı, resimler vb. gibi içerikler beklenmeyen sonuçlara sebep olabilir.', 'general_settings' => 'Genel Ayarlar', - 'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, tos, dashboard, privacy', - 'general_settings_help' => 'Default EULA and more', + 'general_settings_keywords' => 'şirket desteği, imza, kabul, e-posta formatı, kullanıcı adı formatı, resimler, sayfa başına, küçük resim, eula, tos, gösterge tablosu, gizlilik', + 'general_settings_help' => 'Varsayılan EULA ve fazlası', 'generate_backup' => 'Yedek Oluştur', 'header_color' => 'Başlık rengi', 'info' => 'Bu ayarlardan kurulum görünüşünüzü kişiselleştirebilirsiniz.', @@ -81,7 +81,7 @@ return [ 'ldap_integration' => 'LDAP Entegrasyonu', 'ldap_settings' => 'LDAP Ayarları', 'ldap_client_tls_cert_help' => 'LDAP bağlantıları için İstemci Tarafı TLS Sertifikası ve Anahtarı, genellikle yalnızca "Güvenli LDAP" içeren Google Workspace yapılandırmalarında kullanışlıdır. Her ikisi de gereklidir.', - 'ldap_client_tls_key' => 'LDAP Client-Side TLS key', + 'ldap_client_tls_key' => 'LDAP İstemci tarafı TLS anahtarı', 'ldap_login_test_help' => 'LDAP ayarlarınızı doğru yapılandırıp yapılandırmadığınızı test etmek yukarıda belirttiğiniz DN için geçerli bir LDAP kullanıcı adı ve parolası giriniz. ÖNCE GÜNCEL LDAP AYARLARINI KAYDETMELİSİN.', 'ldap_login_sync_help' => 'Bu sadece LDAP\'ın doğru şekilde senkron edilebildiğini test eder. Eğer LDAP Kimlik Doğrulama sorgunuz doğru değilse, kullanıcılar giriş yapamayabilirler. ÖNCE GÜNCEL LDAP AYARLARINI KAYDETMELİSİN.', 'ldap_server' => 'LDAP Sunucu', @@ -111,16 +111,16 @@ return [ 'ldap_emp_num' => 'LDAP Çalışan Numarası', 'ldap_email' => 'LDAP Mail', 'ldap_test' => 'Test LDAP', - 'ldap_test_sync' => 'Test LDAP Synchronization', + 'ldap_test_sync' => 'LDAP Senkronizasyonunu test et', 'license' => 'Yazılım Lisansı', 'load_remote_text' => 'Uzak Komut dosyaları', 'load_remote_help_text' => 'Bu Snipe-IT kurulumu dış ortamdan scriptler yükleyebilir.', - 'login' => 'Login Attempts', - 'login_attempt' => 'Login Attempt', - 'login_ip' => 'IP Address', - 'login_success' => 'Success?', - 'login_user_agent' => 'User Agent', - 'login_help' => 'List of attempted logins', + 'login' => 'Giriş Denemesi', + 'login_attempt' => 'Giriş Denemesi', + 'login_ip' => 'İp adresi', + 'login_success' => 'Başarılı?', + 'login_user_agent' => 'Kullanıcı Aracısı', + 'login_help' => 'Giriş Denemeleri Listesi', 'login_note' => 'Giriş Notu', 'login_note_help' => 'İsteğe bağlı olarak, kaybolan veya çalınan bir cihaz bulan kişilere yardımcı olması için giriş ekranınıza birkaç cümle ekleyin. Bu alan Github aromalı markdown kabul eder', 'login_remote_user_text' => 'Uzak Kullanıcı oturum açma seçenekleri', @@ -141,7 +141,7 @@ return [ 'optional' => 'İsteğe bağlı', 'per_page' => 'Sayfa başına sonuç sayısı', 'php' => 'PHP Versiyonu', - 'php_info' => 'PHP Info', + 'php_info' => 'PHP Bilgisi', 'php_overview' => 'PHP', 'php_overview_keywords' => 'phpinfo, system, info', 'php_overview_help' => 'PHP System info', @@ -149,11 +149,11 @@ return [ 'php_gd_warning' => 'PHP Image Processing ve GD eklentileri yüklü değil.', 'pwd_secure_complexity' => 'Şifre Karmaşıklığı', 'pwd_secure_complexity_help' => 'Hangi şifre karmaşıklığı kurallarını uygulamak istediğinizi seçin.', - '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' => 'Şifre, ad, soyad, e-posta veya kullanıcı adıyla aynı olamaz', + 'pwd_secure_complexity_letters' => 'En az bir harf gerekir', + 'pwd_secure_complexity_numbers' => 'En az bir numara gerekir', + 'pwd_secure_complexity_symbols' => 'En az bir sembol gerekir', + 'pwd_secure_complexity_case_diff' => 'En az bir büyük birde küçük harf gerekir', 'pwd_secure_min' => 'Şifre minimum karakterleri', 'pwd_secure_min_help' => 'En kısa izin verilen değer 8', 'pwd_secure_uncommon' => 'Ortak şifreleri önle', @@ -161,8 +161,8 @@ return [ 'qr_help' => 'Bu işlemi gerçekleştirmek için önce QR Kodlarını etkinleştirin', 'qr_text' => 'QR Kodu Yazısı', 'saml' => 'SAML', - 'saml_title' => 'Update SAML settings', - 'saml_help' => 'SAML settings', + 'saml_title' => 'SAML ayarlarını güncelle', + 'saml_help' => 'SAML ayarları', 'saml_enabled' => 'SAML etkinleştirildi', 'saml_integration' => 'SAML Entegrasyonu', 'saml_sp_entityid' => 'Varlık Kimliği', @@ -182,7 +182,7 @@ return [ 'saml_slo_help' => 'Bu, kullanıcının oturum kapatıldığında ilk olarak IdP\'ye yönlendirilmesine neden olur. IdP, SP tarafından başlatılan SAML SLO\'yu doğru şekilde desteklemiyorsa işaretlemeden bırakın.', 'saml_custom_settings' => 'SAML Özel Ayarları', 'saml_custom_settings_help' => 'Onelogin/php-saml kitaplığına ek ayarlar belirleyebilirsiniz. Kendi sorumluluğunuzda kullanın.', - 'saml_download' => 'Download Metadata', + 'saml_download' => 'Metadata\'yı indir', 'setting' => 'Ayar', 'settings' => 'Ayarlar', 'show_alerts_in_menu' => 'Alarmları üst menüde göster', @@ -193,9 +193,9 @@ return [ 'show_images_in_email' => 'E-postalarda resimleri göster', 'show_images_in_email_help' => 'Snipe-IT kurulumunuz bir VPN\'in ya da kapalı bir ağın arkasındaysa ve ağ dışındaki kullanıcılar bu kurulumda sunulan görüntüleri e-postalarına yükleyemezse bu kutunun işaretini kaldırın.', 'site_name' => 'Site Adı', - 'slack' => 'Slack', - 'slack_title' => 'Update Slack Settings', - 'slack_help' => 'Slack settings', + 'slack' => 'Gevşek', + 'slack_title' => 'Slack ayarlarını güncelleştir', + 'slack_help' => 'Slack ayarları', 'slack_botname' => 'Slack Bot Adı', 'slack_channel' => 'Slack Kanalı', 'slack_endpoint' => 'Slack Endpoint', @@ -212,8 +212,8 @@ return [ 'update' => 'Ayarları Güncelle', 'value' => 'Değer', 'brand' => 'Marka', - 'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css', - 'brand_help' => 'Logo, Site Name', + 'brand_keywords' => 'alt bilgi, logo, baskı, tema, cilt, üst bilgi, renkler, renk ve css ayarları', + 'brand_help' => 'Logo, Site Adı', 'web_brand' => 'Web Markalama Türü', 'about_settings_title' => 'Ayarlar Hakkında', 'about_settings_text' => 'Bu ayarlar, yüklemenizin belirli yönlerini özelleştirmenizi sağlar.', @@ -225,7 +225,7 @@ return [ 'privacy_policy' => 'Gizlilik Politikası', 'privacy_policy_link_help' => 'Buraya bir URL eklenirse, gizlilik politikanıza bir bağlantı uygulama altbilgisine ve sistemin GDPR\'ye uygun olarak gönderdiği tüm e-postalara dahil edilecektir. ', 'purge' => 'Silinmiş Kayıtları Temizle', - 'purge_deleted' => 'Purge Deleted ', + 'purge_deleted' => 'Kalıcı olarak sil ', 'labels_display_bgutter' => 'Etiket alt cilt payı', 'labels_display_sgutter' => 'Etiket tarafı oluk', 'labels_fontsize' => 'Etiket yazı tipi boyutu', @@ -271,51 +271,51 @@ return [ 'unique_serial_help_text' => 'Bu kutunun işaretlenmesi, varlık serileri üzerinde benzersiz bir kısıtlama uygular', 'zerofill_count' => 'Varlık etiketlerinin uzunluğu, boşluksuz olmak üzere', 'username_format_help' => 'Bu ayar, yalnızca bir kullanıcı adı sağlanmadıysa ve sizin için bir kullanıcı adı oluşturmamız gerekiyorsa içe aktarma işlemi tarafından kullanılacaktır.', - 'oauth_title' => 'OAuth API Settings', - 'oauth' => 'OAuth', - 'oauth_help' => 'Oauth Endpoint Settings', - 'asset_tag_title' => 'Update Asset Tag Settings', - 'barcode_title' => 'Update Barcode Settings', - 'barcodes' => 'Barcodes', - 'barcodes_help_overview' => 'Barcode & QR settings', - 'barcodes_help' => 'This will attempt to delete cached barcodes. This would typically only be used if your barcode settings have changed, or if your Snipe-IT URL has changed. Barcodes will be re-generated when accessed next.', - 'barcodes_spinner' => 'Attempting to delete files...', - 'barcode_delete_cache' => 'Delete Barcode Cache', - 'branding_title' => 'Update Branding Settings', - 'general_title' => 'Update General Settings', - 'mail_test' => 'Send Test', - 'mail_test_help' => 'This will attempt to send a test mail to :replyto.', - 'filter_by_keyword' => 'Filter by setting keyword', - 'security' => 'Security', - 'security_title' => 'Update Security Settings', - 'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication', - 'security_help' => 'Two-factor, Password Restrictions', - 'groups_keywords' => 'permissions, permission groups, authorization', - 'groups_help' => 'Account permission groups', - 'localization' => 'Localization', - 'localization_title' => 'Update Localization Settings', - 'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation', - 'localization_help' => 'Language, date display', - 'notifications' => 'Notifications', - 'notifications_help' => 'Email alerts, audit settings', - 'asset_tags_help' => 'Incrementing and prefixes', - 'labels' => 'Labels', - 'labels_title' => 'Update Label Settings', - 'labels_help' => 'Label sizes & settings', - 'purge' => 'Purge', - 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', - 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', + 'oauth_title' => 'Auth API ayarları', + 'oauth' => 'Auth', + 'oauth_help' => 'Auth Endpoint Ayarları', + 'asset_tag_title' => 'Varlık Etiket Ayarlarını Güncelle', + 'barcode_title' => 'Barkod ayarlarını güncelle', + 'barcodes' => 'Barkod', + 'barcodes_help_overview' => 'Barkod & QR Ayarları', + 'barcodes_help' => 'Bu, önbelleğe alınmış barkodları silmeyi dener. Bu, genellikle yalnızca barkod ayarlarınız değiştiyse veya Snipe-IT URL\'niz değiştiyse kullanılır. Bir sonraki erişimde barkodlar yeniden oluşturulacaktır.', + 'barcodes_spinner' => 'Dosyalar siliniyor...', + 'barcode_delete_cache' => 'Barkod önbelleğini sil', + 'branding_title' => 'Marka Ayarlarını Güncelle', + 'general_title' => 'Genel Ayarları Güncelle', + 'mail_test' => 'Test Gönder', + 'mail_test_help' => ':replyto adresine test maili gönder.', + 'filter_by_keyword' => 'Anahtar kelime ile filtreleyin', + 'security' => 'Güvenlik', + 'security_title' => 'Güvenlik ayarlarını güncelle', + 'security_keywords' => 'parolalar, gereksinimler, iki faktörlü, iki faktörlü, ortak parolalar, uzaktan oturum açma, oturum kapatma ve kimlik doğrulama', + 'security_help' => 'İki adımlı kimlik doğrulama', + 'groups_keywords' => 'izinler, izin grupları, yetkilendirme', + 'groups_help' => 'Hesap izin grupları', + 'localization' => 'Yerelleştirme', + 'localization_title' => 'Yerelleştirme ayarlarını güncelle', + 'localization_keywords' => 'yerelleştirme, para birimi, yerel, yerel ayar, saat dilimi, saat dilimi, uluslararası, uluslararasılaştırma, dil, diller, çeviri', + 'localization_help' => 'Dil, Tarih biçimi', + 'notifications' => 'Bilfirimler', + 'notifications_help' => 'Email alarmları, Denetim Ayarları', + 'asset_tags_help' => 'Artış ve örnekler', + 'labels' => 'Etiket', + 'labels_title' => 'Etiket ayarlarını güncelle', + 'labels_help' => 'Etiket tasarımı &', + 'purge' => 'Temizle', + 'purge_keywords' => 'kalıcı olarak sil', + 'purge_help' => 'Silinen kayıtları temizle', + 'ldap_extension_warning' => 'Bu sunucuda LDAP uzantısı yüklü veya etkin değil gibi görünüyor. Ayarlarınızı yine de kaydedebilirsiniz, ancak LDAP senkronizasyonu veya oturum açma işleminin çalışması için PHP için LDAP uzantısını etkinleştirmeniz gerekir.', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', - 'create_admin_user' => 'Create a User ::', - 'create_admin_success' => 'Success! Your admin user has been added!', - 'create_admin_redirect' => 'Click here to go to your app login!', - 'setup_migrations' => 'Database Migrations ::', - 'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!', - 'setup_successful_migrations' => 'Your database tables have been created', - 'setup_migration_output' => 'Migration output:', - 'setup_migration_create_user' => 'Next: Create User', - 'ldap_settings_link' => 'LDAP Settings Page', - 'slack_test' => 'Test Integration', + 'employee_number' => 'Çalışan Sayısı', + 'create_admin_user' => 'Kullanıcı Oluştur::', + 'create_admin_success' => 'Başarılı! Admin kullanıcısı eklendi!', + 'create_admin_redirect' => 'Uygulama girişine gitmek için tıklayın!', + 'setup_migrations' => 'Veritabanı Taşıma::', + 'setup_no_migrations' => 'Taşınacak bir şey yok. Veritabanı tablolarınız zaten kurulu!', + 'setup_successful_migrations' => 'Veritabanı tablolarınız oluşturuldu', + 'setup_migration_output' => 'Dışa aktar:', + 'setup_migration_create_user' => 'Sıradaki: Kullanıcı oluştur', + 'ldap_settings_link' => 'LDAP Ayarları Sayfası', + 'slack_test' => ' entegrasyonunu dene', ]; diff --git a/resources/lang/tr/admin/settings/message.php b/resources/lang/tr/admin/settings/message.php index 62d3e1880e..becfbf75f9 100644 --- a/resources/lang/tr/admin/settings/message.php +++ b/resources/lang/tr/admin/settings/message.php @@ -11,8 +11,8 @@ return [ 'file_deleted' => 'Yedek dosyası başarıyla silindi.', 'generated' => 'Yeni bir yedekleme dosyası başarıyla oluşturuldu.', 'file_not_found' => 'Bu yedek dosyası sunucuda bulunamadı.', - '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' => 'Evet, geri yükleyin. Bunun, şu anda veritabanında bulunan mevcut verilerin üzerine yazılacağını kabul ediyorum. Bu aynı zamanda (siz dahil) tüm mevcut kullanıcılarınızın oturumunu kapatacaktır.', + 'restore_confirm' => 'Veritabanınızı :filename\'den geri yüklemek istediğinizden emin misiniz?' ], 'purge' => [ 'error' => 'Temizleme sırasında bir hata oluştu. ', @@ -20,24 +20,24 @@ return [ 'success' => 'Silinen kayıtları başarıyla temizlendi.', ], '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' => 'Test maili gönderiliyor...', + 'success' => 'Mail gönder!', + 'error' => 'Mail gönderilemedi.', + 'additional' => 'Ek hata mesajı sağlanmadı. Posta ayarlarınızı ve uygulama günlüğünüzü kontrol edin.' ], 'ldap' => [ - 'testing' => 'Testing LDAP Connection, Binding & Query ...', - '500' => '500 Server Error. Please check your server logs for more information.', - 'error' => 'Something went wrong :(', - 'sync_success' => 'A sample of 10 users returned from the LDAP server based on your settings:', - 'testing_authentication' => 'Testing LDAP Authentication...', - 'authentication_success' => 'User authenticated against LDAP successfully!' + 'testing' => 'LDAP bağlantısı deneniyor, bağlanılıyor ve sorgulanıyor ...', + '500' => '500 Sunucu Hatası. Daha fazla bilgi için lütfen sunucu günlüklerinizi kontrol edin.', + 'error' => 'Bir şeyler yanlış gitti :(', + 'sync_success' => 'Ayarlarınıza göre LDAP sunucusundan döndürülen 10 kullanıcıdan oluşan bir örnek:', + 'testing_authentication' => 'LDAP kimlik doğrulaması deneniyor...', + 'authentication_success' => 'LDAP kullanıcı kimliği başarıyla doğrulandı!' ], 'slack' => [ - 'sending' => 'Sending Slack test message...', - 'success_pt1' => 'Success! Check the ', - 'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.', - '500' => '500 Server Error.', - 'error' => 'Something went wrong.', + 'sending' => 'Slack test mesajı gönderiliyor...', + 'success_pt1' => 'Başarılı! Kontrol edin ', + 'success_pt2' => ' test mesajınız için kanal seçin ve ayarlarınızı kaydetmek için aşağıdaki KAYDET\'i tıkladığınızdan emin olun.', + '500' => '500 Sunucu Hatası.', + 'error' => 'Bir şeyler yanlış gitti.', ] ]; diff --git a/resources/lang/tr/admin/statuslabels/message.php b/resources/lang/tr/admin/statuslabels/message.php index 0fe2f31a93..adb37a1d59 100644 --- a/resources/lang/tr/admin/statuslabels/message.php +++ b/resources/lang/tr/admin/statuslabels/message.php @@ -23,7 +23,7 @@ return [ 'help' => [ 'undeployable' => 'Bu varlıklar kimseye atanamaz.', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => 'Bu varlıklar kontrol edilebilir. Atandıkları anda meta statüsünü alacaklar.Atandı.', 'archived' => 'Bu öğeler kontrol edilemez ve yalnızca Arşivlenmiş görünümde görünür. Bu, bütçeleme / tarihi amaçlar için varlıklarla ilgili bilgileri korumakta, ancak bunları günlük günlük varlık listesinin dışında tutmak için kullanışlıdır.', 'pending' => 'Bu varlıklar kimseye atanamıyor, genellikle onarım için olan ancak dolaşıma dönmesi beklenen öğeler için kullanılıyor.', ], diff --git a/resources/lang/tr/admin/users/general.php b/resources/lang/tr/admin/users/general.php index 1b8294f88d..3f5c4afcf8 100644 --- a/resources/lang/tr/admin/users/general.php +++ b/resources/lang/tr/admin/users/general.php @@ -30,7 +30,7 @@ return [ 'superadmin_permission_warning' => 'Only superadmins may grant a user superadmin access.', 'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.', 'remove_group_memberships' => 'Remove Group Memberships', - 'warning_deletion' => 'WARNING:', + 'warning_deletion' => 'UYARILAR:', 'warning_deletion_information' => 'You are about to delete the :count user(s) listed below. Super admin names are highlighted in red.', 'update_user_asssets_status' => 'Update all assets for these users to this status', 'checkin_user_properties' => 'Check in all properties associated with these users', diff --git a/resources/lang/tr/button.php b/resources/lang/tr/button.php index dfe94b58e0..998eb94757 100644 --- a/resources/lang/tr/button.php +++ b/resources/lang/tr/button.php @@ -8,7 +8,7 @@ return [ 'delete' => 'Sil', 'edit' => 'Düzenle', 'restore' => 'Geri yükle', - 'remove' => 'Remove', + 'remove' => 'Kaldır', 'request' => 'İstek', 'submit' => 'Gönder', 'upload' => 'Yükle', @@ -16,9 +16,9 @@ return [ 'select_files' => 'Dosyaları seçin...', 'generate_labels' => '{1} Etiket Oluştur|[2,*] Etiket Oluştur', 'send_password_link' => 'Şifre Sıfırlama Bağlantısını Gönder', - 'go' => 'Go', - 'bulk_actions' => 'Bulk Actions', - 'add_maintenance' => 'Add Maintenance', - 'append' => 'Append', - 'new' => 'New', + 'go' => 'Git', + 'bulk_actions' => 'Toplu Eylemler', + 'add_maintenance' => 'Bakım ekle', + 'append' => 'Ekle', + 'new' => 'Yeni', ]; diff --git a/resources/lang/tr/general.php b/resources/lang/tr/general.php index bad38c0aca..c46a5ba23d 100644 --- a/resources/lang/tr/general.php +++ b/resources/lang/tr/general.php @@ -19,8 +19,8 @@ 'asset' => 'Demirbaş', 'asset_report' => 'Demirbaş Raporu', 'asset_tag' => 'Demirbaş Etiketi', - 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', + 'asset_tags' => 'Varlık Adı', + 'assets_available' => 'Kullanılabilir Demirbaşlar', 'accept_assets' => 'Accept Assets :name', 'accept_assets_menu' => 'Accept Assets', 'audit' => 'Denetim', diff --git a/resources/lang/zh-CN/admin/companies/general.php b/resources/lang/zh-CN/admin/companies/general.php index 700e4ef363..d2654156e1 100644 --- a/resources/lang/zh-CN/admin/companies/general.php +++ b/resources/lang/zh-CN/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/zh-CN/admin/custom_fields/general.php b/resources/lang/zh-CN/admin/custom_fields/general.php index de04421d20..9fb594fc00 100644 --- a/resources/lang/zh-CN/admin/custom_fields/general.php +++ b/resources/lang/zh-CN/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' => '是否在发送给用户的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/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.

Your entire :app_name database and any uploaded files will be completely replaced by what\'s in the backup file. ', - 'backups_logged_out' => 'You will be logged out once your restore is complete.', - 'backups_large' => 'Very large backups may time out on the restore attempt and may still need to be run via command line. ', + 'backups_restoring' => '从备份中还原', + 'backups_upload' => '上传备份', + 'backups_path' => '服务器上的备份存储在 :path', + 'backups_restore_warning' => '使用还原按钮 从上次备份还原。 (目前无法使用 S3 文件存储或 Docker容器。)

您的 完整的 :app_name 数据库和任何上传的文件将被备份文件中的内容完全替换 ', + 'backups_logged_out' => '恢复完成后,您将被注销。', + 'backups_large' => '非常大的备份可能会超时恢复尝试,可能仍然需要通过命令行运行。 ', 'barcode_settings' => '条码设置', 'confirm_purge' => '确认清除', 'confirm_purge_help' => '在下面的框中输入文本“DELETE”以清除已删除的记录。此操作无法撤消,将永久删除所有软删除的项目和用户。(为了安全起见,你应该先做个备份。)', @@ -56,7 +56,7 @@ return [ 'barcode_type' => '二维码类型', 'alt_barcode_type' => '条码类型', 'email_logo_size' => '电子邮件中最好使用方形标志。 ', - 'enabled' => 'Enabled', + 'enabled' => '启用', 'eula_settings' => '最终用户许可协议(EULA)设置', 'eula_markdown' => 'EULA中可以使用Github flavored markdown.', 'favicon' => '收藏夹图标', @@ -65,8 +65,8 @@ return [ 'footer_text' => '附加页脚文本 ', 'footer_text_help' => '此文本将显示在右侧页脚中。链接允许使用 Github flavored markdown。换行符、页眉、图像等可能会导致不可预知的结果。', 'general_settings' => '一般设置', - 'general_settings_keywords' => 'company support, signature, acceptance, email format, username format, images, per page, thumbnail, eula, tos, dashboard, privacy', - 'general_settings_help' => 'Default EULA and more', + 'general_settings_keywords' => '公司支持、签名、接收、电子邮件格式、用户名格式、图片、每页、缩略图、eula、tos、仪表板、隐私', + 'general_settings_help' => '默认的 EULA和更多', 'generate_backup' => '生成备份', 'header_color' => '标题颜色', 'info' => '这些设置允许您自定义安装的某些方面', @@ -81,7 +81,7 @@ return [ 'ldap_integration' => 'LDAP集成', 'ldap_settings' => 'LDAP 设置', 'ldap_client_tls_cert_help' => 'LDAP 连接的客户端TLS 证书和密钥通常仅用于谷歌工作空间配置,两者都是必需的。', - 'ldap_client_tls_key' => 'LDAP Client-Side TLS key', + 'ldap_client_tls_key' => 'LDAP 客户端TLS 密钥', 'ldap_login_test_help' => '根据你指定的base DN,输入有效的LDAP用户名和密码,以测试您的LDAP登录是否配置正确。当然您必须先保存您更改的LDAP设置。', 'ldap_login_sync_help' => '这只证明了LDAP同步正确。如果您的LDAP身份验证查询设置不正确,用户可能仍然无法登录。当然您必须先保存您的LDAP设置。', 'ldap_server' => 'LDAP 服务器', @@ -110,17 +110,17 @@ return [ 'ldap_activated_flag_help' => '该标志用于确定用户是否可以登录Snipe-IT,不影响用户对其进行物品查询。', 'ldap_emp_num' => 'LDAP 员工号', 'ldap_email' => 'LDAP Email', - 'ldap_test' => 'Test LDAP', - 'ldap_test_sync' => 'Test LDAP Synchronization', + 'ldap_test' => '测试 LDAP', + 'ldap_test_sync' => '测试 LDAP 同步', 'license' => '软件许可证', 'load_remote_text' => '外部脚本', 'load_remote_help_text' => '允许Snipe-IT安装外部的加载脚本。', - 'login' => 'Login Attempts', - 'login_attempt' => 'Login Attempt', - 'login_ip' => 'IP Address', - 'login_success' => 'Success?', - 'login_user_agent' => 'User Agent', - 'login_help' => 'List of attempted logins', + 'login' => '登录尝试', + 'login_attempt' => '登录尝试', + 'login_ip' => 'IP 地址', + 'login_success' => '成功?', + 'login_user_agent' => '浏览器版本(User Agent)', + 'login_help' => '尝试登录的列表', 'login_note' => '登陆提示', 'login_note_help' => '可选择性地在登陆界面显示一些信息,例如给找到丢失或者被偷设备的用户提供帮助。这里支持Github的markdown语法。', 'login_remote_user_text' => '远程用户登录选项', @@ -141,19 +141,19 @@ return [ 'optional' => '可选', 'per_page' => '每页搜索结果', 'php' => 'PHP版本', - 'php_info' => 'PHP Info', + 'php_info' => 'PHP 信息', 'php_overview' => 'PHP', 'php_overview_keywords' => 'phpinfo, system, info', - 'php_overview_help' => 'PHP System info', + 'php_overview_help' => 'PHP 系统信息', 'php_gd_info' => '您必须安装php-gd显示二维码,请参阅安装说明。', 'php_gd_warning' => 'PHP图像处理的GD[php-gd]插件没有安装', 'pwd_secure_complexity' => '密码复杂度', 'pwd_secure_complexity_help' => '选择您想执行哪种密码复杂性规则。', - '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' => '密码不能与名字、姓氏、电子邮件或用户名相同', + 'pwd_secure_complexity_letters' => '至少需要一个字母', + 'pwd_secure_complexity_numbers' => '至少需要一个数字', + 'pwd_secure_complexity_symbols' => '至少需要一个符号', + 'pwd_secure_complexity_case_diff' => '至少需要一个大写和一个小写', 'pwd_secure_min' => '密码最少包含的字符', 'pwd_secure_min_help' => '允许的最小值是 8', 'pwd_secure_uncommon' => '禁止使用常见密码', @@ -161,8 +161,8 @@ return [ 'qr_help' => '允许二维码首次设置', 'qr_text' => '二维码文本', 'saml' => 'SAML', - 'saml_title' => 'Update SAML settings', - 'saml_help' => 'SAML settings', + 'saml_title' => '更新 SAML 设置', + 'saml_help' => 'SAML 设置', 'saml_enabled' => 'SAML 已启用', 'saml_integration' => 'SAML 集成', 'saml_sp_entityid' => '实体 ID', @@ -182,7 +182,7 @@ return [ 'saml_slo_help' => '这将导致用户在注销时首先被重定向到IdP。如果IdP不能正确地支持SP发起的SAML SLO,则不勾选。', 'saml_custom_settings' => 'SAML 自定义设置', 'saml_custom_settings_help' => '您可以为onelogin/php-saml库指定额外的设置。请自行承担风险。', - 'saml_download' => 'Download Metadata', + 'saml_download' => '下载元数据', 'setting' => '设置', 'settings' => '设置', 'show_alerts_in_menu' => '在顶部菜单中显示警告', @@ -194,8 +194,8 @@ return [ 'show_images_in_email_help' => '如果外部用户无法在邮件中通过你安装在VPN或内网的Snipe-IT加载图片,请取消此复选框。', 'site_name' => '站点名称', 'slack' => 'Slack', - 'slack_title' => 'Update Slack Settings', - 'slack_help' => 'Slack settings', + 'slack_title' => '更新 Slack 设置', + 'slack_help' => 'Slack设置', 'slack_botname' => 'Slack Bot名称', 'slack_channel' => 'Slack频道', 'slack_endpoint' => 'Slack节点', @@ -212,8 +212,8 @@ return [ 'update' => '更新设置', 'value' => '价值', 'brand' => '品牌', - 'brand_keywords' => 'footer, logo, print, theme, skin, header, colors, color, css', - 'brand_help' => 'Logo, Site Name', + 'brand_keywords' => '页脚、 Logo、 打印、 主题、 皮肤、 页眉、 颜色、 颜色、 css', + 'brand_help' => 'Logo,站点名称', 'web_brand' => '网页品牌类型', 'about_settings_title' => '设置', 'about_settings_text' => '这些设置允许您自定义您的安装偏好', @@ -225,7 +225,7 @@ return [ 'privacy_policy' => '隐私条款', 'privacy_policy_link_help' => '如果此处包含 url, 则将在应用程序页脚和系统发送的任何电子邮件中包含指向您的隐私策略的链接, 以符合 GDPR 的要求。 ', 'purge' => '清除已标记删除的记录', - 'purge_deleted' => 'Purge Deleted ', + 'purge_deleted' => '清除已删除 ', 'labels_display_bgutter' => '标签底部装订线', 'labels_display_sgutter' => '标签侧装订线', 'labels_fontsize' => '标签字体大小', @@ -271,51 +271,51 @@ return [ 'unique_serial_help_text' => '选中此框将强制对资产序列进行唯一性约束', 'zerofill_count' => '资产标签长度,包括补零', 'username_format_help' => '只有在没有提供用户名并且我们必须为您生成用户名时,导入过程才会使用此设置。', - 'oauth_title' => 'OAuth API Settings', + 'oauth_title' => 'OAuth API 设置', 'oauth' => 'OAuth', - 'oauth_help' => 'Oauth Endpoint Settings', - 'asset_tag_title' => 'Update Asset Tag Settings', - 'barcode_title' => 'Update Barcode Settings', - 'barcodes' => 'Barcodes', - 'barcodes_help_overview' => 'Barcode & QR settings', - 'barcodes_help' => 'This will attempt to delete cached barcodes. This would typically only be used if your barcode settings have changed, or if your Snipe-IT URL has changed. Barcodes will be re-generated when accessed next.', - 'barcodes_spinner' => 'Attempting to delete files...', - 'barcode_delete_cache' => 'Delete Barcode Cache', - 'branding_title' => 'Update Branding Settings', - 'general_title' => 'Update General Settings', - 'mail_test' => 'Send Test', - 'mail_test_help' => 'This will attempt to send a test mail to :replyto.', - 'filter_by_keyword' => 'Filter by setting keyword', - 'security' => 'Security', - 'security_title' => 'Update Security Settings', - 'security_keywords' => 'password, passwords, requirements, two factor, two-factor, common passwords, remote login, logout, authentication', + 'oauth_help' => 'Oauth Endpoint 设置', + 'asset_tag_title' => '更新资产标签设置', + 'barcode_title' => '更新条形码设置', + 'barcodes' => '条形码', + 'barcodes_help_overview' => '条形码 & QR 设置', + 'barcodes_help' => '这将尝试删除缓存条形码。 这通常只有在您的条码设置已经更改或您的Snipe-IT 链接已经更改时才使用。 下次访问时将重新生成条码。', + 'barcodes_spinner' => '正在尝试删除文件...', + 'barcode_delete_cache' => '删除条形码缓存', + 'branding_title' => '更新品牌设置', + 'general_title' => '更新常规设置', + 'mail_test' => '发送测试', + 'mail_test_help' => '这将尝试发送测试邮件到 :replyto。', + 'filter_by_keyword' => '通过设置关键字过滤', + 'security' => '安全', + 'security_title' => '更新安全设置', + 'security_keywords' => '密码、密码、要求、两个因素、两个因素、常用密码、远程登录、注销、验证', 'security_help' => 'Two-factor, Password Restrictions', 'groups_keywords' => 'permissions, permission groups, authorization', - 'groups_help' => 'Account permission groups', - 'localization' => 'Localization', - 'localization_title' => 'Update Localization Settings', - 'localization_keywords' => 'localization, currency, local, locale, time zone, timezone, international, internatinalization, language, languages, translation', - 'localization_help' => 'Language, date display', - 'notifications' => 'Notifications', - 'notifications_help' => 'Email alerts, audit settings', - 'asset_tags_help' => 'Incrementing and prefixes', - 'labels' => 'Labels', - 'labels_title' => 'Update Label Settings', - 'labels_help' => 'Label sizes & settings', - 'purge' => 'Purge', - 'purge_keywords' => 'permanently delete', - 'purge_help' => 'Purge Deleted Records', - 'ldap_extension_warning' => 'It does not look like the LDAP extension is installed or enabled on this server. You can still save your settings, but you will need to enable the LDAP extension for PHP before LDAP syncing or login will work.', + 'groups_help' => '帐户权限组', + 'localization' => '本地化', + 'localization_title' => '更新本地化设置', + 'localization_keywords' => '本地化、货币、本地、本地、时区、时区、国际、内部、语言、语言、翻译', + 'localization_help' => '语言,日期显示', + 'notifications' => '通知', + 'notifications_help' => '电子邮件提醒,盘点设置', + 'asset_tags_help' => '递增和前缀', + 'labels' => '标签', + 'labels_title' => '更新标签设置', + 'labels_help' => '标签大小 & 设置', + 'purge' => '清除', + 'purge_keywords' => '永久删除', + 'purge_help' => '清除已删除的记录', + 'ldap_extension_warning' => '它看起来不像在这个服务器上安装或启用LDAP扩展。 您仍然可以保存您的设置,但您需要启用 PHP 的 LDAP 扩展,然后LDAP 同步或登录才能正常工作。', 'ldap_ad' => 'LDAP/AD', - 'employee_number' => 'Employee Number', - 'create_admin_user' => 'Create a User ::', - 'create_admin_success' => 'Success! Your admin user has been added!', - 'create_admin_redirect' => 'Click here to go to your app login!', - 'setup_migrations' => 'Database Migrations ::', - 'setup_no_migrations' => 'There was nothing to migrate. Your database tables were already set up!', - 'setup_successful_migrations' => 'Your database tables have been created', - 'setup_migration_output' => 'Migration output:', - 'setup_migration_create_user' => 'Next: Create User', - 'ldap_settings_link' => 'LDAP Settings Page', - 'slack_test' => 'Test Integration', + 'employee_number' => '员工号码', + 'create_admin_user' => '创建用户 ::', + 'create_admin_success' => '成功!您的管理员用户已添加!', + 'create_admin_redirect' => '点击这里进入您的应用登录!', + 'setup_migrations' => '数据库迁移 ::', + 'setup_no_migrations' => '没有什么可以迁移。您的数据库表已设置!', + 'setup_successful_migrations' => '您的数据库表已创建', + 'setup_migration_output' => '迁移输出:', + 'setup_migration_create_user' => '下一步:创建用户', + 'ldap_settings_link' => 'LDAP 设置页面', + 'slack_test' => '测试 集成', ]; diff --git a/resources/lang/zh-CN/admin/settings/message.php b/resources/lang/zh-CN/admin/settings/message.php index 67c02d7a85..2bf7bb3ac8 100644 --- a/resources/lang/zh-CN/admin/settings/message.php +++ b/resources/lang/zh-CN/admin/settings/message.php @@ -11,8 +11,8 @@ return [ 'file_deleted' => '备份文件已成功删除。 ', 'generated' => '成功地创建了一个新的备份文件。', 'file_not_found' => '在服务器上找不到备份文件。', - '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' => '是的,还原它。我承认这将覆盖当前数据库中的任何现有数据。 这也将注销您现有的所有用户 (包括您)。', + 'restore_confirm' => '您确定要从 :filename还原您的数据库吗?' ], 'purge' => [ 'error' => '清除过程中出现了错误。 ', @@ -20,24 +20,24 @@ return [ 'success' => '删除记录已被成功的清除。', ], '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' => '正在发送测试邮件...', + 'success' => '邮件已发送!', + 'error' => '邮件无法发送。', + 'additional' => '没有提供额外的错误信息。请检查您的邮件设置和应用日志。' ], 'ldap' => [ - 'testing' => 'Testing LDAP Connection, Binding & Query ...', - '500' => '500 Server Error. Please check your server logs for more information.', - 'error' => 'Something went wrong :(', - 'sync_success' => 'A sample of 10 users returned from the LDAP server based on your settings:', - 'testing_authentication' => 'Testing LDAP Authentication...', - 'authentication_success' => 'User authenticated against LDAP successfully!' + 'testing' => '测试 LDAP 连接,绑定和查询 ...', + '500' => '500 服务器错误。请检查您的服务器日志以获取更多信息。', + 'error' => '出错了:(', + 'sync_success' => '基于您的设置,从LDAP服务器返回的10个用户样本:', + 'testing_authentication' => '测试 LDAP 身份验证...', + 'authentication_success' => '用户已成功通过LDAP认证!' ], 'slack' => [ - 'sending' => 'Sending Slack test message...', - 'success_pt1' => 'Success! Check the ', - 'success_pt2' => ' channel for your test message, and be sure to click SAVE below to store your settings.', - '500' => '500 Server Error.', - 'error' => 'Something went wrong.', + 'sending' => '正在发送Slack测试消息...', + 'success_pt1' => '成功!请检查 ', + 'success_pt2' => ' 您的测试消息频道,并且一定要点击下面的“保存”来存储您的设置。', + '500' => '500 服务器错误。', + 'error' => '出了错。', ] ]; diff --git a/resources/lang/zh-CN/admin/statuslabels/message.php b/resources/lang/zh-CN/admin/statuslabels/message.php index 9571b6e6bd..dafe713a14 100644 --- a/resources/lang/zh-CN/admin/statuslabels/message.php +++ b/resources/lang/zh-CN/admin/statuslabels/message.php @@ -23,7 +23,7 @@ return [ 'help' => [ 'undeployable' => '这些资产不能分配给任何人。', - 'deployable' => 'These assets can be checked out. Once they are assigned, they will assume a meta status of Deployed.', + 'deployable' => '这些资产可以被借出。一旦分配了它们,它们将成为状态 已分配。', 'archived' => '这些资产无法签出,只会显示在“存档”视图中。这有助于保留有关资产的预算/历史目的信息,但将其保留在日常资产清单之外。', 'pending' => '这些资产不能分配给任何人,经常用于修理的物品,但预计将重新流通。', ], diff --git a/resources/lang/zh-CN/admin/users/general.php b/resources/lang/zh-CN/admin/users/general.php index 49ebbe7200..812c01f324 100644 --- a/resources/lang/zh-CN/admin/users/general.php +++ b/resources/lang/zh-CN/admin/users/general.php @@ -24,14 +24,14 @@ return [ 'two_factor_admin_optin_help' => '您当前的管理员设置允许使用双重认证。 ', 'two_factor_enrolled' => '双重认证设备登记', 'two_factor_active' => '启用双重认证', - 'user_deactivated' => 'User is de-activated', - 'activation_status_warning' => 'Do not change activation status', - 'group_memberships_helpblock' => 'Only superadmins may edit group memberships.', - 'superadmin_permission_warning' => 'Only superadmins may grant a user superadmin access.', - 'admin_permission_warning' => 'Only users with admins rights or greater may grant a user admin access.', - 'remove_group_memberships' => 'Remove Group Memberships', - 'warning_deletion' => 'WARNING:', - 'warning_deletion_information' => 'You are about to delete the :count user(s) listed below. Super admin names are highlighted in red.', - 'update_user_asssets_status' => 'Update all assets for these users to this status', - 'checkin_user_properties' => 'Check in all properties associated with these users', + 'user_deactivated' => '用户已取消激活', + 'activation_status_warning' => '不要改变激活状态', + 'group_memberships_helpblock' => '只有超级管理员可以编辑群组成员。', + 'superadmin_permission_warning' => '只有超级管理员可以授予用户超级管理员访问权限。', + 'admin_permission_warning' => '只有拥有管理员权限或更大权限的用户才能授予用户管理员权限。', + 'remove_group_memberships' => '删除群组成员', + 'warning_deletion' => '警告:', + 'warning_deletion_information' => '您将要删除下列 :count 用户。超级管理员名称高亮为红色。', + 'update_user_asssets_status' => '将这些用户的所有资源更新到此状态', + 'checkin_user_properties' => '检查与这些用户相关的所有属性', ]; diff --git a/resources/lang/zh-CN/button.php b/resources/lang/zh-CN/button.php index 249b3406ae..53f34a3623 100644 --- a/resources/lang/zh-CN/button.php +++ b/resources/lang/zh-CN/button.php @@ -8,7 +8,7 @@ return [ 'delete' => '刪除', 'edit' => '编辑', 'restore' => '恢复', - 'remove' => 'Remove', + 'remove' => '删除', 'request' => '申请', 'submit' => '提交', 'upload' => '上传', @@ -17,8 +17,8 @@ return [ 'generate_labels' => '{1} 生成标签|[2,*] 生成标签', 'send_password_link' => '发送密码重置链接', 'go' => 'Go', - 'bulk_actions' => 'Bulk Actions', - 'add_maintenance' => 'Add Maintenance', - 'append' => 'Append', - 'new' => 'New', + 'bulk_actions' => '批量操作', + 'add_maintenance' => '添加维护', + 'append' => '追加', + 'new' => '新建', ]; diff --git a/resources/lang/zh-CN/general.php b/resources/lang/zh-CN/general.php index 9402a368d2..33499d9bc0 100644 --- a/resources/lang/zh-CN/general.php +++ b/resources/lang/zh-CN/general.php @@ -19,10 +19,10 @@ 'asset' => '资产', 'asset_report' => '资产报备', 'asset_tag' => '资产标签', - 'asset_tags' => 'Asset Tags', - 'assets_available' => 'Assets available', - 'accept_assets' => 'Accept Assets :name', - 'accept_assets_menu' => 'Accept Assets', + 'asset_tags' => '资产标签', + 'assets_available' => '可用资产', + 'accept_assets' => '接受资产:名称', + 'accept_assets_menu' => '接受资产', 'audit' => '审计', 'audit_report' => '审核日志', 'assets' => '资产', @@ -33,10 +33,10 @@ 'bulkaudit' => '批量审核', 'bulkaudit_status' => '盘点状态', 'bulk_checkout' => '批量借出', - 'bulk_edit' => 'Bulk Edit', - 'bulk_delete' => 'Bulk Delete', - 'bulk_actions' => 'Bulk Actions', - 'bulk_checkin_delete' => 'Bulk Checkin & Delete', + 'bulk_edit' => '批量编辑', + 'bulk_delete' => '批量删除', + 'bulk_actions' => '批量操作', + 'bulk_checkin_delete' => '批量签入 & 删除', 'bystatus' => '按状态', 'cancel' => '取消', 'categories' => '目录', @@ -69,8 +69,8 @@ 'updated_at' => '更新日期', 'currency' => 'RMB', // this is deprecated 'current' => '当前', - 'current_password' => 'Current Password', - 'customize_report' => 'Customize Report', + 'current_password' => '当前密码', + 'customize_report' => '自定义报告', 'custom_report' => '自定义资产报表', 'dashboard' => '控制面板', 'days' => '天数', @@ -82,12 +82,12 @@ 'delete_confirm' => '是否确定删除此项', 'deleted' => '已删除', 'delete_seats' => '已移除空位', - 'deletion_failed' => 'Deletion failed', + 'deletion_failed' => '删除失败', 'departments' => '部门', 'department' => '部门', 'deployed' => '已分配', 'depreciation' => '折旧', - 'depreciations' => 'Depreciations', + 'depreciations' => '折旧', 'depreciation_report' => '折旧报告', 'details' => '详细信息', 'download' => '下载', @@ -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,21 +114,21 @@ '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头像邮件地址', - 'gravatar_url' => 'Change your avatar at Gravatar.com.', + 'gravatar_url' => '在 Gravatar.com 更改您的头像。', 'history' => '历史记录', 'history_for' => '历史记录', 'id' => '编号', 'image' => '图片', 'image_delete' => '删除图片', 'image_upload' => '上传图片', - 'filetypes_accepted_help' => 'Accepted filetype is :types. Max upload size allowed is :size.|Accepted filetypes are :types. Max upload size allowed is :size.', - 'filetypes_size_help' => 'Max upload size allowed is :size.', + 'filetypes_accepted_help' => '可接受的文件类型是 :types. 最大允许上传大小为 :size.|可接受的文件类型是 :types. 最大允许上传大小为 :size.', + 'filetypes_size_help' => '允许最大上传文件的大小为 :size.', 'image_filetypes_help' => '接受jpg,png,gif和svg类型的文件。文件大小应小于 :size。', 'import' => '导入', 'importing' => '正在导入…', @@ -138,7 +138,7 @@ 'asset_maintenance_report' => '资产维修报表', 'asset_maintenances' => '资产维修', 'item' => '条目', - 'item_name' => 'Item Name', + 'item_name' => '物品名称', 'insufficient_permissions' => '没有足够的权限', 'kits' => '预定义的 Kits', 'language' => '语言', @@ -150,7 +150,7 @@ 'licenses_available' => '可用许可', 'licenses' => '许可证', 'list_all' => '列出全部', - 'loading' => 'Loading... please wait....', + 'loading' => '正在加载... 请稍候...', 'lock_passwords' => '此字段值将不会保存到演示安装中。', 'feature_disabled' => '演示模式下禁用此功能', 'location' => '位置', @@ -159,17 +159,17 @@ 'logout' => '注销', 'lookup_by_tag' => '查找资产标签', 'maintenances' => '维护', - 'manage_api_keys' => 'Manage API Keys', + 'manage_api_keys' => '管理 API 密钥', 'manufacturer' => '制造商', 'manufacturers' => '制造商', 'markdown' => '该字段可以使用 Github flavored markdown', 'min_amt' => 'Min. QTY', - 'min_amt_help' => 'Minimum number of items that should be available before an alert gets triggered. Leave Min. QTY blank if you do not want to receive alerts for low inventory.', + 'min_amt_help' => '在触发警报之前应该可用的最小物品数。如果您不希望收到低库存的警报,请将最小数量留空。', 'model_no' => '型号', 'months' => '月数', 'moreinfo' => '更多信息', 'name' => '名称', - 'new_password' => 'New Password', + 'new_password' => '新密码', 'next' => '下一页', 'next_audit_date' => '下一次盘点时间', 'last_audit' => '上一次盘点', @@ -191,23 +191,23 @@ 'purchase_date' => '购买日期', 'qty' => '数量', 'quantity' => '数量', - 'quantity_minimum' => 'You have :count items below or almost below minimum quantity levels', + 'quantity_minimum' => '您有 :count 物品低于或几乎低于最低数量级别', 'ready_to_deploy' => '待分配', 'recent_activity' => '最近操作活动', - 'remaining' => 'Remaining', + 'remaining' => '剩余', 'remove_company' => '移除公司关联', 'reports' => '报告', 'restored' => '恢复', 'restore' => '还原', - 'requestable_models' => 'Requestable Models', + 'requestable_models' => '可申领的型号', 'requested' => '已申请', - 'requested_date' => 'Requested Date', - 'requested_assets' => 'Requested Assets', - 'requested_assets_menu' => 'Requested Assets', + 'requested_date' => '申领日期', + 'requested_assets' => '已申领资产', + 'requested_assets_menu' => '已申领资产', '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消息', 'slack_test_msg' => '哦哈!看起来 Slack 已经成功应用到 Snipe-IT 了!', 'some_features_disabled' => '演示模式: 此安装将禁用某些功能。', 'site_name' => '站点名称', @@ -239,7 +239,7 @@ 'sure_to_delete' => '是否确认要删除', 'submit' => '提交', 'target' => '目标', - 'toggle_navigation' => 'Toogle Navigation', + 'toggle_navigation' => 'Toogle 导航', 'time_and_date_display' => '时间和日期显示', 'total_assets' => '共计资产', 'total_licenses' => '共计许可证', @@ -259,7 +259,7 @@ 'users' => '用户', 'viewall' => '查看全部', 'viewassets' => '查看资产分配', - 'viewassetsfor' => 'View Assets for :name', + 'viewassetsfor' => '查看资产 :name', 'website' => '站点', 'welcome' => '欢迎您,:name', 'years' => '年', @@ -273,78 +273,78 @@ 'accept' => '接受 :asset', 'i_accept' => '我接受', 'i_decline' => '我拒绝', - 'accept_decline' => 'Accept/Decline', + 'accept_decline' => '接受/拒绝', 'sign_tos' => '请在下面登录以表明您同意服务条款:', 'clear_signature' => '清除签名', 'show_help' => '显示帮助', 'hide_help' => '隐藏帮助', - 'view_all' => 'view all', - 'hide_deleted' => 'Hide Deleted', - 'email' => 'Email', - 'do_not_change' => 'Do Not Change', - 'bug_report' => 'Report a Bug', - 'user_manual' => 'User\'s Manual', - 'setup_step_1' => 'Step 1', - 'setup_step_2' => 'Step 2', - 'setup_step_3' => 'Step 3', - 'setup_step_4' => 'Step 4', - 'setup_config_check' => 'Configuration Check', - 'setup_create_database' => 'Create Database Tables', - 'setup_create_admin' => 'Create Admin User', - 'setup_done' => 'Finished!', - 'bulk_edit_about_to' => 'You are about to edit the following: ', - 'checked_out' => 'Checked Out', - 'checked_out_to' => 'Checked out to', - 'fields' => 'Fields', - 'last_checkout' => 'Last Checkout', - 'due_to_checkin' => 'The following :count items are due to be checked in soon:', - 'expected_checkin' => 'Expected Checkin', - 'reminder_checked_out_items' => 'This is a reminder of the items currently checked out to you. If you feel this list is inaccurate (something is missing, or something appears here that you believe you never received), please email :reply_to_name at :reply_to_address.', - 'changed' => 'Changed', - 'to' => 'To', - 'report_fields_info' => '

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

-

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

', - 'range' => 'Range', + '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') }}
- - {!! $errors->first('months', '') !!} +
+ + {!! $errors->first('months', '') !!}