@topconsultnpm/sdkui-react 6.19.0-dev2.2 → 6.19.0-dev2.20

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.
Files changed (66) hide show
  1. package/lib/components/base/TMCustomButton.js +2 -2
  2. package/lib/components/base/TMDataGridExportForm.d.ts +1 -1
  3. package/lib/components/base/TMDataGridExportForm.js +9 -3
  4. package/lib/components/base/TMFileManager.js +11 -2
  5. package/lib/components/base/TMFileManagerDataGridView.d.ts +2 -0
  6. package/lib/components/base/TMFileManagerDataGridView.js +11 -2
  7. package/lib/components/base/TMFileManagerThumbnailItems.d.ts +2 -0
  8. package/lib/components/base/TMFileManagerThumbnailItems.js +12 -2
  9. package/lib/components/base/TMFileManagerThumbnailsView.d.ts +2 -0
  10. package/lib/components/base/TMFileManagerThumbnailsView.js +2 -2
  11. package/lib/components/base/TMTooltip.d.ts +1 -1
  12. package/lib/components/base/TMTooltip.js +1 -1
  13. package/lib/components/choosers/TMMetadataChooser.d.ts +4 -1
  14. package/lib/components/choosers/TMMetadataChooser.js +14 -6
  15. package/lib/components/editors/TMDateBox.d.ts +1 -1
  16. package/lib/components/features/documents/TMDcmtForm.js +41 -38
  17. package/lib/components/features/documents/TMRelationViewer.js +56 -23
  18. package/lib/components/features/search/TMSavedQuerySelector.js +1 -1
  19. package/lib/components/features/search/TMSearch.js +2 -2
  20. package/lib/components/features/search/TMSearchQueryEditor.js +1 -1
  21. package/lib/components/features/search/TMSearchQueryPanel.js +8 -25
  22. package/lib/components/features/search/TMSearchResult.js +91 -10
  23. package/lib/components/features/search/TMSearchResultsMenuItems.d.ts +2 -1
  24. package/lib/components/features/search/TMSearchResultsMenuItems.js +97 -51
  25. package/lib/components/features/tasks/TMTaskForm.js +1 -1
  26. package/lib/components/features/tasks/TMTasksAgenda.js +3 -3
  27. package/lib/components/features/tasks/TMTasksCalendar.js +1 -1
  28. package/lib/components/features/tasks/TMTasksHeader.js +1 -1
  29. package/lib/components/features/tasks/TMTasksUtils.d.ts +1 -1
  30. package/lib/components/features/tasks/TMTasksUtils.js +1 -1
  31. package/lib/components/features/tasks/TMTasksView.js +1 -1
  32. package/lib/components/features/workflow/TMWorkflowPopup.js +1 -1
  33. package/lib/components/features/workflow/diagram/DiagramItemForm.js +11 -6
  34. package/lib/components/features/workflow/diagram/RecipientList.js +1 -1
  35. package/lib/components/features/workflow/diagram/WFDiagram.js +20 -6
  36. package/lib/components/forms/TMResultDialog.js +8 -2
  37. package/lib/components/grids/TMBlogsPost.d.ts +1 -0
  38. package/lib/components/grids/TMBlogsPost.js +6 -1
  39. package/lib/components/grids/TMBlogsPostUtils.js +1 -1
  40. package/lib/components/grids/TMRecentsManager.js +1 -1
  41. package/lib/components/layout/panelManager/TMPanelManagerContainer.d.ts +1 -0
  42. package/lib/components/layout/panelManager/TMPanelManagerContainer.js +2 -2
  43. package/lib/components/layout/panelManager/TMPanelManagerContext.js +0 -1
  44. package/lib/components/layout/panelManager/TMPanelManagerToolbar.js +2 -1
  45. package/lib/components/layout/panelManager/types.d.ts +1 -0
  46. package/lib/components/pages/TMPage.js +1 -1
  47. package/lib/components/query/TMQuerySummary.d.ts +1 -0
  48. package/lib/components/query/TMQuerySummary.js +3 -3
  49. package/lib/components/settings/SettingsAppearance.js +5 -5
  50. package/lib/components/viewers/TMDataListItemViewer.d.ts +1 -1
  51. package/lib/components/viewers/TMMidViewer.d.ts +1 -1
  52. package/lib/components/viewers/TMTidViewer.d.ts +1 -1
  53. package/lib/helper/GlobalStyles.d.ts +2 -0
  54. package/lib/helper/GlobalStyles.js +10 -0
  55. package/lib/helper/SDKUI_Localizator.d.ts +34 -1
  56. package/lib/helper/SDKUI_Localizator.js +342 -12
  57. package/lib/helper/TMCustomSearchBar.js +1 -1
  58. package/lib/helper/TMIcons.d.ts +1 -0
  59. package/lib/helper/TMIcons.js +3 -0
  60. package/lib/helper/TMUtils.d.ts +1 -4
  61. package/lib/helper/TMUtils.js +13 -9
  62. package/lib/helper/index.d.ts +1 -0
  63. package/lib/helper/index.js +1 -0
  64. package/lib/hooks/useRelatedDocuments.js +24 -24
  65. package/lib/ts/types.d.ts +1 -1
  66. package/package.json +4 -4
@@ -48,6 +48,8 @@ export declare class SDKUI_Localizator {
48
48
  static get ArchiveConstraints_OnlyMetadata(): "Nur Methadatenarchivierung erlauben" | "Allow metadata only archiving" | "Permitir solo almacenamiento de metadatos" | "Autorise uniquement l'archivage de métadonnées" | "Permitir somente os metadados de arquivamento" | "Consenti solo archiviazioni di metadati";
49
49
  static get ArchivedDocuments(): string;
50
50
  static get ArchiveID(): "Armazena" | "Dokumentarisches Archiv" | "Documental archive" | "Archivo de documentos" | "Archivage des documents" | "Archivio documentale";
51
+ static get ArchiveDetailDocument(): "Detaildokument archivieren" | "Archive detail document" | "Archivar documento de detalle" | "Archiver le document détail" | "Arquivar documento de detalhe" | "Archivia documento dettaglio";
52
+ static get ArchiveMasterDocument(): "Master-Dokument archivieren" | "Archive master document" | "Archivar documento maestro" | "Archiver le document maître" | "Arquivar documento mestre" | "Archivia documento master";
51
53
  static get Arguments(): "Themen" | "Arguments" | "Argumentos" | "Sujets" | "Tópicos" | "Argomenti";
52
54
  static get AssignedBy(): "Zugewiesen von" | "Assigned by" | "Asignado por" | "Assigné par" | "Atribuído por" | "Assegnata da";
53
55
  static get AssignedByMe(): "Von mir zugewiesene" | "Assigned by me" | "Por mí" | "Que j'ai assignées" | "Atribuídas por mim" | "Assegnate da me";
@@ -74,6 +76,7 @@ export declare class SDKUI_Localizator {
74
76
  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";
75
77
  static get ByDate(): string;
76
78
  static get Calendar(): "Kalender" | "Calendar" | "Calendario" | "Calendrier" | "Calendário";
79
+ static get CancelCheckOut(): string;
77
80
  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";
78
81
  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";
79
82
  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";
@@ -181,6 +184,8 @@ export declare class SDKUI_Localizator {
181
184
  static get Documents(): string;
182
185
  static get DocumentOperations(): string;
183
186
  static get Domain(): "Domäne" | "Domain" | "Dominio" | "Domaine";
187
+ static get Dossier(): "Übung" | "Dossier" | "Expediente" | "Pratique" | "Prática" | "Pratica";
188
+ static get Dossiers(): "Akten" | "Dossiers" | "Expedientes" | "Pratiques" | "Práticas" | "Pratiche";
184
189
  static get DownloadFile(): string;
185
190
  static get Download_in_Process(): "Download läuft" | "Download in progress" | "Descarga en curso" | "Téléchargement en cours" | "Download em progresso" | "Download in corso";
186
191
  static get DownloadXMLAttachments(): string;
@@ -211,6 +216,8 @@ export declare class SDKUI_Localizator {
211
216
  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.";
212
217
  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)";
213
218
  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)";
219
+ static get ExecuteCancelCheckOutQuestion(): string;
220
+ static get ExecuteCheckOutQuestion(): string;
214
221
  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";
215
222
  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";
216
223
  static get ExportSelectedColumnsAndFormatLabel(): string;
@@ -321,6 +328,8 @@ export declare class SDKUI_Localizator {
321
328
  static get Low(): "Niedrig" | "Low" | "Baja" | "Faible" | "Baixa" | "Bassa";
322
329
  static get MakeEditable(): "Bearbeitbar machen" | "Make editable" | "Hacer editable" | "Rendre modifiable" | "Faça editável" | "Rendi editabile";
323
330
  static get MarkAs(): "Als markieren" | "Mark as" | "Marcar como" | "Marquer comme" | "Segna come";
331
+ static get Match(): "Übereinstimmen" | "Match" | "Emparejar" | "Associer" | "Corresponder" | "Abbina";
332
+ static get MatchManyDocumentsManyToMany(): "Mehrere Dokumente mehrfach zuordnen" | "Match many documents many to many" | "Emparejar muchos documentos de muchos a muchos" | "Associer plusieurs documents plusieurs à plusieurs" | "Corresponder muitos documentos de muitos para muitos" | "Abbina documenti molti a molti";
324
333
  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}}";
325
334
  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";
326
335
  static get Maximize(): "Maximieren" | "Maximize" | "Maximizar" | "Maximiser" | "Massimizza";
@@ -377,6 +386,20 @@ export declare class SDKUI_Localizator {
377
386
  static get NoDataToDisplay(): "Keine Daten zum Anzeigen" | "No data to display" | "No hay datos para mostrar" | "Aucune donnée à afficher" | "Sem dados para exibir" | "Nessun dato da visualizzare";
378
387
  static get NoDcmtFound(): "Kein Dokument gefunden" | "No documents found" | "Ningún documento encontrado" | "Pas de documents trouvés" | "Nenhum documento encontrado" | "Nessun documento trovato";
379
388
  static get NoDcmtSelected(): string;
389
+ static get NoDetailDocumentFoundForArchiving(): "Kein Detaildokument zur Archivierung gefunden." | "No detail document found for archiving." | "No se encontró ningún documento de detalle para archivar." | "Aucun document détail trouvé pour l'archivage." | "Nenhum documento de detalhe encontrado para arquivamento." | "Nessun documento di dettaglio trovato per l'archiviazione.";
390
+ static get NoDocumentMatchFound(): "Kein zugeordnetes Dokument gefunden." | "No document match found." | "No se encontró ningún documento emparejado." | "Aucun document associé trouvé." | "Nenhum documento correspondente encontrado." | "Nessun documento abbinato trovato.";
391
+ static get NoDocumentSelectedForManyToManyMatching(): "Kein Dokument für die Mehrfach-Zuordnung ausgewählt." | "No document selected for many-to-many matching." | "Ningún documento seleccionado para el emparejamiento de muchos a muchos." | "Aucun document sélectionné pour l'association plusieurs à plusieurs." | "Nenhum documento selecionado para correspondência de muitos para muitos." | "Nessun documento selezionato per l'abbinamento molti a molti.";
392
+ static get NoDocumentSelectedForManyToManyUnmatching(): "Kein Dokument für die Aufhebung der Mehrfach-Zuordnung ausgewählt." | "No document selected for many-to-many unmatching." | "Ningún documento seleccionado para el desemparejamiento de muchos a muchos." | "Aucun document sélectionné pour la dissociation plusieurs à plusieurs." | "Nenhum documento selecionado para descorrespondência de muitos para muitos." | "Nessun documento selezionato per il disabbinamento molti a molti.";
393
+ static get NoDocumentToMatch(): "Kein Dokument zuzuordnen. Alle resultierenden Dokumente sind bereits zugeordnet." | "No document to match. All resulting documents are already matched." | "Ningún documento para emparejar. Todos los documentos resultantes ya están emparejados." | "Aucun document à associer. Tous les documents résultants sont déjà associés." | "Nenhum documento para corresponder. Todos os documentos resultantes já estão correspondidos." | "Nessun documento da abbinare. Tutti i documenti risultanti sono già abbinati.";
394
+ static get NoManyToManyMatchingRelationshipAssociatedWithRetrievalQuery(): "Keine Mehrfach-Zuordnungsbeziehung mit Abrufabfrage verknüpft." | "No many-to-many matching relationship associated with retrieval query." | "Ninguna relación de emparejamiento de muchos a muchos asociada con la consulta de recuperación." | "Aucune relation d'association plusieurs à plusieurs associée à la requête de récupération." | "Nenhuma relação de correspondência de muitos para muitos associada à consulta de recuperação." | "Nessuna query di recupero associata alla relazione di abbinamento molti a molti.";
395
+ static get NoManyToManyMatchingRelationshipDefined(): "Keine Mehrfach-Zuordnungsbeziehung im System definiert." | "No many-to-many matching relationship defined in the system." | "Ninguna relación de emparejamiento de muchos a muchos definida en el sistema." | "Aucune relation d'association plusieurs à plusieurs définie dans le système." | "Nenhuma relação de correspondência de muitos para muitos definida no sistema." | "Nessuna relazione di abbinamento molti a molti definita nel sistema.";
396
+ static get NoManyToManyMatchingRelationshipDefinedForSelectedDocumentType(): "Keine Mehrfach-Zuordnungsbeziehung für den ausgewählten Dokumenttyp definiert." | "No many-to-many matching relationship defined for selected document type." | "Ninguna relación de emparejamiento de muchos a muchos definida para el tipo de documento seleccionado." | "Aucune relation d'association plusieurs à plusieurs définie pour le type de document sélectionné." | "Nenhuma relação de correspondência de muitos para muitos definida para o tipo de documento selecionado." | "Nessuna relazione di abbinamento molti a molti definita per il tipo di documento selezionato.";
397
+ static get NoManyToManyUnmatchingRelationshipAssociatedWithRetrievalQuery(): "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung mit Abrufabfrage verknüpft." | "No many-to-many unmatching relationship associated with retrieval query." | "Ninguna relación de desemparejamiento de muchos a muchos asociada con la consulta de recuperación." | "Aucune relation de dissociation plusieurs à plusieurs associée à la requête de récupération." | "Nenhuma relação de descorrespondência de muitos para muitos associada à consulta de recuperação." | "Nessuna query di recupero associata alla relazione di disabbinamento molti a molti.";
398
+ static get NoManyToManyUnmatchingRelationshipDefined(): "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung im System definiert." | "No many-to-many unmatching relationship defined in the system." | "Ninguna relación de desemparejamiento de muchos a muchos definida en el sistema." | "Aucune relation de dissociation plusieurs à plusieurs définie dans le système." | "Nenhuma relação de descorrespondência de muitos para muitos definida no sistema." | "Nessuna relazione di disabbinamento molti a molti definita nel sistema.";
399
+ static get NoManyToManyUnmatchingRelationshipDefinedForSelectedDocumentType(): "Nessuna relazione di abbinamento molti a molti definita per il tipo di documento selezionato." | "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung für den ausgewählten Dokumenttyp definiert." | "No many-to-many unmatching relationship defined for selected document type." | "Ninguna relación de desemparejamiento de muchos a muchos definida para el tipo de documento seleccionado." | "Aucune relation de dissociation plusieurs à plusieurs définie pour le type de document sélectionné." | "Nenhuma relação de descorrespondência de muitos para muitos definida para o tipo de documento selecionado.";
400
+ static get NoMasterDocumentFoundForArchiving(): "Kein Master-Dokument zur Archivierung gefunden." | "No master document found for archiving." | "No se encontró ningún documento maestro para archivar." | "Aucun document maître trouvé pour l'archivage." | "Nenhum documento mestre encontrado para arquivamento." | "Nessun documento di master trovato per l'archiviazione";
401
+ static get NoMatchFoundForDetailDocuments(): "Keine Zuordnung für Detaildokumente gefunden." | "No match found for detail documents." | "No se encontró ninguna correspondencia para los documentos de detalle." | "Aucune correspondance trouvée pour les documents détail." | "Nenhuma correspondência encontrada para documentos de detalhe." | "Nessuna associazione trovata per i documenti di dettaglio";
402
+ static get NoMatchFoundForMasterDocuments(): "Keine Zuordnung für Master-Dokumente gefunden." | "No match found for master documents." | "No se encontró ninguna correspondencia para los documentos maestros." | "Aucune correspondance trouvée pour les documents maîtres." | "Nenhuma correspondência encontrada para documentos mestres." | "Nessuna associazione trovata per i documenti di master";
380
403
  static get NoMessages(): string;
381
404
  static get NoMessagesFound(): string;
382
405
  static get NoPanelSelected(): string;
@@ -445,7 +468,6 @@ export declare class SDKUI_Localizator {
445
468
  static get PhysDelete(): "Physische Stornierung" | "Physical delete" | "Cancelación física" | "Supression" | "Cancelamento física" | "Cancellazione fisica";
446
469
  static get PhysicalHistoryDeletion(): string;
447
470
  static get Postponed(): "Verschoben" | "Postponed" | "Aplazada" | "Reportée" | "Adiadas" | "Rinviata";
448
- static get Practice(): "Praxis" | "Practice" | "Práctica" | "Pratique" | "Prática" | "Pratica";
449
471
  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...";
450
472
  static get Preview(): "Vorschau" | "Preview" | "Vista previa" | "Aperçu" | "Pré-visualização" | "Anteprima";
451
473
  static get PreviewDocument(): "Vorschau-Dokument" | "Preview document" | "Documento de vista previa" | "Document d'aperçu" | "Documento de pré-visualização" | "Anteprima documento";
@@ -542,6 +564,8 @@ export declare class SDKUI_Localizator {
542
564
  static get SharingModes_Private(): "Privat" | "Private" | "Privada" | "Privé" | "Privado" | "Privata";
543
565
  static get SharingModes_Public(): "Öffentlich" | "Public" | "Pública" | "Público" | "Pubblica";
544
566
  static get SharingModes_Shared(): "Geteilt" | "Shared" | "Compartida" | "Partagé" | "Partilhada" | "Condivisa";
567
+ static get SharedArchiving(): "Gemeinsame Archivierung" | "Shared archiving" | "Archivo compartido" | "Archivage partagé" | "Arquivamento compartilhado" | "Archiviazione condivisa";
568
+ static get SharedDocuments(): "Gemeinsame Dokumente" | "Shared documents" | "Documentos compartidos" | "Documents partagés" | "Documentos compartilhados" | "Documenti condivisi";
545
569
  static get Shortcuts(): "Tastenkombinationen" | "Shortcuts" | "Atajos" | "Raccourcis" | "Atalhos" | "Scorciatoie";
546
570
  static get ShowAll(): "Alle anzeigen" | "Show all" | "Mostrar todo" | "Tout afficher" | "Mostrar tudo" | "Mostra tutti";
547
571
  static get ShowFloatingBar(): string;
@@ -553,6 +577,7 @@ export declare class SDKUI_Localizator {
553
577
  static get ShowHideMetadataSystemDesc(): "Anzeigen oder Verbergen von Methadaten des Dokumententypsystems" | "Shows/hides system metadata of selected document type" | "Ver u ocultar los metadatos de sistema del tipo de documento" | "Visualise ou cache les métadonnées de système du type de document" | "Mostra ou oculta o tipo de documento de metadados do sistema" | "Visualizza o nasconde i metadati di sistema del tipo documento";
554
578
  static get ShowLeftPanel(): "Linkes Panel anzeigen" | "Show left panel" | "Mostrar panel izquierdo" | "Afficher le panneau de gauche" | "Mostrar painel esquerdo" | "Mostra il pannello sinistro";
555
579
  static get ShowSearch(): "Suche anzeigen" | "Show search" | "Mostrar búsqueda" | "Afficher la recherche" | "Mostrar pesquisa" | "Mostra ricerca";
580
+ static get ShowSharedDocuments(): "Gemeinsame Dokumente anzeigen" | "Show shared documents" | "Mostrar documentos compartidos" | "Afficher les documents partagés" | "Mostrar documentos compartilhados" | "Mostra documenti condivisi";
556
581
  static get ShowColumnSeparatingLines(): string;
557
582
  static get ShowRowSeparatingLines(): string;
558
583
  static get ShowFullScreen(): "Vollbild anzeigen" | "Show full screen" | "Mostrar pantalla completa" | "Afficher en plein écran" | "Mostrar em tela cheia" | "Mostra a schermo intero";
@@ -605,6 +630,8 @@ export declare class SDKUI_Localizator {
605
630
  static get UnableToGetUpdatedDocumentContent(): "Aktualisierter Dokumentinhalt kann nicht abgerufen werden" | "Unable to get updated document content" | "No se puede obtener el contenido actualizado del documento" | "Impossible d'obtenir le contenu mis à jour du document" | "Não é possível obter o conteúdo atualizado do documento" | "Impossibile ottenere il contenuto aggiornato del documento";
606
631
  static get Undo(): "Änderungen rückgängig machen" | "Undo" | "Anular modificaciones" | "Annule les modifications" | "Anular alterações" | "Annulla modifiche";
607
632
  static get Unfollow(): "Nicht mehr folgen" | "Unfollow" | "Dejar de seguir" | "Ne plus suivre" | "Deixar de seguir" | "Non seguire più";
633
+ static get Unmatch(): "Zuordnung aufheben" | "Unmatch" | "Desemparejar" | "Dissocier" | "Descorresponder" | "Disabbina";
634
+ static get UnmatchManyDocumentsManyToMany(): "Mehrfache Zuordnung von vielen Dokumenten aufheben" | "Unmatch many documents many to many" | "Desemparejar muchos documentos de muchos a muchos" | "Dissocier plusieurs documents plusieurs à plusieurs" | "Descorresponder muitos documentos de muitos para muitos" | "Disabbina documenti molti a molti";
608
635
  static get UnfollowSelectedItem(): string;
609
636
  static get Update(): "Bearbeiten" | "Update" | "Modificar" | "Modifie" | "Modificação" | "Modifica";
610
637
  static get UpdateCompletedSuccessfully(): "Aktualisierung erfolgreich abgeschlossen" | "Update completed successfully" | "Actualización completada con éxito" | "Mise à jour terminée avec succès" | "Atualização concluída com sucesso" | "Aggiornamento completato con successo";
@@ -648,12 +675,16 @@ export declare class SDKUI_Localizator {
648
675
  static get Workflow(): "Arbeitsablauf" | "Workflow" | "Flujo de trabajo" | "Flux de travail" | "Fluxo de trabalho" | "Flusso di lavoro";
649
676
  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";
650
677
  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";
678
+ static get WorkflowAddDcmtAsAttachment(): "Dokument als Anhang zur Praxis hinzufügen" | "Add the document as an attachment to the case" | "Agregar el documento como adjunto al expediente" | "Ajouter le document en tant que pièce jointe au dossier" | "Adicionar o documento como anexo ao processo" | "Aggiungere il documento come allegato della pratica";
679
+ static get WorkflowAddDcmtToDossier(): "Dokument zur Praxis hinzufügen" | "Add the document to the case" | "Agregar el documento al expediente" | "Ajouter le document au dossier" | "Adicionar o documento ao processo" | "Aggiungere il documento alla pratica";
651
680
  static get WorkflowAllowZeroTos(): "0 Empfänger zulassen" | "Allow 0 recipients" | "Permitir 0 destinatarios" | "Autoriser 0 destinataires" | "Permitir 0 destinatários" | "Consenti 0 destinatari";
652
681
  static get WorkflowApproval(): "Workflow-Genehmigung" | "Workflow approval" | "Aprobación de flujo de trabajo" | "Approbation de workflow" | "Aprovação de fluxo de trabalho" | "Approvazione workflow";
653
682
  static get WorkflowAppName(): "Name der Anwendung" | "Application name" | "Nombre de aplicación" | "Nom de l'application" | "Nome da aplicação" | "Nome applicazione";
654
683
  static get WorkflowAppType(): "Anwendungsart" | "Application type" | "Tipo de aplicación" | "Type d'application" | "Tipo de aplicação" | "Tipo applicazione";
655
684
  static get WorkflowConnectionEdit(): "Verbindung bearbeiten" | "Edit Connection" | "Editar conexión" | "Modifier la connexion" | "Editar ligação" | "Modifica Connessione";
656
685
  static get WorkflowDiagramConnectionInvalidNodes(): "Ungültige Verbindung: Quell- oder Zielknoten nicht gefunden." | "Invalid connection: source or sink node not found." | "Conexión no válida: nodo origen o destino no encontrado." | "Connexion invalide : nœud source ou destination introuvable." | "Conexão inválida: nó de origem ou destino não encontrado." | "Connessione non valida: nodo sorgente o destinazione non trovato.";
686
+ static get WorkflowRestoreDiagram(): "Diagramm wiederherstellen" | "Restore diagram" | "Restaurar diagrama" | "Restaurer le diagramme" | "Ripristina diagramma";
687
+ static get WorkflowRestoreDiagramMessage(): "Möchten Sie das ursprüngliche Diagramm wiederherstellen? Alle nicht gespeicherten Änderungen gehen verloren." | "Are you sure you want to restore the initial diagram? All unsaved changes will be lost." | "¿Está seguro de que desea restaurar el diagrama inicial? Se perderán todos los cambios no guardados." | "Êtes-vous sûr de vouloir restaurer le diagramme initial ? Toutes les modifications non enregistrées seront perdues." | "Tem certeza de que deseja restaurar o diagrama inicial? Todas as alterações não salvas serão perdidas." | "Sei sicuro di voler ripristinare il diagramma iniziale? Tutte le modifiche non salvate andranno perse.";
657
688
  static get WorkflowDiagramCannotConnectToStart(): "Non können Sie an einen 'Start'-Knoten verbinden." | "You cannot connect to a 'Start' node." | "No puede conectar a un nodo 'Start'." | "Vous ne pouvez pas connecter vers un nœud 'Start'." | "Não pode ligar a um nó 'Start'." | "Non puoi connettere a un nodo 'Start'.";
658
689
  static get WorkflowDiagramCannotConnectFromEnd(): "Sie können nicht von einem 'End'-Knoten verbinden." | "You cannot connect from an 'End' node." | "No puede conectar desde un nodo 'End'." | "Vous ne pouvez pas connecter depuis un nœud 'End'." | "Não pode ligar a partir de um nó 'End'." | "Non puoi connettere da un nodo 'End'.";
659
690
  static get WorkflowDiagramConnectionSelf(): "La connessione {0} non può connettere un nodo a se stesso." | "The connection {0} cannot connect a node to itself." | "La conexión {0} no puede conectar un nodo consigo mismo." | "La connexion {0} ne peut pas connecter un nœud à lui-même." | "A conexão {0} não pode ligar um nó a si mesmo.";
@@ -699,6 +730,8 @@ export declare class SDKUI_Localizator {
699
730
  static get WorkitemReassign(): string;
700
731
  static get WorkitemsToApproveNone(): "Kein Workitem für dieses Dokument zur Genehmigung vorhanden" | "No workitems to approve for this document" | "No hay workitems para aprobar para este documento" | "Aucun workitem à approuver pour ce document" | "Nenhum workitem para aprovar para este documento" | "Nessun workitem da approvare per questo documento";
701
732
  static get WrittenOn(): "Geschrieben am" | "Written on" | "Escrito el" | "Écrit le" | "Escrito em" | "Scritto il";
733
+ static get YouDoNotHavePermissionsToArchiveDetailDocumentsOfThisType(): "Sie haben keine Berechtigung, Detaildokumente dieses Typs zu archivieren." | "You do not have permissions to archive detail documents of this type." | "No tienes permisos para archivar documentos de detalle de este tipo." | "Vous n'avez pas les permissions pour archiver les documents détail de ce type." | "Você não tem permissões para arquivar documentos de detalhe deste tipo." | "Non hai i permessi per archiviare documenti di dettaglio di questo tipo.";
734
+ static get YouDoNotHavePermissionsToArchiveMasterDocumentsOfThisType(): "Sie haben keine Berechtigung, Master-Dokumente dieses Typs zu archivieren." | "You do not have permissions to archive master documents of this type." | "No tienes permisos para archivar documentos maestros de este tipo." | "Vous n'avez pas les permissions pour archiver les documents maîtres de ce type." | "Você não tem permissões para arquivar documentos mestres deste tipo." | "Non hai i permessi per archiviare documenti master di questo tipo.";
702
735
  static get Yes(): "Ja" | "Yes" | "Sí" | "Oui" | "Sim" | "Sì";
703
736
  static get ZoomIn(): "Vergrößern" | "Zoom in" | "Acercar" | "Zoom avant" | "Aumentar zoom" | "Ingrandisci";
704
737
  static get ZoomOut(): "Verkleinern" | "Zoom out" | "Alejar" | "Zoom arrière" | "Diminuir zoom" | "Riduci";
@@ -434,6 +434,26 @@ export class SDKUI_Localizator {
434
434
  default: return "Archivio documentale";
435
435
  }
436
436
  }
437
+ static get ArchiveDetailDocument() {
438
+ switch (this._cultureID) {
439
+ case CultureIDs.De_DE: return "Detaildokument archivieren";
440
+ case CultureIDs.En_US: return "Archive detail document";
441
+ case CultureIDs.Es_ES: return "Archivar documento de detalle";
442
+ case CultureIDs.Fr_FR: return "Archiver le document détail";
443
+ case CultureIDs.Pt_PT: return "Arquivar documento de detalhe";
444
+ default: return "Archivia documento dettaglio";
445
+ }
446
+ }
447
+ static get ArchiveMasterDocument() {
448
+ switch (this._cultureID) {
449
+ case CultureIDs.De_DE: return "Master-Dokument archivieren";
450
+ case CultureIDs.En_US: return "Archive master document";
451
+ case CultureIDs.Es_ES: return "Archivar documento maestro";
452
+ case CultureIDs.Fr_FR: return "Archiver le document maître";
453
+ case CultureIDs.Pt_PT: return "Arquivar documento mestre";
454
+ default: return "Archivia documento master";
455
+ }
456
+ }
437
457
  static get Arguments() {
438
458
  switch (this._cultureID) {
439
459
  case CultureIDs.De_DE: return "Themen";
@@ -695,6 +715,16 @@ export class SDKUI_Localizator {
695
715
  default: return "Calendario";
696
716
  }
697
717
  }
718
+ static get CancelCheckOut() {
719
+ switch (this._cultureID) {
720
+ case CultureIDs.De_DE: return "Check-out abbrechen";
721
+ case CultureIDs.En_US: return "Cancel Check Out";
722
+ case CultureIDs.Es_ES: return "Cancelar check-out";
723
+ case CultureIDs.Fr_FR: return "Annuler le check-out";
724
+ case CultureIDs.Pt_PT: return "Cancelar check-out";
725
+ default: return "Annulla Check out";
726
+ }
727
+ }
698
728
  static get CassettoDoganaleExportMRN() {
699
729
  switch (this._cultureID) {
700
730
  case CultureIDs.De_DE: return "MRN-Erholung für den Export";
@@ -1583,10 +1613,10 @@ export class SDKUI_Localizator {
1583
1613
  return `${this.WorkGroup} - ${this.AddParticipants}`;
1584
1614
  }
1585
1615
  static get DiagramItemTypes_CaseFlow_Create() {
1586
- return `${this.Practice} - ${this.Create}`;
1616
+ return `${this.Dossier} - ${this.Create}`;
1587
1617
  }
1588
1618
  static get DiagramItemTypes_CaseFlow_AddParts() {
1589
- return `${this.Practice} - ${this.AddParticipants}`;
1619
+ return `${this.Dossier} - ${this.AddParticipants}`;
1590
1620
  }
1591
1621
  static get DiagramItemTypes_Exit() {
1592
1622
  switch (this._cultureID) {
@@ -1728,6 +1758,26 @@ export class SDKUI_Localizator {
1728
1758
  default: return "Dominio";
1729
1759
  }
1730
1760
  }
1761
+ static get Dossier() {
1762
+ switch (this._cultureID) {
1763
+ case CultureIDs.De_DE: return "Übung";
1764
+ case CultureIDs.En_US: return "Dossier";
1765
+ case CultureIDs.Es_ES: return "Expediente";
1766
+ case CultureIDs.Fr_FR: return "Pratique";
1767
+ case CultureIDs.Pt_PT: return "Prática";
1768
+ default: return "Pratica";
1769
+ }
1770
+ }
1771
+ static get Dossiers() {
1772
+ switch (this._cultureID) {
1773
+ case CultureIDs.De_DE: return "Akten";
1774
+ case CultureIDs.En_US: return "Dossiers";
1775
+ case CultureIDs.Es_ES: return "Expedientes";
1776
+ case CultureIDs.Fr_FR: return "Pratiques";
1777
+ case CultureIDs.Pt_PT: return "Práticas";
1778
+ default: return "Pratiche";
1779
+ }
1780
+ }
1731
1781
  static get DownloadFile() {
1732
1782
  switch (this._cultureID) {
1733
1783
  case CultureIDs.De_DE: return "Datei herunterladen";
@@ -2040,6 +2090,26 @@ export class SDKUI_Localizator {
2040
2090
  default: return "Errore nelle date (1)";
2041
2091
  }
2042
2092
  }
2093
+ static get ExecuteCancelCheckOutQuestion() {
2094
+ switch (this._cultureID) {
2095
+ case CultureIDs.De_DE: return "Check-out abbrechen?";
2096
+ case CultureIDs.En_US: return "Cancel Check Out?";
2097
+ case CultureIDs.Es_ES: return "¿Cancelar el check-out?";
2098
+ case CultureIDs.Fr_FR: return "Annuler le check-out ?";
2099
+ case CultureIDs.Pt_PT: return "Cancelar o check-out?";
2100
+ default: return "Annullare il Check out?";
2101
+ }
2102
+ }
2103
+ static get ExecuteCheckOutQuestion() {
2104
+ switch (this._cultureID) {
2105
+ case CultureIDs.De_DE: return "Check-out durchführen?";
2106
+ case CultureIDs.En_US: return "Perform Check Out?";
2107
+ case CultureIDs.Es_ES: return "¿Realizar el check-out?";
2108
+ case CultureIDs.Fr_FR: return "Effectuer le check-out ?";
2109
+ case CultureIDs.Pt_PT: return "Executar o check-out?";
2110
+ default: return "Eseguire il Check out?";
2111
+ }
2112
+ }
2043
2113
  static get ExportDataListsDescriptionField() {
2044
2114
  switch (this._cultureID) {
2045
2115
  case CultureIDs.De_DE: return 'Exportiere die "Beschreibung"-Felder der Datenlisten';
@@ -3139,6 +3209,26 @@ export class SDKUI_Localizator {
3139
3209
  default: return "Segna come";
3140
3210
  }
3141
3211
  }
3212
+ static get Match() {
3213
+ switch (this._cultureID) {
3214
+ case CultureIDs.De_DE: return "Übereinstimmen";
3215
+ case CultureIDs.En_US: return "Match";
3216
+ case CultureIDs.Es_ES: return "Emparejar";
3217
+ case CultureIDs.Fr_FR: return "Associer";
3218
+ case CultureIDs.Pt_PT: return "Corresponder";
3219
+ default: return "Abbina";
3220
+ }
3221
+ }
3222
+ static get MatchManyDocumentsManyToMany() {
3223
+ switch (this._cultureID) {
3224
+ case CultureIDs.De_DE: return "Mehrere Dokumente mehrfach zuordnen";
3225
+ case CultureIDs.En_US: return "Match many documents many to many";
3226
+ case CultureIDs.Es_ES: return "Emparejar muchos documentos de muchos a muchos";
3227
+ case CultureIDs.Fr_FR: return "Associer plusieurs documents plusieurs à plusieurs";
3228
+ case CultureIDs.Pt_PT: return "Corresponder muitos documentos de muitos para muitos";
3229
+ default: return "Abbina documenti molti a molti";
3230
+ }
3231
+ }
3142
3232
  static get Max_Value() {
3143
3233
  switch (this._cultureID) {
3144
3234
  case CultureIDs.De_DE: return "Der Maximalwert ist {{0}}";
@@ -3691,6 +3781,146 @@ export class SDKUI_Localizator {
3691
3781
  default: return "Nessun documento selezionato";
3692
3782
  }
3693
3783
  }
3784
+ static get NoDetailDocumentFoundForArchiving() {
3785
+ switch (this._cultureID) {
3786
+ case CultureIDs.De_DE: return "Kein Detaildokument zur Archivierung gefunden.";
3787
+ case CultureIDs.En_US: return "No detail document found for archiving.";
3788
+ case CultureIDs.Es_ES: return "No se encontró ningún documento de detalle para archivar.";
3789
+ case CultureIDs.Fr_FR: return "Aucun document détail trouvé pour l'archivage.";
3790
+ case CultureIDs.Pt_PT: return "Nenhum documento de detalhe encontrado para arquivamento.";
3791
+ default: return "Nessun documento di dettaglio trovato per l'archiviazione.";
3792
+ }
3793
+ }
3794
+ static get NoDocumentMatchFound() {
3795
+ switch (this._cultureID) {
3796
+ case CultureIDs.De_DE: return "Kein zugeordnetes Dokument gefunden.";
3797
+ case CultureIDs.En_US: return "No document match found.";
3798
+ case CultureIDs.Es_ES: return "No se encontró ningún documento emparejado.";
3799
+ case CultureIDs.Fr_FR: return "Aucun document associé trouvé.";
3800
+ case CultureIDs.Pt_PT: return "Nenhum documento correspondente encontrado.";
3801
+ default: return "Nessun documento abbinato trovato.";
3802
+ }
3803
+ }
3804
+ static get NoDocumentSelectedForManyToManyMatching() {
3805
+ switch (this._cultureID) {
3806
+ case CultureIDs.De_DE: return "Kein Dokument für die Mehrfach-Zuordnung ausgewählt.";
3807
+ case CultureIDs.En_US: return "No document selected for many-to-many matching.";
3808
+ case CultureIDs.Es_ES: return "Ningún documento seleccionado para el emparejamiento de muchos a muchos.";
3809
+ case CultureIDs.Fr_FR: return "Aucun document sélectionné pour l'association plusieurs à plusieurs.";
3810
+ case CultureIDs.Pt_PT: return "Nenhum documento selecionado para correspondência de muitos para muitos.";
3811
+ default: return "Nessun documento selezionato per l'abbinamento molti a molti.";
3812
+ }
3813
+ }
3814
+ static get NoDocumentSelectedForManyToManyUnmatching() {
3815
+ switch (this._cultureID) {
3816
+ case CultureIDs.De_DE: return "Kein Dokument für die Aufhebung der Mehrfach-Zuordnung ausgewählt.";
3817
+ case CultureIDs.En_US: return "No document selected for many-to-many unmatching.";
3818
+ case CultureIDs.Es_ES: return "Ningún documento seleccionado para el desemparejamiento de muchos a muchos.";
3819
+ case CultureIDs.Fr_FR: return "Aucun document sélectionné pour la dissociation plusieurs à plusieurs.";
3820
+ case CultureIDs.Pt_PT: return "Nenhum documento selecionado para descorrespondência de muitos para muitos.";
3821
+ default: return "Nessun documento selezionato per il disabbinamento molti a molti.";
3822
+ }
3823
+ }
3824
+ static get NoDocumentToMatch() {
3825
+ switch (this._cultureID) {
3826
+ case CultureIDs.De_DE: return "Kein Dokument zuzuordnen. Alle resultierenden Dokumente sind bereits zugeordnet.";
3827
+ case CultureIDs.En_US: return "No document to match. All resulting documents are already matched.";
3828
+ case CultureIDs.Es_ES: return "Ningún documento para emparejar. Todos los documentos resultantes ya están emparejados.";
3829
+ case CultureIDs.Fr_FR: return "Aucun document à associer. Tous les documents résultants sont déjà associés.";
3830
+ case CultureIDs.Pt_PT: return "Nenhum documento para corresponder. Todos os documentos resultantes já estão correspondidos.";
3831
+ default: return "Nessun documento da abbinare. Tutti i documenti risultanti sono già abbinati.";
3832
+ }
3833
+ }
3834
+ static get NoManyToManyMatchingRelationshipAssociatedWithRetrievalQuery() {
3835
+ switch (this._cultureID) {
3836
+ case CultureIDs.De_DE: return "Keine Mehrfach-Zuordnungsbeziehung mit Abrufabfrage verknüpft.";
3837
+ case CultureIDs.En_US: return "No many-to-many matching relationship associated with retrieval query.";
3838
+ case CultureIDs.Es_ES: return "Ninguna relación de emparejamiento de muchos a muchos asociada con la consulta de recuperación.";
3839
+ case CultureIDs.Fr_FR: return "Aucune relation d'association plusieurs à plusieurs associée à la requête de récupération.";
3840
+ case CultureIDs.Pt_PT: return "Nenhuma relação de correspondência de muitos para muitos associada à consulta de recuperação.";
3841
+ default: return "Nessuna query di recupero associata alla relazione di abbinamento molti a molti.";
3842
+ }
3843
+ }
3844
+ static get NoManyToManyMatchingRelationshipDefined() {
3845
+ switch (this._cultureID) {
3846
+ case CultureIDs.De_DE: return "Keine Mehrfach-Zuordnungsbeziehung im System definiert.";
3847
+ case CultureIDs.En_US: return "No many-to-many matching relationship defined in the system.";
3848
+ case CultureIDs.Es_ES: return "Ninguna relación de emparejamiento de muchos a muchos definida en el sistema.";
3849
+ case CultureIDs.Fr_FR: return "Aucune relation d'association plusieurs à plusieurs définie dans le système.";
3850
+ case CultureIDs.Pt_PT: return "Nenhuma relação de correspondência de muitos para muitos definida no sistema.";
3851
+ default: return "Nessuna relazione di abbinamento molti a molti definita nel sistema.";
3852
+ }
3853
+ }
3854
+ static get NoManyToManyMatchingRelationshipDefinedForSelectedDocumentType() {
3855
+ switch (this._cultureID) {
3856
+ case CultureIDs.De_DE: return "Keine Mehrfach-Zuordnungsbeziehung für den ausgewählten Dokumenttyp definiert.";
3857
+ case CultureIDs.En_US: return "No many-to-many matching relationship defined for selected document type.";
3858
+ case CultureIDs.Es_ES: return "Ninguna relación de emparejamiento de muchos a muchos definida para el tipo de documento seleccionado.";
3859
+ case CultureIDs.Fr_FR: return "Aucune relation d'association plusieurs à plusieurs définie pour le type de document sélectionné.";
3860
+ case CultureIDs.Pt_PT: return "Nenhuma relação de correspondência de muitos para muitos definida para o tipo de documento selecionado.";
3861
+ default: return "Nessuna relazione di abbinamento molti a molti definita per il tipo di documento selezionato.";
3862
+ }
3863
+ }
3864
+ static get NoManyToManyUnmatchingRelationshipAssociatedWithRetrievalQuery() {
3865
+ switch (this._cultureID) {
3866
+ case CultureIDs.De_DE: return "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung mit Abrufabfrage verknüpft.";
3867
+ case CultureIDs.En_US: return "No many-to-many unmatching relationship associated with retrieval query.";
3868
+ case CultureIDs.Es_ES: return "Ninguna relación de desemparejamiento de muchos a muchos asociada con la consulta de recuperación.";
3869
+ case CultureIDs.Fr_FR: return "Aucune relation de dissociation plusieurs à plusieurs associée à la requête de récupération.";
3870
+ case CultureIDs.Pt_PT: return "Nenhuma relação de descorrespondência de muitos para muitos associada à consulta de recuperação.";
3871
+ default: return "Nessuna query di recupero associata alla relazione di disabbinamento molti a molti.";
3872
+ }
3873
+ }
3874
+ static get NoManyToManyUnmatchingRelationshipDefined() {
3875
+ switch (this._cultureID) {
3876
+ case CultureIDs.De_DE: return "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung im System definiert.";
3877
+ case CultureIDs.En_US: return "No many-to-many unmatching relationship defined in the system.";
3878
+ case CultureIDs.Es_ES: return "Ninguna relación de desemparejamiento de muchos a muchos definida en el sistema.";
3879
+ case CultureIDs.Fr_FR: return "Aucune relation de dissociation plusieurs à plusieurs définie dans le système.";
3880
+ case CultureIDs.Pt_PT: return "Nenhuma relação de descorrespondência de muitos para muitos definida no sistema.";
3881
+ default: return "Nessuna relazione di disabbinamento molti a molti definita nel sistema.";
3882
+ }
3883
+ }
3884
+ static get NoManyToManyUnmatchingRelationshipDefinedForSelectedDocumentType() {
3885
+ switch (this._cultureID) {
3886
+ case CultureIDs.De_DE: return "Keine Beziehung zur Aufhebung der Mehrfach-Zuordnung für den ausgewählten Dokumenttyp definiert.";
3887
+ case CultureIDs.En_US: return "No many-to-many unmatching relationship defined for selected document type.";
3888
+ case CultureIDs.Es_ES: return "Ninguna relación de desemparejamiento de muchos a muchos definida para el tipo de documento seleccionado.";
3889
+ case CultureIDs.Fr_FR: return "Aucune relation de dissociation plusieurs à plusieurs définie pour le type de document sélectionné.";
3890
+ case CultureIDs.Pt_PT: return "Nenhuma relação de descorrespondência de muitos para muitos definida para o tipo de documento selecionado.";
3891
+ default: return "Nessuna relazione di abbinamento molti a molti definita per il tipo di documento selezionato.";
3892
+ }
3893
+ }
3894
+ static get NoMasterDocumentFoundForArchiving() {
3895
+ switch (this._cultureID) {
3896
+ case CultureIDs.De_DE: return "Kein Master-Dokument zur Archivierung gefunden.";
3897
+ case CultureIDs.En_US: return "No master document found for archiving.";
3898
+ case CultureIDs.Es_ES: return "No se encontró ningún documento maestro para archivar.";
3899
+ case CultureIDs.Fr_FR: return "Aucun document maître trouvé pour l'archivage.";
3900
+ case CultureIDs.Pt_PT: return "Nenhum documento mestre encontrado para arquivamento.";
3901
+ default: return "Nessun documento di master trovato per l'archiviazione";
3902
+ }
3903
+ }
3904
+ static get NoMatchFoundForDetailDocuments() {
3905
+ switch (this._cultureID) {
3906
+ case CultureIDs.De_DE: return "Keine Zuordnung für Detaildokumente gefunden.";
3907
+ case CultureIDs.En_US: return "No match found for detail documents.";
3908
+ case CultureIDs.Es_ES: return "No se encontró ninguna correspondencia para los documentos de detalle.";
3909
+ case CultureIDs.Fr_FR: return "Aucune correspondance trouvée pour les documents détail.";
3910
+ case CultureIDs.Pt_PT: return "Nenhuma correspondência encontrada para documentos de detalhe.";
3911
+ default: return "Nessuna associazione trovata per i documenti di dettaglio";
3912
+ }
3913
+ }
3914
+ static get NoMatchFoundForMasterDocuments() {
3915
+ switch (this._cultureID) {
3916
+ case CultureIDs.De_DE: return "Keine Zuordnung für Master-Dokumente gefunden.";
3917
+ case CultureIDs.En_US: return "No match found for master documents.";
3918
+ case CultureIDs.Es_ES: return "No se encontró ninguna correspondencia para los documentos maestros.";
3919
+ case CultureIDs.Fr_FR: return "Aucune correspondance trouvée pour les documents maîtres.";
3920
+ case CultureIDs.Pt_PT: return "Nenhuma correspondência encontrada para documentos mestres.";
3921
+ default: return "Nessuna associazione trovata per i documenti di master";
3922
+ }
3923
+ }
3694
3924
  static get NoMessages() {
3695
3925
  switch (this._cultureID) {
3696
3926
  case CultureIDs.De_DE: return "Keine Nachrichten vorhanden";
@@ -4371,16 +4601,6 @@ export class SDKUI_Localizator {
4371
4601
  default: return "Rinviata";
4372
4602
  }
4373
4603
  }
4374
- static get Practice() {
4375
- switch (this._cultureID) {
4376
- case CultureIDs.De_DE: return "Praxis";
4377
- case CultureIDs.En_US: return "Practice";
4378
- case CultureIDs.Es_ES: return "Práctica";
4379
- case CultureIDs.Fr_FR: return "Pratique";
4380
- case CultureIDs.Pt_PT: return "Prática";
4381
- default: return "Pratica";
4382
- }
4383
- }
4384
4604
  static get PreparingFileForArchive() {
4385
4605
  switch (this._cultureID) {
4386
4606
  case CultureIDs.De_DE: return "Datei für Archivierung vorbereiten...";
@@ -5349,6 +5569,26 @@ export class SDKUI_Localizator {
5349
5569
  default: return "Condivisa";
5350
5570
  }
5351
5571
  }
5572
+ static get SharedArchiving() {
5573
+ switch (this._cultureID) {
5574
+ case CultureIDs.De_DE: return "Gemeinsame Archivierung";
5575
+ case CultureIDs.En_US: return "Shared archiving";
5576
+ case CultureIDs.Es_ES: return "Archivo compartido";
5577
+ case CultureIDs.Fr_FR: return "Archivage partagé";
5578
+ case CultureIDs.Pt_PT: return "Arquivamento compartilhado";
5579
+ default: return "Archiviazione condivisa";
5580
+ }
5581
+ }
5582
+ static get SharedDocuments() {
5583
+ switch (this._cultureID) {
5584
+ case CultureIDs.De_DE: return "Gemeinsame Dokumente";
5585
+ case CultureIDs.En_US: return "Shared documents";
5586
+ case CultureIDs.Es_ES: return "Documentos compartidos";
5587
+ case CultureIDs.Fr_FR: return "Documents partagés";
5588
+ case CultureIDs.Pt_PT: return "Documentos compartilhados";
5589
+ default: return "Documenti condivisi";
5590
+ }
5591
+ }
5352
5592
  static get Shortcuts() {
5353
5593
  switch (this._cultureID) {
5354
5594
  case CultureIDs.De_DE: return "Tastenkombinationen";
@@ -5459,6 +5699,16 @@ export class SDKUI_Localizator {
5459
5699
  default: return "Mostra ricerca";
5460
5700
  }
5461
5701
  }
5702
+ static get ShowSharedDocuments() {
5703
+ switch (this._cultureID) {
5704
+ case CultureIDs.De_DE: return "Gemeinsame Dokumente anzeigen";
5705
+ case CultureIDs.En_US: return "Show shared documents";
5706
+ case CultureIDs.Es_ES: return "Mostrar documentos compartidos";
5707
+ case CultureIDs.Fr_FR: return "Afficher les documents partagés";
5708
+ case CultureIDs.Pt_PT: return "Mostrar documentos compartilhados";
5709
+ default: return "Mostra documenti condivisi";
5710
+ }
5711
+ }
5462
5712
  static get ShowColumnSeparatingLines() {
5463
5713
  switch (this._cultureID) {
5464
5714
  case CultureIDs.De_DE: return "Spalten-Trennungslinien anzeigen";
@@ -5979,6 +6229,26 @@ export class SDKUI_Localizator {
5979
6229
  default: return "Non seguire più";
5980
6230
  }
5981
6231
  }
6232
+ static get Unmatch() {
6233
+ switch (this._cultureID) {
6234
+ case CultureIDs.De_DE: return "Zuordnung aufheben";
6235
+ case CultureIDs.En_US: return "Unmatch";
6236
+ case CultureIDs.Es_ES: return "Desemparejar";
6237
+ case CultureIDs.Fr_FR: return "Dissocier";
6238
+ case CultureIDs.Pt_PT: return "Descorresponder";
6239
+ default: return "Disabbina";
6240
+ }
6241
+ }
6242
+ static get UnmatchManyDocumentsManyToMany() {
6243
+ switch (this._cultureID) {
6244
+ case CultureIDs.De_DE: return "Mehrfache Zuordnung von vielen Dokumenten aufheben";
6245
+ case CultureIDs.En_US: return "Unmatch many documents many to many";
6246
+ case CultureIDs.Es_ES: return "Desemparejar muchos documentos de muchos a muchos";
6247
+ case CultureIDs.Fr_FR: return "Dissocier plusieurs documents plusieurs à plusieurs";
6248
+ case CultureIDs.Pt_PT: return "Descorresponder muitos documentos de muitos para muitos";
6249
+ default: return "Disabbina documenti molti a molti";
6250
+ }
6251
+ }
5982
6252
  static get UnfollowSelectedItem() {
5983
6253
  switch (this._cultureID) {
5984
6254
  case CultureIDs.De_DE:
@@ -6415,6 +6685,26 @@ export class SDKUI_Localizator {
6415
6685
  default: return "Aggiungere il documento alle bozze del gruppo di lavoro";
6416
6686
  }
6417
6687
  }
6688
+ static get WorkflowAddDcmtAsAttachment() {
6689
+ switch (this._cultureID) {
6690
+ case CultureIDs.De_DE: return "Dokument als Anhang zur Praxis hinzufügen";
6691
+ case CultureIDs.En_US: return "Add the document as an attachment to the case";
6692
+ case CultureIDs.Es_ES: return "Agregar el documento como adjunto al expediente";
6693
+ case CultureIDs.Fr_FR: return "Ajouter le document en tant que pièce jointe au dossier";
6694
+ case CultureIDs.Pt_PT: return "Adicionar o documento como anexo ao processo";
6695
+ default: return "Aggiungere il documento come allegato della pratica";
6696
+ }
6697
+ }
6698
+ static get WorkflowAddDcmtToDossier() {
6699
+ switch (this._cultureID) {
6700
+ case CultureIDs.De_DE: return "Dokument zur Praxis hinzufügen";
6701
+ case CultureIDs.En_US: return "Add the document to the case";
6702
+ case CultureIDs.Es_ES: return "Agregar el documento al expediente";
6703
+ case CultureIDs.Fr_FR: return "Ajouter le document au dossier";
6704
+ case CultureIDs.Pt_PT: return "Adicionar o documento ao processo";
6705
+ default: return "Aggiungere il documento alla pratica";
6706
+ }
6707
+ }
6418
6708
  static get WorkflowAllowZeroTos() {
6419
6709
  switch (this._cultureID) {
6420
6710
  case CultureIDs.De_DE: return "0 Empfänger zulassen";
@@ -6475,6 +6765,26 @@ export class SDKUI_Localizator {
6475
6765
  default: return "Connessione non valida: nodo sorgente o destinazione non trovato.";
6476
6766
  }
6477
6767
  }
6768
+ static get WorkflowRestoreDiagram() {
6769
+ switch (this._cultureID) {
6770
+ case CultureIDs.De_DE: return "Diagramm wiederherstellen";
6771
+ case CultureIDs.En_US: return "Restore diagram";
6772
+ case CultureIDs.Es_ES: return "Restaurar diagrama";
6773
+ case CultureIDs.Fr_FR: return "Restaurer le diagramme";
6774
+ case CultureIDs.Pt_PT: return "Restaurar diagrama";
6775
+ default: return "Ripristina diagramma";
6776
+ }
6777
+ }
6778
+ static get WorkflowRestoreDiagramMessage() {
6779
+ switch (this._cultureID) {
6780
+ case CultureIDs.De_DE: return "Möchten Sie das ursprüngliche Diagramm wiederherstellen? Alle nicht gespeicherten Änderungen gehen verloren.";
6781
+ case CultureIDs.En_US: return "Are you sure you want to restore the initial diagram? All unsaved changes will be lost.";
6782
+ case CultureIDs.Es_ES: return "¿Está seguro de que desea restaurar el diagrama inicial? Se perderán todos los cambios no guardados.";
6783
+ case CultureIDs.Fr_FR: return "Êtes-vous sûr de vouloir restaurer le diagramme initial ? Toutes les modifications non enregistrées seront perdues.";
6784
+ case CultureIDs.Pt_PT: return "Tem certeza de que deseja restaurar o diagrama inicial? Todas as alterações não salvas serão perdidas.";
6785
+ default: return "Sei sicuro di voler ripristinare il diagramma iniziale? Tutte le modifiche non salvate andranno perse.";
6786
+ }
6787
+ }
6478
6788
  static get WorkflowDiagramCannotConnectToStart() {
6479
6789
  switch (this._cultureID) {
6480
6790
  case CultureIDs.De_DE: return "Non können Sie an einen 'Start'-Knoten verbinden.";
@@ -6925,6 +7235,26 @@ export class SDKUI_Localizator {
6925
7235
  default: return "Scritto il";
6926
7236
  }
6927
7237
  }
7238
+ static get YouDoNotHavePermissionsToArchiveDetailDocumentsOfThisType() {
7239
+ switch (this._cultureID) {
7240
+ case CultureIDs.De_DE: return "Sie haben keine Berechtigung, Detaildokumente dieses Typs zu archivieren.";
7241
+ case CultureIDs.En_US: return "You do not have permissions to archive detail documents of this type.";
7242
+ case CultureIDs.Es_ES: return "No tienes permisos para archivar documentos de detalle de este tipo.";
7243
+ case CultureIDs.Fr_FR: return "Vous n'avez pas les permissions pour archiver les documents détail de ce type.";
7244
+ case CultureIDs.Pt_PT: return "Você não tem permissões para arquivar documentos de detalhe deste tipo.";
7245
+ default: return "Non hai i permessi per archiviare documenti di dettaglio di questo tipo.";
7246
+ }
7247
+ }
7248
+ static get YouDoNotHavePermissionsToArchiveMasterDocumentsOfThisType() {
7249
+ switch (this._cultureID) {
7250
+ case CultureIDs.De_DE: return "Sie haben keine Berechtigung, Master-Dokumente dieses Typs zu archivieren.";
7251
+ case CultureIDs.En_US: return "You do not have permissions to archive master documents of this type.";
7252
+ case CultureIDs.Es_ES: return "No tienes permisos para archivar documentos maestros de este tipo.";
7253
+ case CultureIDs.Fr_FR: return "Vous n'avez pas les permissions pour archiver les documents maîtres de ce type.";
7254
+ case CultureIDs.Pt_PT: return "Você não tem permissões para arquivar documentos mestres deste tipo.";
7255
+ default: return "Non hai i permessi per archiviare documenti master di questo tipo.";
7256
+ }
7257
+ }
6928
7258
  static get Yes() {
6929
7259
  switch (this._cultureID) {
6930
7260
  case CultureIDs.De_DE: return "Ja";
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import TextBox from 'devextreme-react/cjs/text-box';
2
+ import TextBox from 'devextreme-react/text-box';
3
3
  import { useEffect, useState } from 'react';
4
4
  import { SDKUI_Localizator } from './SDKUI_Localizator';
5
5
  import { IconCloseOutline, IconSearch } from './TMIcons';
@@ -270,4 +270,5 @@ export declare function IconArchiveMaster(props: React.SVGProps<SVGSVGElement>):
270
270
  export declare function IconPair(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
271
271
  export declare function IconUnpair(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
272
272
  export declare function IconBackhandIndexPointingRight(props: Readonly<React.SVGProps<SVGSVGElement>>): import("react/jsx-runtime").JSX.Element;
273
+ export declare function IconMoveToFolder(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
273
274
  export { Icon123, IconABC, IconAccessPoint, IconAddressBook, IconSignCert, IconServerService, IconActivity, IconActivityLog, IconAdd, IconAddCircleOutline, IconAll, IconApply, IconApplyAndClose, IconArchive, IconArchiveDoc, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowUp, IconAtSign, IconAttachment, IconAutoConfig, IconBackward, IconBasket, IconBoard, IconBoxArchiveIn, IconBxInfo, IconBxLock, IconCalendar, IconCloseCircle, IconCloseOutline, IconCloud, IconCircleInfo, IconClear, IconColumns, IconCommand, IconCopy, IconCount, IconCrown, IconDashboard, IconDcmtType, IconDcmtTypeOnlyMetadata, IconDcmtTypeSys, IconDelete, IconDetails, IconDown, IconDownload, IconDotsVerticalCircleOutline, IconDuplicate, IconEdit, IconEqual, IconEqualNot, IconEraser, IconExpandRight, IconExport, IconFastBackward, IconFoldeAdd, IconFolderSearch, IconFolderZip, IconFastForward, IconFastSearch, IconFileDots, IconFilter, IconForceStop, IconForward, IconFreeze, IconFreeSearch, IconGreaterThan, IconGreaterThanOrEqual, IconHistory, IconImport, IconTag, IconInfo, IconInsertAbove, IconInsertBelow, IconHeart, IconHide, IconLanguage, IconLeft, IconLessThan, IconLessThanOrEqual, IconLock, IconLockClosed, IconLogin, IconLink, IconLogout, IconMail, IconMapping, IconMic, IconMenuHorizontal, IconMenuKebab, IconMenuVertical, IconMetadata, IconMetadata_Computed, IconMetadata_DataList, IconMetadata_Date, IconMetadata_DynamicDataList, IconMetadata_Numerator, IconMetadata_Numeric, IconMetadata_Special, IconMetadata_Text, IconMetadata_User, IconMonitor, IconOpenInNew, IconNotification, IconPassword, IconPencil, IconPlatform, IconPlay, IconPreview, IconPrinter, IconPrintOutline, IconProcess, IconProgressAbortRequested, IconProgressCompleted, IconProgressNotCompleted, IconProgressReady, IconProgressRunning, IconProgressStarted, IconRefresh, IconReset, IconRecentlyViewed, IconRight, IconSave, IconSearch, IconSelected, IconSettings, IconShow, IconSort, IconStop, IconStopwatch, IconSuccess, IconAlarmPlus, IconHourglass, IconNone, IconNotStarted, IconProgress, IconSuccessCirlce, IconSuitcase, IconSupport, IconUndo, IconUnFreeze, IconUp, IconUpdate, IconUpload, IconUser, IconUserProfile, IconVisible, IconWarning, IconWeb, IconWifi, IconWindowMaximize, IconWindowMinimize, IconWorkflow, IconWorkspace, IconUserGroup, IconUserGroupOutline, IconUserLevelMember, IconUserLevelAdministrator, IconUserLevelSystemAdministrator, IconUserLevelAutonomousAdministrator, IconDraggabledots, IconRelation, IconEasy, IconSum, IconDisk, IconDataList, IconPalette, IconFormatPageSplit, IconPaste, IconFileSearch, IconStar, IconStarRemove, IconSearchCheck, IconLightningFill, IconArrowUnsorted, IconArrowSortedUp, IconArrowSortedDown, IconConvertFilePdf, IconExportTo, IconSharedDcmt, IconShare, IconBatchUpdate, IconCheckFile, IconStatistics, IconSubstFile, IconAdvanced, IconSync, IconSavedQuery, IconSignature, IconSignaturePencil, IconRecursiveOps, IconCheckIn, IconTree, IconGrid, IconList, IconFolder, IconFolderOpen, IconFactory, IconTest, IconCheck, IconUncheck, IconSortAsc, IconSortDesc, IconRoundFileUpload, IconSortAscLetters, IconSortDescLetters, IconRotate, IconSortAscNumbers, IconSortDescNumbers, IconSortAscClock, IconSortDescClock, IconLayerGroup, IconBell, IconBellCheck, IconBellOutline, IconBellCheckOutline, IconEnvelopeOpenText, IconChangeUser, IconUserCheck, IconRelationManyToMany, IconRelationOneToMany, IconUserExpired, IconKey, IconZoomInLinear, IconZoomOutLinear, IconMenuCAWorkingGroups, IconCADossier, IconMenuCACaseflow, IconMenuDashboard, IconMenuCAAreas, IconMenuTask, IconMenuSearch, IconMenuFullTextSearch, IconMenuFavourite, IconSAPLogin, IconSAPLogin2, IconView, };