@testgorilla/tgo-ui 1.13.33 → 1.13.35

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.
Files changed (113) hide show
  1. package/components/accordion/accordion.component.d.ts +20 -2
  2. package/components/accordion/accordion.model.d.ts +1 -0
  3. package/components/alert-banner/alert-banner.component.d.ts +15 -12
  4. package/components/button/button.component.d.ts +15 -1
  5. package/components/checkbox/checkbox.component.d.ts +15 -1
  6. package/components/checkbox/checkbox.component.module.d.ts +2 -1
  7. package/components/datepicker/datepicker.component.d.ts +2 -1
  8. package/components/dialog/dialog.service.d.ts +2 -1
  9. package/components/empty-state/empty-state.component.d.ts +37 -3
  10. package/components/empty-state/empty-state.model.d.ts +3 -0
  11. package/components/field/field.component.d.ts +16 -1
  12. package/components/file-upload/file-upload.component.d.ts +15 -1
  13. package/components/icon/icon.config.d.ts +1 -1
  14. package/components/logo/logo.component.d.ts +10 -1
  15. package/components/navbar/navbar.component.d.ts +10 -2
  16. package/components/navbar/navbar.component.module.d.ts +2 -1
  17. package/components/overflow-menu/overflow-menu.component.d.ts +15 -1
  18. package/components/page-header/page-header.component.module.d.ts +1 -1
  19. package/components/progress-bar/progress-bar.component.d.ts +4 -2
  20. package/components/radio-button/radio-button.component.d.ts +15 -1
  21. package/components/radio-button/radio-button.component.module.d.ts +2 -1
  22. package/components/rating/rating.component.d.ts +15 -1
  23. package/components/rating/rating.component.module.d.ts +2 -1
  24. package/components/segmented-bar/segmented-bar.component.d.ts +15 -1
  25. package/components/segmented-bar/segmented-bar.component.module.d.ts +2 -1
  26. package/components/segmented-button/segmented-button.component.d.ts +23 -0
  27. package/components/segmented-button/segmented-button.component.module.d.ts +10 -0
  28. package/components/segmented-button/segmented-button.model.d.ts +6 -0
  29. package/components/stepper/stepper.component.d.ts +15 -1
  30. package/components/stepper/stepper.component.module.d.ts +2 -1
  31. package/components/table/sentence-case.pipe.d.ts +7 -0
  32. package/components/table/table.component.d.ts +2 -1
  33. package/components/table/table.component.module.d.ts +11 -10
  34. package/components/tag/tag.component.d.ts +15 -1
  35. package/components/tag/tag.component.module.d.ts +2 -1
  36. package/components/toggle/toggle.component.d.ts +15 -1
  37. package/components/toggle/toggle.component.module.d.ts +2 -1
  38. package/esm2022/assets/i18n/es.json +73 -1
  39. package/esm2022/components/accordion/accordion.component.mjs +15 -3
  40. package/esm2022/components/accordion/accordion.model.mjs +2 -0
  41. package/esm2022/components/alert-banner/alert-banner.component.mjs +16 -13
  42. package/esm2022/components/autocomplete/autocomplete.component.mjs +1 -1
  43. package/esm2022/components/avatar/avatar.component.mjs +2 -2
  44. package/esm2022/components/banner-action/banner-action.component.mjs +1 -1
  45. package/esm2022/components/button/button.component.mjs +14 -3
  46. package/esm2022/components/checkbox/checkbox.component.mjs +15 -4
  47. package/esm2022/components/checkbox/checkbox.component.module.mjs +5 -4
  48. package/esm2022/components/datepicker/datepicker.component.mjs +6 -3
  49. package/esm2022/components/dialog/dialog.component.mjs +2 -2
  50. package/esm2022/components/dialog/dialog.service.mjs +3 -3
  51. package/esm2022/components/dropdown/dropdown.component.mjs +1 -1
  52. package/esm2022/components/empty-state/empty-state.component.mjs +63 -5
  53. package/esm2022/components/empty-state/empty-state.model.mjs +2 -0
  54. package/esm2022/components/field/field.component.mjs +16 -4
  55. package/esm2022/components/file-upload/file-upload.component.mjs +15 -4
  56. package/esm2022/components/icon/icon.config.mjs +3 -1
  57. package/esm2022/components/logo/logo.component.mjs +14 -3
  58. package/esm2022/components/navbar/navbar.component.mjs +15 -4
  59. package/esm2022/components/navbar/navbar.component.module.mjs +7 -3
  60. package/esm2022/components/overflow-menu/overflow-menu.component.mjs +14 -3
  61. package/esm2022/components/page-header/page-header.component.mjs +1 -1
  62. package/esm2022/components/page-header/page-header.component.module.mjs +3 -2
  63. package/esm2022/components/progress-bar/progress-bar.component.mjs +8 -11
  64. package/esm2022/components/radio-button/radio-button.component.mjs +14 -3
  65. package/esm2022/components/radio-button/radio-button.component.module.mjs +5 -4
  66. package/esm2022/components/rating/rating.component.mjs +14 -3
  67. package/esm2022/components/rating/rating.component.module.mjs +5 -4
  68. package/esm2022/components/segmented-bar/segmented-bar.component.mjs +14 -3
  69. package/esm2022/components/segmented-bar/segmented-bar.component.module.mjs +5 -4
  70. package/esm2022/components/segmented-button/segmented-button.component.mjs +53 -0
  71. package/esm2022/components/segmented-button/segmented-button.component.module.mjs +32 -0
  72. package/esm2022/components/segmented-button/segmented-button.model.mjs +2 -0
  73. package/esm2022/components/side-sheet/side-sheet.component.mjs +1 -1
  74. package/esm2022/components/slider/slider.component.mjs +3 -3
  75. package/esm2022/components/snackbar/snackbar.component.mjs +3 -3
  76. package/esm2022/components/stepper/stepper.component.mjs +14 -3
  77. package/esm2022/components/stepper/stepper.component.module.mjs +7 -3
  78. package/esm2022/components/table/sentence-case.pipe.mjs +19 -0
  79. package/esm2022/components/table/table.component.mjs +10 -3
  80. package/esm2022/components/table/table.component.module.mjs +4 -3
  81. package/esm2022/components/tabs/tabs.component.mjs +3 -3
  82. package/esm2022/components/tag/tag.component.mjs +14 -3
  83. package/esm2022/components/tag/tag.component.module.mjs +5 -4
  84. package/esm2022/components/toggle/toggle.component.mjs +15 -4
  85. package/esm2022/components/toggle/toggle.component.module.mjs +5 -4
  86. package/esm2022/components/tooltip/tooltip.component.mjs +3 -3
  87. package/esm2022/public-api.mjs +7 -1
  88. package/esm2022/utils/alert-bar.model.mjs +1 -1
  89. package/esm2022/utils/alert-bars.utils.mjs +3 -3
  90. package/fesm2022/testgorilla-tgo-ui.mjs +652 -247
  91. package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
  92. package/package.json +1 -1
  93. package/public-api.d.ts +5 -0
  94. package/src/assets/i18n/da-dk.json +77 -0
  95. package/src/assets/i18n/de.json +77 -0
  96. package/src/assets/i18n/es.json +74 -2
  97. package/src/assets/i18n/fr.json +77 -0
  98. package/src/assets/i18n/it-it.json +77 -0
  99. package/src/assets/i18n/ja-jp.json +77 -0
  100. package/src/assets/i18n/nb-no.json +77 -0
  101. package/src/assets/i18n/nl.json +77 -0
  102. package/src/assets/i18n/pl-pl.json +77 -0
  103. package/src/assets/i18n/pt-br.json +77 -0
  104. package/src/assets/i18n/sv-se.json +77 -0
  105. package/src/assets/icons/rebrand/Disconnected-in-line.svg +12 -0
  106. package/src/assets/icons/rebrand/Empty-search-in-line.svg +12 -0
  107. package/src/assets/icons/rebrand/Lost-found-404-in-line.svg +12 -0
  108. package/src/assets/icons/rebrand/Premium-circle-in-line.svg +5 -0
  109. package/src/theme/_tooltip.scss +103 -60
  110. package/src/theme/_typography.scss +2 -2
  111. package/src/theme/theme.scss +1 -1
  112. package/utils/alert-bar.model.d.ts +1 -0
  113. package/utils/alert-bars.utils.d.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testgorilla/tgo-ui",
3
- "version": "1.13.33",
3
+ "version": "1.13.35",
4
4
  "lint-staged": {
5
5
  "src/**/*.ts": [
6
6
  "eslint --fix",
package/public-api.d.ts CHANGED
@@ -89,6 +89,7 @@ export * from './components/radial-progress/radial-progress.component.module';
89
89
  export * from './components/radial-progress/radial-progress.model';
90
90
  export * from './components/empty-state/empty-state.component';
91
91
  export * from './components/empty-state/empty-state.component.module';
92
+ export * from './components/empty-state/empty-state.model';
92
93
  export * from './components/table/table.component';
93
94
  export * from './components/table/table.component.module';
94
95
  export * from './components/table/table.model';
@@ -109,6 +110,7 @@ export * from './components/page-header/page-header.component';
109
110
  export * from './components/page-header/page-header.component.module';
110
111
  export * from './components/accordion/accordion.component';
111
112
  export * from './components/accordion/accordion.component.module';
113
+ export * from './components/accordion/accordion.model';
112
114
  export * from './components/divider/divider.component';
113
115
  export * from './components/divider/divider.model';
114
116
  export * from './components/divider/divider.component.module';
@@ -120,3 +122,6 @@ export * from './utils/localization/language.model';
120
122
  export * from './components/overflow-menu/overflow-menu.component.module';
121
123
  export * from './components/overflow-menu/overflow-menu.component';
122
124
  export * from './models/application-theme.model';
125
+ export * from './components/segmented-button/segmented-button.component';
126
+ export * from './components/segmented-button/segmented-button.model';
127
+ export * from './components/segmented-button/segmented-button.component.module';
@@ -0,0 +1,77 @@
1
+ {
2
+ "SNACKBAR": {
3
+ "DISMISS": "Afvis"
4
+ },
5
+ "AUTOCOMPLETE": {
6
+ "SELECTED_AMOUNT": "Valgte ({{numberSelected}})",
7
+ "SELECTED": "Valgte",
8
+ "SUGGESTED": "Foreslået",
9
+ "ALL_ITEMS": "Alle genstande",
10
+ "NO_RESULTS_FOUND": "Ingen resultater fundet."
11
+ },
12
+ "STEPPER": {
13
+ "FINAL_STEP": "Sidste trin"
14
+ },
15
+ "SLIDER": {
16
+ "MAX_LESS_THAN_MIN": "Maksimumværdien ({{max}}) kan ikke være mindre end den aktuelle mindsteværdi ({{min}})",
17
+ "MIN_MORE_THAN_MAX": "Mindsteværdien ({{min}}) kan ikke være større end den aktuelle maksimumværdi ({{max}})"
18
+ },
19
+ "DATEPICKER": {
20
+ "START_DATE": "Startdato",
21
+ "END_DATE": "Slutdato"
22
+ },
23
+ "COMMON": {
24
+ "APPLY": "Anvend",
25
+ "VALIDATE": "Valider",
26
+ "YES": "Ja",
27
+ "NO": "Nej",
28
+ "CONTINUE": "Fortsæt",
29
+ "NEXT": "Næste",
30
+ "CLOSE": "Luk",
31
+ "THANK_YOU": "Tak",
32
+ "CANCEL": "Annuller",
33
+ "CONFIRM": "Bekræft",
34
+ "SUBMIT": "Indsend",
35
+ "EMAIL": "E-mail",
36
+ "OK": "OK",
37
+ "REMOVE": "Fjern",
38
+ "TEST": "test",
39
+ "MAYBE": "Måske",
40
+ "BACK": "Tilbage",
41
+ "SAVE": "Gem",
42
+ "SAVING": "Gemmer",
43
+ "DELETE": "Slet",
44
+ "SELECT": "Vælg",
45
+ "SEND": "Send",
46
+ "N\/A": "N\/A",
47
+ "EDIT": "Rediger",
48
+ "SKIP": "Spring over",
49
+ "SEARCH": "Søg",
50
+ "ROLE": "Rolle",
51
+ "ALL": "Alle",
52
+ "OR_DIVIDER": "eller",
53
+ "ADD": "Tilføj",
54
+ "NO_RESULTS": "Ingen resultater",
55
+ "MAX": "Maks",
56
+ "MIN": "Mindst",
57
+ "CLEAR": "Ryd"
58
+ },
59
+ "DIALOG": {
60
+ "CLOSE_LABEL": "Luk dialogboks"
61
+ },
62
+ "FIELD": {
63
+ "VIEW_PASSWORD": "Se adgangskode"
64
+ },
65
+ "FILE_UPLOAD": {
66
+ "DRAG_AND_DROP_OR": "Træk og slip eller",
67
+ "BROWSE": "Gennemse",
68
+ "YOUR_FILES": "Dine filer",
69
+ "MAX_SIZE": "MB maksimal filstørrelse.",
70
+ "UPLOADING": "Uploader",
71
+ "SUPPORTED_FILE_TYPES": "Understøttede filtyper:",
72
+ "CHANGE": "Ændre"
73
+ },
74
+ "NAVBAR": {
75
+ "LOG_OUT": "Log ud"
76
+ }
77
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "SNACKBAR": {
3
+ "DISMISS": "Verwerfen"
4
+ },
5
+ "AUTOCOMPLETE": {
6
+ "SELECTED_AMOUNT": "Ausgewählt ({{numberSelected}})",
7
+ "SELECTED": "Ausgewählt",
8
+ "SUGGESTED": "Empfohlen",
9
+ "ALL_ITEMS": "Alle Artikel",
10
+ "NO_RESULTS_FOUND": "Keine Ergebnisse gefunden."
11
+ },
12
+ "STEPPER": {
13
+ "FINAL_STEP": "Letzter Schritt"
14
+ },
15
+ "SLIDER": {
16
+ "MAX_LESS_THAN_MIN": "Der Maximalwert ({{max}}) kann nicht kleiner sein als der aktuelle Minimalwert ({{min}})",
17
+ "MIN_MORE_THAN_MAX": "Der Minimalwert ({{min}}) kann nicht größer sein als der aktuelle Maximalwert ({{max}})"
18
+ },
19
+ "DATEPICKER": {
20
+ "START_DATE": "Startdatum",
21
+ "END_DATE": "Enddatum"
22
+ },
23
+ "COMMON": {
24
+ "APPLY": "Anwenden",
25
+ "VALIDATE": "Validieren",
26
+ "YES": "Ja",
27
+ "NO": "Nein",
28
+ "CONTINUE": "Weiter",
29
+ "NEXT": "Weiter",
30
+ "CLOSE": "Schließen",
31
+ "THANK_YOU": "Dankeschön",
32
+ "CANCEL": "Abbrechen",
33
+ "CONFIRM": "Bestätigen",
34
+ "SUBMIT": "Einreichen",
35
+ "EMAIL": "E-Mail",
36
+ "OK": "OK",
37
+ "REMOVE": "Entfernen",
38
+ "TEST": "Test",
39
+ "MAYBE": "Vielleicht",
40
+ "BACK": "Zurück",
41
+ "SAVE": "Speichern",
42
+ "SAVING": "Wird gespeichert",
43
+ "DELETE": "Löschen",
44
+ "SELECT": "Wählen",
45
+ "SEND": "Senden",
46
+ "N\/A": "K.A.",
47
+ "EDIT": "Bearbeiten",
48
+ "SKIP": "Überspringen",
49
+ "SEARCH": "Suchen",
50
+ "ROLE": "Rolle",
51
+ "ALL": "Alle",
52
+ "OR_DIVIDER": "oder",
53
+ "ADD": "Hinzufügen",
54
+ "NO_RESULTS": "Keine Ergebnisse",
55
+ "MAX": "Max",
56
+ "MIN": "Min",
57
+ "CLEAR": "Löschen"
58
+ },
59
+ "DIALOG": {
60
+ "CLOSE_LABEL": "Dialog schließen"
61
+ },
62
+ "FIELD": {
63
+ "VIEW_PASSWORD": "Passwort anzeigen"
64
+ },
65
+ "FILE_UPLOAD": {
66
+ "DRAG_AND_DROP_OR": "Drag-and-Drop oder",
67
+ "BROWSE": "Durchsuchen",
68
+ "YOUR_FILES": "Ihre Dateien",
69
+ "MAX_SIZE": "MB maximale Dateigröße.",
70
+ "UPLOADING": "Upload wird ausgeführt",
71
+ "SUPPORTED_FILE_TYPES": "Unterstützte Dateitypen:",
72
+ "CHANGE": "Ändern"
73
+ },
74
+ "NAVBAR": {
75
+ "LOG_OUT": "Abmelden"
76
+ }
77
+ }
@@ -1,5 +1,77 @@
1
1
  {
2
2
  "SNACKBAR": {
3
- "DISMISS": "Cerrar"
3
+ "DISMISS": "Descartar"
4
+ },
5
+ "AUTOCOMPLETE": {
6
+ "SELECTED_AMOUNT": "Seleccionado ({{numberSelected}})",
7
+ "SELECTED": "Seleccionado",
8
+ "SUGGESTED": "Sugerido",
9
+ "ALL_ITEMS": "Todos los elementos",
10
+ "NO_RESULTS_FOUND": "No se han encontrado resultados."
11
+ },
12
+ "STEPPER": {
13
+ "FINAL_STEP": "Último paso"
14
+ },
15
+ "SLIDER": {
16
+ "MAX_LESS_THAN_MIN": "El valor máximo ({{max}}) no puede ser inferior al valor mínimo actual ({{min}})",
17
+ "MIN_MORE_THAN_MAX": "El valor mínimo ({{min}}) no puede ser superior al valor máximo actual ({{max}})"
18
+ },
19
+ "DATEPICKER": {
20
+ "START_DATE": "Fecha de inicio",
21
+ "END_DATE": "Fecha final"
22
+ },
23
+ "COMMON": {
24
+ "APPLY": "Aplicar",
25
+ "VALIDATE": "Validar",
26
+ "YES": "Sí",
27
+ "NO": "No",
28
+ "CONTINUE": "Continuar",
29
+ "NEXT": "Siguiente",
30
+ "CLOSE": "Cerrar",
31
+ "THANK_YOU": "Gracias",
32
+ "CANCEL": "Cancelar",
33
+ "CONFIRM": "Confirmar",
34
+ "SUBMIT": "Enviar",
35
+ "EMAIL": "Correo electrónico",
36
+ "OK": "OK",
37
+ "REMOVE": "Remover",
38
+ "TEST": "prueba",
39
+ "MAYBE": "Tal vez",
40
+ "BACK": "Volver",
41
+ "SAVE": "Guardar",
42
+ "SAVING": "Guardando",
43
+ "DELETE": "Eliminar",
44
+ "SELECT": "Seleccionar",
45
+ "SEND": "Enviar",
46
+ "N\/A": "N\/A",
47
+ "EDIT": "Editar",
48
+ "SKIP": "Omitir",
49
+ "SEARCH": "Buscar",
50
+ "ROLE": "Puesto",
51
+ "ALL": "Todos",
52
+ "OR_DIVIDER": "o",
53
+ "ADD": "Añadir",
54
+ "NO_RESULTS": "Sin resultados",
55
+ "MAX": "Max",
56
+ "MIN": "Min",
57
+ "CLEAR": "Borrar"
58
+ },
59
+ "DIALOG": {
60
+ "CLOSE_LABEL": "Cerrar diálogo"
61
+ },
62
+ "FIELD": {
63
+ "VIEW_PASSWORD": "Ver contraseña"
64
+ },
65
+ "FILE_UPLOAD": {
66
+ "DRAG_AND_DROP_OR": "Arrastrar y soltar o",
67
+ "BROWSE": "Explorar",
68
+ "YOUR_FILES": "Tus archivos",
69
+ "MAX_SIZE": "Tamaño máximo de archivo en MB.",
70
+ "UPLOADING": "Subiendo",
71
+ "SUPPORTED_FILE_TYPES": "Tipos de archivo compatibles:",
72
+ "CHANGE": "Cambiar"
73
+ },
74
+ "NAVBAR": {
75
+ "LOG_OUT": "Cerrar sesión"
4
76
  }
5
- }
77
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "SNACKBAR": {
3
+ "DISMISS": "Ignorer"
4
+ },
5
+ "AUTOCOMPLETE": {
6
+ "SELECTED_AMOUNT": "Sélectionné ({{numberSelected}})",
7
+ "SELECTED": "Sélectionné",
8
+ "SUGGESTED": "Suggéré",
9
+ "ALL_ITEMS": "Tous les éléments",
10
+ "NO_RESULTS_FOUND": "Aucun résultat n'a été trouvé."
11
+ },
12
+ "STEPPER": {
13
+ "FINAL_STEP": "Dernière étape"
14
+ },
15
+ "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}})."
18
+ },
19
+ "DATEPICKER": {
20
+ "START_DATE": "Date de début",
21
+ "END_DATE": "Date de fin"
22
+ },
23
+ "COMMON": {
24
+ "APPLY": "Appliquer",
25
+ "VALIDATE": "Valider",
26
+ "YES": "Oui",
27
+ "NO": "Non",
28
+ "CONTINUE": "Continuer",
29
+ "NEXT": "Suivant",
30
+ "CLOSE": "Fermer",
31
+ "THANK_YOU": "Merci",
32
+ "CANCEL": "Annuler",
33
+ "CONFIRM": "Confirmer",
34
+ "SUBMIT": "Envoyer",
35
+ "EMAIL": "E-mail",
36
+ "OK": "OK",
37
+ "REMOVE": "Retirer",
38
+ "TEST": "test",
39
+ "MAYBE": "Peut-être",
40
+ "BACK": "Retour",
41
+ "SAVE": "Enregistrer",
42
+ "SAVING": "Enregistrement",
43
+ "DELETE": "Supprimer",
44
+ "SELECT": "Sélectionner",
45
+ "SEND": "Envoyer",
46
+ "N\/A": "N\/A",
47
+ "EDIT": "Éditer",
48
+ "SKIP": "Passer",
49
+ "SEARCH": "Rechercher",
50
+ "ROLE": "Rôle",
51
+ "ALL": "Tous",
52
+ "OR_DIVIDER": "ou",
53
+ "ADD": "Ajouter",
54
+ "NO_RESULTS": "Pas de résultats",
55
+ "MAX": "Max",
56
+ "MIN": "Min",
57
+ "CLEAR": "Effacer"
58
+ },
59
+ "DIALOG": {
60
+ "CLOSE_LABEL": "Fermer le dialogue"
61
+ },
62
+ "FIELD": {
63
+ "VIEW_PASSWORD": "Voir le mot de passe"
64
+ },
65
+ "FILE_UPLOAD": {
66
+ "DRAG_AND_DROP_OR": "Glisser-déposer ou",
67
+ "BROWSE": "Parcourir",
68
+ "YOUR_FILES": "Vos dossiers",
69
+ "MAX_SIZE": "Taille maximale du fichier en Mo.",
70
+ "UPLOADING": "Téléchargement",
71
+ "SUPPORTED_FILE_TYPES": "Types de fichiers pris en charge :",
72
+ "CHANGE": "Changer"
73
+ },
74
+ "NAVBAR": {
75
+ "LOG_OUT": "Déconnexion"
76
+ }
77
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "SNACKBAR": {
3
+ "DISMISS": "Ignora"
4
+ },
5
+ "AUTOCOMPLETE": {
6
+ "SELECTED_AMOUNT": "({{numberSelected}}) selezionati",
7
+ "SELECTED": "Selezionati",
8
+ "SUGGESTED": "Consigliati",
9
+ "ALL_ITEMS": "Tutti gli articoli",
10
+ "NO_RESULTS_FOUND": "Nessun risultato trovato."
11
+ },
12
+ "STEPPER": {
13
+ "FINAL_STEP": "Passaggio finale"
14
+ },
15
+ "SLIDER": {
16
+ "MAX_LESS_THAN_MIN": "Il valore max ({{max}}) non può essere inferiore al valore min attuale ({{min}}).",
17
+ "MIN_MORE_THAN_MAX": "Il valore min ({{min}}) non può essere superiore al valore max attuale ({{max}})."
18
+ },
19
+ "DATEPICKER": {
20
+ "START_DATE": "Data di inizio",
21
+ "END_DATE": "Data di fine"
22
+ },
23
+ "COMMON": {
24
+ "APPLY": "Applica",
25
+ "VALIDATE": "Convalida",
26
+ "YES": "Sì",
27
+ "NO": "No",
28
+ "CONTINUE": "Continua",
29
+ "NEXT": "Avanti",
30
+ "CLOSE": "Chiudi",
31
+ "THANK_YOU": "Grazie",
32
+ "CANCEL": "Annulla",
33
+ "CONFIRM": "Conferma",
34
+ "SUBMIT": "Invia",
35
+ "EMAIL": "Invia una e-mail",
36
+ "OK": "OK",
37
+ "REMOVE": "Rimuovi",
38
+ "TEST": "test",
39
+ "MAYBE": "Forse",
40
+ "BACK": "Indietro",
41
+ "SAVE": "Salva",
42
+ "SAVING": "Salvataggio in corso",
43
+ "DELETE": "Elimina",
44
+ "SELECT": "Seleziona",
45
+ "SEND": "Invia",
46
+ "N\/A": "N.D.",
47
+ "EDIT": "Modifica",
48
+ "SKIP": "Salta",
49
+ "SEARCH": "Cerca",
50
+ "ROLE": "Ruolo",
51
+ "ALL": "Tutti",
52
+ "OR_DIVIDER": "oppure",
53
+ "ADD": "Aggiungi",
54
+ "NO_RESULTS": "Nessun risultato",
55
+ "MAX": "Max",
56
+ "MIN": "Min",
57
+ "CLEAR": "Cancella"
58
+ },
59
+ "DIALOG": {
60
+ "CLOSE_LABEL": "Chiudi la finestra di dialogo"
61
+ },
62
+ "FIELD": {
63
+ "VIEW_PASSWORD": "Visualizza la password"
64
+ },
65
+ "FILE_UPLOAD": {
66
+ "DRAG_AND_DROP_OR": "Trascina e rilascia o",
67
+ "BROWSE": "Naviga",
68
+ "YOUR_FILES": "I tuoi file",
69
+ "MAX_SIZE": "Dimensione max del file in MB.",
70
+ "UPLOADING": "Caricamento",
71
+ "SUPPORTED_FILE_TYPES": "Tipi di file supportati:",
72
+ "CHANGE": "Cambia"
73
+ },
74
+ "NAVBAR": {
75
+ "LOG_OUT": "Esci"
76
+ }
77
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "SNACKBAR": {
3
+ "DISMISS": "却下"
4
+ },
5
+ "AUTOCOMPLETE": {
6
+ "SELECTED_AMOUNT": "選択済み ({{numberSelected}})",
7
+ "SELECTED": "選択済み",
8
+ "SUGGESTED": "推奨",
9
+ "ALL_ITEMS": "全項目",
10
+ "NO_RESULTS_FOUND": "結果が見つかりませんでした。"
11
+ },
12
+ "STEPPER": {
13
+ "FINAL_STEP": "最終ステップ"
14
+ },
15
+ "SLIDER": {
16
+ "MAX_LESS_THAN_MIN": "最大値({{max}})を現在の最小値({{min}})より小さくすることはできません。",
17
+ "MIN_MORE_THAN_MAX": "最小値({{min}})を現在の最大値({{max}})より大きくすることはできません。"
18
+ },
19
+ "DATEPICKER": {
20
+ "START_DATE": "開始日",
21
+ "END_DATE": "終了日"
22
+ },
23
+ "COMMON": {
24
+ "APPLY": "適用",
25
+ "VALIDATE": "確認",
26
+ "YES": "はい",
27
+ "NO": "いいえ",
28
+ "CONTINUE": "続ける",
29
+ "NEXT": "次へ",
30
+ "CLOSE": "閉じる",
31
+ "THANK_YOU": "ありがとうございました",
32
+ "CANCEL": "キャンセル",
33
+ "CONFIRM": "確認",
34
+ "SUBMIT": "提出する",
35
+ "EMAIL": "Eメール",
36
+ "OK": "OK",
37
+ "REMOVE": "削除",
38
+ "TEST": "テスト",
39
+ "MAYBE": "可能性あり",
40
+ "BACK": "戻る",
41
+ "SAVE": "保存",
42
+ "SAVING": "保存中",
43
+ "DELETE": "削除",
44
+ "SELECT": "選択",
45
+ "SEND": "送信",
46
+ "N\/A": "該当なし",
47
+ "EDIT": "編集",
48
+ "SKIP": "スキップ",
49
+ "SEARCH": "検索",
50
+ "ROLE": "役割",
51
+ "ALL": "すべて",
52
+ "OR_DIVIDER": "または",
53
+ "ADD": "追加",
54
+ "NO_RESULTS": "結果がありません",
55
+ "MAX": "最大",
56
+ "MIN": "最小",
57
+ "CLEAR": "消去"
58
+ },
59
+ "DIALOG": {
60
+ "CLOSE_LABEL": "ダイアログを閉じる"
61
+ },
62
+ "FIELD": {
63
+ "VIEW_PASSWORD": "パスワードを見る"
64
+ },
65
+ "FILE_UPLOAD": {
66
+ "DRAG_AND_DROP_OR": "ドラッグ・アンド・ドロップまたは",
67
+ "BROWSE": "ブラウズ",
68
+ "YOUR_FILES": "あなたのファイル",
69
+ "MAX_SIZE": "MBの最大ファイルサイズ。",
70
+ "UPLOADING": "アップロード中",
71
+ "SUPPORTED_FILE_TYPES": "対応ファイル形式:",
72
+ "CHANGE": "変更"
73
+ },
74
+ "NAVBAR": {
75
+ "LOG_OUT": "ログアウト"
76
+ }
77
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "SNACKBAR": {
3
+ "DISMISS": "Avvis"
4
+ },
5
+ "AUTOCOMPLETE": {
6
+ "SELECTED_AMOUNT": "Valgt ({{numberSelected}})",
7
+ "SELECTED": "Valgt",
8
+ "SUGGESTED": "Foreslått",
9
+ "ALL_ITEMS": "Alle elementer",
10
+ "NO_RESULTS_FOUND": "Ingen resultater funnet."
11
+ },
12
+ "STEPPER": {
13
+ "FINAL_STEP": "Siste trinn"
14
+ },
15
+ "SLIDER": {
16
+ "MAX_LESS_THAN_MIN": "Maksimumsverdi ({{max}}) kan ikke være mindre enn gjeldende minimumsverdi ({{min}}).",
17
+ "MIN_MORE_THAN_MAX": "Minimumsverdi ({{min}}) kan ikke være større enn gjeldende maksimumsverdi ({{max}})."
18
+ },
19
+ "DATEPICKER": {
20
+ "START_DATE": "Startdato",
21
+ "END_DATE": "Sluttdato"
22
+ },
23
+ "COMMON": {
24
+ "APPLY": "Bruk",
25
+ "VALIDATE": "Validere",
26
+ "YES": "Ja",
27
+ "NO": "Nei",
28
+ "CONTINUE": "Fortsett",
29
+ "NEXT": "Neste",
30
+ "CLOSE": "Lukk",
31
+ "THANK_YOU": "Takk",
32
+ "CANCEL": "Avbryt",
33
+ "CONFIRM": "Bekreft",
34
+ "SUBMIT": "Send inn",
35
+ "EMAIL": "E-post",
36
+ "OK": "OK",
37
+ "REMOVE": "Fjern",
38
+ "TEST": "test",
39
+ "MAYBE": "Kanskje",
40
+ "BACK": "Tilbake",
41
+ "SAVE": "Lagre",
42
+ "SAVING": "Lagrer",
43
+ "DELETE": "Slett",
44
+ "SELECT": "Velg",
45
+ "SEND": "Send",
46
+ "N\/A": "N\/A",
47
+ "EDIT": "Redigere",
48
+ "SKIP": "Hopp over",
49
+ "SEARCH": "Søk",
50
+ "ROLE": "Rolle",
51
+ "ALL": "Alle",
52
+ "OR_DIVIDER": "eller",
53
+ "ADD": "Legg til",
54
+ "NO_RESULTS": "Ingen resultater",
55
+ "MAX": "Maks.",
56
+ "MIN": "Min.",
57
+ "CLEAR": "Tøm"
58
+ },
59
+ "DIALOG": {
60
+ "CLOSE_LABEL": "Lukk dialogboksen"
61
+ },
62
+ "FIELD": {
63
+ "VIEW_PASSWORD": "Vis passord"
64
+ },
65
+ "FILE_UPLOAD": {
66
+ "DRAG_AND_DROP_OR": "Dra og slipp eller",
67
+ "BROWSE": "Bla gjennom",
68
+ "YOUR_FILES": "Filene dine",
69
+ "MAX_SIZE": "Maksimal filstørrelse i MB.",
70
+ "UPLOADING": "Laster opp",
71
+ "SUPPORTED_FILE_TYPES": "Filtyper som støttes:",
72
+ "CHANGE": "Endre"
73
+ },
74
+ "NAVBAR": {
75
+ "LOG_OUT": "Logg ut"
76
+ }
77
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "SNACKBAR": {
3
+ "DISMISS": "Negeren"
4
+ },
5
+ "AUTOCOMPLETE": {
6
+ "SELECTED_AMOUNT": "Geselecteerd ({{numberSelected}})",
7
+ "SELECTED": "Geselecteerd",
8
+ "SUGGESTED": "Aanbevolen",
9
+ "ALL_ITEMS": "Alle artikelen",
10
+ "NO_RESULTS_FOUND": "Geen resultaten gevonden."
11
+ },
12
+ "STEPPER": {
13
+ "FINAL_STEP": "Laatste stap"
14
+ },
15
+ "SLIDER": {
16
+ "MAX_LESS_THAN_MIN": "Max. waarde ({{max}}) kan niet lager zijn dan de huidige min. waarde ({{min}})",
17
+ "MIN_MORE_THAN_MAX": "Min. waarde ({{min}}) kan niet meer zijn dan huidige max. waarde ({{max}})"
18
+ },
19
+ "DATEPICKER": {
20
+ "START_DATE": "Startdatum",
21
+ "END_DATE": "Einddatum"
22
+ },
23
+ "COMMON": {
24
+ "APPLY": "Toepassen",
25
+ "VALIDATE": "Controleren",
26
+ "YES": "Ja",
27
+ "NO": "Nee",
28
+ "CONTINUE": "Ga verder",
29
+ "NEXT": "Volgende",
30
+ "CLOSE": "Sluiten",
31
+ "THANK_YOU": "Hartelijk dank",
32
+ "CANCEL": "Annuleren",
33
+ "CONFIRM": "Bevestig",
34
+ "SUBMIT": "Indienen",
35
+ "EMAIL": "E-mail",
36
+ "OK": "OK",
37
+ "REMOVE": "Verwijder",
38
+ "TEST": "test",
39
+ "MAYBE": "Misschien",
40
+ "BACK": "Terug",
41
+ "SAVE": "Opslaan",
42
+ "SAVING": "Aan het opslaan",
43
+ "DELETE": "Verwijder",
44
+ "SELECT": "Selecteer",
45
+ "SEND": "Sturen",
46
+ "N\/A": "N.V.T.",
47
+ "EDIT": "Bewerken",
48
+ "SKIP": "Overslaan",
49
+ "SEARCH": "Zoeken",
50
+ "ROLE": "Rol",
51
+ "ALL": "Alle",
52
+ "OR_DIVIDER": "of",
53
+ "ADD": "Toevoegen",
54
+ "NO_RESULTS": "Geen resultaten",
55
+ "MAX": "Max",
56
+ "MIN": "Min",
57
+ "CLEAR": "Opschonen"
58
+ },
59
+ "DIALOG": {
60
+ "CLOSE_LABEL": "Dialoog sluiten"
61
+ },
62
+ "FIELD": {
63
+ "VIEW_PASSWORD": "Bekijk wachtwoord"
64
+ },
65
+ "FILE_UPLOAD": {
66
+ "DRAG_AND_DROP_OR": "Slepen en neerzetten of",
67
+ "BROWSE": "Blader door",
68
+ "YOUR_FILES": "Uw bestanden",
69
+ "MAX_SIZE": "MB maximale bestandsgrootte.",
70
+ "UPLOADING": "Uploaden",
71
+ "SUPPORTED_FILE_TYPES": "Ondersteunde bestandstypen:",
72
+ "CHANGE": "Veranderen"
73
+ },
74
+ "NAVBAR": {
75
+ "LOG_OUT": "Uitloggen"
76
+ }
77
+ }