nextjs-cms 0.9.21 → 0.9.22
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/dist/api/index.d.ts +3 -3
- package/dist/api/lib/serverActions.d.ts +3 -3
- package/dist/api/root.d.ts +6 -6
- package/dist/api/routers/navigation.d.ts +3 -3
- package/dist/cli/lib/update-sections.d.ts.map +1 -1
- package/dist/cli/lib/update-sections.js +72 -33
- package/dist/core/db/table-checker/MysqlTable.d.ts.map +1 -1
- package/dist/core/db/table-checker/MysqlTable.js +3 -1
- package/dist/core/fields/date-range.d.ts +4 -4
- package/dist/core/sections/category.d.ts +44 -44
- package/dist/core/sections/hasItems.d.ts +44 -44
- package/dist/core/sections/section.d.ts +23 -23
- package/dist/core/sections/simple.d.ts +6 -6
- package/dist/translations/base/en.d.ts +4 -0
- package/dist/translations/base/en.d.ts.map +1 -1
- package/dist/translations/base/en.js +4 -0
- package/dist/translations/client.d.ts +52 -4
- package/dist/translations/client.d.ts.map +1 -1
- package/dist/translations/server.d.ts +52 -4
- package/dist/translations/server.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -286,11 +286,15 @@ declare const _default: {
|
|
|
286
286
|
readonly deletePhotoText: "Are you sure you want to delete this photo? The photo will be permanently deleted after confirmation.";
|
|
287
287
|
readonly deleteVideo: "Delete Video";
|
|
288
288
|
readonly deleteVideoText: "Are you sure you want to delete this video? The video will be permanently deleted after confirmation.";
|
|
289
|
+
readonly deleteDocument: "Delete Document";
|
|
290
|
+
readonly deleteDocumentText: "Are you sure you want to delete this document? The document will be permanently deleted after confirmation.";
|
|
289
291
|
readonly yes: "Yes";
|
|
290
292
|
readonly no: "No";
|
|
291
293
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
292
294
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
293
295
|
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
296
|
+
readonly videoMarkedForDeletion: "Video will be deleted when you save.";
|
|
297
|
+
readonly documentMarkedForDeletion: "Document will be deleted when you save.";
|
|
294
298
|
readonly undo: "Undo";
|
|
295
299
|
readonly selectFile: "Select File";
|
|
296
300
|
readonly mandatory: "Mandatory";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/translations/base/en.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/translations/base/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAogBU"}
|
|
@@ -286,11 +286,15 @@ export default {
|
|
|
286
286
|
deletePhotoText: 'Are you sure you want to delete this photo? The photo will be permanently deleted after confirmation.',
|
|
287
287
|
deleteVideo: 'Delete Video',
|
|
288
288
|
deleteVideoText: 'Are you sure you want to delete this video? The video will be permanently deleted after confirmation.',
|
|
289
|
+
deleteDocument: 'Delete Document',
|
|
290
|
+
deleteDocumentText: 'Are you sure you want to delete this document? The document will be permanently deleted after confirmation.',
|
|
289
291
|
yes: 'Yes',
|
|
290
292
|
no: 'No',
|
|
291
293
|
videoDeletedSuccessfully: 'Video deleted successfully',
|
|
292
294
|
photoDeletedSuccessfully: 'Photo deleted successfully',
|
|
293
295
|
photoMarkedForDeletion: 'Photo will be deleted when you save.',
|
|
296
|
+
videoMarkedForDeletion: 'Video will be deleted when you save.',
|
|
297
|
+
documentMarkedForDeletion: 'Document will be deleted when you save.',
|
|
294
298
|
undo: 'Undo',
|
|
295
299
|
selectFile: 'Select File',
|
|
296
300
|
mandatory: 'Mandatory',
|