data-primals-engine 1.3.1 → 1.3.2
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/Dockerfile +19 -9
- package/DockerfileTest +19 -9
- package/README.md +782 -782
- package/client/package-lock.json +172 -1
- package/client/package.json +1 -0
- package/client/src/CalendarConfigModal.jsx +60 -21
- package/client/src/CalendarView.jsx +107 -0
- package/client/src/CalendarView.scss +9 -0
- package/client/src/DataLayout.jsx +52 -25
- package/client/src/Dialog.scss +4 -3
- package/client/src/HistoryDialog.jsx +252 -95
- package/client/src/HistoryDialog.scss +319 -72
- package/client/src/ViewSwitcher.jsx +6 -6
- package/client/src/translations.js +192 -49
- package/package.json +1 -1
- package/src/modules/data/data.history.js +489 -303
- package/src/modules/data/data.js +4632 -4620
- package/src/HistoryDialog.jsx +0 -86
- package/src/HistoryDialog.scss +0 -77
|
@@ -4,15 +4,28 @@ export const websiteTranslations = {
|
|
|
4
4
|
translation: {
|
|
5
5
|
"modelcreator.field.history": "Permet d'afficher et de superviser les modifications effectuées sur vos données. Consomme de l'espace.'",
|
|
6
6
|
"history": "Historique",
|
|
7
|
-
|
|
7
|
+
"history.op.create": "Création",
|
|
8
|
+
"history.op.update": "Mise à jour",
|
|
8
9
|
"history.op.delete": "Suppression",
|
|
9
|
-
"history.datePrefix": "
|
|
10
|
-
"history.byUser": "
|
|
11
|
-
"history.version": "Version:",
|
|
10
|
+
"history.datePrefix": "Le",
|
|
11
|
+
"history.byUser": "par",
|
|
12
|
+
"history.version": "Version :",
|
|
12
13
|
"history.error": "Impossible de charger l'historique.",
|
|
13
14
|
"history.title": "Historique de l'enregistrement",
|
|
14
|
-
"history.loading": "Chargement de l'historique",
|
|
15
|
-
"history.noHistory": "Aucun historique trouvé pour cet enregistrement",
|
|
15
|
+
"history.loading": "Chargement de l'historique...",
|
|
16
|
+
"history.noHistory": "Aucun historique trouvé pour cet enregistrement.",
|
|
17
|
+
"history.noChanges": "Aucune modification pertinente enregistrée.",
|
|
18
|
+
"history.noData": "Aucune donnée dans l'instantané.",
|
|
19
|
+
"history.previewAction": "Aperçu",
|
|
20
|
+
"history.previewTitle": "Aperçu de la révision",
|
|
21
|
+
"history.revertTooltip": "Restaure le document à cet état. Cela crée une nouvelle version.",
|
|
22
|
+
"history.revertAction": "Restaurer cette version",
|
|
23
|
+
"history.loadingPreview": "Chargement de l'aperçu...",
|
|
24
|
+
"history.selectRevision": "Sélectionnez une révision pour voir son état complet.",
|
|
25
|
+
"history.previewError": "Impossible de charger l'aperçu de la révision.",
|
|
26
|
+
"history.confirmRevert": "Êtes-vous sûr de vouloir revenir à la version {{version}} ? Cela créera une nouvelle version avec le contenu de cette révision.",
|
|
27
|
+
"history.revertSuccess": "Document restauré avec succès. L'historique va maintenant être mis à jour.",
|
|
28
|
+
"history.revertError": "Erreur lors de la restauration : {{error}}",
|
|
16
29
|
|
|
17
30
|
"field_endpoint_isPublic": "Accès public",
|
|
18
31
|
"field_endpoint_isPublic_hint": "Si coché, ce point d'accès sera accessible sans authentification. Le script s'exécutera avec les droits du propriétaire du point d'accès.",
|
|
@@ -62,6 +75,7 @@ export const websiteTranslations = {
|
|
|
62
75
|
"dataview.calendar.notConfigured": "Votre interface n'est pas configurée pour la vue Calendrier. Choisissez un champ de type date/datetime pour positionner vos événements.",
|
|
63
76
|
"dataview.kanban.notConfigured": "Votre interface n'est pas configurée pour la vue Kanban. Choisissez un champ pour grouper vos cartelettes Kanban, et un champ pour lister les sous-éléments array ou relation multiple.",
|
|
64
77
|
"dataview.configure": "Configurer",
|
|
78
|
+
"views.configure": "Configurer la vue {{view}}",
|
|
65
79
|
"dataview.calendar.configureTitle": "Configurer la vue Calendrier",
|
|
66
80
|
"dataview.calendar.dateFieldLabel": "Champ pour la date de l'événement",
|
|
67
81
|
"dataview.calendar.dateFieldPlaceholder": "Choisir un champ date...",
|
|
@@ -564,8 +578,20 @@ export const websiteTranslations = {
|
|
|
564
578
|
"history.version": "Version:",
|
|
565
579
|
"history.error": "Unable to load history.",
|
|
566
580
|
"history.title": "Record History",
|
|
567
|
-
"history.loading": "Loading
|
|
568
|
-
"history.noHistory": "No history found for this record",
|
|
581
|
+
"history.loading": "Loading history...",
|
|
582
|
+
"history.noHistory": "No history found for this record.",
|
|
583
|
+
"history.noChanges": "No relevant changes recorded.",
|
|
584
|
+
"history.noData": "No data in snapshot.",
|
|
585
|
+
"history.previewAction": "Preview",
|
|
586
|
+
"history.previewTitle": "Revision Preview",
|
|
587
|
+
"history.revertTooltip": "Revert the document to this state. This creates a new version.",
|
|
588
|
+
"history.revertAction": "Revert to this version",
|
|
589
|
+
"history.loadingPreview": "Loading preview...",
|
|
590
|
+
"history.selectRevision": "Select a revision to preview its full state.",
|
|
591
|
+
"history.previewError": "Could not load revision preview.",
|
|
592
|
+
"history.confirmRevert": "Are you sure you want to revert to version {{version}}? This will create a new version with the content of this revision.",
|
|
593
|
+
"history.revertSuccess": "Document successfully reverted. The history will now be updated.",
|
|
594
|
+
"history.revertError": "Error reverting: {{error}}",
|
|
569
595
|
|
|
570
596
|
"packs.manualInstall": "Import",
|
|
571
597
|
"packs.manualInstall.title": "Manual Pack Installation",
|
|
@@ -627,6 +653,7 @@ export const websiteTranslations = {
|
|
|
627
653
|
"dataview.calendar.notConfigured": "Your interface is not configured for the Calendar view. Choose a date/datetime field to position your events.",
|
|
628
654
|
"dataview.kanban.notConfigured": "Your interface is not configured for the Kanban view. Choose a field to group your Kanban cards, and a field to list the array or multiple relationship sub-elements.",
|
|
629
655
|
"dataview.configure": "Configure",
|
|
656
|
+
"views.configure": "Configure {{view}} view",
|
|
630
657
|
"dataview.calendar.configureTitle": "Configure the Calendar view",
|
|
631
658
|
"dataview.calendar.dateFieldLabel": "Field for the event date",
|
|
632
659
|
"dataview.calendar.dateFieldPlaceholder": "Choose a date field...",
|
|
@@ -1983,18 +2010,28 @@ export const websiteTranslations = {
|
|
|
1983
2010
|
translation: {
|
|
1984
2011
|
"modelcreator.field.history": "Permite ver y supervisar los cambios realizados en los datos. Consume espacio.",
|
|
1985
2012
|
"history": "Historial",
|
|
1986
|
-
|
|
1987
2013
|
"history.op.create": "Creación",
|
|
1988
|
-
"history.op.update": "
|
|
1989
|
-
"history.op.delete": "
|
|
2014
|
+
"history.op.update": "Actualizar",
|
|
2015
|
+
"history.op.delete": "Eliminar",
|
|
1990
2016
|
"history.datePrefix": "Activado",
|
|
1991
|
-
"history.byUser": "
|
|
2017
|
+
"history.byUser": "Por",
|
|
1992
2018
|
"history.version": "Versión:",
|
|
1993
|
-
"history.error": "No se puede cargar el historial",
|
|
2019
|
+
"history.error": "No se puede cargar el historial.",
|
|
1994
2020
|
"history.title": "Historial del registro",
|
|
1995
|
-
"history.loading": "Cargando historial",
|
|
1996
|
-
"history.noHistory": "No se encontró historial para este registro",
|
|
1997
|
-
|
|
2021
|
+
"history.loading": "Cargando historial...",
|
|
2022
|
+
"history.noHistory": "No se encontró historial para este registro.",
|
|
2023
|
+
"history.noChanges": "No se registraron cambios relevantes.",
|
|
2024
|
+
"history.noData": "No hay datos en la instantánea.",
|
|
2025
|
+
"history.previewAction": "Vista previa",
|
|
2026
|
+
"history.previewTitle": "Vista previa de la revisión",
|
|
2027
|
+
"history.revertTooltip": "Restaura el documento a este estado. Esto crea una nueva versión.",
|
|
2028
|
+
"history.revertAction": "Revertir esto versión",
|
|
2029
|
+
"history.loadingPreview": "Cargando vista previa...",
|
|
2030
|
+
"history.selectRevision": "Seleccione una revisión para ver su estado completo.",
|
|
2031
|
+
"history.previewError": "No se puede cargar la vista previa de la revisión.",
|
|
2032
|
+
"history.confirmRevert": "¿Está seguro de que desea volver a la versión {{version}}? Esto creará una nueva versión con el contenido de esta revisión.",
|
|
2033
|
+
"history.revertSuccess": "El documento se restauró correctamente. El historial se actualizará.",
|
|
2034
|
+
"history.revertError": "Error al restaurar: {{error}}",
|
|
1998
2035
|
"packs.manualInstall": "Importar",
|
|
1999
2036
|
"packs.manualInstall.title": "Instalación manual del paquete",
|
|
2000
2037
|
"packs.manualInstall.instructions": "Pegue aquí el JSON de configuración del paquete que desea instalar.",
|
|
@@ -3419,13 +3456,24 @@ export const websiteTranslations = {
|
|
|
3419
3456
|
"history.op.update": "Atualização",
|
|
3420
3457
|
"history.op.delete": "Exclusão",
|
|
3421
3458
|
"history.datePrefix": "Ativado",
|
|
3422
|
-
"history.byUser": "
|
|
3459
|
+
"history.byUser": "Por",
|
|
3423
3460
|
"history.version": "Versão:",
|
|
3424
3461
|
"history.error": "Não foi possível carregar o histórico.",
|
|
3425
3462
|
"history.title": "Histórico do Registro",
|
|
3426
|
-
"history.loading": "Carregando
|
|
3427
|
-
"history.noHistory": "Nenhum histórico encontrado para este registro",
|
|
3428
|
-
|
|
3463
|
+
"history.loading": "Carregando histórico...",
|
|
3464
|
+
"history.noHistory": "Nenhum histórico encontrado para este registro.",
|
|
3465
|
+
"history.noChanges": "Nenhuma alteração relevante registrada.",
|
|
3466
|
+
"history.noData": "Nenhum dado no snapshot.",
|
|
3467
|
+
"history.previewAction": "Visualizar",
|
|
3468
|
+
"history.previewTitle": "Visualizar Revisão",
|
|
3469
|
+
"history.revertTooltip": "Restaura o documento para este status. Isso cria um novo versão.",
|
|
3470
|
+
"history.revertAction": "Reverter esta versão",
|
|
3471
|
+
"history.loadingPreview": "Carregando visualização...",
|
|
3472
|
+
"history.selectRevision": "Selecione uma revisão para ver seu status completo.",
|
|
3473
|
+
"history.previewError": "Não foi possível carregar a visualização da revisão.",
|
|
3474
|
+
"history.confirmRevert": "Tem certeza de que deseja reverter para a versão {{version}}? Isso criará uma nova versão com o conteúdo desta revisão.",
|
|
3475
|
+
"history.revertSuccess": "Documento restaurado com sucesso. O histórico agora será atualizado.",
|
|
3476
|
+
"history.revertError": "Erro ao restaurar: {{error}}",
|
|
3429
3477
|
"packs.manualInstall": "Importar",
|
|
3430
3478
|
"packs.manualInstall.title": "Instalação manual do pacote",
|
|
3431
3479
|
"packs.manualInstall.instructions": "Cole o JSON de configuração do pacote que você deseja instalar aqui.",
|
|
@@ -4841,16 +4889,29 @@ export const websiteTranslations = {
|
|
|
4841
4889
|
translation: {
|
|
4842
4890
|
"modelcreator.field.history": "Ermöglicht Ihnen, Änderungen an Ihren Daten anzuzeigen und zu überwachen. Verbraucht Speicherplatz.",
|
|
4843
4891
|
"history": "Verlauf",
|
|
4892
|
+
|
|
4844
4893
|
"history.op.create": "Erstellung",
|
|
4845
4894
|
"history.op.update": "Aktualisieren",
|
|
4846
4895
|
"history.op.delete": "Löschen",
|
|
4847
4896
|
"history.datePrefix": "Am",
|
|
4848
|
-
"history.byUser": "
|
|
4897
|
+
"history.byUser": "Von",
|
|
4849
4898
|
"history.version": "Version:",
|
|
4850
4899
|
"history.error": "Verlauf konnte nicht geladen werden.",
|
|
4851
4900
|
"history.title": "Datensatzverlauf",
|
|
4852
|
-
"history.loading": "Verlauf wird geladen",
|
|
4853
|
-
"history.noHistory": "
|
|
4901
|
+
"history.loading": "Verlauf wird geladen...",
|
|
4902
|
+
"history.noHistory": "Für diesen Datensatz wurde kein Verlauf gefunden.",
|
|
4903
|
+
"history.noChanges": "Keine relevanten Änderungen erfasst.",
|
|
4904
|
+
"history.noData": "Keine Daten im Snapshot.",
|
|
4905
|
+
"history.previewAction": "Vorschau",
|
|
4906
|
+
"history.previewTitle": "Revisionsvorschau",
|
|
4907
|
+
"history.revertTooltip": "Stellt den aktuellen Status des Dokuments wieder her. Dadurch wird eine neue Version erstellt.",
|
|
4908
|
+
"history.revertAction": "Diese Version zurücksetzen",
|
|
4909
|
+
"history.loadingPreview": "Vorschau wird geladen…",
|
|
4910
|
+
"history.selectRevision": "Wählen Sie eine Revision aus, um ihren vollständigen Status anzuzeigen.",
|
|
4911
|
+
"history.previewError": "Die Revisionsvorschau konnte nicht geladen werden.",
|
|
4912
|
+
"history.confirmRevert": "Möchten Sie wirklich zu Version {{version}} zurückkehren? Dadurch wird eine neue Version mit dem Inhalt dieser Revision erstellt.",
|
|
4913
|
+
"history.revertSuccess": "Dokument erfolgreich wiederhergestellt. Der Verlauf wird nun aktualisiert.",
|
|
4914
|
+
"history.revertError": "Fehler beim Wiederherstellen: {{error}}",
|
|
4854
4915
|
|
|
4855
4916
|
"packs.manualInstall": "Importieren",
|
|
4856
4917
|
"packs.manualInstall.title": "Manuelle Paketinstallation",
|
|
@@ -6251,17 +6312,29 @@ export const websiteTranslations = {
|
|
|
6251
6312
|
translation: {
|
|
6252
6313
|
"modelcreator.field.history": "Consente di visualizzare e monitorare le modifiche apportate ai dati. Occupa spazio.",
|
|
6253
6314
|
"history": "Cronologia",
|
|
6315
|
+
|
|
6254
6316
|
"history.op.create": "Creazione",
|
|
6255
6317
|
"history.op.update": "Aggiorna",
|
|
6256
6318
|
"history.op.delete": "Eliminazione",
|
|
6257
|
-
"history.datePrefix": "
|
|
6258
|
-
"history.byUser": "
|
|
6319
|
+
"history.datePrefix": "Attivato",
|
|
6320
|
+
"history.byUser": "Da",
|
|
6259
6321
|
"history.version": "Versione:",
|
|
6260
6322
|
"history.error": "Impossibile caricare la cronologia.",
|
|
6261
|
-
"history.title": "Cronologia record",
|
|
6262
|
-
"history.loading": "Caricamento cronologia",
|
|
6263
|
-
"history.noHistory": "Nessuna cronologia trovata per questo record",
|
|
6264
|
-
|
|
6323
|
+
"history.title": "Cronologia del record",
|
|
6324
|
+
"history.loading": "Caricamento della cronologia...",
|
|
6325
|
+
"history.noHistory": "Nessuna cronologia trovata per questo record.",
|
|
6326
|
+
"history.noChanges": "Nessuna modifica rilevante registrata.",
|
|
6327
|
+
"history.noData": "Nessun dato nello snapshot.",
|
|
6328
|
+
"history.previewAction": "Anteprima",
|
|
6329
|
+
"history.previewTitle": "Anteprima revisione",
|
|
6330
|
+
"history.revertTooltip": "Ripristina il documento a questo stato. Crea una nuova versione.",
|
|
6331
|
+
"history.revertAction": "Ripristina questo stato version",
|
|
6332
|
+
"history.loadingPreview": "Caricamento anteprima...",
|
|
6333
|
+
"history.selectRevision": "Seleziona una revisione per visualizzarne lo stato completo.",
|
|
6334
|
+
"history.previewError": "Impossibile caricare l'anteprima della revisione.",
|
|
6335
|
+
"history.confirmRevert": "Vuoi davvero tornare alla versione {{version}}? Verrà creata una nuova versione con il contenuto di questa revisione.",
|
|
6336
|
+
"history.revertSuccess": "Documento ripristinato correttamente. La cronologia verrà aggiornata.",
|
|
6337
|
+
"history.revertError": "Errore durante il ripristino: {{error}}",
|
|
6265
6338
|
"packs.manualInstall": "Importa",
|
|
6266
6339
|
"packs.manualInstall.title": "Installazione manuale del pacchetto",
|
|
6267
6340
|
"packs.manualInstall.instructions": "Incolla qui il file JSON di configurazione del pacchetto che desideri installare.",
|
|
@@ -7678,13 +7751,24 @@ export const websiteTranslations = {
|
|
|
7678
7751
|
"history.op.update": "Aktualizace",
|
|
7679
7752
|
"history.op.delete": "Smazání",
|
|
7680
7753
|
"history.datePrefix": "Zapnuto",
|
|
7681
|
-
"history.byUser": "
|
|
7754
|
+
"history.byUser": "Od",
|
|
7682
7755
|
"history.version": "Verze:",
|
|
7683
7756
|
"history.error": "Nelze načíst historii.",
|
|
7684
7757
|
"history.title": "Historie záznamu",
|
|
7685
|
-
"history.loading": "Načítání historie",
|
|
7686
|
-
"history.noHistory": "Pro tento záznam nebyla nalezena žádná historie",
|
|
7687
|
-
|
|
7758
|
+
"history.loading": "Načítání historie...",
|
|
7759
|
+
"history.noHistory": "Pro tento záznam nebyla nalezena žádná historie.",
|
|
7760
|
+
"history.noChanges": "Žádné relevantní změny nebyly zaznamenány.",
|
|
7761
|
+
"history.noData": "V snímku nejsou žádná data.",
|
|
7762
|
+
"history.previewAction": "Náhled",
|
|
7763
|
+
"history.previewTitle": "Náhled revize",
|
|
7764
|
+
"history.revertTooltip": "Obnoví dokument do tohoto stavu. Tím se vytvoří nová verze.",
|
|
7765
|
+
"history.revertAction": "Vrátit zpět verze",
|
|
7766
|
+
"history.loadingPreview": "Načítání náhledu...",
|
|
7767
|
+
"history.selectRevision": "Vyberte revizi pro zobrazení jejího úplného stavu.",
|
|
7768
|
+
"history.previewError": "Nelze načíst náhled revize.",
|
|
7769
|
+
"history.confirmRevert": "Jste si jisti, že se chcete vrátit k verzi {{version}}? Tímto se vytvoří nová verze s obsahem této revize.",
|
|
7770
|
+
"history.revertSuccess": "Dokument byl úspěšně obnoven. Historie bude nyní aktualizována.",
|
|
7771
|
+
"history.revertError": "Chyba při obnovování: {{error}}",
|
|
7688
7772
|
"packs.manualInstall": "Importovat",
|
|
7689
7773
|
"packs.manualInstall.title": "Ruční instalace balíčku",
|
|
7690
7774
|
"packs.manualInstall.instructions": "Sem vložte konfigurační JSON balíčku, který chcete nainstalovat.",
|
|
@@ -9092,16 +9176,29 @@ export const websiteTranslations = {
|
|
|
9092
9176
|
translation: {
|
|
9093
9177
|
"modelcreator.field.history": "Позволяет просматривать и отслеживать изменения, внесённые в ваши данные. Занимает место.",
|
|
9094
9178
|
"history": "История",
|
|
9179
|
+
|
|
9095
9180
|
"history.op.create": "Создание",
|
|
9096
9181
|
"history.op.update": "Обновление",
|
|
9097
9182
|
"history.op.delete": "Удаление",
|
|
9098
9183
|
"history.datePrefix": "Вкл",
|
|
9099
9184
|
"history.byUser": "Автор",
|
|
9100
9185
|
"history.version": "Версия:",
|
|
9101
|
-
"history.error": "Не удалось загрузить
|
|
9186
|
+
"history.error": "Не удалось загрузить историю.",
|
|
9102
9187
|
"history.title": "История записи",
|
|
9103
|
-
"history.loading": "Загрузка
|
|
9104
|
-
"history.noHistory": "История для этой записи не
|
|
9188
|
+
"history.loading": "Загрузка истории...",
|
|
9189
|
+
"history.noHistory": "История для этой записи не найдена.",
|
|
9190
|
+
"history.noChanges": "Соответствующие изменения не зарегистрированы.",
|
|
9191
|
+
"history.noData": "Данные в снимке отсутствуют.",
|
|
9192
|
+
"history.previewAction": "Предварительный просмотр",
|
|
9193
|
+
"history.previewTitle": "Предварительный просмотр версии",
|
|
9194
|
+
"history.revertTooltip": "Восстанавливает документ до этой версии",
|
|
9195
|
+
"history.revertAction": "Вернуть эту версию",
|
|
9196
|
+
"history.loadingPreview": "Загрузка предварительного просмотра...",
|
|
9197
|
+
"history.selectRevision": "Выберите версию, чтобы увидеть её полный статус.",
|
|
9198
|
+
"history.previewError": "Не удалось загрузить предварительный просмотр версии.",
|
|
9199
|
+
"history.confirmRevert": "Вы уверены, что хотите вернуться к версии {{version}}? Будет создана новая версия с содержимым этой версии.",
|
|
9200
|
+
"history.revertSuccess": "Документ успешно восстановлен. История будет обновлена.",
|
|
9201
|
+
"history.revertError": "Ошибка восстановления: {{error}}",
|
|
9105
9202
|
|
|
9106
9203
|
"packs.manualInstall": "Импорт",
|
|
9107
9204
|
"packs.manualInstall.title": "Ручная установка пакета",
|
|
@@ -10528,8 +10625,20 @@ export const websiteTranslations = {
|
|
|
10528
10625
|
"history.version": "الإصدار:",
|
|
10529
10626
|
"history.error": "تعذر تحميل السجل",
|
|
10530
10627
|
"history.title": "سجل السجل",
|
|
10531
|
-
"history.loading": "جارٍ تحميل
|
|
10628
|
+
"history.loading": "جارٍ تحميل السجل...",
|
|
10532
10629
|
"history.noHistory": "لم يتم العثور على سجل لهذا السجل",
|
|
10630
|
+
"history.noChanges": "لم يتم تسجيل أي تغييرات ذات صلة",
|
|
10631
|
+
"history.noData": "لا توجد بيانات في اللقطة",
|
|
10632
|
+
"history.previewAction": "معاينة",
|
|
10633
|
+
"history.previewTitle": "معاينة المراجعة",
|
|
10634
|
+
"history.revertTooltip": "يعيد المستند إلى هذه الحالة. يؤدي هذا إلى إنشاء ملف جديد الإصدار.",
|
|
10635
|
+
"history.revertAction": "استعادة هذا الإصدار",
|
|
10636
|
+
"history.loadingPreview": "جاري تحميل المعاينة...",
|
|
10637
|
+
"history.selectRevision": "حدد مراجعة للاطلاع على حالتها الكاملة.",
|
|
10638
|
+
"history.previewError": "تعذر تحميل معاينة المراجعة.",
|
|
10639
|
+
"history.confirmRevert": "هل أنت متأكد من رغبتك في العودة إلى الإصدار {{version}}؟ سيؤدي هذا إلى إنشاء إصدار جديد بمحتويات هذه المراجعة.",
|
|
10640
|
+
"history.revertSuccess": "تمت استعادة المستند بنجاح. سيتم الآن تحديث السجل.",
|
|
10641
|
+
"history.revertError": "خطأ في الاستعادة: {{error}}",
|
|
10533
10642
|
|
|
10534
10643
|
"packs.manualInstall": "استيراد",
|
|
10535
10644
|
"packs.manualInstall.title": "تثبيت الحزمة يدويًا",
|
|
@@ -11968,13 +12077,24 @@ export const websiteTranslations = {
|
|
|
11968
12077
|
"history.op.update": "Uppdatering",
|
|
11969
12078
|
"history.op.delete": "Bortning",
|
|
11970
12079
|
"history.datePrefix": "På",
|
|
11971
|
-
"history.byUser": "
|
|
12080
|
+
"history.byUser": "Av",
|
|
11972
12081
|
"history.version": "Version:",
|
|
11973
12082
|
"history.error": "Det gick inte att läsa in historiken.",
|
|
11974
12083
|
"history.title": "Posthistorik",
|
|
11975
|
-
"history.loading": "Laddar in historik",
|
|
11976
|
-
"history.noHistory": "Ingen historik hittades för den här posten",
|
|
11977
|
-
|
|
12084
|
+
"history.loading": "Laddar in historik...",
|
|
12085
|
+
"history.noHistory": "Ingen historik hittades för den här posten.",
|
|
12086
|
+
"history.noChanges": "Inga relevanta ändringar registrerade.",
|
|
12087
|
+
"history.noData": "Inga data i ögonblicksbilden.",
|
|
12088
|
+
"history.previewAction": "Förhandsgranska",
|
|
12089
|
+
"history.previewTitle": "Förhandsgranska version",
|
|
12090
|
+
"history.revertTooltip": "Återställer dokumentet till denna status. Detta skapar en ny version.",
|
|
12091
|
+
"history.revertAction": "Återställ den här versionen",
|
|
12092
|
+
"history.loadingPreview": "Laddar in förhandsgranskning...",
|
|
12093
|
+
"history.selectRevision": "Välj en revision för att se dess fullständiga status.",
|
|
12094
|
+
"history.previewError": "Det gick inte att ladda förhandsgranskningen av revisionen.",
|
|
12095
|
+
"history.confirmRevert": "Är du säker på att du vill återgå till version {{version}}? Detta skapar en ny version med innehållet i denna revision.",
|
|
12096
|
+
"history.revertSuccess": "Dokumentet har återställts. Historiken kommer nu att uppdateras.",
|
|
12097
|
+
"history.revertError": "Fel vid återställning: {{error}}",
|
|
11978
12098
|
"packs.manualInstall": "Importera",
|
|
11979
12099
|
"packs.manualInstall.title": "Manuell paketinstallation",
|
|
11980
12100
|
"packs.manualInstall.instructions": "Klistra in konfigurations-JSON-filen för paketet du vill installera här.",
|
|
@@ -13386,13 +13506,25 @@ export const websiteTranslations = {
|
|
|
13386
13506
|
"history.op.update": "Ενημέρωση",
|
|
13387
13507
|
"history.op.delete": "Διαγραφή",
|
|
13388
13508
|
"history.datePrefix": "Ενεργοποίηση",
|
|
13389
|
-
"history.byUser": "
|
|
13509
|
+
"history.byUser": "Από",
|
|
13390
13510
|
"history.version": "Έκδοση:",
|
|
13391
13511
|
"history.error": "Δεν είναι δυνατή η φόρτωση του ιστορικού.",
|
|
13392
|
-
"history.title": "Ιστορικό
|
|
13393
|
-
"history.loading": "Φόρτωση
|
|
13394
|
-
"history.noHistory": "Δεν βρέθηκε ιστορικό για αυτήν την
|
|
13395
|
-
|
|
13512
|
+
"history.title": "Ιστορικό εγγραφών",
|
|
13513
|
+
"history.loading": "Φόρτωση ιστορικού...",
|
|
13514
|
+
"history.noHistory": "Δεν βρέθηκε ιστορικό για αυτήν την εγγραφή.",
|
|
13515
|
+
"history.noChanges": "Δεν έχουν καταγραφεί σχετικές αλλαγές.",
|
|
13516
|
+
"history.noData": "Δεν υπάρχουν δεδομένα στο στιγμιότυπο.",
|
|
13517
|
+
"history.previewAction": "Προεπισκόπηση",
|
|
13518
|
+
"history.previewTitle": "Προεπισκόπηση αναθεώρησης",
|
|
13519
|
+
"history.revertTooltip": "Επαναφέρει το έγγραφο σε αυτήν την κατάσταση. Αυτό δημιουργεί μια νέα έκδοση.",
|
|
13520
|
+
"history.revertAction": "Επαναφορά αυτής της έκδοσης",
|
|
13521
|
+
|
|
13522
|
+
"history.loadingPreview": "Φόρτωση προεπισκόπηση...",
|
|
13523
|
+
"history.selectRevision": "Επιλέξτε μια αναθεώρηση για να δείτε την πλήρη κατάστασή της.",
|
|
13524
|
+
"history.previewError": "Δεν είναι δυνατή η φόρτωση της προεπισκόπησης αναθεώρησης.",
|
|
13525
|
+
"history.confirmRevert": "Είστε βέβαιοι ότι θέλετε να επαναφέρετε την έκδοση {{version}}; Αυτό θα δημιουργήσει μια νέα έκδοση με τα περιεχόμενα αυτής της αναθεώρησης.",
|
|
13526
|
+
"history.revertSuccess": "Η επαναφορά του εγγράφου ολοκληρώθηκε με επιτυχία. Το ιστορικό θα ενημερωθεί τώρα.",
|
|
13527
|
+
"history.revertError": "Σφάλμα επαναφοράς: {{error}}",
|
|
13396
13528
|
"packs.manualInstall": "Εισαγωγή",
|
|
13397
13529
|
"packs.manualInstall.title": "Χειροκίνητη εγκατάσταση πακέτου",
|
|
13398
13530
|
"packs.manualInstall.instructions": "Επικολλήστε εδώ το JSON διαμόρφωσης του πακέτου που θέλετε να εγκαταστήσετε.",
|
|
@@ -14816,9 +14948,20 @@ export const websiteTranslations = {
|
|
|
14816
14948
|
"history.version": "نسخه:",
|
|
14817
14949
|
"history.error": "بارگیری تاریخچه امکانپذیر نیست.",
|
|
14818
14950
|
"history.title": "تاریخچه رکورد",
|
|
14819
|
-
"history.loading": "
|
|
14820
|
-
"history.noHistory": "هیچ تاریخچهای برای این رکورد یافت
|
|
14821
|
-
|
|
14951
|
+
"history.loading": "در حال بارگذاری تاریخچه...",
|
|
14952
|
+
"history.noHistory": "هیچ تاریخچهای برای این رکورد یافت نشد.",
|
|
14953
|
+
"history.noChanges": "هیچ تغییر مرتبطی ثبت نشده است.",
|
|
14954
|
+
"history.noData": "دادهای در تصویر لحظهای وجود ندارد.",
|
|
14955
|
+
"history.previewAction": "پیشنمایش",
|
|
14956
|
+
"history.previewTitle": "پیشنمایش ویرایش",
|
|
14957
|
+
"history.revertTooltip": "سند را به این وضعیت بازیابی میکند. این یک نسخه جدید.",
|
|
14958
|
+
"history.revertAction": "این نسخه را برگردانید",
|
|
14959
|
+
"history.loadingPreview": "در حال بارگذاری پیشنمایش...",
|
|
14960
|
+
"history.selectRevision": "برای مشاهده وضعیت کامل یک نسخه، آن را انتخاب کنید.",
|
|
14961
|
+
"history.previewError": "قادر به بارگذاری پیشنمایش نسخه نیست.",
|
|
14962
|
+
"history.confirmRevert": "آیا مطمئنید که میخواهید به نسخه {{version}} برگردید؟ این کار یک نسخه جدید با محتوای این نسخه ایجاد میکند.",
|
|
14963
|
+
"history.revertSuccess": "سند با موفقیت بازیابی شد. تاریخچه اکنون بهروزرسانی خواهد شد.",
|
|
14964
|
+
"history.revertError": "خطا در بازیابی: {{error}}",
|
|
14822
14965
|
"packs.manualInstall": "وارد کردن",
|
|
14823
14966
|
"packs.manualInstall.title": "نصب دستی بسته",
|
|
14824
14967
|
"packs.manualInstall.instructions": "فایل JSON پیکربندی بستهای که میخواهید نصب کنید را اینجا جایگذاری کنید.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "data-primals-engine",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "data-primals-engine is a package responsible from handling large amount of data using MongoDB in a practical and performant way. It can also get workflow models working (for automation), and fully supports internationalisation. It also has integrated AI assistant.",
|
|
5
5
|
"main": "src/engine.js",
|
|
6
6
|
"type": "module",
|