diff --git a/src/app/components/common/navigation/navigation.component.html b/src/app/components/common/navigation/navigation.component.html index 625bf3b6552484410f0333d1484b00a5b56cf4eb..968fe295e24af427466042d01b74345244b5218e 100644 --- a/src/app/components/common/navigation/navigation.component.html +++ b/src/app/components/common/navigation/navigation.component.html @@ -43,6 +43,6 @@ <mat-toolbar></mat-toolbar> <main> <router-outlet></router-outlet> - </main> + </main> </mat-sidenav-content> </mat-sidenav-container> \ No newline at end of file diff --git a/src/app/components/dcc/dcc-data/dcc-data.component.html b/src/app/components/dcc/dcc-data/dcc-data.component.html index a9da46e6320bd5602a4a9c0c7deb9c346e671179..883025914c05b92d97a29973bb6f6de3383b5bce 100644 --- a/src/app/components/dcc/dcc-data/dcc-data.component.html +++ b/src/app/components/dcc/dcc-data/dcc-data.component.html @@ -46,7 +46,8 @@ <ng-container *ngIf="type.quantity">{{'dcc.data.quantity' | translate}}</ng-container> <ng-container *ngIf="type.list">{{'dcc.data.list' | translate}}</ng-container> </h4> - <app-info-button tooltipText="{{'dcc.openDccWiki' | translate}}" url="https://wiki.dcc.ptb.de/en/dccdataType"></app-info-button> + <app-info-button tooltipText="{{'dcc.openDccWiki' | translate}}" + url="https://wiki.dcc.ptb.de/en/dccdataType"></app-info-button> </div> <div class="header-menu"> <button (click)="deleteObject(i)" class="blue-card-btn" mat-icon-button> diff --git a/src/app/components/dcc/dcc-human-readable/dcc-human-readable.component.html b/src/app/components/dcc/dcc-human-readable/dcc-human-readable.component.html index c8b5279ecdc80fd305b62d9e2fc1bf53b490a9e7..ef77c876d8099b23e9c9d276dfe11e77258df1a8 100644 --- a/src/app/components/dcc/dcc-human-readable/dcc-human-readable.component.html +++ b/src/app/components/dcc/dcc-human-readable/dcc-human-readable.component.html @@ -42,8 +42,8 @@ </mat-card-header> <mat-card-content *ngIf="isExpanded"> <div class="content-humanReadable"> - <div class="wrapper-humanReadable" *ngIf="humanReadableHtml!=''"></div> - <div class="wrapper-humanReadable message" *ngIf="humanReadableHtml==''"><p class="message-content"> + <div *ngIf="humanReadableHtml!=''" class="wrapper-humanReadable"></div> + <div *ngIf="humanReadableHtml==''" class="wrapper-humanReadable message"><p class="message-content"> {{'dcc.preview.attention' | translate}}: {{'dcc.preview.mandatoryFields' | translate}}!</p></div> </div> diff --git a/src/app/components/dcc/dcc-localised-string/dcc-localised-string.component.html b/src/app/components/dcc/dcc-localised-string/dcc-localised-string.component.html index 9f3176de1526b2105f3bbcef284df2bfb823cf32..bebddaf814d463d3d0cfca8b4477458f840183fa 100644 --- a/src/app/components/dcc/dcc-localised-string/dcc-localised-string.component.html +++ b/src/app/components/dcc/dcc-localised-string/dcc-localised-string.component.html @@ -33,7 +33,7 @@ </label> <mat-form-field appearance="outline" class="mat-form-field-flag"> <mat-select (selectionChange)="updateLanguageMap(item)" [(ngModel)]="item.lang" class="mat-select-flag" - mat-icon-button panelClass="custom-dropdown-panel" required> + mat-icon-button panelClass="custom-dropdown-panel" required> <mat-select-trigger class="mat-select-trigger"> <span class="{{ languageMap.get(item.lang || '')?.icon || 'fi fi-gb' }} icon-flag"></span> </mat-select-trigger> @@ -45,19 +45,19 @@ </div> <mat-form-field appearance="fill" id="localised-string"> <input *ngIf="placeholder.toLocaleLowerCase()==='name'" [(ngModel)]="item.text" [id]="placeholder.toLowerCase()" - [required]=" isRequired " matInput name="item" /> + [required]=" isRequired " matInput name="item"/> <textarea *ngIf="placeholder.toLocaleLowerCase()==='inhalt'" [(ngModel)]="item.text" - [id]="placeholder.toLowerCase()" [required]="isRequired" class="localise-textarea" matInput rows="4"> + [id]="placeholder.toLowerCase()" [required]="isRequired" class="localise-textarea" matInput rows="4"> </textarea> - <input matInput hidden name="hidden"/> + <input hidden matInput name="hidden"/> </mat-form-field> <div class="button-container"> <button (click)="strings.content?.push( getEmptyStringWithLangText())" class="custom-circle-button-sm" - color="primary" mat-icon-button> + color="primary" mat-icon-button> <mat-icon>add_circle</mat-icon> </button> <button (click)=" strings.content?.splice(i, 1)" [disabled]="strings.content?.length! < 2" - class="custom-circle-button-sm" color="accent" mat-icon-button> + class="custom-circle-button-sm" color="accent" mat-icon-button> <mat-icon>remove_circle</mat-icon> </button> </div> diff --git a/src/app/components/dcc/dcc-responsible-person/dcc-responsible-person.component.html b/src/app/components/dcc/dcc-responsible-person/dcc-responsible-person.component.html index 50d7dd879ce18861d80b5bde4d0d76e39df0452d..30536c50b48a50d5bb6638f035471c0b256197d3 100644 --- a/src/app/components/dcc/dcc-responsible-person/dcc-responsible-person.component.html +++ b/src/app/components/dcc/dcc-responsible-person/dcc-responsible-person.component.html @@ -26,7 +26,7 @@ OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --> - <mat-card *ngFor="let respPers of list; let i = index" class="blue-card"> +<mat-card *ngFor="let respPers of list; let i = index" class="blue-card"> <mat-card-header> <div class="header-title"> <mat-card-title class="title">{{'dcc.responsiblePerson' | translate}} {{i+1}}</mat-card-title> diff --git a/src/app/components/dcc/dcc-richcontent/dcc-richcontent.component.html b/src/app/components/dcc/dcc-richcontent/dcc-richcontent.component.html index 8bbd350f36af95b09ec80172c6b37ac3d363c137..10f12cc2356a420cef9ceb2d6e72a868496f24ad 100644 --- a/src/app/components/dcc/dcc-richcontent/dcc-richcontent.component.html +++ b/src/app/components/dcc/dcc-richcontent/dcc-richcontent.component.html @@ -28,7 +28,8 @@ --> <mat-toolbar color="normal"> <div class="icon-container"> - <button (click)="toggleComponent('language')" mat-icon-button matTooltip="{{'dcc.rich-content.language' | translate}}"> + <button (click)="toggleComponent('language')" mat-icon-button + matTooltip="{{'dcc.rich-content.language' | translate}}"> <mat-icon>language</mat-icon> </button> <button (click)="toggleComponent('file')" mat-icon-button matTooltip="{{'dcc.rich-content.file' | translate}}"> diff --git a/src/app/components/dcc/dcc-software/dcc-software.component.html b/src/app/components/dcc/dcc-software/dcc-software.component.html index 966dda60e893335c479b7691046f0c6c08b9bbd7..82091ba539b08f39b8c803a3453c33ae1f2d8a04 100644 --- a/src/app/components/dcc/dcc-software/dcc-software.component.html +++ b/src/app/components/dcc/dcc-software/dcc-software.component.html @@ -40,7 +40,7 @@ </mat-card-header> <mat-card-content *ngIf="isExpanded[i]"> <app-dcc-localised-string [isRequired]="true" [placeholder]="'Name'" - [strings]="software.name!"></app-dcc-localised-string> + [strings]="software.name!"></app-dcc-localised-string> <div class="dcc-row"> <div class="label-container"> <label for="version">{{'dcc.software.version' | translate}}<span class="asterix">*</span></label> @@ -50,7 +50,7 @@ </mat-form-field> </div> <button (click)="list.splice(i, 1);isExpanded.splice(i,1)" *ngIf="list!.length > 1" class="custom-circle-button-md" - color="accent" mat-icon-button> + color="accent" mat-icon-button> <mat-icon>remove_circle</mat-icon> </button> </mat-card-content> diff --git a/src/app/components/dcc/dcc-upload/dcc-upload.component.html b/src/app/components/dcc/dcc-upload/dcc-upload.component.html index 7e2cb4262c7ebcad92eca0518c7e597200a4c443..501fc27b4ee7c9bf2d01a524bbafceec4790b50e 100644 --- a/src/app/components/dcc/dcc-upload/dcc-upload.component.html +++ b/src/app/components/dcc/dcc-upload/dcc-upload.component.html @@ -27,15 +27,15 @@ OF THE POSSIBILITY OF SUCH DAMAGE. --> <input - #fileUpload - (change)="onChange($event)" - class="file-input" - type="file" - [accept]="requiredFileType" + #fileUpload + (change)="onChange($event)" + [accept]="requiredFileType" + class="file-input" + type="file" > <button - (click)="fileUpload.click()" - color="primary" - mat-raised-button> + (click)="fileUpload.click()" + color="primary" + mat-raised-button> {{'dcc.dccUpload' | translate}} </button> diff --git a/src/app/components/dcc/dcc.component.html b/src/app/components/dcc/dcc.component.html index 8d27c4b905ed55112d3d545c4ac479362502c1d1..a1d26f0f2742dff5f3a6e2bb865132d53327a521 100644 --- a/src/app/components/dcc/dcc.component.html +++ b/src/app/components/dcc/dcc.component.html @@ -39,7 +39,7 @@ <app-dcc-template-picker></app-dcc-template-picker> <app-dcc-upload></app-dcc-upload> <app-dcc-download [disabled]="dccForm.invalid"></app-dcc-download> - </mat-card-content> + </mat-card-content> </mat-card> <mat-stepper #stepper (selectionChange)="onStepChange($event)" [selectedIndex]="currentStepIndex" linear> <mat-step> @@ -225,17 +225,17 @@ <mat-form-field appearance="fill"> <mat-label>{{'dcc.identificationOfCalibrationLaboratory' | translate}}</mat-label> <input - [(ngModel)]="dcc.administrativeData!.calibrationLaboratory!.calibrationLaboratoryCode" - id="calibrationLaboratoryCode" - matInput - name="calibrationLaboratoryCode" + [(ngModel)]="dcc.administrativeData!.calibrationLaboratory!.calibrationLaboratoryCode" + id="calibrationLaboratoryCode" + matInput + name="calibrationLaboratoryCode" /> </mat-form-field> </div> <mat-divider></mat-divider> <app-dcc-contact - (fileSelected)="onFileSelected($event)" - [contact]="dcc.administrativeData!.calibrationLaboratory!.contact!"> + (fileSelected)="onFileSelected($event)" + [contact]="dcc.administrativeData!.calibrationLaboratory!.contact!"> </app-dcc-contact> </mat-card-content> </mat-card> @@ -558,9 +558,9 @@ <mat-step> <ng-template matStepLabel>{{'dcc.preview' | translate}}</ng-template> <div class="preview-container"> - <mat-tab-group class="preview-tab-group" (selectedTabChange)="onTabChange($event)"> + <mat-tab-group (selectedTabChange)="onTabChange($event)" class="preview-tab-group"> <mat-tab label="{{'dcc.preview.human-readable' | translate}}"> - <app-dcc-human-readable [humanReadableHtml]="humanReadableHtml" [dcc]="this.dcc"></app-dcc-human-readable> + <app-dcc-human-readable [dcc]="this.dcc" [humanReadableHtml]="humanReadableHtml"></app-dcc-human-readable> </mat-tab> <mat-tab label="{{'dcc.preview.xml' | translate}}">{{'dcc.preview.xml' | translate}}</mat-tab> <mat-tab label="{{'dcc.preview.files' | translate}}">{{'dcc.preview.files' | translate}}</mat-tab> diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 9258ab00e1b0258e32b64f2a52a569623414ccb9..77253d6f60164f492ea1ff5b9706728edc6e31e9 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -1,144 +1,144 @@ { - "button.applyLanguage": "Sprache anwenden", - "button.close": "Schließen", - "button.nextStep": "Nächster Schritt", - "button.previousStep": "Vorheriger Schritt", - "button.toDashboard": "Zum Dashboard", - "button.toStartPage": "Zur Startseite", - "dcc.addStatements": "Statements hinzufügen", - "dcc.administrativeData": "Administrative Daten", - "dcc.applyTemplate": "Vorlage anwenden", - "dcc.beginDateOfLaboratoryProcedure": "Startdatum der Labortätigkeit", - "dcc.calibration-certificate": "Kalibrierzertifikat", - "dcc.calibrationCertificateNumber": "Nummer des Kalibrierscheins", - "dcc.calibrationItem": "Kalibriergegenstand", - "dcc.calibrationItems": "Kalibriergegenstände", - "dcc.calibrationLaboratory": "Kalibrierlabor", - "dcc.calibrationLaboratoryCode": "Kennung", - "dcc.city": "Stadt", - "dcc.classification": "Klassifizierung", - "dcc.conformity": "Konformität", - "dcc.contact.address": "Anschrift", - "dcc.contents": "Inhalt", - "dcc.convention": "Konvention", - "dcc.coreData": "Basis-Daten", - "dcc.countryCode": "Ländercode", - "dcc.countryOfCalibration": "Land der Kalibrierung", - "dcc.customer": "Kunde", - "dcc.data.addData": "Daten hinzufügen", - "dcc.data.byteData": "Binärdaten", - "dcc.data.formula": "Formel", - "dcc.data.list": "Liste", - "dcc.data.quantity": "Messgröße", - "dcc.data.richContent": "Rich-Content", - "dcc.date": "Datum", - "dcc.dccSoftware": "DCC-Software", - "dcc.dccTemplates": "DCC-Vorlagen", - "dcc.dccUpload": "DCC hochladen", - "dcc.declaration": "Deklaration", - "dcc.description": "Beschreibung", - "dcc.downloadDcc": "DCC herunterladen", - "dcc.eMail": "E-Mail", - "dcc.emailAddress": "E-Mail-Adresse", - "dcc.endDateOfLaboratoryProcedure": "Ende der Labortätigeit", - "dcc.fileName": "Dateiname", - "dcc.files": "Dateien", - "dcc.fileUpload": "Datei hochladen", - "dcc.footer.imprint": "Impressum", - "dcc.footer.license": "Lizenz", - "dcc.footer.privacy": "Datenschutz", - "dcc.furtherInformation": "Weitere Informationen", - "dcc.identificationOfCalibrationLaboratory": "des Kalibrierlabors", - "dcc.identifications.identifier": "Identifikator", - "dcc.identifications.issuer": "Herausgeber", - "dcc.identifiersOfCalibrationItem": "Identifikatoren des Kalibriergegenstands", - "dcc.influenceConditions": "Einflussfaktoren", - "dcc.influenceConditions.name": "Name der Bedingung", - "dcc.influenceFactor": "Einflussfaktor", - "dcc.installedSoftware": "Installierte Software", - "dcc.label": "Benennung", - "dcc.location": "Standort", - "dcc.location.city": "Ort", - "dcc.location.countryCode": "Ländercode", - "dcc.location.houseNumber": "Hausnummer", - "dcc.location.poBox": "Postfach", - "dcc.location.postalCode": "Postleitzahl", - "dcc.location.stateCode": "Bundesland", - "dcc.location.street": "Straße", - "dcc.manufacturer": "Hersteller", - "dcc.measurementResult": "Messergebnis", - "dcc.measurementResults": "Messergebnisse", - "dcc.measuringDevice": "Messgerät", - "dcc.metaData": "Meta-Daten", - "dcc.mimeType": "MIME-Typ", - "dcc.model": "Modell", - "dcc.modelOrOther": "Modell / Sonstiges", - "dcc.name": "Name", - "dcc.nonSIDefinition": "Nicht-SI-Definition", - "dcc.nonSIUnit": "Nicht-SI-Einheit", - "dcc.norm": "Norm", - "dcc.normOfClassification": "Norm der Klassifizierung", - "dcc.openDccWiki": "DCC-Wiki öffnen", - "dcc.period": "Periode", - "dcc.phone": "Telefon", - "dcc.phoneNumber": "Telefonnummer", - "dcc.poBox": "Postfach", - "dcc.postalCode": "Postleitzahl", - "dcc.preview": "Vorschau", - "dcc.preview.attention": "Achtung", - "dcc.preview.files": "Dateien", - "dcc.preview.human-readable": "Lesefassung", - "dcc.preview.mandatoryFields": "Bitte ergänzen Sie alle Pflichtfelder", - "dcc.preview.xml": "XML-Vorschau", - "dcc.receiptDateOfCalibrationItem": "Eingangsdatum des Kalibrierguts", - "dcc.reference": "Referenz", - "dcc.responsibleAuthority": "Verantwortliche Stelle", - "dcc.responsiblePerson": "Verantwortliche Person", - "dcc.responsiblePersons": "Verantwortliche Personen", - "dcc.results": "Ergebnisse", - "dcc.rich-content.file": "Datei", - "dcc.rich-content.language": "Sprache", - "dcc.rich-content.mathml": "MathML", - "dcc.selectDccTemplate": "Vorlage auswählen", - "dcc.software.version": "Version", - "dcc.state": "Bundesland", - "dcc.statements": "Statements", - "dcc.status": "Status", - "dcc.street": "Straße", - "dcc.streetNumber": "Hausnummer", - "dcc.traceableResult": "Rückführbares Messergebnis", - "dcc.unit": "Einheit", - "dcc.usedLanguages": "Verwendete Sprachen", - "dcc.usedMeasurementDevices": "Verwendete Messinstrumente", - "dcc.usedMethod": "Verwendete Methode", - "dcc.usedMethods": "Verwendete Methoden", - "dcc.usedSoftware": "Verwendete Software", - "dcc.valid": "Valide", - "dcc.value": "Wert", - "dcc.xml": "XML", - "dcc.YYYYMMDD": "JJJJ-MM-TT", - "error.error": "Fehler", - "error.errorMessage": "Es ist ein Fehler aufgetreten", - "error.statusCode": "Statuscode", - "fileUpload.downloadFile": "Datei herunterladen", - "fileUpload.pleaseClickToUploadFile": "Bite klicken, um Datei hochzuladen", - "fileUpload.selectedFile": "Ausgewählte Datei", - "fileUpload.uploadFile": "Datei hochladen", - "info-dialog.aboutUs": "Über uns", - "info-dialog.apiDocumentation": "API-Dokumentation", - "info-dialog.dataProtection": "Datenschutz", - "info-dialog.dccWiki": "DCC-Wiki", - "info-dialog.imprint": "Impressum", - "info-dialog.title": "Information", - "mathml.createMathML": "MathML erzeugen", - "mathml.formula": "Formel", - "mathml.yourmathMlExpressionHere": "MathML-Ausdruck hier", - "not-found.isUnknown": "ist unbekannt", - "not-found.thePage": "Die Seite", - "not-found.title": "Seite nicht gefunden", - "settings-dialog.languageSelection": "Sprachauswahl", - "version.angularVersion": "Angular-Version", - "version.backendTimestamp": "Backend-Zeitstempel", - "version.backendVersion": "Backend-Version", - "version.frontendVersion": "Frontend-Version" + "button.applyLanguage": "Sprache anwenden", + "button.close": "Schließen", + "button.nextStep": "Nächster Schritt", + "button.previousStep": "Vorheriger Schritt", + "button.toDashboard": "Zum Dashboard", + "button.toStartPage": "Zur Startseite", + "dcc.addStatements": "Statements hinzufügen", + "dcc.administrativeData": "Administrative Daten", + "dcc.applyTemplate": "Vorlage anwenden", + "dcc.beginDateOfLaboratoryProcedure": "Startdatum der Labortätigkeit", + "dcc.calibration-certificate": "Kalibrierzertifikat", + "dcc.calibrationCertificateNumber": "Nummer des Kalibrierscheins", + "dcc.calibrationItem": "Kalibriergegenstand", + "dcc.calibrationItems": "Kalibriergegenstände", + "dcc.calibrationLaboratory": "Kalibrierlabor", + "dcc.calibrationLaboratoryCode": "Kennung", + "dcc.city": "Stadt", + "dcc.classification": "Klassifizierung", + "dcc.conformity": "Konformität", + "dcc.contact.address": "Anschrift", + "dcc.contents": "Inhalt", + "dcc.convention": "Konvention", + "dcc.coreData": "Basis-Daten", + "dcc.countryCode": "Ländercode", + "dcc.countryOfCalibration": "Land der Kalibrierung", + "dcc.customer": "Kunde", + "dcc.data.addData": "Daten hinzufügen", + "dcc.data.byteData": "Binärdaten", + "dcc.data.formula": "Formel", + "dcc.data.list": "Liste", + "dcc.data.quantity": "Messgröße", + "dcc.data.richContent": "Rich-Content", + "dcc.date": "Datum", + "dcc.dccSoftware": "DCC-Software", + "dcc.dccTemplates": "DCC-Vorlagen", + "dcc.dccUpload": "DCC hochladen", + "dcc.declaration": "Deklaration", + "dcc.description": "Beschreibung", + "dcc.downloadDcc": "DCC herunterladen", + "dcc.eMail": "E-Mail", + "dcc.emailAddress": "E-Mail-Adresse", + "dcc.endDateOfLaboratoryProcedure": "Ende der Labortätigeit", + "dcc.fileName": "Dateiname", + "dcc.files": "Dateien", + "dcc.fileUpload": "Datei hochladen", + "dcc.footer.imprint": "Impressum", + "dcc.footer.license": "Lizenz", + "dcc.footer.privacy": "Datenschutz", + "dcc.furtherInformation": "Weitere Informationen", + "dcc.identificationOfCalibrationLaboratory": "des Kalibrierlabors", + "dcc.identifications.identifier": "Identifikator", + "dcc.identifications.issuer": "Herausgeber", + "dcc.identifiersOfCalibrationItem": "Identifikatoren des Kalibriergegenstands", + "dcc.influenceConditions": "Einflussfaktoren", + "dcc.influenceConditions.name": "Name der Bedingung", + "dcc.influenceFactor": "Einflussfaktor", + "dcc.installedSoftware": "Installierte Software", + "dcc.label": "Benennung", + "dcc.location": "Standort", + "dcc.location.city": "Ort", + "dcc.location.countryCode": "Ländercode", + "dcc.location.houseNumber": "Hausnummer", + "dcc.location.poBox": "Postfach", + "dcc.location.postalCode": "Postleitzahl", + "dcc.location.stateCode": "Bundesland", + "dcc.location.street": "Straße", + "dcc.manufacturer": "Hersteller", + "dcc.measurementResult": "Messergebnis", + "dcc.measurementResults": "Messergebnisse", + "dcc.measuringDevice": "Messgerät", + "dcc.metaData": "Meta-Daten", + "dcc.mimeType": "MIME-Typ", + "dcc.model": "Modell", + "dcc.modelOrOther": "Modell / Sonstiges", + "dcc.name": "Name", + "dcc.nonSIDefinition": "Nicht-SI-Definition", + "dcc.nonSIUnit": "Nicht-SI-Einheit", + "dcc.norm": "Norm", + "dcc.normOfClassification": "Norm der Klassifizierung", + "dcc.openDccWiki": "DCC-Wiki öffnen", + "dcc.period": "Periode", + "dcc.phone": "Telefon", + "dcc.phoneNumber": "Telefonnummer", + "dcc.poBox": "Postfach", + "dcc.postalCode": "Postleitzahl", + "dcc.preview": "Vorschau", + "dcc.preview.attention": "Achtung", + "dcc.preview.files": "Dateien", + "dcc.preview.human-readable": "Lesefassung", + "dcc.preview.mandatoryFields": "Bitte ergänzen Sie alle Pflichtfelder", + "dcc.preview.xml": "XML-Vorschau", + "dcc.receiptDateOfCalibrationItem": "Eingangsdatum des Kalibrierguts", + "dcc.reference": "Referenz", + "dcc.responsibleAuthority": "Verantwortliche Stelle", + "dcc.responsiblePerson": "Verantwortliche Person", + "dcc.responsiblePersons": "Verantwortliche Personen", + "dcc.results": "Ergebnisse", + "dcc.rich-content.file": "Datei", + "dcc.rich-content.language": "Sprache", + "dcc.rich-content.mathml": "MathML", + "dcc.selectDccTemplate": "Vorlage auswählen", + "dcc.software.version": "Version", + "dcc.state": "Bundesland", + "dcc.statements": "Statements", + "dcc.status": "Status", + "dcc.street": "Straße", + "dcc.streetNumber": "Hausnummer", + "dcc.traceableResult": "Rückführbares Messergebnis", + "dcc.unit": "Einheit", + "dcc.usedLanguages": "Verwendete Sprachen", + "dcc.usedMeasurementDevices": "Verwendete Messinstrumente", + "dcc.usedMethod": "Verwendete Methode", + "dcc.usedMethods": "Verwendete Methoden", + "dcc.usedSoftware": "Verwendete Software", + "dcc.valid": "Valide", + "dcc.value": "Wert", + "dcc.xml": "XML", + "dcc.YYYYMMDD": "JJJJ-MM-TT", + "error.error": "Fehler", + "error.errorMessage": "Es ist ein Fehler aufgetreten", + "error.statusCode": "Statuscode", + "fileUpload.downloadFile": "Datei herunterladen", + "fileUpload.pleaseClickToUploadFile": "Bite klicken, um Datei hochzuladen", + "fileUpload.selectedFile": "Ausgewählte Datei", + "fileUpload.uploadFile": "Datei hochladen", + "info-dialog.aboutUs": "Über uns", + "info-dialog.apiDocumentation": "API-Dokumentation", + "info-dialog.dataProtection": "Datenschutz", + "info-dialog.dccWiki": "DCC-Wiki", + "info-dialog.imprint": "Impressum", + "info-dialog.title": "Information", + "mathml.createMathML": "MathML erzeugen", + "mathml.formula": "Formel", + "mathml.yourmathMlExpressionHere": "MathML-Ausdruck hier", + "not-found.isUnknown": "ist unbekannt", + "not-found.thePage": "Die Seite", + "not-found.title": "Seite nicht gefunden", + "settings-dialog.languageSelection": "Sprachauswahl", + "version.angularVersion": "Angular-Version", + "version.backendTimestamp": "Backend-Zeitstempel", + "version.backendVersion": "Backend-Version", + "version.frontendVersion": "Frontend-Version" } diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 1bfb61cd5723f513268df1ea907fada0353b068f..f0c3fdcec892a7daf2749ff788914449a3ef177c 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -1,144 +1,144 @@ { - "button.applyLanguage": "Use language", - "button.close": "Close", - "button.nextStep": "Next step", - "button.previousStep": "Previous step", - "button.toDashboard": "To the dashboard", - "button.toStartPage": "To the homepage", - "dcc.addStatements": "Add statements", - "dcc.administrativeData": "Administrative data", - "dcc.applyTemplate": "Apply template", - "dcc.beginDateOfLaboratoryProcedure": "Start date of the laboratory activity", - "dcc.calibration-certificate": "Calibration certificate", - "dcc.calibrationCertificateNumber": "Number of the calibration certificate", - "dcc.calibrationItem": "Calibration item", - "dcc.calibrationItems": "Calibration items", - "dcc.calibrationLaboratory": "Calibration laboratory", - "dcc.calibrationLaboratoryCode": "Identifier", - "dcc.city": "City", - "dcc.classification": "Classification", - "dcc.conformity": "Conformity", - "dcc.contact.address": "Address", - "dcc.contents": "Contents", - "dcc.convention": "Convention", - "dcc.coreData": "Core data", - "dcc.countryCode": "Country code", - "dcc.countryOfCalibration": "Country of calibration", - "dcc.customer": "Customer", - "dcc.data.addData": "Add data", - "dcc.data.byteData": "Binary data", - "dcc.data.formula": "Formula", - "dcc.data.list": "List", - "dcc.data.quantity": "Quantity", - "dcc.data.richContent": "Rich content", - "dcc.date": "Date", - "dcc.dccSoftware": "DCC software", - "dcc.dccTemplates": "DCC templates", - "dcc.dccUpload": "Upload DCC", - "dcc.declaration": "Declaration", - "dcc.description": "Description", - "dcc.downloadDcc": "Download DCC", - "dcc.eMail": "eMail", - "dcc.emailAddress": "E-mail address", - "dcc.endDateOfLaboratoryProcedure": "End date of laboratory activity", - "dcc.fileName": "File name", - "dcc.files": "Files", - "dcc.fileUpload": "Upload file", - "dcc.footer.imprint": "Imprint", - "dcc.footer.license": "Licence", - "dcc.footer.privacy": "Data protection", - "dcc.furtherInformation": "Further information", - "dcc.identificationOfCalibrationLaboratory": "of the calibration laboratory", - "dcc.identifications.identifier": "Identifier", - "dcc.identifications.issuer": "Issuer", - "dcc.identifiersOfCalibrationItem": "Identifiers of calibration item", - "dcc.influenceConditions": "Influence conditions", - "dcc.influenceConditions.name": "Name of the condition", - "dcc.influenceFactor": "Influencing factor", - "dcc.installedSoftware": "Installed software", - "dcc.label": "Label", - "dcc.location": "Location", - "dcc.location.city": "Place", - "dcc.location.countryCode": "Country code", - "dcc.location.houseNumber": "House number", - "dcc.location.poBox": "P.O. Box", - "dcc.location.postalCode": "Postcode", - "dcc.location.stateCode": "State", - "dcc.location.street": "Street", - "dcc.manufacturer": "Manufacturer", - "dcc.measurementResult": "Measurement result", - "dcc.measurementResults": "Measurement results", - "dcc.measuringDevice": "Measuring device", - "dcc.metaData": "Meta data", - "dcc.mimeType": "MIME type", - "dcc.model": "Model", - "dcc.modelOrOther": "Model / Other", - "dcc.name": "Name", - "dcc.nonSIDefinition": "Non-SI definition", - "dcc.nonSIUnit": "Non-SI unit", - "dcc.norm": "Norm", - "dcc.normOfClassification": "Norm of classification", - "dcc.openDccWiki": "Open DCC Wiki", - "dcc.period": "Period", - "dcc.phone": "Phone", - "dcc.phoneNumber": "Telephone number", - "dcc.poBox": "P.O. Box", - "dcc.postalCode": "Postcode", - "dcc.preview": "Preview", - "dcc.preview.attention": "Attention", - "dcc.preview.files": "Files", - "dcc.preview.human-readable": "Reading version", - "dcc.preview.mandatoryFields": "Please complete all mandatory fields", - "dcc.preview.xml": "XML preview", - "dcc.receiptDateOfCalibrationItem": "Receipt date of calibration items", - "dcc.reference": "Reference", - "dcc.responsibleAuthority": "Responsible body", - "dcc.responsiblePerson": "Responsible person", - "dcc.responsiblePersons": "Responsible persons", - "dcc.results": "Results", - "dcc.rich-content.file": "File", - "dcc.rich-content.language": "Language", - "dcc.rich-content.mathml": "MathML", - "dcc.selectDccTemplate": "Select template", - "dcc.software.version": "Version", - "dcc.state": "State", - "dcc.statements": "Statements", - "dcc.status": "Status", - "dcc.street": "Street", - "dcc.streetNumber": "House number", - "dcc.traceableResult": "Traceable measurement result", - "dcc.unit": "Unit", - "dcc.usedLanguages": "Used languages", - "dcc.usedMeasurementDevices": "Used measurement devices", - "dcc.usedMethod": "Used method", - "dcc.usedMethods": "Used methods", - "dcc.usedSoftware": "Used software", - "dcc.valid": "Valid", - "dcc.value": "Value", - "dcc.xml": "XML", - "dcc.YYYYMMDD": "YYYY-MM-DD", - "error.error": "Error", - "error.errorMessage": "An error occurred", - "error.statusCode": "Status code", - "fileUpload.downloadFile": "Download file", - "fileUpload.pleaseClickToUploadFile": "Please click to upload file", - "fileUpload.selectedFile": "Selected file", - "fileUpload.uploadFile": "Upload file", - "info-dialog.aboutUs": "About us", - "info-dialog.apiDocumentation": "API documentation", - "info-dialog.dataProtection": "Privacy / Legal", - "info-dialog.dccWiki": "DCC Wiki", - "info-dialog.imprint": "Imprint", - "info-dialog.title": "Information", - "mathml.createMathML": "Create MathML", - "mathml.formula": "Formula", - "mathml.yourmathMlExpressionHere": "MathML expression here", - "not-found.isUnknown": "is unknown", - "not-found.thePage": "The page", - "not-found.title": "Page not found", - "settings-dialog.languageSelection": "Language selection", - "version.angularVersion": "Angular version", - "version.backendTimestamp": "Backend timestamp", - "version.backendVersion": "Backend version", - "version.frontendVersion": "Frontend version" + "button.applyLanguage": "Use language", + "button.close": "Close", + "button.nextStep": "Next step", + "button.previousStep": "Previous step", + "button.toDashboard": "To the dashboard", + "button.toStartPage": "To the homepage", + "dcc.addStatements": "Add statements", + "dcc.administrativeData": "Administrative data", + "dcc.applyTemplate": "Apply template", + "dcc.beginDateOfLaboratoryProcedure": "Start date of the laboratory activity", + "dcc.calibration-certificate": "Calibration certificate", + "dcc.calibrationCertificateNumber": "Number of the calibration certificate", + "dcc.calibrationItem": "Calibration item", + "dcc.calibrationItems": "Calibration items", + "dcc.calibrationLaboratory": "Calibration laboratory", + "dcc.calibrationLaboratoryCode": "Identifier", + "dcc.city": "City", + "dcc.classification": "Classification", + "dcc.conformity": "Conformity", + "dcc.contact.address": "Address", + "dcc.contents": "Contents", + "dcc.convention": "Convention", + "dcc.coreData": "Core data", + "dcc.countryCode": "Country code", + "dcc.countryOfCalibration": "Country of calibration", + "dcc.customer": "Customer", + "dcc.data.addData": "Add data", + "dcc.data.byteData": "Binary data", + "dcc.data.formula": "Formula", + "dcc.data.list": "List", + "dcc.data.quantity": "Quantity", + "dcc.data.richContent": "Rich content", + "dcc.date": "Date", + "dcc.dccSoftware": "DCC software", + "dcc.dccTemplates": "DCC templates", + "dcc.dccUpload": "Upload DCC", + "dcc.declaration": "Declaration", + "dcc.description": "Description", + "dcc.downloadDcc": "Download DCC", + "dcc.eMail": "eMail", + "dcc.emailAddress": "E-mail address", + "dcc.endDateOfLaboratoryProcedure": "End date of laboratory activity", + "dcc.fileName": "File name", + "dcc.files": "Files", + "dcc.fileUpload": "Upload file", + "dcc.footer.imprint": "Imprint", + "dcc.footer.license": "Licence", + "dcc.footer.privacy": "Data protection", + "dcc.furtherInformation": "Further information", + "dcc.identificationOfCalibrationLaboratory": "of the calibration laboratory", + "dcc.identifications.identifier": "Identifier", + "dcc.identifications.issuer": "Issuer", + "dcc.identifiersOfCalibrationItem": "Identifiers of calibration item", + "dcc.influenceConditions": "Influence conditions", + "dcc.influenceConditions.name": "Name of the condition", + "dcc.influenceFactor": "Influencing factor", + "dcc.installedSoftware": "Installed software", + "dcc.label": "Label", + "dcc.location": "Location", + "dcc.location.city": "Place", + "dcc.location.countryCode": "Country code", + "dcc.location.houseNumber": "House number", + "dcc.location.poBox": "P.O. Box", + "dcc.location.postalCode": "Postcode", + "dcc.location.stateCode": "State", + "dcc.location.street": "Street", + "dcc.manufacturer": "Manufacturer", + "dcc.measurementResult": "Measurement result", + "dcc.measurementResults": "Measurement results", + "dcc.measuringDevice": "Measuring device", + "dcc.metaData": "Meta data", + "dcc.mimeType": "MIME type", + "dcc.model": "Model", + "dcc.modelOrOther": "Model / Other", + "dcc.name": "Name", + "dcc.nonSIDefinition": "Non-SI definition", + "dcc.nonSIUnit": "Non-SI unit", + "dcc.norm": "Norm", + "dcc.normOfClassification": "Norm of classification", + "dcc.openDccWiki": "Open DCC Wiki", + "dcc.period": "Period", + "dcc.phone": "Phone", + "dcc.phoneNumber": "Telephone number", + "dcc.poBox": "P.O. Box", + "dcc.postalCode": "Postcode", + "dcc.preview": "Preview", + "dcc.preview.attention": "Attention", + "dcc.preview.files": "Files", + "dcc.preview.human-readable": "Reading version", + "dcc.preview.mandatoryFields": "Please complete all mandatory fields", + "dcc.preview.xml": "XML preview", + "dcc.receiptDateOfCalibrationItem": "Receipt date of calibration items", + "dcc.reference": "Reference", + "dcc.responsibleAuthority": "Responsible body", + "dcc.responsiblePerson": "Responsible person", + "dcc.responsiblePersons": "Responsible persons", + "dcc.results": "Results", + "dcc.rich-content.file": "File", + "dcc.rich-content.language": "Language", + "dcc.rich-content.mathml": "MathML", + "dcc.selectDccTemplate": "Select template", + "dcc.software.version": "Version", + "dcc.state": "State", + "dcc.statements": "Statements", + "dcc.status": "Status", + "dcc.street": "Street", + "dcc.streetNumber": "House number", + "dcc.traceableResult": "Traceable measurement result", + "dcc.unit": "Unit", + "dcc.usedLanguages": "Used languages", + "dcc.usedMeasurementDevices": "Used measurement devices", + "dcc.usedMethod": "Used method", + "dcc.usedMethods": "Used methods", + "dcc.usedSoftware": "Used software", + "dcc.valid": "Valid", + "dcc.value": "Value", + "dcc.xml": "XML", + "dcc.YYYYMMDD": "YYYY-MM-DD", + "error.error": "Error", + "error.errorMessage": "An error occurred", + "error.statusCode": "Status code", + "fileUpload.downloadFile": "Download file", + "fileUpload.pleaseClickToUploadFile": "Please click to upload file", + "fileUpload.selectedFile": "Selected file", + "fileUpload.uploadFile": "Upload file", + "info-dialog.aboutUs": "About us", + "info-dialog.apiDocumentation": "API documentation", + "info-dialog.dataProtection": "Privacy / Legal", + "info-dialog.dccWiki": "DCC Wiki", + "info-dialog.imprint": "Imprint", + "info-dialog.title": "Information", + "mathml.createMathML": "Create MathML", + "mathml.formula": "Formula", + "mathml.yourmathMlExpressionHere": "MathML expression here", + "not-found.isUnknown": "is unknown", + "not-found.thePage": "The page", + "not-found.title": "Page not found", + "settings-dialog.languageSelection": "Language selection", + "version.angularVersion": "Angular version", + "version.backendTimestamp": "Backend timestamp", + "version.backendVersion": "Backend version", + "version.frontendVersion": "Frontend version" } diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index c3c22ad8f89fbd9804dbc5fa397018046e84c421..d119b24528fd5b083150e7ca7af7792a633d4f51 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -1,144 +1,144 @@ { - "button.applyLanguage": "Utilizar el lenguaje", - "button.close": "Cerrar", - "button.nextStep": "Siguiente paso", - "button.previousStep": "Paso anterior", - "button.toDashboard": "Al salpicadero", - "button.toStartPage": "A la página de inicio", - "dcc.addStatements": "Añadir declaraciones", - "dcc.administrativeData": "Datos administrativos", - "dcc.applyTemplate": "Aplicar plantilla", - "dcc.beginDateOfLaboratoryProcedure": "Fecha de inicio de la actividad de laboratorio", - "dcc.calibration-certificate": "Certificado de calibración", - "dcc.calibrationCertificateNumber": "Número del certificado de calibración", - "dcc.calibrationItem": "Elemento de calibración", - "dcc.calibrationItems": "Elementos de calibración", - "dcc.calibrationLaboratory": "Laboratorio de calibración", - "dcc.calibrationLaboratoryCode": "Identificador", - "dcc.city": "Ciudad", - "dcc.classification": "Clasificación", - "dcc.conformity": "Conformidad", - "dcc.contact.address": "Dirección", - "dcc.contents": "Contenido", - "dcc.convention": "Convención", - "dcc.coreData": "Datos básicos", - "dcc.countryCode": "Código del país", - "dcc.countryOfCalibration": "Tierra de potasa", - "dcc.customer": "Cliente", - "dcc.data.addData": "Añadir datos", - "dcc.data.byteData": "Datos binarios", - "dcc.data.formula": "Fórmula", - "dcc.data.list": "Lista", - "dcc.data.quantity": "Variable medida", - "dcc.data.richContent": "Contenido enriquecido", - "dcc.date": "Fecha", - "dcc.dccSoftware": "Software DCC", - "dcc.dccTemplates": "Plantillas DCC", - "dcc.dccUpload": "Cargar DCC", - "dcc.declaration": "Declaración", - "dcc.description": "Descripción", - "dcc.downloadDcc": "Descargar DCC", - "dcc.eMail": "Correo electrónico", - "dcc.emailAddress": "Correo electrónico", - "dcc.endDateOfLaboratoryProcedure": "Fin de la actividad de laboratorio", - "dcc.fileName": "Nombre del fichero", - "dcc.files": "Archivos", - "dcc.fileUpload": "Cargar archivo", - "dcc.footer.imprint": "Pie de imprenta", - "dcc.footer.license": "Licencia", - "dcc.footer.privacy": "Protección de datos", - "dcc.furtherInformation": "Para más información", - "dcc.identificationOfCalibrationLaboratory": "del laboratorio de calibración", - "dcc.identifications.identifier": "Identificador", - "dcc.identifications.issuer": "Editorial", - "dcc.identifiersOfCalibrationItem": "Identificadores del elemento de calibración", - "dcc.influenceConditions": "Factores que influyen", - "dcc.influenceConditions.name": "Nombre de la enfermedad", - "dcc.influenceFactor": "Factor de influencia", - "dcc.installedSoftware": "Software instalado", - "dcc.label": "Nombrar", - "dcc.location": "Ubicación", - "dcc.location.city": "Lugar", - "dcc.location.countryCode": "Código del país", - "dcc.location.houseNumber": "Número de casa", - "dcc.location.poBox": "Apartado de correos", - "dcc.location.postalCode": "Código postal", - "dcc.location.stateCode": "Estado", - "dcc.location.street": "Calle", - "dcc.manufacturer": "Fabricante", - "dcc.measurementResult": "Resultado de la medición", - "dcc.measurementResults": "Resultados de las mediciones", - "dcc.measuringDevice": "Dispositivo de medición", - "dcc.metaData": "Metadatos", - "dcc.mimeType": "Tipo MIME", - "dcc.model": "Modelo", - "dcc.modelOrOther": "Modelo / Otro", - "dcc.name": "Nombre", - "dcc.nonSIDefinition": "Definición de no-SI", - "dcc.nonSIUnit": "Unidad no-SI", - "dcc.norm": "Norma", - "dcc.normOfClassification": "Norma de clasificación", - "dcc.openDccWiki": "Wiki DCC abierta", - "dcc.period": "Período", - "dcc.phone": "Teléfono", - "dcc.phoneNumber": "Número de teléfono", - "dcc.poBox": "Apartado de correos", - "dcc.postalCode": "Código postal", - "dcc.preview": "Vista previa", - "dcc.preview.attention": "Atención", - "dcc.preview.files": "Archivos", - "dcc.preview.human-readable": "Versión de lectura", - "dcc.preview.mandatoryFields": "Rellene todos los campos obligatorios", - "dcc.preview.xml": "Vista previa XML", - "dcc.receiptDateOfCalibrationItem": "Fecha de recepción del material de calibración", - "dcc.reference": "Referencia", - "dcc.responsibleAuthority": "Organismo responsable", - "dcc.responsiblePerson": "Persona responsable", - "dcc.responsiblePersons": "Responsables", - "dcc.results": "Resultados", - "dcc.rich-content.file": "Archivo", - "dcc.rich-content.language": "Idioma", - "dcc.rich-content.mathml": "MathML", - "dcc.selectDccTemplate": "Seleccionar plantilla", - "dcc.software.version": "Versión", - "dcc.state": "Estado federal", - "dcc.statements": "Declaraciones", - "dcc.status": "Estado", - "dcc.street": "Calle", - "dcc.streetNumber": "Número de casa", - "dcc.traceableResult": "Resultado de medición trazable", - "dcc.unit": "Unidad", - "dcc.usedLanguages": "Lenguas utilizadas", - "dcc.usedMeasurementDevices": "Instrumentos de medida utilizados", - "dcc.usedMethod": "Método utilizado", - "dcc.usedMethods": "Métodos utilizados", - "dcc.usedSoftware": "Software utilizado", - "dcc.valid": "Válido", - "dcc.value": "Valor", - "dcc.xml": "XML", - "dcc.YYYYMMDD": "AAAA-MM-DD", - "error.error": "Error", - "error.errorMessage": "Se ha producido un error", - "error.statusCode": "Código de estado", - "fileUpload.downloadFile": "Descargar archivo", - "fileUpload.pleaseClickToUploadFile": "Haga clic para cargar el archivo", - "fileUpload.selectedFile": "Fichero seleccionado", - "fileUpload.uploadFile": "Cargar archivo", - "info-dialog.aboutUs": "Quiénes somos", - "info-dialog.apiDocumentation": "Documentación API", - "info-dialog.dataProtection": "Protección de datos", - "info-dialog.dccWiki": "Wiki DCC", - "info-dialog.imprint": "Pie de imprenta", - "info-dialog.title": "Información", - "mathml.createMathML": "Crear MathML", - "mathml.formula": "Fórmula", - "mathml.yourmathMlExpressionHere": "Expresión MathML aquí", - "not-found.isUnknown": "es desconocido", - "not-found.thePage": "La página", - "not-found.title": "Página no encontrada", - "settings-dialog.languageSelection": "Selección de idioma", - "version.angularVersion": "Versión Angular", - "version.backendTimestamp": "Marca de tiempo de backend", - "version.backendVersion": "Versión backend", - "version.frontendVersion": "Versión frontend" + "button.applyLanguage": "Utilizar el lenguaje", + "button.close": "Cerrar", + "button.nextStep": "Siguiente paso", + "button.previousStep": "Paso anterior", + "button.toDashboard": "Al salpicadero", + "button.toStartPage": "A la página de inicio", + "dcc.addStatements": "Añadir declaraciones", + "dcc.administrativeData": "Datos administrativos", + "dcc.applyTemplate": "Aplicar plantilla", + "dcc.beginDateOfLaboratoryProcedure": "Fecha de inicio de la actividad de laboratorio", + "dcc.calibration-certificate": "Certificado de calibración", + "dcc.calibrationCertificateNumber": "Número del certificado de calibración", + "dcc.calibrationItem": "Elemento de calibración", + "dcc.calibrationItems": "Elementos de calibración", + "dcc.calibrationLaboratory": "Laboratorio de calibración", + "dcc.calibrationLaboratoryCode": "Identificador", + "dcc.city": "Ciudad", + "dcc.classification": "Clasificación", + "dcc.conformity": "Conformidad", + "dcc.contact.address": "Dirección", + "dcc.contents": "Contenido", + "dcc.convention": "Convención", + "dcc.coreData": "Datos básicos", + "dcc.countryCode": "Código del país", + "dcc.countryOfCalibration": "Tierra de potasa", + "dcc.customer": "Cliente", + "dcc.data.addData": "Añadir datos", + "dcc.data.byteData": "Datos binarios", + "dcc.data.formula": "Fórmula", + "dcc.data.list": "Lista", + "dcc.data.quantity": "Variable medida", + "dcc.data.richContent": "Contenido enriquecido", + "dcc.date": "Fecha", + "dcc.dccSoftware": "Software DCC", + "dcc.dccTemplates": "Plantillas DCC", + "dcc.dccUpload": "Cargar DCC", + "dcc.declaration": "Declaración", + "dcc.description": "Descripción", + "dcc.downloadDcc": "Descargar DCC", + "dcc.eMail": "Correo electrónico", + "dcc.emailAddress": "Correo electrónico", + "dcc.endDateOfLaboratoryProcedure": "Fin de la actividad de laboratorio", + "dcc.fileName": "Nombre del fichero", + "dcc.files": "Archivos", + "dcc.fileUpload": "Cargar archivo", + "dcc.footer.imprint": "Pie de imprenta", + "dcc.footer.license": "Licencia", + "dcc.footer.privacy": "Protección de datos", + "dcc.furtherInformation": "Para más información", + "dcc.identificationOfCalibrationLaboratory": "del laboratorio de calibración", + "dcc.identifications.identifier": "Identificador", + "dcc.identifications.issuer": "Editorial", + "dcc.identifiersOfCalibrationItem": "Identificadores del elemento de calibración", + "dcc.influenceConditions": "Factores que influyen", + "dcc.influenceConditions.name": "Nombre de la enfermedad", + "dcc.influenceFactor": "Factor de influencia", + "dcc.installedSoftware": "Software instalado", + "dcc.label": "Nombrar", + "dcc.location": "Ubicación", + "dcc.location.city": "Lugar", + "dcc.location.countryCode": "Código del país", + "dcc.location.houseNumber": "Número de casa", + "dcc.location.poBox": "Apartado de correos", + "dcc.location.postalCode": "Código postal", + "dcc.location.stateCode": "Estado", + "dcc.location.street": "Calle", + "dcc.manufacturer": "Fabricante", + "dcc.measurementResult": "Resultado de la medición", + "dcc.measurementResults": "Resultados de las mediciones", + "dcc.measuringDevice": "Dispositivo de medición", + "dcc.metaData": "Metadatos", + "dcc.mimeType": "Tipo MIME", + "dcc.model": "Modelo", + "dcc.modelOrOther": "Modelo / Otro", + "dcc.name": "Nombre", + "dcc.nonSIDefinition": "Definición de no-SI", + "dcc.nonSIUnit": "Unidad no-SI", + "dcc.norm": "Norma", + "dcc.normOfClassification": "Norma de clasificación", + "dcc.openDccWiki": "Wiki DCC abierta", + "dcc.period": "Período", + "dcc.phone": "Teléfono", + "dcc.phoneNumber": "Número de teléfono", + "dcc.poBox": "Apartado de correos", + "dcc.postalCode": "Código postal", + "dcc.preview": "Vista previa", + "dcc.preview.attention": "Atención", + "dcc.preview.files": "Archivos", + "dcc.preview.human-readable": "Versión de lectura", + "dcc.preview.mandatoryFields": "Rellene todos los campos obligatorios", + "dcc.preview.xml": "Vista previa XML", + "dcc.receiptDateOfCalibrationItem": "Fecha de recepción del material de calibración", + "dcc.reference": "Referencia", + "dcc.responsibleAuthority": "Organismo responsable", + "dcc.responsiblePerson": "Persona responsable", + "dcc.responsiblePersons": "Responsables", + "dcc.results": "Resultados", + "dcc.rich-content.file": "Archivo", + "dcc.rich-content.language": "Idioma", + "dcc.rich-content.mathml": "MathML", + "dcc.selectDccTemplate": "Seleccionar plantilla", + "dcc.software.version": "Versión", + "dcc.state": "Estado federal", + "dcc.statements": "Declaraciones", + "dcc.status": "Estado", + "dcc.street": "Calle", + "dcc.streetNumber": "Número de casa", + "dcc.traceableResult": "Resultado de medición trazable", + "dcc.unit": "Unidad", + "dcc.usedLanguages": "Lenguas utilizadas", + "dcc.usedMeasurementDevices": "Instrumentos de medida utilizados", + "dcc.usedMethod": "Método utilizado", + "dcc.usedMethods": "Métodos utilizados", + "dcc.usedSoftware": "Software utilizado", + "dcc.valid": "Válido", + "dcc.value": "Valor", + "dcc.xml": "XML", + "dcc.YYYYMMDD": "AAAA-MM-DD", + "error.error": "Error", + "error.errorMessage": "Se ha producido un error", + "error.statusCode": "Código de estado", + "fileUpload.downloadFile": "Descargar archivo", + "fileUpload.pleaseClickToUploadFile": "Haga clic para cargar el archivo", + "fileUpload.selectedFile": "Fichero seleccionado", + "fileUpload.uploadFile": "Cargar archivo", + "info-dialog.aboutUs": "Quiénes somos", + "info-dialog.apiDocumentation": "Documentación API", + "info-dialog.dataProtection": "Protección de datos", + "info-dialog.dccWiki": "Wiki DCC", + "info-dialog.imprint": "Pie de imprenta", + "info-dialog.title": "Información", + "mathml.createMathML": "Crear MathML", + "mathml.formula": "Fórmula", + "mathml.yourmathMlExpressionHere": "Expresión MathML aquí", + "not-found.isUnknown": "es desconocido", + "not-found.thePage": "La página", + "not-found.title": "Página no encontrada", + "settings-dialog.languageSelection": "Selección de idioma", + "version.angularVersion": "Versión Angular", + "version.backendTimestamp": "Marca de tiempo de backend", + "version.backendVersion": "Versión backend", + "version.frontendVersion": "Versión frontend" } diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index fe8c35bbff991b2552cc6da096089c1812d2cd3a..dcf0821720efaef5d19166e271969604e622c28f 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -1,144 +1,144 @@ { - "button.applyLanguage": "Utiliser la langue", - "button.close": "Fermer", - "button.nextStep": "Prochaine étape", - "button.previousStep": "Étape précédente", - "button.toDashboard": "Vers le tableau de bord", - "button.toStartPage": "Vers la page d'accueil", - "dcc.addStatements": "Ajouter des déclarations", - "dcc.administrativeData": "Données administratives", - "dcc.applyTemplate": "Appliquer le modèle", - "dcc.beginDateOfLaboratoryProcedure": "Date de début de l'activité du laboratoire", - "dcc.calibration-certificate": "Certificat d'étalonnage", - "dcc.calibrationCertificateNumber": "Numéro du certificat d'étalonnage", - "dcc.calibrationItem": "Objet de d'étalonnage", - "dcc.calibrationItems": "Objets d'étalonnage", - "dcc.calibrationLaboratory": "Laboratoire d'étalonnage", - "dcc.calibrationLaboratoryCode": "Identification", - "dcc.city": "Ville", - "dcc.classification": "Classification", - "dcc.conformity": "Conformité", - "dcc.contact.address": "Adresse", - "dcc.contents": "Contenu", - "dcc.convention": "Convention", - "dcc.coreData": "Données de base", - "dcc.countryCode": "Code du pays", - "dcc.countryOfCalibration": "Pays de la calibration", - "dcc.customer": "Client", - "dcc.data.addData": "Ajouter des données", - "dcc.data.byteData": "Données binaires", - "dcc.data.formula": "Formule", - "dcc.data.list": "Liste", - "dcc.data.quantity": "Quantité", - "dcc.data.richContent": "Contenu riche", - "dcc.date": "Date", - "dcc.dccSoftware": "Logiciel DCC", - "dcc.dccTemplates": "Modèles DCC", - "dcc.dccUpload": "Télécharger DCC", - "dcc.declaration": "Déclaration", - "dcc.description": "Description", - "dcc.downloadDcc": "Télécharger DCC", - "dcc.eMail": "Courrier électronique", - "dcc.emailAddress": "Adresse électronique", - "dcc.endDateOfLaboratoryProcedure": "Fin de l'activité du laboratoire", - "dcc.fileName": "Nom de fichier", - "dcc.files": "Fichiers", - "dcc.fileUpload": "Télécharger un fichier", - "dcc.footer.imprint": "Mentions Légales", - "dcc.footer.license": "Licence", - "dcc.footer.privacy": "Protection des données", - "dcc.furtherInformation": "Plus d'informations", - "dcc.identificationOfCalibrationLaboratory": "du laboratoire d'étalonnage", - "dcc.identifications.identifier": "Identificateur", - "dcc.identifications.issuer": "Éditeur", - "dcc.identifiersOfCalibrationItem": "Identificateurs de l'objet d'étalonnage", - "dcc.influenceConditions": "Facteurs d'influence", - "dcc.influenceConditions.name": "Nom de la condition", - "dcc.influenceFactor": "Facteur d'influence", - "dcc.installedSoftware": "Logiciels installés", - "dcc.label": "Désignation", - "dcc.location": "Site", - "dcc.location.city": "Lieu", - "dcc.location.countryCode": "Code du pays", - "dcc.location.houseNumber": "Numéro de maison", - "dcc.location.poBox": "Boîte postale", - "dcc.location.postalCode": "Code Postal", - "dcc.location.stateCode": "Département", - "dcc.location.street": "Rue", - "dcc.manufacturer": "Fabricant", - "dcc.measurementResult": "Résultat de la mesure", - "dcc.measurementResults": "Résultats des mesures", - "dcc.measuringDevice": "Appareil de mesure", - "dcc.metaData": "Métadonnées", - "dcc.mimeType": "Type de MIME", - "dcc.model": "Modèle", - "dcc.modelOrOther": "Modèle / Autre", - "dcc.name": "Nom", - "dcc.nonSIDefinition": "Définition non-SI", - "dcc.nonSIUnit": "Unité non-SI", - "dcc.norm": "Norme", - "dcc.normOfClassification": "Norme de classification", - "dcc.openDccWiki": "Ouvrir le wiki DCC", - "dcc.period": "Période", - "dcc.phone": "Téléphone", - "dcc.phoneNumber": "Numéro de téléphone", - "dcc.poBox": "Boîte postale", - "dcc.postalCode": "Code Postal", - "dcc.preview": "Aperçu", - "dcc.preview.attention": "Attention", - "dcc.preview.files": "Fichiers", - "dcc.preview.human-readable": "Version de lecture", - "dcc.preview.mandatoryFields": "Veuillez compléter tous les champs obligatoires", - "dcc.preview.xml": "Aperçu XML", - "dcc.receiptDateOfCalibrationItem": "Date de réception de l'échantillon d'étalonnage", - "dcc.reference": "Référence", - "dcc.responsibleAuthority": "Entité responsable", - "dcc.responsiblePerson": "Personne responsable", - "dcc.responsiblePersons": "Personnes responsables", - "dcc.results": "Résultats", - "dcc.rich-content.file": "Fichier", - "dcc.rich-content.language": "Langue", - "dcc.rich-content.mathml": "MathML", - "dcc.selectDccTemplate": "Sélectionner un modèle", - "dcc.software.version": "Version", - "dcc.state": "Département", - "dcc.statements": "Déclarations", - "dcc.status": "Statut", - "dcc.street": "Rue", - "dcc.streetNumber": "Numéro de maison", - "dcc.traceableResult": "Résultat de mesure traçable", - "dcc.unit": "Unité", - "dcc.usedLanguages": "Langues utilisées", - "dcc.usedMeasurementDevices": "Instruments de mesure utilisés", - "dcc.usedMethod": "Méthode utilisée", - "dcc.usedMethods": "Méthodes utilisées", - "dcc.usedSoftware": "Logiciels utilisés", - "dcc.valid": "Validé", - "dcc.value": "Valeur", - "dcc.xml": "XML", - "dcc.YYYYMMDD": "AAAA-MM-JJ", - "error.error": "Erreur", - "error.errorMessage": "Une erreur est survenue", - "error.statusCode": "Code d'État", - "fileUpload.downloadFile": "Télécharger le fichier", - "fileUpload.pleaseClickToUploadFile": "Cliquez ici pour télécharger le fichier", - "fileUpload.selectedFile": "Fichier sélectionné", - "fileUpload.uploadFile": "Télécharger un fichier", - "info-dialog.aboutUs": "À propos de nous", - "info-dialog.apiDocumentation": "Documentation de l'API", - "info-dialog.dataProtection": "Protection des données", - "info-dialog.dccWiki": "Wiki DCC", - "info-dialog.imprint": "Mentions Légales", - "info-dialog.title": "Information", - "mathml.createMathML": "Créer MathML", - "mathml.formula": "Formule", - "mathml.yourmathMlExpressionHere": "Expression MathML ici", - "not-found.isUnknown": "est inconnue", - "not-found.thePage": "La page", - "not-found.title": "Page non trouvée", - "settings-dialog.languageSelection": "Choix de la langue", - "version.angularVersion": "Version d'Angular", - "version.backendTimestamp": "Horodatage du backend", - "version.backendVersion": "Version backend", - "version.frontendVersion": "Version frontend" + "button.applyLanguage": "Utiliser la langue", + "button.close": "Fermer", + "button.nextStep": "Prochaine étape", + "button.previousStep": "Étape précédente", + "button.toDashboard": "Vers le tableau de bord", + "button.toStartPage": "Vers la page d'accueil", + "dcc.addStatements": "Ajouter des déclarations", + "dcc.administrativeData": "Données administratives", + "dcc.applyTemplate": "Appliquer le modèle", + "dcc.beginDateOfLaboratoryProcedure": "Date de début de l'activité du laboratoire", + "dcc.calibration-certificate": "Certificat d'étalonnage", + "dcc.calibrationCertificateNumber": "Numéro du certificat d'étalonnage", + "dcc.calibrationItem": "Objet de d'étalonnage", + "dcc.calibrationItems": "Objets d'étalonnage", + "dcc.calibrationLaboratory": "Laboratoire d'étalonnage", + "dcc.calibrationLaboratoryCode": "Identification", + "dcc.city": "Ville", + "dcc.classification": "Classification", + "dcc.conformity": "Conformité", + "dcc.contact.address": "Adresse", + "dcc.contents": "Contenu", + "dcc.convention": "Convention", + "dcc.coreData": "Données de base", + "dcc.countryCode": "Code du pays", + "dcc.countryOfCalibration": "Pays de la calibration", + "dcc.customer": "Client", + "dcc.data.addData": "Ajouter des données", + "dcc.data.byteData": "Données binaires", + "dcc.data.formula": "Formule", + "dcc.data.list": "Liste", + "dcc.data.quantity": "Quantité", + "dcc.data.richContent": "Contenu riche", + "dcc.date": "Date", + "dcc.dccSoftware": "Logiciel DCC", + "dcc.dccTemplates": "Modèles DCC", + "dcc.dccUpload": "Télécharger DCC", + "dcc.declaration": "Déclaration", + "dcc.description": "Description", + "dcc.downloadDcc": "Télécharger DCC", + "dcc.eMail": "Courrier électronique", + "dcc.emailAddress": "Adresse électronique", + "dcc.endDateOfLaboratoryProcedure": "Fin de l'activité du laboratoire", + "dcc.fileName": "Nom de fichier", + "dcc.files": "Fichiers", + "dcc.fileUpload": "Télécharger un fichier", + "dcc.footer.imprint": "Mentions Légales", + "dcc.footer.license": "Licence", + "dcc.footer.privacy": "Protection des données", + "dcc.furtherInformation": "Plus d'informations", + "dcc.identificationOfCalibrationLaboratory": "du laboratoire d'étalonnage", + "dcc.identifications.identifier": "Identificateur", + "dcc.identifications.issuer": "Éditeur", + "dcc.identifiersOfCalibrationItem": "Identificateurs de l'objet d'étalonnage", + "dcc.influenceConditions": "Facteurs d'influence", + "dcc.influenceConditions.name": "Nom de la condition", + "dcc.influenceFactor": "Facteur d'influence", + "dcc.installedSoftware": "Logiciels installés", + "dcc.label": "Désignation", + "dcc.location": "Site", + "dcc.location.city": "Lieu", + "dcc.location.countryCode": "Code du pays", + "dcc.location.houseNumber": "Numéro de maison", + "dcc.location.poBox": "Boîte postale", + "dcc.location.postalCode": "Code Postal", + "dcc.location.stateCode": "Département", + "dcc.location.street": "Rue", + "dcc.manufacturer": "Fabricant", + "dcc.measurementResult": "Résultat de la mesure", + "dcc.measurementResults": "Résultats des mesures", + "dcc.measuringDevice": "Appareil de mesure", + "dcc.metaData": "Métadonnées", + "dcc.mimeType": "Type de MIME", + "dcc.model": "Modèle", + "dcc.modelOrOther": "Modèle / Autre", + "dcc.name": "Nom", + "dcc.nonSIDefinition": "Définition non-SI", + "dcc.nonSIUnit": "Unité non-SI", + "dcc.norm": "Norme", + "dcc.normOfClassification": "Norme de classification", + "dcc.openDccWiki": "Ouvrir le wiki DCC", + "dcc.period": "Période", + "dcc.phone": "Téléphone", + "dcc.phoneNumber": "Numéro de téléphone", + "dcc.poBox": "Boîte postale", + "dcc.postalCode": "Code Postal", + "dcc.preview": "Aperçu", + "dcc.preview.attention": "Attention", + "dcc.preview.files": "Fichiers", + "dcc.preview.human-readable": "Version de lecture", + "dcc.preview.mandatoryFields": "Veuillez compléter tous les champs obligatoires", + "dcc.preview.xml": "Aperçu XML", + "dcc.receiptDateOfCalibrationItem": "Date de réception de l'échantillon d'étalonnage", + "dcc.reference": "Référence", + "dcc.responsibleAuthority": "Entité responsable", + "dcc.responsiblePerson": "Personne responsable", + "dcc.responsiblePersons": "Personnes responsables", + "dcc.results": "Résultats", + "dcc.rich-content.file": "Fichier", + "dcc.rich-content.language": "Langue", + "dcc.rich-content.mathml": "MathML", + "dcc.selectDccTemplate": "Sélectionner un modèle", + "dcc.software.version": "Version", + "dcc.state": "Département", + "dcc.statements": "Déclarations", + "dcc.status": "Statut", + "dcc.street": "Rue", + "dcc.streetNumber": "Numéro de maison", + "dcc.traceableResult": "Résultat de mesure traçable", + "dcc.unit": "Unité", + "dcc.usedLanguages": "Langues utilisées", + "dcc.usedMeasurementDevices": "Instruments de mesure utilisés", + "dcc.usedMethod": "Méthode utilisée", + "dcc.usedMethods": "Méthodes utilisées", + "dcc.usedSoftware": "Logiciels utilisés", + "dcc.valid": "Validé", + "dcc.value": "Valeur", + "dcc.xml": "XML", + "dcc.YYYYMMDD": "AAAA-MM-JJ", + "error.error": "Erreur", + "error.errorMessage": "Une erreur est survenue", + "error.statusCode": "Code d'État", + "fileUpload.downloadFile": "Télécharger le fichier", + "fileUpload.pleaseClickToUploadFile": "Cliquez ici pour télécharger le fichier", + "fileUpload.selectedFile": "Fichier sélectionné", + "fileUpload.uploadFile": "Télécharger un fichier", + "info-dialog.aboutUs": "À propos de nous", + "info-dialog.apiDocumentation": "Documentation de l'API", + "info-dialog.dataProtection": "Protection des données", + "info-dialog.dccWiki": "Wiki DCC", + "info-dialog.imprint": "Mentions Légales", + "info-dialog.title": "Information", + "mathml.createMathML": "Créer MathML", + "mathml.formula": "Formule", + "mathml.yourmathMlExpressionHere": "Expression MathML ici", + "not-found.isUnknown": "est inconnue", + "not-found.thePage": "La page", + "not-found.title": "Page non trouvée", + "settings-dialog.languageSelection": "Choix de la langue", + "version.angularVersion": "Version d'Angular", + "version.backendTimestamp": "Horodatage du backend", + "version.backendVersion": "Version backend", + "version.frontendVersion": "Version frontend" } diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index 01550da80ab697724ad62334e08139d648bd73c9..9929a94c9389d4f900ba918c4242079a5fdbd835 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -1,144 +1,144 @@ { - "button.applyLanguage": "Use a linguagem", - "button.close": "Fechar", - "button.nextStep": "Próxima etapa", - "button.previousStep": "Etapa anterior", - "button.toDashboard": "Para o painel de controle", - "button.toStartPage": "Para a página inicial", - "dcc.addStatements": "Adicionar declarações", - "dcc.administrativeData": "Dados administrativos", - "dcc.applyTemplate": "Aplicar modelo", - "dcc.beginDateOfLaboratoryProcedure": "Data de início da atividade do laboratório", - "dcc.calibration-certificate": "Certificado de calibração", - "dcc.calibrationCertificateNumber": "Número do certificado de calibração", - "dcc.calibrationItem": "Item de calibração", - "dcc.calibrationItems": "Itens de calibração", - "dcc.calibrationLaboratory": "Laboratório de calibração", - "dcc.calibrationLaboratoryCode": "Identificador", - "dcc.city": "Cidade", - "dcc.classification": "Classificação", - "dcc.conformity": "Conformidade", - "dcc.contact.address": "Endereço", - "dcc.contents": "Conteúdo", - "dcc.convention": "Convenção", - "dcc.coreData": "Dados básicos", - "dcc.countryCode": "Código do país", - "dcc.countryOfCalibration": "Terra do potássio", - "dcc.customer": "Cliente", - "dcc.data.addData": "Adicionar Dados", - "dcc.data.byteData": "Dados binários", - "dcc.data.formula": "Fórmula", - "dcc.data.list": "Lista", - "dcc.data.quantity": "Variável medida", - "dcc.data.richContent": "Conteúdo rico", - "dcc.date": "Data", - "dcc.dccSoftware": "Software DCC", - "dcc.dccTemplates": "Modelos DCC", - "dcc.dccUpload": "Carregar DCC", - "dcc.declaration": "Declaração", - "dcc.description": "Descrição", - "dcc.downloadDcc": "Baixar DCC", - "dcc.eMail": "E-mail", - "dcc.emailAddress": "Endereço de e-mail", - "dcc.endDateOfLaboratoryProcedure": "Fim da atividade laboratorial", - "dcc.fileName": "Nome do arquivo", - "dcc.files": "Arquivos", - "dcc.fileUpload": "Carregar arquivo", - "dcc.footer.imprint": "Impressão", - "dcc.footer.license": "Licença", - "dcc.footer.privacy": "Proteção de dados", - "dcc.furtherInformation": "Mais informações", - "dcc.identificationOfCalibrationLaboratory": "do laboratório de calibração", - "dcc.identifications.identifier": "Identificador", - "dcc.identifications.issuer": "Editora", - "dcc.identifiersOfCalibrationItem": "Identificadores do item de calibração", - "dcc.influenceConditions": "Fatores de influência", - "dcc.influenceConditions.name": "Nome da condição", - "dcc.influenceFactor": "Fator de influência", - "dcc.installedSoftware": "Software instalado", - "dcc.label": "Nomeação", - "dcc.location": "Localização", - "dcc.location.city": "Local", - "dcc.location.countryCode": "Código do país", - "dcc.location.houseNumber": "Número da casa", - "dcc.location.poBox": "Caixa postal", - "dcc.location.postalCode": "Código postal", - "dcc.location.stateCode": "Estado", - "dcc.location.street": "Rua", - "dcc.manufacturer": "Fabricante", - "dcc.measurementResult": "Resultado da medição", - "dcc.measurementResults": "Resultados da medição", - "dcc.measuringDevice": "Dispositivo de medição", - "dcc.metaData": "Meta dados", - "dcc.mimeType": "Tipo MIME", - "dcc.model": "Modelo", - "dcc.modelOrOther": "Modelo / Outro", - "dcc.name": "Nome", - "dcc.nonSIDefinition": "Definição de não-SI", - "dcc.nonSIUnit": "Unidade não-SI", - "dcc.norm": "Padrão", - "dcc.normOfClassification": "Padrão de classificação", - "dcc.openDccWiki": "Wiki de DCC aberto", - "dcc.period": "Período", - "dcc.phone": "Telefone", - "dcc.phoneNumber": "Número de Telefone", - "dcc.poBox": "Caixa postal", - "dcc.postalCode": "Código postal", - "dcc.preview": "Prévia", - "dcc.preview.attention": "Atenção", - "dcc.preview.files": "Arquivos", - "dcc.preview.human-readable": "Versão para leitura", - "dcc.preview.mandatoryFields": "Preencha todos os campos obrigatórios", - "dcc.preview.xml": "Visualização do XML", - "dcc.receiptDateOfCalibrationItem": "Data de recebimento do material de calibração", - "dcc.reference": "Referência", - "dcc.responsibleAuthority": "Órgão responsável", - "dcc.responsiblePerson": "Pessoa responsável", - "dcc.responsiblePersons": "Pessoas responsáveis", - "dcc.results": "Resultados", - "dcc.rich-content.file": "Arquivo", - "dcc.rich-content.language": "Idioma", - "dcc.rich-content.mathml": "MathML", - "dcc.selectDccTemplate": "Selecione o modelo", - "dcc.software.version": "Versão", - "dcc.state": "Estado federal", - "dcc.statements": "Declarações", - "dcc.status": "Status", - "dcc.street": "Rua", - "dcc.streetNumber": "Número da casa", - "dcc.traceableResult": "Resultado de medição rastreável", - "dcc.unit": "Unidade", - "dcc.usedLanguages": "Idiomas utilizados", - "dcc.usedMeasurementDevices": "Instrumentos de medição usados", - "dcc.usedMethod": "Método utilizado", - "dcc.usedMethods": "Métodos utilizados", - "dcc.usedSoftware": "Software utilizado", - "dcc.valid": "Válido", - "dcc.value": "Valor", - "dcc.xml": "XML", - "dcc.YYYYMMDD": "AAAA-MM-DD", - "error.error": "Erro", - "error.errorMessage": "Ocorreu um erro", - "error.statusCode": "Código de status", - "fileUpload.downloadFile": "Baixar arquivo", - "fileUpload.pleaseClickToUploadFile": "Clique para carregar o arquivo", - "fileUpload.selectedFile": "Arquivo Selecionado", - "fileUpload.uploadFile": "Carregar arquivo", - "info-dialog.aboutUs": "Sobre nós", - "info-dialog.apiDocumentation": "Documentação da API", - "info-dialog.dataProtection": "Proteção de dados", - "info-dialog.dccWiki": "DCC Wiki", - "info-dialog.imprint": "Impressão", - "info-dialog.title": "Informações", - "mathml.createMathML": "Criar MathML", - "mathml.formula": "Fórmula", - "mathml.yourmathMlExpressionHere": "Expressão MathML aqui", - "not-found.isUnknown": "é desconhecido", - "not-found.thePage": "A página", - "not-found.title": "Página não encontrada", - "settings-dialog.languageSelection": "Seleção de idioma", - "version.angularVersion": "Versão Angular", - "version.backendTimestamp": "Carimbo de data/hora do backend", - "version.backendVersion": "Versão de backend", - "version.frontendVersion": "Versão de frontend" + "button.applyLanguage": "Use a linguagem", + "button.close": "Fechar", + "button.nextStep": "Próxima etapa", + "button.previousStep": "Etapa anterior", + "button.toDashboard": "Para o painel de controle", + "button.toStartPage": "Para a página inicial", + "dcc.addStatements": "Adicionar declarações", + "dcc.administrativeData": "Dados administrativos", + "dcc.applyTemplate": "Aplicar modelo", + "dcc.beginDateOfLaboratoryProcedure": "Data de início da atividade do laboratório", + "dcc.calibration-certificate": "Certificado de calibração", + "dcc.calibrationCertificateNumber": "Número do certificado de calibração", + "dcc.calibrationItem": "Item de calibração", + "dcc.calibrationItems": "Itens de calibração", + "dcc.calibrationLaboratory": "Laboratório de calibração", + "dcc.calibrationLaboratoryCode": "Identificador", + "dcc.city": "Cidade", + "dcc.classification": "Classificação", + "dcc.conformity": "Conformidade", + "dcc.contact.address": "Endereço", + "dcc.contents": "Conteúdo", + "dcc.convention": "Convenção", + "dcc.coreData": "Dados básicos", + "dcc.countryCode": "Código do país", + "dcc.countryOfCalibration": "Terra do potássio", + "dcc.customer": "Cliente", + "dcc.data.addData": "Adicionar Dados", + "dcc.data.byteData": "Dados binários", + "dcc.data.formula": "Fórmula", + "dcc.data.list": "Lista", + "dcc.data.quantity": "Variável medida", + "dcc.data.richContent": "Conteúdo rico", + "dcc.date": "Data", + "dcc.dccSoftware": "Software DCC", + "dcc.dccTemplates": "Modelos DCC", + "dcc.dccUpload": "Carregar DCC", + "dcc.declaration": "Declaração", + "dcc.description": "Descrição", + "dcc.downloadDcc": "Baixar DCC", + "dcc.eMail": "E-mail", + "dcc.emailAddress": "Endereço de e-mail", + "dcc.endDateOfLaboratoryProcedure": "Fim da atividade laboratorial", + "dcc.fileName": "Nome do arquivo", + "dcc.files": "Arquivos", + "dcc.fileUpload": "Carregar arquivo", + "dcc.footer.imprint": "Impressão", + "dcc.footer.license": "Licença", + "dcc.footer.privacy": "Proteção de dados", + "dcc.furtherInformation": "Mais informações", + "dcc.identificationOfCalibrationLaboratory": "do laboratório de calibração", + "dcc.identifications.identifier": "Identificador", + "dcc.identifications.issuer": "Editora", + "dcc.identifiersOfCalibrationItem": "Identificadores do item de calibração", + "dcc.influenceConditions": "Fatores de influência", + "dcc.influenceConditions.name": "Nome da condição", + "dcc.influenceFactor": "Fator de influência", + "dcc.installedSoftware": "Software instalado", + "dcc.label": "Nomeação", + "dcc.location": "Localização", + "dcc.location.city": "Local", + "dcc.location.countryCode": "Código do país", + "dcc.location.houseNumber": "Número da casa", + "dcc.location.poBox": "Caixa postal", + "dcc.location.postalCode": "Código postal", + "dcc.location.stateCode": "Estado", + "dcc.location.street": "Rua", + "dcc.manufacturer": "Fabricante", + "dcc.measurementResult": "Resultado da medição", + "dcc.measurementResults": "Resultados da medição", + "dcc.measuringDevice": "Dispositivo de medição", + "dcc.metaData": "Meta dados", + "dcc.mimeType": "Tipo MIME", + "dcc.model": "Modelo", + "dcc.modelOrOther": "Modelo / Outro", + "dcc.name": "Nome", + "dcc.nonSIDefinition": "Definição de não-SI", + "dcc.nonSIUnit": "Unidade não-SI", + "dcc.norm": "Padrão", + "dcc.normOfClassification": "Padrão de classificação", + "dcc.openDccWiki": "Wiki de DCC aberto", + "dcc.period": "Período", + "dcc.phone": "Telefone", + "dcc.phoneNumber": "Número de Telefone", + "dcc.poBox": "Caixa postal", + "dcc.postalCode": "Código postal", + "dcc.preview": "Prévia", + "dcc.preview.attention": "Atenção", + "dcc.preview.files": "Arquivos", + "dcc.preview.human-readable": "Versão para leitura", + "dcc.preview.mandatoryFields": "Preencha todos os campos obrigatórios", + "dcc.preview.xml": "Visualização do XML", + "dcc.receiptDateOfCalibrationItem": "Data de recebimento do material de calibração", + "dcc.reference": "Referência", + "dcc.responsibleAuthority": "Órgão responsável", + "dcc.responsiblePerson": "Pessoa responsável", + "dcc.responsiblePersons": "Pessoas responsáveis", + "dcc.results": "Resultados", + "dcc.rich-content.file": "Arquivo", + "dcc.rich-content.language": "Idioma", + "dcc.rich-content.mathml": "MathML", + "dcc.selectDccTemplate": "Selecione o modelo", + "dcc.software.version": "Versão", + "dcc.state": "Estado federal", + "dcc.statements": "Declarações", + "dcc.status": "Status", + "dcc.street": "Rua", + "dcc.streetNumber": "Número da casa", + "dcc.traceableResult": "Resultado de medição rastreável", + "dcc.unit": "Unidade", + "dcc.usedLanguages": "Idiomas utilizados", + "dcc.usedMeasurementDevices": "Instrumentos de medição usados", + "dcc.usedMethod": "Método utilizado", + "dcc.usedMethods": "Métodos utilizados", + "dcc.usedSoftware": "Software utilizado", + "dcc.valid": "Válido", + "dcc.value": "Valor", + "dcc.xml": "XML", + "dcc.YYYYMMDD": "AAAA-MM-DD", + "error.error": "Erro", + "error.errorMessage": "Ocorreu um erro", + "error.statusCode": "Código de status", + "fileUpload.downloadFile": "Baixar arquivo", + "fileUpload.pleaseClickToUploadFile": "Clique para carregar o arquivo", + "fileUpload.selectedFile": "Arquivo Selecionado", + "fileUpload.uploadFile": "Carregar arquivo", + "info-dialog.aboutUs": "Sobre nós", + "info-dialog.apiDocumentation": "Documentação da API", + "info-dialog.dataProtection": "Proteção de dados", + "info-dialog.dccWiki": "DCC Wiki", + "info-dialog.imprint": "Impressão", + "info-dialog.title": "Informações", + "mathml.createMathML": "Criar MathML", + "mathml.formula": "Fórmula", + "mathml.yourmathMlExpressionHere": "Expressão MathML aqui", + "not-found.isUnknown": "é desconhecido", + "not-found.thePage": "A página", + "not-found.title": "Página não encontrada", + "settings-dialog.languageSelection": "Seleção de idioma", + "version.angularVersion": "Versão Angular", + "version.backendTimestamp": "Carimbo de data/hora do backend", + "version.backendVersion": "Versão de backend", + "version.frontendVersion": "Versão de frontend" } diff --git a/src/assets/templates/DKD/DKD-E_7-2_mass_set.xml b/src/assets/templates/DKD/DKD-E_7-2_mass_set.xml index 61cc43222c306f1d2f3f124565a1413d85b62185..351284dd1eb37c0eca68cc81b4eca43d5db23466 100644 --- a/src/assets/templates/DKD/DKD-E_7-2_mass_set.xml +++ b/src/assets/templates/DKD/DKD-E_7-2_mass_set.xml @@ -36,7 +36,7 @@ <dcc:dccSoftware> <dcc:software> <dcc:name> - <dcc:content lang="en">Notepad++</dcc:content> + <dcc:content lang="en">Notepad++</dcc:content> </dcc:name> <dcc:release>v8.5.2</dcc:release> </dcc:software> @@ -91,7 +91,7 @@ </dcc:description> <dcc:manufacturer> <dcc:name> - <dcc:content lang="en">Weights Co Ltd.</dcc:content> + <dcc:content lang="en">Weights Co Ltd.</dcc:content> </dcc:name> </dcc:manufacturer> <dcc:identifications> @@ -177,7 +177,7 @@ <dcc:calibrationLaboratory><!--ISO/IEC 17025:2017 7.8.2.1 b)--> <dcc:contact> <dcc:name> - <dcc:content lang="en">Physikalisch-Technische Bundesanstalt (PTB)</dcc:content> + <dcc:content lang="en">Physikalisch-Technische Bundesanstalt (PTB)</dcc:content> </dcc:name> <dcc:eMail>info@ptb.de</dcc:eMail> <dcc:location> @@ -196,7 +196,7 @@ <dcc:respPerson> <dcc:person> <dcc:name> - <dcc:content lang="en">Michael</dcc:content> + <dcc:content lang="en">Michael</dcc:content> </dcc:name> <dcc:eMail>info@ptb.de</dcc:eMail> </dcc:person> @@ -206,7 +206,7 @@ </dcc:respPersons> <dcc:customer> <dcc:name> - <dcc:content lang="en">Customer</dcc:content> + <dcc:content lang="en">Customer</dcc:content> </dcc:name> <dcc:location> <dcc:streetNo>6</dcc:streetNo> @@ -232,7 +232,7 @@ <dcc:valid>true</dcc:valid> <dcc:respAuthority> <dcc:name> - <dcc:content lang="en">DAkkS</dcc:content> + <dcc:content lang="en">DAkkS</dcc:content> </dcc:name> <dcc:eMail>kontakt@dakks.de</dcc:eMail> <dcc:phone>+49 (0)30 670591-0</dcc:phone> diff --git a/src/assets/templates/DKD/DKD-E_7-2_single_weight.xml b/src/assets/templates/DKD/DKD-E_7-2_single_weight.xml index 47b2ffb44e0eb324767c93a95df1e03cc05fcd52..55f311705ac6c3a4c6c8dd15602c6f0484dee3da 100644 --- a/src/assets/templates/DKD/DKD-E_7-2_single_weight.xml +++ b/src/assets/templates/DKD/DKD-E_7-2_single_weight.xml @@ -36,7 +36,7 @@ <dcc:dccSoftware> <dcc:software> <dcc:name> - <dcc:content lang="en">Notepad++</dcc:content> + <dcc:content lang="en">Notepad++</dcc:content> </dcc:name> <dcc:release>v8.5.2</dcc:release> </dcc:software> @@ -83,7 +83,7 @@ <dcc:items><!--ISO/IEC 17025:2017 7.8.2.1 g)--> <dcc:manufacturer> <dcc:name> - <dcc:content lang="en">Weights Co Ltd.</dcc:content> + <dcc:content lang="en">Weights Co Ltd.</dcc:content> </dcc:name> </dcc:manufacturer> <dcc:identifications> @@ -140,7 +140,7 @@ <dcc:calibrationLaboratory><!--ISO/IEC 17025:2017 7.8.2.1 b)--> <dcc:contact> <dcc:name> - <dcc:content lang="en">Physikalisch-Technische Bundesanstalt (PTB)</dcc:content> + <dcc:content lang="en">Physikalisch-Technische Bundesanstalt (PTB)</dcc:content> </dcc:name> <dcc:eMail>info@ptb.de</dcc:eMail> <dcc:location> @@ -160,7 +160,7 @@ <dcc:respPerson> <dcc:person> <dcc:name> - <dcc:content lang="en">Michael</dcc:content> + <dcc:content lang="en">Michael</dcc:content> </dcc:name> </dcc:person> <dcc:role>authorisation of certificate</dcc:role> @@ -169,14 +169,14 @@ <dcc:respPerson> <dcc:person> <dcc:name> - <dcc:content lang="en">Alexander</dcc:content> + <dcc:content lang="en">Alexander</dcc:content> </dcc:name> </dcc:person> </dcc:respPerson> </dcc:respPersons> <dcc:customer><!--ISO/IEC 17025:2017 7.8.2.1 e)--> <dcc:name> - <dcc:content lang="en">Customer</dcc:content> + <dcc:content lang="en">Customer</dcc:content> </dcc:name> <dcc:location> <dcc:streetNo>6</dcc:streetNo> @@ -207,7 +207,7 @@ <dcc:valid>true</dcc:valid> <dcc:respAuthority> <dcc:name> - <dcc:content lang="en">DAkkS</dcc:content> + <dcc:content lang="en">DAkkS</dcc:content> </dcc:name> <dcc:eMail>info@dakks.de</dcc:eMail> <dcc:location>