nextjs-cms 0.8.9 → 0.9.0
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/LICENSE +21 -21
- package/README.md +290 -290
- package/dist/api/index.d.ts +92 -9
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/lib/serverActions.d.ts +64 -9
- package/dist/api/lib/serverActions.d.ts.map +1 -1
- package/dist/api/lib/serverActions.js +463 -90
- package/dist/api/root.d.ts +184 -18
- package/dist/api/root.d.ts.map +1 -1
- package/dist/api/routers/accountSettings.d.ts +2 -2
- package/dist/api/routers/accountSettings.js +10 -10
- package/dist/api/routers/admins.js +11 -11
- package/dist/api/routers/auth.d.ts +1 -1
- package/dist/api/routers/config.d.ts +13 -0
- package/dist/api/routers/config.d.ts.map +1 -1
- package/dist/api/routers/config.js +4 -0
- package/dist/api/routers/cpanel.js +7 -7
- package/dist/api/routers/fields.d.ts +1 -0
- package/dist/api/routers/fields.d.ts.map +1 -1
- package/dist/api/routers/fields.js +39 -6
- package/dist/api/routers/gallery.js +1 -1
- package/dist/api/routers/hasItemsSection.d.ts +41 -2
- package/dist/api/routers/hasItemsSection.d.ts.map +1 -1
- package/dist/api/routers/hasItemsSection.js +43 -2
- package/dist/api/routers/logs.js +1 -1
- package/dist/api/routers/navigation.d.ts +3 -3
- package/dist/api/routers/simpleSection.d.ts +31 -1
- package/dist/api/routers/simpleSection.d.ts.map +1 -1
- package/dist/api/routers/simpleSection.js +44 -2
- package/dist/api/trpc.js +2 -2
- package/dist/auth/index.d.ts +1 -1
- package/dist/auth/index.d.ts.map +1 -1
- package/dist/auth/index.js +1 -1
- package/dist/auth/lib/actions.d.ts +3 -3
- package/dist/auth/lib/actions.d.ts.map +1 -1
- package/dist/auth/lib/actions.js +14 -14
- package/dist/auth/react.d.ts +2 -2
- package/dist/auth/react.d.ts.map +1 -1
- package/dist/auth/react.js +7 -7
- package/dist/cli/lib/db-config.js +10 -10
- package/dist/cli/lib/update-sections.d.ts.map +1 -1
- package/dist/cli/lib/update-sections.js +145 -9
- package/dist/cli/utils/schema-generator.d.ts +20 -0
- package/dist/cli/utils/schema-generator.d.ts.map +1 -1
- package/dist/cli/utils/schema-generator.js +40 -0
- package/dist/core/config/config-loader.d.ts +49 -5
- package/dist/core/config/config-loader.d.ts.map +1 -1
- package/dist/core/config/config-loader.js +100 -21
- package/dist/core/config/index.d.ts +2 -2
- package/dist/core/config/index.d.ts.map +1 -1
- package/dist/core/config/index.js +1 -1
- package/dist/core/db/table-checker/MysqlTable.js +8 -8
- package/dist/core/factories/FieldFactory.d.ts +5 -3
- package/dist/core/factories/FieldFactory.d.ts.map +1 -1
- package/dist/core/factories/FieldFactory.js +74 -16
- package/dist/core/factories/section-factory-with-esbuild.d.ts.map +1 -1
- package/dist/core/factories/section-factory-with-esbuild.js +15 -9
- package/dist/core/factories/section-factory-with-jiti.d.ts.map +1 -1
- package/dist/core/factories/section-factory-with-jiti.js +15 -9
- package/dist/core/fields/checkbox.d.ts +4 -1
- package/dist/core/fields/checkbox.d.ts.map +1 -1
- package/dist/core/fields/color.d.ts +4 -1
- package/dist/core/fields/color.d.ts.map +1 -1
- package/dist/core/fields/color.js +2 -2
- package/dist/core/fields/date.d.ts +4 -1
- package/dist/core/fields/date.d.ts.map +1 -1
- package/dist/core/fields/date.js +2 -2
- package/dist/core/fields/document.d.ts +4 -1
- package/dist/core/fields/document.d.ts.map +1 -1
- package/dist/core/fields/document.js +27 -18
- package/dist/core/fields/field-group.d.ts +3 -3
- package/dist/core/fields/field-group.d.ts.map +1 -1
- package/dist/core/fields/field.d.ts +11 -8
- package/dist/core/fields/field.d.ts.map +1 -1
- package/dist/core/fields/field.js +15 -11
- package/dist/core/fields/map.d.ts +4 -1
- package/dist/core/fields/map.d.ts.map +1 -1
- package/dist/core/fields/map.js +2 -2
- package/dist/core/fields/number.d.ts +26 -1
- package/dist/core/fields/number.d.ts.map +1 -1
- package/dist/core/fields/number.js +16 -7
- package/dist/core/fields/password.d.ts +4 -1
- package/dist/core/fields/password.d.ts.map +1 -1
- package/dist/core/fields/password.js +3 -3
- package/dist/core/fields/photo.d.ts +4 -1
- package/dist/core/fields/photo.d.ts.map +1 -1
- package/dist/core/fields/photo.js +17 -17
- package/dist/core/fields/richText.d.ts +17 -3
- package/dist/core/fields/richText.d.ts.map +1 -1
- package/dist/core/fields/richText.js +20 -8
- package/dist/core/fields/select.d.ts +10 -3
- package/dist/core/fields/select.d.ts.map +1 -1
- package/dist/core/fields/select.js +27 -34
- package/dist/core/fields/selectMultiple.d.ts +8 -4
- package/dist/core/fields/selectMultiple.d.ts.map +1 -1
- package/dist/core/fields/selectMultiple.js +32 -24
- package/dist/core/fields/slug.d.ts +16 -1
- package/dist/core/fields/slug.d.ts.map +1 -1
- package/dist/core/fields/slug.js +3 -3
- package/dist/core/fields/tags.d.ts +6 -3
- package/dist/core/fields/tags.d.ts.map +1 -1
- package/dist/core/fields/tags.js +26 -19
- package/dist/core/fields/text.d.ts +24 -1
- package/dist/core/fields/text.d.ts.map +1 -1
- package/dist/core/fields/text.js +12 -3
- package/dist/core/fields/textArea.d.ts +24 -1
- package/dist/core/fields/textArea.d.ts.map +1 -1
- package/dist/core/fields/textArea.js +9 -0
- package/dist/core/fields/video.d.ts +4 -1
- package/dist/core/fields/video.d.ts.map +1 -1
- package/dist/core/fields/video.js +14 -12
- package/dist/core/index.d.ts +1 -0
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +1 -0
- package/dist/core/localization/index.d.ts +3 -0
- package/dist/core/localization/index.d.ts.map +1 -0
- package/dist/core/localization/index.js +1 -0
- package/dist/core/localization/resolve-locale.d.ts +29 -0
- package/dist/core/localization/resolve-locale.d.ts.map +1 -0
- package/dist/core/localization/resolve-locale.js +43 -0
- package/dist/core/sections/category.d.ts +56 -44
- package/dist/core/sections/category.d.ts.map +1 -1
- package/dist/core/sections/category.js +3 -3
- package/dist/core/sections/hasItems.d.ts +80 -44
- package/dist/core/sections/hasItems.d.ts.map +1 -1
- package/dist/core/sections/section.d.ts +55 -28
- package/dist/core/sections/section.d.ts.map +1 -1
- package/dist/core/sections/section.js +22 -0
- package/dist/core/sections/simple.d.ts +8 -8
- package/dist/core/sections/simple.d.ts.map +1 -1
- package/dist/core/submit/ItemEditSubmit.d.ts +24 -16
- package/dist/core/submit/ItemEditSubmit.d.ts.map +1 -1
- package/dist/core/submit/ItemEditSubmit.js +62 -38
- package/dist/core/submit/LocaleSubmit.d.ts +97 -0
- package/dist/core/submit/LocaleSubmit.d.ts.map +1 -0
- package/dist/core/submit/LocaleSubmit.js +435 -0
- package/dist/core/submit/NewItemSubmit.d.ts +0 -8
- package/dist/core/submit/NewItemSubmit.d.ts.map +1 -1
- package/dist/core/submit/NewItemSubmit.js +6 -12
- package/dist/core/submit/index.d.ts +1 -0
- package/dist/core/submit/index.d.ts.map +1 -1
- package/dist/core/submit/index.js +1 -0
- package/dist/core/submit/submit.d.ts +35 -12
- package/dist/core/submit/submit.d.ts.map +1 -1
- package/dist/core/submit/submit.js +88 -69
- package/dist/db/schema.d.ts +17 -0
- package/dist/db/schema.d.ts.map +1 -1
- package/dist/db/schema.js +1 -0
- package/dist/logging/log.d.ts +1 -1
- package/dist/logging/log.d.ts.map +1 -1
- package/dist/plugins/index.d.ts +1 -1
- package/dist/plugins/index.d.ts.map +1 -1
- package/dist/plugins/loader.d.ts +3 -3
- package/dist/plugins/loader.d.ts.map +1 -1
- package/dist/translations/base/en.d.ts +24 -2
- package/dist/translations/base/en.d.ts.map +1 -1
- package/dist/translations/base/en.js +24 -2
- package/dist/translations/client.d.ts +292 -28
- package/dist/translations/client.d.ts.map +1 -1
- package/dist/translations/client.js +2 -2
- package/dist/translations/dict-store.d.ts +2 -2
- package/dist/translations/dict-store.d.ts.map +1 -1
- package/dist/translations/dict-store.js +9 -9
- package/dist/translations/index.d.ts +5 -5
- package/dist/translations/index.d.ts.map +1 -1
- package/dist/translations/index.js +6 -6
- package/dist/translations/language-cookie.d.ts +24 -0
- package/dist/translations/language-cookie.d.ts.map +1 -0
- package/dist/translations/language-cookie.js +44 -0
- package/dist/translations/language-utils.d.ts +42 -0
- package/dist/translations/language-utils.d.ts.map +1 -0
- package/dist/translations/language-utils.js +52 -0
- package/dist/translations/server.d.ts +293 -29
- package/dist/translations/server.d.ts.map +1 -1
- package/dist/translations/server.js +5 -5
- package/dist/validators/number.d.ts +1 -1
- package/dist/validators/number.d.ts.map +1 -1
- package/dist/validators/number.js +1 -1
- package/dist/validators/select-multiple.d.ts +2 -2
- package/dist/validators/select-multiple.d.ts.map +1 -1
- package/dist/validators/select-multiple.js +1 -1
- package/package.json +7 -3
- package/dist/translations/dictionaries/ar.d.ts +0 -433
- package/dist/translations/dictionaries/ar.d.ts.map +0 -1
- package/dist/translations/dictionaries/ar.js +0 -444
- package/dist/translations/dictionaries/en.d.ts +0 -433
- package/dist/translations/dictionaries/en.d.ts.map +0 -1
- package/dist/translations/dictionaries/en.js +0 -444
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { TranslationDictionary } from './types.js';
|
|
2
2
|
export declare const getI18n: () => Promise<{
|
|
3
|
-
<Key extends "password" | "database" | "version" | "add" | "error" | "name" | "dashboard" | "search" | "admins" | "date" | "custom" | "username" | "emailAddress" | "phoneNumber" | "language" | "publisher" | "section" | "logs" | "source" | "success" | "readonly" | "message" | "select" | "video" | "minLength" | "maxLength" | "maxFileSize" | "browse" | "contact" | "delete" | "home" | "save" | "settings" | "edit" | "upload" | "users" | "view" | "gallery" | "admin" | "description" | "new" | "sectionNotFound" | "publish" | "level" | "no" | "yes" | "register" | "clear" | "here" | "adminDoesNotExist" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "adminNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "details" | "noData" | "loginToYourAccount" | "login" | "logout" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "about" | "aboutText" | "profile" | "profileSettings" | "contactText" | "sendMessage" | "courses" | "books" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "leaveFeedback" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "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" | "noFileSelected" | "startTyping" | "startTypingForSuggestions" | "addNew" | "approve" | "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" | "log" | "selectOptions" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "today" | "last7Days" | "last30Days" | "last365Days" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "remote" | "diskUsage" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "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" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "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" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "logo" | "newImage" | "autoGeneratedFromLinkedField" | "close" | "clearAllSelectedOptions", Value extends import("international-types").LocaleValue = ((`${Key}#zero` | `${Key}#one` | `${Key}#two` | `${Key}#few` | `${Key}#many` | `${Key}#other`) & ("password" | "database" | "version" | "add" | "error" | "name" | "dashboard" | "search" | "admins" | "date" | "custom" | "username" | "emailAddress" | "phoneNumber" | "language" | "publisher" | "section" | "logs" | "source" | "success" | "readonly" | "message" | "select" | "video" | "minLength" | "maxLength" | "maxFileSize" | "browse" | "contact" | "delete" | "home" | "save" | "settings" | "edit" | "upload" | "users" | "view" | "gallery" | "admin" | "description" | "new" | "sectionNotFound" | "publish" | "level" | "no" | "yes" | "register" | "clear" | "here" | "adminDoesNotExist" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "adminNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "details" | "noData" | "loginToYourAccount" | "login" | "logout" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "about" | "aboutText" | "profile" | "profileSettings" | "contactText" | "sendMessage" | "courses" | "books" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "leaveFeedback" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "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" | "noFileSelected" | "startTyping" | "startTypingForSuggestions" | "addNew" | "approve" | "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" | "log" | "selectOptions" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "today" | "last7Days" | "last30Days" | "last365Days" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "remote" | "diskUsage" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "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" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "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" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "logo" | "newImage" | "autoGeneratedFromLinkedField" | "close" | "clearAllSelectedOptions") extends never ? false : true) extends true ? {
|
|
3
|
+
<Key extends "clear" | "delete" | "name" | "admins" | "date" | "custom" | "username" | "password" | "emailAddress" | "phoneNumber" | "language" | "search" | "publisher" | "section" | "logs" | "source" | "here" | "adminDoesNotExist" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "details" | "noData" | "loginToYourAccount" | "login" | "logout" | "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" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "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" | "startTypingForSuggestions" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslation" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localizationNotEnabledForSection" | "invalidLocale" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "localeTranslationDeleted" | "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" | "log" | "select" | "selectOptions" | "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" | "photoMarkedForDeletion" | "undo" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "view" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "languageNotSupported" | "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" | "i18nMustHaveAtLeastOneLanguage" | "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" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "logo" | "newImage" | "autoGeneratedFromLinkedField" | "close" | "clearAllSelectedOptions" | "galleryPhoto" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "noLocalizedFields" | "sectionHasNoLocalizedFields" | "noLocalizedFieldsHint", Value extends import("international-types").LocaleValue = ((`${Key}#zero` | `${Key}#one` | `${Key}#two` | `${Key}#few` | `${Key}#many` | `${Key}#other`) & ("clear" | "delete" | "name" | "admins" | "date" | "custom" | "username" | "password" | "emailAddress" | "phoneNumber" | "language" | "search" | "publisher" | "section" | "logs" | "source" | "here" | "adminDoesNotExist" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "details" | "noData" | "loginToYourAccount" | "login" | "logout" | "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" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "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" | "startTypingForSuggestions" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslation" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localizationNotEnabledForSection" | "invalidLocale" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "localeTranslationDeleted" | "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" | "log" | "select" | "selectOptions" | "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" | "photoMarkedForDeletion" | "undo" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "view" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "languageNotSupported" | "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" | "i18nMustHaveAtLeastOneLanguage" | "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" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "logo" | "newImage" | "autoGeneratedFromLinkedField" | "close" | "clearAllSelectedOptions" | "galleryPhoto" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "noLocalizedFields" | "sectionHasNoLocalizedFields" | "noLocalizedFieldsHint") extends never ? false : true) extends true ? {
|
|
4
4
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
5
5
|
readonly admins: "Admins";
|
|
6
6
|
readonly adminPrivileges: "Admin Privileges";
|
|
@@ -197,6 +197,19 @@ export declare const getI18n: () => Promise<{
|
|
|
197
197
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
198
198
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
199
199
|
readonly cancel: "Cancel";
|
|
200
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
201
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
202
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
203
|
+
readonly localesHeading: "Locales";
|
|
204
|
+
readonly baseLocaleBadge: "(base)";
|
|
205
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
206
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
207
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
208
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
209
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
210
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
211
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
212
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
200
213
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
201
214
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
202
215
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -278,6 +291,8 @@ export declare const getI18n: () => Promise<{
|
|
|
278
291
|
readonly no: "No";
|
|
279
292
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
280
293
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
294
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
295
|
+
readonly undo: "Undo";
|
|
281
296
|
readonly selectFile: "Select File";
|
|
282
297
|
readonly mandatory: "Mandatory";
|
|
283
298
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -336,7 +351,7 @@ export declare const getI18n: () => Promise<{
|
|
|
336
351
|
readonly emailAccountsList: "Email Accounts List";
|
|
337
352
|
readonly theme: "Theme";
|
|
338
353
|
readonly noAccessToSection: "No access to this section";
|
|
339
|
-
readonly
|
|
354
|
+
readonly languageNotSupported: "This language is not supported";
|
|
340
355
|
readonly language: "Language";
|
|
341
356
|
readonly addNewCar: "Add New Car";
|
|
342
357
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -405,7 +420,7 @@ export declare const getI18n: () => Promise<{
|
|
|
405
420
|
readonly parentId: "Parent ID";
|
|
406
421
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
407
422
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
408
|
-
readonly
|
|
423
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
409
424
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
410
425
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
411
426
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -447,6 +462,13 @@ export declare const getI18n: () => Promise<{
|
|
|
447
462
|
readonly clear: "Clear";
|
|
448
463
|
readonly close: "Close";
|
|
449
464
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
465
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
466
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
467
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
468
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
469
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
470
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
471
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
450
472
|
}[`${Key}#zero` | `${Key}#one` | `${Key}#two` | `${Key}#few` | `${Key}#many` | `${Key}#other`] : {
|
|
451
473
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
452
474
|
readonly admins: "Admins";
|
|
@@ -644,6 +666,19 @@ export declare const getI18n: () => Promise<{
|
|
|
644
666
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
645
667
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
646
668
|
readonly cancel: "Cancel";
|
|
669
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
670
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
671
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
672
|
+
readonly localesHeading: "Locales";
|
|
673
|
+
readonly baseLocaleBadge: "(base)";
|
|
674
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
675
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
676
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
677
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
678
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
679
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
680
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
681
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
647
682
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
648
683
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
649
684
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -725,6 +760,8 @@ export declare const getI18n: () => Promise<{
|
|
|
725
760
|
readonly no: "No";
|
|
726
761
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
727
762
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
763
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
764
|
+
readonly undo: "Undo";
|
|
728
765
|
readonly selectFile: "Select File";
|
|
729
766
|
readonly mandatory: "Mandatory";
|
|
730
767
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -783,7 +820,7 @@ export declare const getI18n: () => Promise<{
|
|
|
783
820
|
readonly emailAccountsList: "Email Accounts List";
|
|
784
821
|
readonly theme: "Theme";
|
|
785
822
|
readonly noAccessToSection: "No access to this section";
|
|
786
|
-
readonly
|
|
823
|
+
readonly languageNotSupported: "This language is not supported";
|
|
787
824
|
readonly language: "Language";
|
|
788
825
|
readonly addNewCar: "Add New Car";
|
|
789
826
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -852,7 +889,7 @@ export declare const getI18n: () => Promise<{
|
|
|
852
889
|
readonly parentId: "Parent ID";
|
|
853
890
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
854
891
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
855
|
-
readonly
|
|
892
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
856
893
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
857
894
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
858
895
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -894,6 +931,13 @@ export declare const getI18n: () => Promise<{
|
|
|
894
931
|
readonly clear: "Clear";
|
|
895
932
|
readonly close: "Close";
|
|
896
933
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
934
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
935
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
936
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
937
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
938
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
939
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
940
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
897
941
|
}[Key]>(key: Key, ...params: import("international-types").CreateParams<import("international-types").ParamsObject<Value>, {
|
|
898
942
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
899
943
|
readonly admins: "Admins";
|
|
@@ -1091,6 +1135,19 @@ export declare const getI18n: () => Promise<{
|
|
|
1091
1135
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
1092
1136
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
1093
1137
|
readonly cancel: "Cancel";
|
|
1138
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
1139
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
1140
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
1141
|
+
readonly localesHeading: "Locales";
|
|
1142
|
+
readonly baseLocaleBadge: "(base)";
|
|
1143
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
1144
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
1145
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
1146
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
1147
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
1148
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
1149
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
1150
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
1094
1151
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
1095
1152
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
1096
1153
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -1172,6 +1229,8 @@ export declare const getI18n: () => Promise<{
|
|
|
1172
1229
|
readonly no: "No";
|
|
1173
1230
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
1174
1231
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
1232
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
1233
|
+
readonly undo: "Undo";
|
|
1175
1234
|
readonly selectFile: "Select File";
|
|
1176
1235
|
readonly mandatory: "Mandatory";
|
|
1177
1236
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -1230,7 +1289,7 @@ export declare const getI18n: () => Promise<{
|
|
|
1230
1289
|
readonly emailAccountsList: "Email Accounts List";
|
|
1231
1290
|
readonly theme: "Theme";
|
|
1232
1291
|
readonly noAccessToSection: "No access to this section";
|
|
1233
|
-
readonly
|
|
1292
|
+
readonly languageNotSupported: "This language is not supported";
|
|
1234
1293
|
readonly language: "Language";
|
|
1235
1294
|
readonly addNewCar: "Add New Car";
|
|
1236
1295
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -1299,7 +1358,7 @@ export declare const getI18n: () => Promise<{
|
|
|
1299
1358
|
readonly parentId: "Parent ID";
|
|
1300
1359
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
1301
1360
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
1302
|
-
readonly
|
|
1361
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
1303
1362
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
1304
1363
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
1305
1364
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -1341,8 +1400,15 @@ export declare const getI18n: () => Promise<{
|
|
|
1341
1400
|
readonly clear: "Clear";
|
|
1342
1401
|
readonly close: "Close";
|
|
1343
1402
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
1403
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
1404
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
1405
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
1406
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
1407
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
1408
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
1409
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
1344
1410
|
}, undefined, Key, Value>): string;
|
|
1345
|
-
<Key_1 extends "password" | "database" | "version" | "add" | "error" | "name" | "dashboard" | "search" | "admins" | "date" | "custom" | "username" | "emailAddress" | "phoneNumber" | "language" | "publisher" | "section" | "logs" | "source" | "success" | "readonly" | "message" | "select" | "video" | "minLength" | "maxLength" | "maxFileSize" | "browse" | "contact" | "delete" | "home" | "save" | "settings" | "edit" | "upload" | "users" | "view" | "gallery" | "admin" | "description" | "new" | "sectionNotFound" | "publish" | "level" | "no" | "yes" | "register" | "clear" | "here" | "adminDoesNotExist" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "adminNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "details" | "noData" | "loginToYourAccount" | "login" | "logout" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "about" | "aboutText" | "profile" | "profileSettings" | "contactText" | "sendMessage" | "courses" | "books" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "leaveFeedback" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "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" | "noFileSelected" | "startTyping" | "startTypingForSuggestions" | "addNew" | "approve" | "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" | "log" | "selectOptions" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "today" | "last7Days" | "last30Days" | "last365Days" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "remote" | "diskUsage" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "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" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "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" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "logo" | "newImage" | "autoGeneratedFromLinkedField" | "close" | "clearAllSelectedOptions", 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`) & ("password" | "database" | "version" | "add" | "error" | "name" | "dashboard" | "search" | "admins" | "date" | "custom" | "username" | "emailAddress" | "phoneNumber" | "language" | "publisher" | "section" | "logs" | "source" | "success" | "readonly" | "message" | "select" | "video" | "minLength" | "maxLength" | "maxFileSize" | "browse" | "contact" | "delete" | "home" | "save" | "settings" | "edit" | "upload" | "users" | "view" | "gallery" | "admin" | "description" | "new" | "sectionNotFound" | "publish" | "level" | "no" | "yes" | "register" | "clear" | "here" | "adminDoesNotExist" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "adminNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "details" | "noData" | "loginToYourAccount" | "login" | "logout" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "email" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "emailRequired" | "myCourses" | "myReviews" | "myBookmarks" | "myBooks" | "orders" | "youDontHaveOrders" | "youDontHaveBookmarks" | "ordersSubtitle" | "reviewsSubtitle" | "bookmarksSubtitle" | "billingInfo" | "editProfile" | "security" | "socialProfiles" | "notifications" | "privacy" | "deleteProfile" | "firstName" | "lastName" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "editPhoto" | "personalDetails" | "personalDetailsText" | "loading" | "profilePhotoChanged" | "profilePhotoChangedError" | "about" | "aboutText" | "profile" | "profileSettings" | "contactText" | "sendMessage" | "courses" | "books" | "searchCourses" | "courseDescription" | "bookDescription" | "otherCourses" | "whatsIncluded" | "unlimitedAccess" | "unlimitedAccessToItems" | "expertiseAndInsights" | "learnFromExperts" | "coursesAndBooks" | "coursesAndBooksText" | "learnOnYourSchedule" | "getThisCourse" | "videoCount" | "youPurchasedCourse" | "watchCourse" | "youCanAccessCourse" | "videos" | "courseVideos" | "rate" | "youCanRateItemText" | "submit" | "leaveFeedback" | "content" | "reviews" | "subscribers" | "nowPlaying" | "addToBookmarks" | "removeFromBookmarks" | "price" | "coursePrice" | "bookPrice" | "drSalamCourses" | "drSalamBooks" | "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" | "noFileSelected" | "startTyping" | "startTypingForSuggestions" | "addNew" | "approve" | "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" | "log" | "selectOptions" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "cpanelCredentialsNotSet" | "logoutError" | "deletePhoto" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "today" | "last7Days" | "last30Days" | "last365Days" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "remote" | "diskUsage" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "localeNotSupported" | "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" | "numberMinLength" | "numberMaxLength" | "numberMinValue" | "numberMaxValue" | "fieldIsRequired" | "unableToLoadImage" | "unableToReadFile" | "errorReadingFile" | "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" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "logo" | "newImage" | "autoGeneratedFromLinkedField" | "close" | "clearAllSelectedOptions") extends never ? false : true) extends true ? {
|
|
1411
|
+
<Key_1 extends "clear" | "delete" | "name" | "admins" | "date" | "custom" | "username" | "password" | "emailAddress" | "phoneNumber" | "language" | "search" | "publisher" | "section" | "logs" | "source" | "here" | "adminDoesNotExist" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "details" | "noData" | "loginToYourAccount" | "login" | "logout" | "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" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "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" | "startTypingForSuggestions" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslation" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localizationNotEnabledForSection" | "invalidLocale" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "localeTranslationDeleted" | "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" | "log" | "select" | "selectOptions" | "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" | "photoMarkedForDeletion" | "undo" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "view" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "languageNotSupported" | "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" | "i18nMustHaveAtLeastOneLanguage" | "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" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "logo" | "newImage" | "autoGeneratedFromLinkedField" | "close" | "clearAllSelectedOptions" | "galleryPhoto" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "noLocalizedFields" | "sectionHasNoLocalizedFields" | "noLocalizedFieldsHint", 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`) & ("clear" | "delete" | "name" | "admins" | "date" | "custom" | "username" | "password" | "emailAddress" | "phoneNumber" | "language" | "search" | "publisher" | "section" | "logs" | "source" | "here" | "adminDoesNotExist" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "details" | "noData" | "loginToYourAccount" | "login" | "logout" | "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" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "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" | "startTypingForSuggestions" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslation" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localizationNotEnabledForSection" | "invalidLocale" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "localeTranslationDeleted" | "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" | "log" | "select" | "selectOptions" | "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" | "photoMarkedForDeletion" | "undo" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "view" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "languageNotSupported" | "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" | "i18nMustHaveAtLeastOneLanguage" | "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" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "logo" | "newImage" | "autoGeneratedFromLinkedField" | "close" | "clearAllSelectedOptions" | "galleryPhoto" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "noLocalizedFields" | "sectionHasNoLocalizedFields" | "noLocalizedFieldsHint") extends never ? false : true) extends true ? {
|
|
1346
1412
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
1347
1413
|
readonly admins: "Admins";
|
|
1348
1414
|
readonly adminPrivileges: "Admin Privileges";
|
|
@@ -1539,6 +1605,19 @@ export declare const getI18n: () => Promise<{
|
|
|
1539
1605
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
1540
1606
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
1541
1607
|
readonly cancel: "Cancel";
|
|
1608
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
1609
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
1610
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
1611
|
+
readonly localesHeading: "Locales";
|
|
1612
|
+
readonly baseLocaleBadge: "(base)";
|
|
1613
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
1614
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
1615
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
1616
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
1617
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
1618
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
1619
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
1620
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
1542
1621
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
1543
1622
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
1544
1623
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -1620,6 +1699,8 @@ export declare const getI18n: () => Promise<{
|
|
|
1620
1699
|
readonly no: "No";
|
|
1621
1700
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
1622
1701
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
1702
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
1703
|
+
readonly undo: "Undo";
|
|
1623
1704
|
readonly selectFile: "Select File";
|
|
1624
1705
|
readonly mandatory: "Mandatory";
|
|
1625
1706
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -1678,7 +1759,7 @@ export declare const getI18n: () => Promise<{
|
|
|
1678
1759
|
readonly emailAccountsList: "Email Accounts List";
|
|
1679
1760
|
readonly theme: "Theme";
|
|
1680
1761
|
readonly noAccessToSection: "No access to this section";
|
|
1681
|
-
readonly
|
|
1762
|
+
readonly languageNotSupported: "This language is not supported";
|
|
1682
1763
|
readonly language: "Language";
|
|
1683
1764
|
readonly addNewCar: "Add New Car";
|
|
1684
1765
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -1747,7 +1828,7 @@ export declare const getI18n: () => Promise<{
|
|
|
1747
1828
|
readonly parentId: "Parent ID";
|
|
1748
1829
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
1749
1830
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
1750
|
-
readonly
|
|
1831
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
1751
1832
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
1752
1833
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
1753
1834
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -1789,6 +1870,13 @@ export declare const getI18n: () => Promise<{
|
|
|
1789
1870
|
readonly clear: "Clear";
|
|
1790
1871
|
readonly close: "Close";
|
|
1791
1872
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
1873
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
1874
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
1875
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
1876
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
1877
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
1878
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
1879
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
1792
1880
|
}[`${Key_1}#zero` | `${Key_1}#one` | `${Key_1}#two` | `${Key_1}#few` | `${Key_1}#many` | `${Key_1}#other`] : {
|
|
1793
1881
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
1794
1882
|
readonly admins: "Admins";
|
|
@@ -1986,6 +2074,19 @@ export declare const getI18n: () => Promise<{
|
|
|
1986
2074
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
1987
2075
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
1988
2076
|
readonly cancel: "Cancel";
|
|
2077
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
2078
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
2079
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
2080
|
+
readonly localesHeading: "Locales";
|
|
2081
|
+
readonly baseLocaleBadge: "(base)";
|
|
2082
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
2083
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
2084
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
2085
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
2086
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
2087
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
2088
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
2089
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
1989
2090
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
1990
2091
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
1991
2092
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -2067,6 +2168,8 @@ export declare const getI18n: () => Promise<{
|
|
|
2067
2168
|
readonly no: "No";
|
|
2068
2169
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
2069
2170
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
2171
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
2172
|
+
readonly undo: "Undo";
|
|
2070
2173
|
readonly selectFile: "Select File";
|
|
2071
2174
|
readonly mandatory: "Mandatory";
|
|
2072
2175
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -2125,7 +2228,7 @@ export declare const getI18n: () => Promise<{
|
|
|
2125
2228
|
readonly emailAccountsList: "Email Accounts List";
|
|
2126
2229
|
readonly theme: "Theme";
|
|
2127
2230
|
readonly noAccessToSection: "No access to this section";
|
|
2128
|
-
readonly
|
|
2231
|
+
readonly languageNotSupported: "This language is not supported";
|
|
2129
2232
|
readonly language: "Language";
|
|
2130
2233
|
readonly addNewCar: "Add New Car";
|
|
2131
2234
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -2194,7 +2297,7 @@ export declare const getI18n: () => Promise<{
|
|
|
2194
2297
|
readonly parentId: "Parent ID";
|
|
2195
2298
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
2196
2299
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
2197
|
-
readonly
|
|
2300
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
2198
2301
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
2199
2302
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
2200
2303
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -2236,6 +2339,13 @@ export declare const getI18n: () => Promise<{
|
|
|
2236
2339
|
readonly clear: "Clear";
|
|
2237
2340
|
readonly close: "Close";
|
|
2238
2341
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
2342
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
2343
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
2344
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
2345
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
2346
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
2347
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
2348
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
2239
2349
|
}[Key_1]>(key: Key_1, ...params: import("international-types").CreateParams<import("next-international").ReactParamsObject<Value_1>, {
|
|
2240
2350
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
2241
2351
|
readonly admins: "Admins";
|
|
@@ -2433,6 +2543,19 @@ export declare const getI18n: () => Promise<{
|
|
|
2433
2543
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
2434
2544
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
2435
2545
|
readonly cancel: "Cancel";
|
|
2546
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
2547
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
2548
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
2549
|
+
readonly localesHeading: "Locales";
|
|
2550
|
+
readonly baseLocaleBadge: "(base)";
|
|
2551
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
2552
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
2553
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
2554
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
2555
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
2556
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
2557
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
2558
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
2436
2559
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
2437
2560
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
2438
2561
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -2514,6 +2637,8 @@ export declare const getI18n: () => Promise<{
|
|
|
2514
2637
|
readonly no: "No";
|
|
2515
2638
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
2516
2639
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
2640
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
2641
|
+
readonly undo: "Undo";
|
|
2517
2642
|
readonly selectFile: "Select File";
|
|
2518
2643
|
readonly mandatory: "Mandatory";
|
|
2519
2644
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -2572,7 +2697,7 @@ export declare const getI18n: () => Promise<{
|
|
|
2572
2697
|
readonly emailAccountsList: "Email Accounts List";
|
|
2573
2698
|
readonly theme: "Theme";
|
|
2574
2699
|
readonly noAccessToSection: "No access to this section";
|
|
2575
|
-
readonly
|
|
2700
|
+
readonly languageNotSupported: "This language is not supported";
|
|
2576
2701
|
readonly language: "Language";
|
|
2577
2702
|
readonly addNewCar: "Add New Car";
|
|
2578
2703
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -2641,7 +2766,7 @@ export declare const getI18n: () => Promise<{
|
|
|
2641
2766
|
readonly parentId: "Parent ID";
|
|
2642
2767
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
2643
2768
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
2644
|
-
readonly
|
|
2769
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
2645
2770
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
2646
2771
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
2647
2772
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -2683,6 +2808,13 @@ export declare const getI18n: () => Promise<{
|
|
|
2683
2808
|
readonly clear: "Clear";
|
|
2684
2809
|
readonly close: "Close";
|
|
2685
2810
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
2811
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
2812
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
2813
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
2814
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
2815
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
2816
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
2817
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
2686
2818
|
}, undefined, Key_1, Value_1>): import("react").ReactNode;
|
|
2687
2819
|
}>, getScopedI18n: <Scope extends never>(scope: Scope) => Promise<{
|
|
2688
2820
|
<Key_2 extends import("international-types").LocaleKeys<{
|
|
@@ -2882,6 +3014,19 @@ export declare const getI18n: () => Promise<{
|
|
|
2882
3014
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
2883
3015
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
2884
3016
|
readonly cancel: "Cancel";
|
|
3017
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
3018
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
3019
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
3020
|
+
readonly localesHeading: "Locales";
|
|
3021
|
+
readonly baseLocaleBadge: "(base)";
|
|
3022
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
3023
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
3024
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
3025
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
3026
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
3027
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
3028
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
3029
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
2885
3030
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
2886
3031
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
2887
3032
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -2963,6 +3108,8 @@ export declare const getI18n: () => Promise<{
|
|
|
2963
3108
|
readonly no: "No";
|
|
2964
3109
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
2965
3110
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
3111
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
3112
|
+
readonly undo: "Undo";
|
|
2966
3113
|
readonly selectFile: "Select File";
|
|
2967
3114
|
readonly mandatory: "Mandatory";
|
|
2968
3115
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -3021,7 +3168,7 @@ export declare const getI18n: () => Promise<{
|
|
|
3021
3168
|
readonly emailAccountsList: "Email Accounts List";
|
|
3022
3169
|
readonly theme: "Theme";
|
|
3023
3170
|
readonly noAccessToSection: "No access to this section";
|
|
3024
|
-
readonly
|
|
3171
|
+
readonly languageNotSupported: "This language is not supported";
|
|
3025
3172
|
readonly language: "Language";
|
|
3026
3173
|
readonly addNewCar: "Add New Car";
|
|
3027
3174
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -3090,7 +3237,7 @@ export declare const getI18n: () => Promise<{
|
|
|
3090
3237
|
readonly parentId: "Parent ID";
|
|
3091
3238
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
3092
3239
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
3093
|
-
readonly
|
|
3240
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
3094
3241
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
3095
3242
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
3096
3243
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -3132,7 +3279,14 @@ export declare const getI18n: () => Promise<{
|
|
|
3132
3279
|
readonly clear: "Clear";
|
|
3133
3280
|
readonly close: "Close";
|
|
3134
3281
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
3135
|
-
|
|
3282
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
3283
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
3284
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
3285
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
3286
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
3287
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
3288
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
3289
|
+
}, Scope, "clear" | "delete" | "name" | "admins" | "date" | "custom" | "username" | "password" | "emailAddress" | "phoneNumber" | "language" | "search" | "publisher" | "section" | "logs" | "source" | "here" | "adminDoesNotExist" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "details" | "noData" | "loginToYourAccount" | "login" | "logout" | "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" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "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" | "startTypingForSuggestions" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslation" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localizationNotEnabledForSection" | "invalidLocale" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "localeTranslationDeleted" | "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" | "log" | "select" | "selectOptions" | "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" | "photoMarkedForDeletion" | "undo" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "view" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "languageNotSupported" | "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" | "i18nMustHaveAtLeastOneLanguage" | "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" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "logo" | "newImage" | "autoGeneratedFromLinkedField" | "close" | "clearAllSelectedOptions" | "galleryPhoto" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "noLocalizedFields" | "sectionHasNoLocalizedFields" | "noLocalizedFieldsHint">, Value_2 extends import("international-types").LocaleValue = import("international-types").ScopedValue<{
|
|
3136
3290
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
3137
3291
|
readonly admins: "Admins";
|
|
3138
3292
|
readonly adminPrivileges: "Admin Privileges";
|
|
@@ -3329,6 +3483,19 @@ export declare const getI18n: () => Promise<{
|
|
|
3329
3483
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
3330
3484
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
3331
3485
|
readonly cancel: "Cancel";
|
|
3486
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
3487
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
3488
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
3489
|
+
readonly localesHeading: "Locales";
|
|
3490
|
+
readonly baseLocaleBadge: "(base)";
|
|
3491
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
3492
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
3493
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
3494
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
3495
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
3496
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
3497
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
3498
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
3332
3499
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
3333
3500
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
3334
3501
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -3410,6 +3577,8 @@ export declare const getI18n: () => Promise<{
|
|
|
3410
3577
|
readonly no: "No";
|
|
3411
3578
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
3412
3579
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
3580
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
3581
|
+
readonly undo: "Undo";
|
|
3413
3582
|
readonly selectFile: "Select File";
|
|
3414
3583
|
readonly mandatory: "Mandatory";
|
|
3415
3584
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -3468,7 +3637,7 @@ export declare const getI18n: () => Promise<{
|
|
|
3468
3637
|
readonly emailAccountsList: "Email Accounts List";
|
|
3469
3638
|
readonly theme: "Theme";
|
|
3470
3639
|
readonly noAccessToSection: "No access to this section";
|
|
3471
|
-
readonly
|
|
3640
|
+
readonly languageNotSupported: "This language is not supported";
|
|
3472
3641
|
readonly language: "Language";
|
|
3473
3642
|
readonly addNewCar: "Add New Car";
|
|
3474
3643
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -3537,7 +3706,7 @@ export declare const getI18n: () => Promise<{
|
|
|
3537
3706
|
readonly parentId: "Parent ID";
|
|
3538
3707
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
3539
3708
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
3540
|
-
readonly
|
|
3709
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
3541
3710
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
3542
3711
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
3543
3712
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -3579,6 +3748,13 @@ export declare const getI18n: () => Promise<{
|
|
|
3579
3748
|
readonly clear: "Clear";
|
|
3580
3749
|
readonly close: "Close";
|
|
3581
3750
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
3751
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
3752
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
3753
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
3754
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
3755
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
3756
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
3757
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
3582
3758
|
}, Scope, Key_2>>(key: Key_2, ...params: import("international-types").CreateParams<import("international-types").ParamsObject<Value_2>, {
|
|
3583
3759
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
3584
3760
|
readonly admins: "Admins";
|
|
@@ -3776,6 +3952,19 @@ export declare const getI18n: () => Promise<{
|
|
|
3776
3952
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
3777
3953
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
3778
3954
|
readonly cancel: "Cancel";
|
|
3955
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
3956
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
3957
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
3958
|
+
readonly localesHeading: "Locales";
|
|
3959
|
+
readonly baseLocaleBadge: "(base)";
|
|
3960
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
3961
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
3962
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
3963
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
3964
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
3965
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
3966
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
3967
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
3779
3968
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
3780
3969
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
3781
3970
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -3857,6 +4046,8 @@ export declare const getI18n: () => Promise<{
|
|
|
3857
4046
|
readonly no: "No";
|
|
3858
4047
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
3859
4048
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
4049
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
4050
|
+
readonly undo: "Undo";
|
|
3860
4051
|
readonly selectFile: "Select File";
|
|
3861
4052
|
readonly mandatory: "Mandatory";
|
|
3862
4053
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -3915,7 +4106,7 @@ export declare const getI18n: () => Promise<{
|
|
|
3915
4106
|
readonly emailAccountsList: "Email Accounts List";
|
|
3916
4107
|
readonly theme: "Theme";
|
|
3917
4108
|
readonly noAccessToSection: "No access to this section";
|
|
3918
|
-
readonly
|
|
4109
|
+
readonly languageNotSupported: "This language is not supported";
|
|
3919
4110
|
readonly language: "Language";
|
|
3920
4111
|
readonly addNewCar: "Add New Car";
|
|
3921
4112
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -3984,7 +4175,7 @@ export declare const getI18n: () => Promise<{
|
|
|
3984
4175
|
readonly parentId: "Parent ID";
|
|
3985
4176
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
3986
4177
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
3987
|
-
readonly
|
|
4178
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
3988
4179
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
3989
4180
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
3990
4181
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -4026,6 +4217,13 @@ export declare const getI18n: () => Promise<{
|
|
|
4026
4217
|
readonly clear: "Clear";
|
|
4027
4218
|
readonly close: "Close";
|
|
4028
4219
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
4220
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
4221
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
4222
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
4223
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
4224
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
4225
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
4226
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
4029
4227
|
}, Scope, Key_2, Value_2>): string;
|
|
4030
4228
|
<Key_3 extends import("international-types").LocaleKeys<{
|
|
4031
4229
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
@@ -4224,6 +4422,19 @@ export declare const getI18n: () => Promise<{
|
|
|
4224
4422
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
4225
4423
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
4226
4424
|
readonly cancel: "Cancel";
|
|
4425
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
4426
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
4427
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
4428
|
+
readonly localesHeading: "Locales";
|
|
4429
|
+
readonly baseLocaleBadge: "(base)";
|
|
4430
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
4431
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
4432
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
4433
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
4434
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
4435
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
4436
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
4437
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
4227
4438
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
4228
4439
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
4229
4440
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -4305,6 +4516,8 @@ export declare const getI18n: () => Promise<{
|
|
|
4305
4516
|
readonly no: "No";
|
|
4306
4517
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
4307
4518
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
4519
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
4520
|
+
readonly undo: "Undo";
|
|
4308
4521
|
readonly selectFile: "Select File";
|
|
4309
4522
|
readonly mandatory: "Mandatory";
|
|
4310
4523
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -4363,7 +4576,7 @@ export declare const getI18n: () => Promise<{
|
|
|
4363
4576
|
readonly emailAccountsList: "Email Accounts List";
|
|
4364
4577
|
readonly theme: "Theme";
|
|
4365
4578
|
readonly noAccessToSection: "No access to this section";
|
|
4366
|
-
readonly
|
|
4579
|
+
readonly languageNotSupported: "This language is not supported";
|
|
4367
4580
|
readonly language: "Language";
|
|
4368
4581
|
readonly addNewCar: "Add New Car";
|
|
4369
4582
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -4432,7 +4645,7 @@ export declare const getI18n: () => Promise<{
|
|
|
4432
4645
|
readonly parentId: "Parent ID";
|
|
4433
4646
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
4434
4647
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
4435
|
-
readonly
|
|
4648
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
4436
4649
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
4437
4650
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
4438
4651
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -4474,7 +4687,14 @@ export declare const getI18n: () => Promise<{
|
|
|
4474
4687
|
readonly clear: "Clear";
|
|
4475
4688
|
readonly close: "Close";
|
|
4476
4689
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
4477
|
-
|
|
4690
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
4691
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
4692
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
4693
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
4694
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
4695
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
4696
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
4697
|
+
}, Scope, "clear" | "delete" | "name" | "admins" | "date" | "custom" | "username" | "password" | "emailAddress" | "phoneNumber" | "language" | "search" | "publisher" | "section" | "logs" | "source" | "here" | "adminDoesNotExist" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "admin" | "adminNotFound" | "sectionNotFound" | "noAccessToThisOperation" | "adminDeletedSuccessfully" | "masterAdminCannotBeDeleted" | "masterAdminCannotBeModified" | "action" | "details" | "noData" | "loginToYourAccount" | "login" | "logout" | "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" | "streetAddress" | "birthday" | "city" | "country" | "profilePhoto" | "profilePhotoText" | "saveChanges" | "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" | "startTypingForSuggestions" | "addNew" | "new" | "approve" | "add" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslation" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localizationNotEnabledForSection" | "invalidLocale" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "localeTranslationDeleted" | "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" | "log" | "select" | "selectOptions" | "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" | "photoMarkedForDeletion" | "undo" | "selectFile" | "mandatory" | "imageDimensionsMustBe" | "maxFileSize" | "imageRecommendedDimensions" | "seeAll" | "allowedExtensions" | "recursiveCategoryDelete" | "recursiveCategoryDeleteWarning" | "unset" | "success" | "today" | "last7Days" | "last30Days" | "last365Days" | "analyticsOverview" | "contentStatistics" | "recentActivity" | "latestContentUpdates" | "recentlyAddedOrModified" | "quickActions" | "systemStatus" | "databaseStatus" | "cacheStatus" | "connected" | "operational" | "view" | "cmsOverview" | "fromLastMonth" | "allConnectionsHealthy" | "cacheFunctioning" | "manageAdmins" | "viewAnalytics" | "fullAccess" | "publisherTooltip" | "customAccess" | "noAccess" | "allPermissions" | "accepts" | "firstPage" | "lastPage" | "readonly" | "mysqlDatabases" | "phpVersion" | "nodeVersion" | "documentRoot" | "version" | "remote" | "database" | "diskUsage" | "users" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "languageNotSupported" | "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" | "i18nMustHaveAtLeastOneLanguage" | "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" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "logo" | "newImage" | "autoGeneratedFromLinkedField" | "close" | "clearAllSelectedOptions" | "galleryPhoto" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "noLocalizedFields" | "sectionHasNoLocalizedFields" | "noLocalizedFieldsHint">, Value_3 extends import("international-types").LocaleValue = import("international-types").ScopedValue<{
|
|
4478
4698
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
4479
4699
|
readonly admins: "Admins";
|
|
4480
4700
|
readonly adminPrivileges: "Admin Privileges";
|
|
@@ -4671,6 +4891,19 @@ export declare const getI18n: () => Promise<{
|
|
|
4671
4891
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
4672
4892
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
4673
4893
|
readonly cancel: "Cancel";
|
|
4894
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
4895
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
4896
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
4897
|
+
readonly localesHeading: "Locales";
|
|
4898
|
+
readonly baseLocaleBadge: "(base)";
|
|
4899
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
4900
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
4901
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
4902
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
4903
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
4904
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
4905
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
4906
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
4674
4907
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
4675
4908
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
4676
4909
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -4752,6 +4985,8 @@ export declare const getI18n: () => Promise<{
|
|
|
4752
4985
|
readonly no: "No";
|
|
4753
4986
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
4754
4987
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
4988
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
4989
|
+
readonly undo: "Undo";
|
|
4755
4990
|
readonly selectFile: "Select File";
|
|
4756
4991
|
readonly mandatory: "Mandatory";
|
|
4757
4992
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -4810,7 +5045,7 @@ export declare const getI18n: () => Promise<{
|
|
|
4810
5045
|
readonly emailAccountsList: "Email Accounts List";
|
|
4811
5046
|
readonly theme: "Theme";
|
|
4812
5047
|
readonly noAccessToSection: "No access to this section";
|
|
4813
|
-
readonly
|
|
5048
|
+
readonly languageNotSupported: "This language is not supported";
|
|
4814
5049
|
readonly language: "Language";
|
|
4815
5050
|
readonly addNewCar: "Add New Car";
|
|
4816
5051
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -4879,7 +5114,7 @@ export declare const getI18n: () => Promise<{
|
|
|
4879
5114
|
readonly parentId: "Parent ID";
|
|
4880
5115
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
4881
5116
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
4882
|
-
readonly
|
|
5117
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
4883
5118
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
4884
5119
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
4885
5120
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -4921,6 +5156,13 @@ export declare const getI18n: () => Promise<{
|
|
|
4921
5156
|
readonly clear: "Clear";
|
|
4922
5157
|
readonly close: "Close";
|
|
4923
5158
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
5159
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
5160
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
5161
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
5162
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
5163
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
5164
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
5165
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
4924
5166
|
}, Scope, Key_3>>(key: Key_3, ...params: import("international-types").CreateParams<import("next-international").ReactParamsObject<Value_3>, {
|
|
4925
5167
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
4926
5168
|
readonly admins: "Admins";
|
|
@@ -5118,6 +5360,19 @@ export declare const getI18n: () => Promise<{
|
|
|
5118
5360
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
5119
5361
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
5120
5362
|
readonly cancel: "Cancel";
|
|
5363
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
5364
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
5365
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
5366
|
+
readonly localesHeading: "Locales";
|
|
5367
|
+
readonly baseLocaleBadge: "(base)";
|
|
5368
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
5369
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
5370
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
5371
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
5372
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
5373
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
5374
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
5375
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
5121
5376
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
5122
5377
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
5123
5378
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -5199,6 +5454,8 @@ export declare const getI18n: () => Promise<{
|
|
|
5199
5454
|
readonly no: "No";
|
|
5200
5455
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
5201
5456
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
5457
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
5458
|
+
readonly undo: "Undo";
|
|
5202
5459
|
readonly selectFile: "Select File";
|
|
5203
5460
|
readonly mandatory: "Mandatory";
|
|
5204
5461
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -5257,7 +5514,7 @@ export declare const getI18n: () => Promise<{
|
|
|
5257
5514
|
readonly emailAccountsList: "Email Accounts List";
|
|
5258
5515
|
readonly theme: "Theme";
|
|
5259
5516
|
readonly noAccessToSection: "No access to this section";
|
|
5260
|
-
readonly
|
|
5517
|
+
readonly languageNotSupported: "This language is not supported";
|
|
5261
5518
|
readonly language: "Language";
|
|
5262
5519
|
readonly addNewCar: "Add New Car";
|
|
5263
5520
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -5326,7 +5583,7 @@ export declare const getI18n: () => Promise<{
|
|
|
5326
5583
|
readonly parentId: "Parent ID";
|
|
5327
5584
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
5328
5585
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
5329
|
-
readonly
|
|
5586
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
5330
5587
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
5331
5588
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
5332
5589
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -5368,9 +5625,16 @@ export declare const getI18n: () => Promise<{
|
|
|
5368
5625
|
readonly clear: "Clear";
|
|
5369
5626
|
readonly close: "Close";
|
|
5370
5627
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
5628
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
5629
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
5630
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
5631
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
5632
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
5633
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
5634
|
+
readonly noLocalizedFieldsHint: "To enable translations for \"{section}\", update the section definition in \"{file}\" inside the sections folder and add localized: true to the fields you want to translate.";
|
|
5371
5635
|
}, Scope, Key_3, Value_3>): import("react").ReactNode;
|
|
5372
5636
|
}>, getStaticParams: () => {
|
|
5373
5637
|
[x: string]: string;
|
|
5374
5638
|
}[];
|
|
5375
|
-
export declare function getClientDictionaries(
|
|
5639
|
+
export declare function getClientDictionaries(languages: readonly string[]): Record<string, TranslationDictionary>;
|
|
5376
5640
|
//# sourceMappingURL=server.d.ts.map
|