@topconsultnpm/sdkui-react-beta 6.8.41 → 6.8.42
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.
|
@@ -53,7 +53,7 @@ const TMTreeDropDown = (props) => {
|
|
|
53
53
|
const displayValueFormatter = useCallback((value) => {
|
|
54
54
|
if (displayExpr)
|
|
55
55
|
return value.toString();
|
|
56
|
-
return SDK_Localizator.Filters + " (" + value.length + ")";
|
|
56
|
+
return SDK_Localizator.Filters + " (" + value.length + " " + SDKUI_Localizator.Applied + ")";
|
|
57
57
|
}, []);
|
|
58
58
|
const renderTreeViewItem = (item) => {
|
|
59
59
|
// Customize how tree view items are rendered with a tooltip
|
|
@@ -16,6 +16,7 @@ export declare class SDKUI_Localizator {
|
|
|
16
16
|
static get AddDefinition(): "Definition hinzufügen" | "Add definition" | "Añadir definición" | "Ajoute la définition" | "Adicionar definição" | "Aggiungi definizione";
|
|
17
17
|
static get AddOrSubstFile(): "Dateien hinzufügen/ersetzen" | "Add/substitute file" | "Añadir/sustituir archivo" | "Ajoute/Remplace le fichier" | "Adicionar / substituir arquivos" | "Aggiungi/sostituisci file";
|
|
18
18
|
static get All(): "Alle" | "All" | "Todos" | "Tous" | "Tutti";
|
|
19
|
+
static get Applied(): string;
|
|
19
20
|
static get Apply(): "Anwenden" | "Apply" | "Aplicar" | "Applique" | "Applica";
|
|
20
21
|
static get ApplyAndClose(): "Anwenden und Schließen" | "Apply and close" | "Aplicar y cerrar" | "Applique et ferme" | "Aplicar e fechar" | "Applica e chiudi";
|
|
21
22
|
static get Archive(): "Archiv" | "Archive" | "Almacenar" | "Armazena" | "Archivia";
|
|
@@ -108,6 +108,16 @@ export class SDKUI_Localizator {
|
|
|
108
108
|
default: return "Tutti";
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
|
+
static get Applied() {
|
|
112
|
+
switch (this._cultureID) {
|
|
113
|
+
case CultureIDs.De_DE: return "Angewandt";
|
|
114
|
+
case CultureIDs.En_US: return "Applied";
|
|
115
|
+
case CultureIDs.Es_ES: return "Aplicados";
|
|
116
|
+
case CultureIDs.Fr_FR: return "Appliqués";
|
|
117
|
+
case CultureIDs.Pt_PT: return "Aplicados";
|
|
118
|
+
default: return "Applicati";
|
|
119
|
+
}
|
|
120
|
+
}
|
|
111
121
|
static get Apply() {
|
|
112
122
|
switch (this._cultureID) {
|
|
113
123
|
case CultureIDs.De_DE: return "Anwenden";
|