mirror of
				https://github.com/inventree/inventree-app.git
				synced 2025-10-31 05:15:42 +00:00 
			
		
		
		
	Add latest translation files
This commit is contained in:
		
							
								
								
									
										2
									
								
								lib/l10n/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								lib/l10n/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,2 @@ | ||||
| # Ignore collected files | ||||
| collected/ | ||||
							
								
								
									
										1085
									
								
								lib/l10n/app_en.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1085
									
								
								lib/l10n/app_en.arb
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										93
									
								
								lib/l10n/collect_translations.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										93
									
								
								lib/l10n/collect_translations.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,93 @@ | ||||
| """ | ||||
| Collect translation files into a single directory, | ||||
| where they can be accessed by the flutter i18n library. | ||||
|  | ||||
| Translations provided from crowdin are located in subdirectories, | ||||
| but we need the .arb files to appear in this top level directory | ||||
| to be accessed by the app. | ||||
|  | ||||
| So, simply copy them here! | ||||
|  | ||||
| """ | ||||
|  | ||||
| import os | ||||
| import shutil | ||||
| import re | ||||
| import json | ||||
|  | ||||
| def process_locale_file(filename): | ||||
|     """ | ||||
|     Process a locale file after copying | ||||
|  | ||||
|     - Ensure the 'locale' matches | ||||
|     """ | ||||
|  | ||||
|     # Extract the locale name from the filename | ||||
|     f = os.path.basename(filename) | ||||
|     locale = re.search(r"^app\_(\w+)\.arb$", f).groups()[0] | ||||
|  | ||||
|     # TODO: Use JSON processing instead of manual | ||||
|     # Need to work out unicode issues for this to work | ||||
|  | ||||
|     with open(filename, 'r', encoding='utf-8') as input_file: | ||||
|  | ||||
|         lines = input_file.readlines() | ||||
|  | ||||
|     with open(filename, 'w', encoding='utf-8') as output_file: | ||||
|         # Using JSON processing would be simpler here, | ||||
|         # but it does not preserve unicode data! | ||||
|         for line in lines: | ||||
|             if '@@locale' in line: | ||||
|                 new_line = f'    "@@locale": "{locale}"' | ||||
|  | ||||
|                 if ',' in line: | ||||
|                     new_line += ',' | ||||
|                  | ||||
|                 new_line += '\n' | ||||
|  | ||||
|                 line = new_line | ||||
|  | ||||
|             output_file.write(line) | ||||
|  | ||||
|  | ||||
| def copy_locale_file(path): | ||||
|     """ | ||||
|     Locate and copy the locale file from the provided directory | ||||
|     """ | ||||
|  | ||||
|     here = os.path.abspath(os.path.dirname(__file__)) | ||||
|  | ||||
|     for f in os.listdir(path): | ||||
|  | ||||
|         src = os.path.join(path, f) | ||||
|         dst = os.path.join(here, 'collected', f) | ||||
|  | ||||
|         if os.path.exists(src) and os.path.isfile(src) and f.endswith('.arb'): | ||||
|  | ||||
|             shutil.copyfile(src, dst) | ||||
|             print(f"Copied file '{f}'") | ||||
|  | ||||
|             process_locale_file(dst) | ||||
|  | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|  | ||||
|     here = os.path.abspath(os.path.dirname(__file__)) | ||||
|  | ||||
|     for item in os.listdir(here): | ||||
|  | ||||
|         # Ignore the output directory | ||||
|         if item == 'collected': | ||||
|             continue | ||||
|  | ||||
|         f = os.path.join(here, item) | ||||
|  | ||||
|         if os.path.exists(f) and os.path.isdir(item): | ||||
|             copy_locale_file(f) | ||||
|  | ||||
|     # Ensure the translation source file ('app_en.arb') is copied also | ||||
|     # Note that this does not require any further processing | ||||
|     src = os.path.join(here, 'app_en.arb') | ||||
|     dst = os.path.join(here, 'collected', 'app_en.arb') | ||||
|  | ||||
|     shutil.copyfile(src, dst) | ||||
							
								
								
									
										3
									
								
								lib/l10n/crowdin.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								lib/l10n/crowdin.yml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,3 @@ | ||||
| files: | ||||
|   - source: app_en.arb | ||||
|     translation: app_%two_letters_code%.arb | ||||
							
								
								
									
										5
									
								
								lib/l10n/cs/app_cs.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								lib/l10n/cs/app_cs.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {} | ||||
| } | ||||
							
								
								
									
										745
									
								
								lib/l10n/de/app_de.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										745
									
								
								lib/l10n/de/app_de.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,745 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "ok": "OK", | ||||
|     "@ok": { | ||||
|         "description": "OK" | ||||
|     }, | ||||
|     "about": "Über", | ||||
|     "@about": {}, | ||||
|     "accountDetails": "Konto Details", | ||||
|     "@accountDetails": {}, | ||||
|     "actions": "Aktionen", | ||||
|     "@actions": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "actionsNone": "Keine Aktionen verfügbar", | ||||
|     "@actionsNone": {}, | ||||
|     "add": "Hinzufügen", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "addStock": "Bestand hinzufügen", | ||||
|     "@addStock": { | ||||
|         "description": "add stock" | ||||
|     }, | ||||
|     "address": "Adresse", | ||||
|     "@address": {}, | ||||
|     "appAbout": "Über InvenTree", | ||||
|     "@appAbout": {}, | ||||
|     "appCredits": "Weitere App-Danksagungen", | ||||
|     "@appCredits": {}, | ||||
|     "appDetails": "App-Informationen", | ||||
|     "@appDetails": {}, | ||||
|     "appReleaseNotes": "App-Versionshinweise anzeigen", | ||||
|     "@appReleaseNotes": {}, | ||||
|     "appSettings": "App-Einstellungen", | ||||
|     "@appSettings": {}, | ||||
|     "appSettingsDetails": "InvenTree-App Einstellungen konfigurieren", | ||||
|     "@appSettingsDetails": {}, | ||||
|     "attachments": "Anhänge", | ||||
|     "@attachments": {}, | ||||
|     "attachImage": "Bild hinzufügen", | ||||
|     "@attachImage": { | ||||
|         "description": "Attach an image" | ||||
|     }, | ||||
|     "attachmentNone": "Keine Anhänge gefunden", | ||||
|     "@attachmentNone": {}, | ||||
|     "attachmentNonePartDetail": "Keine Anhänge für dieses Teil gefunden", | ||||
|     "@attachmentNonePartDetail": {}, | ||||
|     "attachmentSelect": "Anhang auswählen", | ||||
|     "@attachmentSelect": {}, | ||||
|     "attention": "Achtung", | ||||
|     "@attention": {}, | ||||
|     "availableStock": "Verfügbarer Lagerbestand", | ||||
|     "@availableStock": {}, | ||||
|     "barcodeAssign": "Barcode zuweisen", | ||||
|     "@barcodeAssign": {}, | ||||
|     "barcodeAssigned": "Barcode zugewiesen", | ||||
|     "@barcodeAssigned": {}, | ||||
|     "barcodeError": "Fehler beim Scannen des Barcodes", | ||||
|     "@barcodeError": {}, | ||||
|     "barcodeInUse": "Barcode wurde bereits zugewiesen", | ||||
|     "@barcodeInUse": {}, | ||||
|     "barcodeMissingHash": "Prüfsumme fehlt in Antwort", | ||||
|     "@barcodeMissingHash": {}, | ||||
|     "barcodeNoMatch": "Keine Übereinstimmung für den Barcode", | ||||
|     "@barcodeNoMatch": {}, | ||||
|     "barcodeNotAssigned": "Barcode nicht zugewiesen", | ||||
|     "@barcodeNotAssigned": {}, | ||||
|     "barcodeScanAssign": "Scannen um Barcode zuzuweisen", | ||||
|     "@barcodeScanAssign": {}, | ||||
|     "barcodeScanGeneral": "Einen InvenTree Barcode scannen", | ||||
|     "@barcodeScanGeneral": {}, | ||||
|     "barcodeScanInItems": "Artikel per Barcode-Scan zu Lagerort hinzufügen", | ||||
|     "@barcodeScanInItems": {}, | ||||
|     "barcodeScanLocation": "Lagerort scannen", | ||||
|     "@barcodeScanLocation": {}, | ||||
|     "barcodeScanIntoLocationSuccess": "Artikel zu Lagerort hinzugefügt", | ||||
|     "@barcodeScanIntoLocationSuccess": {}, | ||||
|     "barcodeScanIntoLocationFailure": "Artikel nicht eingescannt", | ||||
|     "@barcodeScanIntoLocationFailure": {}, | ||||
|     "barcodeScanItem": "Artikel scannen", | ||||
|     "@barcodeScanItem": {}, | ||||
|     "barcodeTones": "Barcode-Ton", | ||||
|     "@barcodeTones": {}, | ||||
|     "barcodeUnassign": "Barcode entfernen", | ||||
|     "@barcodeUnassign": {}, | ||||
|     "barcodeUnknown": "Barcode wurde nicht erkannt", | ||||
|     "@barcodeUnknown": {}, | ||||
|     "batchCode": "Losnummer", | ||||
|     "@batchCode": {}, | ||||
|     "billOfMaterials": "Stückliste", | ||||
|     "@billOfMaterials": {}, | ||||
|     "bom": "Stückliste", | ||||
|     "@bom": {}, | ||||
|     "build": "Bauauftrag", | ||||
|     "@build": {}, | ||||
|     "building": "Gebäude", | ||||
|     "@building": {}, | ||||
|     "cancel": "Abbrechen", | ||||
|     "@cancel": { | ||||
|         "description": "Cancel" | ||||
|     }, | ||||
|     "category": "Kategorie", | ||||
|     "@category": {}, | ||||
|     "categoryCreate": "Neue Kategorie", | ||||
|     "@categoryCreate": {}, | ||||
|     "categoryCreateDetail": "Teile-Kategorie anlegen", | ||||
|     "@categoryCreateDetail": {}, | ||||
|     "categoryUpdated": "Kategorie aktualisiert", | ||||
|     "@categoryUpdated": {}, | ||||
|     "company": "Firma", | ||||
|     "@company": {}, | ||||
|     "companyEdit": "Firma bearbeiten", | ||||
|     "@companyEdit": {}, | ||||
|     "companyNoResults": "Keine Firmen entsprechen der Anfrage", | ||||
|     "@companyNoResults": {}, | ||||
|     "companyUpdated": "Firmendetails aktualisiert", | ||||
|     "@companyUpdated": {}, | ||||
|     "companies": "Firmen", | ||||
|     "@companies": {}, | ||||
|     "configureServer": "Server-Einstellungen konfigurieren", | ||||
|     "@configureServer": {}, | ||||
|     "connectionRefused": "Verbindung verweigert", | ||||
|     "@connectionRefused": {}, | ||||
|     "count": "Zählen", | ||||
|     "@count": { | ||||
|         "description": "Count" | ||||
|     }, | ||||
|     "countStock": "Bestand zählen", | ||||
|     "@countStock": { | ||||
|         "description": "Count Stock" | ||||
|     }, | ||||
|     "credits": "Danksagungen", | ||||
|     "@credits": {}, | ||||
|     "customers": "Kunden", | ||||
|     "@customers": {}, | ||||
|     "damaged": "Beschädigt", | ||||
|     "@damaged": {}, | ||||
|     "delete": "Löschen", | ||||
|     "@delete": {}, | ||||
|     "deletePart": "Teil löschen", | ||||
|     "@deletePart": {}, | ||||
|     "deletePartDetail": "Dieses Teil aus der Datenbank löschen", | ||||
|     "@deletePartDetail": {}, | ||||
|     "description": "Beschreibung", | ||||
|     "@description": {}, | ||||
|     "destroyed": "Vernichtet", | ||||
|     "@destroyed": {}, | ||||
|     "details": "Details", | ||||
|     "@details": { | ||||
|         "description": "details" | ||||
|     }, | ||||
|     "documentation": "Dokumentation", | ||||
|     "@documentation": {}, | ||||
|     "downloading": "Datei wird heruntergeladen", | ||||
|     "@downloading": {}, | ||||
|     "downloadError": "Fehler beim Herunterladen", | ||||
|     "@downloadError": {}, | ||||
|     "edit": "Bearbeiten", | ||||
|     "@edit": { | ||||
|         "description": "edit" | ||||
|     }, | ||||
|     "editCategory": "Kategorie bearbeiten", | ||||
|     "@editCategory": {}, | ||||
|     "editLocation": "Ort bearbeiten", | ||||
|     "@editLocation": {}, | ||||
|     "editNotes": "Notizen bearbeiten", | ||||
|     "@editNotes": {}, | ||||
|     "editPart": "Teil bearbeiten", | ||||
|     "@editPart": { | ||||
|         "description": "edit part" | ||||
|     }, | ||||
|     "editItem": "Artikel bearbeiten", | ||||
|     "@editItem": {}, | ||||
|     "enterPassword": "Passwort eingeben", | ||||
|     "@enterPassword": {}, | ||||
|     "enterUsername": "Benutzername eingeben", | ||||
|     "@enterUsername": {}, | ||||
|     "error": "Fehler", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorCreate": "Fehler beim Erstellen des Datenbankeintrages", | ||||
|     "@errorCreate": {}, | ||||
|     "errorDelete": "Fehler beim Löschen von Datenbankeintrag", | ||||
|     "@errorDelete": {}, | ||||
|     "errorDetails": "Fehlerdetails", | ||||
|     "@errorDetails": {}, | ||||
|     "errorFetch": "Fehler beim Abrufen der Daten vom Server", | ||||
|     "@errorFetch": {}, | ||||
|     "errorReporting": "Fehlerberichterstattung", | ||||
|     "@errorReporting": {}, | ||||
|     "errorReportUpload": "Fehlerberichte hochladen", | ||||
|     "@errorReportUpload": {}, | ||||
|     "errorReportUploadDetails": "Anonyme Fehlerberichte und Absturzprotokolle hochladen", | ||||
|     "@errorReportUploadDetails": {}, | ||||
|     "feedback": "Feedback", | ||||
|     "@feedback": {}, | ||||
|     "feedbackError": "Fehler beim Senden des Feedbacks", | ||||
|     "@feedbackError": {}, | ||||
|     "feedbackSuccess": "Feedback gesendet", | ||||
|     "@feedbackSuccess": {}, | ||||
|     "formatException": "Formatfehler", | ||||
|     "@formatException": {}, | ||||
|     "formatExceptionJson": "Format-Fehler im JSON", | ||||
|     "@formatExceptionJson": {}, | ||||
|     "formError": "Formular-Fehler", | ||||
|     "@formError": {}, | ||||
|     "history": "Verlauf", | ||||
|     "@history": { | ||||
|         "description": "history" | ||||
|     }, | ||||
|     "homeScreen": "Startseite", | ||||
|     "@homeScreen": {}, | ||||
|     "homeScreenSettings": "Einstellungen für Startseite konfigurieren", | ||||
|     "@homeScreenSettings": {}, | ||||
|     "homeShowPo": "Bestellungen anzeigen", | ||||
|     "@homeShowPo": {}, | ||||
|     "homeShowSubscribed": "Abonnierte Teile", | ||||
|     "@homeShowSubscribed": {}, | ||||
|     "homeShowSubscribedDescription": "Abonnierte Teile auf Startseite anzeigen", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "homeShowPoDescription": "Bestellungen auf Startseite anzeigen", | ||||
|     "@homeShowPoDescription": {}, | ||||
|     "homeShowSuppliers": "Lieferanten anzeigen", | ||||
|     "@homeShowSuppliers": {}, | ||||
|     "homeShowSuppliersDescription": "Lieferanten auf Startseite anzeigen", | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "homeShowManufacturers": "Hersteller anzeigen", | ||||
|     "@homeShowManufacturers": {}, | ||||
|     "homeShowManufacturersDescription": "Hersteller auf Startseite anzeigen", | ||||
|     "@homeShowManufacturersDescription": {}, | ||||
|     "homeShowCustomers": "Kunden anzeigen", | ||||
|     "@homeShowCustomers": {}, | ||||
|     "homeShowCustomersDescription": "Kunden auf Startseite anzeigen", | ||||
|     "@homeShowCustomersDescription": {}, | ||||
|     "imageUploadFailure": "Das Bild konnte nicht hochgeladen werden", | ||||
|     "@imageUploadFailure": {}, | ||||
|     "imageUploadSuccess": "Bild hochgeladen", | ||||
|     "@imageUploadSuccess": {}, | ||||
|     "inactive": "Inaktiv", | ||||
|     "@inactive": {}, | ||||
|     "inactiveDetail": "Teil als inaktiv gekennzeichnet", | ||||
|     "@inactiveDetail": {}, | ||||
|     "includeSubcategories": "Unter-Kategorien einschließen", | ||||
|     "@includeSubcategories": {}, | ||||
|     "includeSubcategoriesDetail": "Teile aus Unter-Kategorien anzeigen", | ||||
|     "@includeSubcategoriesDetail": {}, | ||||
|     "includeSublocations": "Unter-Lagerorte einschließen", | ||||
|     "@includeSublocations": {}, | ||||
|     "includeSublocationsDetail": "Liste der Unter-Lagerorte anzeigen", | ||||
|     "@includeSublocationsDetail": {}, | ||||
|     "incompleteDetails": "Profil unvollständig", | ||||
|     "@incompleteDetails": {}, | ||||
|     "internalPartNumber": "Interne Teilenummer", | ||||
|     "@internalPartNumber": {}, | ||||
|     "info": "Info", | ||||
|     "@info": {}, | ||||
|     "inProduction": "In Produktion", | ||||
|     "@inProduction": {}, | ||||
|     "inProductionDetail": "Dieser Lagerbestand ist in der Produktion", | ||||
|     "@inProductionDetail": {}, | ||||
|     "invalidHost": "Ungültiger Hostname", | ||||
|     "@invalidHost": {}, | ||||
|     "invalidHostDetails": "Der angegebener Hostname ist ungültig", | ||||
|     "@invalidHostDetails": {}, | ||||
|     "invalidPart": "Ungültiges Teil", | ||||
|     "@invalidPart": {}, | ||||
|     "invalidPartCategory": "Ungültige Teil-Kategorie", | ||||
|     "@invalidPartCategory": {}, | ||||
|     "invalidStockLocation": "Ungültiger Lagerort", | ||||
|     "@invalidStockLocation": {}, | ||||
|     "invalidStockItem": "Ungültiger Artikel", | ||||
|     "@invalidStockItem": {}, | ||||
|     "invalidUsernamePassword": "Ungültige Kombination aus Benutzername und Passwort", | ||||
|     "@invalidUsernamePassword": {}, | ||||
|     "issueDate": "Ausstellungsdatum", | ||||
|     "@issueDate": {}, | ||||
|     "itemInLocation": "Artikel ist bereits in diesem Lagerort", | ||||
|     "@itemInLocation": {}, | ||||
|     "keywords": "Schlüsselwörter", | ||||
|     "@keywords": {}, | ||||
|     "lastStocktake": "Letzte Inventur", | ||||
|     "@lastStocktake": {}, | ||||
|     "lastUpdated": "Letzte Änderung", | ||||
|     "@lastUpdated": {}, | ||||
|     "lineItem": "Position", | ||||
|     "@lineItem": {}, | ||||
|     "lineItems": "Positionen", | ||||
|     "@lineItems": {}, | ||||
|     "locationCreate": "Neuer Lagerort", | ||||
|     "@locationCreate": {}, | ||||
|     "locationCreateDetail": "Neuen Lagerort erstellen", | ||||
|     "@locationCreateDetail": {}, | ||||
|     "locationNotSet": "Lagerort nicht angegeben", | ||||
|     "@locationNotSet": {}, | ||||
|     "locationUpdated": "Lagerort aktualisiert", | ||||
|     "@locationUpdated": {}, | ||||
|     "link": "Link", | ||||
|     "@link": {}, | ||||
|     "lost": "Verloren", | ||||
|     "@lost": {}, | ||||
|     "manufacturers": "Hersteller", | ||||
|     "@manufacturers": {}, | ||||
|     "missingData": "Fehlende Daten", | ||||
|     "@missingData": {}, | ||||
|     "name": "Name", | ||||
|     "@name": {}, | ||||
|     "notConnected": "Nicht verbunden", | ||||
|     "@notConnected": {}, | ||||
|     "notes": "Notizen", | ||||
|     "@notes": { | ||||
|         "description": "Notes" | ||||
|     }, | ||||
|     "noResponse": "Keine Antwort vom Server", | ||||
|     "@noResponse": {}, | ||||
|     "noResults": "Keine Ergebnisse", | ||||
|     "@noResults": {}, | ||||
|     "noSubcategories": "Keine Unter-Kategorien", | ||||
|     "@noSubcategories": {}, | ||||
|     "noSubcategoriesAvailable": "Keine Unter-Kategorien verfügbar", | ||||
|     "@noSubcategoriesAvailable": {}, | ||||
|     "numberInvalid": "Keine gültige Zahl", | ||||
|     "@numberInvalid": {}, | ||||
|     "onOrder": "Bestellt", | ||||
|     "@onOrder": {}, | ||||
|     "onOrderDetails": "Artikel wurde bestellt", | ||||
|     "@onOrderDetails": {}, | ||||
|     "packaging": "Paket", | ||||
|     "@packaging": {}, | ||||
|     "packageName": "Paket-Name", | ||||
|     "@packageName": {}, | ||||
|     "parent": "Übergeordnetes", | ||||
|     "@parent": {}, | ||||
|     "parentCategory": "Übergeordnete Kategorie", | ||||
|     "@parentCategory": {}, | ||||
|     "parentLocation": "Übergeordneter Lagerort", | ||||
|     "@parentLocation": {}, | ||||
|     "part": "Teil", | ||||
|     "@part": { | ||||
|         "description": "Part (single)" | ||||
|     }, | ||||
|     "partCreate": "Teil anlegen", | ||||
|     "@partCreate": {}, | ||||
|     "partCreateDetail": "Teil in dieser Kategorie anlegen", | ||||
|     "@partCreateDetail": {}, | ||||
|     "partEdited": "Teil aktualisiert", | ||||
|     "@partEdited": {}, | ||||
|     "parts": "Teile", | ||||
|     "@parts": { | ||||
|         "description": "Part (multiple)" | ||||
|     }, | ||||
|     "partsNone": "Keine Teile", | ||||
|     "@partsNone": {}, | ||||
|     "partNoResults": "Keine Teile entsprechen der Anfrage", | ||||
|     "@partNoResults": {}, | ||||
|     "partsStarred": "Abonnierte Teile", | ||||
|     "@partsStarred": {}, | ||||
|     "partsStarredNone": "Keine Teile abonniert", | ||||
|     "@partsStarredNone": {}, | ||||
|     "partSuppliers": "Teile-Lieferanten", | ||||
|     "@partSuppliers": {}, | ||||
|     "partCategory": "Teil-Kategorie", | ||||
|     "@partCategory": {}, | ||||
|     "partCategoryTopLevel": "Oberste Teile-Kategorie", | ||||
|     "@partCategoryTopLevel": {}, | ||||
|     "partCategories": "Teil-Kategorien", | ||||
|     "@partCategories": {}, | ||||
|     "partDetails": "Teil-Details", | ||||
|     "@partDetails": {}, | ||||
|     "partNotes": "Teil-Bemerkungen", | ||||
|     "@partNotes": {}, | ||||
|     "partStock": "Teilbestand", | ||||
|     "@partStock": { | ||||
|         "description": "part stock" | ||||
|     }, | ||||
|     "password": "Passwort", | ||||
|     "@password": {}, | ||||
|     "passwordEmpty": "Passwort darf nicht leer sein", | ||||
|     "@passwordEmpty": {}, | ||||
|     "permissionAccountDenied": "Das Konto hat die erforderlichen Berechtigungen zum Ausführen dieses Vorgangs nicht", | ||||
|     "@permissionAccountDenied": {}, | ||||
|     "permissionRequired": "Berechtigung erforderlich", | ||||
|     "@permissionRequired": {}, | ||||
|     "printLabel": "Label drucken", | ||||
|     "@printLabel": {}, | ||||
|     "printLabelFailure": "Labeldruck fehlgeschlagen", | ||||
|     "@printLabelFailure": {}, | ||||
|     "printLabelSuccess": "Label an den Drucker gesendet", | ||||
|     "@printLabelSuccess": {}, | ||||
|     "profile": "Profil", | ||||
|     "@profile": {}, | ||||
|     "profileAdd": "Server-Profil anlegen", | ||||
|     "@profileAdd": {}, | ||||
|     "profileConnect": "Mit Server verbinden", | ||||
|     "@profileConnect": {}, | ||||
|     "profileEdit": "Server-Profil bearbeiten", | ||||
|     "@profileEdit": {}, | ||||
|     "profileDelete": "Server-Profil löschen", | ||||
|     "@profileDelete": {}, | ||||
|     "profileName": "Profil-Name", | ||||
|     "@profileName": {}, | ||||
|     "profileNone": "Keine Profile angelegt", | ||||
|     "@profileNone": {}, | ||||
|     "profileNotSelected": "Kein Profil ausgewählt", | ||||
|     "@profileNotSelected": {}, | ||||
|     "profileSelect": "InvenTree-Server auswählen", | ||||
|     "@profileSelect": {}, | ||||
|     "profileTapToCreate": "Zum Erstellen oder Auswählen eines Profils tippen", | ||||
|     "@profileTapToCreate": {}, | ||||
|     "purchaseOrder": "Bestellung", | ||||
|     "@purchaseOrder": {}, | ||||
|     "purchaseOrderEdit": "Bestellung bearbeiten", | ||||
|     "@purchaseOrderEdit": {}, | ||||
|     "purchaseOrders": "Bestellungen", | ||||
|     "@purchaseOrders": {}, | ||||
|     "purchaseOrderUpdated": "Bestellung aktualisiert", | ||||
|     "@purchaseOrderUpdated": {}, | ||||
|     "purchasePrice": "Einkaufspreis", | ||||
|     "@purchasePrice": {}, | ||||
|     "quantity": "Anzahl", | ||||
|     "@quantity": { | ||||
|         "description": "Quantity" | ||||
|     }, | ||||
|     "quantityEmpty": "Menge ist leer", | ||||
|     "@quantityEmpty": {}, | ||||
|     "quantityInvalid": "Menge ist ungültig", | ||||
|     "@quantityInvalid": {}, | ||||
|     "quantityPositive": "Menge muss positiv sein", | ||||
|     "@quantityPositive": {}, | ||||
|     "queryNoResults": "Keine Ergebnisse für die Anfrage", | ||||
|     "@queryNoResults": {}, | ||||
|     "received": "Empfangen", | ||||
|     "@received": {}, | ||||
|     "receiveItem": "Artikel erhalten", | ||||
|     "@receiveItem": {}, | ||||
|     "receivedItem": "Artikel wurde erhalten", | ||||
|     "@receivedItem": {}, | ||||
|     "refresh": "Neu laden", | ||||
|     "@refresh": {}, | ||||
|     "refreshing": "Aktualisiere", | ||||
|     "@refreshing": {}, | ||||
|     "rejected": "Zurückgewiesen", | ||||
|     "@rejected": {}, | ||||
|     "releaseNotes": "Versionshinweise", | ||||
|     "@releaseNotes": {}, | ||||
|     "remove": "Entfernen", | ||||
|     "@remove": { | ||||
|         "description": "remove" | ||||
|     }, | ||||
|     "removeStock": "Bestand entfernen", | ||||
|     "@removeStock": { | ||||
|         "description": "remove stock" | ||||
|     }, | ||||
|     "reportBug": "Fehler melden", | ||||
|     "@reportBug": {}, | ||||
|     "reportBugDescription": "Fehlerbericht senden (erfordert GitHub Konto)", | ||||
|     "@reportBugDescription": {}, | ||||
|     "results": "Ergebnisse", | ||||
|     "@results": {}, | ||||
|     "request": "Anfrage", | ||||
|     "@request": {}, | ||||
|     "requestingData": "Daten werden angefordert", | ||||
|     "@requestingData": {}, | ||||
|     "required": "Erforderlich", | ||||
|     "@required": { | ||||
|         "description": "This field is required" | ||||
|     }, | ||||
|     "response400": "Ungültige Anfrage", | ||||
|     "@response400": {}, | ||||
|     "response401": "Nicht autorisiert", | ||||
|     "@response401": {}, | ||||
|     "response403": "Zugriff verweigert", | ||||
|     "@response403": {}, | ||||
|     "response404": "Ressource nicht gefunden", | ||||
|     "@response404": {}, | ||||
|     "response405": "Methode nicht erlaubt", | ||||
|     "@response405": {}, | ||||
|     "response429": "Zu viele Anfragen", | ||||
|     "@response429": {}, | ||||
|     "response500": "Interner Serverfehler", | ||||
|     "@response500": {}, | ||||
|     "response501": "Nicht Implementiert", | ||||
|     "@response501": {}, | ||||
|     "response502": "Fehlerhaftes Gateway", | ||||
|     "@response502": {}, | ||||
|     "response503": "Dienst nicht verfügbar", | ||||
|     "@response503": {}, | ||||
|     "response504": "Gateway-Zeitüberschreitung", | ||||
|     "@response504": {}, | ||||
|     "response505": "HTTP-Version wird nicht unterstützt", | ||||
|     "@response505": {}, | ||||
|     "responseData": "Antwort-Daten", | ||||
|     "@responseData": {}, | ||||
|     "responseInvalid": "Ungültiger Antwort-Code", | ||||
|     "@responseInvalid": {}, | ||||
|     "responseUnknown": "Unbekannte Antwort", | ||||
|     "@responseUnknown": {}, | ||||
|     "result": "Ergebnis", | ||||
|     "@result": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "returned": "Retourniert", | ||||
|     "@returned": {}, | ||||
|     "salesOrders": "Kundenauftrag", | ||||
|     "@salesOrders": {}, | ||||
|     "save": "Speichern", | ||||
|     "@save": { | ||||
|         "description": "Save" | ||||
|     }, | ||||
|     "scanBarcode": "Barcode scannen", | ||||
|     "@scanBarcode": {}, | ||||
|     "scanIntoLocation": "In Lagerorten buchen", | ||||
|     "@scanIntoLocation": {}, | ||||
|     "search": "Suchen", | ||||
|     "@search": { | ||||
|         "description": "search" | ||||
|     }, | ||||
|     "searchLocation": "Lagerort suchen", | ||||
|     "@searchLocation": {}, | ||||
|     "searchParts": "Teile suchen", | ||||
|     "@searchParts": {}, | ||||
|     "searchStock": "Bestand durchsuchen", | ||||
|     "@searchStock": {}, | ||||
|     "select": "Auswählen", | ||||
|     "@select": {}, | ||||
|     "selectFile": "Datei auswählen", | ||||
|     "@selectFile": {}, | ||||
|     "selectImage": "Bild auswählen", | ||||
|     "@selectImage": {}, | ||||
|     "selectLocation": "Wähle einen Lagerort", | ||||
|     "@selectLocation": {}, | ||||
|     "send": "Senden", | ||||
|     "@send": {}, | ||||
|     "serialNumber": "Seriennummer", | ||||
|     "@serialNumber": {}, | ||||
|     "server": "Server", | ||||
|     "@server": {}, | ||||
|     "serverAddress": "Serveradresse", | ||||
|     "@serverAddress": {}, | ||||
|     "serverApiRequired": "Erforderliche API-Version", | ||||
|     "@serverApiRequired": {}, | ||||
|     "serverApiVersion": "API-Version des Servers", | ||||
|     "@serverApiVersion": {}, | ||||
|     "serverAuthenticationError": "Anmeldung fehlgeschlagen", | ||||
|     "@serverAuthenticationError": {}, | ||||
|     "serverCertificateError": "Zertifikatsfehler", | ||||
|     "@serverCertificateError": {}, | ||||
|     "serverCertificateInvalid": "Zertifikat des Servers ist ungültig", | ||||
|     "@serverCertificateInvalid": {}, | ||||
|     "serverConnected": "Verbunden mit Server", | ||||
|     "@serverConnected": {}, | ||||
|     "serverConnecting": "Verbindung zum Server wird aufgebaut", | ||||
|     "@serverConnecting": {}, | ||||
|     "serverCouldNotConnect": "Verbindung zum Server nicht möglich", | ||||
|     "@serverCouldNotConnect": {}, | ||||
|     "serverEmpty": "Server darf nicht leer sein", | ||||
|     "@serverEmpty": {}, | ||||
|     "serverError": "Serverfehler", | ||||
|     "@serverError": {}, | ||||
|     "serverDetails": "Serverdetails", | ||||
|     "@serverDetails": {}, | ||||
|     "serverMissingData": "In der Server-Antwort fehlen erforderliche Felder", | ||||
|     "@serverMissingData": {}, | ||||
|     "serverOld": "Alte Server Version", | ||||
|     "@serverOld": {}, | ||||
|     "serverSettings": "Server Einstellungen", | ||||
|     "@serverSettings": {}, | ||||
|     "serverStart": "Server muss mit http[s] beginnen", | ||||
|     "@serverStart": {}, | ||||
|     "settings": "Einstellungen", | ||||
|     "@settings": {}, | ||||
|     "serverInstance": "Server Instanz", | ||||
|     "@serverInstance": {}, | ||||
|     "serverNotConnected": "Server nicht verbunden", | ||||
|     "@serverNotConnected": {}, | ||||
|     "sounds": "Töne", | ||||
|     "@sounds": {}, | ||||
|     "soundOnBarcodeAction": "Ton bei Barcode-Aktion abspielen", | ||||
|     "@soundOnBarcodeAction": {}, | ||||
|     "soundOnServerError": "Ton bei Serverfehler abspielen", | ||||
|     "@soundOnServerError": {}, | ||||
|     "status": "Status", | ||||
|     "@status": {}, | ||||
|     "statusCode": "Statuscode", | ||||
|     "@statusCode": {}, | ||||
|     "stock": "Bestand", | ||||
|     "@stock": { | ||||
|         "description": "stock" | ||||
|     }, | ||||
|     "stockDetails": "Aktuell verfügbare Lagermenge", | ||||
|     "@stockDetails": {}, | ||||
|     "stockItem": "Artikel", | ||||
|     "@stockItem": { | ||||
|         "description": "stock item title" | ||||
|     }, | ||||
|     "stockItems": "Artikel", | ||||
|     "@stockItems": {}, | ||||
|     "stockItemCreate": "Neuen Artikel anlegen", | ||||
|     "@stockItemCreate": {}, | ||||
|     "stockItemCreateDetail": "Neuen Artikel an diesem Lagerort erstellen", | ||||
|     "@stockItemCreateDetail": {}, | ||||
|     "stockItemDelete": "Lagerartikel löschen", | ||||
|     "@stockItemDelete": {}, | ||||
|     "stockItemDeleteConfirm": "Sind Sie sicher, dass Sie diesen Lagerartikel löschen wollen?", | ||||
|     "@stockItemDeleteConfirm": {}, | ||||
|     "stockItemDeleteFailure": "Lagerbestand konnte nicht gelöscht werden", | ||||
|     "@stockItemDeleteFailure": {}, | ||||
|     "stockItemDeleteSuccess": "Lagerbestand gelöscht", | ||||
|     "@stockItemDeleteSuccess": {}, | ||||
|     "stockItemHistory": "Historie des Artikels", | ||||
|     "@stockItemHistory": {}, | ||||
|     "stockItemHistoryDetail": "Zeige historische Bestandsverfolgungsdaten", | ||||
|     "@stockItemHistoryDetail": {}, | ||||
|     "stockItemTransferred": "Artikel umgezogen", | ||||
|     "@stockItemTransferred": {}, | ||||
|     "stockItemUpdated": "Artikel aktualisiert", | ||||
|     "@stockItemUpdated": {}, | ||||
|     "stockItemsNotAvailable": "Keine Artikel verfügbar", | ||||
|     "@stockItemsNotAvailable": {}, | ||||
|     "stockItemNotes": "Notizen zum Artikel", | ||||
|     "@stockItemNotes": {}, | ||||
|     "stockItemUpdateSuccess": "Artikel aktualisiert", | ||||
|     "@stockItemUpdateSuccess": {}, | ||||
|     "stockItemUpdateFailure": "Fehler bei Artikel-Aktualisierung", | ||||
|     "@stockItemUpdateFailure": {}, | ||||
|     "stockLocation": "Lagerort", | ||||
|     "@stockLocation": { | ||||
|         "description": "stock location" | ||||
|     }, | ||||
|     "stockLocations": "Lagerorte", | ||||
|     "@stockLocations": {}, | ||||
|     "stockTopLevel": "Oberster Lagerort", | ||||
|     "@stockTopLevel": {}, | ||||
|     "strictHttps": "Striktes HTTPS verwenden", | ||||
|     "@strictHttps": {}, | ||||
|     "strictHttpsDetails": "Erzwinge strenge Überprüfung von HTTPs-Zertifikaten", | ||||
|     "@strictHttpsDetails": {}, | ||||
|     "subcategory": "Unterkategorie", | ||||
|     "@subcategory": {}, | ||||
|     "subcategories": "Unterkategorien", | ||||
|     "@subcategories": {}, | ||||
|     "sublocation": "Unter-Lagerort", | ||||
|     "@sublocation": {}, | ||||
|     "sublocations": "Unter-Lagerorte", | ||||
|     "@sublocations": {}, | ||||
|     "sublocationNone": "Keine Unter-Lagerorte", | ||||
|     "@sublocationNone": {}, | ||||
|     "sublocationNoneDetail": "Keine Unter-Lagerorte verfügbar", | ||||
|     "@sublocationNoneDetail": {}, | ||||
|     "submitFeedback": "Feedback geben", | ||||
|     "@submitFeedback": {}, | ||||
|     "suppliedParts": "Gelieferte Teile", | ||||
|     "@suppliedParts": {}, | ||||
|     "supplier": "Lieferant", | ||||
|     "@supplier": {}, | ||||
|     "suppliers": "Lieferanten", | ||||
|     "@suppliers": {}, | ||||
|     "supplierReference": "Lieferanten-Referenz", | ||||
|     "@supplierReference": {}, | ||||
|     "takePicture": "Foto aufnehmen", | ||||
|     "@takePicture": {}, | ||||
|     "targetDate": "Zieldatum", | ||||
|     "@targetDate": {}, | ||||
|     "templatePart": "Übergeordnetes Vorlagenteil", | ||||
|     "@templatePart": {}, | ||||
|     "testName": "Test-Name", | ||||
|     "@testName": {}, | ||||
|     "testPassedOrFailed": "Test erfolgreich oder fehlgeschlagen", | ||||
|     "@testPassedOrFailed": {}, | ||||
|     "testsRequired": "Erforderliche Tests", | ||||
|     "@testsRequired": {}, | ||||
|     "testResults": "Testergebnisse", | ||||
|     "@testResults": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "testResultAdd": "Testergebnis hinzufügen", | ||||
|     "@testResultAdd": {}, | ||||
|     "testResultNone": "Keine Testergebnisse", | ||||
|     "@testResultNone": {}, | ||||
|     "testResultNoneDetail": "Keine Testergebnisse vorhanden", | ||||
|     "@testResultNoneDetail": {}, | ||||
|     "testResultUploadFail": "Fehler beim Hochladen des Testergebnisses", | ||||
|     "@testResultUploadFail": {}, | ||||
|     "testResultUploadPass": "Testergebnis hochgeladen", | ||||
|     "@testResultUploadPass": {}, | ||||
|     "timeout": "Zeitüberschreitung", | ||||
|     "@timeout": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "tokenError": "Token-Fehler", | ||||
|     "@tokenError": {}, | ||||
|     "tokenMissing": "Token fehlt", | ||||
|     "@tokenMissing": {}, | ||||
|     "tokenMissingFromResponse": "Zugangstoken fehlt in Antwort", | ||||
|     "@tokenMissingFromResponse": {}, | ||||
|     "transfer": "Verschieben", | ||||
|     "@transfer": { | ||||
|         "description": "transfer" | ||||
|     }, | ||||
|     "transferStock": "Bestand verschieben", | ||||
|     "@transferStock": { | ||||
|         "description": "transfer stock" | ||||
|     }, | ||||
|     "translate": "Übersetzen", | ||||
|     "@translate": {}, | ||||
|     "translateHelp": "Hilf dabei, die InvenTree App zu übersetzen", | ||||
|     "@translateHelp": {}, | ||||
|     "units": "Einheiten", | ||||
|     "@units": {}, | ||||
|     "unknownResponse": "Unbekannte Antwort", | ||||
|     "@unknownResponse": {}, | ||||
|     "upload": "Hochladen", | ||||
|     "@upload": {}, | ||||
|     "uploadFailed": "Datei hochladen fehlgeschlagen", | ||||
|     "@uploadFailed": {}, | ||||
|     "uploadSuccess": "Datei hochgeladen", | ||||
|     "@uploadSuccess": {}, | ||||
|     "usedIn": "Verwendet in", | ||||
|     "@usedIn": {}, | ||||
|     "usedInDetails": "Baugruppen, die dieses Teil benötigen", | ||||
|     "@usedInDetails": {}, | ||||
|     "username": "Benutzername", | ||||
|     "@username": {}, | ||||
|     "usernameEmpty": "Der Benutzername darf nicht leer sein", | ||||
|     "@usernameEmpty": {}, | ||||
|     "value": "Wert", | ||||
|     "@value": { | ||||
|         "description": "value" | ||||
|     }, | ||||
|     "valueCannotBeEmpty": "Dieser Wert darf nicht leer sein", | ||||
|     "@valueCannotBeEmpty": {}, | ||||
|     "valueRequired": "Wert erforderlich", | ||||
|     "@valueRequired": {}, | ||||
|     "version": "Version", | ||||
|     "@version": {}, | ||||
|     "viewSupplierPart": "Zulieferer-Teil anzeigen", | ||||
|     "@viewSupplierPart": {}, | ||||
|     "website": "Website", | ||||
|     "@website": {} | ||||
| } | ||||
							
								
								
									
										5
									
								
								lib/l10n/el/app_el.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								lib/l10n/el/app_el.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {} | ||||
| } | ||||
							
								
								
									
										3
									
								
								lib/l10n/es-419/app_es.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								lib/l10n/es-419/app_es.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,3 @@ | ||||
| { | ||||
|     "@@locale": "en" | ||||
| } | ||||
							
								
								
									
										635
									
								
								lib/l10n/es-ES/app_es.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										635
									
								
								lib/l10n/es-ES/app_es.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,635 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "ok": "OK", | ||||
|     "@ok": { | ||||
|         "description": "OK" | ||||
|     }, | ||||
|     "about": "Acerca de", | ||||
|     "@about": {}, | ||||
|     "accountDetails": "Detalles de cuenta", | ||||
|     "@accountDetails": {}, | ||||
|     "actions": "Acciones", | ||||
|     "@actions": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "actionsNone": "No hay acciones disponibles", | ||||
|     "@actionsNone": {}, | ||||
|     "add": "Añadir", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "addStock": "Añadir stock", | ||||
|     "@addStock": { | ||||
|         "description": "add stock" | ||||
|     }, | ||||
|     "address": "Dirección", | ||||
|     "@address": {}, | ||||
|     "appAbout": "Acerca de InvenTree", | ||||
|     "@appAbout": {}, | ||||
|     "appCredits": "Créditos de aplicación adicionales", | ||||
|     "@appCredits": {}, | ||||
|     "appDetails": "Detalles de la aplicación", | ||||
|     "@appDetails": {}, | ||||
|     "appReleaseNotes": "Mostrar notas de versión de la aplicación", | ||||
|     "@appReleaseNotes": {}, | ||||
|     "appSettings": "Configuración de la aplicación", | ||||
|     "@appSettings": {}, | ||||
|     "appSettingsDetails": "Configurar ajustes de la aplicación InvenTree", | ||||
|     "@appSettingsDetails": {}, | ||||
|     "attachments": "Archivos adjuntos", | ||||
|     "@attachments": {}, | ||||
|     "attachImage": "Adjuntar imagen", | ||||
|     "@attachImage": { | ||||
|         "description": "Attach an image" | ||||
|     }, | ||||
|     "attachmentNone": "No se encontraron archivos adjuntos", | ||||
|     "@attachmentNone": {}, | ||||
|     "attachmentNonePartDetail": "No se encontraron archivos adjuntos para esta parte", | ||||
|     "@attachmentNonePartDetail": {}, | ||||
|     "attachmentSelect": "Seleccionar archivo adjunto", | ||||
|     "@attachmentSelect": {}, | ||||
|     "attention": "Atención", | ||||
|     "@attention": {}, | ||||
|     "availableStock": "Stock Disponible", | ||||
|     "@availableStock": {}, | ||||
|     "barcodeAssign": "Asignar código de barras", | ||||
|     "@barcodeAssign": {}, | ||||
|     "barcodeAssigned": "Código de barras asignado", | ||||
|     "@barcodeAssigned": {}, | ||||
|     "barcodeError": "Error al escanear código de barras", | ||||
|     "@barcodeError": {}, | ||||
|     "barcodeInUse": "Código de barras ya asignado", | ||||
|     "@barcodeInUse": {}, | ||||
|     "barcodeMissingHash": "Faltan datos de código de barras en la respuesta", | ||||
|     "@barcodeMissingHash": {}, | ||||
|     "barcodeNoMatch": "No hay coincidencia para código de barras", | ||||
|     "@barcodeNoMatch": {}, | ||||
|     "barcodeNotAssigned": "Código de barras no asignado", | ||||
|     "@barcodeNotAssigned": {}, | ||||
|     "barcodeScanAssign": "Escanear para asignar código de barras", | ||||
|     "@barcodeScanAssign": {}, | ||||
|     "barcodeScanGeneral": "Escanear un código de barras de InvenTree", | ||||
|     "@barcodeScanGeneral": {}, | ||||
|     "barcodeScanInItems": "Escanear artículos de stock a la ubicación", | ||||
|     "@barcodeScanInItems": {}, | ||||
|     "barcodeScanLocation": "Escanear ubicación de stock", | ||||
|     "@barcodeScanLocation": {}, | ||||
|     "barcodeScanIntoLocationSuccess": "Escaneado en la ubicación", | ||||
|     "@barcodeScanIntoLocationSuccess": {}, | ||||
|     "barcodeScanIntoLocationFailure": "Artículo no escaneado en", | ||||
|     "@barcodeScanIntoLocationFailure": {}, | ||||
|     "barcodeScanItem": "Escanear artículo de stock", | ||||
|     "@barcodeScanItem": {}, | ||||
|     "barcodeTones": "Tonos de código de barras", | ||||
|     "@barcodeTones": {}, | ||||
|     "barcodeUnassign": "Desasignar código de barras", | ||||
|     "@barcodeUnassign": {}, | ||||
|     "barcodeUnknown": "El código de barras no reconocido", | ||||
|     "@barcodeUnknown": {}, | ||||
|     "batchCode": "Numero de lote", | ||||
|     "@batchCode": {}, | ||||
|     "billOfMaterials": "Lista de Materiales", | ||||
|     "@billOfMaterials": {}, | ||||
|     "build": "Construcción", | ||||
|     "@build": {}, | ||||
|     "building": "Construyendo", | ||||
|     "@building": {}, | ||||
|     "cancel": "Cancelar", | ||||
|     "@cancel": { | ||||
|         "description": "Cancel" | ||||
|     }, | ||||
|     "category": "Categoria", | ||||
|     "@category": {}, | ||||
|     "categoryCreate": "Nueva Categoría", | ||||
|     "@categoryCreate": {}, | ||||
|     "categoryCreateDetail": "Crear nueva categoría de partes", | ||||
|     "@categoryCreateDetail": {}, | ||||
|     "categoryUpdated": "Categoría actualizada", | ||||
|     "@categoryUpdated": {}, | ||||
|     "company": "Companía", | ||||
|     "@company": {}, | ||||
|     "companyEdit": "Editar compañía", | ||||
|     "@companyEdit": {}, | ||||
|     "companyNoResults": "No hay compañías que coincidan con la consulta", | ||||
|     "@companyNoResults": {}, | ||||
|     "companyUpdated": "Detalles de la compañía actualizados", | ||||
|     "@companyUpdated": {}, | ||||
|     "companies": "Compañías", | ||||
|     "@companies": {}, | ||||
|     "configureServer": "Configurar ajustes del servidor", | ||||
|     "@configureServer": {}, | ||||
|     "connectionRefused": "Conexión rechazada", | ||||
|     "@connectionRefused": {}, | ||||
|     "count": "Número", | ||||
|     "@count": { | ||||
|         "description": "Count" | ||||
|     }, | ||||
|     "countStock": "Cantidad de stock", | ||||
|     "@countStock": { | ||||
|         "description": "Count Stock" | ||||
|     }, | ||||
|     "credits": "Créditos", | ||||
|     "@credits": {}, | ||||
|     "customers": "Clientes", | ||||
|     "@customers": {}, | ||||
|     "damaged": "Dañado", | ||||
|     "@damaged": {}, | ||||
|     "delete": "Eliminar", | ||||
|     "@delete": {}, | ||||
|     "deletePart": "Eliminar parte", | ||||
|     "@deletePart": {}, | ||||
|     "deletePartDetail": "Eliminar esta parte de la base de datos", | ||||
|     "@deletePartDetail": {}, | ||||
|     "description": "Descripción", | ||||
|     "@description": {}, | ||||
|     "destroyed": "Destruido", | ||||
|     "@destroyed": {}, | ||||
|     "details": "Detalles", | ||||
|     "@details": { | ||||
|         "description": "details" | ||||
|     }, | ||||
|     "documentation": "Documentación", | ||||
|     "@documentation": {}, | ||||
|     "downloading": "Descargando archivo", | ||||
|     "@downloading": {}, | ||||
|     "downloadError": "Error de descarga", | ||||
|     "@downloadError": {}, | ||||
|     "edit": "Editar", | ||||
|     "@edit": { | ||||
|         "description": "edit" | ||||
|     }, | ||||
|     "editCategory": "Editar categoría", | ||||
|     "@editCategory": {}, | ||||
|     "editLocation": "Editar ubicación", | ||||
|     "@editLocation": {}, | ||||
|     "editNotes": "Editar notas", | ||||
|     "@editNotes": {}, | ||||
|     "editPart": "Editar Parte", | ||||
|     "@editPart": { | ||||
|         "description": "edit part" | ||||
|     }, | ||||
|     "editItem": "Editar artículo de stock", | ||||
|     "@editItem": {}, | ||||
|     "enterPassword": "Introducir contraseña", | ||||
|     "@enterPassword": {}, | ||||
|     "enterUsername": "Introducir usuario", | ||||
|     "@enterUsername": {}, | ||||
|     "error": "Error", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorCreate": "Error al crear entrada de base de datos", | ||||
|     "@errorCreate": {}, | ||||
|     "errorDelete": "Error al eliminar la entrada de base de datos", | ||||
|     "@errorDelete": {}, | ||||
|     "errorDetails": "Detalles del error", | ||||
|     "@errorDetails": {}, | ||||
|     "errorFetch": "Error obteniendo datos del servidor", | ||||
|     "@errorFetch": {}, | ||||
|     "errorReporting": "Error al reportar", | ||||
|     "@errorReporting": {}, | ||||
|     "errorReportUpload": "Subir informe de errores", | ||||
|     "@errorReportUpload": {}, | ||||
|     "errorReportUploadDetails": "Subir informes de errores anónimos y registros de errores", | ||||
|     "@errorReportUploadDetails": {}, | ||||
|     "feedback": "Comentarios", | ||||
|     "@feedback": {}, | ||||
|     "feedbackError": "Error al enviar comentarios", | ||||
|     "@feedbackError": {}, | ||||
|     "feedbackSuccess": "Comentarios enviados", | ||||
|     "@feedbackSuccess": {}, | ||||
|     "formatException": "Excepción de formato", | ||||
|     "@formatException": {}, | ||||
|     "formatExceptionJson": "Excepción en formato de datos JSON", | ||||
|     "@formatExceptionJson": {}, | ||||
|     "formError": "Error de formulario", | ||||
|     "@formError": {}, | ||||
|     "history": "Historial", | ||||
|     "@history": { | ||||
|         "description": "history" | ||||
|     }, | ||||
|     "homeScreen": "Pantalla de Inicio", | ||||
|     "@homeScreen": {}, | ||||
|     "homeScreenSettings": "Configurar ajustes de la pantalla de inicio", | ||||
|     "@homeScreenSettings": {}, | ||||
|     "homeShowPo": "Mostrar órdenes de compra", | ||||
|     "@homeShowPo": {}, | ||||
|     "homeShowSubscribed": "Partes Suscritas", | ||||
|     "@homeShowSubscribed": {}, | ||||
|     "homeShowSubscribedDescription": "Mostrar las partes suscritas en la página principal", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "homeShowPoDescription": "Mostrar botón de orden de compra en la pantalla de inicio", | ||||
|     "@homeShowPoDescription": {}, | ||||
|     "homeShowSuppliers": "Mostrar Proveedores", | ||||
|     "@homeShowSuppliers": {}, | ||||
|     "homeShowSuppliersDescription": "Mostrar botón de proveedores en la pantalla de inicio", | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "homeShowManufacturers": "Mostrar fabricantes", | ||||
|     "@homeShowManufacturers": {}, | ||||
|     "homeShowManufacturersDescription": "Mostrar botón de fabricantes en la pantalla de inicio", | ||||
|     "@homeShowManufacturersDescription": {}, | ||||
|     "homeShowCustomers": "Mostrar clientes", | ||||
|     "@homeShowCustomers": {}, | ||||
|     "homeShowCustomersDescription": "Mostrar botón de clientes en la pantalla de inicio", | ||||
|     "@homeShowCustomersDescription": {}, | ||||
|     "imageUploadFailure": "Error al subir la imagen", | ||||
|     "@imageUploadFailure": {}, | ||||
|     "imageUploadSuccess": "Imagen subida", | ||||
|     "@imageUploadSuccess": {}, | ||||
|     "inactive": "Inactivo", | ||||
|     "@inactive": {}, | ||||
|     "inactiveDetail": "Esta parte está marcada como inactiva", | ||||
|     "@inactiveDetail": {}, | ||||
|     "includeSubcategories": "Incluir subcategorías", | ||||
|     "@includeSubcategories": {}, | ||||
|     "includeSubcategoriesDetail": "Mostrar partes de subcategorías en la vista de lista", | ||||
|     "@includeSubcategoriesDetail": {}, | ||||
|     "includeSublocations": "Incluir sub-localizaciones", | ||||
|     "@includeSublocations": {}, | ||||
|     "includeSublocationsDetail": "Mostrar elementos de sub-ubicación en vista de lista", | ||||
|     "@includeSublocationsDetail": {}, | ||||
|     "incompleteDetails": "Detalles del perfil incompletos", | ||||
|     "@incompleteDetails": {}, | ||||
|     "internalPartNumber": "Número de parte interno", | ||||
|     "@internalPartNumber": {}, | ||||
|     "info": "Información", | ||||
|     "@info": {}, | ||||
|     "inProduction": "En producción", | ||||
|     "@inProduction": {}, | ||||
|     "inProductionDetail": "El artículo de stock está en producción", | ||||
|     "@inProductionDetail": {}, | ||||
|     "invalidPart": "Parte inválida", | ||||
|     "@invalidPart": {}, | ||||
|     "invalidPartCategory": "Categoría de parte inválida", | ||||
|     "@invalidPartCategory": {}, | ||||
|     "invalidStockLocation": "Ubicación inválida", | ||||
|     "@invalidStockLocation": {}, | ||||
|     "invalidStockItem": "Artículo de stock inválido", | ||||
|     "@invalidStockItem": {}, | ||||
|     "invalidUsernamePassword": "Nombre de usuario / contraseña no válido", | ||||
|     "@invalidUsernamePassword": {}, | ||||
|     "itemInLocation": "El artículo ya está en la ubicación", | ||||
|     "@itemInLocation": {}, | ||||
|     "keywords": "Palabras claves", | ||||
|     "@keywords": {}, | ||||
|     "lastUpdated": "Última actualización", | ||||
|     "@lastUpdated": {}, | ||||
|     "lineItems": "Elementos de línea", | ||||
|     "@lineItems": {}, | ||||
|     "locationCreate": "Nueva ubicación", | ||||
|     "@locationCreate": {}, | ||||
|     "locationCreateDetail": "Crear nueva ubicación de stock", | ||||
|     "@locationCreateDetail": {}, | ||||
|     "locationNotSet": "No se especificó ninguna ubicación", | ||||
|     "@locationNotSet": {}, | ||||
|     "locationUpdated": "Ubicación de stock actualizada", | ||||
|     "@locationUpdated": {}, | ||||
|     "link": "Vincular", | ||||
|     "@link": {}, | ||||
|     "lost": "Perdido", | ||||
|     "@lost": {}, | ||||
|     "manufacturers": "Fabricantes", | ||||
|     "@manufacturers": {}, | ||||
|     "name": "Nombre", | ||||
|     "@name": {}, | ||||
|     "notConnected": "No conectado", | ||||
|     "@notConnected": {}, | ||||
|     "notes": "Notas", | ||||
|     "@notes": { | ||||
|         "description": "Notes" | ||||
|     }, | ||||
|     "noResponse": "Sin respuesta del servidor", | ||||
|     "@noResponse": {}, | ||||
|     "noResults": "Sin resultados", | ||||
|     "@noResults": {}, | ||||
|     "noSubcategories": "No hay subcategorías", | ||||
|     "@noSubcategories": {}, | ||||
|     "noSubcategoriesAvailable": "No hay subcategorías disponibles", | ||||
|     "@noSubcategoriesAvailable": {}, | ||||
|     "numberInvalid": "Número inválido", | ||||
|     "@numberInvalid": {}, | ||||
|     "onOrder": "En pedido", | ||||
|     "@onOrder": {}, | ||||
|     "onOrderDetails": "Artículos actualmente en pedido", | ||||
|     "@onOrderDetails": {}, | ||||
|     "packaging": "Paquete", | ||||
|     "@packaging": {}, | ||||
|     "packageName": "Nombre de Paquete", | ||||
|     "@packageName": {}, | ||||
|     "parent": "Principal", | ||||
|     "@parent": {}, | ||||
|     "parentCategory": "Categoría superior", | ||||
|     "@parentCategory": {}, | ||||
|     "parentLocation": "Ubicación superior", | ||||
|     "@parentLocation": {}, | ||||
|     "part": "Parte", | ||||
|     "@part": { | ||||
|         "description": "Part (single)" | ||||
|     }, | ||||
|     "partCreate": "Nueva Parte", | ||||
|     "@partCreate": {}, | ||||
|     "partCreateDetail": "Crear nueva parte en esta categoría", | ||||
|     "@partCreateDetail": {}, | ||||
|     "partEdited": "Parte actualizada", | ||||
|     "@partEdited": {}, | ||||
|     "parts": "Partes", | ||||
|     "@parts": { | ||||
|         "description": "Part (multiple)" | ||||
|     }, | ||||
|     "partsNone": "Sin Partes", | ||||
|     "@partsNone": {}, | ||||
|     "partNoResults": "No hay partes que coincidan", | ||||
|     "@partNoResults": {}, | ||||
|     "partsStarred": "Parte suscrita", | ||||
|     "@partsStarred": {}, | ||||
|     "partsStarredNone": "No hay partes destacadas disponibles", | ||||
|     "@partsStarredNone": {}, | ||||
|     "partSuppliers": "Proveedores de partes", | ||||
|     "@partSuppliers": {}, | ||||
|     "partCategory": "Categoría de parte", | ||||
|     "@partCategory": {}, | ||||
|     "partCategoryTopLevel": "Categoría de partes de nivel superior", | ||||
|     "@partCategoryTopLevel": {}, | ||||
|     "partCategories": "Categorías de parte", | ||||
|     "@partCategories": {}, | ||||
|     "partDetails": "Detalles de Parte", | ||||
|     "@partDetails": {}, | ||||
|     "partNotes": "Notas de parte", | ||||
|     "@partNotes": {}, | ||||
|     "partStock": "Stock de parte", | ||||
|     "@partStock": { | ||||
|         "description": "part stock" | ||||
|     }, | ||||
|     "password": "Contraseña", | ||||
|     "@password": {}, | ||||
|     "passwordEmpty": "La contraseña no puede estar vacía", | ||||
|     "@passwordEmpty": {}, | ||||
|     "permissionAccountDenied": "Tu usuario no cuenta con los permisos necesarios para realizar esta acción", | ||||
|     "@permissionAccountDenied": {}, | ||||
|     "permissionRequired": "Se requiere autorización", | ||||
|     "@permissionRequired": {}, | ||||
|     "printLabel": "Imprimir etiqueta", | ||||
|     "@printLabel": {}, | ||||
|     "printLabelFailure": "Impresión de etiquetas fallida", | ||||
|     "@printLabelFailure": {}, | ||||
|     "printLabelSuccess": "Etiqueta enviada a la impresora", | ||||
|     "@printLabelSuccess": {}, | ||||
|     "profile": "Perfil", | ||||
|     "@profile": {}, | ||||
|     "profileAdd": "Añadir perfil de servidor", | ||||
|     "@profileAdd": {}, | ||||
|     "profileConnect": "Conectar a Servidor", | ||||
|     "@profileConnect": {}, | ||||
|     "profileEdit": "Editar perfil de servidor", | ||||
|     "@profileEdit": {}, | ||||
|     "profileDelete": "Eliminar perfil del servidor", | ||||
|     "@profileDelete": {}, | ||||
|     "profileName": "Nombre de perfil", | ||||
|     "@profileName": {}, | ||||
|     "profileNone": "No hay perfiles disponibles", | ||||
|     "@profileNone": {}, | ||||
|     "profileNotSelected": "Ningún perfil seleccionado", | ||||
|     "@profileNotSelected": {}, | ||||
|     "profileSelect": "Seleccionar servidor de InvenTree", | ||||
|     "@profileSelect": {}, | ||||
|     "profileTapToCreate": "Toca para crear o seleccionar un perfil", | ||||
|     "@profileTapToCreate": {}, | ||||
|     "purchaseOrder": "Orden de compra", | ||||
|     "@purchaseOrder": {}, | ||||
|     "purchaseOrderEdit": "Modificar orden de compra", | ||||
|     "@purchaseOrderEdit": {}, | ||||
|     "purchaseOrders": "Ordenes de compra", | ||||
|     "@purchaseOrders": {}, | ||||
|     "purchaseOrderUpdated": "Orden de compra actualizada", | ||||
|     "@purchaseOrderUpdated": {}, | ||||
|     "purchasePrice": "Precio de compra", | ||||
|     "@purchasePrice": {}, | ||||
|     "quantity": "Cantidad", | ||||
|     "@quantity": { | ||||
|         "description": "Quantity" | ||||
|     }, | ||||
|     "quantityEmpty": "Cantidad está vacía", | ||||
|     "@quantityEmpty": {}, | ||||
|     "quantityInvalid": "La cantidad no es válida", | ||||
|     "@quantityInvalid": {}, | ||||
|     "quantityPositive": "La cantidad debe ser positiva", | ||||
|     "@quantityPositive": {}, | ||||
|     "queryNoResults": "No hay resultados para la consulta", | ||||
|     "@queryNoResults": {}, | ||||
|     "received": "Recibido", | ||||
|     "@received": {}, | ||||
|     "receiveItem": "Recibir artículo", | ||||
|     "@receiveItem": {}, | ||||
|     "receivedItem": "Articulo de stock recibido", | ||||
|     "@receivedItem": {}, | ||||
|     "refresh": "Actualizar", | ||||
|     "@refresh": {}, | ||||
|     "refreshing": "Actualizando", | ||||
|     "@refreshing": {}, | ||||
|     "rejected": "Rechazado", | ||||
|     "@rejected": {}, | ||||
|     "releaseNotes": "Notas informativas", | ||||
|     "@releaseNotes": {}, | ||||
|     "remove": "Eliminar", | ||||
|     "@remove": { | ||||
|         "description": "remove" | ||||
|     }, | ||||
|     "removeStock": "Eliminar Stock", | ||||
|     "@removeStock": { | ||||
|         "description": "remove stock" | ||||
|     }, | ||||
|     "reportBug": "Reportar un error", | ||||
|     "@reportBug": {}, | ||||
|     "reportBugDescription": "Enviar informe de error (requiere cuenta de GitHub)", | ||||
|     "@reportBugDescription": {}, | ||||
|     "results": "Resultados", | ||||
|     "@results": {}, | ||||
|     "required": "Requerido", | ||||
|     "@required": { | ||||
|         "description": "This field is required" | ||||
|     }, | ||||
|     "response400": "Petición incorrecta", | ||||
|     "@response400": {}, | ||||
|     "response401": "No autorizado (Unauthorized)", | ||||
|     "@response401": {}, | ||||
|     "response403": "Permiso denegado", | ||||
|     "@response403": {}, | ||||
|     "response404": "Recurso no encontrado", | ||||
|     "@response404": {}, | ||||
|     "response405": "Método no permitido", | ||||
|     "@response405": {}, | ||||
|     "response429": "Demasiadas peticiones", | ||||
|     "@response429": {}, | ||||
|     "response500": "Error interno del servidor", | ||||
|     "@response500": {}, | ||||
|     "response501": "No implementado", | ||||
|     "@response501": {}, | ||||
|     "response502": "Puerta de enlace incorrecta (Bad Gateway)", | ||||
|     "@response502": {}, | ||||
|     "response503": "Servicio no disponible", | ||||
|     "@response503": {}, | ||||
|     "response504": "Tiempo de espera de puerta de enlace (Gateway Timeout)", | ||||
|     "@response504": {}, | ||||
|     "response505": "Versión de HTTP no compatible", | ||||
|     "@response505": {}, | ||||
|     "responseData": "Datos de respuesta", | ||||
|     "@responseData": {}, | ||||
|     "responseInvalid": "Código de respuesta inválido", | ||||
|     "@responseInvalid": {}, | ||||
|     "responseUnknown": "Respuesta desconocida", | ||||
|     "@responseUnknown": {}, | ||||
|     "result": "Resultado", | ||||
|     "@result": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "returned": "Devuelto", | ||||
|     "@returned": {}, | ||||
|     "salesOrders": "Órdenes de venta", | ||||
|     "@salesOrders": {}, | ||||
|     "save": "Guardar", | ||||
|     "@save": { | ||||
|         "description": "Save" | ||||
|     }, | ||||
|     "scanBarcode": "Escanear código de barras", | ||||
|     "@scanBarcode": {}, | ||||
|     "scanIntoLocation": "Escanear a la ubicación", | ||||
|     "@scanIntoLocation": {}, | ||||
|     "search": "Buscar", | ||||
|     "@search": { | ||||
|         "description": "search" | ||||
|     }, | ||||
|     "searchLocation": "Buscar ubicaciones", | ||||
|     "@searchLocation": {}, | ||||
|     "searchParts": "Buscar partes", | ||||
|     "@searchParts": {}, | ||||
|     "searchStock": "Buscar Stock", | ||||
|     "@searchStock": {}, | ||||
|     "select": "Seleccionar", | ||||
|     "@select": {}, | ||||
|     "selectFile": "Seleccionar archivo", | ||||
|     "@selectFile": {}, | ||||
|     "selectImage": "Seleccionar imagen", | ||||
|     "@selectImage": {}, | ||||
|     "selectLocation": "Seleccione una ubicación", | ||||
|     "@selectLocation": {}, | ||||
|     "send": "Enviar", | ||||
|     "@send": {}, | ||||
|     "serialNumber": "Número de serie", | ||||
|     "@serialNumber": {}, | ||||
|     "server": "Servidor", | ||||
|     "@server": {}, | ||||
|     "serverApiRequired": "Versión de API requerida", | ||||
|     "@serverApiRequired": {}, | ||||
|     "serverApiVersion": "Versión de la API del servidor", | ||||
|     "@serverApiVersion": {}, | ||||
|     "serverAuthenticationError": "Error de autenticación", | ||||
|     "@serverAuthenticationError": {}, | ||||
|     "serverCertificateError": "Error de certificado", | ||||
|     "@serverCertificateError": {}, | ||||
|     "serverCertificateInvalid": "El certificado del servidor no es válido", | ||||
|     "@serverCertificateInvalid": {}, | ||||
|     "serverConnected": "Conectado al servidor", | ||||
|     "@serverConnected": {}, | ||||
|     "serverConnecting": "Conectando a servidor", | ||||
|     "@serverConnecting": {}, | ||||
|     "serverCouldNotConnect": "No se pudo conectar al servidor", | ||||
|     "@serverCouldNotConnect": {}, | ||||
|     "serverEmpty": "El servidor no puede estar vacío", | ||||
|     "@serverEmpty": {}, | ||||
|     "serverError": "Error del servidor", | ||||
|     "@serverError": {}, | ||||
|     "serverDetails": "Detalles del Servidor", | ||||
|     "@serverDetails": {}, | ||||
|     "serverMissingData": "Faltan campos requeridos de respuesta del servidor", | ||||
|     "@serverMissingData": {}, | ||||
|     "serverOld": "Versión del servidor anterior", | ||||
|     "@serverOld": {}, | ||||
|     "serverSettings": "Configuración del Servidor", | ||||
|     "@serverSettings": {}, | ||||
|     "serverStart": "El servidor debe comenzar con http[s]", | ||||
|     "@serverStart": {}, | ||||
|     "settings": "Configuración", | ||||
|     "@settings": {}, | ||||
|     "serverInstance": "Instancia del servidor", | ||||
|     "@serverInstance": {}, | ||||
|     "serverNotConnected": "Servidor no conectado", | ||||
|     "@serverNotConnected": {}, | ||||
|     "sounds": "Sonidos", | ||||
|     "@sounds": {}, | ||||
|     "soundOnBarcodeAction": "Reproducir tono audible en la acción de código de barras", | ||||
|     "@soundOnBarcodeAction": {}, | ||||
|     "soundOnServerError": "Reproducir tono audible en error del servidor", | ||||
|     "@soundOnServerError": {}, | ||||
|     "status": "Estado", | ||||
|     "@status": {}, | ||||
|     "statusCode": "Código de estado", | ||||
|     "@statusCode": {}, | ||||
|     "stock": "Stock", | ||||
|     "@stock": { | ||||
|         "description": "stock" | ||||
|     }, | ||||
|     "stockDetails": "Cantidad actual de stock disponible", | ||||
|     "@stockDetails": {}, | ||||
|     "stockItem": "Artículo de stock", | ||||
|     "@stockItem": { | ||||
|         "description": "stock item title" | ||||
|     }, | ||||
|     "stockItems": "Elementos de Stock", | ||||
|     "@stockItems": {}, | ||||
|     "stockItemCreate": "Nuevo artículo de stock", | ||||
|     "@stockItemCreate": {}, | ||||
|     "stockItemCreateDetail": "Crear nuevo artículo de stock en esta ubicación", | ||||
|     "@stockItemCreateDetail": {}, | ||||
|     "stockItemDelete": "Eliminar elemento de stock", | ||||
|     "@stockItemDelete": {}, | ||||
|     "stockItemDeleteConfirm": "¿Está seguro que desea eliminar este elemento de stock?", | ||||
|     "@stockItemDeleteConfirm": {}, | ||||
|     "stockItemDeleteFailure": "No se pudo eliminar el elemento de stock", | ||||
|     "@stockItemDeleteFailure": {}, | ||||
|     "stockItemDeleteSuccess": "Elemento de stock eliminado", | ||||
|     "@stockItemDeleteSuccess": {}, | ||||
|     "stockItemHistory": "Historial de Stock", | ||||
|     "@stockItemHistory": {}, | ||||
|     "stockItemHistoryDetail": "Mostrar información de seguimiento de stock histórico", | ||||
|     "@stockItemHistoryDetail": {}, | ||||
|     "stockItemTransferred": "Artículo de stock transferido", | ||||
|     "@stockItemTransferred": {}, | ||||
|     "stockItemUpdated": "Artículo de stock actualizado", | ||||
|     "@stockItemUpdated": {}, | ||||
|     "stockItemsNotAvailable": "No hay artículos de stock disponibles", | ||||
|     "@stockItemsNotAvailable": {}, | ||||
|     "stockItemNotes": "Notas del artículo de stock", | ||||
|     "@stockItemNotes": {}, | ||||
|     "stockItemUpdateSuccess": "Artículo de stock actualizado", | ||||
|     "@stockItemUpdateSuccess": {}, | ||||
|     "stockItemUpdateFailure": "Error al actualizar el artículo de stock", | ||||
|     "@stockItemUpdateFailure": {}, | ||||
|     "stockLocation": "Ubicaciones de stock", | ||||
|     "@stockLocation": { | ||||
|         "description": "stock location" | ||||
|     }, | ||||
|     "stockLocations": "Ubicaciones de Stock", | ||||
|     "@stockLocations": {}, | ||||
|     "stockTopLevel": "Ubicación de stock superior", | ||||
|     "@stockTopLevel": {}, | ||||
|     "strictHttps": "Usar HTTPS estricto", | ||||
|     "@strictHttps": {}, | ||||
|     "strictHttpsDetails": "Forzar un control estricto de los certificados HTTPs", | ||||
|     "@strictHttpsDetails": {}, | ||||
|     "subcategory": "Subcategoría", | ||||
|     "@subcategory": {}, | ||||
|     "subcategories": "Subcategorías", | ||||
|     "@subcategories": {}, | ||||
|     "sublocation": "Sublocalización", | ||||
|     "@sublocation": {}, | ||||
|     "sublocations": "Sublocalizaciones", | ||||
|     "@sublocations": {}, | ||||
|     "sublocationNone": "Sin sublocalizaciones", | ||||
|     "@sublocationNone": {}, | ||||
|     "sublocationNoneDetail": "No hay sublocalizaciones disponibles", | ||||
|     "@sublocationNoneDetail": {} | ||||
| } | ||||
							
								
								
									
										17
									
								
								lib/l10n/es-MX/app_es.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								lib/l10n/es-MX/app_es.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "barcodeScanInItems": "Escanear artículos de stock en su ubicación", | ||||
|     "@barcodeScanInItems": {}, | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "includeSublocationsDetail": "Mostrar elementos de sub-ubicación en vista de lista", | ||||
|     "@includeSublocationsDetail": {}, | ||||
|     "lineItems": "Ítems de línea", | ||||
|     "@lineItems": {}, | ||||
|     "onOrderDetails": "Artículos actualmente en pedido", | ||||
|     "@onOrderDetails": {}, | ||||
|     "stockItems": "Elementos de stock", | ||||
|     "@stockItems": {}, | ||||
|     "stockItemsNotAvailable": "No hay artículos de stock disponibles", | ||||
|     "@stockItemsNotAvailable": {} | ||||
| } | ||||
							
								
								
									
										5
									
								
								lib/l10n/fa/app_fa.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								lib/l10n/fa/app_fa.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {} | ||||
| } | ||||
							
								
								
									
										743
									
								
								lib/l10n/fr/app_fr.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										743
									
								
								lib/l10n/fr/app_fr.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,743 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "ok": "OK", | ||||
|     "@ok": { | ||||
|         "description": "OK" | ||||
|     }, | ||||
|     "about": "À propos", | ||||
|     "@about": {}, | ||||
|     "accountDetails": "Détails du compte", | ||||
|     "@accountDetails": {}, | ||||
|     "actions": "Actions", | ||||
|     "@actions": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "actionsNone": "Aucune action disponible", | ||||
|     "@actionsNone": {}, | ||||
|     "add": "Ajouter", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "addStock": "Ajouter un stock", | ||||
|     "@addStock": { | ||||
|         "description": "add stock" | ||||
|     }, | ||||
|     "address": "Adresse", | ||||
|     "@address": {}, | ||||
|     "appAbout": "À propos d'InvenTree", | ||||
|     "@appAbout": {}, | ||||
|     "appCredits": "Crédits d'application supplémentaires", | ||||
|     "@appCredits": {}, | ||||
|     "appDetails": "Détails de l'application", | ||||
|     "@appDetails": {}, | ||||
|     "appReleaseNotes": "Afficher les notes de version de l'application", | ||||
|     "@appReleaseNotes": {}, | ||||
|     "appSettings": "Réglages de l'application", | ||||
|     "@appSettings": {}, | ||||
|     "appSettingsDetails": "Configurer les paramètres de l’application InvenTree", | ||||
|     "@appSettingsDetails": {}, | ||||
|     "attachments": "Pieces jointes", | ||||
|     "@attachments": {}, | ||||
|     "attachImage": "Ajouter une image", | ||||
|     "@attachImage": { | ||||
|         "description": "Attach an image" | ||||
|     }, | ||||
|     "attachmentNone": "Aucune pièce jointe trouvée", | ||||
|     "@attachmentNone": {}, | ||||
|     "attachmentNonePartDetail": "Aucune pièce jointe trouvée pour cette pièce", | ||||
|     "@attachmentNonePartDetail": {}, | ||||
|     "attachmentSelect": "Sélectionner une pièce jointe", | ||||
|     "@attachmentSelect": {}, | ||||
|     "attention": "Attention", | ||||
|     "@attention": {}, | ||||
|     "availableStock": "Stock disponible", | ||||
|     "@availableStock": {}, | ||||
|     "barcodeAssign": "Affecter un code-barres", | ||||
|     "@barcodeAssign": {}, | ||||
|     "barcodeAssigned": "Code-barres affecté", | ||||
|     "@barcodeAssigned": {}, | ||||
|     "barcodeError": "Erreur lors du scan du code-barres", | ||||
|     "@barcodeError": {}, | ||||
|     "barcodeInUse": "Le code-barres est déjà en cours d’utilisation", | ||||
|     "@barcodeInUse": {}, | ||||
|     "barcodeMissingHash": "Les données de hachage du code-barres sont manquantes dans la réponse", | ||||
|     "@barcodeMissingHash": {}, | ||||
|     "barcodeNoMatch": "Pas de correspondance pour ce code-barres", | ||||
|     "@barcodeNoMatch": {}, | ||||
|     "barcodeNotAssigned": "Code-barres non assigné", | ||||
|     "@barcodeNotAssigned": {}, | ||||
|     "barcodeScanAssign": "Scanner pour attribuer un code-barres", | ||||
|     "@barcodeScanAssign": {}, | ||||
|     "barcodeScanGeneral": "Scanner un code-barres InvenTree", | ||||
|     "@barcodeScanGeneral": {}, | ||||
|     "barcodeScanInItems": "Scannez les items de stock à l'emplacement", | ||||
|     "@barcodeScanInItems": {}, | ||||
|     "barcodeScanLocation": "Scanner la localisation du stock", | ||||
|     "@barcodeScanLocation": {}, | ||||
|     "barcodeScanIntoLocationSuccess": "Scanné vers l'emplacement", | ||||
|     "@barcodeScanIntoLocationSuccess": {}, | ||||
|     "barcodeScanIntoLocationFailure": "Item non scanné dans", | ||||
|     "@barcodeScanIntoLocationFailure": {}, | ||||
|     "barcodeScanItem": "Scanner l'article en stock", | ||||
|     "@barcodeScanItem": {}, | ||||
|     "barcodeTones": "Types de code-barre", | ||||
|     "@barcodeTones": {}, | ||||
|     "barcodeUnassign": "Désaffecter le code-barres", | ||||
|     "@barcodeUnassign": {}, | ||||
|     "barcodeUnknown": "Code-barres non reconnu", | ||||
|     "@barcodeUnknown": {}, | ||||
|     "batchCode": "Code de lot", | ||||
|     "@batchCode": {}, | ||||
|     "billOfMaterials": "Liste des matériaux", | ||||
|     "@billOfMaterials": {}, | ||||
|     "bom": "BOM", | ||||
|     "@bom": {}, | ||||
|     "build": "Assemblage", | ||||
|     "@build": {}, | ||||
|     "building": "Assemblage en cours", | ||||
|     "@building": {}, | ||||
|     "cancel": "Annuler", | ||||
|     "@cancel": { | ||||
|         "description": "Cancel" | ||||
|     }, | ||||
|     "category": "Catégorie", | ||||
|     "@category": {}, | ||||
|     "categoryCreate": "Nouvelle catégorie", | ||||
|     "@categoryCreate": {}, | ||||
|     "categoryCreateDetail": "Créer une nouvelle catégorie de pièce", | ||||
|     "@categoryCreateDetail": {}, | ||||
|     "categoryUpdated": "Catégorie de pièce mise à jour", | ||||
|     "@categoryUpdated": {}, | ||||
|     "company": "Société", | ||||
|     "@company": {}, | ||||
|     "companyEdit": "Modifier la société", | ||||
|     "@companyEdit": {}, | ||||
|     "companyNoResults": "Aucune société ne correspond à la requête", | ||||
|     "@companyNoResults": {}, | ||||
|     "companyUpdated": "Détails de la société mis à jour", | ||||
|     "@companyUpdated": {}, | ||||
|     "companies": "Sociétés", | ||||
|     "@companies": {}, | ||||
|     "configureServer": "Configurer les paramètres serveur", | ||||
|     "@configureServer": {}, | ||||
|     "connectionRefused": "Connexion refusée", | ||||
|     "@connectionRefused": {}, | ||||
|     "count": "Nombre", | ||||
|     "@count": { | ||||
|         "description": "Count" | ||||
|     }, | ||||
|     "countStock": "Nombre de stock", | ||||
|     "@countStock": { | ||||
|         "description": "Count Stock" | ||||
|     }, | ||||
|     "credits": "Crédits", | ||||
|     "@credits": {}, | ||||
|     "customers": "Clients", | ||||
|     "@customers": {}, | ||||
|     "damaged": "Endommagé", | ||||
|     "@damaged": {}, | ||||
|     "delete": "Supprimer", | ||||
|     "@delete": {}, | ||||
|     "deletePart": "Supprimer la pièce", | ||||
|     "@deletePart": {}, | ||||
|     "deletePartDetail": "Supprimer cette pièce de la base de données", | ||||
|     "@deletePartDetail": {}, | ||||
|     "description": "Description", | ||||
|     "@description": {}, | ||||
|     "destroyed": "Détruit", | ||||
|     "@destroyed": {}, | ||||
|     "details": "Détails", | ||||
|     "@details": { | ||||
|         "description": "details" | ||||
|     }, | ||||
|     "documentation": "Documentation", | ||||
|     "@documentation": {}, | ||||
|     "downloading": "Téléchargement du fichier", | ||||
|     "@downloading": {}, | ||||
|     "downloadError": "Erreur lors du téléchargement", | ||||
|     "@downloadError": {}, | ||||
|     "edit": "Modifier", | ||||
|     "@edit": { | ||||
|         "description": "edit" | ||||
|     }, | ||||
|     "editCategory": "Modifier la catégorie", | ||||
|     "@editCategory": {}, | ||||
|     "editLocation": "Modifier l’emplacement", | ||||
|     "@editLocation": {}, | ||||
|     "editNotes": "Modifier les notes", | ||||
|     "@editNotes": {}, | ||||
|     "editPart": "Modifier la pièce", | ||||
|     "@editPart": { | ||||
|         "description": "edit part" | ||||
|     }, | ||||
|     "editItem": "Editer l'article en stock", | ||||
|     "@editItem": {}, | ||||
|     "enterPassword": "Saisissez le mot de passe", | ||||
|     "@enterPassword": {}, | ||||
|     "enterUsername": "Saisissez le nom d'utilisateur", | ||||
|     "@enterUsername": {}, | ||||
|     "error": "Erreur", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorCreate": "Erreur lors de la création de l'entrée de la base de données", | ||||
|     "@errorCreate": {}, | ||||
|     "errorDelete": "Erreur lors de la suppression de l'entrée de la base de données", | ||||
|     "@errorDelete": {}, | ||||
|     "errorDetails": "Détails de l'erreur", | ||||
|     "@errorDetails": {}, | ||||
|     "errorFetch": "Erreur de récupération des données du serveur", | ||||
|     "@errorFetch": {}, | ||||
|     "errorReporting": "Rapport d'erreur", | ||||
|     "@errorReporting": {}, | ||||
|     "errorReportUpload": "Envoyer le rapport d 'erreur", | ||||
|     "@errorReportUpload": {}, | ||||
|     "errorReportUploadDetails": "Envoyer les rapports d'erreur et de crash anonymement", | ||||
|     "@errorReportUploadDetails": {}, | ||||
|     "feedback": "Donner votre avis", | ||||
|     "@feedback": {}, | ||||
|     "feedbackError": "Erreur lors de l'envoi du commentaire", | ||||
|     "@feedbackError": {}, | ||||
|     "feedbackSuccess": "Commentaire envoyé", | ||||
|     "@feedbackSuccess": {}, | ||||
|     "formatException": "Exception de format", | ||||
|     "@formatException": {}, | ||||
|     "formatExceptionJson": "Exception de format de données JSON", | ||||
|     "@formatExceptionJson": {}, | ||||
|     "formError": "Erreur de formulaire", | ||||
|     "@formError": {}, | ||||
|     "history": "Historique", | ||||
|     "@history": { | ||||
|         "description": "history" | ||||
|     }, | ||||
|     "homeScreen": "Ecran d'accueil", | ||||
|     "@homeScreen": {}, | ||||
|     "homeScreenSettings": "Configurer les paramètres de l'écran d'accueil", | ||||
|     "@homeScreenSettings": {}, | ||||
|     "homeShowPo": "Afficher les commandes d'achat", | ||||
|     "@homeShowPo": {}, | ||||
|     "homeShowSubscribed": "Pièces suivies", | ||||
|     "@homeShowSubscribed": {}, | ||||
|     "homeShowSubscribedDescription": "Afficher les pièces suivies sur l'écran d'accueil", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "homeShowPoDescription": "Afficher le bouton de bon de commande sur l'écran d'accueil", | ||||
|     "@homeShowPoDescription": {}, | ||||
|     "homeShowSuppliers": "Afficher les fournisseurs", | ||||
|     "@homeShowSuppliers": {}, | ||||
|     "homeShowSuppliersDescription": "Afficher le bouton fournisseurs sur l'écran d'accueil", | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "homeShowManufacturers": "Afficher les fabriquants", | ||||
|     "@homeShowManufacturers": {}, | ||||
|     "homeShowManufacturersDescription": "Afficher le bouton fabriquant sur l'écran d'accueil", | ||||
|     "@homeShowManufacturersDescription": {}, | ||||
|     "homeShowCustomers": "Afficher les clients", | ||||
|     "@homeShowCustomers": {}, | ||||
|     "homeShowCustomersDescription": "Afficher le bouton clients sur l'écran d'accueil", | ||||
|     "@homeShowCustomersDescription": {}, | ||||
|     "imageUploadFailure": "Échec de l'envoi de l'image", | ||||
|     "@imageUploadFailure": {}, | ||||
|     "imageUploadSuccess": "Image transférée", | ||||
|     "@imageUploadSuccess": {}, | ||||
|     "inactive": "Inactif", | ||||
|     "@inactive": {}, | ||||
|     "inactiveDetail": "Cette pièce est marquée comme inactive", | ||||
|     "@inactiveDetail": {}, | ||||
|     "includeSubcategories": "Inclure les sous-catégories", | ||||
|     "@includeSubcategories": {}, | ||||
|     "includeSubcategoriesDetail": "Afficher les sous-catégories dans la vue liste", | ||||
|     "@includeSubcategoriesDetail": {}, | ||||
|     "includeSublocations": "Inclure les sous-emplacements", | ||||
|     "@includeSublocations": {}, | ||||
|     "includeSublocationsDetail": "Afficher les sous-emplacements des articles dans la vue liste", | ||||
|     "@includeSublocationsDetail": {}, | ||||
|     "incompleteDetails": "Profil incomplet", | ||||
|     "@incompleteDetails": {}, | ||||
|     "internalPartNumber": "Numéro de pièce interne", | ||||
|     "@internalPartNumber": {}, | ||||
|     "info": "Information", | ||||
|     "@info": {}, | ||||
|     "inProduction": "En production", | ||||
|     "@inProduction": {}, | ||||
|     "inProductionDetail": "Cet article de stock est en production", | ||||
|     "@inProductionDetail": {}, | ||||
|     "invalidHost": "Nom d’hôte invalide", | ||||
|     "@invalidHost": {}, | ||||
|     "invalidHostDetails": "Le nom d'hôte fourni n'est pas valide", | ||||
|     "@invalidHostDetails": {}, | ||||
|     "invalidPart": "Article non valide", | ||||
|     "@invalidPart": {}, | ||||
|     "invalidPartCategory": "Catégorie d'article invalide", | ||||
|     "@invalidPartCategory": {}, | ||||
|     "invalidStockLocation": "Emplacement invalide", | ||||
|     "@invalidStockLocation": {}, | ||||
|     "invalidStockItem": "Article en stock non valide", | ||||
|     "@invalidStockItem": {}, | ||||
|     "invalidUsernamePassword": "Nom d'utilisateur/mot de passe invalide", | ||||
|     "@invalidUsernamePassword": {}, | ||||
|     "issueDate": "Date d'émission", | ||||
|     "@issueDate": {}, | ||||
|     "itemInLocation": "Article déjà dans l'emplacement", | ||||
|     "@itemInLocation": {}, | ||||
|     "keywords": "Mots clés", | ||||
|     "@keywords": {}, | ||||
|     "lastStocktake": "Dernier inventaire", | ||||
|     "@lastStocktake": {}, | ||||
|     "lastUpdated": "Dernière mise à jour", | ||||
|     "@lastUpdated": {}, | ||||
|     "lineItem": "Position", | ||||
|     "@lineItem": {}, | ||||
|     "lineItems": "Position", | ||||
|     "@lineItems": {}, | ||||
|     "locationCreate": "Nouvel emplacement", | ||||
|     "@locationCreate": {}, | ||||
|     "locationCreateDetail": "Créer un nouvel emplacement de stock", | ||||
|     "@locationCreateDetail": {}, | ||||
|     "locationNotSet": "Aucun emplacement spécifié", | ||||
|     "@locationNotSet": {}, | ||||
|     "locationUpdated": "Emplacement du stock mis à jour", | ||||
|     "@locationUpdated": {}, | ||||
|     "link": "Lien", | ||||
|     "@link": {}, | ||||
|     "lost": "Perdu", | ||||
|     "@lost": {}, | ||||
|     "manufacturers": "Fabricants", | ||||
|     "@manufacturers": {}, | ||||
|     "missingData": "Données manquantes", | ||||
|     "@missingData": {}, | ||||
|     "name": "Nom", | ||||
|     "@name": {}, | ||||
|     "notConnected": "Non connecté", | ||||
|     "@notConnected": {}, | ||||
|     "notes": "Notes", | ||||
|     "@notes": { | ||||
|         "description": "Notes" | ||||
|     }, | ||||
|     "noResponse": "Aucune réponse du serveur", | ||||
|     "@noResponse": {}, | ||||
|     "noResults": "Aucun résultat", | ||||
|     "@noResults": {}, | ||||
|     "noSubcategories": "Pas de sous-catégorie", | ||||
|     "@noSubcategories": {}, | ||||
|     "noSubcategoriesAvailable": "Aucune sous-catégorie disponible", | ||||
|     "@noSubcategoriesAvailable": {}, | ||||
|     "numberInvalid": "Nombre invalide", | ||||
|     "@numberInvalid": {}, | ||||
|     "onOrder": "Sur Commande", | ||||
|     "@onOrder": {}, | ||||
|     "onOrderDetails": "Articles en cours de commande", | ||||
|     "@onOrderDetails": {}, | ||||
|     "packaging": "Emballage", | ||||
|     "@packaging": {}, | ||||
|     "packageName": "Nom du package", | ||||
|     "@packageName": {}, | ||||
|     "parent": "Parent", | ||||
|     "@parent": {}, | ||||
|     "parentCategory": "Catégorie parent", | ||||
|     "@parentCategory": {}, | ||||
|     "parentLocation": "Emplacement parent", | ||||
|     "@parentLocation": {}, | ||||
|     "part": "Pièce", | ||||
|     "@part": { | ||||
|         "description": "Part (single)" | ||||
|     }, | ||||
|     "partCreate": "Nouvelle pièce", | ||||
|     "@partCreate": {}, | ||||
|     "partCreateDetail": "Créer une nouvelle pièce dans cette catégorie", | ||||
|     "@partCreateDetail": {}, | ||||
|     "partEdited": "Pièce mise à jour", | ||||
|     "@partEdited": {}, | ||||
|     "parts": "Pièces", | ||||
|     "@parts": { | ||||
|         "description": "Part (multiple)" | ||||
|     }, | ||||
|     "partsNone": "Aucune pièces", | ||||
|     "@partsNone": {}, | ||||
|     "partNoResults": "Pas de pièces correspondant à la requête", | ||||
|     "@partNoResults": {}, | ||||
|     "partsStarred": "Pièces suivies", | ||||
|     "@partsStarred": {}, | ||||
|     "partsStarredNone": "Aucune pièce favorite disponible", | ||||
|     "@partsStarredNone": {}, | ||||
|     "partSuppliers": "Fournisseurs de pièces", | ||||
|     "@partSuppliers": {}, | ||||
|     "partCategory": "Catégorie de la pièce", | ||||
|     "@partCategory": {}, | ||||
|     "partCategoryTopLevel": "Catégorie de pièce parente", | ||||
|     "@partCategoryTopLevel": {}, | ||||
|     "partCategories": "Catégories de pièce", | ||||
|     "@partCategories": {}, | ||||
|     "partDetails": "Détails de la pièce", | ||||
|     "@partDetails": {}, | ||||
|     "partNotes": "Notes de la pièce", | ||||
|     "@partNotes": {}, | ||||
|     "partStock": "Stock de la pièce", | ||||
|     "@partStock": { | ||||
|         "description": "part stock" | ||||
|     }, | ||||
|     "password": "Mot de passe", | ||||
|     "@password": {}, | ||||
|     "passwordEmpty": "Le mot de passe peut pas être vide", | ||||
|     "@passwordEmpty": {}, | ||||
|     "permissionAccountDenied": "Vous n'avez pas les autorisations requises pour exécuter cette action", | ||||
|     "@permissionAccountDenied": {}, | ||||
|     "permissionRequired": "Autorisation requise", | ||||
|     "@permissionRequired": {}, | ||||
|     "printLabel": "Imprimer l'étiquette", | ||||
|     "@printLabel": {}, | ||||
|     "printLabelFailure": "Echec de l'impression", | ||||
|     "@printLabelFailure": {}, | ||||
|     "printLabelSuccess": "Etiquette envoyée à l'imprimante", | ||||
|     "@printLabelSuccess": {}, | ||||
|     "profile": "Profil", | ||||
|     "@profile": {}, | ||||
|     "profileAdd": "Ajouter un profil serveur", | ||||
|     "@profileAdd": {}, | ||||
|     "profileConnect": "Se connecter au serveur", | ||||
|     "@profileConnect": {}, | ||||
|     "profileEdit": "Editer le profil du serveur", | ||||
|     "@profileEdit": {}, | ||||
|     "profileDelete": "Supprimer le profil du serveur", | ||||
|     "@profileDelete": {}, | ||||
|     "profileName": "Nom du profil", | ||||
|     "@profileName": {}, | ||||
|     "profileNone": "Aucun profil disponible", | ||||
|     "@profileNone": {}, | ||||
|     "profileNotSelected": "Aucun profil sélectionné", | ||||
|     "@profileNotSelected": {}, | ||||
|     "profileSelect": "Sélectionner le serveur InvenTree", | ||||
|     "@profileSelect": {}, | ||||
|     "profileTapToCreate": "Appuyer pour créer ou sélectionner un profil", | ||||
|     "@profileTapToCreate": {}, | ||||
|     "purchaseOrder": "Commande d’achat", | ||||
|     "@purchaseOrder": {}, | ||||
|     "purchaseOrderEdit": "Modifier la commande d'achat", | ||||
|     "@purchaseOrderEdit": {}, | ||||
|     "purchaseOrders": "Commandes d'achat", | ||||
|     "@purchaseOrders": {}, | ||||
|     "purchaseOrderUpdated": "Bon de commande mis à jour", | ||||
|     "@purchaseOrderUpdated": {}, | ||||
|     "purchasePrice": "Prix d'achat", | ||||
|     "@purchasePrice": {}, | ||||
|     "quantity": "Quantité", | ||||
|     "@quantity": { | ||||
|         "description": "Quantity" | ||||
|     }, | ||||
|     "quantityEmpty": "La quantité est vide", | ||||
|     "@quantityEmpty": {}, | ||||
|     "quantityInvalid": "La quantité n'est pas valide", | ||||
|     "@quantityInvalid": {}, | ||||
|     "quantityPositive": "La quantité doit être positive", | ||||
|     "@quantityPositive": {}, | ||||
|     "queryNoResults": "Pas de résultat pour votre requête", | ||||
|     "@queryNoResults": {}, | ||||
|     "received": "Reçu", | ||||
|     "@received": {}, | ||||
|     "receiveItem": "Articles reçus", | ||||
|     "@receiveItem": {}, | ||||
|     "receivedItem": "Article de stock reçu", | ||||
|     "@receivedItem": {}, | ||||
|     "refresh": "Actualiser", | ||||
|     "@refresh": {}, | ||||
|     "refreshing": "Actualisation en cours", | ||||
|     "@refreshing": {}, | ||||
|     "rejected": "Rejeté", | ||||
|     "@rejected": {}, | ||||
|     "releaseNotes": "Notes de Version", | ||||
|     "@releaseNotes": {}, | ||||
|     "remove": "Supprimer", | ||||
|     "@remove": { | ||||
|         "description": "remove" | ||||
|     }, | ||||
|     "removeStock": "Supprimer le stock", | ||||
|     "@removeStock": { | ||||
|         "description": "remove stock" | ||||
|     }, | ||||
|     "reportBug": "Signaler un bug", | ||||
|     "@reportBug": {}, | ||||
|     "reportBugDescription": "Envoyer un rapport de bug (nécessite un compte GitHub)", | ||||
|     "@reportBugDescription": {}, | ||||
|     "results": "Résultats", | ||||
|     "@results": {}, | ||||
|     "request": "Requête", | ||||
|     "@request": {}, | ||||
|     "requestingData": "Demande de données", | ||||
|     "@requestingData": {}, | ||||
|     "required": "Requis", | ||||
|     "@required": { | ||||
|         "description": "This field is required" | ||||
|     }, | ||||
|     "response400": "Mauvaise requête", | ||||
|     "@response400": {}, | ||||
|     "response401": "Non autorisé", | ||||
|     "@response401": {}, | ||||
|     "response403": "Autorisation refusée", | ||||
|     "@response403": {}, | ||||
|     "response404": "Ressource non trouvée", | ||||
|     "@response404": {}, | ||||
|     "response405": "Méthode non autorisé", | ||||
|     "@response405": {}, | ||||
|     "response429": "Trop de requêtes", | ||||
|     "@response429": {}, | ||||
|     "response500": "Erreur interne du serveur", | ||||
|     "@response500": {}, | ||||
|     "response501": "Non implémenté", | ||||
|     "@response501": {}, | ||||
|     "response502": "Mauvaise passerelle", | ||||
|     "@response502": {}, | ||||
|     "response503": "Service indisponible", | ||||
|     "@response503": {}, | ||||
|     "response504": "Délai d'attente de la passerelle expiré", | ||||
|     "@response504": {}, | ||||
|     "response505": "Version HTTP non prise en charge", | ||||
|     "@response505": {}, | ||||
|     "responseData": "Données de la réponse", | ||||
|     "@responseData": {}, | ||||
|     "responseInvalid": "Code de réponse invalide", | ||||
|     "@responseInvalid": {}, | ||||
|     "responseUnknown": "Réponse inconnue", | ||||
|     "@responseUnknown": {}, | ||||
|     "result": "Résultat ", | ||||
|     "@result": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "returned": "Retourné", | ||||
|     "@returned": {}, | ||||
|     "salesOrders": "Ventes", | ||||
|     "@salesOrders": {}, | ||||
|     "save": "Enregistrer", | ||||
|     "@save": { | ||||
|         "description": "Save" | ||||
|     }, | ||||
|     "scanBarcode": "Scanner un code-barres", | ||||
|     "@scanBarcode": {}, | ||||
|     "scanIntoLocation": "Scanner vers l'emplacement", | ||||
|     "@scanIntoLocation": {}, | ||||
|     "search": "Rechercher", | ||||
|     "@search": { | ||||
|         "description": "search" | ||||
|     }, | ||||
|     "searchLocation": "Rechercher un emplacement", | ||||
|     "@searchLocation": {}, | ||||
|     "searchParts": "Rechercher de pièces", | ||||
|     "@searchParts": {}, | ||||
|     "searchStock": "Rechercher un stock", | ||||
|     "@searchStock": {}, | ||||
|     "select": "Sélectionner", | ||||
|     "@select": {}, | ||||
|     "selectFile": "Sélectionner un fichier", | ||||
|     "@selectFile": {}, | ||||
|     "selectImage": "Sélectionner une image", | ||||
|     "@selectImage": {}, | ||||
|     "selectLocation": "Sélectionnez un emplacement", | ||||
|     "@selectLocation": {}, | ||||
|     "send": "Envoyer", | ||||
|     "@send": {}, | ||||
|     "serialNumber": "Numéro de série", | ||||
|     "@serialNumber": {}, | ||||
|     "server": "Serveur", | ||||
|     "@server": {}, | ||||
|     "serverAddress": "Adresse du serveur", | ||||
|     "@serverAddress": {}, | ||||
|     "serverApiRequired": "Version de l'API requise", | ||||
|     "@serverApiRequired": {}, | ||||
|     "serverApiVersion": "Version de l'API du serveur", | ||||
|     "@serverApiVersion": {}, | ||||
|     "serverAuthenticationError": "Erreur lors de l'authentification", | ||||
|     "@serverAuthenticationError": {}, | ||||
|     "serverCertificateError": "Erreur de certificat", | ||||
|     "@serverCertificateError": {}, | ||||
|     "serverCertificateInvalid": "Le certificat HTTPS du serveur n'est pas valide", | ||||
|     "@serverCertificateInvalid": {}, | ||||
|     "serverConnected": "Connecté au serveur", | ||||
|     "@serverConnected": {}, | ||||
|     "serverConnecting": "Connexion au serveur", | ||||
|     "@serverConnecting": {}, | ||||
|     "serverCouldNotConnect": "Connexion au serveur impossible", | ||||
|     "@serverCouldNotConnect": {}, | ||||
|     "serverEmpty": "Le serveur ne peut pas être vide", | ||||
|     "@serverEmpty": {}, | ||||
|     "serverError": "Erreur serveur", | ||||
|     "@serverError": {}, | ||||
|     "serverDetails": "Détails du serveur", | ||||
|     "@serverDetails": {}, | ||||
|     "serverMissingData": "La réponse du serveur ne possède pas les champs obligatoires", | ||||
|     "@serverMissingData": {}, | ||||
|     "serverOld": "Ancienne version du serveur", | ||||
|     "@serverOld": {}, | ||||
|     "serverSettings": "Paramètres du serveur", | ||||
|     "@serverSettings": {}, | ||||
|     "serverStart": "Le serveur doit débuter par http[s]", | ||||
|     "@serverStart": {}, | ||||
|     "settings": "Réglages", | ||||
|     "@settings": {}, | ||||
|     "serverInstance": "Instance du serveur", | ||||
|     "@serverInstance": {}, | ||||
|     "serverNotConnected": "Le serveur n'est pas connecté", | ||||
|     "@serverNotConnected": {}, | ||||
|     "sounds": "Sons", | ||||
|     "@sounds": {}, | ||||
|     "soundOnBarcodeAction": "Jouer la tonalité sonore lors du scan du code-barres", | ||||
|     "@soundOnBarcodeAction": {}, | ||||
|     "soundOnServerError": "Jouer une tonalité sonore en cas d'erreur du serveur", | ||||
|     "@soundOnServerError": {}, | ||||
|     "status": "État", | ||||
|     "@status": {}, | ||||
|     "statusCode": "Code d'état", | ||||
|     "@statusCode": {}, | ||||
|     "stock": "Stock", | ||||
|     "@stock": { | ||||
|         "description": "stock" | ||||
|     }, | ||||
|     "stockDetails": "Quantité actuelle de stock disponible", | ||||
|     "@stockDetails": {}, | ||||
|     "stockItem": "Article en stock", | ||||
|     "@stockItem": { | ||||
|         "description": "stock item title" | ||||
|     }, | ||||
|     "stockItems": "Articles en stock", | ||||
|     "@stockItems": {}, | ||||
|     "stockItemCreate": "Nouvel article en stock", | ||||
|     "@stockItemCreate": {}, | ||||
|     "stockItemCreateDetail": "Créer un nouvel article en stock dans cet emplacement", | ||||
|     "@stockItemCreateDetail": {}, | ||||
|     "stockItemDelete": "Supprimer l'article du stock", | ||||
|     "@stockItemDelete": {}, | ||||
|     "stockItemDeleteConfirm": "Êtes-vous certain de vouloir supprimer cet article ?", | ||||
|     "@stockItemDeleteConfirm": {}, | ||||
|     "stockItemDeleteFailure": "Impossible de supprmer cet article", | ||||
|     "@stockItemDeleteFailure": {}, | ||||
|     "stockItemDeleteSuccess": "Article supprimé", | ||||
|     "@stockItemDeleteSuccess": {}, | ||||
|     "stockItemHistory": "Historique du stock", | ||||
|     "@stockItemHistory": {}, | ||||
|     "stockItemHistoryDetail": "Afficher les informations de suivi de stock", | ||||
|     "@stockItemHistoryDetail": {}, | ||||
|     "stockItemTransferred": "Article en stock transféré", | ||||
|     "@stockItemTransferred": {}, | ||||
|     "stockItemUpdated": "Article en stock mis à jour", | ||||
|     "@stockItemUpdated": {}, | ||||
|     "stockItemsNotAvailable": "Aucun article en stock", | ||||
|     "@stockItemsNotAvailable": {}, | ||||
|     "stockItemNotes": "Notes de l'article en stock", | ||||
|     "@stockItemNotes": {}, | ||||
|     "stockItemUpdateSuccess": "Article en stock mis à jour", | ||||
|     "@stockItemUpdateSuccess": {}, | ||||
|     "stockItemUpdateFailure": "Echec de la mise à jour de l'article en stock", | ||||
|     "@stockItemUpdateFailure": {}, | ||||
|     "stockLocation": "Emplacement du stock", | ||||
|     "@stockLocation": { | ||||
|         "description": "stock location" | ||||
|     }, | ||||
|     "stockLocations": "Emplacements du stock", | ||||
|     "@stockLocations": {}, | ||||
|     "stockTopLevel": "Emplacement de stock de premier niveau", | ||||
|     "@stockTopLevel": {}, | ||||
|     "strictHttps": "Utiliser HTTPS strict", | ||||
|     "@strictHttps": {}, | ||||
|     "strictHttpsDetails": "Obliger une vérification stricte des certificats HTTP", | ||||
|     "@strictHttpsDetails": {}, | ||||
|     "subcategory": "Sous-catégorie", | ||||
|     "@subcategory": {}, | ||||
|     "subcategories": "Sous-catégories", | ||||
|     "@subcategories": {}, | ||||
|     "sublocation": "Sous-emplacement", | ||||
|     "@sublocation": {}, | ||||
|     "sublocations": "Sous-emplacements", | ||||
|     "@sublocations": {}, | ||||
|     "sublocationNone": "Aucun sous-emplacement", | ||||
|     "@sublocationNone": {}, | ||||
|     "sublocationNoneDetail": "Aucun sous-emplacement disponible", | ||||
|     "@sublocationNoneDetail": {}, | ||||
|     "submitFeedback": "Soumettre le commentaire", | ||||
|     "@submitFeedback": {}, | ||||
|     "suppliedParts": "Composants fournis", | ||||
|     "@suppliedParts": {}, | ||||
|     "supplier": "Fournisseur", | ||||
|     "@supplier": {}, | ||||
|     "suppliers": "Fournisseurs", | ||||
|     "@suppliers": {}, | ||||
|     "supplierReference": "Référence du fournisseur", | ||||
|     "@supplierReference": {}, | ||||
|     "takePicture": "Prendre une photo", | ||||
|     "@takePicture": {}, | ||||
|     "targetDate": "Date Cible", | ||||
|     "@targetDate": {}, | ||||
|     "testName": "Nom de test", | ||||
|     "@testName": {}, | ||||
|     "testPassedOrFailed": "Test réussi ou échoué", | ||||
|     "@testPassedOrFailed": {}, | ||||
|     "testsRequired": "Tests requis", | ||||
|     "@testsRequired": {}, | ||||
|     "testResults": "Résultats du test", | ||||
|     "@testResults": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "testResultAdd": "Ajouter un résultat de test", | ||||
|     "@testResultAdd": {}, | ||||
|     "testResultNone": "Aucun résultat de test", | ||||
|     "@testResultNone": {}, | ||||
|     "testResultNoneDetail": "Aucun résultat de test disponible", | ||||
|     "@testResultNoneDetail": {}, | ||||
|     "testResultUploadFail": "Erreur lors de l'envoi du résultat du test", | ||||
|     "@testResultUploadFail": {}, | ||||
|     "testResultUploadPass": "Résultats du test chargés", | ||||
|     "@testResultUploadPass": {}, | ||||
|     "timeout": "Délai dépassé", | ||||
|     "@timeout": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "tokenError": "Erreur du jeton", | ||||
|     "@tokenError": {}, | ||||
|     "tokenMissing": "Jeton manquant", | ||||
|     "@tokenMissing": {}, | ||||
|     "tokenMissingFromResponse": "Jeton d'accès manquant dans la réponse", | ||||
|     "@tokenMissingFromResponse": {}, | ||||
|     "transfer": "Transfert", | ||||
|     "@transfer": { | ||||
|         "description": "transfer" | ||||
|     }, | ||||
|     "transferStock": "Transférer le stock", | ||||
|     "@transferStock": { | ||||
|         "description": "transfer stock" | ||||
|     }, | ||||
|     "translate": "Traduire", | ||||
|     "@translate": {}, | ||||
|     "translateHelp": "Aidez à traduire l'application InvenTree", | ||||
|     "@translateHelp": {}, | ||||
|     "units": "Unités", | ||||
|     "@units": {}, | ||||
|     "unknownResponse": "Réponse inconnue", | ||||
|     "@unknownResponse": {}, | ||||
|     "upload": "Importer le fichier", | ||||
|     "@upload": {}, | ||||
|     "uploadFailed": "Échec du chargement du fichier", | ||||
|     "@uploadFailed": {}, | ||||
|     "uploadSuccess": "Fichier transféré", | ||||
|     "@uploadSuccess": {}, | ||||
|     "usedIn": "Utilisé dans", | ||||
|     "@usedIn": {}, | ||||
|     "usedInDetails": "Assemblages qui requièrent ce composant", | ||||
|     "@usedInDetails": {}, | ||||
|     "username": "Nom d'utilisateur", | ||||
|     "@username": {}, | ||||
|     "usernameEmpty": "Le nom d'utilisateur peut pas être vide", | ||||
|     "@usernameEmpty": {}, | ||||
|     "value": "Valeur", | ||||
|     "@value": { | ||||
|         "description": "value" | ||||
|     }, | ||||
|     "valueCannotBeEmpty": "La valeur ne peut pas être vide", | ||||
|     "@valueCannotBeEmpty": {}, | ||||
|     "valueRequired": "La valeur est requise", | ||||
|     "@valueRequired": {}, | ||||
|     "version": "Version", | ||||
|     "@version": {}, | ||||
|     "viewSupplierPart": "Voir la pièce du fournisseur", | ||||
|     "@viewSupplierPart": {}, | ||||
|     "website": "Site web", | ||||
|     "@website": {} | ||||
| } | ||||
							
								
								
									
										5
									
								
								lib/l10n/he/app_he.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								lib/l10n/he/app_he.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {} | ||||
| } | ||||
							
								
								
									
										745
									
								
								lib/l10n/hu/app_hu.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										745
									
								
								lib/l10n/hu/app_hu.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,745 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "ok": "OK", | ||||
|     "@ok": { | ||||
|         "description": "OK" | ||||
|     }, | ||||
|     "about": "Névjegy", | ||||
|     "@about": {}, | ||||
|     "accountDetails": "Felhasználó adatok", | ||||
|     "@accountDetails": {}, | ||||
|     "actions": "Műveletek", | ||||
|     "@actions": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "actionsNone": "Nincsenek műveletek", | ||||
|     "@actionsNone": {}, | ||||
|     "add": "Hozzáadás", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "addStock": "Készlet növelése", | ||||
|     "@addStock": { | ||||
|         "description": "add stock" | ||||
|     }, | ||||
|     "address": "Cím", | ||||
|     "@address": {}, | ||||
|     "appAbout": "InvenTree névjegy", | ||||
|     "@appAbout": {}, | ||||
|     "appCredits": "További közreműködők", | ||||
|     "@appCredits": {}, | ||||
|     "appDetails": "App részletek", | ||||
|     "@appDetails": {}, | ||||
|     "appReleaseNotes": "Kiadási közlemények", | ||||
|     "@appReleaseNotes": {}, | ||||
|     "appSettings": "Alkalmazásbeállítások", | ||||
|     "@appSettings": {}, | ||||
|     "appSettingsDetails": "Inventree alkalmazás beállításai", | ||||
|     "@appSettingsDetails": {}, | ||||
|     "attachments": "Mellékletek", | ||||
|     "@attachments": {}, | ||||
|     "attachImage": "Kép csatolása", | ||||
|     "@attachImage": { | ||||
|         "description": "Attach an image" | ||||
|     }, | ||||
|     "attachmentNone": "Nem találhatók mellékletek", | ||||
|     "@attachmentNone": {}, | ||||
|     "attachmentNonePartDetail": "Nincsenek mellékletek ehhez az alkarészhez", | ||||
|     "@attachmentNonePartDetail": {}, | ||||
|     "attachmentSelect": "Melléklet kiválasztása", | ||||
|     "@attachmentSelect": {}, | ||||
|     "attention": "Figyelem", | ||||
|     "@attention": {}, | ||||
|     "availableStock": "Elérhető készlet", | ||||
|     "@availableStock": {}, | ||||
|     "barcodeAssign": "Vonalkód hozzárendelése", | ||||
|     "@barcodeAssign": {}, | ||||
|     "barcodeAssigned": "Vonalkód hozzárendelve", | ||||
|     "@barcodeAssigned": {}, | ||||
|     "barcodeError": "Vonalkód olvasási hiba", | ||||
|     "@barcodeError": {}, | ||||
|     "barcodeInUse": "Vonalkód már hozzárendelve", | ||||
|     "@barcodeInUse": {}, | ||||
|     "barcodeMissingHash": "Vonalkód hash hiányzik a válaszból", | ||||
|     "@barcodeMissingHash": {}, | ||||
|     "barcodeNoMatch": "Nincs egyezés vonalkódra", | ||||
|     "@barcodeNoMatch": {}, | ||||
|     "barcodeNotAssigned": "Vonalkód nincs hozzárendelve", | ||||
|     "@barcodeNotAssigned": {}, | ||||
|     "barcodeScanAssign": "Kódolvasás a hozzárendeléshez", | ||||
|     "@barcodeScanAssign": {}, | ||||
|     "barcodeScanGeneral": "Olvass be egy InvenTree vonalkódot", | ||||
|     "@barcodeScanGeneral": {}, | ||||
|     "barcodeScanInItems": "Készlet bevételezése az adott helyre", | ||||
|     "@barcodeScanInItems": {}, | ||||
|     "barcodeScanLocation": "Hely beolvasása", | ||||
|     "@barcodeScanLocation": {}, | ||||
|     "barcodeScanIntoLocationSuccess": "Beolvasva az adott helyre", | ||||
|     "@barcodeScanIntoLocationSuccess": {}, | ||||
|     "barcodeScanIntoLocationFailure": "A tétel nincs beolvasva ide", | ||||
|     "@barcodeScanIntoLocationFailure": {}, | ||||
|     "barcodeScanItem": "Készlet tétel beolvasása", | ||||
|     "@barcodeScanItem": {}, | ||||
|     "barcodeTones": "Vonalkód hangszín", | ||||
|     "@barcodeTones": {}, | ||||
|     "barcodeUnassign": "Vonalkód leválasztása", | ||||
|     "@barcodeUnassign": {}, | ||||
|     "barcodeUnknown": "Vonalkód nem ismerhető fel", | ||||
|     "@barcodeUnknown": {}, | ||||
|     "batchCode": "Batch kód", | ||||
|     "@batchCode": {}, | ||||
|     "billOfMaterials": "Alkatrészjegyzék", | ||||
|     "@billOfMaterials": {}, | ||||
|     "bom": "Alkatrészjegyzék", | ||||
|     "@bom": {}, | ||||
|     "build": "Gyártás", | ||||
|     "@build": {}, | ||||
|     "building": "Gyártásban", | ||||
|     "@building": {}, | ||||
|     "cancel": "Mégsem", | ||||
|     "@cancel": { | ||||
|         "description": "Cancel" | ||||
|     }, | ||||
|     "category": "Kategória", | ||||
|     "@category": {}, | ||||
|     "categoryCreate": "Új kategória", | ||||
|     "@categoryCreate": {}, | ||||
|     "categoryCreateDetail": "Alkatrész kategória létrehozása", | ||||
|     "@categoryCreateDetail": {}, | ||||
|     "categoryUpdated": "Alkatrész kategória módosítva", | ||||
|     "@categoryUpdated": {}, | ||||
|     "company": "Cég", | ||||
|     "@company": {}, | ||||
|     "companyEdit": "Cég szerkesztése", | ||||
|     "@companyEdit": {}, | ||||
|     "companyNoResults": "Nincs a lekérdezésnek megfelelő cég", | ||||
|     "@companyNoResults": {}, | ||||
|     "companyUpdated": "Cég adatai frissítve", | ||||
|     "@companyUpdated": {}, | ||||
|     "companies": "Cégek", | ||||
|     "@companies": {}, | ||||
|     "configureServer": "Kiszolgáló beállítások konfigurálása", | ||||
|     "@configureServer": {}, | ||||
|     "connectionRefused": "A kapcsolat visszautasítva", | ||||
|     "@connectionRefused": {}, | ||||
|     "count": "Mennyiség", | ||||
|     "@count": { | ||||
|         "description": "Count" | ||||
|     }, | ||||
|     "countStock": "Leltározás", | ||||
|     "@countStock": { | ||||
|         "description": "Count Stock" | ||||
|     }, | ||||
|     "credits": "Közreműködők", | ||||
|     "@credits": {}, | ||||
|     "customers": "Vevők", | ||||
|     "@customers": {}, | ||||
|     "damaged": "Sérült", | ||||
|     "@damaged": {}, | ||||
|     "delete": "Törlés", | ||||
|     "@delete": {}, | ||||
|     "deletePart": "Alkatrész törlése", | ||||
|     "@deletePart": {}, | ||||
|     "deletePartDetail": "Alkatrész eltávolítása az adatbázisból", | ||||
|     "@deletePartDetail": {}, | ||||
|     "description": "Leírás", | ||||
|     "@description": {}, | ||||
|     "destroyed": "Megsemmisült", | ||||
|     "@destroyed": {}, | ||||
|     "details": "Részletek", | ||||
|     "@details": { | ||||
|         "description": "details" | ||||
|     }, | ||||
|     "documentation": "Dokumentáció", | ||||
|     "@documentation": {}, | ||||
|     "downloading": "Fájl letöltése", | ||||
|     "@downloading": {}, | ||||
|     "downloadError": "Letöltési hiba", | ||||
|     "@downloadError": {}, | ||||
|     "edit": "Szerkesztés", | ||||
|     "@edit": { | ||||
|         "description": "edit" | ||||
|     }, | ||||
|     "editCategory": "Kategória szerkesztése", | ||||
|     "@editCategory": {}, | ||||
|     "editLocation": "Hely szerkesztése", | ||||
|     "@editLocation": {}, | ||||
|     "editNotes": "Megjegyzések szerkesztése", | ||||
|     "@editNotes": {}, | ||||
|     "editPart": "Alkatrész szerkesztése", | ||||
|     "@editPart": { | ||||
|         "description": "edit part" | ||||
|     }, | ||||
|     "editItem": "Készlet tétel szerkesztése", | ||||
|     "@editItem": {}, | ||||
|     "enterPassword": "Jelszó megadása", | ||||
|     "@enterPassword": {}, | ||||
|     "enterUsername": "Felhasználó megadása", | ||||
|     "@enterUsername": {}, | ||||
|     "error": "Hiba", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorCreate": "Hiba az adatbázis bejegyzés létrehozása közben", | ||||
|     "@errorCreate": {}, | ||||
|     "errorDelete": "Hiba az adatbázis bejegyzés törlése közben", | ||||
|     "@errorDelete": {}, | ||||
|     "errorDetails": "Hiba részletei", | ||||
|     "@errorDetails": {}, | ||||
|     "errorFetch": "Hiba a kiszolgálótól való adatlekérés közben", | ||||
|     "@errorFetch": {}, | ||||
|     "errorReporting": "Hibajelentés", | ||||
|     "@errorReporting": {}, | ||||
|     "errorReportUpload": "Hibajelentések feltöltése", | ||||
|     "@errorReportUpload": {}, | ||||
|     "errorReportUploadDetails": "Személytelen hibajelentések és összeomlási naplók feltöltése", | ||||
|     "@errorReportUploadDetails": {}, | ||||
|     "feedback": "Visszajelzés", | ||||
|     "@feedback": {}, | ||||
|     "feedbackError": "Visszajelzés küldése sikertelen", | ||||
|     "@feedbackError": {}, | ||||
|     "feedbackSuccess": "Visszajelzés elküldve", | ||||
|     "@feedbackSuccess": {}, | ||||
|     "formatException": "Formátum hiba", | ||||
|     "@formatException": {}, | ||||
|     "formatExceptionJson": "JSON adatformátum hiba", | ||||
|     "@formatExceptionJson": {}, | ||||
|     "formError": "Form hiba", | ||||
|     "@formError": {}, | ||||
|     "history": "Előzmények", | ||||
|     "@history": { | ||||
|         "description": "history" | ||||
|     }, | ||||
|     "homeScreen": "Főképernyő", | ||||
|     "@homeScreen": {}, | ||||
|     "homeScreenSettings": "Főképernyő beállítások konfigurálása", | ||||
|     "@homeScreenSettings": {}, | ||||
|     "homeShowPo": "Beszerzési rendelések megjelenítése", | ||||
|     "@homeShowPo": {}, | ||||
|     "homeShowSubscribed": "Értesítésre beállított alkatrészek", | ||||
|     "@homeShowSubscribed": {}, | ||||
|     "homeShowSubscribedDescription": "Alkatrész értesítések megjelenítése a főoldalon", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "homeShowPoDescription": "Beszerzési rendelések gomb megjelenítése a főoldalon", | ||||
|     "@homeShowPoDescription": {}, | ||||
|     "homeShowSuppliers": "Beszállítók megjelenítése", | ||||
|     "@homeShowSuppliers": {}, | ||||
|     "homeShowSuppliersDescription": "Beszállítók gomb megjelenítése a főoldalon", | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "homeShowManufacturers": "Gyártók megjelenítése", | ||||
|     "@homeShowManufacturers": {}, | ||||
|     "homeShowManufacturersDescription": "Gyártók gomb megjelenítése a főoldalon", | ||||
|     "@homeShowManufacturersDescription": {}, | ||||
|     "homeShowCustomers": "Vevők megjelenítése", | ||||
|     "@homeShowCustomers": {}, | ||||
|     "homeShowCustomersDescription": "Vevők gomb megjelenítése a főoldalon", | ||||
|     "@homeShowCustomersDescription": {}, | ||||
|     "imageUploadFailure": "Kép feltöltése sikertelen", | ||||
|     "@imageUploadFailure": {}, | ||||
|     "imageUploadSuccess": "Kép feltöltve", | ||||
|     "@imageUploadSuccess": {}, | ||||
|     "inactive": "Inaktív", | ||||
|     "@inactive": {}, | ||||
|     "inactiveDetail": "Ez az alkatrész inaktív lett", | ||||
|     "@inactiveDetail": {}, | ||||
|     "includeSubcategories": "Alkategóriákkal együtt", | ||||
|     "@includeSubcategories": {}, | ||||
|     "includeSubcategoriesDetail": "Al-kategóriájú alkatrészek megjelenítése a lista nézetben", | ||||
|     "@includeSubcategoriesDetail": {}, | ||||
|     "includeSublocations": "Alhelyekkel együtt", | ||||
|     "@includeSublocations": {}, | ||||
|     "includeSublocationsDetail": "Al-helyen lévő alkatrészek megjelenítése a lista nézetben", | ||||
|     "@includeSublocationsDetail": {}, | ||||
|     "incompleteDetails": "Nem teljes profil adatok", | ||||
|     "@incompleteDetails": {}, | ||||
|     "internalPartNumber": "Belső alkatrész azonosító", | ||||
|     "@internalPartNumber": {}, | ||||
|     "info": "Infó", | ||||
|     "@info": {}, | ||||
|     "inProduction": "Gyártásban", | ||||
|     "@inProduction": {}, | ||||
|     "inProductionDetail": "Ez a készlet tétel gyártásban van", | ||||
|     "@inProductionDetail": {}, | ||||
|     "invalidHost": "Érvénytelen hostnév", | ||||
|     "@invalidHost": {}, | ||||
|     "invalidHostDetails": "A megadott hostnév nem érvényes", | ||||
|     "@invalidHostDetails": {}, | ||||
|     "invalidPart": "Érvénytelen alkatrész", | ||||
|     "@invalidPart": {}, | ||||
|     "invalidPartCategory": "Érvénytelen kategória", | ||||
|     "@invalidPartCategory": {}, | ||||
|     "invalidStockLocation": "Érvénytelen készlet hely", | ||||
|     "@invalidStockLocation": {}, | ||||
|     "invalidStockItem": "Érvénytelen készlet tétel", | ||||
|     "@invalidStockItem": {}, | ||||
|     "invalidUsernamePassword": "Érvénytelen felhasználónév/jelszó kombináció", | ||||
|     "@invalidUsernamePassword": {}, | ||||
|     "issueDate": "Kiállítás dátuma", | ||||
|     "@issueDate": {}, | ||||
|     "itemInLocation": "A tétel már a megadott helyen van", | ||||
|     "@itemInLocation": {}, | ||||
|     "keywords": "Kulcsszavak", | ||||
|     "@keywords": {}, | ||||
|     "lastStocktake": "Utolsó leltár", | ||||
|     "@lastStocktake": {}, | ||||
|     "lastUpdated": "Utoljára módosítva", | ||||
|     "@lastUpdated": {}, | ||||
|     "lineItem": "Sortétel", | ||||
|     "@lineItem": {}, | ||||
|     "lineItems": "Sortételek", | ||||
|     "@lineItems": {}, | ||||
|     "locationCreate": "Új hely", | ||||
|     "@locationCreate": {}, | ||||
|     "locationCreateDetail": "Új készlet hely létrehozása", | ||||
|     "@locationCreateDetail": {}, | ||||
|     "locationNotSet": "Nincs megadva hely", | ||||
|     "@locationNotSet": {}, | ||||
|     "locationUpdated": "Készlet hely adatai frissítve", | ||||
|     "@locationUpdated": {}, | ||||
|     "link": "Link", | ||||
|     "@link": {}, | ||||
|     "lost": "Elveszett", | ||||
|     "@lost": {}, | ||||
|     "manufacturers": "Gyártók", | ||||
|     "@manufacturers": {}, | ||||
|     "missingData": "Hiányzó adatok", | ||||
|     "@missingData": {}, | ||||
|     "name": "Név", | ||||
|     "@name": {}, | ||||
|     "notConnected": "Nincs kapcsolódva", | ||||
|     "@notConnected": {}, | ||||
|     "notes": "Megjegyzések", | ||||
|     "@notes": { | ||||
|         "description": "Notes" | ||||
|     }, | ||||
|     "noResponse": "Nincs válasz a kiszolgálótól", | ||||
|     "@noResponse": {}, | ||||
|     "noResults": "Nincs találat", | ||||
|     "@noResults": {}, | ||||
|     "noSubcategories": "Nincsenek alkategóriák", | ||||
|     "@noSubcategories": {}, | ||||
|     "noSubcategoriesAvailable": "Nincsenek alkategóriák", | ||||
|     "@noSubcategoriesAvailable": {}, | ||||
|     "numberInvalid": "Érvénytelen szám", | ||||
|     "@numberInvalid": {}, | ||||
|     "onOrder": "Beszállítás alatt", | ||||
|     "@onOrder": {}, | ||||
|     "onOrderDetails": "Alaktrészek beszállítás alatt", | ||||
|     "@onOrderDetails": {}, | ||||
|     "packaging": "Csomagolás", | ||||
|     "@packaging": {}, | ||||
|     "packageName": "Csomag neve", | ||||
|     "@packageName": {}, | ||||
|     "parent": "Szülő", | ||||
|     "@parent": {}, | ||||
|     "parentCategory": "Szülő kategória", | ||||
|     "@parentCategory": {}, | ||||
|     "parentLocation": "Szülő hely", | ||||
|     "@parentLocation": {}, | ||||
|     "part": "Alkatrész", | ||||
|     "@part": { | ||||
|         "description": "Part (single)" | ||||
|     }, | ||||
|     "partCreate": "Új alkatrész", | ||||
|     "@partCreate": {}, | ||||
|     "partCreateDetail": "Alkatrész létrehozása ebben a kategóriában", | ||||
|     "@partCreateDetail": {}, | ||||
|     "partEdited": "Alkatrész frissítve", | ||||
|     "@partEdited": {}, | ||||
|     "parts": "Alkatrészek", | ||||
|     "@parts": { | ||||
|         "description": "Part (multiple)" | ||||
|     }, | ||||
|     "partsNone": "Nincsenek alkatrészek", | ||||
|     "@partsNone": {}, | ||||
|     "partNoResults": "Nincs a lekérdezéssel egyező alkatrész", | ||||
|     "@partNoResults": {}, | ||||
|     "partsStarred": "Értesítésre beállított alkatrészek", | ||||
|     "@partsStarred": {}, | ||||
|     "partsStarredNone": "Nincsenek csillagozott alkatrészek", | ||||
|     "@partsStarredNone": {}, | ||||
|     "partSuppliers": "Alkatrész beszállítók", | ||||
|     "@partSuppliers": {}, | ||||
|     "partCategory": "Alkatrész kategória", | ||||
|     "@partCategory": {}, | ||||
|     "partCategoryTopLevel": "Legfelső szintű alkatrész kategória", | ||||
|     "@partCategoryTopLevel": {}, | ||||
|     "partCategories": "Alkatrész kategóriák", | ||||
|     "@partCategories": {}, | ||||
|     "partDetails": "Alkatrész részletei", | ||||
|     "@partDetails": {}, | ||||
|     "partNotes": "Alkatrész megjegyzések", | ||||
|     "@partNotes": {}, | ||||
|     "partStock": "Alkatrész készlet", | ||||
|     "@partStock": { | ||||
|         "description": "part stock" | ||||
|     }, | ||||
|     "password": "Jelszó", | ||||
|     "@password": {}, | ||||
|     "passwordEmpty": "Jelszó nem lehet üres", | ||||
|     "@passwordEmpty": {}, | ||||
|     "permissionAccountDenied": "Nincs meg a szükséges jogosultságod, hogy végrehajtsd ezt a műveletet", | ||||
|     "@permissionAccountDenied": {}, | ||||
|     "permissionRequired": "Engedély szükséges", | ||||
|     "@permissionRequired": {}, | ||||
|     "printLabel": "Címke nyomtatása", | ||||
|     "@printLabel": {}, | ||||
|     "printLabelFailure": "Címkenyomtatás sikertelen", | ||||
|     "@printLabelFailure": {}, | ||||
|     "printLabelSuccess": "Címke nyomtatónak elküldve", | ||||
|     "@printLabelSuccess": {}, | ||||
|     "profile": "Profil", | ||||
|     "@profile": {}, | ||||
|     "profileAdd": "Kiszolgáló profil hozzáadása", | ||||
|     "@profileAdd": {}, | ||||
|     "profileConnect": "Kapcsolódás a kiszolgálóhoz", | ||||
|     "@profileConnect": {}, | ||||
|     "profileEdit": "Kiszolgáló profil szerkesztése", | ||||
|     "@profileEdit": {}, | ||||
|     "profileDelete": "Kiszolgáló profil törlése", | ||||
|     "@profileDelete": {}, | ||||
|     "profileName": "Profil neve", | ||||
|     "@profileName": {}, | ||||
|     "profileNone": "Nincsenek profilok", | ||||
|     "@profileNone": {}, | ||||
|     "profileNotSelected": "Nincs kiválasztva profil", | ||||
|     "@profileNotSelected": {}, | ||||
|     "profileSelect": "Válassz InvenTree kiszolgálót", | ||||
|     "@profileSelect": {}, | ||||
|     "profileTapToCreate": "Koppints a profil létrehozásához vagy kiválasztásához", | ||||
|     "@profileTapToCreate": {}, | ||||
|     "purchaseOrder": "Beszerzési rendelés", | ||||
|     "@purchaseOrder": {}, | ||||
|     "purchaseOrderEdit": "Beszerzési rendelés szerkesztése", | ||||
|     "@purchaseOrderEdit": {}, | ||||
|     "purchaseOrders": "Beszerzési rendelések", | ||||
|     "@purchaseOrders": {}, | ||||
|     "purchaseOrderUpdated": "Beszerzési rendelés frissítve", | ||||
|     "@purchaseOrderUpdated": {}, | ||||
|     "purchasePrice": "Beszerzési ár", | ||||
|     "@purchasePrice": {}, | ||||
|     "quantity": "Mennyiség", | ||||
|     "@quantity": { | ||||
|         "description": "Quantity" | ||||
|     }, | ||||
|     "quantityEmpty": "Mennyiség üres", | ||||
|     "@quantityEmpty": {}, | ||||
|     "quantityInvalid": "Mennyiség érvénytelen", | ||||
|     "@quantityInvalid": {}, | ||||
|     "quantityPositive": "Mennyiség pozitív kell legyen", | ||||
|     "@quantityPositive": {}, | ||||
|     "queryNoResults": "Nincs találat", | ||||
|     "@queryNoResults": {}, | ||||
|     "received": "Beérkezett", | ||||
|     "@received": {}, | ||||
|     "receiveItem": "Bevételezés", | ||||
|     "@receiveItem": {}, | ||||
|     "receivedItem": "Beérkezett készlet", | ||||
|     "@receivedItem": {}, | ||||
|     "refresh": "Frissítés", | ||||
|     "@refresh": {}, | ||||
|     "refreshing": "Frissítés...", | ||||
|     "@refreshing": {}, | ||||
|     "rejected": "Elutasított", | ||||
|     "@rejected": {}, | ||||
|     "releaseNotes": "Kiadási közlemények", | ||||
|     "@releaseNotes": {}, | ||||
|     "remove": "Törlés", | ||||
|     "@remove": { | ||||
|         "description": "remove" | ||||
|     }, | ||||
|     "removeStock": "Készlet csökkentése", | ||||
|     "@removeStock": { | ||||
|         "description": "remove stock" | ||||
|     }, | ||||
|     "reportBug": "Hibabejelentés", | ||||
|     "@reportBug": {}, | ||||
|     "reportBugDescription": "Hibabejelentés küldése (GitHub fiók szükséges)", | ||||
|     "@reportBugDescription": {}, | ||||
|     "results": "Eredmények", | ||||
|     "@results": {}, | ||||
|     "request": "Kérés", | ||||
|     "@request": {}, | ||||
|     "requestingData": "Adatok lekérése", | ||||
|     "@requestingData": {}, | ||||
|     "required": "Kötelező", | ||||
|     "@required": { | ||||
|         "description": "This field is required" | ||||
|     }, | ||||
|     "response400": "Rossz kérés", | ||||
|     "@response400": {}, | ||||
|     "response401": "Jogosulatlan", | ||||
|     "@response401": {}, | ||||
|     "response403": "Hozzáférés megtagadva", | ||||
|     "@response403": {}, | ||||
|     "response404": "Erőforrás nem található", | ||||
|     "@response404": {}, | ||||
|     "response405": "Metódus nincs engedélyezve", | ||||
|     "@response405": {}, | ||||
|     "response429": "Túl sok kérés", | ||||
|     "@response429": {}, | ||||
|     "response500": "Belső kiszolgáló hiba", | ||||
|     "@response500": {}, | ||||
|     "response501": "Nincs implementálva", | ||||
|     "@response501": {}, | ||||
|     "response502": "Rossz átjáró", | ||||
|     "@response502": {}, | ||||
|     "response503": "A szolgáltatás nem érhető el", | ||||
|     "@response503": {}, | ||||
|     "response504": "Átjáró időtúllépés", | ||||
|     "@response504": {}, | ||||
|     "response505": "HTTP verzió nem támogatott", | ||||
|     "@response505": {}, | ||||
|     "responseData": "Válasz adatok", | ||||
|     "@responseData": {}, | ||||
|     "responseInvalid": "Érvénytelen válasz kód", | ||||
|     "@responseInvalid": {}, | ||||
|     "responseUnknown": "Ismeretlen válasz", | ||||
|     "@responseUnknown": {}, | ||||
|     "result": "Eredmény", | ||||
|     "@result": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "returned": "Visszaküldve", | ||||
|     "@returned": {}, | ||||
|     "salesOrders": "Vevői rendelések", | ||||
|     "@salesOrders": {}, | ||||
|     "save": "Mentés", | ||||
|     "@save": { | ||||
|         "description": "Save" | ||||
|     }, | ||||
|     "scanBarcode": "Vonalkód beolvasása", | ||||
|     "@scanBarcode": {}, | ||||
|     "scanIntoLocation": "Beolvasás helyre", | ||||
|     "@scanIntoLocation": {}, | ||||
|     "search": "Keresés", | ||||
|     "@search": { | ||||
|         "description": "search" | ||||
|     }, | ||||
|     "searchLocation": "Hely keresése", | ||||
|     "@searchLocation": {}, | ||||
|     "searchParts": "Alkatrészek keresése", | ||||
|     "@searchParts": {}, | ||||
|     "searchStock": "Készlet keresése", | ||||
|     "@searchStock": {}, | ||||
|     "select": "Kiválaszt", | ||||
|     "@select": {}, | ||||
|     "selectFile": "Fájl kiválasztása", | ||||
|     "@selectFile": {}, | ||||
|     "selectImage": "Válassz képet", | ||||
|     "@selectImage": {}, | ||||
|     "selectLocation": "Válassz helyet", | ||||
|     "@selectLocation": {}, | ||||
|     "send": "Küldés", | ||||
|     "@send": {}, | ||||
|     "serialNumber": "Sorozatszám", | ||||
|     "@serialNumber": {}, | ||||
|     "server": "Kiszolgáló", | ||||
|     "@server": {}, | ||||
|     "serverAddress": "Kiszolgáló címe", | ||||
|     "@serverAddress": {}, | ||||
|     "serverApiRequired": "Szükséges API verzió", | ||||
|     "@serverApiRequired": {}, | ||||
|     "serverApiVersion": "Szerver API verzió", | ||||
|     "@serverApiVersion": {}, | ||||
|     "serverAuthenticationError": "Hitelesítési hiba", | ||||
|     "@serverAuthenticationError": {}, | ||||
|     "serverCertificateError": "Tanúsítvány hiba", | ||||
|     "@serverCertificateError": {}, | ||||
|     "serverCertificateInvalid": "Érvénytelen kiszolgáló HTTPS tanúsítvány", | ||||
|     "@serverCertificateInvalid": {}, | ||||
|     "serverConnected": "Kapcsolódva a kiszolgálóhoz", | ||||
|     "@serverConnected": {}, | ||||
|     "serverConnecting": "Kapcsolódás a kiszolgálóhoz", | ||||
|     "@serverConnecting": {}, | ||||
|     "serverCouldNotConnect": "Nem sikerült kapcsolódni a kiszolgálóhoz", | ||||
|     "@serverCouldNotConnect": {}, | ||||
|     "serverEmpty": "A kiszolgálónév nem lehet üres", | ||||
|     "@serverEmpty": {}, | ||||
|     "serverError": "Kiszolgálóhiba", | ||||
|     "@serverError": {}, | ||||
|     "serverDetails": "Kiszolgáló részletei", | ||||
|     "@serverDetails": {}, | ||||
|     "serverMissingData": "A kiszolgáló válaszából szükséges mezők hiányoznak", | ||||
|     "@serverMissingData": {}, | ||||
|     "serverOld": "Régi kiszolgáló verzió", | ||||
|     "@serverOld": {}, | ||||
|     "serverSettings": "Kiszolgáló beállítások", | ||||
|     "@serverSettings": {}, | ||||
|     "serverStart": "A kiszolgálónak http(s) kezdetűnek kell lennie", | ||||
|     "@serverStart": {}, | ||||
|     "settings": "Beállítások", | ||||
|     "@settings": {}, | ||||
|     "serverInstance": "Kiszolgáló példány", | ||||
|     "@serverInstance": {}, | ||||
|     "serverNotConnected": "Kiszolgáló nem csatlakozik", | ||||
|     "@serverNotConnected": {}, | ||||
|     "sounds": "Hangok", | ||||
|     "@sounds": {}, | ||||
|     "soundOnBarcodeAction": "Hang lejátszása vonalkód műveletkor", | ||||
|     "@soundOnBarcodeAction": {}, | ||||
|     "soundOnServerError": "Hang lejátszása kiszolgálóhiba esetén", | ||||
|     "@soundOnServerError": {}, | ||||
|     "status": "Állapot", | ||||
|     "@status": {}, | ||||
|     "statusCode": "Állapot kód", | ||||
|     "@statusCode": {}, | ||||
|     "stock": "Készlet", | ||||
|     "@stock": { | ||||
|         "description": "stock" | ||||
|     }, | ||||
|     "stockDetails": "Jelenleg elérhető készlet mennyiség", | ||||
|     "@stockDetails": {}, | ||||
|     "stockItem": "Készlet tétel", | ||||
|     "@stockItem": { | ||||
|         "description": "stock item title" | ||||
|     }, | ||||
|     "stockItems": "Készlet tételek", | ||||
|     "@stockItems": {}, | ||||
|     "stockItemCreate": "Új készlet tétel", | ||||
|     "@stockItemCreate": {}, | ||||
|     "stockItemCreateDetail": "Új készlet tétel létrehozása ezen a helyen", | ||||
|     "@stockItemCreateDetail": {}, | ||||
|     "stockItemDelete": "Készlet tétel törlése", | ||||
|     "@stockItemDelete": {}, | ||||
|     "stockItemDeleteConfirm": "Biztosan törölni szeretnéd ezt a készlet tételt?", | ||||
|     "@stockItemDeleteConfirm": {}, | ||||
|     "stockItemDeleteFailure": "Készlet tétel nem törölhető", | ||||
|     "@stockItemDeleteFailure": {}, | ||||
|     "stockItemDeleteSuccess": "Készlet tétel törölve", | ||||
|     "@stockItemDeleteSuccess": {}, | ||||
|     "stockItemHistory": "Készlettörténet", | ||||
|     "@stockItemHistory": {}, | ||||
|     "stockItemHistoryDetail": "Készlettörténet megjelenítése", | ||||
|     "@stockItemHistoryDetail": {}, | ||||
|     "stockItemTransferred": "Készlet áthelyezve", | ||||
|     "@stockItemTransferred": {}, | ||||
|     "stockItemUpdated": "Készlet tétel feltöltve", | ||||
|     "@stockItemUpdated": {}, | ||||
|     "stockItemsNotAvailable": "Nincs elérhető készlet", | ||||
|     "@stockItemsNotAvailable": {}, | ||||
|     "stockItemNotes": "Készlet tétel megjegyzések", | ||||
|     "@stockItemNotes": {}, | ||||
|     "stockItemUpdateSuccess": "Készlet tétel feltöltve", | ||||
|     "@stockItemUpdateSuccess": {}, | ||||
|     "stockItemUpdateFailure": "Készlet tétel módosítása sikertelen", | ||||
|     "@stockItemUpdateFailure": {}, | ||||
|     "stockLocation": "Készlet hely", | ||||
|     "@stockLocation": { | ||||
|         "description": "stock location" | ||||
|     }, | ||||
|     "stockLocations": "Készlethelyek", | ||||
|     "@stockLocations": {}, | ||||
|     "stockTopLevel": "Legfelső szintű készlet hely", | ||||
|     "@stockTopLevel": {}, | ||||
|     "strictHttps": "Kizárólag HTTPS használata", | ||||
|     "@strictHttps": {}, | ||||
|     "strictHttpsDetails": "HTTPS tanúsítványok szigorú ellenőrzése", | ||||
|     "@strictHttpsDetails": {}, | ||||
|     "subcategory": "Alkategória", | ||||
|     "@subcategory": {}, | ||||
|     "subcategories": "Alkategóriák", | ||||
|     "@subcategories": {}, | ||||
|     "sublocation": "Alhely", | ||||
|     "@sublocation": {}, | ||||
|     "sublocations": "Alhelyek", | ||||
|     "@sublocations": {}, | ||||
|     "sublocationNone": "Nincsenek alhelyek", | ||||
|     "@sublocationNone": {}, | ||||
|     "sublocationNoneDetail": "Nincsenek elérhető alhelyek", | ||||
|     "@sublocationNoneDetail": {}, | ||||
|     "submitFeedback": "Visszajelzés Küldése", | ||||
|     "@submitFeedback": {}, | ||||
|     "suppliedParts": "Szállított alkatrészek", | ||||
|     "@suppliedParts": {}, | ||||
|     "supplier": "Beszállító", | ||||
|     "@supplier": {}, | ||||
|     "suppliers": "Beszállítók", | ||||
|     "@suppliers": {}, | ||||
|     "supplierReference": "Beszállítói azonosító", | ||||
|     "@supplierReference": {}, | ||||
|     "takePicture": "Fotó készítése", | ||||
|     "@takePicture": {}, | ||||
|     "targetDate": "Cél dátum", | ||||
|     "@targetDate": {}, | ||||
|     "templatePart": "Szülő sablon alkatrész", | ||||
|     "@templatePart": {}, | ||||
|     "testName": "Teszt neve", | ||||
|     "@testName": {}, | ||||
|     "testPassedOrFailed": "Teszt sikeres vagy sikertelen", | ||||
|     "@testPassedOrFailed": {}, | ||||
|     "testsRequired": "Szükséges tesztek", | ||||
|     "@testsRequired": {}, | ||||
|     "testResults": "Teszt eredmények", | ||||
|     "@testResults": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "testResultAdd": "Teszt eredmény hozzáadása", | ||||
|     "@testResultAdd": {}, | ||||
|     "testResultNone": "Nincsenek teszt eredmények", | ||||
|     "@testResultNone": {}, | ||||
|     "testResultNoneDetail": "Teszt eredmény nem áll rendelkezésre", | ||||
|     "@testResultNoneDetail": {}, | ||||
|     "testResultUploadFail": "Hiba a teszt eredmény feltöltése közben", | ||||
|     "@testResultUploadFail": {}, | ||||
|     "testResultUploadPass": "Teszt eredmény feltöltve", | ||||
|     "@testResultUploadPass": {}, | ||||
|     "timeout": "Időtúllépés", | ||||
|     "@timeout": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "tokenError": "Token hiba", | ||||
|     "@tokenError": {}, | ||||
|     "tokenMissing": "Hiányzó token", | ||||
|     "@tokenMissing": {}, | ||||
|     "tokenMissingFromResponse": "Hozzáférési token hiányzik a válaszból", | ||||
|     "@tokenMissingFromResponse": {}, | ||||
|     "transfer": "Áthelyezés", | ||||
|     "@transfer": { | ||||
|         "description": "transfer" | ||||
|     }, | ||||
|     "transferStock": "Készlet áthelyezése", | ||||
|     "@transferStock": { | ||||
|         "description": "transfer stock" | ||||
|     }, | ||||
|     "translate": "Fordítás", | ||||
|     "@translate": {}, | ||||
|     "translateHelp": "Segíts lefordítani az InvenTree alkalmazást", | ||||
|     "@translateHelp": {}, | ||||
|     "units": "Mértékegységek", | ||||
|     "@units": {}, | ||||
|     "unknownResponse": "Ismeretlen válasz", | ||||
|     "@unknownResponse": {}, | ||||
|     "upload": "Feltöltés", | ||||
|     "@upload": {}, | ||||
|     "uploadFailed": "Fájl feltöltése sikertelen", | ||||
|     "@uploadFailed": {}, | ||||
|     "uploadSuccess": "Fájl feltöltve", | ||||
|     "@uploadSuccess": {}, | ||||
|     "usedIn": "Felhasználva ebben", | ||||
|     "@usedIn": {}, | ||||
|     "usedInDetails": "Gyártmányok amik ezt az alkatrészt igénylik", | ||||
|     "@usedInDetails": {}, | ||||
|     "username": "Felhasználónév", | ||||
|     "@username": {}, | ||||
|     "usernameEmpty": "Felhasználónév nem lehet üres", | ||||
|     "@usernameEmpty": {}, | ||||
|     "value": "Érték", | ||||
|     "@value": { | ||||
|         "description": "value" | ||||
|     }, | ||||
|     "valueCannotBeEmpty": "Az érték nem lehet üres", | ||||
|     "@valueCannotBeEmpty": {}, | ||||
|     "valueRequired": "Érték megadása szükséges", | ||||
|     "@valueRequired": {}, | ||||
|     "version": "Verzió", | ||||
|     "@version": {}, | ||||
|     "viewSupplierPart": "Beszállítói alkatrész megtekintése", | ||||
|     "@viewSupplierPart": {}, | ||||
|     "website": "Weboldal", | ||||
|     "@website": {} | ||||
| } | ||||
							
								
								
									
										5
									
								
								lib/l10n/id/app_id.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								lib/l10n/id/app_id.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {} | ||||
| } | ||||
							
								
								
									
										505
									
								
								lib/l10n/it/app_it.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										505
									
								
								lib/l10n/it/app_it.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,505 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "ok": "OK", | ||||
|     "@ok": { | ||||
|         "description": "OK" | ||||
|     }, | ||||
|     "about": "Info", | ||||
|     "@about": {}, | ||||
|     "accountDetails": "Dettagli account", | ||||
|     "@accountDetails": {}, | ||||
|     "actions": "Azioni", | ||||
|     "@actions": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "actionsNone": "Nessuna azione disponibile", | ||||
|     "@actionsNone": {}, | ||||
|     "add": "Aggiungi", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "address": "Indirizzo", | ||||
|     "@address": {}, | ||||
|     "appAbout": "Info su InvenTree", | ||||
|     "@appAbout": {}, | ||||
|     "appCredits": "Riconoscimenti addizionali", | ||||
|     "@appCredits": {}, | ||||
|     "appDetails": "Dettagli App", | ||||
|     "@appDetails": {}, | ||||
|     "appReleaseNotes": "Mostra le note di rilascio dell'app", | ||||
|     "@appReleaseNotes": {}, | ||||
|     "appSettings": "Impostazioni App", | ||||
|     "@appSettings": {}, | ||||
|     "appSettingsDetails": "Configura le impostazioni dell'app InvenTree", | ||||
|     "@appSettingsDetails": {}, | ||||
|     "attachments": "Allegati", | ||||
|     "@attachments": {}, | ||||
|     "attachImage": "Allega Immagine", | ||||
|     "@attachImage": { | ||||
|         "description": "Attach an image" | ||||
|     }, | ||||
|     "attachmentNone": "Nessun allegato trovato", | ||||
|     "@attachmentNone": {}, | ||||
|     "attachmentNonePartDetail": "Nessun allegato trovato in questa parte", | ||||
|     "@attachmentNonePartDetail": {}, | ||||
|     "attachmentSelect": "Seleziona allegato", | ||||
|     "@attachmentSelect": {}, | ||||
|     "attention": "Attenzione", | ||||
|     "@attention": {}, | ||||
|     "barcodeAssign": "Assegna Codice A Barre", | ||||
|     "@barcodeAssign": {}, | ||||
|     "barcodeAssigned": "Codice a barre assegnato", | ||||
|     "@barcodeAssigned": {}, | ||||
|     "barcodeError": "Errore scansione codice a barre", | ||||
|     "@barcodeError": {}, | ||||
|     "barcodeInUse": "Codice a barre già in uso", | ||||
|     "@barcodeInUse": {}, | ||||
|     "barcodeMissingHash": "Dati hash codice a barre mancanti dalla risposta", | ||||
|     "@barcodeMissingHash": {}, | ||||
|     "barcodeNoMatch": "Nessuna corrispondenza per il codice a barre", | ||||
|     "@barcodeNoMatch": {}, | ||||
|     "barcodeNotAssigned": "Codice a barre non assegnato", | ||||
|     "@barcodeNotAssigned": {}, | ||||
|     "barcodeScanAssign": "Scansiona per assegnare codice a barre", | ||||
|     "@barcodeScanAssign": {}, | ||||
|     "barcodeScanGeneral": "Scansiona un codice a barre InvenTree", | ||||
|     "@barcodeScanGeneral": {}, | ||||
|     "barcodeScanIntoLocationFailure": "Oggetto non scansionato in", | ||||
|     "@barcodeScanIntoLocationFailure": {}, | ||||
|     "barcodeTones": "Toni Codice a Barre", | ||||
|     "@barcodeTones": {}, | ||||
|     "barcodeUnassign": "Deseleziona Il Barcode", | ||||
|     "@barcodeUnassign": {}, | ||||
|     "barcodeUnknown": "Codice a barre non leggibile", | ||||
|     "@barcodeUnknown": {}, | ||||
|     "batchCode": "Codice Lotto", | ||||
|     "@batchCode": {}, | ||||
|     "billOfMaterials": "Distinta materiali", | ||||
|     "@billOfMaterials": {}, | ||||
|     "bom": "Distinta materiali", | ||||
|     "@bom": {}, | ||||
|     "build": "Crea", | ||||
|     "@build": {}, | ||||
|     "cancel": "Annulla", | ||||
|     "@cancel": { | ||||
|         "description": "Cancel" | ||||
|     }, | ||||
|     "category": "Categoria", | ||||
|     "@category": {}, | ||||
|     "categoryCreate": "Nuova categoria", | ||||
|     "@categoryCreate": {}, | ||||
|     "company": "Azienda", | ||||
|     "@company": {}, | ||||
|     "companyEdit": "Modifica azienda", | ||||
|     "@companyEdit": {}, | ||||
|     "companyNoResults": "Nessuna azienda corrispondente alla query", | ||||
|     "@companyNoResults": {}, | ||||
|     "companies": "Aziende", | ||||
|     "@companies": {}, | ||||
|     "connectionRefused": "Connessione rifiutata", | ||||
|     "@connectionRefused": {}, | ||||
|     "count": "Quantità", | ||||
|     "@count": { | ||||
|         "description": "Count" | ||||
|     }, | ||||
|     "credits": "Riconoscimenti", | ||||
|     "@credits": {}, | ||||
|     "customers": "Clienti", | ||||
|     "@customers": {}, | ||||
|     "damaged": "Danneggiato", | ||||
|     "@damaged": {}, | ||||
|     "delete": "Cancella", | ||||
|     "@delete": {}, | ||||
|     "description": "Descrizione", | ||||
|     "@description": {}, | ||||
|     "destroyed": "Distrutto", | ||||
|     "@destroyed": {}, | ||||
|     "details": "Dettagli", | ||||
|     "@details": { | ||||
|         "description": "details" | ||||
|     }, | ||||
|     "documentation": "Documentazione", | ||||
|     "@documentation": {}, | ||||
|     "downloading": "File in download", | ||||
|     "@downloading": {}, | ||||
|     "downloadError": "Errore download", | ||||
|     "@downloadError": {}, | ||||
|     "edit": "Modifica", | ||||
|     "@edit": { | ||||
|         "description": "edit" | ||||
|     }, | ||||
|     "editCategory": "Modifica Categoria", | ||||
|     "@editCategory": {}, | ||||
|     "enterPassword": "Inserire la password", | ||||
|     "@enterPassword": {}, | ||||
|     "enterUsername": "Inserisci nome utente", | ||||
|     "@enterUsername": {}, | ||||
|     "error": "Errore", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorCreate": "Errore nella creazione della voce del database", | ||||
|     "@errorCreate": {}, | ||||
|     "errorDetails": "Dettagli errore", | ||||
|     "@errorDetails": {}, | ||||
|     "errorFetch": "Si è verificato un errore durante il recupero dei dati dal server", | ||||
|     "@errorFetch": {}, | ||||
|     "feedback": "Commenti e suggerimenti", | ||||
|     "@feedback": {}, | ||||
|     "feedbackError": "Errore nell'invio del feedback", | ||||
|     "@feedbackError": {}, | ||||
|     "feedbackSuccess": "Feedback inviato", | ||||
|     "@feedbackSuccess": {}, | ||||
|     "formatException": "Eccezione Formato", | ||||
|     "@formatException": {}, | ||||
|     "formatExceptionJson": "Eccezione formato dati JSON", | ||||
|     "@formatExceptionJson": {}, | ||||
|     "formError": "Errore Modulo", | ||||
|     "@formError": {}, | ||||
|     "history": "Cronologia", | ||||
|     "@history": { | ||||
|         "description": "history" | ||||
|     }, | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "imageUploadFailure": "Il caricamento della foto è fallito", | ||||
|     "@imageUploadFailure": {}, | ||||
|     "imageUploadSuccess": "Immagine caricata", | ||||
|     "@imageUploadSuccess": {}, | ||||
|     "inactive": "Inattivo", | ||||
|     "@inactive": {}, | ||||
|     "includeSubcategories": "Includi sottocategorie", | ||||
|     "@includeSubcategories": {}, | ||||
|     "incompleteDetails": "Ti preghiamo di completare i dati del tuo account", | ||||
|     "@incompleteDetails": {}, | ||||
|     "info": "Info", | ||||
|     "@info": {}, | ||||
|     "invalidHost": "Nome host non valido", | ||||
|     "@invalidHost": {}, | ||||
|     "invalidHostDetails": "Il nome host fornito non è valido", | ||||
|     "@invalidHostDetails": {}, | ||||
|     "invalidUsernamePassword": "Combinazione nome utente e password non valida", | ||||
|     "@invalidUsernamePassword": {}, | ||||
|     "issueDate": "Data di emissione", | ||||
|     "@issueDate": {}, | ||||
|     "itemInLocation": "Elemento già in posizione", | ||||
|     "@itemInLocation": {}, | ||||
|     "keywords": "Parole Chiave", | ||||
|     "@keywords": {}, | ||||
|     "lastUpdated": "Ultimo aggiornamento", | ||||
|     "@lastUpdated": {}, | ||||
|     "lost": "Perso", | ||||
|     "@lost": {}, | ||||
|     "manufacturers": "Produttori", | ||||
|     "@manufacturers": {}, | ||||
|     "missingData": "Dati mancanti", | ||||
|     "@missingData": {}, | ||||
|     "name": "Nome", | ||||
|     "@name": {}, | ||||
|     "notConnected": "Non connesso", | ||||
|     "@notConnected": {}, | ||||
|     "notes": "Note", | ||||
|     "@notes": { | ||||
|         "description": "Notes" | ||||
|     }, | ||||
|     "noResponse": "Nessuna risposta dal server", | ||||
|     "@noResponse": {}, | ||||
|     "noResults": "Nessun risultato", | ||||
|     "@noResults": {}, | ||||
|     "noSubcategories": "Nessuna sotto categoria", | ||||
|     "@noSubcategories": {}, | ||||
|     "noSubcategoriesAvailable": "Nessuna sottocategoria disponibile", | ||||
|     "@noSubcategoriesAvailable": {}, | ||||
|     "numberInvalid": "Numero non valido", | ||||
|     "@numberInvalid": {}, | ||||
|     "onOrderDetails": "Articoli attualmente in ordine", | ||||
|     "@onOrderDetails": {}, | ||||
|     "packaging": "Confezionamento", | ||||
|     "@packaging": {}, | ||||
|     "packageName": "Nome pacchetto", | ||||
|     "@packageName": {}, | ||||
|     "parent": "Superiore", | ||||
|     "@parent": {}, | ||||
|     "parentCategory": "Categoria Superiore", | ||||
|     "@parentCategory": {}, | ||||
|     "parts": "Articoli", | ||||
|     "@parts": { | ||||
|         "description": "Part (multiple)" | ||||
|     }, | ||||
|     "partSuppliers": "Fornitori articoli", | ||||
|     "@partSuppliers": {}, | ||||
|     "password": "Password", | ||||
|     "@password": {}, | ||||
|     "passwordEmpty": "La password non può essere vuota", | ||||
|     "@passwordEmpty": {}, | ||||
|     "permissionAccountDenied": "Non disponi dei permessi per eseguire l'azione", | ||||
|     "@permissionAccountDenied": {}, | ||||
|     "permissionRequired": "Autorizzazione necessaria", | ||||
|     "@permissionRequired": {}, | ||||
|     "profile": "Profilo", | ||||
|     "@profile": {}, | ||||
|     "profileAdd": "Aggiungi Profilo Server", | ||||
|     "@profileAdd": {}, | ||||
|     "profileConnect": "Connetti al Server", | ||||
|     "@profileConnect": {}, | ||||
|     "profileEdit": "Modifica il profilo del Server", | ||||
|     "@profileEdit": {}, | ||||
|     "profileDelete": "Elimina Profilo Del Server", | ||||
|     "@profileDelete": {}, | ||||
|     "profileName": "Nome Profilo", | ||||
|     "@profileName": {}, | ||||
|     "profileNone": "Nessun profilo disponibile", | ||||
|     "@profileNone": {}, | ||||
|     "profileNotSelected": "Nessun profilo selezionato", | ||||
|     "@profileNotSelected": {}, | ||||
|     "profileSelect": "Seleziona Server InvenTree", | ||||
|     "@profileSelect": {}, | ||||
|     "profileTapToCreate": "Tocca per creare o selezionare un profilo", | ||||
|     "@profileTapToCreate": {}, | ||||
|     "purchaseOrder": "Ordine d'acquisto", | ||||
|     "@purchaseOrder": {}, | ||||
|     "purchaseOrderEdit": "Modifica ordine d'acquisto", | ||||
|     "@purchaseOrderEdit": {}, | ||||
|     "purchaseOrders": "Ordini d'acquisto", | ||||
|     "@purchaseOrders": {}, | ||||
|     "purchasePrice": "Prezzo d'acquisto", | ||||
|     "@purchasePrice": {}, | ||||
|     "quantity": "Quantità", | ||||
|     "@quantity": { | ||||
|         "description": "Quantity" | ||||
|     }, | ||||
|     "quantityEmpty": "Quantità vuota", | ||||
|     "@quantityEmpty": {}, | ||||
|     "quantityInvalid": "La quantità non è valida", | ||||
|     "@quantityInvalid": {}, | ||||
|     "quantityPositive": "La quantità deve essere positiva", | ||||
|     "@quantityPositive": {}, | ||||
|     "queryNoResults": "Nessun risultato per la tua ricerca", | ||||
|     "@queryNoResults": {}, | ||||
|     "received": "Ricevuto", | ||||
|     "@received": {}, | ||||
|     "receiveItem": "Ricevi Articolo", | ||||
|     "@receiveItem": {}, | ||||
|     "refresh": "Aggiorna", | ||||
|     "@refresh": {}, | ||||
|     "refreshing": "In aggiornamento", | ||||
|     "@refreshing": {}, | ||||
|     "rejected": "Respinto", | ||||
|     "@rejected": {}, | ||||
|     "releaseNotes": "Note di Rilascio", | ||||
|     "@releaseNotes": {}, | ||||
|     "remove": "Rimuovi", | ||||
|     "@remove": { | ||||
|         "description": "remove" | ||||
|     }, | ||||
|     "reportBug": "Segnala un bug", | ||||
|     "@reportBug": {}, | ||||
|     "results": "Risultati", | ||||
|     "@results": {}, | ||||
|     "request": "Richiesta", | ||||
|     "@request": {}, | ||||
|     "requestingData": "Dati in richiesta", | ||||
|     "@requestingData": {}, | ||||
|     "required": "Richiesto", | ||||
|     "@required": { | ||||
|         "description": "This field is required" | ||||
|     }, | ||||
|     "response400": "Richiesta non valida", | ||||
|     "@response400": {}, | ||||
|     "response401": "Non Autorizzato", | ||||
|     "@response401": {}, | ||||
|     "response403": "Permesso negato", | ||||
|     "@response403": {}, | ||||
|     "response404": "Risorsa non trovata", | ||||
|     "@response404": {}, | ||||
|     "response405": "Metodo non consentito", | ||||
|     "@response405": {}, | ||||
|     "response429": "Troppe richieste", | ||||
|     "@response429": {}, | ||||
|     "response500": "Errore Interno del Server", | ||||
|     "@response500": {}, | ||||
|     "response501": "Non implementato", | ||||
|     "@response501": {}, | ||||
|     "response502": "Gateway Errato", | ||||
|     "@response502": {}, | ||||
|     "response503": "Servizio Non Disponibile", | ||||
|     "@response503": {}, | ||||
|     "response504": "Timeout del gateway", | ||||
|     "@response504": {}, | ||||
|     "response505": "Versione HTTP non supportata", | ||||
|     "@response505": {}, | ||||
|     "responseData": "Dati risposta", | ||||
|     "@responseData": {}, | ||||
|     "responseInvalid": "Codice Risposta Non Valido", | ||||
|     "@responseInvalid": {}, | ||||
|     "responseUnknown": "Risposta Sconosciuta", | ||||
|     "@responseUnknown": {}, | ||||
|     "result": "Risultato", | ||||
|     "@result": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "returned": "Restituito", | ||||
|     "@returned": {}, | ||||
|     "salesOrders": "Ordini di vendita", | ||||
|     "@salesOrders": {}, | ||||
|     "save": "Salva", | ||||
|     "@save": { | ||||
|         "description": "Save" | ||||
|     }, | ||||
|     "scanBarcode": "Scansiona codice a barre", | ||||
|     "@scanBarcode": {}, | ||||
|     "search": "Cerca", | ||||
|     "@search": { | ||||
|         "description": "search" | ||||
|     }, | ||||
|     "select": "Seleziona", | ||||
|     "@select": {}, | ||||
|     "selectFile": "Seleziona file", | ||||
|     "@selectFile": {}, | ||||
|     "selectImage": "Seleziona un'immagine", | ||||
|     "@selectImage": {}, | ||||
|     "send": "Invia", | ||||
|     "@send": {}, | ||||
|     "serialNumber": "Numero seriale", | ||||
|     "@serialNumber": {}, | ||||
|     "server": "Server", | ||||
|     "@server": {}, | ||||
|     "serverAddress": "Indirizzo del server", | ||||
|     "@serverAddress": {}, | ||||
|     "serverApiRequired": "Versione API Richiesta", | ||||
|     "@serverApiRequired": {}, | ||||
|     "serverApiVersion": "Versione API Server", | ||||
|     "@serverApiVersion": {}, | ||||
|     "serverAuthenticationError": "Errore di autenticazione", | ||||
|     "@serverAuthenticationError": {}, | ||||
|     "serverCertificateError": "Errore certificato", | ||||
|     "@serverCertificateError": {}, | ||||
|     "serverCertificateInvalid": "Il certificato del server non è valido", | ||||
|     "@serverCertificateInvalid": {}, | ||||
|     "serverConnected": "Connesso al Server", | ||||
|     "@serverConnected": {}, | ||||
|     "serverConnecting": "Connessione al server", | ||||
|     "@serverConnecting": {}, | ||||
|     "serverCouldNotConnect": "Impossibile connettersi al server", | ||||
|     "@serverCouldNotConnect": {}, | ||||
|     "serverEmpty": "Nome server non può essere vuoto", | ||||
|     "@serverEmpty": {}, | ||||
|     "serverError": "Errore del server", | ||||
|     "@serverError": {}, | ||||
|     "serverDetails": "Dettagli del server", | ||||
|     "@serverDetails": {}, | ||||
|     "serverMissingData": "Dati mancanti nella risposta del server", | ||||
|     "@serverMissingData": {}, | ||||
|     "serverOld": "Versione Vecchia Del Server", | ||||
|     "@serverOld": {}, | ||||
|     "serverSettings": "Impostazioni Server", | ||||
|     "@serverSettings": {}, | ||||
|     "serverStart": "Il server deve iniziare con http[s]", | ||||
|     "@serverStart": {}, | ||||
|     "settings": "Impostazioni", | ||||
|     "@settings": {}, | ||||
|     "serverInstance": "Istanza Del Server", | ||||
|     "@serverInstance": {}, | ||||
|     "serverNotConnected": "Server non connesso", | ||||
|     "@serverNotConnected": {}, | ||||
|     "sounds": "Audio", | ||||
|     "@sounds": {}, | ||||
|     "soundOnBarcodeAction": "Riproduci un tono sonoro all'azione del codice a barre", | ||||
|     "@soundOnBarcodeAction": {}, | ||||
|     "soundOnServerError": "Riproduci il tono sonoro su un errore del server", | ||||
|     "@soundOnServerError": {}, | ||||
|     "status": "Stato", | ||||
|     "@status": {}, | ||||
|     "statusCode": "Codice di stato", | ||||
|     "@statusCode": {}, | ||||
|     "stock": "Magazzino", | ||||
|     "@stock": { | ||||
|         "description": "stock" | ||||
|     }, | ||||
|     "subcategory": "Sottocategoria", | ||||
|     "@subcategory": {}, | ||||
|     "subcategories": "Sottocategorie", | ||||
|     "@subcategories": {}, | ||||
|     "submitFeedback": "Invia feedback", | ||||
|     "@submitFeedback": {}, | ||||
|     "supplier": "Fornitore", | ||||
|     "@supplier": {}, | ||||
|     "suppliers": "Fornitori", | ||||
|     "@suppliers": {}, | ||||
|     "supplierReference": "Riferimento fornitore", | ||||
|     "@supplierReference": {}, | ||||
|     "takePicture": "Scatta Foto", | ||||
|     "@takePicture": {}, | ||||
|     "testName": "Nome del test", | ||||
|     "@testName": {}, | ||||
|     "testPassedOrFailed": "Test superato o fallito", | ||||
|     "@testPassedOrFailed": {}, | ||||
|     "testsRequired": "Test Richiesti", | ||||
|     "@testsRequired": {}, | ||||
|     "testResults": "Risultati del test", | ||||
|     "@testResults": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "testResultAdd": "Aggiungi Risultato Test", | ||||
|     "@testResultAdd": {}, | ||||
|     "testResultNone": "Nessun Risultato Del Test", | ||||
|     "@testResultNone": {}, | ||||
|     "testResultNoneDetail": "Nessun risultato del test disponibile", | ||||
|     "@testResultNoneDetail": {}, | ||||
|     "testResultUploadFail": "Errore nel caricamento del risultato del test", | ||||
|     "@testResultUploadFail": {}, | ||||
|     "testResultUploadPass": "Risultato del test caricato", | ||||
|     "@testResultUploadPass": {}, | ||||
|     "timeout": "Tempo Scaduto", | ||||
|     "@timeout": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "tokenError": "Errore Token", | ||||
|     "@tokenError": {}, | ||||
|     "tokenMissing": "Token Mancante", | ||||
|     "@tokenMissing": {}, | ||||
|     "tokenMissingFromResponse": "Token di accesso mancante dalla risposta", | ||||
|     "@tokenMissingFromResponse": {}, | ||||
|     "transfer": "Trasferisci", | ||||
|     "@transfer": { | ||||
|         "description": "transfer" | ||||
|     }, | ||||
|     "translate": "Traduci", | ||||
|     "@translate": {}, | ||||
|     "translateHelp": "Aiuta a tradurre l'app InvenTree", | ||||
|     "@translateHelp": {}, | ||||
|     "units": "Unità", | ||||
|     "@units": {}, | ||||
|     "unknownResponse": "Risposta Sconosciuta", | ||||
|     "@unknownResponse": {}, | ||||
|     "upload": "Carica", | ||||
|     "@upload": {}, | ||||
|     "uploadFailed": "Caricamento di file non riuscito", | ||||
|     "@uploadFailed": {}, | ||||
|     "uploadSuccess": "File caricato", | ||||
|     "@uploadSuccess": {}, | ||||
|     "usedIn": "Viene utilizzato in", | ||||
|     "@usedIn": {}, | ||||
|     "username": "Nome utente", | ||||
|     "@username": {}, | ||||
|     "usernameEmpty": "Il nome utente non può essere vuoto", | ||||
|     "@usernameEmpty": {}, | ||||
|     "value": "Valore", | ||||
|     "@value": { | ||||
|         "description": "value" | ||||
|     }, | ||||
|     "valueCannotBeEmpty": "Il valore non può essere vuoto", | ||||
|     "@valueCannotBeEmpty": {}, | ||||
|     "valueRequired": "È richiesto un valore", | ||||
|     "@valueRequired": {}, | ||||
|     "version": "Versione", | ||||
|     "@version": {}, | ||||
|     "viewSupplierPart": "Visualizza Fornitore", | ||||
|     "@viewSupplierPart": {}, | ||||
|     "website": "Sito Web", | ||||
|     "@website": {} | ||||
| } | ||||
							
								
								
									
										682
									
								
								lib/l10n/ja/app_ja.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										682
									
								
								lib/l10n/ja/app_ja.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,682 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "ok": "OK", | ||||
|     "@ok": { | ||||
|         "description": "OK" | ||||
|     }, | ||||
|     "about": "概要", | ||||
|     "@about": {}, | ||||
|     "accountDetails": "アカウントの詳細", | ||||
|     "@accountDetails": {}, | ||||
|     "actions": "アクション", | ||||
|     "@actions": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "actionsNone": "利用可能なアクションはありません", | ||||
|     "@actionsNone": {}, | ||||
|     "add": "追加", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "addStock": "在庫を追加", | ||||
|     "@addStock": { | ||||
|         "description": "add stock" | ||||
|     }, | ||||
|     "address": "アドレス", | ||||
|     "@address": {}, | ||||
|     "appAbout": "InvenTree について", | ||||
|     "@appAbout": {}, | ||||
|     "appCredits": "すぺしゃる★さんくす!", | ||||
|     "@appCredits": {}, | ||||
|     "appDetails": "アプリ詳細", | ||||
|     "@appDetails": {}, | ||||
|     "appReleaseNotes": "アプリのリリースノートを表示", | ||||
|     "@appReleaseNotes": {}, | ||||
|     "appSettings": "アプリ設定", | ||||
|     "@appSettings": {}, | ||||
|     "appSettingsDetails": "アプリ設定を構成します", | ||||
|     "@appSettingsDetails": {}, | ||||
|     "attachments": "添付ファイル", | ||||
|     "@attachments": {}, | ||||
|     "attachImage": "画像を添付", | ||||
|     "@attachImage": { | ||||
|         "description": "Attach an image" | ||||
|     }, | ||||
|     "attachmentNone": "添付ファイルが見つかりません。", | ||||
|     "@attachmentNone": {}, | ||||
|     "attachmentNonePartDetail": "この部品の添付ファイルが見つかりません", | ||||
|     "@attachmentNonePartDetail": {}, | ||||
|     "attachmentSelect": "添付ファイルを選択", | ||||
|     "@attachmentSelect": {}, | ||||
|     "attention": "注意", | ||||
|     "@attention": {}, | ||||
|     "availableStock": "在庫あり", | ||||
|     "@availableStock": {}, | ||||
|     "barcodeAssign": "バーコードを割り当てる", | ||||
|     "@barcodeAssign": {}, | ||||
|     "barcodeAssigned": "バーコードが割り当てられました", | ||||
|     "@barcodeAssigned": {}, | ||||
|     "barcodeError": "バーコードのスキャンエラー", | ||||
|     "@barcodeError": {}, | ||||
|     "barcodeInUse": "バーコードは既に割り当てられています", | ||||
|     "@barcodeInUse": {}, | ||||
|     "barcodeMissingHash": "バーコードから応答にてハッシュデータが欠落しています", | ||||
|     "@barcodeMissingHash": {}, | ||||
|     "barcodeNoMatch": "バーコードが一致しません", | ||||
|     "@barcodeNoMatch": {}, | ||||
|     "barcodeNotAssigned": "バーコードが割り当てられていません", | ||||
|     "@barcodeNotAssigned": {}, | ||||
|     "barcodeScanAssign": "スキャンしてバーコードを割り当てます", | ||||
|     "@barcodeScanAssign": {}, | ||||
|     "barcodeScanGeneral": "InvenTree バーコードをスキャンする", | ||||
|     "@barcodeScanGeneral": {}, | ||||
|     "barcodeScanInItems": "在庫アイテムを在庫場所にスキャン", | ||||
|     "@barcodeScanInItems": {}, | ||||
|     "barcodeScanLocation": "在庫場所をスキャン", | ||||
|     "@barcodeScanLocation": {}, | ||||
|     "barcodeScanIntoLocationSuccess": "スキャンされた在庫場所", | ||||
|     "@barcodeScanIntoLocationSuccess": {}, | ||||
|     "barcodeScanIntoLocationFailure": "スキャンされていないアイテム", | ||||
|     "@barcodeScanIntoLocationFailure": {}, | ||||
|     "barcodeScanItem": "在庫アイテムをスキャン", | ||||
|     "@barcodeScanItem": {}, | ||||
|     "barcodeTones": "Barcode Tones", | ||||
|     "@barcodeTones": {}, | ||||
|     "barcodeUnassign": "バーコードの割り当てを解除", | ||||
|     "@barcodeUnassign": {}, | ||||
|     "barcodeUnknown": "バーコードが認識されません", | ||||
|     "@barcodeUnknown": {}, | ||||
|     "billOfMaterials": "Bill of Materials", | ||||
|     "@billOfMaterials": {}, | ||||
|     "bom": "BOM", | ||||
|     "@bom": {}, | ||||
|     "build": "ビルド", | ||||
|     "@build": {}, | ||||
|     "building": "ビルド", | ||||
|     "@building": {}, | ||||
|     "cancel": "キャンセル", | ||||
|     "@cancel": { | ||||
|         "description": "Cancel" | ||||
|     }, | ||||
|     "category": "カテゴリ", | ||||
|     "@category": {}, | ||||
|     "categoryCreate": "新規カテゴリ", | ||||
|     "@categoryCreate": {}, | ||||
|     "categoryCreateDetail": "新しい部品カテゴリを作成", | ||||
|     "@categoryCreateDetail": {}, | ||||
|     "categoryUpdated": "部品カテゴリを更新しました", | ||||
|     "@categoryUpdated": {}, | ||||
|     "company": "会社", | ||||
|     "@company": {}, | ||||
|     "companyEdit": "会社を編集", | ||||
|     "@companyEdit": {}, | ||||
|     "companyNoResults": "検索条件に一致する会社はありません", | ||||
|     "@companyNoResults": {}, | ||||
|     "companyUpdated": "会社の詳細を更新しました", | ||||
|     "@companyUpdated": {}, | ||||
|     "companies": "会社", | ||||
|     "@companies": {}, | ||||
|     "configureServer": "サーバー設定", | ||||
|     "@configureServer": {}, | ||||
|     "connectionRefused": "接続を拒否しました", | ||||
|     "@connectionRefused": {}, | ||||
|     "count": "カウント", | ||||
|     "@count": { | ||||
|         "description": "Count" | ||||
|     }, | ||||
|     "countStock": "在庫数", | ||||
|     "@countStock": { | ||||
|         "description": "Count Stock" | ||||
|     }, | ||||
|     "credits": "謝辞", | ||||
|     "@credits": {}, | ||||
|     "customers": "顧客", | ||||
|     "@customers": {}, | ||||
|     "damaged": "破損", | ||||
|     "@damaged": {}, | ||||
|     "delete": "削除", | ||||
|     "@delete": {}, | ||||
|     "deletePart": "部品を削除", | ||||
|     "@deletePart": {}, | ||||
|     "deletePartDetail": "データベースからこの部品を削除します", | ||||
|     "@deletePartDetail": {}, | ||||
|     "description": "説明", | ||||
|     "@description": {}, | ||||
|     "destroyed": "破壊", | ||||
|     "@destroyed": {}, | ||||
|     "details": "詳細", | ||||
|     "@details": { | ||||
|         "description": "details" | ||||
|     }, | ||||
|     "documentation": "ドキュメント", | ||||
|     "@documentation": {}, | ||||
|     "downloading": "ファイルをダウンロード中", | ||||
|     "@downloading": {}, | ||||
|     "downloadError": "ダウンロードエラー", | ||||
|     "@downloadError": {}, | ||||
|     "edit": "編集", | ||||
|     "@edit": { | ||||
|         "description": "edit" | ||||
|     }, | ||||
|     "editCategory": "カテゴリの編集", | ||||
|     "@editCategory": {}, | ||||
|     "editLocation": "在庫場所を編集", | ||||
|     "@editLocation": {}, | ||||
|     "editNotes": "メモを編集", | ||||
|     "@editNotes": {}, | ||||
|     "editPart": "パートの編集", | ||||
|     "@editPart": { | ||||
|         "description": "edit part" | ||||
|     }, | ||||
|     "editItem": "在庫商品を編集", | ||||
|     "@editItem": {}, | ||||
|     "enterPassword": "パスワードを入力してください", | ||||
|     "@enterPassword": {}, | ||||
|     "enterUsername": "ユーザー名を入力してください", | ||||
|     "@enterUsername": {}, | ||||
|     "error": "エラー", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorCreate": "データベースの作成中にエラーが発生しました", | ||||
|     "@errorCreate": {}, | ||||
|     "errorDelete": "データベースの削除中にエラーが発生しました", | ||||
|     "@errorDelete": {}, | ||||
|     "errorDetails": "エラーの詳細", | ||||
|     "@errorDetails": {}, | ||||
|     "errorFetch": "サーバーからのデータ取得の際にエラーが発生しました", | ||||
|     "@errorFetch": {}, | ||||
|     "errorReporting": "エラー報告", | ||||
|     "@errorReporting": {}, | ||||
|     "errorReportUpload": "エラー報告をアップロード", | ||||
|     "@errorReportUpload": {}, | ||||
|     "errorReportUploadDetails": "匿名のエラー報告とクラッシュログをアップロード", | ||||
|     "@errorReportUploadDetails": {}, | ||||
|     "feedback": "フィードバック", | ||||
|     "@feedback": {}, | ||||
|     "feedbackError": "フィードバックの送信エラー", | ||||
|     "@feedbackError": {}, | ||||
|     "feedbackSuccess": "フィードバックが送信されました", | ||||
|     "@feedbackSuccess": {}, | ||||
|     "formatException": "フォーマットの例外エラー", | ||||
|     "@formatException": {}, | ||||
|     "formatExceptionJson": "JSONデータフォーマット例外エラー", | ||||
|     "@formatExceptionJson": {}, | ||||
|     "formError": "フォームエラー", | ||||
|     "@formError": {}, | ||||
|     "history": "履歴", | ||||
|     "@history": { | ||||
|         "description": "history" | ||||
|     }, | ||||
|     "homeScreen": "ホーム画面", | ||||
|     "@homeScreen": {}, | ||||
|     "homeScreenSettings": "ホーム画面の設定", | ||||
|     "@homeScreenSettings": {}, | ||||
|     "homeShowPo": "注文書を表示", | ||||
|     "@homeShowPo": {}, | ||||
|     "homeShowSubscribed": "購読済みのパーツ", | ||||
|     "@homeShowSubscribed": {}, | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "homeShowSuppliers": "仕入先を表示", | ||||
|     "@homeShowSuppliers": {}, | ||||
|     "homeShowSuppliersDescription": "仕入先ボタンをホーム画面に表示", | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "homeShowManufacturers": "メーカーを表示", | ||||
|     "@homeShowManufacturers": {}, | ||||
|     "homeShowManufacturersDescription": "メーカーボタンをホーム画面に表示", | ||||
|     "@homeShowManufacturersDescription": {}, | ||||
|     "homeShowCustomers": "顧客を表示", | ||||
|     "@homeShowCustomers": {}, | ||||
|     "homeShowCustomersDescription": "顧客ボタンをホーム画面に表示", | ||||
|     "@homeShowCustomersDescription": {}, | ||||
|     "imageUploadFailure": "画像のアップロードに失敗しました", | ||||
|     "@imageUploadFailure": {}, | ||||
|     "imageUploadSuccess": "アップロードされた画像", | ||||
|     "@imageUploadSuccess": {}, | ||||
|     "inactive": "無効", | ||||
|     "@inactive": {}, | ||||
|     "inactiveDetail": "この部品は無効としてマークされています", | ||||
|     "@inactiveDetail": {}, | ||||
|     "includeSubcategories": "サブカテゴリを含む", | ||||
|     "@includeSubcategories": {}, | ||||
|     "includeSubcategoriesDetail": "サブカテゴリをリストビューに表示します", | ||||
|     "@includeSubcategoriesDetail": {}, | ||||
|     "includeSublocations": "サブ在庫場所を含める", | ||||
|     "@includeSublocations": {}, | ||||
|     "includeSublocationsDetail": "サブ在庫場所を表示します", | ||||
|     "@includeSublocationsDetail": {}, | ||||
|     "incompleteDetails": "不完全なプロフィールの詳細", | ||||
|     "@incompleteDetails": {}, | ||||
|     "internalPartNumber": "内部パーツ番号", | ||||
|     "@internalPartNumber": {}, | ||||
|     "info": "情報", | ||||
|     "@info": {}, | ||||
|     "inProduction": "生産中", | ||||
|     "@inProduction": {}, | ||||
|     "inProductionDetail": "この在庫品は生産中です", | ||||
|     "@inProductionDetail": {}, | ||||
|     "invalidHost": "無効なホスト名", | ||||
|     "@invalidHost": {}, | ||||
|     "invalidHostDetails": "このホスト名は無効です。", | ||||
|     "@invalidHostDetails": {}, | ||||
|     "invalidPart": "無効なパーツ", | ||||
|     "@invalidPart": {}, | ||||
|     "invalidPartCategory": "無効なパーツカテゴリー", | ||||
|     "@invalidPartCategory": {}, | ||||
|     "invalidStockLocation": "無効な在庫場所", | ||||
|     "@invalidStockLocation": {}, | ||||
|     "invalidStockItem": "無効な在庫アイテム", | ||||
|     "@invalidStockItem": {}, | ||||
|     "invalidUsernamePassword": "無効なユーザー名/パスワードの組み合わせです。", | ||||
|     "@invalidUsernamePassword": {}, | ||||
|     "issueDate": "発行日", | ||||
|     "@issueDate": {}, | ||||
|     "itemInLocation": "アイテムは既に在庫場所にあります", | ||||
|     "@itemInLocation": {}, | ||||
|     "keywords": "キーワード", | ||||
|     "@keywords": {}, | ||||
|     "lastUpdated": "最終更新", | ||||
|     "@lastUpdated": {}, | ||||
|     "locationCreate": "新しい場所", | ||||
|     "@locationCreate": {}, | ||||
|     "locationCreateDetail": "新しい在庫場所を作成", | ||||
|     "@locationCreateDetail": {}, | ||||
|     "locationNotSet": "在庫場所が指定されていません", | ||||
|     "@locationNotSet": {}, | ||||
|     "locationUpdated": "在庫場所を更新しました", | ||||
|     "@locationUpdated": {}, | ||||
|     "link": "リンク", | ||||
|     "@link": {}, | ||||
|     "lost": "損失", | ||||
|     "@lost": {}, | ||||
|     "missingData": "データ消失", | ||||
|     "@missingData": {}, | ||||
|     "name": "名前", | ||||
|     "@name": {}, | ||||
|     "notConnected": "接続されていません", | ||||
|     "@notConnected": {}, | ||||
|     "notes": "メモ", | ||||
|     "@notes": { | ||||
|         "description": "Notes" | ||||
|     }, | ||||
|     "noResponse": "サーバーからの応答がありません", | ||||
|     "@noResponse": {}, | ||||
|     "noResults": "一致する結果なし", | ||||
|     "@noResults": {}, | ||||
|     "noSubcategories": "サブカテゴリはありません", | ||||
|     "@noSubcategories": {}, | ||||
|     "noSubcategoriesAvailable": "利用可能なサブ在庫場所がありません", | ||||
|     "@noSubcategoriesAvailable": {}, | ||||
|     "numberInvalid": "無効な値", | ||||
|     "@numberInvalid": {}, | ||||
|     "onOrder": "注文中", | ||||
|     "@onOrder": {}, | ||||
|     "packaging": "梱包中", | ||||
|     "@packaging": {}, | ||||
|     "packageName": "パッケージ名", | ||||
|     "@packageName": {}, | ||||
|     "parent": "親", | ||||
|     "@parent": {}, | ||||
|     "parentCategory": "親カテゴリ", | ||||
|     "@parentCategory": {}, | ||||
|     "parentLocation": "上位の場所", | ||||
|     "@parentLocation": {}, | ||||
|     "part": "パーツ", | ||||
|     "@part": { | ||||
|         "description": "Part (single)" | ||||
|     }, | ||||
|     "parts": "パーツ", | ||||
|     "@parts": { | ||||
|         "description": "Part (multiple)" | ||||
|     }, | ||||
|     "partsNone": "パーツがありません", | ||||
|     "@partsNone": {}, | ||||
|     "partsStarredNone": "お気に入りのパーツはありません", | ||||
|     "@partsStarredNone": {}, | ||||
|     "partCategory": "パーツカテゴリー", | ||||
|     "@partCategory": {}, | ||||
|     "partCategoryTopLevel": "トップレベルのパーツカテゴリ", | ||||
|     "@partCategoryTopLevel": {}, | ||||
|     "partCategories": "パーツカテゴリー", | ||||
|     "@partCategories": {}, | ||||
|     "partDetails": "パーツ詳細", | ||||
|     "@partDetails": {}, | ||||
|     "partNotes": "パーツメモ", | ||||
|     "@partNotes": {}, | ||||
|     "partStock": "パーツ在庫:", | ||||
|     "@partStock": { | ||||
|         "description": "part stock" | ||||
|     }, | ||||
|     "password": "パスワード", | ||||
|     "@password": {}, | ||||
|     "passwordEmpty": "パスワードは空欄にできません。", | ||||
|     "@passwordEmpty": {}, | ||||
|     "permissionAccountDenied": "操作を行う権限がありません", | ||||
|     "@permissionAccountDenied": {}, | ||||
|     "permissionRequired": "権限が必要です", | ||||
|     "@permissionRequired": {}, | ||||
|     "printLabel": "ラベルを印刷", | ||||
|     "@printLabel": {}, | ||||
|     "printLabelFailure": "ラベルの印刷に失敗しました", | ||||
|     "@printLabelFailure": {}, | ||||
|     "printLabelSuccess": "ラベルをプリンタに送信しました", | ||||
|     "@printLabelSuccess": {}, | ||||
|     "profile": "プロフィール", | ||||
|     "@profile": {}, | ||||
|     "profileAdd": "サーバープロファイルを追加", | ||||
|     "@profileAdd": {}, | ||||
|     "profileConnect": "サーバーに接続", | ||||
|     "@profileConnect": {}, | ||||
|     "profileEdit": "サーバープロファイルを編集", | ||||
|     "@profileEdit": {}, | ||||
|     "profileDelete": "サーバープロファイルの削除", | ||||
|     "@profileDelete": {}, | ||||
|     "profileName": "プロファイル名", | ||||
|     "@profileName": {}, | ||||
|     "profileNone": "利用可能なプロファイルがありません", | ||||
|     "@profileNone": {}, | ||||
|     "profileNotSelected": "プロフィールが選択されていません", | ||||
|     "@profileNotSelected": {}, | ||||
|     "profileSelect": "InvenTreeサーバーを選択", | ||||
|     "@profileSelect": {}, | ||||
|     "profileTapToCreate": "タップしてプロフィールを作成または選択します", | ||||
|     "@profileTapToCreate": {}, | ||||
|     "purchaseOrder": "発注書", | ||||
|     "@purchaseOrder": {}, | ||||
|     "purchaseOrderEdit": "発注書の更新", | ||||
|     "@purchaseOrderEdit": {}, | ||||
|     "purchaseOrders": "発注書", | ||||
|     "@purchaseOrders": {}, | ||||
|     "purchaseOrderUpdated": "発注書が更新されました", | ||||
|     "@purchaseOrderUpdated": {}, | ||||
|     "purchasePrice": "購入金額", | ||||
|     "@purchasePrice": {}, | ||||
|     "quantity": "数量", | ||||
|     "@quantity": { | ||||
|         "description": "Quantity" | ||||
|     }, | ||||
|     "quantityEmpty": "数量が空です", | ||||
|     "@quantityEmpty": {}, | ||||
|     "quantityInvalid": "数量が無効です", | ||||
|     "@quantityInvalid": {}, | ||||
|     "quantityPositive": "数量は1以上", | ||||
|     "@quantityPositive": {}, | ||||
|     "queryNoResults": "検索結果はありません", | ||||
|     "@queryNoResults": {}, | ||||
|     "refresh": "更新", | ||||
|     "@refresh": {}, | ||||
|     "refreshing": "更新中", | ||||
|     "@refreshing": {}, | ||||
|     "rejected": "却下済み", | ||||
|     "@rejected": {}, | ||||
|     "releaseNotes": "リリースノート", | ||||
|     "@releaseNotes": {}, | ||||
|     "remove": "削除", | ||||
|     "@remove": { | ||||
|         "description": "remove" | ||||
|     }, | ||||
|     "removeStock": "在庫を削除", | ||||
|     "@removeStock": { | ||||
|         "description": "remove stock" | ||||
|     }, | ||||
|     "reportBug": "不具合の報告", | ||||
|     "@reportBug": {}, | ||||
|     "reportBugDescription": "バグレポートを送信 (GitHub アカウントが必要)", | ||||
|     "@reportBugDescription": {}, | ||||
|     "results": "結果", | ||||
|     "@results": {}, | ||||
|     "request": "リクエスト", | ||||
|     "@request": {}, | ||||
|     "requestingData": "データをリクエスト中", | ||||
|     "@requestingData": {}, | ||||
|     "required": "必須", | ||||
|     "@required": { | ||||
|         "description": "This field is required" | ||||
|     }, | ||||
|     "response400": "不正なリクエスト", | ||||
|     "@response400": {}, | ||||
|     "response401": "認証されていません", | ||||
|     "@response401": {}, | ||||
|     "response403": "権限がありません", | ||||
|     "@response403": {}, | ||||
|     "response404": "リソースが見つかりません", | ||||
|     "@response404": {}, | ||||
|     "response405": "メソッドが許可されていません", | ||||
|     "@response405": {}, | ||||
|     "response429": "リクエストが多すぎます", | ||||
|     "@response429": {}, | ||||
|     "response501": "未実装", | ||||
|     "@response501": {}, | ||||
|     "response503": "サービスは利用できません", | ||||
|     "@response503": {}, | ||||
|     "response505": "このHTTP バージョンはサポートされていません", | ||||
|     "@response505": {}, | ||||
|     "responseData": "応答データ", | ||||
|     "@responseData": {}, | ||||
|     "responseInvalid": "無効な応答", | ||||
|     "@responseInvalid": {}, | ||||
|     "responseUnknown": "不明な応答コード", | ||||
|     "@responseUnknown": {}, | ||||
|     "result": "結果", | ||||
|     "@result": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "returned": "返品済", | ||||
|     "@returned": {}, | ||||
|     "save": "保存", | ||||
|     "@save": { | ||||
|         "description": "Save" | ||||
|     }, | ||||
|     "scanBarcode": "バーコードをスキャン", | ||||
|     "@scanBarcode": {}, | ||||
|     "scanIntoLocation": "スキャンされた在庫場所", | ||||
|     "@scanIntoLocation": {}, | ||||
|     "search": "検索", | ||||
|     "@search": { | ||||
|         "description": "search" | ||||
|     }, | ||||
|     "searchLocation": "在庫場所場所を検索", | ||||
|     "@searchLocation": {}, | ||||
|     "searchParts": "パーツの検索", | ||||
|     "@searchParts": {}, | ||||
|     "searchStock": "在庫を検索", | ||||
|     "@searchStock": {}, | ||||
|     "select": "選択", | ||||
|     "@select": {}, | ||||
|     "selectFile": "ファイルを選択", | ||||
|     "@selectFile": {}, | ||||
|     "selectImage": "画像を選択", | ||||
|     "@selectImage": {}, | ||||
|     "selectLocation": "在庫場所を選択", | ||||
|     "@selectLocation": {}, | ||||
|     "send": "送信", | ||||
|     "@send": {}, | ||||
|     "serialNumber": "シリアルナンバー", | ||||
|     "@serialNumber": {}, | ||||
|     "server": "サーバー", | ||||
|     "@server": {}, | ||||
|     "serverAddress": "サーバーアドレス:", | ||||
|     "@serverAddress": {}, | ||||
|     "serverApiRequired": "必要なAPIバージョン", | ||||
|     "@serverApiRequired": {}, | ||||
|     "serverApiVersion": "サーバー API バージョン", | ||||
|     "@serverApiVersion": {}, | ||||
|     "serverAuthenticationError": "認証エラー", | ||||
|     "@serverAuthenticationError": {}, | ||||
|     "serverCertificateError": "認証エラー", | ||||
|     "@serverCertificateError": {}, | ||||
|     "serverCertificateInvalid": "サーバー HTTPS 証明書が無効です", | ||||
|     "@serverCertificateInvalid": {}, | ||||
|     "serverConnected": "サーバへ接続しました\n", | ||||
|     "@serverConnected": {}, | ||||
|     "serverConnecting": "サーバに接続中", | ||||
|     "@serverConnecting": {}, | ||||
|     "serverCouldNotConnect": "サーバーに接続できませんでした", | ||||
|     "@serverCouldNotConnect": {}, | ||||
|     "serverError": "サーバーエラー", | ||||
|     "@serverError": {}, | ||||
|     "serverDetails": "サーバの詳細", | ||||
|     "@serverDetails": {}, | ||||
|     "serverOld": "旧サーバーのバージョン", | ||||
|     "@serverOld": {}, | ||||
|     "serverSettings": "サーバー設定:", | ||||
|     "@serverSettings": {}, | ||||
|     "serverStart": "サーバーは http[s] で開始する必要があります", | ||||
|     "@serverStart": {}, | ||||
|     "settings": "設定", | ||||
|     "@settings": {}, | ||||
|     "serverInstance": "サーバインスタンス", | ||||
|     "@serverInstance": {}, | ||||
|     "serverNotConnected": "サーバーに接続されていません", | ||||
|     "@serverNotConnected": {}, | ||||
|     "sounds": "サウンド", | ||||
|     "@sounds": {}, | ||||
|     "soundOnBarcodeAction": "バーコード動作で音を鳴らす", | ||||
|     "@soundOnBarcodeAction": {}, | ||||
|     "soundOnServerError": "サーバーのエラー時に音を鳴らす", | ||||
|     "@soundOnServerError": {}, | ||||
|     "status": "ステータス", | ||||
|     "@status": {}, | ||||
|     "statusCode": "ステータスコード", | ||||
|     "@statusCode": {}, | ||||
|     "stock": "在庫", | ||||
|     "@stock": { | ||||
|         "description": "stock" | ||||
|     }, | ||||
|     "stockItem": "在庫アイテム", | ||||
|     "@stockItem": { | ||||
|         "description": "stock item title" | ||||
|     }, | ||||
|     "stockItems": "在庫アイテム", | ||||
|     "@stockItems": {}, | ||||
|     "stockItemCreate": "新しい在庫アイテム", | ||||
|     "@stockItemCreate": {}, | ||||
|     "stockItemCreateDetail": "この場所に新しい在庫アイテムを作成", | ||||
|     "@stockItemCreateDetail": {}, | ||||
|     "stockItemDelete": "在庫アイテムを削除", | ||||
|     "@stockItemDelete": {}, | ||||
|     "stockItemDeleteConfirm": "この在庫アイテムを削除しますか?", | ||||
|     "@stockItemDeleteConfirm": {}, | ||||
|     "stockItemDeleteFailure": "在庫アイテムを削除できませんでした。", | ||||
|     "@stockItemDeleteFailure": {}, | ||||
|     "stockItemDeleteSuccess": "在庫アイテムを削除しました", | ||||
|     "@stockItemDeleteSuccess": {}, | ||||
|     "stockItemHistory": "在庫履歴", | ||||
|     "@stockItemHistory": {}, | ||||
|     "stockItemTransferred": "在庫アイテムが転送されました", | ||||
|     "@stockItemTransferred": {}, | ||||
|     "stockItemUpdated": "在庫アイテムが更新されました", | ||||
|     "@stockItemUpdated": {}, | ||||
|     "stockItemsNotAvailable": "在庫アイテムがありません", | ||||
|     "@stockItemsNotAvailable": {}, | ||||
|     "stockItemNotes": "在庫アイテムメモ", | ||||
|     "@stockItemNotes": {}, | ||||
|     "stockItemUpdateSuccess": "在庫アイテムが更新されました", | ||||
|     "@stockItemUpdateSuccess": {}, | ||||
|     "stockItemUpdateFailure": "在庫アイテムの更新に失敗しました", | ||||
|     "@stockItemUpdateFailure": {}, | ||||
|     "stockLocation": "在庫場所", | ||||
|     "@stockLocation": { | ||||
|         "description": "stock location" | ||||
|     }, | ||||
|     "stockLocations": "在庫場所", | ||||
|     "@stockLocations": {}, | ||||
|     "stockTopLevel": "トップレベルの在庫場所", | ||||
|     "@stockTopLevel": {}, | ||||
|     "strictHttps": "厳格なHTTPSを使用", | ||||
|     "@strictHttps": {}, | ||||
|     "subcategory": "サブカテゴリー", | ||||
|     "@subcategory": {}, | ||||
|     "subcategories": "サブカテゴリー", | ||||
|     "@subcategories": {}, | ||||
|     "sublocation": "サブ在庫場所", | ||||
|     "@sublocation": {}, | ||||
|     "sublocations": "サブ在庫場所", | ||||
|     "@sublocations": {}, | ||||
|     "sublocationNone": "サブ在庫場所がありません", | ||||
|     "@sublocationNone": {}, | ||||
|     "sublocationNoneDetail": "利用可能なサブ在庫場所がありません", | ||||
|     "@sublocationNoneDetail": {}, | ||||
|     "submitFeedback": "フィードバックを送信", | ||||
|     "@submitFeedback": {}, | ||||
|     "supplier": "サプライヤー", | ||||
|     "@supplier": {}, | ||||
|     "suppliers": "サプライヤー", | ||||
|     "@suppliers": {}, | ||||
|     "takePicture": "画像を撮影", | ||||
|     "@takePicture": {}, | ||||
|     "templatePart": "上位テンプレートパーツ", | ||||
|     "@templatePart": {}, | ||||
|     "testName": "テスト名", | ||||
|     "@testName": {}, | ||||
|     "testPassedOrFailed": "テストの合格または失敗", | ||||
|     "@testPassedOrFailed": {}, | ||||
|     "testsRequired": "必須テスト", | ||||
|     "@testsRequired": {}, | ||||
|     "testResults": "テスト結果", | ||||
|     "@testResults": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "testResultAdd": "テスト結果を追加", | ||||
|     "@testResultAdd": {}, | ||||
|     "testResultNone": "テスト結果がありません", | ||||
|     "@testResultNone": {}, | ||||
|     "testResultNoneDetail": "利用可能なテスト結果がありません", | ||||
|     "@testResultNoneDetail": {}, | ||||
|     "testResultUploadFail": "テスト結果のアップロードエラー", | ||||
|     "@testResultUploadFail": {}, | ||||
|     "testResultUploadPass": "テスト結果がアップロードされました", | ||||
|     "@testResultUploadPass": {}, | ||||
|     "timeout": "タイムアウト", | ||||
|     "@timeout": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "tokenError": "トークンエラー", | ||||
|     "@tokenError": {}, | ||||
|     "tokenMissing": "トークンがありません", | ||||
|     "@tokenMissing": {}, | ||||
|     "tokenMissingFromResponse": "アクセストークンが見つかりませんでした", | ||||
|     "@tokenMissingFromResponse": {}, | ||||
|     "transfer": "転送", | ||||
|     "@transfer": { | ||||
|         "description": "transfer" | ||||
|     }, | ||||
|     "transferStock": "在庫の転送", | ||||
|     "@transferStock": { | ||||
|         "description": "transfer stock" | ||||
|     }, | ||||
|     "translate": "翻訳", | ||||
|     "@translate": {}, | ||||
|     "translateHelp": "InvenTree アプリの翻訳に協力する", | ||||
|     "@translateHelp": {}, | ||||
|     "units": "単位", | ||||
|     "@units": {}, | ||||
|     "unknownResponse": "不明な応答", | ||||
|     "@unknownResponse": {}, | ||||
|     "upload": "アップロード", | ||||
|     "@upload": {}, | ||||
|     "uploadFailed": "ファイルのアップロードに失敗しました。", | ||||
|     "@uploadFailed": {}, | ||||
|     "uploadSuccess": "アップロードされたファイル", | ||||
|     "@uploadSuccess": {}, | ||||
|     "username": "ユーザー名", | ||||
|     "@username": {}, | ||||
|     "usernameEmpty": "ユーザー名は空にできません。", | ||||
|     "@usernameEmpty": {}, | ||||
|     "value": "設定値", | ||||
|     "@value": { | ||||
|         "description": "value" | ||||
|     }, | ||||
|     "valueCannotBeEmpty": "値を空にすることはできません。", | ||||
|     "@valueCannotBeEmpty": {}, | ||||
|     "valueRequired": "値が必要です", | ||||
|     "@valueRequired": {}, | ||||
|     "version": "バージョン", | ||||
|     "@version": {}, | ||||
|     "website": "Webサイト", | ||||
|     "@website": {} | ||||
| } | ||||
							
								
								
									
										105
									
								
								lib/l10n/ko/app_ko.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										105
									
								
								lib/l10n/ko/app_ko.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,105 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "add": "추가", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "address": "주소", | ||||
|     "@address": {}, | ||||
|     "appAbout": "InvenTree 소개", | ||||
|     "@appAbout": {}, | ||||
|     "appReleaseNotes": "앱 릴리즈 노트 표시", | ||||
|     "@appReleaseNotes": {}, | ||||
|     "appSettings": "앱 설정", | ||||
|     "@appSettings": {}, | ||||
|     "billOfMaterials": "부품 명세서", | ||||
|     "@billOfMaterials": {}, | ||||
|     "cancel": "취소", | ||||
|     "@cancel": { | ||||
|         "description": "Cancel" | ||||
|     }, | ||||
|     "company": "회사", | ||||
|     "@company": {}, | ||||
|     "companyEdit": "회사 수정", | ||||
|     "@companyEdit": {}, | ||||
|     "error": "오류", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorDetails": "오류 세부 정보", | ||||
|     "@errorDetails": {}, | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "keywords": "키워드", | ||||
|     "@keywords": {}, | ||||
|     "noResults": "결과 없음", | ||||
|     "@noResults": {}, | ||||
|     "password": "비밀번호", | ||||
|     "@password": {}, | ||||
|     "passwordEmpty": "비밀번호는 비워둘 수 없습니다", | ||||
|     "@passwordEmpty": {}, | ||||
|     "permissionAccountDenied": "귀하의 계정은 이 작업에 필요한 권한이 없습니다", | ||||
|     "@permissionAccountDenied": {}, | ||||
|     "profileConnect": "서버에 연결", | ||||
|     "@profileConnect": {}, | ||||
|     "quantity": "수량", | ||||
|     "@quantity": { | ||||
|         "description": "Quantity" | ||||
|     }, | ||||
|     "reportBug": "버그 신고", | ||||
|     "@reportBug": {}, | ||||
|     "response505": "지원되지 않는 HTTP 버전", | ||||
|     "@response505": {}, | ||||
|     "save": "저장", | ||||
|     "@save": { | ||||
|         "description": "Save" | ||||
|     }, | ||||
|     "select": "선택", | ||||
|     "@select": {}, | ||||
|     "selectFile": "파일 선택", | ||||
|     "@selectFile": {}, | ||||
|     "server": "서버", | ||||
|     "@server": {}, | ||||
|     "serverAddress": "서버 주소", | ||||
|     "@serverAddress": {}, | ||||
|     "serverApiRequired": "필요한 API 버전", | ||||
|     "@serverApiRequired": {}, | ||||
|     "serverApiVersion": "서버 API 버전", | ||||
|     "@serverApiVersion": {}, | ||||
|     "serverAuthenticationError": "인증 오류", | ||||
|     "@serverAuthenticationError": {}, | ||||
|     "serverConnecting": "서버에 연결하는 중", | ||||
|     "@serverConnecting": {}, | ||||
|     "serverError": "서버 오류", | ||||
|     "@serverError": {}, | ||||
|     "serverOld": "오래된 서버 버전", | ||||
|     "@serverOld": {}, | ||||
|     "serverSettings": "서버 설정", | ||||
|     "@serverSettings": {}, | ||||
|     "serverStart": "서버 주소는 http[s] 로 시작해야 합니다", | ||||
|     "@serverStart": {}, | ||||
|     "status": "상태", | ||||
|     "@status": {}, | ||||
|     "statusCode": "상태 코드", | ||||
|     "@statusCode": {}, | ||||
|     "targetDate": "목표 날짜", | ||||
|     "@targetDate": {}, | ||||
|     "timeout": "시간 초과", | ||||
|     "@timeout": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "tokenError": "토큰 오류", | ||||
|     "@tokenError": {}, | ||||
|     "translate": "번역", | ||||
|     "@translate": {}, | ||||
|     "translateHelp": "InvenTree 앱의 번역을 도와주세요", | ||||
|     "@translateHelp": {}, | ||||
|     "version": "버전", | ||||
|     "@version": {}, | ||||
|     "website": "웹사이트", | ||||
|     "@website": {} | ||||
| } | ||||
							
								
								
									
										5
									
								
								lib/l10n/nl/app_nl.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								lib/l10n/nl/app_nl.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {} | ||||
| } | ||||
							
								
								
									
										5
									
								
								lib/l10n/no/app_no.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								lib/l10n/no/app_no.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {} | ||||
| } | ||||
							
								
								
									
										739
									
								
								lib/l10n/pl/app_pl.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										739
									
								
								lib/l10n/pl/app_pl.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,739 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "ok": "OK", | ||||
|     "@ok": { | ||||
|         "description": "OK" | ||||
|     }, | ||||
|     "about": "O nas", | ||||
|     "@about": {}, | ||||
|     "accountDetails": "Szczegóły konta", | ||||
|     "@accountDetails": {}, | ||||
|     "actions": "Działania", | ||||
|     "@actions": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "actionsNone": "Brak dostępnych działań", | ||||
|     "@actionsNone": {}, | ||||
|     "add": "Dodaj", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "addStock": "Dodaj stan", | ||||
|     "@addStock": { | ||||
|         "description": "add stock" | ||||
|     }, | ||||
|     "address": "Adresy", | ||||
|     "@address": {}, | ||||
|     "appAbout": "O InvenTree", | ||||
|     "@appAbout": {}, | ||||
|     "appCredits": "Dodatkowe podziękowania autorskie", | ||||
|     "@appCredits": {}, | ||||
|     "appDetails": "Szczegóły aplikacji", | ||||
|     "@appDetails": {}, | ||||
|     "appReleaseNotes": "Wyświetl informacje o historii aktualizacji", | ||||
|     "@appReleaseNotes": {}, | ||||
|     "appSettings": "Ustawienia aplikacji", | ||||
|     "@appSettings": {}, | ||||
|     "appSettingsDetails": "Konfiguruj ustawienia aplikacji InvenTree", | ||||
|     "@appSettingsDetails": {}, | ||||
|     "attachments": "Załączniki", | ||||
|     "@attachments": {}, | ||||
|     "attachImage": "Dodaj zdjęcie", | ||||
|     "@attachImage": { | ||||
|         "description": "Attach an image" | ||||
|     }, | ||||
|     "attachmentNone": "Nie znaleziono załączników", | ||||
|     "@attachmentNone": {}, | ||||
|     "attachmentNonePartDetail": "Brak załączników dla tego komponentu", | ||||
|     "@attachmentNonePartDetail": {}, | ||||
|     "attachmentSelect": "Wybierz załącznik", | ||||
|     "@attachmentSelect": {}, | ||||
|     "attention": "Uwaga", | ||||
|     "@attention": {}, | ||||
|     "barcodeAssign": "Przypisz kod kreskowy", | ||||
|     "@barcodeAssign": {}, | ||||
|     "barcodeAssigned": "Kod kreskowy przypisany", | ||||
|     "@barcodeAssigned": {}, | ||||
|     "barcodeError": "Błąd czytnika kodów kreskowych", | ||||
|     "@barcodeError": {}, | ||||
|     "barcodeInUse": "Kod kreskowy jest już przypisany", | ||||
|     "@barcodeInUse": {}, | ||||
|     "barcodeMissingHash": "Brak danych haszujących w odpowiedzi kodu kreskowego", | ||||
|     "@barcodeMissingHash": {}, | ||||
|     "barcodeNoMatch": "Brak dopasowania dla kodu kreskowego", | ||||
|     "@barcodeNoMatch": {}, | ||||
|     "barcodeNotAssigned": "Kod kreskowy nieprzypisany", | ||||
|     "@barcodeNotAssigned": {}, | ||||
|     "barcodeScanAssign": "Zeskanuj aby przypisać kod kreskowy", | ||||
|     "@barcodeScanAssign": {}, | ||||
|     "barcodeScanGeneral": "Zeskanuj kod kreskowy InvenTree", | ||||
|     "@barcodeScanGeneral": {}, | ||||
|     "barcodeScanInItems": "Zeskanuj przedmioty do lokalizacji", | ||||
|     "@barcodeScanInItems": {}, | ||||
|     "barcodeScanLocation": "Skanuj lokalizację zapasów", | ||||
|     "@barcodeScanLocation": {}, | ||||
|     "barcodeScanIntoLocationSuccess": "Zeskanowano do lokacji", | ||||
|     "@barcodeScanIntoLocationSuccess": {}, | ||||
|     "barcodeScanIntoLocationFailure": "Przedmiot nie zeskanowany do", | ||||
|     "@barcodeScanIntoLocationFailure": {}, | ||||
|     "barcodeScanItem": "Skanuj element magazynowy", | ||||
|     "@barcodeScanItem": {}, | ||||
|     "barcodeTones": "Dźwięki kodów kreskowych", | ||||
|     "@barcodeTones": {}, | ||||
|     "barcodeUnassign": "Nieprzydzielony kod kreskowy", | ||||
|     "@barcodeUnassign": {}, | ||||
|     "barcodeUnknown": "Nie rozpoznano kodu kreskowego", | ||||
|     "@barcodeUnknown": {}, | ||||
|     "batchCode": "Kod partii", | ||||
|     "@batchCode": {}, | ||||
|     "billOfMaterials": "Zestawienie materiałów", | ||||
|     "@billOfMaterials": {}, | ||||
|     "bom": "BOM", | ||||
|     "@bom": {}, | ||||
|     "build": "Budowa", | ||||
|     "@build": {}, | ||||
|     "building": "Budowanie", | ||||
|     "@building": {}, | ||||
|     "cancel": "Anuluj", | ||||
|     "@cancel": { | ||||
|         "description": "Cancel" | ||||
|     }, | ||||
|     "category": "Kategoria", | ||||
|     "@category": {}, | ||||
|     "categoryCreate": "Nowa Kategoria", | ||||
|     "@categoryCreate": {}, | ||||
|     "categoryCreateDetail": "Utwórz nową kategorię komponentu", | ||||
|     "@categoryCreateDetail": {}, | ||||
|     "categoryUpdated": "Kategoria części została zmieniona", | ||||
|     "@categoryUpdated": {}, | ||||
|     "company": "Firma", | ||||
|     "@company": {}, | ||||
|     "companyEdit": "Edytuj Firmę", | ||||
|     "@companyEdit": {}, | ||||
|     "companyNoResults": "Brak firm pasujących do zapytania", | ||||
|     "@companyNoResults": {}, | ||||
|     "companyUpdated": "Szczegóły firmy zostały zaktualizowane", | ||||
|     "@companyUpdated": {}, | ||||
|     "companies": "Firmy", | ||||
|     "@companies": {}, | ||||
|     "configureServer": "Konfiguruj ustawienia serwera", | ||||
|     "@configureServer": {}, | ||||
|     "connectionRefused": "Połączenie odrzucone", | ||||
|     "@connectionRefused": {}, | ||||
|     "count": "Ilość", | ||||
|     "@count": { | ||||
|         "description": "Count" | ||||
|     }, | ||||
|     "countStock": "Przelicz stan", | ||||
|     "@countStock": { | ||||
|         "description": "Count Stock" | ||||
|     }, | ||||
|     "credits": "Podziękowania", | ||||
|     "@credits": {}, | ||||
|     "customers": "Klienci", | ||||
|     "@customers": {}, | ||||
|     "damaged": "Uszkodzone", | ||||
|     "@damaged": {}, | ||||
|     "delete": "Usuń", | ||||
|     "@delete": {}, | ||||
|     "deletePart": "Usuń Komponent", | ||||
|     "@deletePart": {}, | ||||
|     "deletePartDetail": "Usuń ten komponent z bazy danych", | ||||
|     "@deletePartDetail": {}, | ||||
|     "description": "Opis", | ||||
|     "@description": {}, | ||||
|     "destroyed": "Zniszczony", | ||||
|     "@destroyed": {}, | ||||
|     "details": "Szczegóły", | ||||
|     "@details": { | ||||
|         "description": "details" | ||||
|     }, | ||||
|     "documentation": "Dokumentacja", | ||||
|     "@documentation": {}, | ||||
|     "downloading": "Pobieranie Pliku", | ||||
|     "@downloading": {}, | ||||
|     "downloadError": "Błąd Pobierania", | ||||
|     "@downloadError": {}, | ||||
|     "edit": "Edytuj", | ||||
|     "@edit": { | ||||
|         "description": "edit" | ||||
|     }, | ||||
|     "editCategory": "Edytuj kategorię", | ||||
|     "@editCategory": {}, | ||||
|     "editLocation": "Edytuj lokację", | ||||
|     "@editLocation": {}, | ||||
|     "editNotes": "Edytuj Notatki", | ||||
|     "@editNotes": {}, | ||||
|     "editPart": "Edytuj część", | ||||
|     "@editPart": { | ||||
|         "description": "edit part" | ||||
|     }, | ||||
|     "editItem": "Edytuj Pozycję Magazynową", | ||||
|     "@editItem": {}, | ||||
|     "enterPassword": "Wprowadź hasło", | ||||
|     "@enterPassword": {}, | ||||
|     "enterUsername": "Wprowadź nazwę użytkownika", | ||||
|     "@enterUsername": {}, | ||||
|     "error": "Błąd", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorCreate": "Błąd tworzenia wpisu w bazie danych", | ||||
|     "@errorCreate": {}, | ||||
|     "errorDelete": "Błąd podczas usuwania wpisu bazy danych", | ||||
|     "@errorDelete": {}, | ||||
|     "errorDetails": "Szczegóły błędu", | ||||
|     "@errorDetails": {}, | ||||
|     "errorFetch": "Błąd pobierania danych z serwea", | ||||
|     "@errorFetch": {}, | ||||
|     "errorReporting": "Raportowanie błędów", | ||||
|     "@errorReporting": {}, | ||||
|     "errorReportUpload": "Prześlij raport o błędach", | ||||
|     "@errorReportUpload": {}, | ||||
|     "errorReportUploadDetails": "Prześlij anonimowe raporty o błędach i dzienniki awarii", | ||||
|     "@errorReportUploadDetails": {}, | ||||
|     "feedback": "Opinie", | ||||
|     "@feedback": {}, | ||||
|     "feedbackError": "Błąd dodawania opinii", | ||||
|     "@feedbackError": {}, | ||||
|     "feedbackSuccess": "Opinia przesłana", | ||||
|     "@feedbackSuccess": {}, | ||||
|     "formatException": "Wyjątek formatowania", | ||||
|     "@formatException": {}, | ||||
|     "formatExceptionJson": "Wyjątek formatu danych JSON", | ||||
|     "@formatExceptionJson": {}, | ||||
|     "formError": "Błąd Formularza", | ||||
|     "@formError": {}, | ||||
|     "history": "Historia", | ||||
|     "@history": { | ||||
|         "description": "history" | ||||
|     }, | ||||
|     "homeScreen": "Ekran główny", | ||||
|     "@homeScreen": {}, | ||||
|     "homeScreenSettings": "Konfiguruj ustawienia ekranu głównego", | ||||
|     "@homeScreenSettings": {}, | ||||
|     "homeShowPo": "Pokaż zamówienia zakupu", | ||||
|     "@homeShowPo": {}, | ||||
|     "homeShowSubscribed": "Obserwowane części", | ||||
|     "@homeShowSubscribed": {}, | ||||
|     "homeShowSubscribedDescription": "Pokaż obserwowane elementy na stronie głównej", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "homeShowPoDescription": "Pokaż przycisk zamówienia zakupu na ekranie głównym", | ||||
|     "@homeShowPoDescription": {}, | ||||
|     "homeShowSuppliers": "Pokaż dostawców", | ||||
|     "@homeShowSuppliers": {}, | ||||
|     "homeShowSuppliersDescription": "Pokaż przycisk dostawców na ekranie głównym", | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "homeShowManufacturers": "Pokaż producentów", | ||||
|     "@homeShowManufacturers": {}, | ||||
|     "homeShowManufacturersDescription": "Pokaż przycisk producentów na ekranie głównym", | ||||
|     "@homeShowManufacturersDescription": {}, | ||||
|     "homeShowCustomers": "Pokaż klientów", | ||||
|     "@homeShowCustomers": {}, | ||||
|     "homeShowCustomersDescription": "Pokaż przycisk klientów na ekranie głównym", | ||||
|     "@homeShowCustomersDescription": {}, | ||||
|     "imageUploadFailure": "Przesyłanie zdjęcia nie powiodło się", | ||||
|     "@imageUploadFailure": {}, | ||||
|     "imageUploadSuccess": "Obraz przesłany", | ||||
|     "@imageUploadSuccess": {}, | ||||
|     "inactive": "Nieaktywny", | ||||
|     "@inactive": {}, | ||||
|     "inactiveDetail": "Ta część jest oznaczona jako nieaktywna", | ||||
|     "@inactiveDetail": {}, | ||||
|     "includeSubcategories": "Zawieraj podkategorie", | ||||
|     "@includeSubcategories": {}, | ||||
|     "includeSubcategoriesDetail": "Wyświetl części z podkategorii w widoku listy", | ||||
|     "@includeSubcategoriesDetail": {}, | ||||
|     "includeSublocations": "Zawieraj sublokacje", | ||||
|     "@includeSublocations": {}, | ||||
|     "includeSublocationsDetail": "Wyświetl części z sublokacji w widoku listy", | ||||
|     "@includeSublocationsDetail": {}, | ||||
|     "incompleteDetails": "Niekompletne szczegóły profilu", | ||||
|     "@incompleteDetails": {}, | ||||
|     "internalPartNumber": "Wewnętrzny numer części", | ||||
|     "@internalPartNumber": {}, | ||||
|     "info": "Info", | ||||
|     "@info": {}, | ||||
|     "inProduction": "W produkcji", | ||||
|     "@inProduction": {}, | ||||
|     "inProductionDetail": "Ten przedmiot magazynowy jest w produkcji", | ||||
|     "@inProductionDetail": {}, | ||||
|     "invalidHost": "Nieprawidłowa nazwa hosta", | ||||
|     "@invalidHost": {}, | ||||
|     "invalidHostDetails": "Podana nazwa serwera jest nieprawidłowa", | ||||
|     "@invalidHostDetails": {}, | ||||
|     "invalidPart": "Nieprawidłowa część", | ||||
|     "@invalidPart": {}, | ||||
|     "invalidPartCategory": "Nieprawidłowa kategoria części", | ||||
|     "@invalidPartCategory": {}, | ||||
|     "invalidStockLocation": "Nieprawidłowa lokacja magazynowa", | ||||
|     "@invalidStockLocation": {}, | ||||
|     "invalidStockItem": "Nieprawidłowa część magazynowa", | ||||
|     "@invalidStockItem": {}, | ||||
|     "invalidUsernamePassword": "Nieprawidłowy login lub hasło", | ||||
|     "@invalidUsernamePassword": {}, | ||||
|     "issueDate": "Data Wystawienia", | ||||
|     "@issueDate": {}, | ||||
|     "itemInLocation": "Część jest już w lokacji", | ||||
|     "@itemInLocation": {}, | ||||
|     "keywords": "Słowa kluczowe", | ||||
|     "@keywords": {}, | ||||
|     "lastStocktake": "Ostatnia inwentaryzacja", | ||||
|     "@lastStocktake": {}, | ||||
|     "lastUpdated": "Ostatnia aktualizacja", | ||||
|     "@lastUpdated": {}, | ||||
|     "lineItem": "Pozycja", | ||||
|     "@lineItem": {}, | ||||
|     "lineItems": "Pozycje", | ||||
|     "@lineItems": {}, | ||||
|     "locationCreate": "Nowa Lokalizacja", | ||||
|     "@locationCreate": {}, | ||||
|     "locationCreateDetail": "Utwórz nową pozycję magazynową", | ||||
|     "@locationCreateDetail": {}, | ||||
|     "locationNotSet": "Nie określono lokacji", | ||||
|     "@locationNotSet": {}, | ||||
|     "locationUpdated": "Lokalizacja stanu magazynowego została zaktualizowana", | ||||
|     "@locationUpdated": {}, | ||||
|     "link": "Link", | ||||
|     "@link": {}, | ||||
|     "lost": "Zagubiono", | ||||
|     "@lost": {}, | ||||
|     "manufacturers": "Producenci", | ||||
|     "@manufacturers": {}, | ||||
|     "missingData": "Brakujące dane", | ||||
|     "@missingData": {}, | ||||
|     "name": "Nazwa", | ||||
|     "@name": {}, | ||||
|     "notConnected": "Nie połączony", | ||||
|     "@notConnected": {}, | ||||
|     "notes": "Notatki", | ||||
|     "@notes": { | ||||
|         "description": "Notes" | ||||
|     }, | ||||
|     "noResponse": "Brak odpowiedzi od serwera", | ||||
|     "@noResponse": {}, | ||||
|     "noResults": "Brak wyników", | ||||
|     "@noResults": {}, | ||||
|     "noSubcategories": "Brak podkategorii", | ||||
|     "@noSubcategories": {}, | ||||
|     "noSubcategoriesAvailable": "Brak dostępnych podkategorii", | ||||
|     "@noSubcategoriesAvailable": {}, | ||||
|     "numberInvalid": "Błędny numer", | ||||
|     "@numberInvalid": {}, | ||||
|     "onOrder": "W Zamówieniu", | ||||
|     "@onOrder": {}, | ||||
|     "onOrderDetails": "Pozycje obecnie w zamówieniu", | ||||
|     "@onOrderDetails": {}, | ||||
|     "packaging": "Opakowanie", | ||||
|     "@packaging": {}, | ||||
|     "packageName": "Nazwa pakietu", | ||||
|     "@packageName": {}, | ||||
|     "parent": "Nadrzędny", | ||||
|     "@parent": {}, | ||||
|     "parentCategory": "Kategoria nadrzędna", | ||||
|     "@parentCategory": {}, | ||||
|     "parentLocation": "Lokalizacja Nadrzędna", | ||||
|     "@parentLocation": {}, | ||||
|     "part": "Część", | ||||
|     "@part": { | ||||
|         "description": "Part (single)" | ||||
|     }, | ||||
|     "partCreate": "Nowy Komponent", | ||||
|     "@partCreate": {}, | ||||
|     "partCreateDetail": "Utwórz nowy komponent w tej kategorii", | ||||
|     "@partCreateDetail": {}, | ||||
|     "partEdited": "Część zaktualizowana", | ||||
|     "@partEdited": {}, | ||||
|     "parts": "Części", | ||||
|     "@parts": { | ||||
|         "description": "Part (multiple)" | ||||
|     }, | ||||
|     "partsNone": "Brak części", | ||||
|     "@partsNone": {}, | ||||
|     "partNoResults": "Brak komponentów pasujących do zapytania", | ||||
|     "@partNoResults": {}, | ||||
|     "partsStarred": "Obserwowane części", | ||||
|     "@partsStarred": {}, | ||||
|     "partsStarredNone": "Brak części oznaczonych gwiazdką", | ||||
|     "@partsStarredNone": {}, | ||||
|     "partSuppliers": "Dostawcy Części", | ||||
|     "@partSuppliers": {}, | ||||
|     "partCategory": "Kategoria części", | ||||
|     "@partCategory": {}, | ||||
|     "partCategoryTopLevel": "Kategoria części najwyższego poziomu", | ||||
|     "@partCategoryTopLevel": {}, | ||||
|     "partCategories": "Kategorie części", | ||||
|     "@partCategories": {}, | ||||
|     "partDetails": "Szczegóły części", | ||||
|     "@partDetails": {}, | ||||
|     "partNotes": "Notatki do części", | ||||
|     "@partNotes": {}, | ||||
|     "partStock": "Zapasy cześci", | ||||
|     "@partStock": { | ||||
|         "description": "part stock" | ||||
|     }, | ||||
|     "password": "Hasło", | ||||
|     "@password": {}, | ||||
|     "passwordEmpty": "Hasło nie może być puste", | ||||
|     "@passwordEmpty": {}, | ||||
|     "permissionAccountDenied": "Nie masz wystarczających uprawnień do wykonania tej czynności", | ||||
|     "@permissionAccountDenied": {}, | ||||
|     "permissionRequired": "Wymagane uprawnienia", | ||||
|     "@permissionRequired": {}, | ||||
|     "printLabel": "Drukuj etykietę", | ||||
|     "@printLabel": {}, | ||||
|     "printLabelFailure": "Drukowanie etykiet nie powiodło się", | ||||
|     "@printLabelFailure": {}, | ||||
|     "printLabelSuccess": "Etykieta wysłana do drukarki", | ||||
|     "@printLabelSuccess": {}, | ||||
|     "profile": "Profil", | ||||
|     "@profile": {}, | ||||
|     "profileAdd": "Dodaj profil serwera", | ||||
|     "@profileAdd": {}, | ||||
|     "profileConnect": "Połącz się z serwerem", | ||||
|     "@profileConnect": {}, | ||||
|     "profileEdit": "Edytuj profil serwera", | ||||
|     "@profileEdit": {}, | ||||
|     "profileDelete": "Usuń profil serwera", | ||||
|     "@profileDelete": {}, | ||||
|     "profileName": "Nazwa Profilu", | ||||
|     "@profileName": {}, | ||||
|     "profileNone": "Brak dostępnych profili", | ||||
|     "@profileNone": {}, | ||||
|     "profileNotSelected": "Nie wybrano profilu", | ||||
|     "@profileNotSelected": {}, | ||||
|     "profileSelect": "Wybierz serwer InvenTree", | ||||
|     "@profileSelect": {}, | ||||
|     "profileTapToCreate": "Dotknij, aby utworzyć lub wybrać profil", | ||||
|     "@profileTapToCreate": {}, | ||||
|     "purchaseOrder": "Zlecenie Zakupu", | ||||
|     "@purchaseOrder": {}, | ||||
|     "purchaseOrderEdit": "Edytuj Zlecenie Zakupu", | ||||
|     "@purchaseOrderEdit": {}, | ||||
|     "purchaseOrders": "Zlecenia zakupu", | ||||
|     "@purchaseOrders": {}, | ||||
|     "purchaseOrderUpdated": "Zamówienie zakupu zaktualizowane", | ||||
|     "@purchaseOrderUpdated": {}, | ||||
|     "purchasePrice": "Cena Zakupu", | ||||
|     "@purchasePrice": {}, | ||||
|     "quantity": "Ilość", | ||||
|     "@quantity": { | ||||
|         "description": "Quantity" | ||||
|     }, | ||||
|     "quantityEmpty": "Ilość jest pusta", | ||||
|     "@quantityEmpty": {}, | ||||
|     "quantityInvalid": "Ilość jest nieprawidłowa", | ||||
|     "@quantityInvalid": {}, | ||||
|     "quantityPositive": "Ilość musi być dodatnia", | ||||
|     "@quantityPositive": {}, | ||||
|     "queryNoResults": "Nie znaleziono wyników dla zapytania", | ||||
|     "@queryNoResults": {}, | ||||
|     "received": "Odebrane", | ||||
|     "@received": {}, | ||||
|     "receiveItem": "Przyjmij artykuły", | ||||
|     "@receiveItem": {}, | ||||
|     "receivedItem": "Przyjęta Pozycja Magazynowa", | ||||
|     "@receivedItem": {}, | ||||
|     "refresh": "Odśwież", | ||||
|     "@refresh": {}, | ||||
|     "refreshing": "Odświeżanie", | ||||
|     "@refreshing": {}, | ||||
|     "rejected": "Odrzucono", | ||||
|     "@rejected": {}, | ||||
|     "releaseNotes": "Lista zmian", | ||||
|     "@releaseNotes": {}, | ||||
|     "remove": "Usuń", | ||||
|     "@remove": { | ||||
|         "description": "remove" | ||||
|     }, | ||||
|     "removeStock": "Usuń stan", | ||||
|     "@removeStock": { | ||||
|         "description": "remove stock" | ||||
|     }, | ||||
|     "reportBug": "Zgłoś błąd", | ||||
|     "@reportBug": {}, | ||||
|     "reportBugDescription": "Prześlij raport o błędzie (wymaga konta GitHub)", | ||||
|     "@reportBugDescription": {}, | ||||
|     "results": "Wyniki", | ||||
|     "@results": {}, | ||||
|     "request": "Żądanie", | ||||
|     "@request": {}, | ||||
|     "requestingData": "Żądanie danych", | ||||
|     "@requestingData": {}, | ||||
|     "required": "Wymagane", | ||||
|     "@required": { | ||||
|         "description": "This field is required" | ||||
|     }, | ||||
|     "response400": "Błędne żądanie", | ||||
|     "@response400": {}, | ||||
|     "response401": "Nieautoryzowany", | ||||
|     "@response401": {}, | ||||
|     "response403": "Odmowa dostępu", | ||||
|     "@response403": {}, | ||||
|     "response404": "Nie znaleziono", | ||||
|     "@response404": {}, | ||||
|     "response405": "Metoda niedozwolona", | ||||
|     "@response405": {}, | ||||
|     "response429": "Zbyt wiele żądań", | ||||
|     "@response429": {}, | ||||
|     "response500": "Wewnętrzny błąd serwera", | ||||
|     "@response500": {}, | ||||
|     "response501": "Nie zaimplementowano", | ||||
|     "@response501": {}, | ||||
|     "response502": "Zła brama", | ||||
|     "@response502": {}, | ||||
|     "response503": "Usługa niedostępna", | ||||
|     "@response503": {}, | ||||
|     "response504": "Przekroczono limit czasu", | ||||
|     "@response504": {}, | ||||
|     "response505": "Wersja HTTP nie obsługiwana", | ||||
|     "@response505": {}, | ||||
|     "responseData": "Dane odpowiedzi", | ||||
|     "@responseData": {}, | ||||
|     "responseInvalid": "Nieprawidłowy kod odpowiedzi", | ||||
|     "@responseInvalid": {}, | ||||
|     "responseUnknown": "Nieznana odpowiedź", | ||||
|     "@responseUnknown": {}, | ||||
|     "result": "Wynik", | ||||
|     "@result": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "returned": "Zwrócono", | ||||
|     "@returned": {}, | ||||
|     "salesOrders": "Zlecenia Sprzedaży", | ||||
|     "@salesOrders": {}, | ||||
|     "save": "Zapisz", | ||||
|     "@save": { | ||||
|         "description": "Save" | ||||
|     }, | ||||
|     "scanBarcode": "Skanuj kod kreskowy", | ||||
|     "@scanBarcode": {}, | ||||
|     "scanIntoLocation": "Skanuj do lokacji", | ||||
|     "@scanIntoLocation": {}, | ||||
|     "search": "Szukaj", | ||||
|     "@search": { | ||||
|         "description": "search" | ||||
|     }, | ||||
|     "searchLocation": "Wyszukaj lokalizację", | ||||
|     "@searchLocation": {}, | ||||
|     "searchParts": "Szukaj części", | ||||
|     "@searchParts": {}, | ||||
|     "searchStock": "Szukaj zapasów", | ||||
|     "@searchStock": {}, | ||||
|     "select": "Wybierz", | ||||
|     "@select": {}, | ||||
|     "selectFile": "Wybierz Plik", | ||||
|     "@selectFile": {}, | ||||
|     "selectImage": "Wybierz obraz", | ||||
|     "@selectImage": {}, | ||||
|     "selectLocation": "Wybierz lokację", | ||||
|     "@selectLocation": {}, | ||||
|     "send": "Wyślij", | ||||
|     "@send": {}, | ||||
|     "serialNumber": "Numer seryjny", | ||||
|     "@serialNumber": {}, | ||||
|     "server": "Serwer", | ||||
|     "@server": {}, | ||||
|     "serverAddress": "Adres serwera", | ||||
|     "@serverAddress": {}, | ||||
|     "serverApiRequired": "Wymagana wersja API", | ||||
|     "@serverApiRequired": {}, | ||||
|     "serverApiVersion": "Wersja API serwera", | ||||
|     "@serverApiVersion": {}, | ||||
|     "serverAuthenticationError": "Błąd uwierzytelniania", | ||||
|     "@serverAuthenticationError": {}, | ||||
|     "serverCertificateError": "Błąd certyfikatu", | ||||
|     "@serverCertificateError": {}, | ||||
|     "serverCertificateInvalid": "Certyfikat serwera HTTPS jest nieprawidłowy", | ||||
|     "@serverCertificateInvalid": {}, | ||||
|     "serverConnected": "Połączony z serwerem", | ||||
|     "@serverConnected": {}, | ||||
|     "serverConnecting": "Łączenie z serwerem", | ||||
|     "@serverConnecting": {}, | ||||
|     "serverCouldNotConnect": "Nie można połączyć się z serwerem", | ||||
|     "@serverCouldNotConnect": {}, | ||||
|     "serverEmpty": "Serwer nie może być pusty", | ||||
|     "@serverEmpty": {}, | ||||
|     "serverError": "Błąd serwera", | ||||
|     "@serverError": {}, | ||||
|     "serverDetails": "Szczegóły serwera", | ||||
|     "@serverDetails": {}, | ||||
|     "serverMissingData": "Odpowiedź serwera nie ma wymaganych pól", | ||||
|     "@serverMissingData": {}, | ||||
|     "serverOld": "Stara wersja serwera", | ||||
|     "@serverOld": {}, | ||||
|     "serverSettings": "Ustawienia Serwera", | ||||
|     "@serverSettings": {}, | ||||
|     "serverStart": "Serwer musi zaczynać się od http[s]", | ||||
|     "@serverStart": {}, | ||||
|     "settings": "Ustawienia", | ||||
|     "@settings": {}, | ||||
|     "serverInstance": "Instancja serwera", | ||||
|     "@serverInstance": {}, | ||||
|     "serverNotConnected": "Serwer nie podłączony", | ||||
|     "@serverNotConnected": {}, | ||||
|     "sounds": "Dźwięki", | ||||
|     "@sounds": {}, | ||||
|     "soundOnBarcodeAction": "Odtwarzaj dźwięk w trakcie odczytywania kodu kreskowego", | ||||
|     "@soundOnBarcodeAction": {}, | ||||
|     "soundOnServerError": "Odtwarzaj dźwięk podczas błędu serwera", | ||||
|     "@soundOnServerError": {}, | ||||
|     "status": "Status", | ||||
|     "@status": {}, | ||||
|     "statusCode": "Kod statusu", | ||||
|     "@statusCode": {}, | ||||
|     "stock": "Stan", | ||||
|     "@stock": { | ||||
|         "description": "stock" | ||||
|     }, | ||||
|     "stockItem": "Element magazynowy", | ||||
|     "@stockItem": { | ||||
|         "description": "stock item title" | ||||
|     }, | ||||
|     "stockItems": "Elementy magazynowe", | ||||
|     "@stockItems": {}, | ||||
|     "stockItemCreate": "Nowa Pozycja Magazynowa", | ||||
|     "@stockItemCreate": {}, | ||||
|     "stockItemCreateDetail": "Utwórz nową pozycję magazynową w tej lokalizacji", | ||||
|     "@stockItemCreateDetail": {}, | ||||
|     "stockItemDelete": "Usuń przedmiot magazynowy", | ||||
|     "@stockItemDelete": {}, | ||||
|     "stockItemDeleteConfirm": "Czy jesteś pewien, że chcesz usunąć ten przedmiot magazynowy?", | ||||
|     "@stockItemDeleteConfirm": {}, | ||||
|     "stockItemDeleteFailure": "Nie można usunąć przedmiotu magazynowego", | ||||
|     "@stockItemDeleteFailure": {}, | ||||
|     "stockItemDeleteSuccess": "Przedmiot magazynowy usunięty", | ||||
|     "@stockItemDeleteSuccess": {}, | ||||
|     "stockItemHistory": "Historia zapasów", | ||||
|     "@stockItemHistory": {}, | ||||
|     "stockItemHistoryDetail": "Wyświetl historyczne informacje o śledzeniu stanów magazynowych", | ||||
|     "@stockItemHistoryDetail": {}, | ||||
|     "stockItemTransferred": "Element magazynowy przeniesiony", | ||||
|     "@stockItemTransferred": {}, | ||||
|     "stockItemUpdated": "Zaktualizowano element magazynowy", | ||||
|     "@stockItemUpdated": {}, | ||||
|     "stockItemsNotAvailable": "Brak dostępnych elementów", | ||||
|     "@stockItemsNotAvailable": {}, | ||||
|     "stockItemNotes": "Notatki przedmiotu magazynowego", | ||||
|     "@stockItemNotes": {}, | ||||
|     "stockItemUpdateSuccess": "Zaktualizowano element magazynowy", | ||||
|     "@stockItemUpdateSuccess": {}, | ||||
|     "stockItemUpdateFailure": "Nie zaktualizowano elementu magazynowego", | ||||
|     "@stockItemUpdateFailure": {}, | ||||
|     "stockLocation": "Lokacja stanu", | ||||
|     "@stockLocation": { | ||||
|         "description": "stock location" | ||||
|     }, | ||||
|     "stockLocations": "Lokacje stanów", | ||||
|     "@stockLocations": {}, | ||||
|     "stockTopLevel": "Najwyższy poziom lokalizacji magazynu", | ||||
|     "@stockTopLevel": {}, | ||||
|     "strictHttps": "Ścisły HTTPS", | ||||
|     "@strictHttps": {}, | ||||
|     "strictHttpsDetails": "Wymuś ścisłe sprawdzanie certyfikatów HTTPS", | ||||
|     "@strictHttpsDetails": {}, | ||||
|     "subcategory": "Podkategoria", | ||||
|     "@subcategory": {}, | ||||
|     "subcategories": "Podkategorie", | ||||
|     "@subcategories": {}, | ||||
|     "sublocation": "Sublokacja", | ||||
|     "@sublocation": {}, | ||||
|     "sublocations": "Subblokacje", | ||||
|     "@sublocations": {}, | ||||
|     "sublocationNone": "Brak subblokacji", | ||||
|     "@sublocationNone": {}, | ||||
|     "sublocationNoneDetail": "Brak dostępnych podlokalizacji", | ||||
|     "@sublocationNoneDetail": {}, | ||||
|     "submitFeedback": "Prześlij opinię", | ||||
|     "@submitFeedback": {}, | ||||
|     "suppliedParts": "Dostarczone Części", | ||||
|     "@suppliedParts": {}, | ||||
|     "supplier": "Dostawca", | ||||
|     "@supplier": {}, | ||||
|     "suppliers": "Dostawcy", | ||||
|     "@suppliers": {}, | ||||
|     "supplierReference": "Identyfikator Dostawcy", | ||||
|     "@supplierReference": {}, | ||||
|     "takePicture": "Zrób zdjęcie", | ||||
|     "@takePicture": {}, | ||||
|     "targetDate": "Data Docelowa", | ||||
|     "@targetDate": {}, | ||||
|     "testName": "Nazwa testu", | ||||
|     "@testName": {}, | ||||
|     "testPassedOrFailed": "Test zaliczony lub nieudany", | ||||
|     "@testPassedOrFailed": {}, | ||||
|     "testsRequired": "Wymagane testy", | ||||
|     "@testsRequired": {}, | ||||
|     "testResults": "Wyniki testu", | ||||
|     "@testResults": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "testResultAdd": "Dodaj wynik testu", | ||||
|     "@testResultAdd": {}, | ||||
|     "testResultNone": "Brak wyników testu", | ||||
|     "@testResultNone": {}, | ||||
|     "testResultNoneDetail": "Brak dostępnych wyników testu", | ||||
|     "@testResultNoneDetail": {}, | ||||
|     "testResultUploadFail": "Błąd przesyłania wyniku testu", | ||||
|     "@testResultUploadFail": {}, | ||||
|     "testResultUploadPass": "Wynik testu przesłany", | ||||
|     "@testResultUploadPass": {}, | ||||
|     "timeout": "Upłynął limit czasu", | ||||
|     "@timeout": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "tokenError": "Błąd tokenu", | ||||
|     "@tokenError": {}, | ||||
|     "tokenMissing": "Brakujący token", | ||||
|     "@tokenMissing": {}, | ||||
|     "tokenMissingFromResponse": "Brak tokenu dostępu w odpowiedzi", | ||||
|     "@tokenMissingFromResponse": {}, | ||||
|     "transfer": "Przenieś", | ||||
|     "@transfer": { | ||||
|         "description": "transfer" | ||||
|     }, | ||||
|     "transferStock": "Przenieś stan", | ||||
|     "@transferStock": { | ||||
|         "description": "transfer stock" | ||||
|     }, | ||||
|     "translate": "Przetłumacz", | ||||
|     "@translate": {}, | ||||
|     "translateHelp": "Pomóż przetłumaczyć aplikację InvenTree", | ||||
|     "@translateHelp": {}, | ||||
|     "units": "Jednostki", | ||||
|     "@units": {}, | ||||
|     "unknownResponse": "Nieznana odpowiedź", | ||||
|     "@unknownResponse": {}, | ||||
|     "upload": "Wyślij", | ||||
|     "@upload": {}, | ||||
|     "uploadFailed": "Błąd wysyłania pliku", | ||||
|     "@uploadFailed": {}, | ||||
|     "uploadSuccess": "Plik przesłany", | ||||
|     "@uploadSuccess": {}, | ||||
|     "usedIn": "Użyte w", | ||||
|     "@usedIn": {}, | ||||
|     "usedInDetails": "Złożenie, które wymagają tego komponentu", | ||||
|     "@usedInDetails": {}, | ||||
|     "username": "Nazwa użytkownika", | ||||
|     "@username": {}, | ||||
|     "usernameEmpty": "Nazwa użytkownika nie może być pusta", | ||||
|     "@usernameEmpty": {}, | ||||
|     "value": "Wartość", | ||||
|     "@value": { | ||||
|         "description": "value" | ||||
|     }, | ||||
|     "valueCannotBeEmpty": "Wartość nie może być pusta", | ||||
|     "@valueCannotBeEmpty": {}, | ||||
|     "valueRequired": "Wartość jest wymagana", | ||||
|     "@valueRequired": {}, | ||||
|     "version": "Wersja", | ||||
|     "@version": {}, | ||||
|     "viewSupplierPart": "Zobacz Dostawcę Części", | ||||
|     "@viewSupplierPart": {}, | ||||
|     "website": "Strona WWW", | ||||
|     "@website": {} | ||||
| } | ||||
							
								
								
									
										5
									
								
								lib/l10n/pt-BR/app_pt.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								lib/l10n/pt-BR/app_pt.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {} | ||||
| } | ||||
							
								
								
									
										193
									
								
								lib/l10n/pt-PT/app_pt.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										193
									
								
								lib/l10n/pt-PT/app_pt.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,193 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "ok": "OK", | ||||
|     "@ok": { | ||||
|         "description": "OK" | ||||
|     }, | ||||
|     "about": "Sobre", | ||||
|     "@about": {}, | ||||
|     "accountDetails": "Detalhes da Conta", | ||||
|     "@accountDetails": {}, | ||||
|     "actions": "Ações", | ||||
|     "@actions": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "actionsNone": "Nenhuma ação disponível", | ||||
|     "@actionsNone": {}, | ||||
|     "add": "Adicionar", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "addStock": "Adicionar ao estoque", | ||||
|     "@addStock": { | ||||
|         "description": "add stock" | ||||
|     }, | ||||
|     "address": "Endereço", | ||||
|     "@address": {}, | ||||
|     "appAbout": "Sobre o InvenTree", | ||||
|     "@appAbout": {}, | ||||
|     "appCredits": "Créditos adicionais do aplicativo", | ||||
|     "@appCredits": {}, | ||||
|     "appDetails": "Detalhes do App", | ||||
|     "@appDetails": {}, | ||||
|     "appReleaseNotes": "Exibir notas de versão do aplicativo", | ||||
|     "@appReleaseNotes": {}, | ||||
|     "appSettings": "Configurações do App", | ||||
|     "@appSettings": {}, | ||||
|     "appSettingsDetails": "Configurar os parâmetros do InvenTree", | ||||
|     "@appSettingsDetails": {}, | ||||
|     "attachments": "Anexos", | ||||
|     "@attachments": {}, | ||||
|     "attachImage": "Anexar Imagem", | ||||
|     "@attachImage": { | ||||
|         "description": "Attach an image" | ||||
|     }, | ||||
|     "attachmentNone": "Não foram encontrados quaisquer anexos", | ||||
|     "@attachmentNone": {}, | ||||
|     "attachmentNonePartDetail": "Nenhum anexo encontrado para esta peça", | ||||
|     "@attachmentNonePartDetail": {}, | ||||
|     "attachmentSelect": "Selecionar anexo", | ||||
|     "@attachmentSelect": {}, | ||||
|     "attention": "Aviso", | ||||
|     "@attention": {}, | ||||
|     "barcodeAssign": "Atribuir Código de Barras", | ||||
|     "@barcodeAssign": {}, | ||||
|     "barcodeAssigned": "Código de barras atribuído", | ||||
|     "@barcodeAssigned": {}, | ||||
|     "barcodeError": "Erro ao escanear código de barras", | ||||
|     "@barcodeError": {}, | ||||
|     "barcodeInUse": "Código de barras já atribuído", | ||||
|     "@barcodeInUse": {}, | ||||
|     "barcodeMissingHash": "Dados de hash de código de barras faltando na resposta", | ||||
|     "@barcodeMissingHash": {}, | ||||
|     "barcodeNoMatch": "Não corresponde a nenhum código de barras", | ||||
|     "@barcodeNoMatch": {}, | ||||
|     "barcodeNotAssigned": "Código de barras não atribuído", | ||||
|     "@barcodeNotAssigned": {}, | ||||
|     "barcodeScanAssign": "Escaneie para atribuir código de barras", | ||||
|     "@barcodeScanAssign": {}, | ||||
|     "barcodeScanGeneral": "Escaneie um código de barras do InvenTree", | ||||
|     "@barcodeScanGeneral": {}, | ||||
|     "barcodeScanInItems": "Escaneie itens de estoque no local", | ||||
|     "@barcodeScanInItems": {}, | ||||
|     "barcodeScanLocation": "Escanear Localização", | ||||
|     "@barcodeScanLocation": {}, | ||||
|     "barcodeScanIntoLocationSuccess": "Escaneado no local", | ||||
|     "@barcodeScanIntoLocationSuccess": {}, | ||||
|     "barcodeScanItem": "Escanear ítem", | ||||
|     "@barcodeScanItem": {}, | ||||
|     "barcodeTones": "Tons do código de barras", | ||||
|     "@barcodeTones": {}, | ||||
|     "barcodeUnassign": "Remover código de barras pre-designado", | ||||
|     "@barcodeUnassign": {}, | ||||
|     "barcodeUnknown": "Código de barras não reconhecido", | ||||
|     "@barcodeUnknown": {}, | ||||
|     "batchCode": "Código de lote", | ||||
|     "@batchCode": {}, | ||||
|     "billOfMaterials": "Lista de Materiais", | ||||
|     "@billOfMaterials": {}, | ||||
|     "bom": "Lista de Materiais", | ||||
|     "@bom": {}, | ||||
|     "build": "Compilar", | ||||
|     "@build": {}, | ||||
|     "building": "Compilando", | ||||
|     "@building": {}, | ||||
|     "cancel": "Cancelar", | ||||
|     "@cancel": { | ||||
|         "description": "Cancel" | ||||
|     }, | ||||
|     "category": "Categoria", | ||||
|     "@category": {}, | ||||
|     "categoryCreate": "Nova Categoria", | ||||
|     "@categoryCreate": {}, | ||||
|     "categoryCreateDetail": "Criar nova categoria de peças", | ||||
|     "@categoryCreateDetail": {}, | ||||
|     "categoryUpdated": "Categoria de peça atualizada", | ||||
|     "@categoryUpdated": {}, | ||||
|     "company": "Empresa", | ||||
|     "@company": {}, | ||||
|     "companyEdit": "Editar empresa", | ||||
|     "@companyEdit": {}, | ||||
|     "companyNoResults": "Nenhuma empresa corresponde a consulta", | ||||
|     "@companyNoResults": {}, | ||||
|     "companyUpdated": "Dados da empresa atualizados", | ||||
|     "@companyUpdated": {}, | ||||
|     "companies": "Empresas", | ||||
|     "@companies": {}, | ||||
|     "configureServer": "Configurar os parâmetros do servidor de email", | ||||
|     "@configureServer": {}, | ||||
|     "connectionRefused": "Conexão recusada", | ||||
|     "@connectionRefused": {}, | ||||
|     "count": "Contagem", | ||||
|     "@count": { | ||||
|         "description": "Count" | ||||
|     }, | ||||
|     "countStock": "Contagem de Estoque", | ||||
|     "@countStock": { | ||||
|         "description": "Count Stock" | ||||
|     }, | ||||
|     "credits": "Créditos", | ||||
|     "@credits": {}, | ||||
|     "customers": "Clientes", | ||||
|     "@customers": {}, | ||||
|     "damaged": "Danificado", | ||||
|     "@damaged": {}, | ||||
|     "delete": "Excluir", | ||||
|     "@delete": {}, | ||||
|     "deletePart": "Excluir esta parte", | ||||
|     "@deletePart": {}, | ||||
|     "deletePartDetail": "Remover esta peça da base de dados", | ||||
|     "@deletePartDetail": {}, | ||||
|     "description": "Descrição", | ||||
|     "@description": {}, | ||||
|     "destroyed": "Destruído", | ||||
|     "@destroyed": {}, | ||||
|     "details": "Detalhes", | ||||
|     "@details": { | ||||
|         "description": "details" | ||||
|     }, | ||||
|     "documentation": "Documentação", | ||||
|     "@documentation": {}, | ||||
|     "downloading": "Baixando arquivo", | ||||
|     "@downloading": {}, | ||||
|     "downloadError": "Erro de download", | ||||
|     "@downloadError": {}, | ||||
|     "edit": "Editar", | ||||
|     "@edit": { | ||||
|         "description": "edit" | ||||
|     }, | ||||
|     "editCategory": "Editar categoria", | ||||
|     "@editCategory": {}, | ||||
|     "editLocation": "Editar Localização", | ||||
|     "@editLocation": {}, | ||||
|     "editNotes": "Editar notas", | ||||
|     "@editNotes": {}, | ||||
|     "editPart": "Editar a peça", | ||||
|     "@editPart": { | ||||
|         "description": "edit part" | ||||
|     }, | ||||
|     "editItem": "Editar Item do Estoque", | ||||
|     "@editItem": {}, | ||||
|     "enterPassword": "Digite a senha", | ||||
|     "@enterPassword": {}, | ||||
|     "enterUsername": "Inserir usuário", | ||||
|     "@enterUsername": {}, | ||||
|     "error": "Erro", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorCreate": "Erro ao criar entrada de banco de dados", | ||||
|     "@errorCreate": {}, | ||||
|     "errorDelete": "Erro ao excluir entrada no banco de dados", | ||||
|     "@errorDelete": {}, | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "lastUpdated": "Ultima atualização", | ||||
|     "@lastUpdated": {}, | ||||
|     "lineItems": "Itens de linha", | ||||
|     "@lineItems": {} | ||||
| } | ||||
							
								
								
									
										263
									
								
								lib/l10n/ru/app_ru.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										263
									
								
								lib/l10n/ru/app_ru.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,263 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "ok": "ОК", | ||||
|     "@ok": { | ||||
|         "description": "OK" | ||||
|     }, | ||||
|     "about": "О проекте", | ||||
|     "@about": {}, | ||||
|     "accountDetails": "Данные аккаунта", | ||||
|     "@accountDetails": {}, | ||||
|     "actions": "Действия", | ||||
|     "@actions": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "actionsNone": "Действия недоступны", | ||||
|     "@actionsNone": {}, | ||||
|     "add": "Добавить", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "addStock": "Добавить запасы", | ||||
|     "@addStock": { | ||||
|         "description": "add stock" | ||||
|     }, | ||||
|     "address": "Адрес", | ||||
|     "@address": {}, | ||||
|     "appAbout": "О InvenTree", | ||||
|     "@appAbout": {}, | ||||
|     "appCredits": "Благодарности за помощь и поддержку", | ||||
|     "@appCredits": {}, | ||||
|     "appDetails": "Информация о приложении", | ||||
|     "@appDetails": {}, | ||||
|     "appReleaseNotes": "Показать заметки о выпуске приложения", | ||||
|     "@appReleaseNotes": {}, | ||||
|     "appSettings": "Настройки приложения", | ||||
|     "@appSettings": {}, | ||||
|     "companyNoResults": "Нет организаций, соответствующих запросу", | ||||
|     "@companyNoResults": {}, | ||||
|     "downloading": "Загрузка файла", | ||||
|     "@downloading": {}, | ||||
|     "downloadError": "Ошибка загрузки", | ||||
|     "@downloadError": {}, | ||||
|     "edit": "Изменить", | ||||
|     "@edit": { | ||||
|         "description": "edit" | ||||
|     }, | ||||
|     "editCategory": "Редактировать категорию", | ||||
|     "@editCategory": {}, | ||||
|     "editLocation": "Редактировать местонахождение", | ||||
|     "@editLocation": {}, | ||||
|     "editNotes": "Редактировать примечания", | ||||
|     "@editNotes": {}, | ||||
|     "editPart": "Ред. эту часть", | ||||
|     "@editPart": { | ||||
|         "description": "edit part" | ||||
|     }, | ||||
|     "editItem": "Отредактированный товар", | ||||
|     "@editItem": {}, | ||||
|     "enterPassword": "Введите пароль", | ||||
|     "@enterPassword": {}, | ||||
|     "enterUsername": "Введите имя пользователя", | ||||
|     "@enterUsername": {}, | ||||
|     "error": "Ошибка", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorCreate": "Ошибка создания записи базы данных", | ||||
|     "@errorCreate": {}, | ||||
|     "errorDetails": "Подробнее об ошибке", | ||||
|     "@errorDetails": {}, | ||||
|     "errorFetch": "Ошибка при получении данных с сервера", | ||||
|     "@errorFetch": {}, | ||||
|     "feedback": "Обратная Связь", | ||||
|     "@feedback": {}, | ||||
|     "feedbackError": "Ошибка отправки отзыва", | ||||
|     "@feedbackError": {}, | ||||
|     "feedbackSuccess": "Отзыв отправлен", | ||||
|     "@feedbackSuccess": {}, | ||||
|     "formatException": "Формат исключения", | ||||
|     "@formatException": {}, | ||||
|     "formatExceptionJson": "Ошибка формата JSON", | ||||
|     "@formatExceptionJson": {}, | ||||
|     "formError": "Ошибка в форме", | ||||
|     "@formError": {}, | ||||
|     "history": "История", | ||||
|     "@history": { | ||||
|         "description": "history" | ||||
|     }, | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "imageUploadFailure": "Не удалось загрузить изображение", | ||||
|     "@imageUploadFailure": {}, | ||||
|     "imageUploadSuccess": "Изображение загружено", | ||||
|     "@imageUploadSuccess": {}, | ||||
|     "inactive": "Неактивный", | ||||
|     "@inactive": {}, | ||||
|     "inactiveDetail": "Эта часть помечена как неактивная", | ||||
|     "@inactiveDetail": {}, | ||||
|     "includeSubcategories": "Включить подкатегории", | ||||
|     "@includeSubcategories": {}, | ||||
|     "includeSubcategoriesDetail": "Отображать подкатегории в виде списка", | ||||
|     "@includeSubcategoriesDetail": {}, | ||||
|     "includeSublocations": "Добавить доп. местоположения", | ||||
|     "@includeSublocations": {}, | ||||
|     "includeSublocationsDetail": "Отображать доп. местоположения в виде списка", | ||||
|     "@includeSublocationsDetail": {}, | ||||
|     "incompleteDetails": "Неполные данные профиля", | ||||
|     "@incompleteDetails": {}, | ||||
|     "internalPartNumber": "Внутренний номер", | ||||
|     "@internalPartNumber": {}, | ||||
|     "info": "Информация", | ||||
|     "@info": {}, | ||||
|     "invalidHost": "Неверное имя хоста", | ||||
|     "@invalidHost": {}, | ||||
|     "invalidHostDetails": "Недопустимый пароль", | ||||
|     "@invalidHostDetails": {}, | ||||
|     "invalidPart": "Недопустимый элемент", | ||||
|     "@invalidPart": {}, | ||||
|     "invalidPartCategory": "Неверная категория элемента", | ||||
|     "@invalidPartCategory": {}, | ||||
|     "invalidStockLocation": "Неверное расположение склада", | ||||
|     "@invalidStockLocation": {}, | ||||
|     "invalidStockItem": "Недопустимый товарный пункт", | ||||
|     "@invalidStockItem": {}, | ||||
|     "invalidUsernamePassword": "Неверная комбинация имени пользователя и пароля", | ||||
|     "@invalidUsernamePassword": {}, | ||||
|     "issueDate": "Дата проблемы", | ||||
|     "@issueDate": {}, | ||||
|     "itemInLocation": "Элемент уже находится на месте", | ||||
|     "@itemInLocation": {}, | ||||
|     "keywords": "Ключевые слова", | ||||
|     "@keywords": {}, | ||||
|     "lastStocktake": "Последняя инвентаризация", | ||||
|     "@lastStocktake": {}, | ||||
|     "lastUpdated": "Последние обновлённые", | ||||
|     "@lastUpdated": {}, | ||||
|     "lineItem": "Элемент строки", | ||||
|     "@lineItem": {}, | ||||
|     "lineItems": "Элементы строки", | ||||
|     "@lineItems": {}, | ||||
|     "locationCreate": "Новое местоположение", | ||||
|     "@locationCreate": {}, | ||||
|     "locationCreateDetail": "Создать новое расположение склада", | ||||
|     "@locationCreateDetail": {}, | ||||
|     "locationNotSet": "Не указано месторасположение", | ||||
|     "@locationNotSet": {}, | ||||
|     "link": "Ссылка", | ||||
|     "@link": {}, | ||||
|     "lost": "Потерян", | ||||
|     "@lost": {}, | ||||
|     "manufacturers": "Производители", | ||||
|     "@manufacturers": {}, | ||||
|     "missingData": "Отсутствующие данные", | ||||
|     "@missingData": {}, | ||||
|     "name": "Название", | ||||
|     "@name": {}, | ||||
|     "notConnected": "Соединение не установлено", | ||||
|     "@notConnected": {}, | ||||
|     "notes": "Заметки", | ||||
|     "@notes": { | ||||
|         "description": "Notes" | ||||
|     }, | ||||
|     "noResponse": "Нет ответа от сервера", | ||||
|     "@noResponse": {}, | ||||
|     "noResults": "Нет результатов", | ||||
|     "@noResults": {}, | ||||
|     "noSubcategories": "Нет подкатегории", | ||||
|     "@noSubcategories": {}, | ||||
|     "noSubcategoriesAvailable": "Нет доступных подкатегорий", | ||||
|     "@noSubcategoriesAvailable": {}, | ||||
|     "numberInvalid": "Неправильный номер", | ||||
|     "@numberInvalid": {}, | ||||
|     "onOrder": "Под заказ", | ||||
|     "@onOrder": {}, | ||||
|     "onOrderDetails": "Заказаные элементы", | ||||
|     "@onOrderDetails": {}, | ||||
|     "packaging": "Упаковка", | ||||
|     "@packaging": {}, | ||||
|     "packageName": "Название упаковки", | ||||
|     "@packageName": {}, | ||||
|     "parent": "Родитель", | ||||
|     "@parent": {}, | ||||
|     "parentCategory": "Родительская категория", | ||||
|     "@parentCategory": {}, | ||||
|     "parentLocation": "Родительское местоположение", | ||||
|     "@parentLocation": {}, | ||||
|     "part": "Компонент", | ||||
|     "@part": { | ||||
|         "description": "Part (single)" | ||||
|     }, | ||||
|     "partCreate": "Новый компонент", | ||||
|     "@partCreate": {}, | ||||
|     "partCreateDetail": "Создать компонент в данной категории", | ||||
|     "@partCreateDetail": {}, | ||||
|     "parts": "Номенклатура", | ||||
|     "@parts": { | ||||
|         "description": "Part (multiple)" | ||||
|     }, | ||||
|     "partsNone": "Нет компонентов", | ||||
|     "@partsNone": {}, | ||||
|     "partNoResults": "Нет компонентов, соответствующих запросу", | ||||
|     "@partNoResults": {}, | ||||
|     "response405": "405 Метод не разрешен", | ||||
|     "@response405": {}, | ||||
|     "response429": "Слишком много запросов", | ||||
|     "@response429": {}, | ||||
|     "response500": "Внутренняя ошибка сервера", | ||||
|     "@response500": {}, | ||||
|     "response501": "Не реализовано", | ||||
|     "@response501": {}, | ||||
|     "response502": "Недопустимый шлюз", | ||||
|     "@response502": {}, | ||||
|     "response503": "Сервис недоступен", | ||||
|     "@response503": {}, | ||||
|     "response504": "504: тайм-аут шлюза", | ||||
|     "@response504": {}, | ||||
|     "response505": "505: версия не поддерживается", | ||||
|     "@response505": {}, | ||||
|     "responseData": "Информация об ответе", | ||||
|     "@responseData": {}, | ||||
|     "responseInvalid": "Неверный код ответа", | ||||
|     "@responseInvalid": {}, | ||||
|     "responseUnknown": "Неизвестный ответ", | ||||
|     "@responseUnknown": {}, | ||||
|     "result": "Результат", | ||||
|     "@result": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "returned": "Возвращено", | ||||
|     "@returned": {}, | ||||
|     "salesOrders": "Заказы на продажу", | ||||
|     "@salesOrders": {}, | ||||
|     "save": "Сохранить", | ||||
|     "@save": { | ||||
|         "description": "Save" | ||||
|     }, | ||||
|     "scanBarcode": "Сканировать штрихкод", | ||||
|     "@scanBarcode": {}, | ||||
|     "scanIntoLocation": "Сканировать в местоположение", | ||||
|     "@scanIntoLocation": {}, | ||||
|     "search": "Поиск", | ||||
|     "@search": { | ||||
|         "description": "search" | ||||
|     }, | ||||
|     "searchLocation": "Искать по месту", | ||||
|     "@searchLocation": {}, | ||||
|     "searchParts": "Найти номенклатуру", | ||||
|     "@searchParts": {}, | ||||
|     "searchStock": "Поиск в наличии", | ||||
|     "@searchStock": {}, | ||||
|     "select": "Выбрать", | ||||
|     "@select": {}, | ||||
|     "selectFile": "Выбрать файл", | ||||
|     "@selectFile": {}, | ||||
|     "selectImage": "Выбрать изображение", | ||||
|     "@selectImage": {}, | ||||
|     "website": "Сайт", | ||||
|     "@website": {} | ||||
| } | ||||
							
								
								
									
										5
									
								
								lib/l10n/sv-SE/app_sv.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								lib/l10n/sv-SE/app_sv.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {} | ||||
| } | ||||
							
								
								
									
										5
									
								
								lib/l10n/th/app_th.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								lib/l10n/th/app_th.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {} | ||||
| } | ||||
							
								
								
									
										735
									
								
								lib/l10n/tr/app_tr.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										735
									
								
								lib/l10n/tr/app_tr.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,735 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "ok": "TAMAM", | ||||
|     "@ok": { | ||||
|         "description": "OK" | ||||
|     }, | ||||
|     "about": "Hakkında", | ||||
|     "@about": {}, | ||||
|     "accountDetails": "Hesap Detayları", | ||||
|     "@accountDetails": {}, | ||||
|     "actions": "Eylemler", | ||||
|     "@actions": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "actionsNone": "Kullanılabilir eylem yok", | ||||
|     "@actionsNone": {}, | ||||
|     "add": "Ekle", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "addStock": "Stok ekle", | ||||
|     "@addStock": { | ||||
|         "description": "add stock" | ||||
|     }, | ||||
|     "address": "Adres", | ||||
|     "@address": {}, | ||||
|     "appAbout": "InvenTree Hakkında", | ||||
|     "@appAbout": {}, | ||||
|     "appCredits": "Uygulama kredisi ekle", | ||||
|     "@appCredits": {}, | ||||
|     "appDetails": "Uygulama Detayları", | ||||
|     "@appDetails": {}, | ||||
|     "appReleaseNotes": "Uygulama yayınlama notları", | ||||
|     "@appReleaseNotes": {}, | ||||
|     "appSettings": "Uygulama Ayarları", | ||||
|     "@appSettings": {}, | ||||
|     "appSettingsDetails": "Uygulama ayarlarından yapılandır", | ||||
|     "@appSettingsDetails": {}, | ||||
|     "attachments": "Ekler", | ||||
|     "@attachments": {}, | ||||
|     "attachImage": "Resim ekle", | ||||
|     "@attachImage": { | ||||
|         "description": "Attach an image" | ||||
|     }, | ||||
|     "attachmentNone": "Hiçbir ek bulunamadı", | ||||
|     "@attachmentNone": {}, | ||||
|     "attachmentNonePartDetail": "Bu parça için ekler bulunamadı", | ||||
|     "@attachmentNonePartDetail": {}, | ||||
|     "attachmentSelect": "Ek seçin", | ||||
|     "@attachmentSelect": {}, | ||||
|     "attention": "Dikkat", | ||||
|     "@attention": {}, | ||||
|     "barcodeAssign": "Barkod Ata", | ||||
|     "@barcodeAssign": {}, | ||||
|     "barcodeAssigned": "Barkod atandı", | ||||
|     "@barcodeAssigned": {}, | ||||
|     "barcodeError": "Barkod tarama hatası", | ||||
|     "@barcodeError": {}, | ||||
|     "barcodeInUse": "Barkod zaten kullanımda", | ||||
|     "@barcodeInUse": {}, | ||||
|     "barcodeMissingHash": "Barcode hash verisi alınamadı", | ||||
|     "@barcodeMissingHash": {}, | ||||
|     "barcodeNoMatch": "Barkod için eşleşme yok", | ||||
|     "@barcodeNoMatch": {}, | ||||
|     "barcodeNotAssigned": "Barkod atanmış değil", | ||||
|     "@barcodeNotAssigned": {}, | ||||
|     "barcodeScanAssign": "Atanmış barkodu tara", | ||||
|     "@barcodeScanAssign": {}, | ||||
|     "barcodeScanGeneral": "Bir Iventree barkodu tara", | ||||
|     "@barcodeScanGeneral": {}, | ||||
|     "barcodeScanInItems": "Stok öğelerini konum içine tara", | ||||
|     "@barcodeScanInItems": {}, | ||||
|     "barcodeScanLocation": "Stok konumu tara", | ||||
|     "@barcodeScanLocation": {}, | ||||
|     "barcodeScanIntoLocationSuccess": "Konuma tarandı", | ||||
|     "@barcodeScanIntoLocationSuccess": {}, | ||||
|     "barcodeScanIntoLocationFailure": "Madde taranmış değil", | ||||
|     "@barcodeScanIntoLocationFailure": {}, | ||||
|     "barcodeScanItem": "Stok öğesi tara", | ||||
|     "@barcodeScanItem": {}, | ||||
|     "barcodeTones": "Barkod Tonları", | ||||
|     "@barcodeTones": {}, | ||||
|     "barcodeUnassign": "Atanmamış barkod", | ||||
|     "@barcodeUnassign": {}, | ||||
|     "barcodeUnknown": "Barkod tanınmadı", | ||||
|     "@barcodeUnknown": {}, | ||||
|     "batchCode": "Grup kodu", | ||||
|     "@batchCode": {}, | ||||
|     "billOfMaterials": "Fatura materyalleri", | ||||
|     "@billOfMaterials": {}, | ||||
|     "bom": "BOM", | ||||
|     "@bom": {}, | ||||
|     "build": "Oluştur", | ||||
|     "@build": {}, | ||||
|     "building": "Oluşturma", | ||||
|     "@building": {}, | ||||
|     "cancel": "İptal", | ||||
|     "@cancel": { | ||||
|         "description": "Cancel" | ||||
|     }, | ||||
|     "category": "Kategori", | ||||
|     "@category": {}, | ||||
|     "categoryCreate": "Yeni Kategori", | ||||
|     "@categoryCreate": {}, | ||||
|     "categoryCreateDetail": "Yeni parça kategorisi oluştur", | ||||
|     "@categoryCreateDetail": {}, | ||||
|     "categoryUpdated": "Parça Kategorisi güncellendi", | ||||
|     "@categoryUpdated": {}, | ||||
|     "company": "Şirket", | ||||
|     "@company": {}, | ||||
|     "companyEdit": "Şirketi Düzenle", | ||||
|     "@companyEdit": {}, | ||||
|     "companyNoResults": "Sorguyla eşleşen şirket yok", | ||||
|     "@companyNoResults": {}, | ||||
|     "companyUpdated": "Firma bilgileri güncellendi", | ||||
|     "@companyUpdated": {}, | ||||
|     "companies": "Şirketler", | ||||
|     "@companies": {}, | ||||
|     "configureServer": "Sunucu ayarlarınızı yapılandırın", | ||||
|     "@configureServer": {}, | ||||
|     "connectionRefused": "Bağlantı reddedildi", | ||||
|     "@connectionRefused": {}, | ||||
|     "count": "Sayım", | ||||
|     "@count": { | ||||
|         "description": "Count" | ||||
|     }, | ||||
|     "countStock": "Stok sayımı", | ||||
|     "@countStock": { | ||||
|         "description": "Count Stock" | ||||
|     }, | ||||
|     "credits": "Katkıda Bulunanlar", | ||||
|     "@credits": {}, | ||||
|     "customers": "Müşteriler", | ||||
|     "@customers": {}, | ||||
|     "damaged": "Hasarlı", | ||||
|     "@damaged": {}, | ||||
|     "delete": "Sil", | ||||
|     "@delete": {}, | ||||
|     "deletePart": "Parça Sil", | ||||
|     "@deletePart": {}, | ||||
|     "deletePartDetail": "Bu parçayı veritabanından kaldır", | ||||
|     "@deletePartDetail": {}, | ||||
|     "description": "Açıklama", | ||||
|     "@description": {}, | ||||
|     "destroyed": "Yok edildi", | ||||
|     "@destroyed": {}, | ||||
|     "details": "Detaylar", | ||||
|     "@details": { | ||||
|         "description": "details" | ||||
|     }, | ||||
|     "documentation": "Dökümantasyon", | ||||
|     "@documentation": {}, | ||||
|     "downloading": "Dosya indiriliyor", | ||||
|     "@downloading": {}, | ||||
|     "downloadError": "İndirme Hatası", | ||||
|     "@downloadError": {}, | ||||
|     "edit": "Düzenle", | ||||
|     "@edit": { | ||||
|         "description": "edit" | ||||
|     }, | ||||
|     "editCategory": "Kategoriyi düzenle", | ||||
|     "@editCategory": {}, | ||||
|     "editLocation": "Konumu Düzenle", | ||||
|     "@editLocation": {}, | ||||
|     "editNotes": "Notları Düzenle", | ||||
|     "@editNotes": {}, | ||||
|     "editPart": "Parçayı Düzenle", | ||||
|     "@editPart": { | ||||
|         "description": "edit part" | ||||
|     }, | ||||
|     "editItem": "Parçayı Düzenle", | ||||
|     "@editItem": {}, | ||||
|     "enterPassword": "Şifrenizi girin", | ||||
|     "@enterPassword": {}, | ||||
|     "enterUsername": "Kullanıcı adını girin", | ||||
|     "@enterUsername": {}, | ||||
|     "error": "Hata", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorCreate": "Veritabanı girdi oluşturma hatası", | ||||
|     "@errorCreate": {}, | ||||
|     "errorDelete": "Veritabanı girdisini silerken hata", | ||||
|     "@errorDelete": {}, | ||||
|     "errorDetails": "Hata Ayrıntıları", | ||||
|     "@errorDetails": {}, | ||||
|     "errorFetch": "Sunucudan veri alınırken hata oluştu", | ||||
|     "@errorFetch": {}, | ||||
|     "errorReporting": "Hata Raporlama", | ||||
|     "@errorReporting": {}, | ||||
|     "errorReportUpload": "Hata raporu yükle", | ||||
|     "@errorReportUpload": {}, | ||||
|     "errorReportUploadDetails": "Anonim olarak hata ve log yükle", | ||||
|     "@errorReportUploadDetails": {}, | ||||
|     "feedback": "Geri Bildirim", | ||||
|     "@feedback": {}, | ||||
|     "feedbackError": "Geribildirim gönderme hatası", | ||||
|     "@feedbackError": {}, | ||||
|     "feedbackSuccess": "Geri bildirim gönderildi", | ||||
|     "@feedbackSuccess": {}, | ||||
|     "formatException": "Biçim İstisnası", | ||||
|     "@formatException": {}, | ||||
|     "formatExceptionJson": "JSON veri format istisnası", | ||||
|     "@formatExceptionJson": {}, | ||||
|     "formError": "Form hatası", | ||||
|     "@formError": {}, | ||||
|     "history": "Geçmiş", | ||||
|     "@history": { | ||||
|         "description": "history" | ||||
|     }, | ||||
|     "homeScreen": "Ana Ekran", | ||||
|     "@homeScreen": {}, | ||||
|     "homeScreenSettings": "Ana ekran ayarlarınızı yapılandırın", | ||||
|     "@homeScreenSettings": {}, | ||||
|     "homeShowPo": "Satın Alma Siparişlerini Göster", | ||||
|     "@homeShowPo": {}, | ||||
|     "homeShowSubscribed": "Parça bildirimlerine abone ol", | ||||
|     "@homeShowSubscribed": {}, | ||||
|     "homeShowSubscribedDescription": "Abone olunan bölümleri ana ekranda göster", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "homeShowPoDescription": "Satınalma sipariş butonunu ana ekranda göster", | ||||
|     "@homeShowPoDescription": {}, | ||||
|     "homeShowSuppliers": "Tedarikçileri Göster", | ||||
|     "@homeShowSuppliers": {}, | ||||
|     "homeShowSuppliersDescription": "Tedarikçi butonunu ana ekranda göster", | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "homeShowManufacturers": "Üreticileri Göster", | ||||
|     "@homeShowManufacturers": {}, | ||||
|     "homeShowManufacturersDescription": "Tedarikçi butonunu ana ekranda göster", | ||||
|     "@homeShowManufacturersDescription": {}, | ||||
|     "homeShowCustomers": "Müşterileri Göster", | ||||
|     "@homeShowCustomers": {}, | ||||
|     "homeShowCustomersDescription": "Müşteri butonunu ana ekranda göster", | ||||
|     "@homeShowCustomersDescription": {}, | ||||
|     "imageUploadFailure": "Fotoğraf yükleme başarısız", | ||||
|     "@imageUploadFailure": {}, | ||||
|     "imageUploadSuccess": "Resim yüklendi", | ||||
|     "@imageUploadSuccess": {}, | ||||
|     "inactive": "Pasif", | ||||
|     "@inactive": {}, | ||||
|     "inactiveDetail": "Bu parça pasif olarak işaretlendi", | ||||
|     "@inactiveDetail": {}, | ||||
|     "includeSubcategories": "Alt kategorileri dahil et", | ||||
|     "@includeSubcategories": {}, | ||||
|     "includeSubcategoriesDetail": "Alt kategori parçalarını liste görünümünde göster", | ||||
|     "@includeSubcategoriesDetail": {}, | ||||
|     "includeSublocations": "Alt konumları dahil et", | ||||
|     "@includeSublocations": {}, | ||||
|     "includeSublocationsDetail": "Alt konum parçalarını liste görünümünde göster", | ||||
|     "@includeSublocationsDetail": {}, | ||||
|     "incompleteDetails": "Tamamlanmamış profil detayları", | ||||
|     "@incompleteDetails": {}, | ||||
|     "internalPartNumber": "İç Parça Numarası", | ||||
|     "@internalPartNumber": {}, | ||||
|     "info": "Bilgi", | ||||
|     "@info": {}, | ||||
|     "inProduction": "Yapım Aşamasında", | ||||
|     "@inProduction": {}, | ||||
|     "inProductionDetail": "Bu ürün üretim aşamasında", | ||||
|     "@inProductionDetail": {}, | ||||
|     "invalidHost": "Geçersiz alan adı", | ||||
|     "@invalidHost": {}, | ||||
|     "invalidHostDetails": "Bu ana bilgisayar adı (hostname) geçerli değil", | ||||
|     "@invalidHostDetails": {}, | ||||
|     "invalidPart": "Geçersiz Parça", | ||||
|     "@invalidPart": {}, | ||||
|     "invalidPartCategory": "Geçersiz Parça Kategorisi", | ||||
|     "@invalidPartCategory": {}, | ||||
|     "invalidStockLocation": "Geçersiz Stok Konumu", | ||||
|     "@invalidStockLocation": {}, | ||||
|     "invalidStockItem": "Geçersiz Stok Parçası", | ||||
|     "@invalidStockItem": {}, | ||||
|     "invalidUsernamePassword": "Geçersiz kullanıcı adı ve şifre", | ||||
|     "@invalidUsernamePassword": {}, | ||||
|     "issueDate": "Sorun Tarihi", | ||||
|     "@issueDate": {}, | ||||
|     "itemInLocation": "Parça zaten konumda", | ||||
|     "@itemInLocation": {}, | ||||
|     "keywords": "Anahtar kelimeler", | ||||
|     "@keywords": {}, | ||||
|     "lastStocktake": "Son stok tutma", | ||||
|     "@lastStocktake": {}, | ||||
|     "lastUpdated": "Son güncelleme", | ||||
|     "@lastUpdated": {}, | ||||
|     "lineItem": "Parça Sırası", | ||||
|     "@lineItem": {}, | ||||
|     "lineItems": "Parçalar Sırası", | ||||
|     "@lineItems": {}, | ||||
|     "locationCreate": "Yeni Konum", | ||||
|     "@locationCreate": {}, | ||||
|     "locationCreateDetail": "Yeni stok konumu oluştur", | ||||
|     "@locationCreateDetail": {}, | ||||
|     "locationNotSet": "Belirtilmiş konum yok", | ||||
|     "@locationNotSet": {}, | ||||
|     "locationUpdated": "Stok lokasyonu güncellendi", | ||||
|     "@locationUpdated": {}, | ||||
|     "link": "Bağlantı", | ||||
|     "@link": {}, | ||||
|     "lost": "Kayıp", | ||||
|     "@lost": {}, | ||||
|     "manufacturers": "Üreticiler", | ||||
|     "@manufacturers": {}, | ||||
|     "missingData": "Eksik Veri", | ||||
|     "@missingData": {}, | ||||
|     "name": "Adı", | ||||
|     "@name": {}, | ||||
|     "notConnected": "Bağlı değil", | ||||
|     "@notConnected": {}, | ||||
|     "notes": "Notlar", | ||||
|     "@notes": { | ||||
|         "description": "Notes" | ||||
|     }, | ||||
|     "noResponse": "Sunucudan yanıt yok", | ||||
|     "@noResponse": {}, | ||||
|     "noResults": "Sonuç Yok", | ||||
|     "@noResults": {}, | ||||
|     "noSubcategories": "Alt kategori yok", | ||||
|     "@noSubcategories": {}, | ||||
|     "noSubcategoriesAvailable": "Uygun alt kategori yok", | ||||
|     "@noSubcategoriesAvailable": {}, | ||||
|     "numberInvalid": "Geçersiz numara", | ||||
|     "@numberInvalid": {}, | ||||
|     "onOrder": "Siparişte", | ||||
|     "@onOrder": {}, | ||||
|     "onOrderDetails": "Parça şuan siparişte", | ||||
|     "@onOrderDetails": {}, | ||||
|     "packaging": "Paketleme", | ||||
|     "@packaging": {}, | ||||
|     "packageName": "Paket İsmi", | ||||
|     "@packageName": {}, | ||||
|     "parent": "Üst", | ||||
|     "@parent": {}, | ||||
|     "parentCategory": "Üst Kategori", | ||||
|     "@parentCategory": {}, | ||||
|     "parentLocation": "Bağlı lokasyon", | ||||
|     "@parentLocation": {}, | ||||
|     "part": "Parça", | ||||
|     "@part": { | ||||
|         "description": "Part (single)" | ||||
|     }, | ||||
|     "partCreate": "Yeni Parça", | ||||
|     "@partCreate": {}, | ||||
|     "partCreateDetail": "Yeni parça kategorisi oluştur", | ||||
|     "@partCreateDetail": {}, | ||||
|     "partEdited": "Parça Güncellendi", | ||||
|     "@partEdited": {}, | ||||
|     "parts": "Parçalar", | ||||
|     "@parts": { | ||||
|         "description": "Part (multiple)" | ||||
|     }, | ||||
|     "partsNone": "Parça Yok", | ||||
|     "@partsNone": {}, | ||||
|     "partNoResults": "Sorguyla eşleşen parça yok", | ||||
|     "@partNoResults": {}, | ||||
|     "partsStarred": "Sürekli Gelen parçalar", | ||||
|     "@partsStarred": {}, | ||||
|     "partsStarredNone": "Yıldızlı parça yok", | ||||
|     "@partsStarredNone": {}, | ||||
|     "partSuppliers": "Parça Tedarikçileri", | ||||
|     "@partSuppliers": {}, | ||||
|     "partCategory": "Parça Kategorileri", | ||||
|     "@partCategory": {}, | ||||
|     "partCategoryTopLevel": "Üst seviye parça kategorisi", | ||||
|     "@partCategoryTopLevel": {}, | ||||
|     "partCategories": "Parça Kategorileri", | ||||
|     "@partCategories": {}, | ||||
|     "partDetails": "Parça detayları", | ||||
|     "@partDetails": {}, | ||||
|     "partNotes": "Parça notları", | ||||
|     "@partNotes": {}, | ||||
|     "partStock": "Parça stok", | ||||
|     "@partStock": { | ||||
|         "description": "part stock" | ||||
|     }, | ||||
|     "password": "Parola", | ||||
|     "@password": {}, | ||||
|     "passwordEmpty": "Parola boş bırakılamaz", | ||||
|     "@passwordEmpty": {}, | ||||
|     "permissionAccountDenied": "Bu eylemi gerçekleştirmek için gerekli yetkiye sahip değilsiniz", | ||||
|     "@permissionAccountDenied": {}, | ||||
|     "permissionRequired": "İzin Gerekli", | ||||
|     "@permissionRequired": {}, | ||||
|     "printLabel": "Etiket Yazdır", | ||||
|     "@printLabel": {}, | ||||
|     "printLabelFailure": "Etiket yazdırılamadı", | ||||
|     "@printLabelFailure": {}, | ||||
|     "printLabelSuccess": "Etiket yazıcıya gönderildi", | ||||
|     "@printLabelSuccess": {}, | ||||
|     "profile": "Profil", | ||||
|     "@profile": {}, | ||||
|     "profileAdd": "Yeni Sunucu Profili Ekle", | ||||
|     "@profileAdd": {}, | ||||
|     "profileConnect": "Sunucuya bağlan", | ||||
|     "@profileConnect": {}, | ||||
|     "profileEdit": "Sunucu Profilini düzenle", | ||||
|     "@profileEdit": {}, | ||||
|     "profileDelete": "Sunucu profilini sil", | ||||
|     "@profileDelete": {}, | ||||
|     "profileName": "Profil Adı", | ||||
|     "@profileName": {}, | ||||
|     "profileNone": "Kullanılabiir profil yok", | ||||
|     "@profileNone": {}, | ||||
|     "profileNotSelected": "Profil seçilmedi", | ||||
|     "@profileNotSelected": {}, | ||||
|     "profileSelect": "InvenTree sunucusu seç", | ||||
|     "@profileSelect": {}, | ||||
|     "profileTapToCreate": "Yeni bir profil oluşturmak için tıklayın yada seçin", | ||||
|     "@profileTapToCreate": {}, | ||||
|     "purchaseOrder": "Satınalma Siparişi", | ||||
|     "@purchaseOrder": {}, | ||||
|     "purchaseOrderEdit": "Satın Alma siparişini düzenle", | ||||
|     "@purchaseOrderEdit": {}, | ||||
|     "purchaseOrders": "Satınalma Siparişleri", | ||||
|     "@purchaseOrders": {}, | ||||
|     "purchaseOrderUpdated": "Satın Alma Siparişi güncellendi", | ||||
|     "@purchaseOrderUpdated": {}, | ||||
|     "purchasePrice": "Alış Fiyatı", | ||||
|     "@purchasePrice": {}, | ||||
|     "quantity": "Adet", | ||||
|     "@quantity": { | ||||
|         "description": "Quantity" | ||||
|     }, | ||||
|     "quantityEmpty": "Adet boş", | ||||
|     "@quantityEmpty": {}, | ||||
|     "quantityInvalid": "Adet geçersiz", | ||||
|     "@quantityInvalid": {}, | ||||
|     "quantityPositive": "Adet pozitif bir sayı olmalı", | ||||
|     "@quantityPositive": {}, | ||||
|     "queryNoResults": "Sorgu için sonuç yok", | ||||
|     "@queryNoResults": {}, | ||||
|     "received": "Alınan", | ||||
|     "@received": {}, | ||||
|     "receiveItem": "Alınan Öğeler", | ||||
|     "@receiveItem": {}, | ||||
|     "receivedItem": "Alınan stok parçaları", | ||||
|     "@receivedItem": {}, | ||||
|     "refresh": "Yenile", | ||||
|     "@refresh": {}, | ||||
|     "refreshing": "Yenileniyor", | ||||
|     "@refreshing": {}, | ||||
|     "rejected": "Reddedildi", | ||||
|     "@rejected": {}, | ||||
|     "releaseNotes": "Sürüm notları", | ||||
|     "@releaseNotes": {}, | ||||
|     "remove": "Kaldır", | ||||
|     "@remove": { | ||||
|         "description": "remove" | ||||
|     }, | ||||
|     "removeStock": "Stok Kaldır", | ||||
|     "@removeStock": { | ||||
|         "description": "remove stock" | ||||
|     }, | ||||
|     "reportBug": "Hata Bildir", | ||||
|     "@reportBug": {}, | ||||
|     "reportBugDescription": "Hata raporla ( github hesabı gerektirir)", | ||||
|     "@reportBugDescription": {}, | ||||
|     "results": "Sonuçlar", | ||||
|     "@results": {}, | ||||
|     "request": "Talep", | ||||
|     "@request": {}, | ||||
|     "requestingData": "Veri Talep Ediliyor", | ||||
|     "@requestingData": {}, | ||||
|     "required": "Gerekli", | ||||
|     "@required": { | ||||
|         "description": "This field is required" | ||||
|     }, | ||||
|     "response400": "Hatalı İstek", | ||||
|     "@response400": {}, | ||||
|     "response401": "Yetkisiz", | ||||
|     "@response401": {}, | ||||
|     "response403": "İzin Engellendi", | ||||
|     "@response403": {}, | ||||
|     "response404": "Kaynak bulunamadı", | ||||
|     "@response404": {}, | ||||
|     "response405": "İzin Verilmeyen Yöntem", | ||||
|     "@response405": {}, | ||||
|     "response429": "Çok Fazla İstek", | ||||
|     "@response429": {}, | ||||
|     "response500": "İç Sunucu Hatası", | ||||
|     "@response500": {}, | ||||
|     "response501": "Uygulanamadı", | ||||
|     "@response501": {}, | ||||
|     "response502": "Hatalı Ağ Geçidi", | ||||
|     "@response502": {}, | ||||
|     "response503": "Hizmet Kullanılamıyor", | ||||
|     "@response503": {}, | ||||
|     "response504": "Ağ Geçidi Zaman Aşımı", | ||||
|     "@response504": {}, | ||||
|     "response505": "HTTP Sürümü Desteklenmiyor", | ||||
|     "@response505": {}, | ||||
|     "responseData": "Yanıt verileri", | ||||
|     "@responseData": {}, | ||||
|     "responseInvalid": "Geçersiz yanıt kodu.", | ||||
|     "@responseInvalid": {}, | ||||
|     "responseUnknown": "Bilinmeyen yanıt", | ||||
|     "@responseUnknown": {}, | ||||
|     "result": "Sonuç", | ||||
|     "@result": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "returned": "Geri Dönen", | ||||
|     "@returned": {}, | ||||
|     "salesOrders": "Satış Siparişleri", | ||||
|     "@salesOrders": {}, | ||||
|     "save": "Kaydet", | ||||
|     "@save": { | ||||
|         "description": "Save" | ||||
|     }, | ||||
|     "scanBarcode": "Barkod Tara", | ||||
|     "@scanBarcode": {}, | ||||
|     "scanIntoLocation": "Konuma Tara", | ||||
|     "@scanIntoLocation": {}, | ||||
|     "search": "Ara", | ||||
|     "@search": { | ||||
|         "description": "search" | ||||
|     }, | ||||
|     "searchLocation": "Konum için Ara", | ||||
|     "@searchLocation": {}, | ||||
|     "searchParts": "Parçaları Ara", | ||||
|     "@searchParts": {}, | ||||
|     "searchStock": "Stok Ara", | ||||
|     "@searchStock": {}, | ||||
|     "select": "Seç", | ||||
|     "@select": {}, | ||||
|     "selectFile": "Dosya Seç", | ||||
|     "@selectFile": {}, | ||||
|     "selectImage": "Resim Seç", | ||||
|     "@selectImage": {}, | ||||
|     "selectLocation": "Bir yer seçin", | ||||
|     "@selectLocation": {}, | ||||
|     "send": "Gönder", | ||||
|     "@send": {}, | ||||
|     "serialNumber": "Seri Numara", | ||||
|     "@serialNumber": {}, | ||||
|     "server": "Sunucu", | ||||
|     "@server": {}, | ||||
|     "serverAddress": "Sunucu Adresi", | ||||
|     "@serverAddress": {}, | ||||
|     "serverApiRequired": "Gerekli API Sürümü", | ||||
|     "@serverApiRequired": {}, | ||||
|     "serverApiVersion": "Sunucu API Sürümü", | ||||
|     "@serverApiVersion": {}, | ||||
|     "serverAuthenticationError": "Doğrulama Hatası", | ||||
|     "@serverAuthenticationError": {}, | ||||
|     "serverCertificateError": "Sertifika Hatası", | ||||
|     "@serverCertificateError": {}, | ||||
|     "serverCertificateInvalid": "Sunucunun sertifikası geçersiz", | ||||
|     "@serverCertificateInvalid": {}, | ||||
|     "serverConnected": "Sunucuya bağlanıldı", | ||||
|     "@serverConnected": {}, | ||||
|     "serverConnecting": "Sunucuya bağlanıyor", | ||||
|     "@serverConnecting": {}, | ||||
|     "serverCouldNotConnect": "Sunucuya bağlanılamadı", | ||||
|     "@serverCouldNotConnect": {}, | ||||
|     "serverEmpty": "Sunucu boş olamaz", | ||||
|     "@serverEmpty": {}, | ||||
|     "serverError": "Sunucu Hatası", | ||||
|     "@serverError": {}, | ||||
|     "serverDetails": "Sunucu Detayları", | ||||
|     "@serverDetails": {}, | ||||
|     "serverMissingData": "Sunucu yanıtında gerekli alanlar eksik", | ||||
|     "@serverMissingData": {}, | ||||
|     "serverOld": "Eski Sunucu Sürümü", | ||||
|     "@serverOld": {}, | ||||
|     "serverSettings": "Sunucu Ayarları", | ||||
|     "@serverSettings": {}, | ||||
|     "serverStart": "Sunucu http(s) ile başlamalı", | ||||
|     "@serverStart": {}, | ||||
|     "settings": "Ayarlar", | ||||
|     "@settings": {}, | ||||
|     "serverInstance": "Sunucu örneği", | ||||
|     "@serverInstance": {}, | ||||
|     "serverNotConnected": "Sunucu bağlı değil", | ||||
|     "@serverNotConnected": {}, | ||||
|     "sounds": "Sesler", | ||||
|     "@sounds": {}, | ||||
|     "soundOnBarcodeAction": "Barkod işleminde sesli ton çal", | ||||
|     "@soundOnBarcodeAction": {}, | ||||
|     "soundOnServerError": "Sunucu hatasında sesli ton çal", | ||||
|     "@soundOnServerError": {}, | ||||
|     "status": "Durum", | ||||
|     "@status": {}, | ||||
|     "statusCode": "Durum Kodu", | ||||
|     "@statusCode": {}, | ||||
|     "stock": "Stok", | ||||
|     "@stock": { | ||||
|         "description": "stock" | ||||
|     }, | ||||
|     "stockItem": "Stok Kalemi", | ||||
|     "@stockItem": { | ||||
|         "description": "stock item title" | ||||
|     }, | ||||
|     "stockItems": "Stok Kalemleri", | ||||
|     "@stockItems": {}, | ||||
|     "stockItemCreate": "Yeni Stok Kalemi", | ||||
|     "@stockItemCreate": {}, | ||||
|     "stockItemCreateDetail": "Bu konuma yeni stok kalemi oluştur", | ||||
|     "@stockItemCreateDetail": {}, | ||||
|     "stockItemDelete": "Stok parçasını sil", | ||||
|     "@stockItemDelete": {}, | ||||
|     "stockItemDeleteConfirm": "Bu parçayı silmek istediğinize emin misiniz?", | ||||
|     "@stockItemDeleteConfirm": {}, | ||||
|     "stockItemDeleteFailure": "Stok parçası silinemedi", | ||||
|     "@stockItemDeleteFailure": {}, | ||||
|     "stockItemDeleteSuccess": "Stok parçası silindi", | ||||
|     "@stockItemDeleteSuccess": {}, | ||||
|     "stockItemHistory": "Stok Geçmişi", | ||||
|     "@stockItemHistory": {}, | ||||
|     "stockItemHistoryDetail": "Stok takip bilgisini göster", | ||||
|     "@stockItemHistoryDetail": {}, | ||||
|     "stockItemTransferred": "Stok kalemi transfer edildi", | ||||
|     "@stockItemTransferred": {}, | ||||
|     "stockItemUpdated": "Stok kalemi güncellendi", | ||||
|     "@stockItemUpdated": {}, | ||||
|     "stockItemsNotAvailable": "Uygun stok kalemi yok", | ||||
|     "@stockItemsNotAvailable": {}, | ||||
|     "stockItemNotes": "Stok Kalemi Notları", | ||||
|     "@stockItemNotes": {}, | ||||
|     "stockItemUpdateSuccess": "Stok kalemi güncellendi", | ||||
|     "@stockItemUpdateSuccess": {}, | ||||
|     "stockItemUpdateFailure": "Stok kalemi güncelleme hatası", | ||||
|     "@stockItemUpdateFailure": {}, | ||||
|     "stockLocation": "Stok Konumu", | ||||
|     "@stockLocation": { | ||||
|         "description": "stock location" | ||||
|     }, | ||||
|     "stockLocations": "Stok Konumları", | ||||
|     "@stockLocations": {}, | ||||
|     "stockTopLevel": "Üst seviye stok konumu", | ||||
|     "@stockTopLevel": {}, | ||||
|     "subcategory": "Alt kategori", | ||||
|     "@subcategory": {}, | ||||
|     "subcategories": "Alt kategoriler", | ||||
|     "@subcategories": {}, | ||||
|     "sublocation": "Alt konumlar", | ||||
|     "@sublocation": {}, | ||||
|     "sublocations": "Alt konumlar", | ||||
|     "@sublocations": {}, | ||||
|     "sublocationNone": "Alt konum yok", | ||||
|     "@sublocationNone": {}, | ||||
|     "sublocationNoneDetail": "Uygun alt kategori yok", | ||||
|     "@sublocationNoneDetail": {}, | ||||
|     "submitFeedback": "Geri Bildirim Gönder", | ||||
|     "@submitFeedback": {}, | ||||
|     "suppliedParts": "Sağlanan Parçalar", | ||||
|     "@suppliedParts": {}, | ||||
|     "supplier": "Tedarikçi", | ||||
|     "@supplier": {}, | ||||
|     "suppliers": "Tedarikçiler", | ||||
|     "@suppliers": {}, | ||||
|     "supplierReference": "Tedarikçi Referansı", | ||||
|     "@supplierReference": {}, | ||||
|     "takePicture": "Resim Çek", | ||||
|     "@takePicture": {}, | ||||
|     "targetDate": "Hedeflenen Tarih", | ||||
|     "@targetDate": {}, | ||||
|     "testName": "Test Adı", | ||||
|     "@testName": {}, | ||||
|     "testPassedOrFailed": "Test başarılı veya hatalı", | ||||
|     "@testPassedOrFailed": {}, | ||||
|     "testsRequired": "Gerekli Testler", | ||||
|     "@testsRequired": {}, | ||||
|     "testResults": "Test Sonuçları", | ||||
|     "@testResults": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "testResultAdd": "Test Sonucu Ekle", | ||||
|     "@testResultAdd": {}, | ||||
|     "testResultNone": "Test Sonucu Yok", | ||||
|     "@testResultNone": {}, | ||||
|     "testResultNoneDetail": "Uygun test sonucu yok", | ||||
|     "@testResultNoneDetail": {}, | ||||
|     "testResultUploadFail": "Hatalı yüklenen test sonucu", | ||||
|     "@testResultUploadFail": {}, | ||||
|     "testResultUploadPass": "Test sonucu yüklendi", | ||||
|     "@testResultUploadPass": {}, | ||||
|     "timeout": "Zaman Aşımı", | ||||
|     "@timeout": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "tokenError": "Token Hatası", | ||||
|     "@tokenError": {}, | ||||
|     "tokenMissing": "Eksik Token", | ||||
|     "@tokenMissing": {}, | ||||
|     "tokenMissingFromResponse": "Eksik cevaptan tokena eriş", | ||||
|     "@tokenMissingFromResponse": {}, | ||||
|     "transfer": "Aktarım", | ||||
|     "@transfer": { | ||||
|         "description": "transfer" | ||||
|     }, | ||||
|     "transferStock": "Stok Aktar", | ||||
|     "@transferStock": { | ||||
|         "description": "transfer stock" | ||||
|     }, | ||||
|     "translate": "Çeviri", | ||||
|     "@translate": {}, | ||||
|     "translateHelp": "Çeviriye yardım et", | ||||
|     "@translateHelp": {}, | ||||
|     "units": "Birim", | ||||
|     "@units": {}, | ||||
|     "unknownResponse": "Bilinmeyen Yanıt", | ||||
|     "@unknownResponse": {}, | ||||
|     "upload": "Yükle", | ||||
|     "@upload": {}, | ||||
|     "uploadFailed": "Dosya yüklenemedi", | ||||
|     "@uploadFailed": {}, | ||||
|     "uploadSuccess": "Dosya yüklendi", | ||||
|     "@uploadSuccess": {}, | ||||
|     "usedIn": "Burada Kullanıldı", | ||||
|     "@usedIn": {}, | ||||
|     "usedInDetails": "Bu parçayı gerektiren montajlar", | ||||
|     "@usedInDetails": {}, | ||||
|     "username": "Kullanıcı Adı", | ||||
|     "@username": {}, | ||||
|     "usernameEmpty": "Kullanıcı adı boş bırakılamaz", | ||||
|     "@usernameEmpty": {}, | ||||
|     "value": "Değer", | ||||
|     "@value": { | ||||
|         "description": "value" | ||||
|     }, | ||||
|     "valueCannotBeEmpty": "Değer boş olamaz", | ||||
|     "@valueCannotBeEmpty": {}, | ||||
|     "valueRequired": "Değer gereklidir", | ||||
|     "@valueRequired": {}, | ||||
|     "version": "Sürüm", | ||||
|     "@version": {}, | ||||
|     "viewSupplierPart": "Tedarikçi Parçası Görüntüle", | ||||
|     "@viewSupplierPart": {}, | ||||
|     "website": "Web sitesi", | ||||
|     "@website": {} | ||||
| } | ||||
							
								
								
									
										5
									
								
								lib/l10n/vi/app_vi.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								lib/l10n/vi/app_vi.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {} | ||||
| } | ||||
							
								
								
									
										341
									
								
								lib/l10n/zh-CN/app_zh.arb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										341
									
								
								lib/l10n/zh-CN/app_zh.arb
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,341 @@ | ||||
| { | ||||
|     "@@locale": "en", | ||||
|     "appTitle": "InvenTree", | ||||
|     "@appTitle": { | ||||
|         "description": "InvenTree application title string" | ||||
|     }, | ||||
|     "ok": "好", | ||||
|     "@ok": { | ||||
|         "description": "OK" | ||||
|     }, | ||||
|     "about": "关于", | ||||
|     "@about": {}, | ||||
|     "accountDetails": "账户详情", | ||||
|     "@accountDetails": {}, | ||||
|     "actions": "操作", | ||||
|     "@actions": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "add": "添加", | ||||
|     "@add": { | ||||
|         "description": "add" | ||||
|     }, | ||||
|     "addStock": "添加库存", | ||||
|     "@addStock": { | ||||
|         "description": "add stock" | ||||
|     }, | ||||
|     "address": "地址", | ||||
|     "@address": {}, | ||||
|     "appAbout": "关于 InventTree", | ||||
|     "@appAbout": {}, | ||||
|     "appDetails": "应用详情", | ||||
|     "@appDetails": {}, | ||||
|     "appSettings": "应用设置", | ||||
|     "@appSettings": {}, | ||||
|     "attention": "注意", | ||||
|     "@attention": {}, | ||||
|     "barcodeAssign": "分配条码", | ||||
|     "@barcodeAssign": {}, | ||||
|     "barcodeAssigned": "条码已分配", | ||||
|     "@barcodeAssigned": {}, | ||||
|     "barcodeError": "条形码扫描出错", | ||||
|     "@barcodeError": {}, | ||||
|     "barcodeInUse": "条码已经被分配", | ||||
|     "@barcodeInUse": {}, | ||||
|     "barcodeNoMatch": "无匹配条码", | ||||
|     "@barcodeNoMatch": {}, | ||||
|     "barcodeNotAssigned": "未分配条码", | ||||
|     "@barcodeNotAssigned": {}, | ||||
|     "barcodeScanAssign": "扫描以分配条码", | ||||
|     "@barcodeScanAssign": {}, | ||||
|     "barcodeScanGeneral": "扫描 InvenTree 条码", | ||||
|     "@barcodeScanGeneral": {}, | ||||
|     "barcodeScanLocation": "扫描库存地点", | ||||
|     "@barcodeScanLocation": {}, | ||||
|     "barcodeScanIntoLocationSuccess": "已扫描至位置", | ||||
|     "@barcodeScanIntoLocationSuccess": {}, | ||||
|     "barcodeScanItem": "扫描库存项", | ||||
|     "@barcodeScanItem": {}, | ||||
|     "barcodeUnassign": "取消分配条码", | ||||
|     "@barcodeUnassign": {}, | ||||
|     "barcodeUnknown": "无法识别条码", | ||||
|     "@barcodeUnknown": {}, | ||||
|     "build": "生产", | ||||
|     "@build": {}, | ||||
|     "cancel": "取消", | ||||
|     "@cancel": { | ||||
|         "description": "Cancel" | ||||
|     }, | ||||
|     "category": "分类", | ||||
|     "@category": {}, | ||||
|     "categoryCreate": "新建分类", | ||||
|     "@categoryCreate": {}, | ||||
|     "categoryCreateDetail": "新建商品类别", | ||||
|     "@categoryCreateDetail": {}, | ||||
|     "company": "公司", | ||||
|     "@company": {}, | ||||
|     "companyEdit": "编辑公司信息", | ||||
|     "@companyEdit": {}, | ||||
|     "companies": "公司", | ||||
|     "@companies": {}, | ||||
|     "connectionRefused": "连接被拒绝", | ||||
|     "@connectionRefused": {}, | ||||
|     "count": "数量", | ||||
|     "@count": { | ||||
|         "description": "Count" | ||||
|     }, | ||||
|     "countStock": "库存数量", | ||||
|     "@countStock": { | ||||
|         "description": "Count Stock" | ||||
|     }, | ||||
|     "credits": "致谢", | ||||
|     "@credits": {}, | ||||
|     "damaged": "破损", | ||||
|     "@damaged": {}, | ||||
|     "delete": "删除", | ||||
|     "@delete": {}, | ||||
|     "description": "描述", | ||||
|     "@description": {}, | ||||
|     "destroyed": "销毁", | ||||
|     "@destroyed": {}, | ||||
|     "details": "详细信息", | ||||
|     "@details": { | ||||
|         "description": "details" | ||||
|     }, | ||||
|     "documentation": "文档", | ||||
|     "@documentation": {}, | ||||
|     "edit": "编辑", | ||||
|     "@edit": { | ||||
|         "description": "edit" | ||||
|     }, | ||||
|     "editCategory": "编辑分类", | ||||
|     "@editCategory": {}, | ||||
|     "editLocation": "编辑位置", | ||||
|     "@editLocation": {}, | ||||
|     "editPart": "编辑部件", | ||||
|     "@editPart": { | ||||
|         "description": "edit part" | ||||
|     }, | ||||
|     "error": "错误", | ||||
|     "@error": { | ||||
|         "description": "Error" | ||||
|     }, | ||||
|     "errorDetails": "c w错误详情", | ||||
|     "@errorDetails": {}, | ||||
|     "history": "历史", | ||||
|     "@history": { | ||||
|         "description": "history" | ||||
|     }, | ||||
|     "@homeShowSubscsribedDescription": {}, | ||||
|     "@homeShowSupplierDescription": {}, | ||||
|     "internalPartNumber": "内部部件号", | ||||
|     "@internalPartNumber": {}, | ||||
|     "info": "信息", | ||||
|     "@info": {}, | ||||
|     "invalidPart": "无效部件", | ||||
|     "@invalidPart": {}, | ||||
|     "invalidPartCategory": "无效部件分类", | ||||
|     "@invalidPartCategory": {}, | ||||
|     "invalidStockLocation": "无效库存位置", | ||||
|     "@invalidStockLocation": {}, | ||||
|     "invalidStockItem": "无效库存项", | ||||
|     "@invalidStockItem": {}, | ||||
|     "keywords": "关键词", | ||||
|     "@keywords": {}, | ||||
|     "link": "链接", | ||||
|     "@link": {}, | ||||
|     "lost": "丢失", | ||||
|     "@lost": {}, | ||||
|     "name": "名称", | ||||
|     "@name": {}, | ||||
|     "notConnected": "未连接", | ||||
|     "@notConnected": {}, | ||||
|     "notes": "注释", | ||||
|     "@notes": { | ||||
|         "description": "Notes" | ||||
|     }, | ||||
|     "noResponse": "服务器未响应", | ||||
|     "@noResponse": {}, | ||||
|     "parent": "父级", | ||||
|     "@parent": {}, | ||||
|     "parentCategory": "父类别", | ||||
|     "@parentCategory": {}, | ||||
|     "part": "部件", | ||||
|     "@part": { | ||||
|         "description": "Part (single)" | ||||
|     }, | ||||
|     "parts": "部件", | ||||
|     "@parts": { | ||||
|         "description": "Part (multiple)" | ||||
|     }, | ||||
|     "partCategory": "部件分类", | ||||
|     "@partCategory": {}, | ||||
|     "partCategories": "部件分类", | ||||
|     "@partCategories": {}, | ||||
|     "partDetails": "部件详情", | ||||
|     "@partDetails": {}, | ||||
|     "partNotes": "部件注释", | ||||
|     "@partNotes": {}, | ||||
|     "partStock": "部件库存", | ||||
|     "@partStock": { | ||||
|         "description": "part stock" | ||||
|     }, | ||||
|     "password": "密码", | ||||
|     "@password": {}, | ||||
|     "profile": "档案", | ||||
|     "@profile": {}, | ||||
|     "quantity": "数量", | ||||
|     "@quantity": { | ||||
|         "description": "Quantity" | ||||
|     }, | ||||
|     "quantityEmpty": "容量为空", | ||||
|     "@quantityEmpty": {}, | ||||
|     "quantityInvalid": "数量无效", | ||||
|     "@quantityInvalid": {}, | ||||
|     "quantityPositive": "数量必须大于0", | ||||
|     "@quantityPositive": {}, | ||||
|     "refresh": "刷新", | ||||
|     "@refresh": {}, | ||||
|     "refreshing": "正在刷新", | ||||
|     "@refreshing": {}, | ||||
|     "rejected": "已拒绝", | ||||
|     "@rejected": {}, | ||||
|     "releaseNotes": "更新日志", | ||||
|     "@releaseNotes": {}, | ||||
|     "remove": "移除", | ||||
|     "@remove": { | ||||
|         "description": "remove" | ||||
|     }, | ||||
|     "removeStock": "移除库存", | ||||
|     "@removeStock": { | ||||
|         "description": "remove stock" | ||||
|     }, | ||||
|     "reportBug": "反馈问题", | ||||
|     "@reportBug": {}, | ||||
|     "request": "请求", | ||||
|     "@request": {}, | ||||
|     "requestingData": "正在请求数据", | ||||
|     "@requestingData": {}, | ||||
|     "required": "必填", | ||||
|     "@required": { | ||||
|         "description": "This field is required" | ||||
|     }, | ||||
|     "responseInvalid": "无效响应码", | ||||
|     "@responseInvalid": {}, | ||||
|     "responseUnknown": "未知响应", | ||||
|     "@responseUnknown": {}, | ||||
|     "result": "结果", | ||||
|     "@result": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "save": "保存", | ||||
|     "@save": { | ||||
|         "description": "Save" | ||||
|     }, | ||||
|     "scanBarcode": "扫描条码", | ||||
|     "@scanBarcode": {}, | ||||
|     "scanIntoLocation": "已扫描至位置", | ||||
|     "@scanIntoLocation": {}, | ||||
|     "search": "搜索", | ||||
|     "@search": { | ||||
|         "description": "search" | ||||
|     }, | ||||
|     "searchParts": "搜索部件", | ||||
|     "@searchParts": {}, | ||||
|     "searchStock": "搜索库存", | ||||
|     "@searchStock": {}, | ||||
|     "select": "选择", | ||||
|     "@select": {}, | ||||
|     "send": "发送", | ||||
|     "@send": {}, | ||||
|     "serialNumber": "序列号", | ||||
|     "@serialNumber": {}, | ||||
|     "server": "服务器", | ||||
|     "@server": {}, | ||||
|     "serverAddress": "服务器地址", | ||||
|     "@serverAddress": {}, | ||||
|     "serverConnected": "已连接至服务器", | ||||
|     "@serverConnected": {}, | ||||
|     "serverError": "服务器错误", | ||||
|     "@serverError": {}, | ||||
|     "serverDetails": "服务器详情", | ||||
|     "@serverDetails": {}, | ||||
|     "serverOld": "过时的服务器版本", | ||||
|     "@serverOld": {}, | ||||
|     "serverSettings": "服务器设置", | ||||
|     "@serverSettings": {}, | ||||
|     "settings": "设置", | ||||
|     "@settings": {}, | ||||
|     "serverInstance": "服务器实例", | ||||
|     "@serverInstance": {}, | ||||
|     "serverNotConnected": "未连接至服务器", | ||||
|     "@serverNotConnected": {}, | ||||
|     "status": "状态", | ||||
|     "@status": {}, | ||||
|     "statusCode": "状态码", | ||||
|     "@statusCode": {}, | ||||
|     "stock": "库存", | ||||
|     "@stock": { | ||||
|         "description": "stock" | ||||
|     }, | ||||
|     "stockItem": "库存项", | ||||
|     "@stockItem": { | ||||
|         "description": "stock item title" | ||||
|     }, | ||||
|     "stockItems": "库存项", | ||||
|     "@stockItems": {}, | ||||
|     "stockItemNotes": "库存项注释", | ||||
|     "@stockItemNotes": {}, | ||||
|     "stockItemUpdateSuccess": "库存项已更新", | ||||
|     "@stockItemUpdateSuccess": {}, | ||||
|     "stockItemUpdateFailure": "库存项更新失败", | ||||
|     "@stockItemUpdateFailure": {}, | ||||
|     "stockLocation": "库存位置", | ||||
|     "@stockLocation": { | ||||
|         "description": "stock location" | ||||
|     }, | ||||
|     "stockLocations": "库存位置", | ||||
|     "@stockLocations": {}, | ||||
|     "subcategory": "子类别", | ||||
|     "@subcategory": {}, | ||||
|     "subcategories": "子类别", | ||||
|     "@subcategories": {}, | ||||
|     "sublocation": "次级位置", | ||||
|     "@sublocation": {}, | ||||
|     "sublocations": "次级位置", | ||||
|     "@sublocations": {}, | ||||
|     "testResults": "测试结果", | ||||
|     "@testResults": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "timeout": "超时", | ||||
|     "@timeout": { | ||||
|         "description": "" | ||||
|     }, | ||||
|     "tokenError": "令牌错误", | ||||
|     "@tokenError": {}, | ||||
|     "tokenMissing": "缺少令牌", | ||||
|     "@tokenMissing": {}, | ||||
|     "transfer": "转移", | ||||
|     "@transfer": { | ||||
|         "description": "transfer" | ||||
|     }, | ||||
|     "transferStock": "转移库存", | ||||
|     "@transferStock": { | ||||
|         "description": "transfer stock" | ||||
|     }, | ||||
|     "unknownResponse": "未知响应", | ||||
|     "@unknownResponse": {}, | ||||
|     "upload": "上传", | ||||
|     "@upload": {}, | ||||
|     "username": "用户名", | ||||
|     "@username": {}, | ||||
|     "value": "值", | ||||
|     "@value": { | ||||
|         "description": "value" | ||||
|     }, | ||||
|     "version": "版本", | ||||
|     "@version": {}, | ||||
|     "website": "网站", | ||||
|     "@website": {} | ||||
| } | ||||
		Reference in New Issue
	
	Block a user