Skip to content

Commit 4837c96

Browse files
committed
fix(i18n): add missing translations [CDS 804]
Signed-off-by: CDS Translator Agent <[email protected]>
1 parent 1efc922 commit 4837c96

24 files changed

+182
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"chart_no_data": "Keine Daten"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"chart_no_data": "No data"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"chart_no_data": "No hay datos"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"chart_no_data": "Pas de données"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"chart_no_data": "Nessun dato"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"chart_no_data": "Brak danych"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"chart_no_data": "Sem dados"
3+
}

packages/manager/modules/observability-to-customer/public/translations/chart/index.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,24 @@ import i18next from 'i18next';
22

33
import { NAMESPACES } from '@/ObservabilityToCustomer.translations';
44

5+
import de_DE from './Messages_de_DE.json';
6+
import en_GB from './Messages_en_GB.json';
7+
import es_ES from './Messages_es_ES.json';
8+
import fr_CA from './Messages_fr_CA.json';
59
import fr_FR from './Messages_fr_FR.json';
10+
import it_IT from './Messages_it_IT.json';
11+
import pl_PL from './Messages_pl_PL.json';
12+
import pt_PT from './Messages_pt_PT.json';
613

714
function addTranslations() {
15+
i18next.addResources('de_DE', NAMESPACES.CHART, de_DE);
16+
i18next.addResources('en_GB', NAMESPACES.CHART, en_GB);
17+
i18next.addResources('es_ES', NAMESPACES.CHART, es_ES);
18+
i18next.addResources('fr_FR', NAMESPACES.CHART, fr_CA);
819
i18next.addResources('fr_FR', NAMESPACES.CHART, fr_FR);
20+
i18next.addResources('it_IT', NAMESPACES.CHART, it_IT);
21+
i18next.addResources('pl_PL', NAMESPACES.CHART, pl_PL);
22+
i18next.addResources('pt_PT', NAMESPACES.CHART, pt_PT);
923
}
1024

1125
if (i18next.isInitialized) {
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"dashboard_widget_config_not_found": "Kein Widget auf diesem Dashboard",
3+
"dashboard_widget_analyse_in_all_metrics": "Alle Metriken analysieren",
4+
"dashboard_widget_close": "Schliessen",
5+
"dashboard_no_widget": "Kein Widget für dieses Dashboard konfiguriert",
6+
"dashboard_loading": "Dashboard wird geladen"
7+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"dashboard_widget_config_not_found": "No widget on this dashboard",
3+
"dashboard_widget_analyse_in_all_metrics": "Analyse all metrics",
4+
"dashboard_widget_close": "Close",
5+
"dashboard_no_widget": "No widget configured for this dashboard",
6+
"dashboard_loading": "Loading dashboard"
7+
}

0 commit comments

Comments
 (0)