@testgorilla/tgo-ui 2.23.32 → 2.23.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/autocomplete/autocomplete.component.d.ts +10 -4
- package/components/dialog/dialog.service.d.ts +2 -2
- package/components/toggle/toggle.component.d.ts +9 -1
- package/esm2022/assets/i18n/da-dk.json +50 -7
- package/esm2022/assets/i18n/de.json +56 -13
- package/esm2022/assets/i18n/es.json +56 -13
- package/esm2022/assets/i18n/fr.json +63 -20
- package/esm2022/assets/i18n/it-it.json +52 -9
- package/esm2022/assets/i18n/ja-jp.json +54 -11
- package/esm2022/assets/i18n/nb-no.json +54 -11
- package/esm2022/assets/i18n/nl.json +63 -20
- package/esm2022/assets/i18n/pl-pl.json +53 -10
- package/esm2022/assets/i18n/pt-br.json +56 -13
- package/esm2022/assets/i18n/sv-se.json +57 -14
- package/esm2022/components/autocomplete/autocomplete.component.mjs +14 -6
- package/esm2022/components/dialog/dialog.component.mjs +2 -2
- package/esm2022/components/dialog/dialog.service.mjs +3 -2
- package/esm2022/components/toggle/toggle.component.mjs +21 -4
- package/esm2022/models/keyboard-events.model.mjs +6 -0
- package/fesm2022/testgorilla-tgo-ui.mjs +784 -172
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/models/keyboard-events.model.d.ts +4 -0
- package/package.json +1 -1
- package/projects/tgo-canopy-ui/assets/i18n/da-dk.json +50 -7
- package/projects/tgo-canopy-ui/assets/i18n/de.json +56 -13
- package/projects/tgo-canopy-ui/assets/i18n/es.json +56 -13
- package/projects/tgo-canopy-ui/assets/i18n/fr.json +63 -20
- package/projects/tgo-canopy-ui/assets/i18n/it-it.json +52 -9
- package/projects/tgo-canopy-ui/assets/i18n/ja-jp.json +54 -11
- package/projects/tgo-canopy-ui/assets/i18n/nb-no.json +54 -11
- package/projects/tgo-canopy-ui/assets/i18n/nl.json +63 -20
- package/projects/tgo-canopy-ui/assets/i18n/pl-pl.json +53 -10
- package/projects/tgo-canopy-ui/assets/i18n/pt-br.json +56 -13
- package/projects/tgo-canopy-ui/assets/i18n/sv-se.json +57 -14
|
@@ -1,12 +1,12 @@
|
|
|
1
|
+
import { CdkVirtualScrollViewport } from "@angular/cdk/scrolling";
|
|
1
2
|
import { AfterViewInit, ChangeDetectorRef, DoCheck, ElementRef, EventEmitter, OnChanges, OnDestroy, Renderer2, SimpleChanges } from '@angular/core';
|
|
2
3
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
3
4
|
import { MatAutocomplete, MatAutocompleteSelectedEvent, MatAutocompleteTrigger } from '@angular/material/autocomplete';
|
|
5
|
+
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
4
6
|
import { ReplaySubject } from 'rxjs';
|
|
7
|
+
import { ApplicationTheme } from '../../models/application-theme.model';
|
|
5
8
|
import { AutocompleteUtils } from '../../utils/autocomplete-utils';
|
|
6
9
|
import { Autocomplete, AutocompleteSize, AutocompleteType, DropdownVariation } from './autocomplete.model';
|
|
7
|
-
import { ApplicationTheme } from '../../models/application-theme.model';
|
|
8
|
-
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
9
|
-
import { CdkVirtualScrollViewport } from "@angular/cdk/scrolling";
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class AutocompleteComponent implements ControlValueAccessor, OnChanges, AfterViewInit, DoCheck, OnDestroy {
|
|
12
12
|
private readonly defaultAppTheme;
|
|
@@ -58,6 +58,12 @@ export declare class AutocompleteComponent implements ControlValueAccessor, OnCh
|
|
|
58
58
|
* @memberof AutocompleteComponent
|
|
59
59
|
*/
|
|
60
60
|
label: string;
|
|
61
|
+
/**
|
|
62
|
+
* @property placeholder
|
|
63
|
+
* @description The placeholder for the autocomplete input.
|
|
64
|
+
* @memberof AutocompleteComponent
|
|
65
|
+
*/
|
|
66
|
+
placeholder: string;
|
|
61
67
|
/**
|
|
62
68
|
* @property value
|
|
63
69
|
* @description The selected value(s) in the autocomplete.
|
|
@@ -279,6 +285,6 @@ export declare class AutocompleteComponent implements ControlValueAccessor, OnCh
|
|
|
279
285
|
private subscriberDisplayChange;
|
|
280
286
|
protected get hasObjectValue(): boolean;
|
|
281
287
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, [{ optional: true; }, null, null, { optional: true; self: true; }, null, null, null]>;
|
|
282
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "ui-autocomplete", never, { "itemsList": { "alias": "itemsList"; "required": false; }; "suggestionsList": { "alias": "suggestionsList"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "allowAdd": { "alias": "allowAdd"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "label": { "alias": "label"; "required": false; }; "itemValue": { "alias": "itemValue"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minCharactersSearch": { "alias": "minCharactersSearch"; "required": false; }; "variant": { "alias": "variant"; "required": true; }; "language": { "alias": "language"; "required": false; }; "showBottomContent": { "alias": "showBottomContent"; "required": false; }; "valuePrimitive": { "alias": "valuePrimitive"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "required": { "alias": "required"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "companyColor": { "alias": "companyColor"; "required": false; }; "hideBuiltInErrors": { "alias": "hideBuiltInErrors"; "required": false; }; "hideLabelInErrors": { "alias": "hideLabelInErrors"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "dropdownPanelClass": { "alias": "dropdownPanelClass"; "required": false; }; "closeOnScroll": { "alias": "closeOnScroll"; "required": false; }; "size": { "alias": "size"; "required": false; }; "allowUserInput": { "alias": "allowUserInput"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "exactMatchSelect": { "alias": "exactMatchSelect"; "required": false; }; "maxItemSelected": { "alias": "maxItemSelected"; "required": false; }; }, { "selectionChange": "selectionChange"; "searchTextChange": "searchTextChange"; "blur": "blur"; "focus": "focus"; }, never, never, false, never>;
|
|
288
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "ui-autocomplete", never, { "itemsList": { "alias": "itemsList"; "required": false; }; "suggestionsList": { "alias": "suggestionsList"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "allowAdd": { "alias": "allowAdd"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "itemValue": { "alias": "itemValue"; "required": false; }; "type": { "alias": "type"; "required": false; }; "minCharactersSearch": { "alias": "minCharactersSearch"; "required": false; }; "variant": { "alias": "variant"; "required": true; }; "language": { "alias": "language"; "required": false; }; "showBottomContent": { "alias": "showBottomContent"; "required": false; }; "valuePrimitive": { "alias": "valuePrimitive"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "required": { "alias": "required"; "required": false; }; "errors": { "alias": "errors"; "required": false; }; "companyColor": { "alias": "companyColor"; "required": false; }; "hideBuiltInErrors": { "alias": "hideBuiltInErrors"; "required": false; }; "hideLabelInErrors": { "alias": "hideLabelInErrors"; "required": false; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; }; "compareWith": { "alias": "compareWith"; "required": false; }; "dropdownPanelClass": { "alias": "dropdownPanelClass"; "required": false; }; "closeOnScroll": { "alias": "closeOnScroll"; "required": false; }; "size": { "alias": "size"; "required": false; }; "allowUserInput": { "alias": "allowUserInput"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "exactMatchSelect": { "alias": "exactMatchSelect"; "required": false; }; "maxItemSelected": { "alias": "maxItemSelected"; "required": false; }; }, { "selectionChange": "selectionChange"; "searchTextChange": "searchTextChange"; "blur": "blur"; "focus": "focus"; }, never, never, false, never>;
|
|
283
289
|
static ngAcceptInputType_virtualScroll: unknown;
|
|
284
290
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComponentType } from '@angular/cdk/portal';
|
|
2
|
-
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
2
|
+
import { MatDialog, MatDialogConfig, MatDialogRef } from '@angular/material/dialog';
|
|
3
3
|
import { ApplicationTheme } from '../../models/application-theme.model';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export type DialogSize = 'small' | 'large';
|
|
@@ -7,7 +7,7 @@ export declare class DialogService {
|
|
|
7
7
|
private matDialog;
|
|
8
8
|
private readonly defaultAppTheme;
|
|
9
9
|
constructor(matDialog: MatDialog, defaultAppTheme: ApplicationTheme);
|
|
10
|
-
open(dialogComponent: ComponentType<any>, applicationTheme?: ApplicationTheme, size?: DialogSize, panelClass?: string, extraData?: any, backdropClass?: string, keyboardOpen?: boolean): MatDialogRef<any>;
|
|
10
|
+
open(dialogComponent: ComponentType<any>, applicationTheme?: ApplicationTheme, size?: DialogSize, panelClass?: string, extraData?: any, backdropClass?: string, keyboardOpen?: boolean, config?: MatDialogConfig): MatDialogRef<any>;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialogService, [null, { optional: true; }]>;
|
|
12
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<DialogService>;
|
|
13
13
|
}
|
|
@@ -93,6 +93,13 @@ export declare class ToggleComponent implements ControlValueAccessor, OnChanges,
|
|
|
93
93
|
* @memberof ToggleComponent
|
|
94
94
|
*/
|
|
95
95
|
loading: boolean;
|
|
96
|
+
/**
|
|
97
|
+
* A string representing the ARIA requirement for accessibility.
|
|
98
|
+
* This attribute is used to indicate whether an input field is required for form submission.
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof ToggleComponent
|
|
101
|
+
*/
|
|
102
|
+
ariaDescribedby: string;
|
|
96
103
|
protected showLabelTooltip: boolean;
|
|
97
104
|
protected classes: string;
|
|
98
105
|
constructor(defaultAppTheme: ApplicationTheme);
|
|
@@ -104,9 +111,10 @@ export declare class ToggleComponent implements ControlValueAccessor, OnChanges,
|
|
|
104
111
|
registerOnTouched(fn: RegisterFn): void;
|
|
105
112
|
setDisabledState(isDisabled: boolean): void;
|
|
106
113
|
changeTextState(state: boolean): void;
|
|
114
|
+
onKeydown($event: KeyboardEvent): void;
|
|
107
115
|
private onChange;
|
|
108
116
|
private onTouched;
|
|
109
117
|
private setClasses;
|
|
110
118
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, [{ optional: true; }]>;
|
|
111
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "ui-toggle", never, { "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaRequired": { "alias": "ariaRequired"; "required": false; }; "preventClick": { "alias": "preventClick"; "required": false; }; "language": { "alias": "language"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, { "toggle": "toggle"; }, never, never, false, never>;
|
|
119
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "ui-toggle", never, { "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaRequired": { "alias": "ariaRequired"; "required": false; }; "preventClick": { "alias": "preventClick"; "required": false; }; "language": { "alias": "language"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "ariaDescribedby": { "alias": "ariaDescribedby"; "required": false; }; }, { "toggle": "toggle"; }, never, never, false, never>;
|
|
112
120
|
}
|
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
"SELECTED": "Valgte",
|
|
8
8
|
"SUGGESTED": "Foreslået",
|
|
9
9
|
"ALL_ITEMS": "Alle genstande",
|
|
10
|
-
"NO_RESULTS_FOUND": "Ingen resultater fundet."
|
|
10
|
+
"NO_RESULTS_FOUND": "Ingen resultater fundet.",
|
|
11
|
+
"MAX_SELECTED_ERROR": "Du har nået det maksimale antal ({{max}}) tags. Fjern et tag for at tilføje et andet."
|
|
11
12
|
},
|
|
12
13
|
"STEPPER": {
|
|
13
14
|
"FINAL_STEP": "Sidste trin"
|
|
@@ -32,12 +33,12 @@
|
|
|
32
33
|
"CANCEL": "Annuller",
|
|
33
34
|
"CONFIRM": "Bekræft",
|
|
34
35
|
"SUBMIT": "Indsend",
|
|
35
|
-
"EMAIL": "E-
|
|
36
|
+
"EMAIL": "E-mailadresse",
|
|
36
37
|
"OK": "OK",
|
|
37
38
|
"REMOVE": "Fjern",
|
|
38
39
|
"TEST": "test",
|
|
39
40
|
"MAYBE": "Måske",
|
|
40
|
-
"BACK": "
|
|
41
|
+
"BACK": "Ryg",
|
|
41
42
|
"SAVE": "Gem",
|
|
42
43
|
"SAVING": "Gemmer",
|
|
43
44
|
"DELETE": "Slet",
|
|
@@ -54,24 +55,66 @@
|
|
|
54
55
|
"NO_RESULTS": "Ingen resultater",
|
|
55
56
|
"MAX": "Maks",
|
|
56
57
|
"MIN": "Mindst",
|
|
57
|
-
"CLEAR": "Ryd"
|
|
58
|
+
"CLEAR": "Ryd",
|
|
59
|
+
"PHONE_NUMBER": "Telefonnummer",
|
|
60
|
+
"ON": "Tændt",
|
|
61
|
+
"OFF": "Slukket"
|
|
58
62
|
},
|
|
59
63
|
"DIALOG": {
|
|
60
|
-
"CLOSE_LABEL": "Luk
|
|
64
|
+
"CLOSE_LABEL": "Luk dialog",
|
|
65
|
+
"CLOSED": "Dialog lukket"
|
|
61
66
|
},
|
|
62
67
|
"FIELD": {
|
|
63
68
|
"VIEW_PASSWORD": "Se adgangskode"
|
|
64
69
|
},
|
|
65
70
|
"FILE_UPLOAD": {
|
|
71
|
+
"DRAG_AND_DROP": "Træk og slip filen her, eller klik for at uploade",
|
|
66
72
|
"DRAG_AND_DROP_OR": "Træk og slip eller",
|
|
67
73
|
"BROWSE": "Gennemse",
|
|
68
|
-
"YOUR_FILES": "
|
|
74
|
+
"YOUR_FILES": "dine filer",
|
|
69
75
|
"MAX_SIZE": "MB maksimal filstørrelse.",
|
|
76
|
+
"MIN_SIZE": "MB min. filstørrelse",
|
|
77
|
+
"MIN_SIZE_ERROR": "Upload en fil, der er større end ({{min}} MB)",
|
|
70
78
|
"UPLOADING": "Uploader",
|
|
71
79
|
"SUPPORTED_FILE_TYPES": "Understøttede filtyper:",
|
|
72
|
-
"CHANGE": "
|
|
80
|
+
"CHANGE": "Ændring",
|
|
81
|
+
"FILE_UPLOADING_SUCCESS": "Filen blev uploadet med succes",
|
|
82
|
+
"CHOOSE_FILE": "Vælg en fil: Ingen fil valgt"
|
|
73
83
|
},
|
|
74
84
|
"NAVBAR": {
|
|
75
85
|
"LOG_OUT": "Log ud"
|
|
86
|
+
},
|
|
87
|
+
"PASSWORD": {
|
|
88
|
+
"LOWERCASE": "Indeholder mindst et lille bogstav",
|
|
89
|
+
"UPPERCASE": "Indeholder mindst et stort bogstav",
|
|
90
|
+
"NUMBER": "Indeholder mindst ét tal",
|
|
91
|
+
"SPECIAL_CHARACTER": "Indeholder mindst ét specialtegn",
|
|
92
|
+
"CHARACTERS": "Indeholder mindst 12 tegn",
|
|
93
|
+
"PASSWORD_PLACEHOLDER": "Adgangskode"
|
|
94
|
+
},
|
|
95
|
+
"ERRORS": {
|
|
96
|
+
"REQUIRED": "Dette felt er obligatorisk",
|
|
97
|
+
"REQUIRED_FIELD": "Dette felt er påkrævet - ({{label}})",
|
|
98
|
+
"MAX_LENGTH": "Indtast venligst en værdi med en maksimal længde på ({{maxlength}}) tegn.",
|
|
99
|
+
"MIN_LENGTH": "Indtast venligst en værdi med en minimumslængde på ({{maxlength}}) tegn.",
|
|
100
|
+
"MAX": "Indtast venligst en værdi med en maksimal værdi på ({{max}})",
|
|
101
|
+
"MIN": "Indtast venligst en værdi med en minimumsværdi på ({{min}})",
|
|
102
|
+
"EMAIL_INCORRECT": "Indtast en gyldig e-mailadresse"
|
|
103
|
+
},
|
|
104
|
+
"SCALE_TABLE": {
|
|
105
|
+
"HIGHEST": "Meget vigtigt",
|
|
106
|
+
"LOWEST": "Slet ikke Vigtigt"
|
|
107
|
+
},
|
|
108
|
+
"BUTTON": {
|
|
109
|
+
"PREMIUM_FEATURE": "Premium-funktion"
|
|
110
|
+
},
|
|
111
|
+
"MENU": {
|
|
112
|
+
"MENUITEM_DISABLED": "Dette menupunkt er deaktiveret"
|
|
113
|
+
},
|
|
114
|
+
"ALERT_BANNER": {
|
|
115
|
+
"INFO": "Information:",
|
|
116
|
+
"WARNING": "Advarsel:",
|
|
117
|
+
"ERROR": "Fejl:",
|
|
118
|
+
"SUCCESS": "Succes:"
|
|
76
119
|
}
|
|
77
120
|
}
|
|
@@ -3,18 +3,19 @@
|
|
|
3
3
|
"DISMISS": "Verwerfen"
|
|
4
4
|
},
|
|
5
5
|
"AUTOCOMPLETE": {
|
|
6
|
-
"SELECTED_AMOUNT": "Ausgewählt
|
|
6
|
+
"SELECTED_AMOUNT": "Ausgewählt: {{numberSelected}}",
|
|
7
7
|
"SELECTED": "Ausgewählt",
|
|
8
8
|
"SUGGESTED": "Empfohlen",
|
|
9
|
-
"ALL_ITEMS": "Alle
|
|
10
|
-
"NO_RESULTS_FOUND": "Keine Ergebnisse gefunden."
|
|
9
|
+
"ALL_ITEMS": "Alle Elemente",
|
|
10
|
+
"NO_RESULTS_FOUND": "Keine Ergebnisse gefunden.",
|
|
11
|
+
"MAX_SELECTED_ERROR": "Sie haben die maximale Anzahl von ({{max}}) -Tags. Entfernen Sie ein Tag, um ein weiteres hinzuzufügen."
|
|
11
12
|
},
|
|
12
13
|
"STEPPER": {
|
|
13
14
|
"FINAL_STEP": "Letzter Schritt"
|
|
14
15
|
},
|
|
15
16
|
"SLIDER": {
|
|
16
17
|
"MAX_LESS_THAN_MIN": "Der Maximalwert ({{max}}) kann nicht kleiner sein als der aktuelle Minimalwert ({{min}})",
|
|
17
|
-
"MIN_MORE_THAN_MAX": "
|
|
18
|
+
"MIN_MORE_THAN_MAX": "Min. Wert ({{min}}) darf nicht höher als der aktuelle Maximalwert ({{max}})"
|
|
18
19
|
},
|
|
19
20
|
"DATEPICKER": {
|
|
20
21
|
"START_DATE": "Startdatum",
|
|
@@ -28,22 +29,22 @@
|
|
|
28
29
|
"CONTINUE": "Weiter",
|
|
29
30
|
"NEXT": "Weiter",
|
|
30
31
|
"CLOSE": "Schließen",
|
|
31
|
-
"THANK_YOU": "
|
|
32
|
+
"THANK_YOU": "Vielen Dank",
|
|
32
33
|
"CANCEL": "Abbrechen",
|
|
33
34
|
"CONFIRM": "Bestätigen",
|
|
34
|
-
"SUBMIT": "
|
|
35
|
+
"SUBMIT": "Übermitteln",
|
|
35
36
|
"EMAIL": "E-Mail",
|
|
36
37
|
"OK": "OK",
|
|
37
38
|
"REMOVE": "Entfernen",
|
|
38
|
-
"TEST": "
|
|
39
|
+
"TEST": "test",
|
|
39
40
|
"MAYBE": "Vielleicht",
|
|
40
|
-
"BACK": "
|
|
41
|
+
"BACK": "Rücken",
|
|
41
42
|
"SAVE": "Speichern",
|
|
42
43
|
"SAVING": "Wird gespeichert",
|
|
43
44
|
"DELETE": "Löschen",
|
|
44
45
|
"SELECT": "Wählen",
|
|
45
46
|
"SEND": "Senden",
|
|
46
|
-
"N\/A": "
|
|
47
|
+
"N\/A": "N\/A",
|
|
47
48
|
"EDIT": "Bearbeiten",
|
|
48
49
|
"SKIP": "Überspringen",
|
|
49
50
|
"SEARCH": "Suchen",
|
|
@@ -54,24 +55,66 @@
|
|
|
54
55
|
"NO_RESULTS": "Keine Ergebnisse",
|
|
55
56
|
"MAX": "Max",
|
|
56
57
|
"MIN": "Min",
|
|
57
|
-
"CLEAR": "Löschen"
|
|
58
|
+
"CLEAR": "Löschen",
|
|
59
|
+
"PHONE_NUMBER": "Telefonnummer",
|
|
60
|
+
"ON": "An",
|
|
61
|
+
"OFF": "Aus"
|
|
58
62
|
},
|
|
59
63
|
"DIALOG": {
|
|
60
|
-
"CLOSE_LABEL": "Dialog schließen"
|
|
64
|
+
"CLOSE_LABEL": "Dialog schließen",
|
|
65
|
+
"CLOSED": "Dialog geschlossen"
|
|
61
66
|
},
|
|
62
67
|
"FIELD": {
|
|
63
68
|
"VIEW_PASSWORD": "Passwort anzeigen"
|
|
64
69
|
},
|
|
65
70
|
"FILE_UPLOAD": {
|
|
71
|
+
"DRAG_AND_DROP": "Ziehen Sie die Datei hierher oder klicken Sie zum Hochladen",
|
|
66
72
|
"DRAG_AND_DROP_OR": "Drag-and-Drop oder",
|
|
67
73
|
"BROWSE": "Durchsuchen",
|
|
68
|
-
"YOUR_FILES": "
|
|
74
|
+
"YOUR_FILES": "ihre Dateien",
|
|
69
75
|
"MAX_SIZE": "MB maximale Dateigröße.",
|
|
76
|
+
"MIN_SIZE": "MB minimale Dateigröße",
|
|
77
|
+
"MIN_SIZE_ERROR": "Laden Sie eine Datei hoch, die größer ist als ({{min}} MB)",
|
|
70
78
|
"UPLOADING": "Upload wird ausgeführt",
|
|
71
79
|
"SUPPORTED_FILE_TYPES": "Unterstützte Dateitypen:",
|
|
72
|
-
"CHANGE": "Ändern"
|
|
80
|
+
"CHANGE": "Ändern",
|
|
81
|
+
"FILE_UPLOADING_SUCCESS": "Datei erfolgreich hochgeladen",
|
|
82
|
+
"CHOOSE_FILE": "Datei auswählen: Keine Datei ausgewählt"
|
|
73
83
|
},
|
|
74
84
|
"NAVBAR": {
|
|
75
85
|
"LOG_OUT": "Abmelden"
|
|
86
|
+
},
|
|
87
|
+
"PASSWORD": {
|
|
88
|
+
"LOWERCASE": "Enthält mindestens einen Kleinbuchstaben",
|
|
89
|
+
"UPPERCASE": "Enthält mindestens einen Großbuchstaben",
|
|
90
|
+
"NUMBER": "Enthält mindestens eine Zahl",
|
|
91
|
+
"SPECIAL_CHARACTER": "Enthält mindestens ein Sonderzeichen",
|
|
92
|
+
"CHARACTERS": "Enthält mindestens 12 Zeichen",
|
|
93
|
+
"PASSWORD_PLACEHOLDER": "Passwort"
|
|
94
|
+
},
|
|
95
|
+
"ERRORS": {
|
|
96
|
+
"REQUIRED": "Dieses Feld wird benötigt",
|
|
97
|
+
"REQUIRED_FIELD": "Dieses Feld ist erforderlich - ({{label}})",
|
|
98
|
+
"MAX_LENGTH": "Bitte geben Sie einen Wert mit einer maximalen Länge von ({{maxlength}}) Zeichen ein.",
|
|
99
|
+
"MIN_LENGTH": "Bitte geben Sie einen Wert mit einer Mindestlänge von ({{maxlength}}) Zeichen ein.",
|
|
100
|
+
"MAX": "Bitte geben Sie einen Wert mit einem Höchstwert von ({{max}}) ein",
|
|
101
|
+
"MIN": "Bitte geben Sie einen Wert mit einem Mindestwert von ({{min}}) ein",
|
|
102
|
+
"EMAIL_INCORRECT": "Bitte geben Sie eine gültige E-Mail-Adresse ein"
|
|
103
|
+
},
|
|
104
|
+
"SCALE_TABLE": {
|
|
105
|
+
"HIGHEST": "Sehr wichtig",
|
|
106
|
+
"LOWEST": "Überhaupt nicht wichtig"
|
|
107
|
+
},
|
|
108
|
+
"BUTTON": {
|
|
109
|
+
"PREMIUM_FEATURE": "Premium-Funktion"
|
|
110
|
+
},
|
|
111
|
+
"MENU": {
|
|
112
|
+
"MENUITEM_DISABLED": "Dieser Menüpunkt ist deaktiviert"
|
|
113
|
+
},
|
|
114
|
+
"ALERT_BANNER": {
|
|
115
|
+
"INFO": "Information:",
|
|
116
|
+
"WARNING": "Warnung:",
|
|
117
|
+
"ERROR": "Fehler:",
|
|
118
|
+
"SUCCESS": "Erfolg:"
|
|
76
119
|
}
|
|
77
120
|
}
|
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
"SELECTED": "Seleccionado",
|
|
8
8
|
"SUGGESTED": "Sugerido",
|
|
9
9
|
"ALL_ITEMS": "Todos los elementos",
|
|
10
|
-
"NO_RESULTS_FOUND": "No se han encontrado resultados."
|
|
10
|
+
"NO_RESULTS_FOUND": "No se han encontrado resultados.",
|
|
11
|
+
"MAX_SELECTED_ERROR": "Has alcanzado el máximo de ({{max}}) etiquetas. Elimina una etiqueta para añadir otra."
|
|
11
12
|
},
|
|
12
13
|
"STEPPER": {
|
|
13
14
|
"FINAL_STEP": "Último paso"
|
|
@@ -18,7 +19,7 @@
|
|
|
18
19
|
},
|
|
19
20
|
"DATEPICKER": {
|
|
20
21
|
"START_DATE": "Fecha de inicio",
|
|
21
|
-
"END_DATE": "Fecha
|
|
22
|
+
"END_DATE": "Fecha de finalización"
|
|
22
23
|
},
|
|
23
24
|
"COMMON": {
|
|
24
25
|
"APPLY": "Aplicar",
|
|
@@ -34,16 +35,16 @@
|
|
|
34
35
|
"SUBMIT": "Enviar",
|
|
35
36
|
"EMAIL": "Correo electrónico",
|
|
36
37
|
"OK": "OK",
|
|
37
|
-
"REMOVE": "
|
|
38
|
+
"REMOVE": "Eliminar",
|
|
38
39
|
"TEST": "prueba",
|
|
39
|
-
"MAYBE": "
|
|
40
|
-
"BACK": "
|
|
40
|
+
"MAYBE": "Quizás",
|
|
41
|
+
"BACK": "Espalda",
|
|
41
42
|
"SAVE": "Guardar",
|
|
42
|
-
"SAVING": "
|
|
43
|
+
"SAVING": "Ahorro",
|
|
43
44
|
"DELETE": "Eliminar",
|
|
44
45
|
"SELECT": "Seleccionar",
|
|
45
46
|
"SEND": "Enviar",
|
|
46
|
-
"N\/A": "N\/
|
|
47
|
+
"N\/A": "N\/C",
|
|
47
48
|
"EDIT": "Editar",
|
|
48
49
|
"SKIP": "Omitir",
|
|
49
50
|
"SEARCH": "Buscar",
|
|
@@ -52,26 +53,68 @@
|
|
|
52
53
|
"OR_DIVIDER": "o",
|
|
53
54
|
"ADD": "Añadir",
|
|
54
55
|
"NO_RESULTS": "Sin resultados",
|
|
55
|
-
"MAX": "
|
|
56
|
+
"MAX": "Máximo",
|
|
56
57
|
"MIN": "Min",
|
|
57
|
-
"CLEAR": "Borrar"
|
|
58
|
+
"CLEAR": "Borrar",
|
|
59
|
+
"PHONE_NUMBER": "Número de teléfono",
|
|
60
|
+
"ON": "Encendido",
|
|
61
|
+
"OFF": "Apagado"
|
|
58
62
|
},
|
|
59
63
|
"DIALOG": {
|
|
60
|
-
"CLOSE_LABEL": "Cerrar diálogo"
|
|
64
|
+
"CLOSE_LABEL": "Cerrar diálogo",
|
|
65
|
+
"CLOSED": "Diálogo cerrado"
|
|
61
66
|
},
|
|
62
67
|
"FIELD": {
|
|
63
68
|
"VIEW_PASSWORD": "Ver contraseña"
|
|
64
69
|
},
|
|
65
70
|
"FILE_UPLOAD": {
|
|
71
|
+
"DRAG_AND_DROP": "Arrastre y suelte el archivo aquí o haga clic para subirlo",
|
|
66
72
|
"DRAG_AND_DROP_OR": "Arrastrar y soltar o",
|
|
67
73
|
"BROWSE": "Explorar",
|
|
68
|
-
"YOUR_FILES": "
|
|
74
|
+
"YOUR_FILES": "tus archivos",
|
|
69
75
|
"MAX_SIZE": "Tamaño máximo de archivo en MB.",
|
|
76
|
+
"MIN_SIZE": "Tamaño mínimo del archivo en MB",
|
|
77
|
+
"MIN_SIZE_ERROR": "Sube un archivo con un tamaño mayor a ({{min}} MB)",
|
|
70
78
|
"UPLOADING": "Subiendo",
|
|
71
|
-
"SUPPORTED_FILE_TYPES": "Tipos de archivo
|
|
72
|
-
"CHANGE": "Cambiar"
|
|
79
|
+
"SUPPORTED_FILE_TYPES": "Tipos de archivo admitidos:",
|
|
80
|
+
"CHANGE": "Cambiar",
|
|
81
|
+
"FILE_UPLOADING_SUCCESS": "Archivo cargado exitosamente",
|
|
82
|
+
"CHOOSE_FILE": "Elegir archivo: Ningún archivo ha sido elegido"
|
|
73
83
|
},
|
|
74
84
|
"NAVBAR": {
|
|
75
85
|
"LOG_OUT": "Cerrar sesión"
|
|
86
|
+
},
|
|
87
|
+
"PASSWORD": {
|
|
88
|
+
"LOWERCASE": "Contiene al menos una letra minúscula",
|
|
89
|
+
"UPPERCASE": "Contiene al menos una letra mayúscula",
|
|
90
|
+
"NUMBER": "Contiene al menos un número",
|
|
91
|
+
"SPECIAL_CHARACTER": "Contiene al menos un carácter especial.",
|
|
92
|
+
"CHARACTERS": "Contiene al menos 12 caracteres",
|
|
93
|
+
"PASSWORD_PLACEHOLDER": "Contraseña"
|
|
94
|
+
},
|
|
95
|
+
"ERRORS": {
|
|
96
|
+
"REQUIRED": "Este campo es obligatorio",
|
|
97
|
+
"REQUIRED_FIELD": "Este campo es obligatorio - ({{label}})",
|
|
98
|
+
"MAX_LENGTH": "Por favor, introduce un valor con un máximo de ({{maxlength}}) caracteres",
|
|
99
|
+
"MIN_LENGTH": "Introduce un valor con un mínimo de ({{maxlength}}) caracteres",
|
|
100
|
+
"MAX": "Por favor, introduce un valor con un valor máximo de ({{max}})",
|
|
101
|
+
"MIN": "Por favor, introduce un valor con un valor mínimo de ({{min}})",
|
|
102
|
+
"EMAIL_INCORRECT": "Escribe una dirección de correo electrónico válida"
|
|
103
|
+
},
|
|
104
|
+
"SCALE_TABLE": {
|
|
105
|
+
"HIGHEST": "Muy importante",
|
|
106
|
+
"LOWEST": "Nada importante"
|
|
107
|
+
},
|
|
108
|
+
"BUTTON": {
|
|
109
|
+
"PREMIUM_FEATURE": "Función Prémium"
|
|
110
|
+
},
|
|
111
|
+
"MENU": {
|
|
112
|
+
"MENUITEM_DISABLED": "Esta opción de menú está deshabilitada"
|
|
113
|
+
},
|
|
114
|
+
"ALERT_BANNER": {
|
|
115
|
+
"INFO": "Información:",
|
|
116
|
+
"WARNING": "Advertencia:",
|
|
117
|
+
"ERROR": "Error:",
|
|
118
|
+
"SUCCESS": "Éxito:"
|
|
76
119
|
}
|
|
77
120
|
}
|
|
@@ -3,18 +3,19 @@
|
|
|
3
3
|
"DISMISS": "Ignorer"
|
|
4
4
|
},
|
|
5
5
|
"AUTOCOMPLETE": {
|
|
6
|
-
"SELECTED_AMOUNT": "Sélectionné
|
|
6
|
+
"SELECTED_AMOUNT": "Sélectionné : {{numberSelected}}",
|
|
7
7
|
"SELECTED": "Sélectionné",
|
|
8
8
|
"SUGGESTED": "Suggéré",
|
|
9
9
|
"ALL_ITEMS": "Tous les éléments",
|
|
10
|
-
"NO_RESULTS_FOUND": "Aucun résultat n'a été trouvé."
|
|
10
|
+
"NO_RESULTS_FOUND": "Aucun résultat n'a été trouvé.",
|
|
11
|
+
"MAX_SELECTED_ERROR": "Vous avez atteint le maximum de ({{max}}) tags. Supprimez une balise pour en ajouter une autre."
|
|
11
12
|
},
|
|
12
13
|
"STEPPER": {
|
|
13
|
-
"FINAL_STEP": "
|
|
14
|
+
"FINAL_STEP": "Étape finale"
|
|
14
15
|
},
|
|
15
16
|
"SLIDER": {
|
|
16
|
-
"MAX_LESS_THAN_MIN": "La valeur maximale ({{max}}) ne peut être inférieure à la valeur minimale actuelle ({{min}})
|
|
17
|
-
"MIN_MORE_THAN_MAX": "La valeur minimale ({{min}}) ne peut être supérieure à la valeur maximale actuelle ({{max}})
|
|
17
|
+
"MAX_LESS_THAN_MIN": "La valeur maximale ({{max}}) ne peut être inférieure à la valeur minimale actuelle ({{min}})",
|
|
18
|
+
"MIN_MORE_THAN_MAX": "La valeur minimale ({{min}}) ne peut être supérieure à la valeur maximale actuelle ({{max}})"
|
|
18
19
|
},
|
|
19
20
|
"DATEPICKER": {
|
|
20
21
|
"START_DATE": "Date de début",
|
|
@@ -37,41 +38,83 @@
|
|
|
37
38
|
"REMOVE": "Retirer",
|
|
38
39
|
"TEST": "test",
|
|
39
40
|
"MAYBE": "Peut-être",
|
|
40
|
-
"BACK": "
|
|
41
|
+
"BACK": "Dos",
|
|
41
42
|
"SAVE": "Enregistrer",
|
|
42
43
|
"SAVING": "Enregistrement",
|
|
43
44
|
"DELETE": "Supprimer",
|
|
44
45
|
"SELECT": "Sélectionner",
|
|
45
46
|
"SEND": "Envoyer",
|
|
46
|
-
"N\/A": "
|
|
47
|
-
"EDIT": "
|
|
48
|
-
"SKIP": "
|
|
47
|
+
"N\/A": "S.O.",
|
|
48
|
+
"EDIT": "Modifier",
|
|
49
|
+
"SKIP": "Ignorer",
|
|
49
50
|
"SEARCH": "Rechercher",
|
|
50
|
-
"ROLE": "
|
|
51
|
+
"ROLE": "Poste",
|
|
51
52
|
"ALL": "Tous",
|
|
52
53
|
"OR_DIVIDER": "ou",
|
|
53
54
|
"ADD": "Ajouter",
|
|
54
|
-
"NO_RESULTS": "
|
|
55
|
+
"NO_RESULTS": "Aucun résultat",
|
|
55
56
|
"MAX": "Max",
|
|
56
57
|
"MIN": "Min",
|
|
57
|
-
"CLEAR": "Effacer"
|
|
58
|
+
"CLEAR": "Effacer",
|
|
59
|
+
"PHONE_NUMBER": "Numéro de téléphone",
|
|
60
|
+
"ON": "On",
|
|
61
|
+
"OFF": "Off"
|
|
58
62
|
},
|
|
59
63
|
"DIALOG": {
|
|
60
|
-
"CLOSE_LABEL": "Fermer le dialogue"
|
|
64
|
+
"CLOSE_LABEL": "Fermer le dialogue",
|
|
65
|
+
"CLOSED": "Dialogue clos"
|
|
61
66
|
},
|
|
62
67
|
"FIELD": {
|
|
63
68
|
"VIEW_PASSWORD": "Voir le mot de passe"
|
|
64
69
|
},
|
|
65
70
|
"FILE_UPLOAD": {
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
71
|
+
"DRAG_AND_DROP": "Glissez-déposez le fichier ici ou cliquez pour le télécharger",
|
|
72
|
+
"DRAG_AND_DROP_OR": "Glissez et déposez vos fichiers ici, ou",
|
|
73
|
+
"BROWSE": "Recherchez-les",
|
|
74
|
+
"YOUR_FILES": "vos fichiers",
|
|
75
|
+
"MAX_SIZE": "Taille maximale du fichier",
|
|
76
|
+
"MIN_SIZE": "Taille minimale du fichier en Mo",
|
|
77
|
+
"MIN_SIZE_ERROR": "Téléchargez un fichier d'une taille supérieure à ({{min}} MB)",
|
|
70
78
|
"UPLOADING": "Téléchargement",
|
|
71
|
-
"SUPPORTED_FILE_TYPES": "Types de fichiers pris en charge
|
|
72
|
-
"CHANGE": "Changer"
|
|
79
|
+
"SUPPORTED_FILE_TYPES": "Types de fichiers pris en charge :",
|
|
80
|
+
"CHANGE": "Changer",
|
|
81
|
+
"FILE_UPLOADING_SUCCESS": "Fichier téléchargé avec succès",
|
|
82
|
+
"CHOOSE_FILE": "Choisissez un fichier : Aucun fichier n'a été choisi"
|
|
73
83
|
},
|
|
74
84
|
"NAVBAR": {
|
|
75
|
-
"LOG_OUT": "
|
|
85
|
+
"LOG_OUT": "Se déconnecter"
|
|
86
|
+
},
|
|
87
|
+
"PASSWORD": {
|
|
88
|
+
"LOWERCASE": "Contient au moins une minuscule",
|
|
89
|
+
"UPPERCASE": "Contient au moins une majuscule",
|
|
90
|
+
"NUMBER": "Contient au moins un chiffre",
|
|
91
|
+
"SPECIAL_CHARACTER": "Contient au moins un caractère spécial",
|
|
92
|
+
"CHARACTERS": "Contient au moins 12 caractères",
|
|
93
|
+
"PASSWORD_PLACEHOLDER": "Mot de passe"
|
|
94
|
+
},
|
|
95
|
+
"ERRORS": {
|
|
96
|
+
"REQUIRED": "Ce champ est obligatoire",
|
|
97
|
+
"REQUIRED_FIELD": "Ce champ est obligatoire - ({{label}})",
|
|
98
|
+
"MAX_LENGTH": "Veuillez saisir un maximum de ({{maxlength}}) caractères.",
|
|
99
|
+
"MIN_LENGTH": "Veuillez saisir un minimum de ({{maxlength}}) caractères.",
|
|
100
|
+
"MAX": "Veuillez saisir une valeur maximum de ({{max}})",
|
|
101
|
+
"MIN": "Veuillez saisir une valeur minimum de ({{min}})",
|
|
102
|
+
"EMAIL_INCORRECT": "Veuillez indiquer une adresse e-mail valide"
|
|
103
|
+
},
|
|
104
|
+
"SCALE_TABLE": {
|
|
105
|
+
"HIGHEST": "Très important",
|
|
106
|
+
"LOWEST": "Pas du tout Important"
|
|
107
|
+
},
|
|
108
|
+
"BUTTON": {
|
|
109
|
+
"PREMIUM_FEATURE": "Fonctionnalité Premium"
|
|
110
|
+
},
|
|
111
|
+
"MENU": {
|
|
112
|
+
"MENUITEM_DISABLED": "Cet élément du menu est désactivé"
|
|
113
|
+
},
|
|
114
|
+
"ALERT_BANNER": {
|
|
115
|
+
"INFO": "Informations :",
|
|
116
|
+
"WARNING": "Avertissement :",
|
|
117
|
+
"ERROR": "Erreur :",
|
|
118
|
+
"SUCCESS": "Réussite :"
|
|
76
119
|
}
|
|
77
120
|
}
|