nextjs-cms 0.7.3 → 0.7.5
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/core/config/config-loader.d.ts +32 -24
- package/dist/core/config/config-loader.d.ts.map +1 -1
- package/dist/core/config/config-loader.js +45 -23
- package/dist/core/fields/photo.d.ts +6 -6
- package/dist/core/fields/photo.js +3 -3
- package/dist/core/fields/richText.d.ts +9 -9
- package/dist/core/fields/select.d.ts +1 -1
- package/dist/core/sections/category.d.ts +4 -4
- package/dist/core/sections/hasItems.d.ts +10 -10
- package/dist/core/sections/section.d.ts +15 -4
- package/dist/core/sections/section.d.ts.map +1 -1
- package/dist/core/sections/section.js +3 -3
- package/dist/core/sections/simple.d.ts +2 -2
- package/dist/core/submit/ItemEditSubmit.d.ts +10 -0
- package/dist/core/submit/ItemEditSubmit.d.ts.map +1 -1
- package/dist/core/submit/ItemEditSubmit.js +38 -0
- package/dist/core/submit/NewItemSubmit.d.ts +10 -0
- package/dist/core/submit/NewItemSubmit.d.ts.map +1 -1
- package/dist/core/submit/NewItemSubmit.js +37 -0
- package/dist/core/submit/submit.d.ts +4 -2
- package/dist/core/submit/submit.d.ts.map +1 -1
- package/dist/core/submit/submit.js +6 -28
- package/dist/translations/client.d.ts +4 -4
- package/dist/translations/server.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NewItemSubmit.d.ts","sourceRoot":"","sources":["../../../src/core/submit/NewItemSubmit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAC,MAAM,aAAa,CAAC;AAGtC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AACvC,OAAO,KAAI,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AAEzD,qBAAa,SAAU,SAAQ,MAAM;IACjC,gBAAyB,CAAC,UAAU,CAAC,EAAE,MAAM,CAAc;cACxC,eAAe,IAAI,YAAY;
|
|
1
|
+
{"version":3,"file":"NewItemSubmit.d.ts","sourceRoot":"","sources":["../../../src/core/submit/NewItemSubmit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAC,MAAM,aAAa,CAAC;AAGtC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AACvC,OAAO,KAAI,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AAEzD,qBAAa,SAAU,SAAQ,MAAM;IACjC,gBAAyB,CAAC,UAAU,CAAC,EAAE,MAAM,CAAc;cACxC,eAAe,IAAI,YAAY;IAIlD;;;OAGG;cACsB,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC;IAa3D;;;OAGG;cACsB,kBAAkB,IAAI,OAAO,CAAC,IAAI,CAAC;IAc5D;;;;OAIG;cACa,cAAc;IAY9B,SAAS,CAAC,aAAa,IAAI,GAAG,GAAG,SAAS;CAsE7C"}
|
|
@@ -7,6 +7,43 @@ export class NewSubmit extends Submit {
|
|
|
7
7
|
getLogEventType() {
|
|
8
8
|
return 'section.item.create';
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* Run the beforeCreate hook before item insertion
|
|
12
|
+
* @protected
|
|
13
|
+
*/
|
|
14
|
+
async runPreSubmitHooks() {
|
|
15
|
+
if (!this._sectionInfo.hooks?.beforeCreate)
|
|
16
|
+
return;
|
|
17
|
+
try {
|
|
18
|
+
await this._sectionInfo.hooks.beforeCreate({
|
|
19
|
+
values: this.sqlNamesAndValues,
|
|
20
|
+
section: this._sectionInfo,
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
catch (e) {
|
|
24
|
+
// Do not break the submit flow if a hook throws
|
|
25
|
+
console.error('beforeCreate hook failed:', e);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Run the afterCreate hook after item insertion
|
|
30
|
+
* @protected
|
|
31
|
+
*/
|
|
32
|
+
async runPostSubmitHooks() {
|
|
33
|
+
if (!this._sectionInfo.hooks?.afterCreate)
|
|
34
|
+
return;
|
|
35
|
+
try {
|
|
36
|
+
await this._sectionInfo.hooks.afterCreate({
|
|
37
|
+
itemId: this._itemId,
|
|
38
|
+
values: this.sqlNamesAndValues,
|
|
39
|
+
section: this._sectionInfo,
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
catch (e) {
|
|
43
|
+
// Do not break the submit flow if a hook throws
|
|
44
|
+
console.error('afterCreate hook failed:', e);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
10
47
|
/**
|
|
11
48
|
* Rollback submit
|
|
12
49
|
* This will rollback the submit for this item
|
|
@@ -30,12 +30,14 @@ export declare abstract class Submit {
|
|
|
30
30
|
*/
|
|
31
31
|
constructor({ preSubmit, sectionName, user, postData, requestMetadata }: ConstructorType);
|
|
32
32
|
/**
|
|
33
|
-
* Run custom hooks before the item is
|
|
33
|
+
* Run custom hooks before the item is saved.
|
|
34
|
+
* Subclasses override this to call the appropriate create or update hook.
|
|
34
35
|
* @protected
|
|
35
36
|
*/
|
|
36
37
|
protected runPreSubmitHooks(): Promise<void>;
|
|
37
38
|
/**
|
|
38
|
-
* Run custom hooks after the item is
|
|
39
|
+
* Run custom hooks after the item is saved.
|
|
40
|
+
* Subclasses override this to call the appropriate create or update hook.
|
|
39
41
|
* @protected
|
|
40
42
|
*/
|
|
41
43
|
protected runPostSubmitHooks(): Promise<void>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"submit.d.ts","sourceRoot":"","sources":["../../../src/core/submit/submit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,aAAa,CAAA;AAGtC,OAAO,KAAK,EAAE,KAAK,EAAe,MAAM,WAAW,CAAA;AACnD,OAAO,KAAK,EAAE,OAAO,EAAoC,MAAM,aAAa,CAAA;AAE5E,OAAO,EAAE,UAAU,EAAM,MAAM,YAAY,CAAA;AAG3C,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AACtC,OAAO,EAAa,KAAK,YAAY,EAAE,KAAK,eAAe,EAAE,MAAM,wBAAwB,CAAA;AAM3F,KAAK,eAAe,GAAG;IACnB,WAAW,EAAE,MAAM,CAAA;IACnB,IAAI,EAAE,IAAI,CAAA;IACV,QAAQ,EAAE,QAAQ,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,eAAe,CAAC,EAAE,eAAe,CAAA;CACpC,CAAA;AAED,8BAAsB,MAAM;IACxB,MAAM,CAAC,QAAQ,CAAC,CAAC,UAAU,CAAC,EAAE,MAAM,CAAW;IAC/C,SAAS,CAAC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAA;IAC7B,SAAS,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAAY;IAC1D,SAAS,CAAC,MAAM,EAAE,OAAO,CAAQ;IACjC,SAAS,CAAC,aAAa,EAAE,MAAM,CAAK;IACpC,OAAO,CAAC,QAAQ,CAAwB;IACxC,SAAS,CAAC,WAAW,EAAE,MAAM,CAAA;IAC7B,QAAQ,CAAC,SAAS,EAAE,QAAQ,CAAA;IAC5B,SAAS,CAAC,YAAY,EAAG,OAAO,CAAA;IAChC,SAAS,CAAC,SAAS,EAAE,OAAO,CAAQ;IACpC,SAAS,CAAC,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAK;IACrD,SAAS,CAAC,MAAM,EAAE,KAAK,EAAE,CAAK;IAC9B,SAAS,CAAC,eAAe,CAAC,EAAE,eAAe,CAAA;IAE3C;;OAEG;gBACS,EAAE,SAAS,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,eAAe,EAAE,EAAE,eAAe;IAQxF
|
|
1
|
+
{"version":3,"file":"submit.d.ts","sourceRoot":"","sources":["../../../src/core/submit/submit.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,aAAa,CAAA;AAGtC,OAAO,KAAK,EAAE,KAAK,EAAe,MAAM,WAAW,CAAA;AACnD,OAAO,KAAK,EAAE,OAAO,EAAoC,MAAM,aAAa,CAAA;AAE5E,OAAO,EAAE,UAAU,EAAM,MAAM,YAAY,CAAA;AAG3C,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AACtC,OAAO,EAAa,KAAK,YAAY,EAAE,KAAK,eAAe,EAAE,MAAM,wBAAwB,CAAA;AAM3F,KAAK,eAAe,GAAG;IACnB,WAAW,EAAE,MAAM,CAAA;IACnB,IAAI,EAAE,IAAI,CAAA;IACV,QAAQ,EAAE,QAAQ,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,eAAe,CAAC,EAAE,eAAe,CAAA;CACpC,CAAA;AAED,8BAAsB,MAAM;IACxB,MAAM,CAAC,QAAQ,CAAC,CAAC,UAAU,CAAC,EAAE,MAAM,CAAW;IAC/C,SAAS,CAAC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAA;IAC7B,SAAS,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAAY;IAC1D,SAAS,CAAC,MAAM,EAAE,OAAO,CAAQ;IACjC,SAAS,CAAC,aAAa,EAAE,MAAM,CAAK;IACpC,OAAO,CAAC,QAAQ,CAAwB;IACxC,SAAS,CAAC,WAAW,EAAE,MAAM,CAAA;IAC7B,QAAQ,CAAC,SAAS,EAAE,QAAQ,CAAA;IAC5B,SAAS,CAAC,YAAY,EAAG,OAAO,CAAA;IAChC,SAAS,CAAC,SAAS,EAAE,OAAO,CAAQ;IACpC,SAAS,CAAC,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAK;IACrD,SAAS,CAAC,MAAM,EAAE,KAAK,EAAE,CAAK;IAC9B,SAAS,CAAC,eAAe,CAAC,EAAE,eAAe,CAAA;IAE3C;;OAEG;gBACS,EAAE,SAAS,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,eAAe,EAAE,EAAE,eAAe;IAQxF;;;;OAIG;cACa,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC;IAIlD;;;;OAIG;cACa,kBAAkB,IAAI,OAAO,CAAC,IAAI,CAAC;IAInD;;;OAGG;cACa,aAAa,CAAC,KAAK,CAAC,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC;IAmB7D,SAAS,CAAC,eAAe,IAAI,YAAY,GAAG,IAAI;IAIhD,SAAS,CAAC,gBAAgB,IAAI,MAAM,EAAE;IAMtC,SAAS,CAAC,qBAAqB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO;IAI5D,SAAS,CAAC,cAAc,IAAI,MAAM,GAAG,IAAI;YAkB3B,YAAY;IA0B1B;;OAEG;IACU,UAAU,CAAC,YAAY,GAAE,GAAG,GAAG,GAAS;IAIrD;;;;;OAKG;YACW,qBAAqB;IAyCnC;;;;OAIG;YACW,UAAU;IAqDxB;;;;OAIG;cACa,kBAAkB;IAMlC;;;;OAIG;IACH,SAAS,CAAC,QAAQ,CAAC,cAAc,IAAI,OAAO,CAAC,IAAI,CAAC;IAElD;;;;OAIG;IACH,OAAO,CAAC,qBAAqB;IAqB7B;;;OAGG;IACH,SAAS,CAAC,QAAQ,CAAC,aAAa,IAAI,GAAG,GAAG,SAAS;IAEnD;;;;OAIG;IACH,SAAS,CAAC,aAAa,CAAC,KAAK,EAAE,KAAK;IAIpC;;;;OAIG;IACH,SAAS,CAAC,aAAa,CAAC,KAAK,EAAE,KAAK;IAqBpC,SAAS,CAAC,uBAAuB,CAAC,KAAK,EAAE,KAAK;IAM9C,SAAS,CAAC,iBAAiB,CAAC,KAAK,EAAE,KAAK;IAUxC;;;;OAIG;cACa,WAAW,CAAC,KAAK,EAAE,KAAK;cAoDxB,YAAY;IAU5B;;;;;OAKG;IACH,SAAS,CAAC,iBAAiB,IAAI,MAAM,GAAG,MAAM,GAAG,SAAS;IAI1D;;;;;OAKG;IACH,OAAO,CAAC,aAAa;IAWrB;;;;OAIG;cACa,eAAe,IAAI,OAAO,CAAC,IAAI,CAAC;IAUhD;;;;;OAKG;YACW,qBAAqB;IAmDnC;;;;OAIG;YACW,YAAY;IA+B1B;;OAEG;IACU,MAAM;YAyGL,aAAa;IAkF3B,IAAI,YAAY,IAAI,MAAM,CAEzB;IAED,IAAI,KAAK,IAAI,OAAO,CAEnB;IAED,IAAI,OAAO,IAAI,MAAM,EAAE,GAAG,IAAI,CAE7B;IAED,OAAO,CAAC,SAAS;CAMpB"}
|
|
@@ -34,42 +34,20 @@ export class Submit {
|
|
|
34
34
|
this.requestMetadata = requestMetadata;
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
|
-
* Run custom hooks before the item is
|
|
37
|
+
* Run custom hooks before the item is saved.
|
|
38
|
+
* Subclasses override this to call the appropriate create or update hook.
|
|
38
39
|
* @protected
|
|
39
40
|
*/
|
|
40
41
|
async runPreSubmitHooks() {
|
|
41
|
-
|
|
42
|
-
return;
|
|
43
|
-
try {
|
|
44
|
-
await this._sectionInfo.hooks?.beforeUpdate?.({
|
|
45
|
-
itemId: this._itemId,
|
|
46
|
-
values: this.sqlNamesAndValues,
|
|
47
|
-
section: this._sectionInfo,
|
|
48
|
-
});
|
|
49
|
-
}
|
|
50
|
-
catch (e) {
|
|
51
|
-
// Do not break the submit flow if a hook throws
|
|
52
|
-
console.error('beforeUpdate hook failed:', e);
|
|
53
|
-
}
|
|
42
|
+
// No-op by default; overridden in NewSubmit and EditSubmit
|
|
54
43
|
}
|
|
55
44
|
/**
|
|
56
|
-
* Run custom hooks after the item is
|
|
45
|
+
* Run custom hooks after the item is saved.
|
|
46
|
+
* Subclasses override this to call the appropriate create or update hook.
|
|
57
47
|
* @protected
|
|
58
48
|
*/
|
|
59
49
|
async runPostSubmitHooks() {
|
|
60
|
-
|
|
61
|
-
return;
|
|
62
|
-
try {
|
|
63
|
-
await this._sectionInfo.hooks?.afterUpdate?.({
|
|
64
|
-
itemId: this._itemId,
|
|
65
|
-
values: this.sqlNamesAndValues,
|
|
66
|
-
section: this._sectionInfo,
|
|
67
|
-
});
|
|
68
|
-
}
|
|
69
|
-
catch (e) {
|
|
70
|
-
// Do not break the submit flow if a hook throws
|
|
71
|
-
console.error('afterUpdate hook failed:', e);
|
|
72
|
-
}
|
|
50
|
+
// No-op by default; overridden in NewSubmit and EditSubmit
|
|
73
51
|
}
|
|
74
52
|
/**
|
|
75
53
|
* Run custom hooks when an error occurs
|
|
@@ -2,7 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import type { ReactNode } from 'react';
|
|
3
3
|
import type { TranslationDictionary } from './types.js';
|
|
4
4
|
declare const useI18n: () => {
|
|
5
|
-
<Key extends "here" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "details" | "section" | "noData" | "loginToYourAccount" | "login" | "logout" | "username" | "password" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "register" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "dashboard" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "phoneNumber" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "delete" | "upload" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "error" | "about" | "aboutText" | "profile" | "profileSettings" | "contact" | "contactText" | "message" | "sendMessage" | "courses" | "books" | "home" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "video" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "edit" | "leaveFeedback" | "description" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "save" | "trendingCourses" | "trendingBooks" | "otherBooks" | "youPurchasedBook" | "youCanAccessBook" | "youCanAccessBookAfterPayment" | "downloadBook" | "getThisBook" | "sales" | "review" | "resetPasswordEmailSent" | "emailNotValid" | "emailNotFound" | "somethingWentWrong" | "securitySettings" | "changePassword" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "update" | "currentPassword" | "newPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "passwordsDoNotMatch" | "veryWeak" | "weak" | "fair" | "strong" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "browse" | "noFileSelected" | "startTyping" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "quota" | "updateQuota" | "create" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "page" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "source" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "accountSettings" | "passwordChangeWarning" | "oldPassword" | "adminDetails" | "name" | "emailAddress" | "log" | "logs" | "select" | "settings" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "gallery" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "yes" | "no" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "search" | "today" | "last7Days" | "last30Days" | "last365Days" | "custom" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "view" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisher" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "language" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "main" | "categorySections" | "sectionsWithItems" | "simpleSections" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "noTokenProvided" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "oldPasswordIncorrect" | "usernameAndPasswordRequired" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "sectionTableIdentifierNotFound" | "checkboxRequired" | "requiredField" | "invalidColorFormat" | "invalidImageExtension" | "invalidFileExtension" | "fileSizeExceeded" | "invalidImageType" | "invalidVideoType" | "invalidDocumentType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidColorPleaseProvideValidHex" | "invalidMapFormat" | "minLength" | "maxLength" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "publish" | "level" | "parentId" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLocale" | "fieldMinValueError" | "fieldMaxValueError" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "invalidDatePleaseProvideValid" | "fileCorrupted" | "fileWriteError" | "fileDeleteError" | "folderNotSet" | "imageNotSet" | "bufferNotSet" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "imageDimensionMismatchDetailed" | "photoFieldBuildRequired" | "documentWriteError" | "documentDeleteError" | "invalidDocumentFileType" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "galleryTableNotSetUp" | "useVideoApiRoute", Value extends import("international-types").LocaleValue = ((`${Key}#zero` | `${Key}#one` | `${Key}#two` | `${Key}#few` | `${Key}#many` | `${Key}#other`) & ("here" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "details" | "section" | "noData" | "loginToYourAccount" | "login" | "logout" | "username" | "password" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "register" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "dashboard" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "phoneNumber" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "delete" | "upload" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "error" | "about" | "aboutText" | "profile" | "profileSettings" | "contact" | "contactText" | "message" | "sendMessage" | "courses" | "books" | "home" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "video" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "edit" | "leaveFeedback" | "description" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "save" | "trendingCourses" | "trendingBooks" | "otherBooks" | "youPurchasedBook" | "youCanAccessBook" | "youCanAccessBookAfterPayment" | "downloadBook" | "getThisBook" | "sales" | "review" | "resetPasswordEmailSent" | "emailNotValid" | "emailNotFound" | "somethingWentWrong" | "securitySettings" | "changePassword" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "update" | "currentPassword" | "newPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "passwordsDoNotMatch" | "veryWeak" | "weak" | "fair" | "strong" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "browse" | "noFileSelected" | "startTyping" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "quota" | "updateQuota" | "create" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "page" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "source" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "accountSettings" | "passwordChangeWarning" | "oldPassword" | "adminDetails" | "name" | "emailAddress" | "log" | "logs" | "select" | "settings" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "gallery" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "yes" | "no" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "search" | "today" | "last7Days" | "last30Days" | "last365Days" | "custom" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "view" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisher" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "language" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "main" | "categorySections" | "sectionsWithItems" | "simpleSections" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "noTokenProvided" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "oldPasswordIncorrect" | "usernameAndPasswordRequired" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "sectionTableIdentifierNotFound" | "checkboxRequired" | "requiredField" | "invalidColorFormat" | "invalidImageExtension" | "invalidFileExtension" | "fileSizeExceeded" | "invalidImageType" | "invalidVideoType" | "invalidDocumentType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidColorPleaseProvideValidHex" | "invalidMapFormat" | "minLength" | "maxLength" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "publish" | "level" | "parentId" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLocale" | "fieldMinValueError" | "fieldMaxValueError" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "invalidDatePleaseProvideValid" | "fileCorrupted" | "fileWriteError" | "fileDeleteError" | "folderNotSet" | "imageNotSet" | "bufferNotSet" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "imageDimensionMismatchDetailed" | "photoFieldBuildRequired" | "documentWriteError" | "documentDeleteError" | "invalidDocumentFileType" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "galleryTableNotSetUp" | "useVideoApiRoute") extends never ? false : true) extends true ? {
|
|
5
|
+
<Key extends "here" | "search" | "details" | "main" | "section" | "select" | "source" | "strong" | "video" | "view" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "noData" | "loginToYourAccount" | "login" | "logout" | "username" | "password" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "register" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "dashboard" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "phoneNumber" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "delete" | "upload" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "error" | "about" | "aboutText" | "profile" | "profileSettings" | "contact" | "contactText" | "message" | "sendMessage" | "courses" | "books" | "home" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "edit" | "leaveFeedback" | "description" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "save" | "trendingCourses" | "trendingBooks" | "otherBooks" | "youPurchasedBook" | "youCanAccessBook" | "youCanAccessBookAfterPayment" | "downloadBook" | "getThisBook" | "sales" | "review" | "resetPasswordEmailSent" | "emailNotValid" | "emailNotFound" | "somethingWentWrong" | "securitySettings" | "changePassword" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "update" | "currentPassword" | "newPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "passwordsDoNotMatch" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "browse" | "noFileSelected" | "startTyping" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "quota" | "updateQuota" | "create" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "page" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "accountSettings" | "passwordChangeWarning" | "oldPassword" | "adminDetails" | "name" | "emailAddress" | "log" | "logs" | "settings" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "gallery" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "yes" | "no" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "custom" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisher" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "language" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "categorySections" | "sectionsWithItems" | "simpleSections" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "noTokenProvided" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "oldPasswordIncorrect" | "usernameAndPasswordRequired" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "sectionTableIdentifierNotFound" | "checkboxRequired" | "requiredField" | "invalidColorFormat" | "invalidImageExtension" | "invalidFileExtension" | "fileSizeExceeded" | "invalidImageType" | "invalidVideoType" | "invalidDocumentType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidColorPleaseProvideValidHex" | "invalidMapFormat" | "minLength" | "maxLength" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "publish" | "level" | "parentId" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLocale" | "fieldMinValueError" | "fieldMaxValueError" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "invalidDatePleaseProvideValid" | "fileCorrupted" | "fileWriteError" | "fileDeleteError" | "folderNotSet" | "imageNotSet" | "bufferNotSet" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "imageDimensionMismatchDetailed" | "photoFieldBuildRequired" | "documentWriteError" | "documentDeleteError" | "invalidDocumentFileType" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "galleryTableNotSetUp" | "useVideoApiRoute", Value extends import("international-types").LocaleValue = ((`${Key}#zero` | `${Key}#one` | `${Key}#two` | `${Key}#few` | `${Key}#many` | `${Key}#other`) & ("here" | "search" | "details" | "main" | "section" | "select" | "source" | "strong" | "video" | "view" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "noData" | "loginToYourAccount" | "login" | "logout" | "username" | "password" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "register" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "dashboard" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "phoneNumber" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "delete" | "upload" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "error" | "about" | "aboutText" | "profile" | "profileSettings" | "contact" | "contactText" | "message" | "sendMessage" | "courses" | "books" | "home" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "edit" | "leaveFeedback" | "description" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "save" | "trendingCourses" | "trendingBooks" | "otherBooks" | "youPurchasedBook" | "youCanAccessBook" | "youCanAccessBookAfterPayment" | "downloadBook" | "getThisBook" | "sales" | "review" | "resetPasswordEmailSent" | "emailNotValid" | "emailNotFound" | "somethingWentWrong" | "securitySettings" | "changePassword" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "update" | "currentPassword" | "newPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "passwordsDoNotMatch" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "browse" | "noFileSelected" | "startTyping" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "quota" | "updateQuota" | "create" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "page" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "accountSettings" | "passwordChangeWarning" | "oldPassword" | "adminDetails" | "name" | "emailAddress" | "log" | "logs" | "settings" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "gallery" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "yes" | "no" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "custom" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisher" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "language" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "categorySections" | "sectionsWithItems" | "simpleSections" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "noTokenProvided" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "oldPasswordIncorrect" | "usernameAndPasswordRequired" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "sectionTableIdentifierNotFound" | "checkboxRequired" | "requiredField" | "invalidColorFormat" | "invalidImageExtension" | "invalidFileExtension" | "fileSizeExceeded" | "invalidImageType" | "invalidVideoType" | "invalidDocumentType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidColorPleaseProvideValidHex" | "invalidMapFormat" | "minLength" | "maxLength" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "publish" | "level" | "parentId" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLocale" | "fieldMinValueError" | "fieldMaxValueError" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "invalidDatePleaseProvideValid" | "fileCorrupted" | "fileWriteError" | "fileDeleteError" | "folderNotSet" | "imageNotSet" | "bufferNotSet" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "imageDimensionMismatchDetailed" | "photoFieldBuildRequired" | "documentWriteError" | "documentDeleteError" | "invalidDocumentFileType" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "galleryTableNotSetUp" | "useVideoApiRoute") extends never ? false : true) extends true ? {
|
|
6
6
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
7
7
|
readonly admins: "Admins";
|
|
8
8
|
readonly adminPrivileges: "Admin Privileges";
|
|
@@ -1293,7 +1293,7 @@ declare const useI18n: () => {
|
|
|
1293
1293
|
readonly galleryTableNotSetUp: "Gallery table is not set up correctly, gallery photos were not saved.";
|
|
1294
1294
|
readonly useVideoApiRoute: "Please use the /api/video route";
|
|
1295
1295
|
}, undefined, Key, Value>): string;
|
|
1296
|
-
<Key_1 extends "here" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "details" | "section" | "noData" | "loginToYourAccount" | "login" | "logout" | "username" | "password" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "register" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "dashboard" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "phoneNumber" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "delete" | "upload" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "error" | "about" | "aboutText" | "profile" | "profileSettings" | "contact" | "contactText" | "message" | "sendMessage" | "courses" | "books" | "home" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "video" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "edit" | "leaveFeedback" | "description" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "save" | "trendingCourses" | "trendingBooks" | "otherBooks" | "youPurchasedBook" | "youCanAccessBook" | "youCanAccessBookAfterPayment" | "downloadBook" | "getThisBook" | "sales" | "review" | "resetPasswordEmailSent" | "emailNotValid" | "emailNotFound" | "somethingWentWrong" | "securitySettings" | "changePassword" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "update" | "currentPassword" | "newPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "passwordsDoNotMatch" | "veryWeak" | "weak" | "fair" | "strong" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "browse" | "noFileSelected" | "startTyping" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "quota" | "updateQuota" | "create" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "page" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "source" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "accountSettings" | "passwordChangeWarning" | "oldPassword" | "adminDetails" | "name" | "emailAddress" | "log" | "logs" | "select" | "settings" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "gallery" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "yes" | "no" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "search" | "today" | "last7Days" | "last30Days" | "last365Days" | "custom" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "view" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisher" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "language" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "main" | "categorySections" | "sectionsWithItems" | "simpleSections" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "noTokenProvided" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "oldPasswordIncorrect" | "usernameAndPasswordRequired" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "sectionTableIdentifierNotFound" | "checkboxRequired" | "requiredField" | "invalidColorFormat" | "invalidImageExtension" | "invalidFileExtension" | "fileSizeExceeded" | "invalidImageType" | "invalidVideoType" | "invalidDocumentType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidColorPleaseProvideValidHex" | "invalidMapFormat" | "minLength" | "maxLength" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "publish" | "level" | "parentId" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLocale" | "fieldMinValueError" | "fieldMaxValueError" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "invalidDatePleaseProvideValid" | "fileCorrupted" | "fileWriteError" | "fileDeleteError" | "folderNotSet" | "imageNotSet" | "bufferNotSet" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "imageDimensionMismatchDetailed" | "photoFieldBuildRequired" | "documentWriteError" | "documentDeleteError" | "invalidDocumentFileType" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "galleryTableNotSetUp" | "useVideoApiRoute", Value_1 extends import("international-types").LocaleValue = ((`${Key_1}#zero` | `${Key_1}#one` | `${Key_1}#two` | `${Key_1}#few` | `${Key_1}#many` | `${Key_1}#other`) & ("here" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "details" | "section" | "noData" | "loginToYourAccount" | "login" | "logout" | "username" | "password" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "register" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "dashboard" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "phoneNumber" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "delete" | "upload" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "error" | "about" | "aboutText" | "profile" | "profileSettings" | "contact" | "contactText" | "message" | "sendMessage" | "courses" | "books" | "home" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "video" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "edit" | "leaveFeedback" | "description" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "save" | "trendingCourses" | "trendingBooks" | "otherBooks" | "youPurchasedBook" | "youCanAccessBook" | "youCanAccessBookAfterPayment" | "downloadBook" | "getThisBook" | "sales" | "review" | "resetPasswordEmailSent" | "emailNotValid" | "emailNotFound" | "somethingWentWrong" | "securitySettings" | "changePassword" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "update" | "currentPassword" | "newPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "passwordsDoNotMatch" | "veryWeak" | "weak" | "fair" | "strong" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "browse" | "noFileSelected" | "startTyping" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "quota" | "updateQuota" | "create" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "page" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "source" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "accountSettings" | "passwordChangeWarning" | "oldPassword" | "adminDetails" | "name" | "emailAddress" | "log" | "logs" | "select" | "settings" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "gallery" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "yes" | "no" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "search" | "today" | "last7Days" | "last30Days" | "last365Days" | "custom" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "view" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisher" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "language" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "main" | "categorySections" | "sectionsWithItems" | "simpleSections" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "noTokenProvided" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "oldPasswordIncorrect" | "usernameAndPasswordRequired" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "sectionTableIdentifierNotFound" | "checkboxRequired" | "requiredField" | "invalidColorFormat" | "invalidImageExtension" | "invalidFileExtension" | "fileSizeExceeded" | "invalidImageType" | "invalidVideoType" | "invalidDocumentType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidColorPleaseProvideValidHex" | "invalidMapFormat" | "minLength" | "maxLength" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "publish" | "level" | "parentId" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLocale" | "fieldMinValueError" | "fieldMaxValueError" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "invalidDatePleaseProvideValid" | "fileCorrupted" | "fileWriteError" | "fileDeleteError" | "folderNotSet" | "imageNotSet" | "bufferNotSet" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "imageDimensionMismatchDetailed" | "photoFieldBuildRequired" | "documentWriteError" | "documentDeleteError" | "invalidDocumentFileType" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "galleryTableNotSetUp" | "useVideoApiRoute") extends never ? false : true) extends true ? {
|
|
1296
|
+
<Key_1 extends "here" | "search" | "details" | "main" | "section" | "select" | "source" | "strong" | "video" | "view" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "noData" | "loginToYourAccount" | "login" | "logout" | "username" | "password" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "register" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "dashboard" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "phoneNumber" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "delete" | "upload" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "error" | "about" | "aboutText" | "profile" | "profileSettings" | "contact" | "contactText" | "message" | "sendMessage" | "courses" | "books" | "home" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "edit" | "leaveFeedback" | "description" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "save" | "trendingCourses" | "trendingBooks" | "otherBooks" | "youPurchasedBook" | "youCanAccessBook" | "youCanAccessBookAfterPayment" | "downloadBook" | "getThisBook" | "sales" | "review" | "resetPasswordEmailSent" | "emailNotValid" | "emailNotFound" | "somethingWentWrong" | "securitySettings" | "changePassword" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "update" | "currentPassword" | "newPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "passwordsDoNotMatch" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "browse" | "noFileSelected" | "startTyping" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "quota" | "updateQuota" | "create" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "page" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "accountSettings" | "passwordChangeWarning" | "oldPassword" | "adminDetails" | "name" | "emailAddress" | "log" | "logs" | "settings" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "gallery" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "yes" | "no" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "custom" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisher" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "language" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "categorySections" | "sectionsWithItems" | "simpleSections" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "noTokenProvided" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "oldPasswordIncorrect" | "usernameAndPasswordRequired" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "sectionTableIdentifierNotFound" | "checkboxRequired" | "requiredField" | "invalidColorFormat" | "invalidImageExtension" | "invalidFileExtension" | "fileSizeExceeded" | "invalidImageType" | "invalidVideoType" | "invalidDocumentType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidColorPleaseProvideValidHex" | "invalidMapFormat" | "minLength" | "maxLength" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "publish" | "level" | "parentId" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLocale" | "fieldMinValueError" | "fieldMaxValueError" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "invalidDatePleaseProvideValid" | "fileCorrupted" | "fileWriteError" | "fileDeleteError" | "folderNotSet" | "imageNotSet" | "bufferNotSet" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "imageDimensionMismatchDetailed" | "photoFieldBuildRequired" | "documentWriteError" | "documentDeleteError" | "invalidDocumentFileType" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "galleryTableNotSetUp" | "useVideoApiRoute", Value_1 extends import("international-types").LocaleValue = ((`${Key_1}#zero` | `${Key_1}#one` | `${Key_1}#two` | `${Key_1}#few` | `${Key_1}#many` | `${Key_1}#other`) & ("here" | "search" | "details" | "main" | "section" | "select" | "source" | "strong" | "video" | "view" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "noData" | "loginToYourAccount" | "login" | "logout" | "username" | "password" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "register" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "dashboard" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "phoneNumber" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "delete" | "upload" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "error" | "about" | "aboutText" | "profile" | "profileSettings" | "contact" | "contactText" | "message" | "sendMessage" | "courses" | "books" | "home" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "edit" | "leaveFeedback" | "description" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "save" | "trendingCourses" | "trendingBooks" | "otherBooks" | "youPurchasedBook" | "youCanAccessBook" | "youCanAccessBookAfterPayment" | "downloadBook" | "getThisBook" | "sales" | "review" | "resetPasswordEmailSent" | "emailNotValid" | "emailNotFound" | "somethingWentWrong" | "securitySettings" | "changePassword" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "update" | "currentPassword" | "newPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "passwordsDoNotMatch" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "browse" | "noFileSelected" | "startTyping" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "quota" | "updateQuota" | "create" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "page" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "accountSettings" | "passwordChangeWarning" | "oldPassword" | "adminDetails" | "name" | "emailAddress" | "log" | "logs" | "settings" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "gallery" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "yes" | "no" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "custom" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisher" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "language" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "categorySections" | "sectionsWithItems" | "simpleSections" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "noTokenProvided" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "oldPasswordIncorrect" | "usernameAndPasswordRequired" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "sectionTableIdentifierNotFound" | "checkboxRequired" | "requiredField" | "invalidColorFormat" | "invalidImageExtension" | "invalidFileExtension" | "fileSizeExceeded" | "invalidImageType" | "invalidVideoType" | "invalidDocumentType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidColorPleaseProvideValidHex" | "invalidMapFormat" | "minLength" | "maxLength" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "publish" | "level" | "parentId" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLocale" | "fieldMinValueError" | "fieldMaxValueError" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "invalidDatePleaseProvideValid" | "fileCorrupted" | "fileWriteError" | "fileDeleteError" | "folderNotSet" | "imageNotSet" | "bufferNotSet" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "imageDimensionMismatchDetailed" | "photoFieldBuildRequired" | "documentWriteError" | "documentDeleteError" | "invalidDocumentFileType" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "galleryTableNotSetUp" | "useVideoApiRoute") extends never ? false : true) extends true ? {
|
|
1297
1297
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
1298
1298
|
readonly admins: "Admins";
|
|
1299
1299
|
readonly adminPrivileges: "Admin Privileges";
|
|
@@ -3015,7 +3015,7 @@ declare const useI18n: () => {
|
|
|
3015
3015
|
readonly sqlQueryNotDefined: "SQL query is not defined";
|
|
3016
3016
|
readonly galleryTableNotSetUp: "Gallery table is not set up correctly, gallery photos were not saved.";
|
|
3017
3017
|
readonly useVideoApiRoute: "Please use the /api/video route";
|
|
3018
|
-
}, Scope, "here" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "
|
|
3018
|
+
}, Scope, "here" | "search" | "details" | "main" | "section" | "select" | "source" | "strong" | "video" | "view" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "noData" | "loginToYourAccount" | "login" | "logout" | "username" | "password" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "register" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "dashboard" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "phoneNumber" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "delete" | "upload" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "error" | "about" | "aboutText" | "profile" | "profileSettings" | "contact" | "contactText" | "message" | "sendMessage" | "courses" | "books" | "home" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "edit" | "leaveFeedback" | "description" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "save" | "trendingCourses" | "trendingBooks" | "otherBooks" | "youPurchasedBook" | "youCanAccessBook" | "youCanAccessBookAfterPayment" | "downloadBook" | "getThisBook" | "sales" | "review" | "resetPasswordEmailSent" | "emailNotValid" | "emailNotFound" | "somethingWentWrong" | "securitySettings" | "changePassword" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "update" | "currentPassword" | "newPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "passwordsDoNotMatch" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "browse" | "noFileSelected" | "startTyping" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "quota" | "updateQuota" | "create" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "page" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "accountSettings" | "passwordChangeWarning" | "oldPassword" | "adminDetails" | "name" | "emailAddress" | "log" | "logs" | "settings" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "gallery" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "yes" | "no" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "custom" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisher" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "language" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "categorySections" | "sectionsWithItems" | "simpleSections" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "noTokenProvided" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "oldPasswordIncorrect" | "usernameAndPasswordRequired" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "sectionTableIdentifierNotFound" | "checkboxRequired" | "requiredField" | "invalidColorFormat" | "invalidImageExtension" | "invalidFileExtension" | "fileSizeExceeded" | "invalidImageType" | "invalidVideoType" | "invalidDocumentType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidColorPleaseProvideValidHex" | "invalidMapFormat" | "minLength" | "maxLength" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "publish" | "level" | "parentId" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLocale" | "fieldMinValueError" | "fieldMaxValueError" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "invalidDatePleaseProvideValid" | "fileCorrupted" | "fileWriteError" | "fileDeleteError" | "folderNotSet" | "imageNotSet" | "bufferNotSet" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "imageDimensionMismatchDetailed" | "photoFieldBuildRequired" | "documentWriteError" | "documentDeleteError" | "invalidDocumentFileType" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "galleryTableNotSetUp" | "useVideoApiRoute">, Value_2 extends import("international-types").LocaleValue = import("international-types").ScopedValue<{
|
|
3019
3019
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
3020
3020
|
readonly admins: "Admins";
|
|
3021
3021
|
readonly adminPrivileges: "Admin Privileges";
|
|
@@ -4306,7 +4306,7 @@ declare const useI18n: () => {
|
|
|
4306
4306
|
readonly sqlQueryNotDefined: "SQL query is not defined";
|
|
4307
4307
|
readonly galleryTableNotSetUp: "Gallery table is not set up correctly, gallery photos were not saved.";
|
|
4308
4308
|
readonly useVideoApiRoute: "Please use the /api/video route";
|
|
4309
|
-
}, Scope, "here" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "
|
|
4309
|
+
}, Scope, "here" | "search" | "details" | "main" | "section" | "select" | "source" | "strong" | "video" | "view" | "adminDoesNotExist" | "admins" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "date" | "noData" | "loginToYourAccount" | "login" | "logout" | "username" | "password" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "register" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "dashboard" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "phoneNumber" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "delete" | "upload" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "error" | "about" | "aboutText" | "profile" | "profileSettings" | "contact" | "contactText" | "message" | "sendMessage" | "courses" | "books" | "home" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "edit" | "leaveFeedback" | "description" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "save" | "trendingCourses" | "trendingBooks" | "otherBooks" | "youPurchasedBook" | "youCanAccessBook" | "youCanAccessBookAfterPayment" | "downloadBook" | "getThisBook" | "sales" | "review" | "resetPasswordEmailSent" | "emailNotValid" | "emailNotFound" | "somethingWentWrong" | "securitySettings" | "changePassword" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "update" | "currentPassword" | "newPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "passwordsDoNotMatch" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "browse" | "noFileSelected" | "startTyping" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "quota" | "updateQuota" | "create" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "page" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "accountSettings" | "passwordChangeWarning" | "oldPassword" | "adminDetails" | "name" | "emailAddress" | "log" | "logs" | "settings" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "gallery" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "yes" | "no" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "custom" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisher" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "language" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "categorySections" | "sectionsWithItems" | "simpleSections" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "noTokenProvided" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "oldPasswordIncorrect" | "usernameAndPasswordRequired" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "sectionTableIdentifierNotFound" | "checkboxRequired" | "requiredField" | "invalidColorFormat" | "invalidImageExtension" | "invalidFileExtension" | "fileSizeExceeded" | "invalidImageType" | "invalidVideoType" | "invalidDocumentType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidColorPleaseProvideValidHex" | "invalidMapFormat" | "minLength" | "maxLength" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "publish" | "level" | "parentId" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLocale" | "fieldMinValueError" | "fieldMaxValueError" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "invalidDatePleaseProvideValid" | "fileCorrupted" | "fileWriteError" | "fileDeleteError" | "folderNotSet" | "imageNotSet" | "bufferNotSet" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "imageDimensionMismatchDetailed" | "photoFieldBuildRequired" | "documentWriteError" | "documentDeleteError" | "invalidDocumentFileType" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "galleryTableNotSetUp" | "useVideoApiRoute">, Value_3 extends import("international-types").LocaleValue = import("international-types").ScopedValue<{
|
|
4310
4310
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
4311
4311
|
readonly admins: "Admins";
|
|
4312
4312
|
readonly adminPrivileges: "Admin Privileges";
|