@testgorilla/tgo-ui 2.99.1 → 3.0.1
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/alert-banner/alert-banner.component.d.ts +9 -1
- package/components/autocomplete/autocomplete.component.d.ts +21 -4
- package/components/autocomplete/autocomplete.component.module.d.ts +2 -1
- package/components/avatar/avatar.component.module.d.ts +2 -1
- package/components/button/button.component.d.ts +14 -3
- package/components/button/button.model.d.ts +2 -2
- package/components/card/card.component.d.ts +16 -4
- package/components/checkbox/checkbox.component.d.ts +15 -4
- package/components/checklist/checklist.model.d.ts +1 -0
- package/components/confirm-dialog/confirm-dialog.component.d.ts +11 -2
- package/components/confirm-dialog/confirm-dialog.model.d.ts +8 -0
- package/components/datepicker/{DateAdapter.d.ts → date-adapter.d.ts} +6 -2
- package/components/datepicker/datepicker.component.d.ts +4 -4
- package/components/dialog/dialog.component.d.ts +10 -1
- package/components/dialog/dialog.model.d.ts +12 -0
- package/components/dialog/dialog.service.d.ts +3 -2
- package/components/dropdown/dropdown.component.d.ts +12 -2
- package/components/empty-state/empty-state.component.d.ts +38 -1
- package/components/field/field.component.d.ts +39 -9
- package/components/file-upload/file-upload.component.d.ts +19 -2
- package/components/filter-button/filter-button.component.d.ts +140 -0
- package/components/filter-button/filter-button.component.module.d.ts +18 -0
- package/components/filter-button/filter-button.model.d.ts +13 -0
- package/components/gaussian-chart/gaussian-chart.component.d.ts +75 -0
- package/components/gaussian-chart/gaussian-chart.module.d.ts +13 -0
- package/components/icon/icon.config.d.ts +1 -1
- package/components/logo/logo.component.d.ts +1 -1
- package/components/multi-input/multi-input.component.d.ts +14 -7
- package/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.d.ts +5 -3
- package/components/navbar/navbar.component.d.ts +11 -4
- package/components/page-header/page-header.component.d.ts +1 -1
- package/components/password-criteria/password.component.d.ts +3 -1
- package/components/radio-button/radio-button.component.d.ts +11 -1
- package/components/scale/scale.component.d.ts +1 -0
- package/components/side-panel/side-panel.service.d.ts +2 -2
- package/components/slider/slider.component.d.ts +19 -8
- package/components/slider/slider.component.module.d.ts +1 -8
- package/components/spider-chart/spider-chart.component.d.ts +2 -0
- package/components/spider-chart/spider-chart.module.d.ts +3 -2
- package/components/spinner/spinner.component.d.ts +7 -1
- package/components/step/step.component.d.ts +12 -4
- package/components/stepper/stepper.component.d.ts +11 -3
- package/components/table/table.component.d.ts +30 -7
- package/components/table/table.component.module.d.ts +1 -1
- package/components/table/table.model.d.ts +13 -4
- package/components/tabs/tab.directive.d.ts +2 -1
- package/components/tabs/tabs.component.d.ts +3 -0
- package/components/tabs/tabs.component.module.d.ts +2 -1
- package/components/tabs/tabs.model.d.ts +2 -0
- package/components/universal-skills-report/universal-skills-report.component.d.ts +7 -7
- package/components/universal-skills-spider-charts/universal-skills-spider-charts.component.d.ts +47 -0
- package/components/universal-skills-spider-charts/universal-skills-spider-charts.component.module.d.ts +16 -0
- package/{components/deprecated-table/directives → directives}/dynamic-component.directive.d.ts +9 -2
- package/esm2022/assets/i18n/da-dk.json +62 -1
- package/esm2022/assets/i18n/de.json +62 -1
- package/esm2022/assets/i18n/en.json +664 -10
- package/esm2022/assets/i18n/es.json +62 -1
- package/esm2022/assets/i18n/fr.json +62 -1
- package/esm2022/assets/i18n/it-it.json +62 -1
- package/esm2022/assets/i18n/ja-jp.json +62 -1
- package/esm2022/assets/i18n/nb-no.json +62 -1
- package/esm2022/assets/i18n/nl.json +62 -1
- package/esm2022/assets/i18n/pl-pl.json +62 -1
- package/esm2022/assets/i18n/pt-br.json +62 -1
- package/esm2022/assets/i18n/sv-se.json +62 -1
- package/esm2022/components/accordion/accordion.component.mjs +5 -5
- package/esm2022/components/accordion/accordion.component.module.mjs +4 -4
- package/esm2022/components/alert-banner/alert-banner.component.mjs +15 -5
- package/esm2022/components/alert-banner/alert-banner.component.module.mjs +4 -4
- package/esm2022/components/autocomplete/autocomplete.component.mjs +113 -21
- package/esm2022/components/autocomplete/autocomplete.component.module.mjs +11 -7
- package/esm2022/components/autocomplete/includes.pipe.mjs +3 -3
- package/esm2022/components/autocomplete/prevent-input.directive.mjs +3 -3
- package/esm2022/components/autocomplete/transform-Item.pipe.mjs +3 -3
- package/esm2022/components/avatar/avatar.component.mjs +7 -6
- package/esm2022/components/avatar/avatar.component.module.mjs +7 -6
- package/esm2022/components/badge/badge.component.mjs +4 -4
- package/esm2022/components/badge/badge.component.module.mjs +4 -4
- package/esm2022/components/button/button.component.mjs +44 -20
- package/esm2022/components/button/button.component.module.mjs +4 -4
- package/esm2022/components/button/button.model.mjs +1 -1
- package/esm2022/components/card/card.component.mjs +38 -7
- package/esm2022/components/card/card.component.module.mjs +4 -4
- package/esm2022/components/checkbox/checkbox.component.mjs +35 -11
- package/esm2022/components/checkbox/checkbox.component.module.mjs +4 -4
- package/esm2022/components/checkbox/focus-visible.directive.mjs +3 -3
- package/esm2022/components/checklist/checklist.component.mjs +6 -6
- package/esm2022/components/checklist/checklist.model.mjs +1 -1
- package/esm2022/components/confirm-dialog/confirm-dialog.component.mjs +18 -6
- package/esm2022/components/confirm-dialog/confirm-dialog.component.module.mjs +4 -4
- package/esm2022/components/confirm-dialog/confirm-dialog.model.mjs +1 -1
- package/esm2022/components/datepicker/date-adapter.mjs +39 -0
- package/esm2022/components/datepicker/datepicker.component.mjs +15 -17
- package/esm2022/components/datepicker/datepicker.component.module.mjs +4 -4
- package/esm2022/components/datepicker/datepicker.service.mjs +3 -3
- package/esm2022/components/datepicker/no-date-format.directive.mjs +6 -6
- package/esm2022/components/deprecated-paginator/deprecated-paginator.component.mjs +3 -3
- package/esm2022/components/deprecated-paginator/deprecated-paginator.component.module.mjs +4 -4
- package/esm2022/components/dialog/dialog.component.mjs +21 -8
- package/esm2022/components/dialog/dialog.component.module.mjs +4 -4
- package/esm2022/components/dialog/dialog.model.mjs +2 -0
- package/esm2022/components/dialog/dialog.service.mjs +6 -5
- package/esm2022/components/divider/divider.component.mjs +3 -3
- package/esm2022/components/divider/divider.component.module.mjs +4 -4
- package/esm2022/components/dropdown/dropdown.component.mjs +28 -9
- package/esm2022/components/dropdown/dropdown.component.module.mjs +4 -4
- package/esm2022/components/elevation-shadow/elevation-shadow.component.mjs +3 -3
- package/esm2022/components/elevation-shadow/elevation-shadow.component.module.mjs +4 -4
- package/esm2022/components/empty-state/empty-state.component.mjs +53 -5
- package/esm2022/components/empty-state/empty-state.component.module.mjs +4 -4
- package/esm2022/components/field/field.component.mjs +53 -29
- package/esm2022/components/field/field.component.module.mjs +4 -4
- package/esm2022/components/file-upload/file-upload.component.mjs +46 -32
- package/esm2022/components/file-upload/file-upload.component.module.mjs +4 -4
- package/esm2022/components/filter-button/filter-button.component.mjs +255 -0
- package/esm2022/components/filter-button/filter-button.component.module.mjs +58 -0
- package/esm2022/components/filter-button/filter-button.model.mjs +2 -0
- package/esm2022/components/gaussian-chart/gaussian-chart.component.mjs +246 -0
- package/esm2022/components/gaussian-chart/gaussian-chart.module.mjs +42 -0
- package/esm2022/components/icon/icon.component.mjs +5 -5
- package/esm2022/components/icon/icon.component.module.mjs +4 -4
- package/esm2022/components/icon/icon.config.mjs +27 -1
- package/esm2022/components/icon-label/icon-label.component.mjs +3 -3
- package/esm2022/components/icon-label/icon-label.component.module.mjs +4 -4
- package/esm2022/components/logo/logo.component.mjs +4 -4
- package/esm2022/components/logo/logo.component.module.mjs +4 -4
- package/esm2022/components/media-card/media-card.component.mjs +5 -5
- package/esm2022/components/multi-input/multi-input.component.mjs +37 -24
- package/esm2022/components/multi-input/multi-input.component.module.mjs +4 -4
- package/esm2022/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.mjs +13 -9
- package/esm2022/components/navbar/navbar.component.mjs +17 -14
- package/esm2022/components/navbar/navbar.component.module.mjs +4 -4
- package/esm2022/components/overflow-menu/overflow-menu.component.mjs +4 -4
- package/esm2022/components/overflow-menu/overflow-menu.component.module.mjs +4 -4
- package/esm2022/components/page-header/page-header.component.mjs +5 -5
- package/esm2022/components/page-header/page-header.component.module.mjs +4 -4
- package/esm2022/components/paginator/paginator.component.mjs +3 -3
- package/esm2022/components/paginator/paginator.component.module.mjs +4 -4
- package/esm2022/components/password-criteria/password.component.mjs +13 -7
- package/esm2022/components/password-criteria/password.component.module.mjs +4 -4
- package/esm2022/components/password-strength/password-strength.component.mjs +3 -3
- package/esm2022/components/password-strength/password-strength.component.module.mjs +4 -4
- package/esm2022/components/phone-input/join-strings.pipe.mjs +3 -3
- package/esm2022/components/phone-input/phone-input.component.mjs +4 -4
- package/esm2022/components/phone-input/phone-input.component.module.mjs +4 -4
- package/esm2022/components/progress-bar/progress-bar.component.mjs +4 -4
- package/esm2022/components/progress-bar/progress-bar.component.module.mjs +4 -4
- package/esm2022/components/radial-progress/radial-progress.component.mjs +3 -3
- package/esm2022/components/radial-progress/radial-progress.component.module.mjs +4 -4
- package/esm2022/components/radio-button/radio-button.component.mjs +19 -5
- package/esm2022/components/radio-button/radio-button.component.module.mjs +4 -4
- package/esm2022/components/rating/half-star.pipe.mjs +3 -3
- package/esm2022/components/rating/rating.component.mjs +3 -3
- package/esm2022/components/rating/rating.component.module.mjs +4 -4
- package/esm2022/components/scale/scale.component.mjs +18 -6
- package/esm2022/components/scale/scale.component.module.mjs +4 -4
- package/esm2022/components/segmented-bar/segmented-bar.component.mjs +3 -3
- package/esm2022/components/segmented-bar/segmented-bar.component.module.mjs +4 -4
- package/esm2022/components/segmented-button/segmented-button.component.mjs +6 -6
- package/esm2022/components/segmented-button/segmented-button.component.module.mjs +4 -4
- package/esm2022/components/side-panel/side-panel.component.mjs +6 -6
- package/esm2022/components/side-panel/side-panel.service.mjs +9 -8
- package/esm2022/components/side-sheet/side-sheet.component.mjs +3 -3
- package/esm2022/components/side-sheet/side-sheet.component.module.mjs +4 -4
- package/esm2022/components/side-sheet/side-sheet.service.mjs +3 -3
- package/esm2022/components/skeleton/skeleton.component.mjs +3 -3
- package/esm2022/components/slider/slider.component.mjs +70 -12
- package/esm2022/components/slider/slider.component.module.mjs +6 -33
- package/esm2022/components/slider/slider.model.mjs +1 -1
- package/esm2022/components/snackbar/snackbar.component.mjs +4 -4
- package/esm2022/components/snackbar/snackbar.component.module.mjs +4 -4
- package/esm2022/components/snackbar/snackbar.service.mjs +3 -3
- package/esm2022/components/spider-chart/spider-chart.component.mjs +25 -7
- package/esm2022/components/spider-chart/spider-chart.module.mjs +8 -5
- package/esm2022/components/spinner/spinner.component.mjs +15 -6
- package/esm2022/components/spinner/spinner.module.mjs +4 -4
- package/esm2022/components/step/step.component.mjs +52 -12
- package/esm2022/components/step/step.component.module.mjs +4 -4
- package/esm2022/components/stepper/stepper.component.mjs +52 -18
- package/esm2022/components/stepper/stepper.component.module.mjs +4 -4
- package/esm2022/components/table/sentence-case.pipe.mjs +3 -3
- package/esm2022/components/table/table.component.mjs +104 -57
- package/esm2022/components/table/table.component.module.mjs +6 -6
- package/esm2022/components/table/table.model.mjs +13 -1
- package/esm2022/components/tabs/tab.directive.mjs +7 -4
- package/esm2022/components/tabs/tabs.component.mjs +38 -9
- package/esm2022/components/tabs/tabs.component.module.mjs +7 -6
- package/esm2022/components/tabs/tabs.model.mjs +1 -1
- package/esm2022/components/tag/tag.component.mjs +3 -3
- package/esm2022/components/tag/tag.component.module.mjs +4 -4
- package/esm2022/components/toggle/toggle.component.mjs +4 -4
- package/esm2022/components/toggle/toggle.component.module.mjs +4 -4
- package/esm2022/components/tooltip/tooltip-template.directive.mjs +14 -12
- package/esm2022/components/tooltip/tooltip.component.mjs +3 -3
- package/esm2022/components/tooltip/tooltip.component.module.mjs +4 -4
- package/esm2022/components/universal-skills-report/universal-skills-report.component.mjs +29 -64
- package/esm2022/components/universal-skills-report/universal-skills-report.component.module.mjs +4 -4
- package/esm2022/components/universal-skills-spider-charts/universal-skills-spider-charts.component.mjs +109 -0
- package/esm2022/components/universal-skills-spider-charts/universal-skills-spider-charts.component.module.mjs +52 -0
- package/esm2022/components/validation-error/validation-error.component.mjs +3 -3
- package/esm2022/components/validation-error/validation-error.module.mjs +4 -4
- package/esm2022/directives/digits-only.directive.mjs +3 -3
- package/esm2022/directives/drag-drop.directive.mjs +3 -3
- package/esm2022/directives/dynamic-component.directive.mjs +40 -0
- package/esm2022/directives/ellipse-text.directive.mjs +3 -3
- package/esm2022/directives/select-text.directive.mjs +3 -3
- package/esm2022/directives/step-line-element.directive.mjs +3 -3
- package/esm2022/models/universal-skills-report.model.mjs +33 -0
- package/esm2022/pipes/data-property-getter.mjs +3 -3
- package/esm2022/pipes/has-validation-error.pipe.mjs +3 -3
- package/esm2022/pipes/memoize-func.pipe.mjs +3 -3
- package/esm2022/pipes/name-initials.pipe.mjs +3 -3
- package/esm2022/pipes/ui-ordinal-suffix.pipe.mjs +3 -3
- package/esm2022/pipes/ui-translate.pipe.mjs +3 -3
- package/esm2022/public-api.mjs +17 -6
- package/esm2022/services/icons.service.mjs +3 -3
- package/esm2022/services/universal-skills.service.mjs +85 -0
- package/esm2022/utils/autocomplete-utils.mjs +15 -3
- package/esm2022/utils/localization/language.service.mjs +3 -3
- package/fesm2022/testgorilla-tgo-ui.mjs +3878 -1246
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/models/universal-skills-report.model.d.ts +44 -0
- package/package.json +17 -15
- package/projects/tgo-canopy-ui/assets/i18n/da-dk.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/de.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/en.json +665 -10
- package/projects/tgo-canopy-ui/assets/i18n/es.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/fr.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/it-it.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/ja-jp.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/nb-no.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/nl.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/pl-pl.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/pt-br.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/sv-se.json +62 -1
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Analytics-filled.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Analytics-in-line.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Failed-to-load-filled.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Failed-to-load-in-line.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/History-filled.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/History-in-line.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Star-filled.svg +5 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Star-in-line.svg +5 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Tag-filled.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Tag-in-line.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/TestGorilla-Pink-filled.svg +11 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/TestGorilla-Pink-in-line.svg +11 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Verified-badge-filled.svg +23 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Verified-badge-in-line.svg +23 -0
- package/projects/tgo-canopy-ui/theme/_input.scss +1 -0
- package/projects/tgo-canopy-ui/theme/_palette.scss +9 -9
- package/projects/tgo-canopy-ui/theme/_tooltip.scss +12 -8
- package/projects/tgo-canopy-ui/theme/_typography.scss +4 -0
- package/projects/tgo-canopy-ui/theme/_variables.scss +3 -3
- package/public-api.d.ts +11 -4
- package/services/universal-skills.service.d.ts +13 -0
- package/utils/autocomplete-utils.d.ts +2 -2
- package/components/deprecated-table/deprecated-table.component.d.ts +0 -91
- package/components/deprecated-table/deprecated-table.component.module.d.ts +0 -14
- package/components/deprecated-table/deprecated-table.model.d.ts +0 -45
- package/components/universal-skills-report/universal-skills-report.model.d.ts +0 -33
- package/esm2022/components/datepicker/DateAdapter.mjs +0 -30
- package/esm2022/components/deprecated-table/deprecated-table.component.mjs +0 -158
- package/esm2022/components/deprecated-table/deprecated-table.component.module.mjs +0 -43
- package/esm2022/components/deprecated-table/deprecated-table.model.mjs +0 -13
- package/esm2022/components/deprecated-table/directives/dynamic-component.directive.mjs +0 -40
- package/esm2022/components/universal-skills-report/universal-skills-report.model.mjs +0 -19
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
"CLEAR": "Borrar",
|
|
59
59
|
"PHONE_NUMBER": "Número de teléfono",
|
|
60
60
|
"ON": "Encendido",
|
|
61
|
-
"OFF": "Apagado"
|
|
61
|
+
"OFF": "Apagado",
|
|
62
|
+
"LOADING": "Cargando…",
|
|
63
|
+
"PROGRESS": "Progreso: {{progress}}"
|
|
62
64
|
},
|
|
63
65
|
"DIALOG": {
|
|
64
66
|
"CLOSE_LABEL": "Cerrar diálogo",
|
|
@@ -116,5 +118,64 @@
|
|
|
116
118
|
"WARNING": "Advertencia:",
|
|
117
119
|
"ERROR": "Error:",
|
|
118
120
|
"SUCCESS": "Éxito:"
|
|
121
|
+
},
|
|
122
|
+
"CHARTS": {
|
|
123
|
+
"SPIDER": {
|
|
124
|
+
"DATASET_HIDDEN": "{{dataset}} oculto. Presiona enter para mostrar",
|
|
125
|
+
"DATASET_VISIBLE": "{{dataset}} visible. Presiona enter para ocultar"
|
|
126
|
+
},
|
|
127
|
+
"GAUSSIAN_CHART": {
|
|
128
|
+
"PERCENTAGE_BUCKETS_GRAPH": {
|
|
129
|
+
"LOWEST": "Muy por debajo del",
|
|
130
|
+
"LOWER": "Por debajo del",
|
|
131
|
+
"AVERAGE": "Promedio",
|
|
132
|
+
"HIGHER": "Por encima del",
|
|
133
|
+
"HIGHEST": "Muy por encima del",
|
|
134
|
+
"LOWEST_TOOLTIP": "1 - 19 percentil\nIndica una necesidad de mejora significativa.",
|
|
135
|
+
"LOWER_TOOLTIP": "20 - 39 percentil\nIndica una comprensión básica pero por debajo del promedio.",
|
|
136
|
+
"AVERAGE_TOOLTIP": "40 - 59 percentil\nIndica niveles de habilidades típicos o promedio.",
|
|
137
|
+
"HIGHER_TOOLTIP": "Percentil 60 - 79\nIndica niveles de comprensión y habilidades más elevados.",
|
|
138
|
+
"HIGHEST_TOOLTIP": "Percentil 80 - 99\nIndica niveles de habilidades excepcionales."
|
|
139
|
+
},
|
|
140
|
+
"CANDIDATE_SCORE": "Puntaje del candidato",
|
|
141
|
+
"HIGHEST_SCORE": "Puntaje más alto en tu evaluación",
|
|
142
|
+
"ARIA_LABEL": "Puntaje del candidato: {{score}} percentil, que entra en la categoría {{activeBucket}}. El puntaje más alta del candidato en la evaluación es el {{bestCandidateScore}} percentil, que entra en la categoría {{activeBucketBestScore}}."
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"TAG": {
|
|
146
|
+
"REMOVE": "Eliminar etiqueta"
|
|
147
|
+
},
|
|
148
|
+
"UNIVERSAL_SKILLS_REPORT": {
|
|
149
|
+
"PERCENTILE": "percentil",
|
|
150
|
+
"SKILL_AREA_GROUP_TYPES": {
|
|
151
|
+
"FOCUSING_ON_OBJECTIVES": {
|
|
152
|
+
"TITLE": "Enfocarse en los objetivos",
|
|
153
|
+
"DESCRIPTION": "El conjunto de habilidades Centrarse en los objetivos evalúa la capacidad de una persona para alcanzar objetivos."
|
|
154
|
+
},
|
|
155
|
+
"WORKING_WITH_PEOPLE": {
|
|
156
|
+
"TITLE": "Trabajo con personas",
|
|
157
|
+
"DESCRIPTION": "El conjunto de habilidades Trabajo con personas evalúa la capacidad de una persona para fomentar las conexiones interpersonales y colaboraciones."
|
|
158
|
+
},
|
|
159
|
+
"MANAGING_ONES_SELF": {
|
|
160
|
+
"TITLE": "Autogestión",
|
|
161
|
+
"DESCRIPTION": "El grupo de habilidades de Autogestión evalúa la capacidad de un individuo para utilizar sus recursos internos para adaptarse, superarse, aprender y explorar nuevas posibilidades."
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"PERCENTILE_SUFFIXES": {
|
|
166
|
+
"ST": "º",
|
|
167
|
+
"ND": "º",
|
|
168
|
+
"RD": "º",
|
|
169
|
+
"TH": "º"
|
|
170
|
+
},
|
|
171
|
+
"PERCENTILE_LABEL_TYPES": {
|
|
172
|
+
"WELL_BELOW_AVERAGE": "Muy por debajo de la media",
|
|
173
|
+
"BELLOW_AVERAGE": "Por debajo de la media",
|
|
174
|
+
"AVERAGE": "Promedio",
|
|
175
|
+
"ABOVE_AVERAGE": "Por encima del promedio",
|
|
176
|
+
"WELL_ABOVE_AVERAGE": "Muy por encima del promedio"
|
|
177
|
+
},
|
|
178
|
+
"TOOLTIP": {
|
|
179
|
+
"DETAILS": "Detalles"
|
|
119
180
|
}
|
|
120
181
|
}
|
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
"CLEAR": "Effacer",
|
|
59
59
|
"PHONE_NUMBER": "Numéro de téléphone",
|
|
60
60
|
"ON": "On",
|
|
61
|
-
"OFF": "Off"
|
|
61
|
+
"OFF": "Off",
|
|
62
|
+
"LOADING": "Chargement...",
|
|
63
|
+
"PROGRESS": "Progrès : {{progress}}"
|
|
62
64
|
},
|
|
63
65
|
"DIALOG": {
|
|
64
66
|
"CLOSE_LABEL": "Fermer le dialogue",
|
|
@@ -116,5 +118,64 @@
|
|
|
116
118
|
"WARNING": "Avertissement :",
|
|
117
119
|
"ERROR": "Erreur :",
|
|
118
120
|
"SUCCESS": "Réussite :"
|
|
121
|
+
},
|
|
122
|
+
"CHARTS": {
|
|
123
|
+
"SPIDER": {
|
|
124
|
+
"DATASET_HIDDEN": "{{dataset}} caché. Appuyer sur la touche Entrée pour afficher",
|
|
125
|
+
"DATASET_VISIBLE": "{{dataset}} visible. Appuyez sur la touche Entrée pour masquer"
|
|
126
|
+
},
|
|
127
|
+
"GAUSSIAN_CHART": {
|
|
128
|
+
"PERCENTAGE_BUCKETS_GRAPH": {
|
|
129
|
+
"LOWEST": "Bien en dessous",
|
|
130
|
+
"LOWER": "En dessous",
|
|
131
|
+
"AVERAGE": "Moyenne",
|
|
132
|
+
"HIGHER": "Au-dessus",
|
|
133
|
+
"HIGHEST": "Bien au-dessus",
|
|
134
|
+
"LOWEST_TOOLTIP": "1 - 19 percentile\nIndique la nécessité d'une amélioration significative.",
|
|
135
|
+
"LOWER_TOOLTIP": "20 - 39 percentile\nIndique une compréhension de base mais inférieure à la moyenne.",
|
|
136
|
+
"AVERAGE_TOOLTIP": "40 - 59 percentile\nIndique des niveaux de compétences typiques ou moyens.",
|
|
137
|
+
"HIGHER_TOOLTIP": "60 - 79 percentile\nIndique une meilleure compréhension et des niveaux de compétence plus élevés.",
|
|
138
|
+
"HIGHEST_TOOLTIP": "80 - 99 percentile\nIndique des niveaux de compétences exceptionnels."
|
|
139
|
+
},
|
|
140
|
+
"CANDIDATE_SCORE": "Score du candidat",
|
|
141
|
+
"HIGHEST_SCORE": "Meilleur score de votre évaluation",
|
|
142
|
+
"ARIA_LABEL": "Le score du candidat : {{score}} percentile, tombe dans la catégorie {{activeBucket}}. Le score le plus élevé du candidat dans l'évaluation est {{bestCandidateScore}} percentile, ce qui correspond à la catégorie {{activeBucketBestScore}}."
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"TAG": {
|
|
146
|
+
"REMOVE": "Supprimer l'étiquette"
|
|
147
|
+
},
|
|
148
|
+
"UNIVERSAL_SKILLS_REPORT": {
|
|
149
|
+
"PERCENTILE": "percentile",
|
|
150
|
+
"SKILL_AREA_GROUP_TYPES": {
|
|
151
|
+
"FOCUSING_ON_OBJECTIVES": {
|
|
152
|
+
"TITLE": "Se concentrer sur des objectifs",
|
|
153
|
+
"DESCRIPTION": "Le groupe de compétences \"Se concentrer sur des objectifs\" évalue la capacité d'un individu à atteindre des objectifs."
|
|
154
|
+
},
|
|
155
|
+
"WORKING_WITH_PEOPLE": {
|
|
156
|
+
"TITLE": "Travailler avec les autres",
|
|
157
|
+
"DESCRIPTION": "Le groupe de compétences \"Travailler avec les autres\" évalue la capacité d'un individu à favoriser les relations interpersonnelles et les collaborations."
|
|
158
|
+
},
|
|
159
|
+
"MANAGING_ONES_SELF": {
|
|
160
|
+
"TITLE": "Gestion de soi",
|
|
161
|
+
"DESCRIPTION": "Le groupe de compétences \"Gestion de soi\" évalue la capacité d'un individu à utiliser ses ressources intérieures pour s'adapter, surmonter, apprendre et explorer de nouvelles possibilités."
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"PERCENTILE_SUFFIXES": {
|
|
166
|
+
"ST": "er",
|
|
167
|
+
"ND": "e",
|
|
168
|
+
"RD": "e",
|
|
169
|
+
"TH": "e"
|
|
170
|
+
},
|
|
171
|
+
"PERCENTILE_LABEL_TYPES": {
|
|
172
|
+
"WELL_BELOW_AVERAGE": "Bien en dessous de la moyenne",
|
|
173
|
+
"BELLOW_AVERAGE": "En dessous de la moyenne",
|
|
174
|
+
"AVERAGE": "Moyenne",
|
|
175
|
+
"ABOVE_AVERAGE": "Au dessus de la moyenne",
|
|
176
|
+
"WELL_ABOVE_AVERAGE": "Bien au-dessus de la moyenne"
|
|
177
|
+
},
|
|
178
|
+
"TOOLTIP": {
|
|
179
|
+
"DETAILS": "Détails"
|
|
119
180
|
}
|
|
120
181
|
}
|
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
"CLEAR": "Cancella",
|
|
59
59
|
"PHONE_NUMBER": "Numero di telefono",
|
|
60
60
|
"ON": "On",
|
|
61
|
-
"OFF": "Off"
|
|
61
|
+
"OFF": "Off",
|
|
62
|
+
"LOADING": "Caricamento in corso...",
|
|
63
|
+
"PROGRESS": "Progressi: {{progress}}"
|
|
62
64
|
},
|
|
63
65
|
"DIALOG": {
|
|
64
66
|
"CLOSE_LABEL": "Chiudi la finestra di dialogo",
|
|
@@ -116,5 +118,64 @@
|
|
|
116
118
|
"WARNING": "Attenzione:",
|
|
117
119
|
"ERROR": "Errore:",
|
|
118
120
|
"SUCCESS": "Operazione riuscita:"
|
|
121
|
+
},
|
|
122
|
+
"CHARTS": {
|
|
123
|
+
"SPIDER": {
|
|
124
|
+
"DATASET_HIDDEN": "{{dataset}} nascosto. Premere invio per mostrarlo",
|
|
125
|
+
"DATASET_VISIBLE": "{{dataset}} visibile. Premere invio per nasconderlo"
|
|
126
|
+
},
|
|
127
|
+
"GAUSSIAN_CHART": {
|
|
128
|
+
"PERCENTAGE_BUCKETS_GRAPH": {
|
|
129
|
+
"LOWEST": "Molto sotto",
|
|
130
|
+
"LOWER": "Sotto",
|
|
131
|
+
"AVERAGE": "Media",
|
|
132
|
+
"HIGHER": "Sopra",
|
|
133
|
+
"HIGHEST": "Molto sopra",
|
|
134
|
+
"LOWEST_TOOLTIP": "1-19 percentile\nIndica la necessità di un miglioramento significativo.",
|
|
135
|
+
"LOWER_TOOLTIP": "20-39 percentile\nIndica una comprensione di base ma inferiore alla media.",
|
|
136
|
+
"AVERAGE_TOOLTIP": "40-59 percentile\nIndica una competenza tipica o media.",
|
|
137
|
+
"HIGHER_TOOLTIP": "60-79 percentile\nIndica comprensione e capacità molto buone.",
|
|
138
|
+
"HIGHEST_TOOLTIP": "80-99 percentile\nIndica capacità eccezionali."
|
|
139
|
+
},
|
|
140
|
+
"CANDIDATE_SCORE": "Punteggio del candidato",
|
|
141
|
+
"HIGHEST_SCORE": "Punteggio massimo della valutazione",
|
|
142
|
+
"ARIA_LABEL": "Punteggio del candidato: {{score}} percentile; che rientra nella categoria {{activeBucket}}.\nIl punteggio più alto ottenuto da un candidato nella valutazione è: {{bestCandidateScore}} percentile; che rientra nella categoria {{activeBucketBestScore}}."
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"TAG": {
|
|
146
|
+
"REMOVE": "Rimuovi il tag"
|
|
147
|
+
},
|
|
148
|
+
"UNIVERSAL_SKILLS_REPORT": {
|
|
149
|
+
"PERCENTILE": "percentile",
|
|
150
|
+
"SKILL_AREA_GROUP_TYPES": {
|
|
151
|
+
"FOCUSING_ON_OBJECTIVES": {
|
|
152
|
+
"TITLE": "Concentrarsi sugli obiettivi",
|
|
153
|
+
"DESCRIPTION": "Il gruppo di competenze concentrarsi sugli obiettivi, valuta la capacità di un individuo di raggiungere gli obiettivi."
|
|
154
|
+
},
|
|
155
|
+
"WORKING_WITH_PEOPLE": {
|
|
156
|
+
"TITLE": "Lavorare con le persone",
|
|
157
|
+
"DESCRIPTION": "Il gruppo di competenze lavorare con le persone, valuta la capacità di un individuo di promuovere connessioni e collaborazioni interpersonali."
|
|
158
|
+
},
|
|
159
|
+
"MANAGING_ONES_SELF": {
|
|
160
|
+
"TITLE": "Gestire se stessi",
|
|
161
|
+
"DESCRIPTION": "Il gruppo di abilità gestire se stessi, valuta la capacità di un individuo di usare le proprie risorse interiori per adattarsi, superare le difficoltà, imparare ed esplorare nuove possibilità."
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"PERCENTILE_SUFFIXES": {
|
|
166
|
+
"ST": "º",
|
|
167
|
+
"ND": "º",
|
|
168
|
+
"RD": "º",
|
|
169
|
+
"TH": "º"
|
|
170
|
+
},
|
|
171
|
+
"PERCENTILE_LABEL_TYPES": {
|
|
172
|
+
"WELL_BELOW_AVERAGE": "Molto sotto la media",
|
|
173
|
+
"BELLOW_AVERAGE": "Sotto la media",
|
|
174
|
+
"AVERAGE": "Media",
|
|
175
|
+
"ABOVE_AVERAGE": "Sopra la media",
|
|
176
|
+
"WELL_ABOVE_AVERAGE": "Molto sopra la media"
|
|
177
|
+
},
|
|
178
|
+
"TOOLTIP": {
|
|
179
|
+
"DETAILS": "Dettagli"
|
|
119
180
|
}
|
|
120
181
|
}
|
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
"CLEAR": "消去",
|
|
59
59
|
"PHONE_NUMBER": "電話番号",
|
|
60
60
|
"ON": "オン",
|
|
61
|
-
"OFF": "オフ"
|
|
61
|
+
"OFF": "オフ",
|
|
62
|
+
"LOADING": "読み込み中…",
|
|
63
|
+
"PROGRESS": "進歩は{{progress}}"
|
|
62
64
|
},
|
|
63
65
|
"DIALOG": {
|
|
64
66
|
"CLOSE_LABEL": "ダイアログを閉じる",
|
|
@@ -116,5 +118,64 @@
|
|
|
116
118
|
"WARNING": "警告:",
|
|
117
119
|
"ERROR": "エラー:",
|
|
118
120
|
"SUCCESS": "成功:"
|
|
121
|
+
},
|
|
122
|
+
"CHARTS": {
|
|
123
|
+
"SPIDER": {
|
|
124
|
+
"DATASET_HIDDEN": "{{dataset}}非表示。エンターキーを押して表示する",
|
|
125
|
+
"DATASET_VISIBLE": "{{dataset}}表示。エンターキーを押して非表示にする"
|
|
126
|
+
},
|
|
127
|
+
"GAUSSIAN_CHART": {
|
|
128
|
+
"PERCENTAGE_BUCKETS_GRAPH": {
|
|
129
|
+
"LOWEST": "大きく下回る",
|
|
130
|
+
"LOWER": "下回る",
|
|
131
|
+
"AVERAGE": "平均",
|
|
132
|
+
"HIGHER": "上回る",
|
|
133
|
+
"HIGHEST": "大きく上回る",
|
|
134
|
+
"LOWEST_TOOLTIP": "1~19パーセンタイル\n大幅な改善が必要であることを示す。",
|
|
135
|
+
"LOWER_TOOLTIP": "20~39パーセンタイル\n基本的な理解はあるが、平均以下であることを示す。",
|
|
136
|
+
"AVERAGE_TOOLTIP": "40~59パーセンタイル\n典型的または平均的な技能レベルを示す。",
|
|
137
|
+
"HIGHER_TOOLTIP": "60~79パーセンタイル\n理解とスキルのレベルが高いことを示す。",
|
|
138
|
+
"HIGHEST_TOOLTIP": "80~99パーセンタイル\n卓越したスキルレベルを示す。"
|
|
139
|
+
},
|
|
140
|
+
"CANDIDATE_SCORE": "候補者スコア",
|
|
141
|
+
"HIGHEST_SCORE": "アセスメントの最高スコア",
|
|
142
|
+
"ARIA_LABEL": "候補者スコア:{{score}}パーセンタイル、{{activeBucket}} カテゴリに該当。アセスメントにおける候補者の最高得点は{{bestCandidateScore}}パーセンタイルで、{{activeBucketBestScore}}のカテゴリーに入る。"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"TAG": {
|
|
146
|
+
"REMOVE": "タグを削除する"
|
|
147
|
+
},
|
|
148
|
+
"UNIVERSAL_SKILLS_REPORT": {
|
|
149
|
+
"PERCENTILE": "パーセンタイル",
|
|
150
|
+
"SKILL_AREA_GROUP_TYPES": {
|
|
151
|
+
"FOCUSING_ON_OBJECTIVES": {
|
|
152
|
+
"TITLE": "目標に集中する",
|
|
153
|
+
"DESCRIPTION": "「目標に集中する」は、目標達成における個人の能力を評価します。"
|
|
154
|
+
},
|
|
155
|
+
"WORKING_WITH_PEOPLE": {
|
|
156
|
+
"TITLE": "人々と一緒に働く",
|
|
157
|
+
"DESCRIPTION": "スキルクラスタの「人々と一緒に働く」は、対人関係や協力体制を促進する能力を評価します。"
|
|
158
|
+
},
|
|
159
|
+
"MANAGING_ONES_SELF": {
|
|
160
|
+
"TITLE": "自己管理",
|
|
161
|
+
"DESCRIPTION": "スキルクラスタの「自己管理」は、個人の内なる資源を活用して適応し、克服し、学び、新たな可能性を探求する能力を評価します。"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"PERCENTILE_SUFFIXES": {
|
|
166
|
+
"ST": "番目",
|
|
167
|
+
"ND": "番目",
|
|
168
|
+
"RD": "番目",
|
|
169
|
+
"TH": "番目"
|
|
170
|
+
},
|
|
171
|
+
"PERCENTILE_LABEL_TYPES": {
|
|
172
|
+
"WELL_BELOW_AVERAGE": "平均を大きく下回る",
|
|
173
|
+
"BELLOW_AVERAGE": "平均以下",
|
|
174
|
+
"AVERAGE": "平均",
|
|
175
|
+
"ABOVE_AVERAGE": "平均以上",
|
|
176
|
+
"WELL_ABOVE_AVERAGE": "平均を大きく上回る"
|
|
177
|
+
},
|
|
178
|
+
"TOOLTIP": {
|
|
179
|
+
"DETAILS": "詳細"
|
|
119
180
|
}
|
|
120
181
|
}
|
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
"CLEAR": "Tøm",
|
|
59
59
|
"PHONE_NUMBER": "Telefonnummer",
|
|
60
60
|
"ON": "På",
|
|
61
|
-
"OFF": "Av"
|
|
61
|
+
"OFF": "Av",
|
|
62
|
+
"LOADING": "Laster inn …",
|
|
63
|
+
"PROGRESS": "Fremgangen er {{progress}}"
|
|
62
64
|
},
|
|
63
65
|
"DIALOG": {
|
|
64
66
|
"CLOSE_LABEL": "Lukk dialogboksen",
|
|
@@ -116,5 +118,64 @@
|
|
|
116
118
|
"WARNING": "Advarsel:",
|
|
117
119
|
"ERROR": "Feil:",
|
|
118
120
|
"SUCCESS": "Suksess:"
|
|
121
|
+
},
|
|
122
|
+
"CHARTS": {
|
|
123
|
+
"SPIDER": {
|
|
124
|
+
"DATASET_HIDDEN": "{{dataset}} skjult. Trykk enter-tasten for å vise den",
|
|
125
|
+
"DATASET_VISIBLE": "{{dataset}} synlig. Trykk enter-tasten for å skjule den"
|
|
126
|
+
},
|
|
127
|
+
"GAUSSIAN_CHART": {
|
|
128
|
+
"PERCENTAGE_BUCKETS_GRAPH": {
|
|
129
|
+
"LOWEST": "Godt under",
|
|
130
|
+
"LOWER": "Under",
|
|
131
|
+
"AVERAGE": "Gjennomsnitt",
|
|
132
|
+
"HIGHER": "Over",
|
|
133
|
+
"HIGHEST": "Godt over",
|
|
134
|
+
"LOWEST_TOOLTIP": "1-19-persentilen\nIndikerer et behov for betydelig forbedring.",
|
|
135
|
+
"LOWER_TOOLTIP": "20-39-persentilen\nIndikerer grunnleggende forståelse, men er under gjennomsnittet.",
|
|
136
|
+
"AVERAGE_TOOLTIP": "40-59-persentilen\nIndikerer typiske eller gjennomsnittlige ferdighetsnivåer.",
|
|
137
|
+
"HIGHER_TOOLTIP": "60-79-persentilen\nIndikerer en bedre forståelse og ferdighetsnivå.",
|
|
138
|
+
"HIGHEST_TOOLTIP": "80-99-persentilen\nIndikerer eksepsjonelle ferdighetsnivåer."
|
|
139
|
+
},
|
|
140
|
+
"CANDIDATE_SCORE": "Kandidatens score",
|
|
141
|
+
"HIGHEST_SCORE": "Høyeste score i vurderingen din",
|
|
142
|
+
"ARIA_LABEL": "Kandidatens score: {{score}}-persentilen, faller i kategorien {{activeBucket}}. Den høyeste kandidatscoren i evalueringen er {{bestCandidateScore}}-persentilen, som faller i kategorien {{activeBucketBestScore}}."
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"TAG": {
|
|
146
|
+
"REMOVE": "Fjern etiketten"
|
|
147
|
+
},
|
|
148
|
+
"UNIVERSAL_SKILLS_REPORT": {
|
|
149
|
+
"PERCENTILE": "persentil",
|
|
150
|
+
"SKILL_AREA_GROUP_TYPES": {
|
|
151
|
+
"FOCUSING_ON_OBJECTIVES": {
|
|
152
|
+
"TITLE": "Fokus på målsetninger",
|
|
153
|
+
"DESCRIPTION": "Ferdighetsklyngen som fokuserer på mål vurderer en persons evne til å nå mål."
|
|
154
|
+
},
|
|
155
|
+
"WORKING_WITH_PEOPLE": {
|
|
156
|
+
"TITLE": "Arbeid med mennesker",
|
|
157
|
+
"DESCRIPTION": "Ferdighetsklyngen Arbeid med mennesker vurderer en persons evne til å fremme mellommenneskelige forbindelser og samarbeid."
|
|
158
|
+
},
|
|
159
|
+
"MANAGING_ONES_SELF": {
|
|
160
|
+
"TITLE": "Selvstyring",
|
|
161
|
+
"DESCRIPTION": "Ferdighetsklyngen Selvstyring vurderer individets evne til å bruke indre ressurser til å tilpasse seg, overvinne, lære og utforske nye muligheter."
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"PERCENTILE_SUFFIXES": {
|
|
166
|
+
"ST": ".",
|
|
167
|
+
"ND": "og",
|
|
168
|
+
"RD": ".",
|
|
169
|
+
"TH": "."
|
|
170
|
+
},
|
|
171
|
+
"PERCENTILE_LABEL_TYPES": {
|
|
172
|
+
"WELL_BELOW_AVERAGE": "Godt under gjennomsnittet",
|
|
173
|
+
"BELLOW_AVERAGE": "Under gjennomsnittet",
|
|
174
|
+
"AVERAGE": "Gjennomsnitt",
|
|
175
|
+
"ABOVE_AVERAGE": "Over gjennomsnittet",
|
|
176
|
+
"WELL_ABOVE_AVERAGE": "Godt over gjennomsnittet"
|
|
177
|
+
},
|
|
178
|
+
"TOOLTIP": {
|
|
179
|
+
"DETAILS": "Detaljer"
|
|
119
180
|
}
|
|
120
181
|
}
|
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
"CLEAR": "Opschonen",
|
|
59
59
|
"PHONE_NUMBER": "Telefoonnummer",
|
|
60
60
|
"ON": "Op",
|
|
61
|
-
"OFF": "Uit"
|
|
61
|
+
"OFF": "Uit",
|
|
62
|
+
"LOADING": "Laden....",
|
|
63
|
+
"PROGRESS": "Vooruitgang is {{progress}}"
|
|
62
64
|
},
|
|
63
65
|
"DIALOG": {
|
|
64
66
|
"CLOSE_LABEL": "Dialoog sluiten",
|
|
@@ -116,5 +118,64 @@
|
|
|
116
118
|
"WARNING": "Waarschuwing:",
|
|
117
119
|
"ERROR": "Fout:",
|
|
118
120
|
"SUCCESS": "Succes:"
|
|
121
|
+
},
|
|
122
|
+
"CHARTS": {
|
|
123
|
+
"SPIDER": {
|
|
124
|
+
"DATASET_HIDDEN": "{{dataset}} verborgen. Druk op enter om te tonen",
|
|
125
|
+
"DATASET_VISIBLE": "{{dataset}} zichtbaar. Druk op enter om te verbergen"
|
|
126
|
+
},
|
|
127
|
+
"GAUSSIAN_CHART": {
|
|
128
|
+
"PERCENTAGE_BUCKETS_GRAPH": {
|
|
129
|
+
"LOWEST": "Ver onder",
|
|
130
|
+
"LOWER": "Onder",
|
|
131
|
+
"AVERAGE": "Gemiddelde",
|
|
132
|
+
"HIGHER": "Boven",
|
|
133
|
+
"HIGHEST": "Ruim boven",
|
|
134
|
+
"LOWEST_TOOLTIP": "percentiel 1 - 19\nGeeft aan dat aanzienlijke verbetering nodig is.",
|
|
135
|
+
"LOWER_TOOLTIP": "percentiel 20 - 39\nDuidt op basiskennis maar onder het gemiddelde.",
|
|
136
|
+
"AVERAGE_TOOLTIP": "percentiel 40 - 59\nGeeft typische of gemiddelde vaardigheidsniveaus aan.",
|
|
137
|
+
"HIGHER_TOOLTIP": "percentiel 60 - 79\nDuidt op een beter begrip en vaardigheidsniveau.",
|
|
138
|
+
"HIGHEST_TOOLTIP": "percentiel 80 - 99\nGeeft een uitzonderlijk vaardigheidsniveau aan."
|
|
139
|
+
},
|
|
140
|
+
"CANDIDATE_SCORE": "Kandidaat score",
|
|
141
|
+
"HIGHEST_SCORE": "Hoogste score in uw beoordeling",
|
|
142
|
+
"ARIA_LABEL": "Kandidaat score: {{score}} percentiel, valt in de categorie {{activeBucket}}. De hoogste kandidaat score in de beoordeling is {{bestCandidateScore}} percentiel, wat in de categorie {{activeBucketBestScore}} valt."
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"TAG": {
|
|
146
|
+
"REMOVE": "Tag verwijderen"
|
|
147
|
+
},
|
|
148
|
+
"UNIVERSAL_SKILLS_REPORT": {
|
|
149
|
+
"PERCENTILE": "percentiel",
|
|
150
|
+
"SKILL_AREA_GROUP_TYPES": {
|
|
151
|
+
"FOCUSING_ON_OBJECTIVES": {
|
|
152
|
+
"TITLE": "Focussen op doelstellingen",
|
|
153
|
+
"DESCRIPTION": "Het vaardigheidscluster \"Focussen op doelen\" beoordeelt het vermogen van een individu om doelen te bereiken."
|
|
154
|
+
},
|
|
155
|
+
"WORKING_WITH_PEOPLE": {
|
|
156
|
+
"TITLE": "Werken met mensen",
|
|
157
|
+
"DESCRIPTION": "Het vaardigheidscluster \"Werken met mensen\" beoordeelt het vermogen van een individu om interpersoonlijke connecties en samenwerkingen te bevorderen."
|
|
158
|
+
},
|
|
159
|
+
"MANAGING_ONES_SELF": {
|
|
160
|
+
"TITLE": "Zelfmanagement",
|
|
161
|
+
"DESCRIPTION": "Het vaardigheidscluster \"Zelfmanagement\" beoordeelt het vermogen van een individu om innerlijke hulpbronnen te gebruiken om zich aan te passen, te overwinnen, te leren en nieuwe mogelijkheden te verkennen."
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"PERCENTILE_SUFFIXES": {
|
|
166
|
+
"ST": "e",
|
|
167
|
+
"ND": "e",
|
|
168
|
+
"RD": "e",
|
|
169
|
+
"TH": "e"
|
|
170
|
+
},
|
|
171
|
+
"PERCENTILE_LABEL_TYPES": {
|
|
172
|
+
"WELL_BELOW_AVERAGE": "Ver onder het gemiddelde",
|
|
173
|
+
"BELLOW_AVERAGE": "Onder het gemiddelde",
|
|
174
|
+
"AVERAGE": "Gemiddelde",
|
|
175
|
+
"ABOVE_AVERAGE": "Bovengemiddeld",
|
|
176
|
+
"WELL_ABOVE_AVERAGE": "Ruim boven het gemiddelde"
|
|
177
|
+
},
|
|
178
|
+
"TOOLTIP": {
|
|
179
|
+
"DETAILS": "Details"
|
|
119
180
|
}
|
|
120
181
|
}
|
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
"CLEAR": "Wyczyść",
|
|
59
59
|
"PHONE_NUMBER": "Numer telefonu",
|
|
60
60
|
"ON": "Wł.",
|
|
61
|
-
"OFF": "Wył."
|
|
61
|
+
"OFF": "Wył.",
|
|
62
|
+
"LOADING": "Ładowanie…",
|
|
63
|
+
"PROGRESS": "Postęp to {{progress}}"
|
|
62
64
|
},
|
|
63
65
|
"DIALOG": {
|
|
64
66
|
"CLOSE_LABEL": "Zamknij okno dialogowe",
|
|
@@ -116,5 +118,64 @@
|
|
|
116
118
|
"WARNING": "Ostrzeżenie:",
|
|
117
119
|
"ERROR": "Błąd:",
|
|
118
120
|
"SUCCESS": "Sukces:"
|
|
121
|
+
},
|
|
122
|
+
"CHARTS": {
|
|
123
|
+
"SPIDER": {
|
|
124
|
+
"DATASET_HIDDEN": "{{dataset}} ukryty. Naciśnij enter, aby wyświetlić",
|
|
125
|
+
"DATASET_VISIBLE": "{{dataset}} widoczny. Naciśnij enter, aby ukryć"
|
|
126
|
+
},
|
|
127
|
+
"GAUSSIAN_CHART": {
|
|
128
|
+
"PERCENTAGE_BUCKETS_GRAPH": {
|
|
129
|
+
"LOWEST": "Znacznie poniżej",
|
|
130
|
+
"LOWER": "Poniżej",
|
|
131
|
+
"AVERAGE": "Średnia",
|
|
132
|
+
"HIGHER": "Powyżej",
|
|
133
|
+
"HIGHEST": "Znacznie powyżej",
|
|
134
|
+
"LOWEST_TOOLTIP": "1 - 19 percentyl\nOznacza potrzebę znacznej poprawy.",
|
|
135
|
+
"LOWER_TOOLTIP": "20 - 39 percentyl\nOznacza podstawowe zrozumienie zagadnienia, ale poniżej średniej.",
|
|
136
|
+
"AVERAGE_TOOLTIP": "40 - 59 percentyl\nOznacza typowy lub średni poziom umiejętności.",
|
|
137
|
+
"HIGHER_TOOLTIP": "60 - 79 percentyl\nOznacza wyższy poziom umiejętności i zrozumienia zagadnienia.",
|
|
138
|
+
"HIGHEST_TOOLTIP": "80 - 99 percentyl\nOznacza wybitny poziom umiejętności."
|
|
139
|
+
},
|
|
140
|
+
"CANDIDATE_SCORE": "Wynik kandydata",
|
|
141
|
+
"HIGHEST_SCORE": "Najwyższy wynik w ocenie",
|
|
142
|
+
"ARIA_LABEL": "Wynik kandydata: {{score}} percentyl, zalicza się do kategorii {{activeBucket}}. Najwyższy wynik kandydata w ocenie to {{bestCandidateScore}} percentyl, który zalicza się do kategorii {{activeBucketBestScore}}."
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"TAG": {
|
|
146
|
+
"REMOVE": "Usuń tag"
|
|
147
|
+
},
|
|
148
|
+
"UNIVERSAL_SKILLS_REPORT": {
|
|
149
|
+
"PERCENTILE": "percentyl",
|
|
150
|
+
"SKILL_AREA_GROUP_TYPES": {
|
|
151
|
+
"FOCUSING_ON_OBJECTIVES": {
|
|
152
|
+
"TITLE": "Koncentracja na celach",
|
|
153
|
+
"DESCRIPTION": "Klaster umiejętności Koncentracja na celach ocenia zdolność danej osoby do osiągania celów."
|
|
154
|
+
},
|
|
155
|
+
"WORKING_WITH_PEOPLE": {
|
|
156
|
+
"TITLE": "Praca z ludźmi",
|
|
157
|
+
"DESCRIPTION": "Klaster umiejętności Praca z ludźmi ocenia zdolność danej osoby do rozwijania kontaktów interpersonalnych i współpracy z innymi."
|
|
158
|
+
},
|
|
159
|
+
"MANAGING_ONES_SELF": {
|
|
160
|
+
"TITLE": "Zarządzanie sobą",
|
|
161
|
+
"DESCRIPTION": "Klaster umiejętności Zarządzanie sobą ocenia zdolność danej osoby do wykorzystywania wewnętrznych zasobów do adaptacji, przezwyciężania, uczenia się i odkrywania nowych możliwości."
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"PERCENTILE_SUFFIXES": {
|
|
166
|
+
"ST": ".",
|
|
167
|
+
"ND": ".",
|
|
168
|
+
"RD": ".",
|
|
169
|
+
"TH": "."
|
|
170
|
+
},
|
|
171
|
+
"PERCENTILE_LABEL_TYPES": {
|
|
172
|
+
"WELL_BELOW_AVERAGE": "Znacznie poniżej średniej",
|
|
173
|
+
"BELLOW_AVERAGE": "Poniżej średniej",
|
|
174
|
+
"AVERAGE": "Średnia",
|
|
175
|
+
"ABOVE_AVERAGE": "Powyżej średniej",
|
|
176
|
+
"WELL_ABOVE_AVERAGE": "Znacznie powyżej średniej"
|
|
177
|
+
},
|
|
178
|
+
"TOOLTIP": {
|
|
179
|
+
"DETAILS": "Szczegóły"
|
|
119
180
|
}
|
|
120
181
|
}
|
|
@@ -58,7 +58,9 @@
|
|
|
58
58
|
"CLEAR": "Limpar",
|
|
59
59
|
"PHONE_NUMBER": "Telefone",
|
|
60
60
|
"ON": "Ativado",
|
|
61
|
-
"OFF": "Desativado"
|
|
61
|
+
"OFF": "Desativado",
|
|
62
|
+
"LOADING": "Carregando...",
|
|
63
|
+
"PROGRESS": "O progresso é {{progress}}"
|
|
62
64
|
},
|
|
63
65
|
"DIALOG": {
|
|
64
66
|
"CLOSE_LABEL": "Fechar diálogo",
|
|
@@ -116,5 +118,64 @@
|
|
|
116
118
|
"WARNING": "Aviso:",
|
|
117
119
|
"ERROR": "Erro:",
|
|
118
120
|
"SUCCESS": "Sucesso:"
|
|
121
|
+
},
|
|
122
|
+
"CHARTS": {
|
|
123
|
+
"SPIDER": {
|
|
124
|
+
"DATASET_HIDDEN": "{{dataset}} oculto. Pressione enter para mostrar",
|
|
125
|
+
"DATASET_VISIBLE": "{{dataset}} visível. Pressione enter para ocultar"
|
|
126
|
+
},
|
|
127
|
+
"GAUSSIAN_CHART": {
|
|
128
|
+
"PERCENTAGE_BUCKETS_GRAPH": {
|
|
129
|
+
"LOWEST": "Bem abaixo",
|
|
130
|
+
"LOWER": "Abaixo",
|
|
131
|
+
"AVERAGE": "Média",
|
|
132
|
+
"HIGHER": "Acima",
|
|
133
|
+
"HIGHEST": "Bem acima",
|
|
134
|
+
"LOWEST_TOOLTIP": "Percentil 1 - 19\nIndica a necessidade de melhoria significativa.",
|
|
135
|
+
"LOWER_TOOLTIP": "Percentil 20 - 39\nIndica compreensão básica, mas abaixo da média.",
|
|
136
|
+
"AVERAGE_TOOLTIP": "Percentil 40 - 59\nIndica níveis de habilidade típicos ou médios.",
|
|
137
|
+
"HIGHER_TOOLTIP": "Percentil 60 - 79\nIndica níveis mais fortes de compreensão e habilidade.",
|
|
138
|
+
"HIGHEST_TOOLTIP": "Percentil 80 - 99\nIndica níveis de habilidade excepcionais."
|
|
139
|
+
},
|
|
140
|
+
"CANDIDATE_SCORE": "Pontuação do candidato",
|
|
141
|
+
"HIGHEST_SCORE": "Pontuação mais alta em sua avaliação",
|
|
142
|
+
"ARIA_LABEL": "Pontuação do candidato: {{score}} percentil, enquadra-se na categoria {{activeBucket}}. A pontuação mais alta do candidato na avaliação é o {{bestCandidateScore}} percentil, que se enquadra na categoria {{activeBucketBestScore}}."
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"TAG": {
|
|
146
|
+
"REMOVE": "Remover etiqueta"
|
|
147
|
+
},
|
|
148
|
+
"UNIVERSAL_SKILLS_REPORT": {
|
|
149
|
+
"PERCENTILE": "percentil",
|
|
150
|
+
"SKILL_AREA_GROUP_TYPES": {
|
|
151
|
+
"FOCUSING_ON_OBJECTIVES": {
|
|
152
|
+
"TITLE": "Foco em objetivos",
|
|
153
|
+
"DESCRIPTION": "O conjunto de habilidades Foco em objetivos avalia a capacidade de um indivíduo de atingir metas."
|
|
154
|
+
},
|
|
155
|
+
"WORKING_WITH_PEOPLE": {
|
|
156
|
+
"TITLE": "Trabalhar com pessoas",
|
|
157
|
+
"DESCRIPTION": "O conjunto de habilidades Trabalhar com pessoas avalia a capacidade do indivíduo de promover conexões e colaborações interpessoais."
|
|
158
|
+
},
|
|
159
|
+
"MANAGING_ONES_SELF": {
|
|
160
|
+
"TITLE": "Gerenciar a si mesmo",
|
|
161
|
+
"DESCRIPTION": "O conjunto de habilidades Gerenciar a si mesmo avalia a capacidade do indivíduo de usar recursos internos para se adaptar, superar, aprender e explorar novas possibilidades."
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"PERCENTILE_SUFFIXES": {
|
|
166
|
+
"ST": "º",
|
|
167
|
+
"ND": "º",
|
|
168
|
+
"RD": "º",
|
|
169
|
+
"TH": "º"
|
|
170
|
+
},
|
|
171
|
+
"PERCENTILE_LABEL_TYPES": {
|
|
172
|
+
"WELL_BELOW_AVERAGE": "Bem abaixo da média",
|
|
173
|
+
"BELLOW_AVERAGE": "Abaixo da média",
|
|
174
|
+
"AVERAGE": "Média",
|
|
175
|
+
"ABOVE_AVERAGE": "Acima da média",
|
|
176
|
+
"WELL_ABOVE_AVERAGE": "Bem acima da média"
|
|
177
|
+
},
|
|
178
|
+
"TOOLTIP": {
|
|
179
|
+
"DETAILS": "Informações"
|
|
119
180
|
}
|
|
120
181
|
}
|