@topconsultnpm/sdkui-react 6.19.0-dev1.53 → 6.19.0-dev1.55
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/lib/components/base/TMLayout.d.ts +2 -1
- package/lib/components/base/TMLayout.js +2 -2
- package/lib/components/features/documents/TMDcmtBlog.js +1 -1
- package/lib/components/features/search/TMSearch.js +1 -1
- package/lib/components/features/search/TMSearchResult.js +10 -1
- package/lib/components/features/tasks/TMTaskForm.d.ts +33 -0
- package/lib/components/features/tasks/TMTaskForm.js +291 -0
- package/lib/components/features/tasks/TMTasksAgenda.d.ts +17 -0
- package/lib/components/features/tasks/TMTasksAgenda.js +107 -0
- package/lib/components/features/tasks/TMTasksCalendar.d.ts +21 -0
- package/lib/components/features/tasks/TMTasksCalendar.js +240 -0
- package/lib/components/features/tasks/TMTasksHeader.d.ts +14 -0
- package/lib/components/features/tasks/TMTasksHeader.js +37 -0
- package/lib/components/features/tasks/TMTasksPanelContent.d.ts +19 -0
- package/lib/components/features/tasks/TMTasksPanelContent.js +74 -0
- package/lib/components/features/tasks/TMTasksUtils.d.ts +130 -0
- package/lib/components/features/tasks/TMTasksUtils.js +602 -0
- package/lib/components/features/tasks/TMTasksUtilsView.d.ts +32 -0
- package/lib/components/features/tasks/TMTasksUtilsView.js +107 -0
- package/lib/components/features/tasks/TMTasksView.d.ts +37 -0
- package/lib/components/features/tasks/TMTasksView.js +555 -0
- package/lib/components/features/workflow/TMWorkflowPopup.js +2 -2
- package/lib/components/grids/TMBlogsPost.js +27 -27
- package/lib/components/grids/TMBlogsPostUtils.js +1 -1
- package/lib/components/index.d.ts +8 -0
- package/lib/components/index.js +9 -0
- package/lib/helper/SDKUI_Localizator.d.ts +54 -4
- package/lib/helper/SDKUI_Localizator.js +526 -25
- package/lib/helper/TMCustomSearchBar.d.ts +8 -0
- package/lib/helper/TMCustomSearchBar.js +54 -0
- package/lib/helper/TMToppyMessage.js +1 -1
- package/lib/helper/TMUtils.d.ts +10 -1
- package/lib/helper/TMUtils.js +42 -1
- package/lib/stories/TMSDKUI_Localizator.stories.js +1 -1
- package/package.json +1 -1
|
@@ -200,7 +200,7 @@ export const NewBadge = ({ layoutMode }) => {
|
|
|
200
200
|
boxShadow: "0 2px 10px rgba(255, 200, 50, 0.45)",
|
|
201
201
|
zIndex: 1,
|
|
202
202
|
animation: "softBlink 2s infinite",
|
|
203
|
-
}, title: SDKUI_Localizator.
|
|
203
|
+
}, title: SDKUI_Localizator.NewMale, children: [!isCompact && "NEW", _jsx("style", { children: `
|
|
204
204
|
@keyframes softBlink {
|
|
205
205
|
0%, 100% { opacity: 1; }
|
|
206
206
|
50% { opacity: 0.7; }
|
|
@@ -67,6 +67,14 @@ export * from './features/documents/TMRelationViewer';
|
|
|
67
67
|
export * from './features/archive/TMArchive';
|
|
68
68
|
export * from './features/search/TMSearch';
|
|
69
69
|
export * from './features/search/TMSearchResult';
|
|
70
|
+
export { default as TMTaskForm } from './features/tasks/TMTaskForm';
|
|
71
|
+
export { default as TMTasksAgenda } from './features/tasks/TMTasksAgenda';
|
|
72
|
+
export { default as TMTasksCalendar } from './features/tasks/TMTasksCalendar';
|
|
73
|
+
export { default as TMTasksHeader } from './features/tasks/TMTasksHeader';
|
|
74
|
+
export { default as TMTasksPanelContent } from './features/tasks/TMTasksPanelContent';
|
|
75
|
+
export { default as TMTasksView } from './features/tasks/TMTasksView';
|
|
76
|
+
export * from './features/tasks/TMTasksUtils';
|
|
77
|
+
export * from './features/tasks/TMTasksUtilsView';
|
|
70
78
|
export { default as TMWGsCopyMoveForm } from './features/wg/TMWGsCopyMoveForm';
|
|
71
79
|
export * from './base/TMTab';
|
|
72
80
|
export { default as TMHeader } from "./sidebar/TMHeader";
|
package/lib/components/index.js
CHANGED
|
@@ -77,6 +77,15 @@ export * from './features/archive/TMArchive';
|
|
|
77
77
|
//search
|
|
78
78
|
export * from './features/search/TMSearch';
|
|
79
79
|
export * from './features/search/TMSearchResult';
|
|
80
|
+
// tasks
|
|
81
|
+
export { default as TMTaskForm } from './features/tasks/TMTaskForm';
|
|
82
|
+
export { default as TMTasksAgenda } from './features/tasks/TMTasksAgenda';
|
|
83
|
+
export { default as TMTasksCalendar } from './features/tasks/TMTasksCalendar';
|
|
84
|
+
export { default as TMTasksHeader } from './features/tasks/TMTasksHeader';
|
|
85
|
+
export { default as TMTasksPanelContent } from './features/tasks/TMTasksPanelContent';
|
|
86
|
+
export { default as TMTasksView } from './features/tasks/TMTasksView';
|
|
87
|
+
export * from './features/tasks/TMTasksUtils';
|
|
88
|
+
export * from './features/tasks/TMTasksUtilsView';
|
|
80
89
|
// wg
|
|
81
90
|
export { default as TMWGsCopyMoveForm } from './features/wg/TMWGsCopyMoveForm';
|
|
82
91
|
//tab
|
|
@@ -7,6 +7,7 @@ export declare class SDKUI_Localizator {
|
|
|
7
7
|
*/
|
|
8
8
|
static setLanguage(cultureID: CultureIDs | undefined): void;
|
|
9
9
|
static get Active(): string;
|
|
10
|
+
static get ActivityOverMultipleDays(): "Aktivitäten in den letzten {{0}} Tagen" | "Activities over the course of {{0}} days" | "Actividades durante los {{0}} días" | "Activités sur {{0}} jours" | "Atividades ao longo de {{0}} dias" | "Attività che svolge nell'arco di {{0}} giorni";
|
|
10
11
|
static get Abort(): "Stoppen" | "Abort" | "Detener" | "Arrêtez" | "Parar" | "Interrompi";
|
|
11
12
|
static get Abort_Confirm(): "Stoppen Sie die Verarbeitung?" | "Cancel processing?" | "¿Interrumpir la elaboración?" | "Voulez-vous interrompre l'operation?" | "Pare o processamento?" | "Interrompere l'elaborazione?";
|
|
12
13
|
static get About(): "Informationen" | "About" | "Información" | "Informations" | "Informações" | "Informazioni";
|
|
@@ -24,16 +25,19 @@ export declare class SDKUI_Localizator {
|
|
|
24
25
|
static get AddToHomePage(): "Zur Startseite hinzufügen" | "Add to Home Page" | "Añadir a la página inicial" | "Ajoute à Home Page" | "Adicionar a Home Page" | "Aggiungi alla Home Page";
|
|
25
26
|
static get Advanced(): "Erweitert" | "Advanced" | "Avanzado" | "Avancé" | "Avançado" | "Avanzate";
|
|
26
27
|
static get All(): "Alle" | "All" | "Todos" | "Tous" | "Tutti";
|
|
28
|
+
static get AllFemale(): "Alle" | "All" | "Todas" | "Toutes" | "Tutte";
|
|
27
29
|
static get AllDcmts(): "Alle Dokumente" | "All documents" | "Todos los documentos" | "Tous les documents" | "Todos os documentos" | "Tutti i documenti";
|
|
28
30
|
static get AllDcmtTypes(): "Alle Dokumenttypen" | "All document types" | "Todos los tipos documento" | "Tous les types de documents" | "Todos os tipos de documentos" | "Tutti i tipi documento";
|
|
29
31
|
static get AllFilesAndFoldersInSupportArea(): "Alle Dateien und Ordner im Support-Bereich" | "All files and folders within the support area" | "Todos los archivos y carpetas dentro del área de soporte" | "Tous les fichiers et dossiers dans la zone de support" | "Todos os arquivos e pastas na área de apoio" | "Tutti i file e le cartelle all'interno dell'area di appoggio";
|
|
30
32
|
static get AllItems(): "alle Artikel" | "All items" | "Todos los artículos" | "tous les articles" | "todos os artigos" | "tutti gli elementi";
|
|
31
|
-
static get
|
|
33
|
+
static get AllPriorities(): "Alle Prioritäten" | "All priorities" | "Todas las prioridades" | "Toutes les priorités" | "Todas as prioridades" | "Tutte le priorità";
|
|
34
|
+
static get AllStates(): "Alle Staaten" | "All states" | "Todos los estados" | "Tous les états" | "Todos os estados" | "Tutti gli stati";
|
|
32
35
|
static get Alphabetic(): "Alphabetisch" | "Alphabetic" | "Alfabético" | "Alphabétique" | "Alfabética" | "Alfabetico";
|
|
33
36
|
static get Application(): "Anwendung" | "Application" | "Aplicación" | "Aplicação" | "Applicazione";
|
|
34
37
|
static get Applied(): string;
|
|
35
38
|
static get Apply(): "Anwenden" | "Apply" | "Aplicar" | "Applique" | "Applica";
|
|
36
39
|
static get ApplyAndClose(): "Anwenden und Schließen" | "Apply and close" | "Aplicar y cerrar" | "Applique et ferme" | "Aplicar e fechar" | "Applica e chiudi";
|
|
40
|
+
static get ApplyContextualFilter(): string;
|
|
37
41
|
static get Approve(): "Genehmigen" | "Approve" | "Aprobar" | "Approuver" | "Aprovar" | "Approva";
|
|
38
42
|
static get Archive(): "Archiv" | "Archive" | "Almacenar" | "Armazena" | "Archivia";
|
|
39
43
|
static get ArchiveConstraint(): "Archivierungsbeschränkung" | "Archive constraint" | "Vínculo de almacenamiento" | "Contrainte d'archivage" | "Armazenamento de restrição" | "Vincolo di archiviazione";
|
|
@@ -43,7 +47,10 @@ export declare class SDKUI_Localizator {
|
|
|
43
47
|
static get ArchivedDocuments(): string;
|
|
44
48
|
static get ArchiveID(): "Armazena" | "Dokumentarisches Archiv" | "Documental archive" | "Archivo de documentos" | "Archivage des documents" | "Archivio documentale";
|
|
45
49
|
static get Arguments(): "Themen" | "Arguments" | "Argumentos" | "Sujets" | "Tópicos" | "Argomenti";
|
|
50
|
+
static get AssignedBy(): "Zugewiesen von" | "Assigned by" | "Asignado por" | "Assigné par" | "Atribuído por" | "Assegnata da";
|
|
51
|
+
static get AssignedByMe(): "Von mir zugewiesene" | "Assigned by me" | "Por mí" | "Que j'ai assignées" | "Atribuídas por mim" | "Assegnate da me";
|
|
46
52
|
static get AssignedTo(): string;
|
|
53
|
+
static get AssignedToMe(): "Mir zugewiesene" | "Assigned to me" | "Asignadas a mí" | "Qui me sont assignées" | "Atribuídas a mim" | "Assegnate a me";
|
|
47
54
|
static get AttachDocument(): "Dokument anhängen" | "Attach Document" | "Adjuntar documento" | "Joindre un document" | "Anexar documento" | "Allega documento";
|
|
48
55
|
static get AttachingDocuments(): "Dokumente werden angehängt..." | "Attaching documents..." | "Adjuntando documentos..." | "Pièces jointes en cours..." | "Anexando documentos..." | "Allegando documenti...";
|
|
49
56
|
static get Attachment(): string;
|
|
@@ -63,6 +70,7 @@ export declare class SDKUI_Localizator {
|
|
|
63
70
|
static get BrowseAreaFile(): "Dateien in den Supportbereichen durchsuchen" | "Browse files on support areas" | "Explorar los archivos en las áreas de apoyo" | "Parcourir les fichiers dans les zones de support" | "Procurar os arquivos nas áreas de suporte" | "Sfoglia i file nelle aree di appoggio";
|
|
64
71
|
static get BrowseAreaFolder(): "Ordner in den Supportbereichen durchsuchen" | "Browse folders on support areas" | "Explorar las carpetas en las áreas de apoyo" | "Parcourir les dossiers dans les zones de support" | "Percorra as pastas nas áreas de apoio" | "Sfoglia le cartelle nelle aree di appoggio";
|
|
65
72
|
static get ByDate(): string;
|
|
73
|
+
static get Calendar(): "Kalender" | "Calendar" | "Calendario" | "Calendrier" | "Calendário";
|
|
66
74
|
static get CassettoDoganaleExportMRN(): "MRN-Erholung für den Export" | "MRN recovery for export" | "Recuperación MRN para exportación" | "Récupération MRN pour l'export" | "Recuperação MRN para exportação" | "Recupero MRN per Export";
|
|
67
75
|
static get CassettoDoganaleExportVU(): "Wiederherstellung des Ausreisevisums" | "Exit Visa Recovery" | "Recuperación de Visa de Salida" | "Sortie Récupération Visa" | "Recuperação de Visto de Saída" | "Recupero Visto Uscire per Export";
|
|
68
76
|
static get CassettoDoganaleImportMRN(): "MRN-Erholung für den Import" | "MRN recovery for import" | "Recuperación MRN para importación" | "Récupération MRN à l'import" | "Recuperação MRN para importação" | "Recupero MRN per Import";
|
|
@@ -85,6 +93,7 @@ export declare class SDKUI_Localizator {
|
|
|
85
93
|
static get CommentAndComplete(): string;
|
|
86
94
|
static get CommentDoesNotMeetRequirements(): "Der Kommentar erfüllt nicht die erforderlichen Anforderungen" | "The comment does not meet the required criteria" | "El comentario no cumple con los requisitos requeridos" | "Le commentaire ne répond pas aux exigences requises" | "O comentário não atende aos requisitos exigidos" | "Il commento non rispetta i requisiti richiesti";
|
|
87
95
|
static get CommentText(): string;
|
|
96
|
+
static get Completed(): "Abgeschlossen" | "Completed" | "Completadas" | "Complètes" | "Completata";
|
|
88
97
|
static get CompleteError(): "Kompletter Fehler" | "Complete error" | "Error completo" | "Erreur complète" | "Erro completo" | "Errore completo";
|
|
89
98
|
static get Configure(): "Konfigurieren" | "Configure" | "Configurar" | "Configura";
|
|
90
99
|
static get Confirm(): string;
|
|
@@ -164,6 +173,7 @@ export declare class SDKUI_Localizator {
|
|
|
164
173
|
static get DocumentData(): string;
|
|
165
174
|
static get DocumentNotAvailable(): string;
|
|
166
175
|
static get DocumentOpenedSuccessfully(): "Dokument erfolgreich geöffnet" | "Document opened successfully" | "Documento abierto con éxito" | "Document ouvert avec succès" | "Documento aberto com sucesso" | "Documento aperto con successo";
|
|
176
|
+
static get Document(): "Dokument" | "Document" | "Documento";
|
|
167
177
|
static get Documents(): string;
|
|
168
178
|
static get DocumentOperations(): string;
|
|
169
179
|
static get Domain(): "Domäne" | "Domain" | "Dominio" | "Domaine";
|
|
@@ -187,12 +197,16 @@ export declare class SDKUI_Localizator {
|
|
|
187
197
|
static get ElectronicInvoice(): "Elektronische Rechnung" | "Electronic invoice" | "Factura electrónica" | "Facture électronique" | "Fatura eletrônica" | "Fattura elettronica";
|
|
188
198
|
static get ElectronicOrder(): "Elektronische Bestellung" | "Electronic order" | "Orden electrónica" | "Commande électronique" | "Pedido eletrônico" | "Ordine elettronico";
|
|
189
199
|
static get EmailIsNotValid(): "Dies ist keine gültige e-mail Adresse" | "This is not a valid email address" | "Esta no es una dirección de correo electrónico válida." | "Cette adresse email n'est pas valide" | "Este não é um endereço de e-mail válido" | "Questo non è un indirizzo e-mail valido";
|
|
200
|
+
static get EndDateMatchesToday(): "Das Ablaufdatum entspricht dem heutigen Datum" | "The expiration date matches today's date" | "La fecha de vencimiento coincide con la fecha de hoy" | "La date d'expiration correspond à la date d'aujourd'hui" | "A data de expiração coincide com a data de hoje" | "La data di scadenza coincide con la data odierna";
|
|
201
|
+
static get EndDateSetForTomorrow(): "Das Ablaufdatum ist für morgen festgelegt" | "The expiration date is set for tomorrow" | "La fecha de vencimiento está fijada para mañana" | "La date d'expiration est fixée pour demain" | "A data de expiração está marcada para amanhã" | "La data di scadenza è imminente (ovvero fissata per domani)";
|
|
190
202
|
static get Endpoint(): "Zugangspunkt" | "Endpoint" | "Punto de acceso" | "Point d'entrée" | "Ponto de acesso" | "Punto di accesso";
|
|
191
203
|
static get EnterNameForAccess(): "Geben Sie einen Namen für den Zugriff ein" | "Enter a name for access" | "Introduzca un nombre para el acceso" | "Entrez un nom pour l'accès" | "Insira um nome para o acesso" | "Inserire un nome per l'accesso";
|
|
192
204
|
static get EnterValue(): "Geben Sie einen Wert ein" | "Enter a value" | "Introducir un valor" | "Entrez une valeur" | "Digite um valor" | "Inserire un valore";
|
|
193
205
|
static get Error(): "Fehler" | "Error" | "Erreur" | "Erro" | "Errore";
|
|
194
206
|
static get ErrorLoadingDocument(): string;
|
|
195
207
|
static get ErrorParsingFileContent(): "Fehler beim Parsen des Dateiinhalts. Stellen Sie sicher, dass die Datei im richtigen Format vorliegt." | "Error parsing the file content. Ensure the file is in the correct format." | "Error al analizar el contenido del archivo. Asegúrese de que el archivo esté en el formato correcto." | "Erreur lors de l'analyse du contenu du fichier. Assurez-vous que le fichier est dans le bon format." | "Erro ao analisar o conteúdo do arquivo. Certifique-se de que o arquivo está no formato correto." | "Errore durante l'analisi del contenuto del file. Assicurati che il file sia nel formato corretto.";
|
|
208
|
+
static get ErrorEndRemDate(): "Fehler bei den Daten (2)" | "Error in the dates (2)" | "Error en las fechas (2)" | "Erreur dans les dates (2)" | "Erro nas datas (2)" | "Errore nelle date (2)";
|
|
209
|
+
static get ErrorStartEndDate(): "Fehler bei den Daten (1)" | "Error in the dates (1)" | "Error en las fechas (1)" | "Erreur dans les dates (1)" | "Erro nas datas (1)" | "Errore nelle date (1)";
|
|
196
210
|
static get ExportDataListsDescriptionField(): "Exportiere die \"Beschreibung\"-Felder der Datenlisten" | "Export the \"description\" fields of data lists" | "Exportar los campos \"descripción\" de las listas de datos" | "Exporter les champs \"description\" des listes de données" | "Exportar os campos \"descrição\" das listas de dados" | "Esporta la \"Descrizione\" delle liste dati";
|
|
197
211
|
static get ExportOnlySelectedDocuments(): "Nur ausgewählte Dokumente exportieren" | "Export only selected documents" | "Exportar solo los documentos seleccionados" | "Exporter uniquement les documents sélectionnés" | "Exportar apenas os documentos selecionados" | "Esporta solo i documenti selezionati";
|
|
198
212
|
static get ExportSelectedColumnsAndFormatLabel(): string;
|
|
@@ -200,7 +214,9 @@ export declare class SDKUI_Localizator {
|
|
|
200
214
|
static get ExtractedFromOtherUser(): string;
|
|
201
215
|
static get ExtractedOn(): "Ausgezogen am" | "Extracted on" | "Extraído el" | "Extrait le" | "Extraído em" | "Estratto il";
|
|
202
216
|
static get EvaluateResult(): "Bewerten Sie das Ergebnis" | "Evaluate result" | "Valorar el resultado" | "Évalue les résultats" | "Avalia os resultados" | "Valuta il risultato";
|
|
217
|
+
static get Expiration(): "Ablaufdatum" | "Expiration" | "Fecha de expiración" | "Date d'expiration" | "Data de expiração" | "Scadenza";
|
|
203
218
|
static get ExpertMode(): "Expertenmodus" | "Expert mode" | "Modo experto" | "Mode expert" | "Modo especialista" | "Modalità esperto";
|
|
219
|
+
static get Expiring(): "Ablaufend" | "Expiring" | "Por vencer" | "Expirant" | "Vencendo" | "In scadenza";
|
|
204
220
|
static get Export(): "Exportieren" | "Export" | "Exportar" | "Exporter" | "Esporta";
|
|
205
221
|
static get ExportTo(): string;
|
|
206
222
|
static get ExportMRN(): "Exportieren MRN" | "Export MRN" | "Exportar MRN" | "Exporter MRN";
|
|
@@ -252,6 +268,8 @@ export declare class SDKUI_Localizator {
|
|
|
252
268
|
static get GetFileDeletionErrorMessage(): "Fehler beim Löschen der Datei" | "Error deleting the file" | "Error al eliminar el archivo" | "Erreur lors de la suppression du fichier" | "Erro ao excluir o arquivo" | "Errore nell'eliminazione del file";
|
|
253
269
|
static get GetFileUploadErrorMessage(): "Fehler beim Hochladen" | "Error during upload" | "Error al subir el archivo" | "Erreur lors du téléchargement" | "Erro ao carregar o arquivo" | "Errore nel caricamento";
|
|
254
270
|
static get GetFolderDeletionErrorMessage(): "Fehler beim Löschen des Ordners" | "Error deleting the folder" | "Error al eliminar la carpeta" | "Erreur lors de la suppression du dossier" | "Erro ao excluir a pasta" | "Errore nell'eliminazione della cartella";
|
|
271
|
+
static get GoTo(): "Gehe zu" | "Go to" | "Ir a" | "Aller à" | "Vai a";
|
|
272
|
+
static get GoToToday(): "Gehe zu heute" | "Go to today" | "Ir a hoy" | "Aller à aujourd'hui" | "Ir para hoje" | "Vai a oggi";
|
|
255
273
|
static get Grids(): string;
|
|
256
274
|
static get Hide_CompleteName(): "Vollständigen Namen ausblenden" | "Hide full name" | "Ocultar nombre completo" | "Masquer le nom complet" | "Ocultar nome completo" | "Nascondi nome completo";
|
|
257
275
|
static get HideFloatingBar(): string;
|
|
@@ -260,6 +278,7 @@ export declare class SDKUI_Localizator {
|
|
|
260
278
|
static get HideFormattingOptions(): "Formatierungsoptionen ausblenden" | "Hide formatting options" | "Ocultar opciones de formato" | "Masquer les options de formatage" | "Ocultar opções de formatação" | "Nascondi opzioni di formattazione";
|
|
261
279
|
static get HideMetadata(): string;
|
|
262
280
|
static get HideSearch(): "Suche ausblenden" | "Hide search" | "Ocultar búsqueda" | "Masquer la recherche" | "Ocultar pesquisa" | "Nascondi ricerca";
|
|
281
|
+
static get High(): "Hoch" | "High" | "Alta" | "Élevée";
|
|
263
282
|
static get HistoryActionLabel(): string;
|
|
264
283
|
static get HistoryLabel(): string;
|
|
265
284
|
static get ID_Hide(): "Ausblenden ID" | "Hide ID" | "Ocultar ID" | "Masquer ID" | "Nascondi ID";
|
|
@@ -272,6 +291,7 @@ export declare class SDKUI_Localizator {
|
|
|
272
291
|
static get IndexingDelete(): string;
|
|
273
292
|
static get IndexingInformation(): string;
|
|
274
293
|
static get IndexOrReindex(): string;
|
|
294
|
+
static get InProgress(): "Laufende" | "In Progress" | "En curso" | "En cours" | "Em andamento" | "In corso";
|
|
275
295
|
static get InsertYourEmail(): "Geben Sie Ihre E-Mail ein" | "Insert your Email" | "Inserta tu Email" | "Insérez votre e-mail" | "Insira seu e-mail" | "Inserisci la tua email";
|
|
276
296
|
static get InsertOTP(): "Geben Sie den OTP-Code ein" | "Insert OTP code" | "Insertar código OTP" | "Insérer le code OTP" | "Insira o código OTP" | "Inserisci il codice OTP";
|
|
277
297
|
static get Interrupt(): "Unterbrechen" | "Interrupt" | "interrumpir" | "Interrompre" | "Interromper" | "Interrompere";
|
|
@@ -284,6 +304,7 @@ export declare class SDKUI_Localizator {
|
|
|
284
304
|
static get LastVersion(): string;
|
|
285
305
|
static get Latest(): string;
|
|
286
306
|
static get LexProt(): "Lex-Schutz" | "Lex protection" | "Protección Lex" | "Protection Lex" | "Proteção Lex" | "Protezione Lex";
|
|
307
|
+
static get List(): "Liste" | "List" | "Lista";
|
|
287
308
|
static get List_Hide(): "Liste ausblenden" | "Hide list" | "Ocultar lista" | "Masquer la liste" | "Nascondi la lista";
|
|
288
309
|
static get List_Show(): "liste anzeigen" | "Show list" | "Ver lista" | "Afficher la liste" | "Visualizza la lista";
|
|
289
310
|
static get Loading(): "Laden" | "Loading" | "Carga" | "Chargement" | "Caricamento";
|
|
@@ -293,7 +314,9 @@ export declare class SDKUI_Localizator {
|
|
|
293
314
|
static get Login(): string;
|
|
294
315
|
static get LogDelete(): "Löschen der Logik" | "Logical delete" | "Cancelación lógica" | "Suppression logique" | "Lógica de cancelamento" | "Cancellazione logica";
|
|
295
316
|
static get Logout(): "Abmelden" | "Logout" | "Cerrar sesión" | "Déconnexion" | "Sair" | "Esci";
|
|
317
|
+
static get Low(): "Niedrig" | "Low" | "Baja" | "Faible" | "Baixa" | "Bassa";
|
|
296
318
|
static get MakeEditable(): "Bearbeitbar machen" | "Make editable" | "Hacer editable" | "Rendre modifiable" | "Faça editável" | "Rendi editabile";
|
|
319
|
+
static get MarkAs(): "Als markieren" | "Mark as" | "Marcar como" | "Marquer comme" | "Segna come";
|
|
297
320
|
static get Max_Value(): "Der Maximalwert ist {{0}}" | "The maximum value is {{0}}" | "El valor máximo es {{0}}" | "La valeur maximale est {{0}}" | "O valor máximo é {{0}}" | "Il valore massimo è {{0}}";
|
|
298
321
|
static get MaxDcmtsToBeReturned(): "Maximale Anzahl von Dokumenten" | "Max number of documents" | "Número máximo de documentos" | "Nombre maximum de documents" | "O número máximo de documentos" | "Numero massimo di documenti";
|
|
299
322
|
static get Maximize(): "Maximieren" | "Maximize" | "Maximizar" | "Maximiser" | "Massimizza";
|
|
@@ -335,7 +358,12 @@ export declare class SDKUI_Localizator {
|
|
|
335
358
|
static get Move(): string;
|
|
336
359
|
static get Name(): "Name" | "Nombre" | "Nom" | "Nome";
|
|
337
360
|
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";
|
|
338
|
-
static get
|
|
361
|
+
static get NameTooLong(): "Der Name ist zu lang: Maximal {{0}} Zeichen" | "Name is too long: Max {{0}} characters" | "El nombre es demasiado largo: Máximo {{0}} caracteres" | "Le nom est trop long : Maximum {{0}} caractères" | "O nome é demasiado longo: Máximo {{0}} caracteres" | "Il nome è troppo lungo: massimo {{0}} caratteri";
|
|
362
|
+
static get NewAssignedActivities(): string;
|
|
363
|
+
static get NewAssignedActivity(): string;
|
|
364
|
+
static get NewAssignedActivitiesNumber(): string;
|
|
365
|
+
static get NewMale(): "Neu" | "New" | "Nuevo" | "Nouveau" | "Novo" | "Nuovo";
|
|
366
|
+
static get NewFemale(): "Neu" | "New" | "Nuevas" | "Nouvelles" | "Novas" | "Nuova";
|
|
339
367
|
static get NewOTP(): "Neues OTP" | "New OTP" | "Nueva OTP" | "Nouveau l'OTP" | "Nova OTP" | "Nuova OTP";
|
|
340
368
|
static get NewPassword(): "Neues Kennwort" | "New password" | "Nueva contraseña" | "Nouveau mot de passe" | "Nova Senha" | "Password nuova";
|
|
341
369
|
static get Next(): "Weiter" | "Next" | "Siguiente" | "Suivant" | "Seguinte" | "Successivo";
|
|
@@ -349,6 +377,7 @@ export declare class SDKUI_Localizator {
|
|
|
349
377
|
static get NoMessagesFound(): string;
|
|
350
378
|
static get NoPanelSelected(): string;
|
|
351
379
|
static get NoResultsFound(): string;
|
|
380
|
+
static get NoSource(): "Keine Quelle" | "No Source" | "Ninguna fuente" | "Aucune source" | "Nenhuma fonte" | "Nessun Origine";
|
|
352
381
|
static get NoneSelection(): "Keine Auswahl" | "No selection" | "Ninguna selección" | "Pas de sélections" | "Nenhuma seleção" | "Nessuna selezione";
|
|
353
382
|
static get NotAvailable(): string;
|
|
354
383
|
static get OfSystem(): "Des Systems" | "Of system" | "Del sistema" | "Du système" | "Do sistema" | "Di sistema";
|
|
@@ -361,6 +390,7 @@ export declare class SDKUI_Localizator {
|
|
|
361
390
|
static get OnBehalfOf(): "im Auftrag von" | "on behalf of" | "a nombre de" | "de la part de" | "em nome de" | "per conto di";
|
|
362
391
|
static get OneMore(): "andere" | "more" | "otro" | "autre" | "outro" | "altro";
|
|
363
392
|
static get OperationFilesInterrupted(): string;
|
|
393
|
+
static get OperationNotAllowed(): string;
|
|
364
394
|
static get OperationResult(): "Operationsergebnis" | "Operation result" | "Resultado de la operación" | "Résultat de l'opération" | "Resultado da operação" | "Esito operazione";
|
|
365
395
|
static get OperationSuccess(): "Vorgang erfolgreich abgeschlossen" | "Operation completed successfully" | "Operación completada con éxito" | "Opération terminée avec succès" | "Operação concluída com sucesso" | "Operazione completata con successo";
|
|
366
396
|
static get OperationType(): "Art der Operation" | "Operation type" | "Tipo de operación" | "Type d'opération" | "Tipo de operação" | "Tipo operazione";
|
|
@@ -405,9 +435,12 @@ export declare class SDKUI_Localizator {
|
|
|
405
435
|
static get PasteFromClipboard(): string;
|
|
406
436
|
static get Parameters(): "Parameter" | "Parameters" | "Parámetros" | "Paramètres" | "Parâmetros" | "Parametri";
|
|
407
437
|
static get PDFDocument(): string;
|
|
438
|
+
static get Pending(): "Ausstehend" | "Pending" | "Pendiente" | "En attente" | "Pendente" | "In attesa";
|
|
408
439
|
static get Perms(): "Berechtigungen" | "Permissions" | "Permisos" | "Autorisations" | "Permissão" | "Permessi";
|
|
440
|
+
static get PersonalTaskAssignmentMessage(): "Persönliche Aufgabe" | "Personal task" | "Tarea personal" | "Tâche personnelle" | "Tarefa pessoal" | "Attività personale";
|
|
409
441
|
static get PhysDelete(): "Physische Stornierung" | "Physical delete" | "Cancelación física" | "Supression" | "Cancelamento física" | "Cancellazione fisica";
|
|
410
442
|
static get PhysicalHistoryDeletion(): string;
|
|
443
|
+
static get Postponed(): "Verschoben" | "Postponed" | "Aplazada" | "Reportée" | "Adiadas" | "Rinviata";
|
|
411
444
|
static get Practice(): "Praxis" | "Practice" | "Práctica" | "Pratique" | "Prática" | "Pratica";
|
|
412
445
|
static get PreparingFileForArchive(): "Datei für Archivierung vorbereiten..." | "Preparing file for archive..." | "Preparando archivo para archivar..." | "Préparation du fichier pour l'archive..." | "Preparando arquivo para arquivar..." | "Preparazione del file per l'archivio...";
|
|
413
446
|
static get Preview(): "Vorschau" | "Preview" | "Vista previa" | "Aperçu" | "Pré-visualização" | "Anteprima";
|
|
@@ -417,8 +450,7 @@ export declare class SDKUI_Localizator {
|
|
|
417
450
|
static get PreviewView(): string;
|
|
418
451
|
static get Previous(): "Vorherige" | "Previous" | "Anterior" | "Précédent" | "Precedente";
|
|
419
452
|
static get Priority(): string;
|
|
420
|
-
static get
|
|
421
|
-
static get PriorityLow(): string;
|
|
453
|
+
static get PriorityLegend(): "Legende der Prioritäten" | "Priority Legend" | "Leyenda de prioridades" | "Légende des priorités" | "Lenda das prioridades" | "Legenda delle priorità";
|
|
422
454
|
static get ProcessedItems(): "Durchdachte Elemente" | "Processed items" | "Elementos elaborados" | "Items traités" | "Itens processados" | "Elementi elaborati";
|
|
423
455
|
static get Properties(): "Eigenschaften" | "Properties" | "Propiedades" | "Propriétés" | "Propriedades" | "Proprietà";
|
|
424
456
|
static get QueryClear(): "Query bereinigen" | "Clear query" | "Limpiar consulta" | "Efface query" | "Limpar query" | "Pulisci query";
|
|
@@ -437,6 +469,7 @@ export declare class SDKUI_Localizator {
|
|
|
437
469
|
static get Relations(): "Korrelationen" | "Correlations" | "Correlaciones" | "Relations" | "Correlacionados" | "Correlazioni";
|
|
438
470
|
static get RelationManyToMany(): "Folge viele mit vielen" | "Relation many to many" | "Correlación muchos a muchos" | "Corrélation plusieurs à plusieurs" | "Muitos para muitos relação" | "Correlazione molti a molti";
|
|
439
471
|
static get RelationType(): "Art der Beziehung" | "Relation type" | "Tipo de relación" | "Type de relation" | "Tipo de relacionamento" | "Tipo di relazione";
|
|
472
|
+
static get RemoveContextualFilter(): "Kontextbezogenen Filter entfernen" | "Remove contextual filter" | "Eliminar filtro contextual" | "Supprimer le filtre contextuel" | "Remover filtro contextual" | "Rimuovi filtro contestuale";
|
|
440
473
|
static get RemoveFromCache(): string;
|
|
441
474
|
static get RemoveFromList(): string;
|
|
442
475
|
static get RemoveFromWorkgroup(): string;
|
|
@@ -451,6 +484,9 @@ export declare class SDKUI_Localizator {
|
|
|
451
484
|
static get RequiredField(): "Erforderliches Feld" | "Required field" | "Campo obligatorio" | "Champ obligatoire" | "Campo obrigatório" | "Campo Obbligatorio";
|
|
452
485
|
static get RequiredNOT(): "Nicht obligatorisch" | "Not mandatory" | "No obligatorio" | "Pas obligatoire" | "Não é obrigatório" | "Non obbligatorio";
|
|
453
486
|
static get Refresh(): "Aktualisieren" | "Refresh" | "Actualizar" | "Mis à jour" | "Refrescar" | "Aggiorna";
|
|
487
|
+
static get Reminder(): "Erinnerung" | "Reminder" | "Recordatorio" | "Rappel" | "Lembrete" | "Promemoria";
|
|
488
|
+
static get ReminderDateMustBeBeforeEndDate(): "Das Erinnerungsdatum muss vor dem Enddatum liegen" | "The reminder date must be before the end date" | "La fecha de recordatorio debe ser anterior a la fecha de finalización" | "La date de rappel doit être antérieure à la date de fin" | "A data de lembrete deve ser anterior à data de término" | "La data di promemoria deve essere precedente alla data di fine";
|
|
489
|
+
static get ReminderSetForToday(): "Es gibt eine Erinnerung, die für heute eingestellt ist und bis zum Ablaufdatum gültig ist" | "There is a reminder set for today, valid until the expiration date" | "Hay un recordatorio establecido para hoy, válido hasta la fecha de vencimiento" | "Il y a un rappel réglé pour aujourd'hui, valable jusqu'à la date d'échéance" | "Há um lembrete definido para hoje, válido até à data de expiração" | "È presente un promemoria impostato per oggi, valido fino alla data di scadenza";
|
|
454
490
|
static get Remove(): "Entfernen" | "Remove" | "Quitar" | "Supprime" | "Remover" | "Rimuovi";
|
|
455
491
|
static get RemoveAll(): "Alle entfernen" | "Remove all" | "Eliminar todo" | "Supprime tout" | "Remover todos" | "Rimuovi tutto";
|
|
456
492
|
static get RemoveAttachment(): string;
|
|
@@ -468,6 +504,7 @@ export declare class SDKUI_Localizator {
|
|
|
468
504
|
static get SavedQueryNew(): "Neue Suche speichern" | "Save new search" | "Guardar nueva búsqueda" | "Enregistrer la nouvelle recherche" | "Guardar nova pesquisa" | "Salva nuova ricerca";
|
|
469
505
|
static get SavedQueryUpdate(): "Suche bearbeiten" | "Modify query" | "Modificar búsqueda" | "Modifie la recherche" | "Mudar pesquisa" | "Modifica ricerca";
|
|
470
506
|
static get Search(): "Auf der Suche nach" | "Search" | "Búsqueda" | "Recherche" | "Pesquisa" | "Ricerca";
|
|
507
|
+
static get SearchAction(): "Search" | "Suche" | "Buscar" | "Chercher" | "Pesquisar" | "Cerca";
|
|
471
508
|
static get Search_Advanced(): "Erweiterte Suche" | "Advanced search" | "Búsqueda avanzada" | "Recherche avancée" | "Pesquisa Avançada" | "Ricerca avanzata";
|
|
472
509
|
static get Search_Easy(): "Einfache Suche" | "Easy search" | "Búsqueda fácil" | "Recherche facile" | "Pesquisa fácil" | "Ricerca facilitata";
|
|
473
510
|
static get Search_EnterValue(): "Geben Sie einen Wert ein, nach dem gesucht werden soll" | "Enter a value to search" | "Introducir un valor para buscar" | "Entrez une valeur à rechercher" | "Digite um valor para pesquisar" | "Inserire un valore da ricercare";
|
|
@@ -486,6 +523,7 @@ export declare class SDKUI_Localizator {
|
|
|
486
523
|
static get Selected(): "Ausgewählt" | "Selected" | "Sélectionné" | "Selecionado" | "Seleccionados" | "Selezionati";
|
|
487
524
|
static get SelectDesiredFilters(): "Wählen Sie die gewünschten Filter aus" | "Select the desired filters" | "Selecciona los filtros deseados" | "Sélectionnez les filtres souhaités" | "Selecione os filtros desejados" | "Seleziona i filtri desiderati";
|
|
488
525
|
static get SelectedItems(): "Ausgewählte Artikel" | "Selected items" | "Artículos seleccionados" | "Articles sélectionnés" | "Itens selecionados" | "Elementi selezionati";
|
|
526
|
+
static get SelectViewMode(): "Wählen Sie zwischen Listenansicht und Agendaansicht" | "Choose between list view and agenda view" | "Elija entre vista de lista y vista de agenda" | "Choisissez entre la vue liste et la vue agenda" | "Escolha entre a vista de lista e a vista de agenda" | "Scegli tra la vista elenco e la vista agenda";
|
|
489
527
|
static get Send(): "Senden" | "Send" | "Enviar" | "Envoyer" | "Invia";
|
|
490
528
|
static get SendLinkByMail(): "Link per E-Mail senden" | "Send link via mail" | "Enviar enlace por correo electrónico" | "Envoyer le lien par email" | "Enviar link por e-mail" | "Invia link tramite mail";
|
|
491
529
|
static get SendToSupport(): "An den Support senden" | "Send to support" | "Enviar a soporte" | "Envoyer au support" | "Enviar para suporte" | "Invia a supporto";
|
|
@@ -526,11 +564,20 @@ export declare class SDKUI_Localizator {
|
|
|
526
564
|
static get SpecialOperators(): "Spezielle Operatoren" | "Special operators" | "Operadores especiales" | "Opérateurs spéciaux" | "Os operadores especiais" | "Operatori speciali";
|
|
527
565
|
static get StandardMode(): "Standardmodus" | "Standard mode" | "Modo estándar" | "Mode standard" | "Modo padrão" | "Modalità standard";
|
|
528
566
|
static get Start(): "Start" | "Zum Booten" | "Arrancar" | "Pour démarrer" | "Para inicializar" | "Avviare";
|
|
567
|
+
static get StartDate(): "Startdatum" | "Start date" | "Fecha de inicio" | "Date de début" | "Data de início" | "Data di inizio";
|
|
568
|
+
static get StartDateMustBeBeforeEndDate(): "Das Startdatum muss vor dem Enddatum liegen" | "The start date must be before the end date" | "La fecha de inicio debe ser anterior a la fecha de finalización" | "La date de début doit être antérieure à la date de fin" | "A data de início deve ser anterior à data de término" | "La data di inizio deve essere precedente alla data di fine";
|
|
529
569
|
static get Statistics(): "Statistiken" | "Statistics" | "Estadística" | "Statistiques" | "Estatísticas" | "Statistiche";
|
|
530
570
|
static get Status(): "Status" | "Estado" | "Statut" | "Stato";
|
|
531
571
|
static get Subject(): "Betreff" | "Subject" | "Asunto" | "Objet" | "Assunto" | "Oggetto";
|
|
532
572
|
static get Summary(): "Zusammenfassung" | "Summary" | "Resumen" | "Résumé" | "Resumo" | "Riepilogo";
|
|
533
573
|
static get SwitchUser(): "Benutzer wechseln" | "Switch user" | "Cambiar usuario" | "Changer d'utilisateur" | "Mudar de usuário" | "Cambia utente";
|
|
574
|
+
static get TaskAssignedMessage(): "Die Aufgabe wurde von Benutzer '{{0}}' zugewiesen. Nur die Felder 'Status' und 'Erinnerung' können bearbeitet werden, da sie für die Person, die mit der Arbeit fortfährt, relevant sind" | "The task was assigned by user '{{0}}'. Only the 'Status' and 'Reminder' fields can be edited, as they are relevant for the person who will continue with the work" | "La tarea fue asignada por el usuario '{{0}}'. Solo se pueden editar los campos 'Estado' y 'Recordatorio', ya que son relevantes para la persona que continuará con el trabajo" | "La tâche a été assignée par l'utilisateur '{{0}}'. Seuls les champs 'Statut' et 'Rappel' peuvent être modifiés, car ils sont pertinents pour la personne qui poursuivra le travail" | "A tarefa foi atribuída pelo usuário '{{0}}'. Apenas os campos 'Status' e 'Lembrete' podem ser editados, pois são relevantes para quem continuará com o trabalho" | "Attività assegnata dall'utente '{{0}}'. Solo i campi 'Stato' e 'Promemoria' possono essere modificati, in quanto sono rilevanti per chi dovrà proseguire con il lavoro";
|
|
575
|
+
static get TaskAssignedToUserMessage(): "Aufgabe zugewiesen an den Benutzer '{{0}}'" | "Task assigned to user '{{0}}'" | "Tarea asignada al usuario '{{0}}'" | "Tâche assignée à l'utilisateur '{{0}}'" | "Tarefa atribuída ao usuário '{{0}}'" | "Attività assegnata all'utente '{{0}}'";
|
|
576
|
+
static get TaskConsideredExpiring(): "Die Aufgabe wird als ablaufend betrachtet, wenn" | "The task is considered expiring if" | "La tarea se considera por vencer si" | "La tâche est considérée comme expirante si" | "A tarefa é considerada vencendo se" | "L'attività è considerata in scadenza se";
|
|
577
|
+
static get TasksEmpty(): string;
|
|
578
|
+
static get TaskSavedSuccessfully(): string;
|
|
579
|
+
static get TaskSaveError(): string;
|
|
580
|
+
static get TaskXofY(): string;
|
|
534
581
|
static get Template(): "Modell des Autos" | "Template" | "Modelo" | "Modèle" | "Modello";
|
|
535
582
|
static get Today(): "Heute" | "Today" | "Hoy" | "Aujourd'hui" | "Hoje" | "Oggi";
|
|
536
583
|
static get ToggleMode(): "Modus umschalten" | "Toggle Mode" | "Cambiar modo" | "Changer de mode" | "Alternar modo" | "Cambia modalità";
|
|
@@ -585,6 +632,7 @@ export declare class SDKUI_Localizator {
|
|
|
585
632
|
static get Version(): string;
|
|
586
633
|
static get View_Metadato(): "Anzeige (Methadaten)" | "Visualization (metadata)" | "Visualización (metadato)" | "Visualisation (métadonnée)" | "Display (metadados)" | "Visualizzazione (metadato)";
|
|
587
634
|
static get ViewEditMetadata(): string;
|
|
635
|
+
static get ViewExpiringTasks(): "Anzeigen ablaufender Aufgaben" | "View expiring tasks" | "Ver tareas por vencer" | "Voir les tâches expirantes" | "Ver tarefas vencendo" | "Visualizza le attività in scadenza";
|
|
588
636
|
static get ViewWithCheckOption(): "Kontrolle über Archivierung und Bearbeitung" | "Check on archive and update" | "Control en almacenamiento y modificación" | "Contrôle de l'archivage et la modifie" | "Controle de arquivamento e edição" | "Controllo su archiviazione e modifica";
|
|
589
637
|
static get Visible(): "Sichtbar" | "Visible" | "Visibles" | "Visibiles" | "Visíveis" | "Visibili";
|
|
590
638
|
static get VisibleItems(): "sichtbare Elemente" | "Visible items" | "elementos visibles" | "éléments visibles" | "itens visíveis" | "Elementi visibili";
|
|
@@ -592,6 +640,8 @@ export declare class SDKUI_Localizator {
|
|
|
592
640
|
static get Welcome(): "Willkommen" | "Welcome" | "Bienvenido" | "Bienvenue" | "Bem-vindo" | "Benvenuto";
|
|
593
641
|
static get WelcomeTo(): "Willkommen bei {{0}}" | "Welcome to {{0}}" | "Bienvenido a {{0}}" | "Bienvenue sur {{0}}" | "Bem-vindo à {{0}}" | "Benvenuto su {{0}}";
|
|
594
642
|
static get WhatWouldYouLikeToArchive(): "Was möchten Sie archivieren?" | "What would you like to archive?" | "¿Qué te gustaría archivar?" | "Que souhaitez-vous archiver?" | "O que gostaria de arquivar?" | "Cosa vorresti archiviare?";
|
|
643
|
+
static get Widget_Activities(): "Aktivitäten" | "Activities" | "Actividades" | "Activités" | "Atividades" | "Attività";
|
|
644
|
+
static get Workflow(): "Arbeitsablauf" | "Workflow" | "Flujo de trabajo" | "Flux de travail" | "Fluxo de trabalho" | "Flusso di lavoro";
|
|
595
645
|
static get WorkflowAddDcmtToWg(): "Hinzufügen des Dokuments zu Arbeitsgruppendokumenten" | "Add the document to the workgroup documents" | "Añadir el documento a los documentos del grupo de trabajo" | "Ajouter le document aux documents du groupe de travail" | "Adicione o documento aos documentos do grupo de trabalho" | "Aggiungere il documento ai documenti del gruppo di lavoro";
|
|
596
646
|
static get WorkflowAddDraftToWg(): "Hinzufügen des Dokuments zu Arbeitsgruppenentwürfen" | "Add the document to the workgroup drafts" | "Añadir el documento a los borradores del grupo de trabajo" | "Ajouter le document au brouillon du groupe de travail" | "Adicione o documento ao rascunho do grupo de trabalho" | "Aggiungere il documento alle bozze del gruppo di lavoro";
|
|
597
647
|
static get WorkflowAllowZeroTos(): "0 Empfänger zulassen" | "Allow 0 recipients" | "Permitir 0 destinatarios" | "Autoriser 0 destinataires" | "Permitir 0 destinatários" | "Consenti 0 destinatari";
|