@topconsultnpm/sdkui-react-beta 6.13.2 → 6.13.3
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.
@@ -71,6 +71,7 @@ export declare class SDKUI_Localizator {
|
|
71
71
|
static get ConfirmOnCancel(): "Wenn wir fortfahren, gehen die vorgenommenen Änderungen verloren. Fortfahren?" | "All modifications will be lost. Continue?" | "Si sigue adelante, se perderán las modificaciones aportadas. ¿Seguir?" | "Continuant, les changements seront perdus. Continuer?" | "Continuando as alterações feitas serão perdidas. Continuar?" | "Proseguendo le modifiche apportate andranno perse. Proseguire?";
|
72
72
|
static get ContinueOperation(): "Fortfahren?" | "Continue ?" | "¿Continuar?" | "Continuer?" | "Continuar?" | "Continuare?";
|
73
73
|
static get CopiedSuccessfully(): "In die Zwischenablage kopieren" | "Copied in clipboard successfully" | "Copiado en el portapapeles con éxito" | "Copié dans le presse-papiers avec succès" | "CCopiado na área de transferência com sucesso" | "Copiato negli appunti con successo";
|
74
|
+
static get Copy(): string;
|
74
75
|
static get CopyToClipboard(): "Erfolgreich in die Zwischenablage kopiert" | "Copy in clipboard" | "Copiar en portapapeles" | "Copier dans le presse-papier" | "Copiar na área de transferência" | "Copia negli appunti";
|
75
76
|
static get Count(): "Zählen" | "Count" | "Contar" | "Compte" | "Contagem" | "Conta";
|
76
77
|
static get Create(): "Erstellen" | "Create" | "Crear" | "Créer" | "Criar" | "Crea";
|
@@ -227,6 +228,7 @@ export declare class SDKUI_Localizator {
|
|
227
228
|
static get Message(): "Nachricht" | "Message" | "Mensaje" | "Mensagem" | "Messaggio";
|
228
229
|
static get More(): "andere" | "more" | "otros" | "autres" | "outros" | "altri";
|
229
230
|
static get MoreInformation(): "Mehr Informationen" | "More information" | "Más información" | "Plus d'informations" | "Mais informações" | "Maggiori informazioni";
|
231
|
+
static get Move(): string;
|
230
232
|
static get Name(): "Name" | "Nombre" | "Nom" | "Nome";
|
231
233
|
static get NameForAccess(): "Name für den Zugang" | "Access name" | "Nombre para el acceso" | "Nom pour l'accès" | "Nome para o acesso" | "Nome per l'accesso";
|
232
234
|
static get NewOTP(): "Neues OTP" | "New OTP" | "Nueva OTP" | "Nouveau l'OTP" | "Nova OTP" | "Nuova OTP";
|
@@ -659,6 +659,16 @@ export class SDKUI_Localizator {
|
|
659
659
|
default: return "Copiato negli appunti con successo";
|
660
660
|
}
|
661
661
|
}
|
662
|
+
static get Copy() {
|
663
|
+
switch (this._cultureID) {
|
664
|
+
case CultureIDs.De_DE: return "Kopieren";
|
665
|
+
case CultureIDs.En_US: return "Copy";
|
666
|
+
case CultureIDs.Es_ES: return "Copiar";
|
667
|
+
case CultureIDs.Fr_FR: return "Copier";
|
668
|
+
case CultureIDs.Pt_PT: return "Copiar";
|
669
|
+
default: return "Copia";
|
670
|
+
}
|
671
|
+
}
|
662
672
|
static get CopyToClipboard() {
|
663
673
|
switch (this._cultureID) {
|
664
674
|
case CultureIDs.De_DE: return "Erfolgreich in die Zwischenablage kopiert";
|
@@ -2221,6 +2231,16 @@ export class SDKUI_Localizator {
|
|
2221
2231
|
default: return "Maggiori informazioni";
|
2222
2232
|
}
|
2223
2233
|
}
|
2234
|
+
static get Move() {
|
2235
|
+
switch (this._cultureID) {
|
2236
|
+
case CultureIDs.De_DE: return "Verschieben";
|
2237
|
+
case CultureIDs.En_US: return "Move";
|
2238
|
+
case CultureIDs.Es_ES: return "Mover";
|
2239
|
+
case CultureIDs.Fr_FR: return "Déplacer";
|
2240
|
+
case CultureIDs.Pt_PT: return "Mover";
|
2241
|
+
default: return "Sposta";
|
2242
|
+
}
|
2243
|
+
}
|
2224
2244
|
static get Name() {
|
2225
2245
|
switch (this._cultureID) {
|
2226
2246
|
case CultureIDs.De_DE: return "Name";
|