diff --git a/go.mod b/go.mod index e1f7781c4..7cb11cb52 100644 --- a/go.mod +++ b/go.mod @@ -17,7 +17,7 @@ require ( github.com/SentimensRG/ctx v0.0.0-20180729130232-0bfd988c655d github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d github.com/brianvoe/gofakeit/v6 v6.12.1 - github.com/cortezaproject/corteza-locale v0.0.0-20220111135803-4fb0db6196bc + github.com/cortezaproject/corteza-locale v0.0.0-20220124154529-d6bd87ef6de3 github.com/crewjam/saml v0.4.6 github.com/crusttech/go-oidc v0.0.0-20180918092017-982855dad3e1 github.com/davecgh/go-spew v1.1.1 diff --git a/go.sum b/go.sum index 6a874445e..3b2ec9391 100644 --- a/go.sum +++ b/go.sum @@ -143,6 +143,8 @@ github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3Ee github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/cortezaproject/corteza-locale v0.0.0-20220111135803-4fb0db6196bc h1:d4xI2vuPSA/U+y1JJQKC9nwk2FSnoYansUquX6IPj5E= github.com/cortezaproject/corteza-locale v0.0.0-20220111135803-4fb0db6196bc/go.mod h1:wsI1UftEdBqTuEDKBZmx2LfNu/kZun5pRbCAi420JCg= +github.com/cortezaproject/corteza-locale v0.0.0-20220124154529-d6bd87ef6de3 h1:a/MFzX4AxLsE7SNTV5JQWO5ufXM71x8Uxca3mY+9Fq0= +github.com/cortezaproject/corteza-locale v0.0.0-20220124154529-d6bd87ef6de3/go.mod h1:wsI1UftEdBqTuEDKBZmx2LfNu/kZun5pRbCAi420JCg= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/de/corteza-server/compose/namespace.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/de/corteza-server/compose/namespace.yaml index 3583bec8d..35d4b1cef 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/de/corteza-server/compose/namespace.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/de/corteza-server/compose/namespace.yaml @@ -11,3 +11,7 @@ errors: notAllowedToUpdate: dieser Namespace kann nicht aktualisiert werden notFound: Namespace nicht vorhanden staleData: alte Daten + unsupportedExportFormat: unsupported export format + unsupportedImportFormat: unsupported import format + importMissingNamespace: the import source does not contain a namespace definition + cloneMultiple: not allowed to clone multiple namespaces at once \ No newline at end of file diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/de/corteza-webapp-compose/notification.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/de/corteza-webapp-compose/notification.yaml index adb28fc31..927cc1c9d 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/de/corteza-webapp-compose/notification.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/de/corteza-webapp-compose/notification.yaml @@ -68,6 +68,8 @@ page: record: createFailed: Could not create record deleteFailed: Could not delete record + deleteBulkFailed: Could not delete selected records + deleteBulkSuccess: Deleted selected records invalidOwnerVar: Can not use ${ownerID} variable in non-record pages invalidRecordVar: Can not use ${record...} variable in non-record pages listLoadFailed: Could not load record list diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-server/compose/namespace.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-server/compose/namespace.yaml index 452e4b2c9..4c3d016a1 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-server/compose/namespace.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-server/compose/namespace.yaml @@ -12,4 +12,5 @@ errors: staleData: stale data unsupportedExportFormat: unsupported export format unsupportedImportFormat: unsupported import format + importMissingNamespace: the import source does not contain a namespace definition cloneMultiple: not allowed to clone multiple namespaces at once diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/block.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/block.yaml index e8fbbd68f..13f789385 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/block.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/block.yaml @@ -179,9 +179,6 @@ metric: labelLabel: Label style valueLabel: Value style label: Metric -notification: - record: - loadFailed: Could not load record record: confirmDelete: Are you sure you want to delete this record? deleteFailed: Could not delete record @@ -231,6 +228,7 @@ recordList: selection: Selected records specifyTimezone: Export to timezone timezonePlaceholder: Select timezone + datePresetUndefined: Unknown date preset federated: Federated fields: Module fields filter: diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/general.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/general.yaml index eb10acf5a..61bfd2916 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/general.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/general.yaml @@ -116,11 +116,4 @@ field: unselectAll: Unselect all kind: user: - suggestionPlaceholder: Start typing to search for users by email or name -notification: - composeAccessNotAllowed: Not allowed to access Compose - import: - failed: Import failed - readingError: Error reading file - successful: Import successful - typeMissmatch: 'Import error: trying to import object of type "{{type1}}" into a list of objects of type "{{type2}}"' + suggestionPlaceholder: Start typing to search for users by email or name \ No newline at end of file diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/module.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/module.yaml index 71c9e527f..b12f57ef6 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/module.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/module.yaml @@ -95,13 +95,6 @@ newLabel: Module Name * newPlaceholder: Name used on the list of modules noModule: No modules noModuleFilter: No module matches your search -notification: - deleteFailed: Could not delete this module - deleted: Module deleted - saveFailed: Could not save this module - saved: Module saved - page: - createFailed: Could not create a page recordPage: create: Create record page edit: Page builder diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/namespace.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/namespace.yaml index 7c83a3366..89bb409dd 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/namespace.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/namespace.yaml @@ -36,20 +36,6 @@ name: label: Full namespace name * placeholder: Enter namespace name noResults: No namespaces found -notification: - application: - createFailed: Could not create namespace application - fetchFailed: Could not fetch namespace application - saveFailed: Could not save namespace application - assetUploadFailed: Could not upload attached assets - createFailed: Could not create namespace - deleteFailed: Could not delete this namespace - disabled: Namespace disabled - redirecting - saveFailed: Could not save this namespace - cloneFailed: Could not clone this namespace - saved: Namespace saved - imported: Namespace imported - importFailed: Namespace failed to import searchPlaceholder: Type here to search among all namespaces... setPermissions: Set namespace permissions slug: diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/notification.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/notification.yaml index 46187a10c..937bed5ca 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/notification.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/notification.yaml @@ -32,12 +32,22 @@ general: error: Error success: Success warning: Warning + import: + failed: Import failed + readingError: Error reading file + successful: Import successful + typeMissmatch: 'Import error: trying to import object of type "{{type1}}" into a list of objects of type "{{type2}}"' module: createFailed: Could not create a module deleteFailed: Could not delete this module deleted: Module deleted saveFailed: Could not save this module saved: Module saved + columns: + saved: Columns saved + saveFailed: Could not save columns + recordPage: + createFailed: Could not create module record page namespace: application: createFailed: Could not create namespace application @@ -49,6 +59,9 @@ namespace: disabled: Namespace disabled - redirecting saveFailed: Could not save this namespace saved: Namespace saved + cloneFailed: Could not clone this namespace + imported: Namespace imported + importFailed: Namespace failed to import page: createFailed: Could not create a page deleteFailed: Could not delete this page @@ -60,6 +73,8 @@ page: record: createFailed: Could not create record deleteFailed: Could not delete record + deleteBulkFailed: Could not delete selected records + deleteBulkSuccess: Successfully deleted selected records invalidOwnerVar: Can not use ${ownerID} variable in non-record pages invalidRecordVar: Can not use ${record...} variable in non-record pages listLoadFailed: Could not load record list diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/page.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/page.yaml index 1ba5cf371..d184e549b 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/page.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/en/corteza-webapp-compose/page.yaml @@ -38,12 +38,6 @@ navigation: newPlaceholder: Page title noBlock: No block added yet noPages: No pages -notification: - deleteFailed: Could not delete this page - loadFailed: Could not load the page tree - saved: Page saved - saveFailed: Could not save this page - saveFailedRequired: Could not save this page, all required module fields must be present notVisible: Hidden pageMoveFailed: Could not move this page reordered: Page reordered diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/fr/corteza-server/compose/namespace.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/fr/corteza-server/compose/namespace.yaml index b81b47bb2..591987756 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/fr/corteza-server/compose/namespace.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/fr/corteza-server/compose/namespace.yaml @@ -11,3 +11,7 @@ errors: notAllowedToUpdate: not allowed to update this namespace notFound: namespace does not exist staleData: stale data + unsupportedExportFormat: unsupported export format + unsupportedImportFormat: unsupported import format + importMissingNamespace: the import source does not contain a namespace definition + cloneMultiple: not allowed to clone multiple namespaces at once \ No newline at end of file diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/fr/corteza-webapp-compose/notification.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/fr/corteza-webapp-compose/notification.yaml index adb28fc31..0a569ee0b 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/fr/corteza-webapp-compose/notification.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/fr/corteza-webapp-compose/notification.yaml @@ -68,6 +68,8 @@ page: record: createFailed: Could not create record deleteFailed: Could not delete record + deleteBulkFailed: Could not delete selected records + deleteBulkSuccess: Successfully deleted selected records invalidOwnerVar: Can not use ${ownerID} variable in non-record pages invalidRecordVar: Can not use ${record...} variable in non-record pages listLoadFailed: Could not load record list diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/ro/corteza-server/compose/namespace.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/ro/corteza-server/compose/namespace.yaml index b81b47bb2..591987756 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/ro/corteza-server/compose/namespace.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/ro/corteza-server/compose/namespace.yaml @@ -11,3 +11,7 @@ errors: notAllowedToUpdate: not allowed to update this namespace notFound: namespace does not exist staleData: stale data + unsupportedExportFormat: unsupported export format + unsupportedImportFormat: unsupported import format + importMissingNamespace: the import source does not contain a namespace definition + cloneMultiple: not allowed to clone multiple namespaces at once \ No newline at end of file diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/ro/corteza-webapp-compose/notification.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/ro/corteza-webapp-compose/notification.yaml index adb28fc31..0a569ee0b 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/ro/corteza-webapp-compose/notification.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/ro/corteza-webapp-compose/notification.yaml @@ -68,6 +68,8 @@ page: record: createFailed: Could not create record deleteFailed: Could not delete record + deleteBulkFailed: Could not delete selected records + deleteBulkSuccess: Successfully deleted selected records invalidOwnerVar: Can not use ${ownerID} variable in non-record pages invalidRecordVar: Can not use ${record...} variable in non-record pages listLoadFailed: Could not load record list diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/sl/corteza-server/compose/namespace.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/sl/corteza-server/compose/namespace.yaml index b81b47bb2..591987756 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/sl/corteza-server/compose/namespace.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/sl/corteza-server/compose/namespace.yaml @@ -11,3 +11,7 @@ errors: notAllowedToUpdate: not allowed to update this namespace notFound: namespace does not exist staleData: stale data + unsupportedExportFormat: unsupported export format + unsupportedImportFormat: unsupported import format + importMissingNamespace: the import source does not contain a namespace definition + cloneMultiple: not allowed to clone multiple namespaces at once \ No newline at end of file diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/sl/corteza-webapp-compose/notification.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/sl/corteza-webapp-compose/notification.yaml index adb28fc31..0a569ee0b 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/sl/corteza-webapp-compose/notification.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/sl/corteza-webapp-compose/notification.yaml @@ -68,6 +68,8 @@ page: record: createFailed: Could not create record deleteFailed: Could not delete record + deleteBulkFailed: Could not delete selected records + deleteBulkSuccess: Successfully deleted selected records invalidOwnerVar: Can not use ${ownerID} variable in non-record pages invalidRecordVar: Can not use ${record...} variable in non-record pages listLoadFailed: Could not load record list diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/uk/corteza-server/compose/namespace.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/uk/corteza-server/compose/namespace.yaml index b81b47bb2..591987756 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/uk/corteza-server/compose/namespace.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/uk/corteza-server/compose/namespace.yaml @@ -11,3 +11,7 @@ errors: notAllowedToUpdate: not allowed to update this namespace notFound: namespace does not exist staleData: stale data + unsupportedExportFormat: unsupported export format + unsupportedImportFormat: unsupported import format + importMissingNamespace: the import source does not contain a namespace definition + cloneMultiple: not allowed to clone multiple namespaces at once \ No newline at end of file diff --git a/vendor/github.com/cortezaproject/corteza-locale/src/uk/corteza-webapp-compose/notification.yaml b/vendor/github.com/cortezaproject/corteza-locale/src/uk/corteza-webapp-compose/notification.yaml index adb28fc31..0a569ee0b 100644 --- a/vendor/github.com/cortezaproject/corteza-locale/src/uk/corteza-webapp-compose/notification.yaml +++ b/vendor/github.com/cortezaproject/corteza-locale/src/uk/corteza-webapp-compose/notification.yaml @@ -68,6 +68,8 @@ page: record: createFailed: Could not create record deleteFailed: Could not delete record + deleteBulkFailed: Could not delete selected records + deleteBulkSuccess: Successfully deleted selected records invalidOwnerVar: Can not use ${ownerID} variable in non-record pages invalidRecordVar: Can not use ${record...} variable in non-record pages listLoadFailed: Could not load record list diff --git a/vendor/modules.txt b/vendor/modules.txt index f7549cf65..19e0f57da 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -43,7 +43,7 @@ github.com/brianvoe/gofakeit/v6 github.com/brianvoe/gofakeit/v6/data # github.com/cespare/xxhash/v2 v2.1.2 github.com/cespare/xxhash/v2 -# github.com/cortezaproject/corteza-locale v0.0.0-20220111135803-4fb0db6196bc +# github.com/cortezaproject/corteza-locale v0.0.0-20220124154529-d6bd87ef6de3 ## explicit github.com/cortezaproject/corteza-locale # github.com/crewjam/httperr v0.2.0