mapa-frontend-i18n 1.1.2 → 1.2.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.
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
import { clearTranslations, loadTranslations } from '@angular/localize';
|
|
2
2
|
|
|
3
|
+
// ma-frontend (participant/assessment app) runtime translations.
|
|
4
|
+
// Message IDs are namespaced with the `ma.*` prefix to avoid collisions with
|
|
5
|
+
// the other microfrontends sharing this runtime catalog.
|
|
6
|
+
//
|
|
7
|
+
// Portuguese (pt-BR) is the source language: the templates already contain the
|
|
8
|
+
// Portuguese text as default content, so $localize falls back to it when no
|
|
9
|
+
// pt-BR translation is loaded. Hence PT_RUNTIME_TRANSLATIONS stays empty.
|
|
10
|
+
const PT_RUNTIME_TRANSLATIONS$8 = {};
|
|
11
|
+
const EN_TRANSLATIONS$8 = {
|
|
12
|
+
...PT_RUNTIME_TRANSLATIONS$8,
|
|
13
|
+
"ma.common.close": "Close",
|
|
14
|
+
"ma.languageDialog.title": "Change language",
|
|
15
|
+
"ma.languageDialog.description": "Choose the language you want to use on the platform.",
|
|
16
|
+
"ma.login.feature.trackingTitle": "Tracking in a single place",
|
|
17
|
+
"ma.login.feature.trackingDescription": "Centralize data and steps across your journey.",
|
|
18
|
+
"ma.login.feature.insightsTitle": "Insights for faster decisions",
|
|
19
|
+
"ma.login.feature.insightsDescription": "Visualize trends and act with more confidence.",
|
|
20
|
+
"ma.login.feature.simplicityTitle": "More simplicity every day",
|
|
21
|
+
"ma.login.feature.simplicityDescription": "Guided flows and quick access for you.",
|
|
22
|
+
};
|
|
23
|
+
const ES_TRANSLATIONS$8 = {
|
|
24
|
+
...PT_RUNTIME_TRANSLATIONS$8,
|
|
25
|
+
"ma.common.close": "Cerrar",
|
|
26
|
+
"ma.languageDialog.title": "Cambiar idioma",
|
|
27
|
+
"ma.languageDialog.description": "Elija el idioma que desea usar en la plataforma.",
|
|
28
|
+
"ma.login.feature.trackingTitle": "Seguimiento en un solo lugar",
|
|
29
|
+
"ma.login.feature.trackingDescription": "Centralice datos y etapas de su recorrido.",
|
|
30
|
+
"ma.login.feature.insightsTitle": "Insights para decisiones más rápidas",
|
|
31
|
+
"ma.login.feature.insightsDescription": "Visualice tendencias y actúe con más seguridad.",
|
|
32
|
+
"ma.login.feature.simplicityTitle": "Más simplicidad en el día a día",
|
|
33
|
+
"ma.login.feature.simplicityDescription": "Flujos guiados y acceso rápido para usted.",
|
|
34
|
+
};
|
|
35
|
+
const MA_TRANSLATIONS = {
|
|
36
|
+
"pt-BR": PT_RUNTIME_TRANSLATIONS$8,
|
|
37
|
+
es: ES_TRANSLATIONS$8,
|
|
38
|
+
en: EN_TRANSLATIONS$8,
|
|
39
|
+
};
|
|
40
|
+
|
|
3
41
|
const PT_RUNTIME_TRANSLATIONS$7 = {
|
|
4
42
|
"mca.breadcrumb.myEvaluations": "Minhas avaliações",
|
|
5
43
|
"mca.breadcrumb.trackInvitations": "Acompanhar convites",
|
|
@@ -13164,6 +13202,7 @@ const PT_RUNTIME_TRANSLATIONS = {
|
|
|
13164
13202
|
"home.results.empty.title": "Não foram encontrados registros",
|
|
13165
13203
|
"home.results.exploreDefault": "Explorar resultados",
|
|
13166
13204
|
"home.results.exploreCustom": "Explorar resultados personalizados",
|
|
13205
|
+
"home.results.loadError": "Não foi possível carregar os relatórios disponíveis.",
|
|
13167
13206
|
"home.results.subtitle": "Consulte os relatórios disponíveis e encontre rapidamente o resultado que precisa.",
|
|
13168
13207
|
"home.results.title": "Resultados",
|
|
13169
13208
|
"home.search.placeholder": "Pesquisar",
|
|
@@ -13183,6 +13222,19 @@ const PT_RUNTIME_TRANSLATIONS = {
|
|
|
13183
13222
|
"report.group.filter.grouping": "Agrupamento",
|
|
13184
13223
|
"report.group.filter.instrument": "Instrumento",
|
|
13185
13224
|
"report.group.filter.search": "Pesquisar",
|
|
13225
|
+
"report.group.create.clearFilters": "Limpar filtros",
|
|
13226
|
+
"report.group.create.dateRange": "Data inicial - Data final",
|
|
13227
|
+
"report.group.create.empty.subtitle": "Ajuste a busca ou tente novamente.",
|
|
13228
|
+
"report.group.create.empty.title": "Nenhum resultado encontrado",
|
|
13229
|
+
"report.group.create.filtersButton": "Filtros",
|
|
13230
|
+
"report.group.create.grouping.candidate": "Indivíduos",
|
|
13231
|
+
"report.group.create.grouping.position": "Cargos",
|
|
13232
|
+
"report.group.create.grouping.unit": "Unidades",
|
|
13233
|
+
"report.group.create.instrument.all": "Todos",
|
|
13234
|
+
"report.group.create.instrument.personality": "Personalidade",
|
|
13235
|
+
"report.group.create.saveButton": "Criar grupo",
|
|
13236
|
+
"report.group.create.searchPlaceholder": "Pesquisar",
|
|
13237
|
+
"report.group.create.selectedCount": "Selecionados",
|
|
13186
13238
|
"report.group.filters.clearFilters": "Limpar filtros",
|
|
13187
13239
|
"report.group.filters.groupBy": "Agrupar por",
|
|
13188
13240
|
"report.group.filters.openFilters": "Filtros",
|
|
@@ -13213,6 +13265,7 @@ const PT_RUNTIME_TRANSLATIONS = {
|
|
|
13213
13265
|
"report.group.positions.table.unit": "Unidade",
|
|
13214
13266
|
"report.group.positions.table.unitCandidate": "Unidade",
|
|
13215
13267
|
"report.group.positions.toast.duplicateGroupName": "Nome de grupo já existe!",
|
|
13268
|
+
"report.group.notFound": "Relatório não encontrado.",
|
|
13216
13269
|
"report.group.radar.exportButton": "Exportar relatório",
|
|
13217
13270
|
"report.group.radar.negativeIndicators": "INDICADORES NEGATIVOS ↓",
|
|
13218
13271
|
"report.group.radar.positiveIndicators": "INDICADORES POSITIVOS ↑",
|
|
@@ -13221,6 +13274,13 @@ const PT_RUNTIME_TRANSLATIONS = {
|
|
|
13221
13274
|
"report.group.register.filter.grouping": "Agrupamento",
|
|
13222
13275
|
"report.group.register.filter.instrument": "Instrumento",
|
|
13223
13276
|
"report.group.register.filter.search": "Pesquisar",
|
|
13277
|
+
"report.group.results.export": "Exportar relatório",
|
|
13278
|
+
"report.group.results.mode.candidates": "Avaliados",
|
|
13279
|
+
"report.group.results.mode.group": "Grupo",
|
|
13280
|
+
"report.group.results.negativeIndicators": "Indicadores negativos ↓",
|
|
13281
|
+
"report.group.results.positiveIndicators": "Indicadores positivos ↑",
|
|
13282
|
+
"report.group.results.rankingFallback": "Ranqueamento de dimensões",
|
|
13283
|
+
"report.group.results.title": "Análise de Grupos",
|
|
13224
13284
|
"report.groupedPanel.alerts.description": "Os grupos citados nessa sessão são referentes ao agrupamento selecionado acima.",
|
|
13225
13285
|
"report.groupedPanel.alerts.groupsTitle": "Alertas dos Grupos",
|
|
13226
13286
|
"report.groupedPanel.alerts.individualTitle": "Alertas Individuais",
|
|
@@ -13260,6 +13320,7 @@ const PT_RUNTIME_TRANSLATIONS = {
|
|
|
13260
13320
|
"report.groupedPanel.timeline.subtitle": "Ações e pareceres filtrados por agrupamento",
|
|
13261
13321
|
"report.groupedPanel.timeline.title": "Timeline de Pareceres e Ações",
|
|
13262
13322
|
"report.result.availableEvaluations.subtitle": "Selecione qual avaliação você quer visualizar",
|
|
13323
|
+
"report.result.availableEvaluations.remove": "Remover avaliação {$name}",
|
|
13263
13324
|
"report.result.availableEvaluations.title": "Avaliações disponíveis",
|
|
13264
13325
|
"report.result.benchmark.description": "Compare escalas e acompanhe referências de benchmarking em um mesmo painel de consulta.",
|
|
13265
13326
|
"report.result.benchmark.placeholder": "Selecionar Benchmarking",
|
|
@@ -13270,11 +13331,16 @@ const PT_RUNTIME_TRANSLATIONS = {
|
|
|
13270
13331
|
"report.result.candidate.cpfLabel": "CPF",
|
|
13271
13332
|
"report.result.candidate.emailLabel": "E-MAIL",
|
|
13272
13333
|
"report.result.candidate.evaluatedLabel": "AVALIADO",
|
|
13334
|
+
"report.result.candidate.divisionLabel": "Divisão",
|
|
13335
|
+
"report.result.candidate.durationLabel": "Duração",
|
|
13273
13336
|
"report.result.candidate.genderLabel": "GÊNERO",
|
|
13337
|
+
"report.result.candidate.locationLabel": "Localidade",
|
|
13274
13338
|
"report.result.candidate.maritalStatusLabel": "ESTADO CIVIL",
|
|
13275
13339
|
"report.result.candidate.phoneLabel": "TELEFONE",
|
|
13340
|
+
"report.result.candidate.positionLabel": "Cargo",
|
|
13276
13341
|
"report.result.candidate.schoolingLabel": "ESCOLARIDADE",
|
|
13277
13342
|
"report.result.candidate.stateLabel": "ESTADO DE RESIDÊNCIA",
|
|
13343
|
+
"report.result.candidate.unitLabel": "Unidade",
|
|
13278
13344
|
"report.result.candidate.yearsSuffix": "anos",
|
|
13279
13345
|
"report.result.captionBenchmark.intro": "Mostra quanto a pessoa avaliada pontuou nesta {$1}escala psicossocial (0–100){$1}. Quanto mais à direita, maior a pontuação.",
|
|
13280
13346
|
"report.result.captionBenchmark.p25Label": "{$1}p25{$1} — indica ponto abaixo do qual 25% do grupo se encontram.",
|
|
@@ -13371,6 +13437,10 @@ const PT_RUNTIME_TRANSLATIONS = {
|
|
|
13371
13437
|
"report.result.conclusion.view.responsibleLabel": "RESPONSÁVEL",
|
|
13372
13438
|
"report.result.conclusion.view.resultLabel": "RESULTADO",
|
|
13373
13439
|
"report.result.conclusion.viewDescription": "Consolide a interpretação final do resultado com os dados profissionais e o parecer registrado.",
|
|
13440
|
+
"report.result.breadcrumb.evaluation": "Avaliação",
|
|
13441
|
+
"report.result.breadcrumb.evaluationV2": "Avaliação V2",
|
|
13442
|
+
"report.result.breadcrumb.individuals": "Individuais",
|
|
13443
|
+
"report.result.eyebrow": "Relatório {$INTERPOLATION}",
|
|
13374
13444
|
"report.result.financialPending.masterWarning": "{$1}Atenção:{$1} Este resultado está sendo exibido apenas devido ao seu nível de permissão. O usuário final não poderá visualizá-lo porque os créditos da conta estão esgotados. Para liberar o acesso, é necessário realizar uma nova compra de créditos.",
|
|
13375
13445
|
"report.result.financialPending.title": "A geração do relatório não está disponível no momento.",
|
|
13376
13446
|
"report.result.individual.eyebrow": "Relatório individual",
|
|
@@ -13384,8 +13454,16 @@ const PT_RUNTIME_TRANSLATIONS = {
|
|
|
13384
13454
|
"report.result.individualPoints.attention.title": "Pontos de atenção",
|
|
13385
13455
|
"report.result.individualPoints.strong.subtitle": "Aspectos que aparecem como recursos mais favoráveis neste perfil.",
|
|
13386
13456
|
"report.result.individualPoints.strong.title": "Pontos fortes",
|
|
13457
|
+
"report.result.individualPoints.attentionPoints": "Pontos de atenção",
|
|
13458
|
+
"report.result.individualPoints.strongPoints": "Pontos fortes",
|
|
13459
|
+
"report.result.individualPoints.title": "Pontos fortes e de atenção",
|
|
13387
13460
|
"report.result.individualPoints.view.detailed": "Detalhada",
|
|
13388
13461
|
"report.result.individualPoints.view.summarized": "Resumido",
|
|
13462
|
+
"report.result.indicators.negative": "Indicadores negativos",
|
|
13463
|
+
"report.result.indicators.positive": "Indicadores positivos",
|
|
13464
|
+
"report.result.indicators.riskNegligence": "Risco de acidente por negligência",
|
|
13465
|
+
"report.result.indicators.riskPrecipitation": "Risco de acidente por precipitação",
|
|
13466
|
+
"report.result.instrument.notInformed": "Sem instrumento",
|
|
13389
13467
|
"report.result.navbar.exportButton": "Exportar relatório",
|
|
13390
13468
|
"report.result.navbar.multipleSelected": "{$1} avaliações selecionadas",
|
|
13391
13469
|
"report.result.navbar.navigateBy": "Navegar por:",
|
|
@@ -13395,14 +13473,27 @@ const PT_RUNTIME_TRANSLATIONS = {
|
|
|
13395
13473
|
"report.result.parameterization.averageLabel": "Média Geral",
|
|
13396
13474
|
"report.result.parameterization.view.detailed": "Detalhada",
|
|
13397
13475
|
"report.result.parameterization.view.summarized": "Resumida",
|
|
13476
|
+
"report.result.notInformed": "Não informado",
|
|
13398
13477
|
"report.result.psychosocial.averageHint": "Interprete a média geral da amostra da mesma forma que interpretaria a média de uma escala com pontuações positivas, refletindo o nível médio dos fatores avaliados.",
|
|
13399
13478
|
"report.result.psychosocial.averageTitle": "Media geral",
|
|
13400
13479
|
"report.result.psychosocial.conceptLabel": "Conceito",
|
|
13480
|
+
"report.result.psychosocial.dimensionsFallback": "Dimensões psicossociais",
|
|
13401
13481
|
"report.result.psychosocial.factorsLabel": "Fatores psicossociais",
|
|
13482
|
+
"report.result.psychosocial.globalAverage": "Média global",
|
|
13483
|
+
"report.result.psychosocial.title": "Análise individual psicossocial",
|
|
13484
|
+
"report.result.socioemotional.title": "Análise socioemocional",
|
|
13485
|
+
"report.result.structuralPocTag": "POC estrutural",
|
|
13486
|
+
"report.filters.close": "Fechar filtros",
|
|
13487
|
+
"report.filters.open": "Filtros",
|
|
13488
|
+
"report.filters.title": "Filtros",
|
|
13402
13489
|
"report.search.action.details": "Ver Detalhes",
|
|
13490
|
+
"report.search.dateRange": "Data inicial - Data final",
|
|
13403
13491
|
"report.search.empty.subtitle": "Comece a aplicar os filtros para iniciar a análise",
|
|
13404
13492
|
"report.search.empty.title": "Não foram encontrados registros",
|
|
13493
|
+
"report.search.loadError": "Não foi possível carregar os resultados.",
|
|
13494
|
+
"report.search.missingId": "ID do relatório não informado na URL.",
|
|
13405
13495
|
"report.search.subtitle": "Consulte os avaliados deste relatório e acesse rapidamente cada resultado individual.",
|
|
13496
|
+
"report.search.table.errorTitle": "Não foi possível carregar os resultados.",
|
|
13406
13497
|
"report.search.table.actions": "Ações",
|
|
13407
13498
|
"report.search.table.cpf": "CPF",
|
|
13408
13499
|
"report.search.table.email": "E-mail",
|
|
@@ -13428,6 +13519,39 @@ const PT_RUNTIME_TRANSLATIONS = {
|
|
|
13428
13519
|
"shared.conclusionSidenav.toast.successMessage": "Dados atualizados com sucesso!",
|
|
13429
13520
|
"shared.conclusionSidenav.toast.successTitle": "Sucesso!",
|
|
13430
13521
|
"shared.exportOption.cancelButton": "Cancelar",
|
|
13522
|
+
"shared.classification.critical": "Crítico",
|
|
13523
|
+
"shared.classification.positive": "Positivo",
|
|
13524
|
+
"shared.exportOption.candidateData": "Dados do Avaliado",
|
|
13525
|
+
"shared.exportOption.evaluationData": "Avaliação",
|
|
13526
|
+
"shared.exportOption.openOptions": "Abrir opções",
|
|
13527
|
+
"shared.exportOption.option.candidate": "Dados do avaliado",
|
|
13528
|
+
"shared.exportOption.option.candidateEvaluation": "Dados do avaliado e avaliação.",
|
|
13529
|
+
"shared.exportOption.option.comparativeIndividualRelativeGroup": "[Grupos] Análise Comparativa - Indivíduo em relação ao grupo",
|
|
13530
|
+
"shared.exportOption.option.conclusion": "Conclusão",
|
|
13531
|
+
"shared.exportOption.option.cover": "Capa",
|
|
13532
|
+
"shared.exportOption.option.dimensionsDetails": "Análise detalhada das dimensões",
|
|
13533
|
+
"shared.exportOption.option.evaluation": "Avaliação",
|
|
13534
|
+
"shared.exportOption.option.highlightPoints": "Pontos fortes e de atenção",
|
|
13535
|
+
"shared.exportOption.option.indicators": "Indicadores",
|
|
13536
|
+
"shared.exportOption.option.indicatorsConcept": "Exibir conceito",
|
|
13537
|
+
"shared.exportOption.option.indicatorsDetailed": "Indicadores detalhados",
|
|
13538
|
+
"shared.exportOption.option.indicatorsLegend": "Legenda de indicadores",
|
|
13539
|
+
"shared.exportOption.option.indicatorsSummarized": "Indicadores resumidos",
|
|
13540
|
+
"shared.exportOption.option.parametrization": "Parametrização",
|
|
13541
|
+
"shared.exportOption.option.parametrizationConcept": "Informações para leitura da parametrização",
|
|
13542
|
+
"shared.exportOption.option.parametrizationRadarChart": "Gráfico de Radar da Parametrização",
|
|
13543
|
+
"shared.exportOption.option.psychosocialConcept": "Informações para leitura do psicossocial",
|
|
13544
|
+
"shared.exportOption.option.psychosocialDetails": "Fatores psicossociais",
|
|
13545
|
+
"shared.exportOption.option.radarChart": "[Grupos] Gráfico de Radar",
|
|
13546
|
+
"shared.exportOption.option.scaleComplete": "Detalhamento completo",
|
|
13547
|
+
"shared.exportOption.option.scaleConcept": "Exibir conceito",
|
|
13548
|
+
"shared.exportOption.option.scaleDetails": "Detalhamento de escalas",
|
|
13549
|
+
"shared.exportOption.option.scaleLegend": "Legenda de escalas",
|
|
13550
|
+
"shared.exportOption.option.scaleSummarized": "Detalhamento resumido",
|
|
13551
|
+
"shared.exportOption.option.socioemotional": "Socioemocional",
|
|
13552
|
+
"shared.exportOption.toast.emptySample": "Não foram encontradas avaliações para a amostra selecionada",
|
|
13553
|
+
"shared.exportOption.toast.exportError": "Não foi possível exportar o relatório. Tente novamente mais tarde.",
|
|
13554
|
+
"shared.exportOption.toast.missingInstrument": "Não foi possível identificar o instrumento para exportação",
|
|
13431
13555
|
"shared.exportOption.subtitle": "Gostaria de exibir:",
|
|
13432
13556
|
"shared.exportOption.title": "Gerar relatório individual",
|
|
13433
13557
|
"shared.exportOption.whiteCoverToggle": "Não utilizar cores na capa",
|
|
@@ -13442,6 +13566,19 @@ const PT_RUNTIME_TRANSLATIONS = {
|
|
|
13442
13566
|
"shared.socioemotionalChart.arcAriaLabel": "Socioemotional percentage arc",
|
|
13443
13567
|
"shared.socioemotionalChart.conceptLabel": "Conceito",
|
|
13444
13568
|
"shared.socioemotionalChart.resultLabel": "Resultado",
|
|
13569
|
+
"shared.indicatorsWidget.mode.chart": "Gráfico",
|
|
13570
|
+
"shared.indicatorsWidget.mode.detailed": "Detalhado",
|
|
13571
|
+
"shared.indicatorsWidget.mode.list": "Lista",
|
|
13572
|
+
"shared.indicatorsWidget.title": "Indicadores",
|
|
13573
|
+
"shared.indicatorsWidget.toggleAriaLabel": "Visualização dos indicadores",
|
|
13574
|
+
"shared.psychosocialScaleCard.conceptLabel": "Conceito",
|
|
13575
|
+
"shared.psychosocialScaleCard.factorsLabel": "Fatores psicossociais",
|
|
13576
|
+
"shared.scaleCard.conceptLabel": "Conceito:",
|
|
13577
|
+
"shared.scaleWidget.title": "Escalas",
|
|
13578
|
+
"shared.socioemotionalArc.lessIntense": "Menos Intensamente",
|
|
13579
|
+
"shared.socioemotionalArc.moreIntense": "Mais Intensamente",
|
|
13580
|
+
"shared.socioemotionalCard.conceptLabel": "Conceito",
|
|
13581
|
+
"shared.socioemotionalCard.resultLabel": "Resultado",
|
|
13445
13582
|
"shared.exportOption.exportButton": "Exportar",
|
|
13446
13583
|
};
|
|
13447
13584
|
const EN_OVERRIDES = {
|
|
@@ -14141,6 +14278,7 @@ const MV_TRANSLATIONS = {
|
|
|
14141
14278
|
|
|
14142
14279
|
const RUNTIME_TRANSLATION_CATALOGS = [
|
|
14143
14280
|
MENU_TRANSLATIONS,
|
|
14281
|
+
MA_TRANSLATIONS,
|
|
14144
14282
|
MCA_TRANSLATIONS,
|
|
14145
14283
|
MF_TRANSLATIONS,
|
|
14146
14284
|
MGA_TRANSLATIONS,
|
|
@@ -14476,5 +14614,5 @@ function getMapaUiTexts(language) {
|
|
|
14476
14614
|
* Generated bundle index. Do not edit.
|
|
14477
14615
|
*/
|
|
14478
14616
|
|
|
14479
|
-
export { ANGULAR_RUNTIME_TRANSLATIONS, APP_LANGUAGE_OPTIONS, APP_LANGUAGE_STORAGE_KEY, DEFAULT_APP_LANGUAGE, MAPA_UI_TEXTS_PT_BR, MCA_TRANSLATIONS, MENU_TRANSLATIONS, MF_TRANSLATIONS, MGA_TRANSLATIONS, MGC_TRANSLATIONS, MO_TRANSLATIONS, MP_TRANSLATIONS, MV_TRANSLATIONS, applyDocumentLanguage, applyPaginatorIntl, formatPaginatorRange, formatPaginatorShowingRange, getAngularLocale, getAppLanguageOption, getIntlLocale, getMapaUiTexts, getPaginatorNavigationLabels, getStoredAppLanguage, initializeAppLanguage, isAppLanguage, persistAppLanguage, resolveAppLanguage };
|
|
14617
|
+
export { ANGULAR_RUNTIME_TRANSLATIONS, APP_LANGUAGE_OPTIONS, APP_LANGUAGE_STORAGE_KEY, DEFAULT_APP_LANGUAGE, MAPA_UI_TEXTS_PT_BR, MA_TRANSLATIONS, MCA_TRANSLATIONS, MENU_TRANSLATIONS, MF_TRANSLATIONS, MGA_TRANSLATIONS, MGC_TRANSLATIONS, MO_TRANSLATIONS, MP_TRANSLATIONS, MV_TRANSLATIONS, applyDocumentLanguage, applyPaginatorIntl, formatPaginatorRange, formatPaginatorShowingRange, getAngularLocale, getAppLanguageOption, getIntlLocale, getMapaUiTexts, getPaginatorNavigationLabels, getStoredAppLanguage, initializeAppLanguage, isAppLanguage, persistAppLanguage, resolveAppLanguage };
|
|
14480
14618
|
//# sourceMappingURL=mapa-frontend-i18n.mjs.map
|