nextjs-cms 0.8.10 → 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/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
|
@@ -2,7 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import type { ReactNode } from 'react';
|
|
3
3
|
import type { TranslationDictionary } from './types.js';
|
|
4
4
|
declare const useI18n: () => {
|
|
5
|
-
<Key extends "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 ? {
|
|
5
|
+
<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 ? {
|
|
6
6
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
7
7
|
readonly admins: "Admins";
|
|
8
8
|
readonly adminPrivileges: "Admin Privileges";
|
|
@@ -199,6 +199,19 @@ declare const useI18n: () => {
|
|
|
199
199
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
200
200
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
201
201
|
readonly cancel: "Cancel";
|
|
202
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
203
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
204
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
205
|
+
readonly localesHeading: "Locales";
|
|
206
|
+
readonly baseLocaleBadge: "(base)";
|
|
207
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
208
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
209
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
210
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
211
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
212
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
213
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
214
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
202
215
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
203
216
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
204
217
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -280,6 +293,8 @@ declare const useI18n: () => {
|
|
|
280
293
|
readonly no: "No";
|
|
281
294
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
282
295
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
296
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
297
|
+
readonly undo: "Undo";
|
|
283
298
|
readonly selectFile: "Select File";
|
|
284
299
|
readonly mandatory: "Mandatory";
|
|
285
300
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -338,7 +353,7 @@ declare const useI18n: () => {
|
|
|
338
353
|
readonly emailAccountsList: "Email Accounts List";
|
|
339
354
|
readonly theme: "Theme";
|
|
340
355
|
readonly noAccessToSection: "No access to this section";
|
|
341
|
-
readonly
|
|
356
|
+
readonly languageNotSupported: "This language is not supported";
|
|
342
357
|
readonly language: "Language";
|
|
343
358
|
readonly addNewCar: "Add New Car";
|
|
344
359
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -407,7 +422,7 @@ declare const useI18n: () => {
|
|
|
407
422
|
readonly parentId: "Parent ID";
|
|
408
423
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
409
424
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
410
|
-
readonly
|
|
425
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
411
426
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
412
427
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
413
428
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -449,6 +464,13 @@ declare const useI18n: () => {
|
|
|
449
464
|
readonly clear: "Clear";
|
|
450
465
|
readonly close: "Close";
|
|
451
466
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
467
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
468
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
469
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
470
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
471
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
472
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
473
|
+
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.";
|
|
452
474
|
}[`${Key}#zero` | `${Key}#one` | `${Key}#two` | `${Key}#few` | `${Key}#many` | `${Key}#other`] : {
|
|
453
475
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
454
476
|
readonly admins: "Admins";
|
|
@@ -646,6 +668,19 @@ declare const useI18n: () => {
|
|
|
646
668
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
647
669
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
648
670
|
readonly cancel: "Cancel";
|
|
671
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
672
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
673
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
674
|
+
readonly localesHeading: "Locales";
|
|
675
|
+
readonly baseLocaleBadge: "(base)";
|
|
676
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
677
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
678
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
679
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
680
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
681
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
682
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
683
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
649
684
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
650
685
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
651
686
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -727,6 +762,8 @@ declare const useI18n: () => {
|
|
|
727
762
|
readonly no: "No";
|
|
728
763
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
729
764
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
765
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
766
|
+
readonly undo: "Undo";
|
|
730
767
|
readonly selectFile: "Select File";
|
|
731
768
|
readonly mandatory: "Mandatory";
|
|
732
769
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -785,7 +822,7 @@ declare const useI18n: () => {
|
|
|
785
822
|
readonly emailAccountsList: "Email Accounts List";
|
|
786
823
|
readonly theme: "Theme";
|
|
787
824
|
readonly noAccessToSection: "No access to this section";
|
|
788
|
-
readonly
|
|
825
|
+
readonly languageNotSupported: "This language is not supported";
|
|
789
826
|
readonly language: "Language";
|
|
790
827
|
readonly addNewCar: "Add New Car";
|
|
791
828
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -854,7 +891,7 @@ declare const useI18n: () => {
|
|
|
854
891
|
readonly parentId: "Parent ID";
|
|
855
892
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
856
893
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
857
|
-
readonly
|
|
894
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
858
895
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
859
896
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
860
897
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -896,6 +933,13 @@ declare const useI18n: () => {
|
|
|
896
933
|
readonly clear: "Clear";
|
|
897
934
|
readonly close: "Close";
|
|
898
935
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
936
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
937
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
938
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
939
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
940
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
941
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
942
|
+
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.";
|
|
899
943
|
}[Key]>(key: Key, ...params: import("international-types").CreateParams<import("international-types").ParamsObject<Value>, {
|
|
900
944
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
901
945
|
readonly admins: "Admins";
|
|
@@ -1093,6 +1137,19 @@ declare const useI18n: () => {
|
|
|
1093
1137
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
1094
1138
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
1095
1139
|
readonly cancel: "Cancel";
|
|
1140
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
1141
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
1142
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
1143
|
+
readonly localesHeading: "Locales";
|
|
1144
|
+
readonly baseLocaleBadge: "(base)";
|
|
1145
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
1146
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
1147
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
1148
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
1149
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
1150
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
1151
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
1152
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
1096
1153
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
1097
1154
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
1098
1155
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -1174,6 +1231,8 @@ declare const useI18n: () => {
|
|
|
1174
1231
|
readonly no: "No";
|
|
1175
1232
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
1176
1233
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
1234
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
1235
|
+
readonly undo: "Undo";
|
|
1177
1236
|
readonly selectFile: "Select File";
|
|
1178
1237
|
readonly mandatory: "Mandatory";
|
|
1179
1238
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -1232,7 +1291,7 @@ declare const useI18n: () => {
|
|
|
1232
1291
|
readonly emailAccountsList: "Email Accounts List";
|
|
1233
1292
|
readonly theme: "Theme";
|
|
1234
1293
|
readonly noAccessToSection: "No access to this section";
|
|
1235
|
-
readonly
|
|
1294
|
+
readonly languageNotSupported: "This language is not supported";
|
|
1236
1295
|
readonly language: "Language";
|
|
1237
1296
|
readonly addNewCar: "Add New Car";
|
|
1238
1297
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -1301,7 +1360,7 @@ declare const useI18n: () => {
|
|
|
1301
1360
|
readonly parentId: "Parent ID";
|
|
1302
1361
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
1303
1362
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
1304
|
-
readonly
|
|
1363
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
1305
1364
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
1306
1365
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
1307
1366
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -1343,8 +1402,15 @@ declare const useI18n: () => {
|
|
|
1343
1402
|
readonly clear: "Clear";
|
|
1344
1403
|
readonly close: "Close";
|
|
1345
1404
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
1405
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
1406
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
1407
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
1408
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
1409
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
1410
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
1411
|
+
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.";
|
|
1346
1412
|
}, undefined, Key, Value>): string;
|
|
1347
|
-
<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 ? {
|
|
1413
|
+
<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 ? {
|
|
1348
1414
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
1349
1415
|
readonly admins: "Admins";
|
|
1350
1416
|
readonly adminPrivileges: "Admin Privileges";
|
|
@@ -1541,6 +1607,19 @@ declare const useI18n: () => {
|
|
|
1541
1607
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
1542
1608
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
1543
1609
|
readonly cancel: "Cancel";
|
|
1610
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
1611
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
1612
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
1613
|
+
readonly localesHeading: "Locales";
|
|
1614
|
+
readonly baseLocaleBadge: "(base)";
|
|
1615
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
1616
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
1617
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
1618
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
1619
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
1620
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
1621
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
1622
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
1544
1623
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
1545
1624
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
1546
1625
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -1622,6 +1701,8 @@ declare const useI18n: () => {
|
|
|
1622
1701
|
readonly no: "No";
|
|
1623
1702
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
1624
1703
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
1704
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
1705
|
+
readonly undo: "Undo";
|
|
1625
1706
|
readonly selectFile: "Select File";
|
|
1626
1707
|
readonly mandatory: "Mandatory";
|
|
1627
1708
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -1680,7 +1761,7 @@ declare const useI18n: () => {
|
|
|
1680
1761
|
readonly emailAccountsList: "Email Accounts List";
|
|
1681
1762
|
readonly theme: "Theme";
|
|
1682
1763
|
readonly noAccessToSection: "No access to this section";
|
|
1683
|
-
readonly
|
|
1764
|
+
readonly languageNotSupported: "This language is not supported";
|
|
1684
1765
|
readonly language: "Language";
|
|
1685
1766
|
readonly addNewCar: "Add New Car";
|
|
1686
1767
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -1749,7 +1830,7 @@ declare const useI18n: () => {
|
|
|
1749
1830
|
readonly parentId: "Parent ID";
|
|
1750
1831
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
1751
1832
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
1752
|
-
readonly
|
|
1833
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
1753
1834
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
1754
1835
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
1755
1836
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -1791,6 +1872,13 @@ declare const useI18n: () => {
|
|
|
1791
1872
|
readonly clear: "Clear";
|
|
1792
1873
|
readonly close: "Close";
|
|
1793
1874
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
1875
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
1876
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
1877
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
1878
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
1879
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
1880
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
1881
|
+
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.";
|
|
1794
1882
|
}[`${Key_1}#zero` | `${Key_1}#one` | `${Key_1}#two` | `${Key_1}#few` | `${Key_1}#many` | `${Key_1}#other`] : {
|
|
1795
1883
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
1796
1884
|
readonly admins: "Admins";
|
|
@@ -1988,6 +2076,19 @@ declare const useI18n: () => {
|
|
|
1988
2076
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
1989
2077
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
1990
2078
|
readonly cancel: "Cancel";
|
|
2079
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
2080
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
2081
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
2082
|
+
readonly localesHeading: "Locales";
|
|
2083
|
+
readonly baseLocaleBadge: "(base)";
|
|
2084
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
2085
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
2086
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
2087
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
2088
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
2089
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
2090
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
2091
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
1991
2092
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
1992
2093
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
1993
2094
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -2069,6 +2170,8 @@ declare const useI18n: () => {
|
|
|
2069
2170
|
readonly no: "No";
|
|
2070
2171
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
2071
2172
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
2173
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
2174
|
+
readonly undo: "Undo";
|
|
2072
2175
|
readonly selectFile: "Select File";
|
|
2073
2176
|
readonly mandatory: "Mandatory";
|
|
2074
2177
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -2127,7 +2230,7 @@ declare const useI18n: () => {
|
|
|
2127
2230
|
readonly emailAccountsList: "Email Accounts List";
|
|
2128
2231
|
readonly theme: "Theme";
|
|
2129
2232
|
readonly noAccessToSection: "No access to this section";
|
|
2130
|
-
readonly
|
|
2233
|
+
readonly languageNotSupported: "This language is not supported";
|
|
2131
2234
|
readonly language: "Language";
|
|
2132
2235
|
readonly addNewCar: "Add New Car";
|
|
2133
2236
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -2196,7 +2299,7 @@ declare const useI18n: () => {
|
|
|
2196
2299
|
readonly parentId: "Parent ID";
|
|
2197
2300
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
2198
2301
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
2199
|
-
readonly
|
|
2302
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
2200
2303
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
2201
2304
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
2202
2305
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -2238,6 +2341,13 @@ declare const useI18n: () => {
|
|
|
2238
2341
|
readonly clear: "Clear";
|
|
2239
2342
|
readonly close: "Close";
|
|
2240
2343
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
2344
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
2345
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
2346
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
2347
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
2348
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
2349
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
2350
|
+
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.";
|
|
2241
2351
|
}[Key_1]>(key: Key_1, ...params: import("international-types").CreateParams<import("next-international").ReactParamsObject<Value_1>, {
|
|
2242
2352
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
2243
2353
|
readonly admins: "Admins";
|
|
@@ -2435,6 +2545,19 @@ declare const useI18n: () => {
|
|
|
2435
2545
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
2436
2546
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
2437
2547
|
readonly cancel: "Cancel";
|
|
2548
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
2549
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
2550
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
2551
|
+
readonly localesHeading: "Locales";
|
|
2552
|
+
readonly baseLocaleBadge: "(base)";
|
|
2553
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
2554
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
2555
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
2556
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
2557
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
2558
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
2559
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
2560
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
2438
2561
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
2439
2562
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
2440
2563
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -2516,6 +2639,8 @@ declare const useI18n: () => {
|
|
|
2516
2639
|
readonly no: "No";
|
|
2517
2640
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
2518
2641
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
2642
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
2643
|
+
readonly undo: "Undo";
|
|
2519
2644
|
readonly selectFile: "Select File";
|
|
2520
2645
|
readonly mandatory: "Mandatory";
|
|
2521
2646
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -2574,7 +2699,7 @@ declare const useI18n: () => {
|
|
|
2574
2699
|
readonly emailAccountsList: "Email Accounts List";
|
|
2575
2700
|
readonly theme: "Theme";
|
|
2576
2701
|
readonly noAccessToSection: "No access to this section";
|
|
2577
|
-
readonly
|
|
2702
|
+
readonly languageNotSupported: "This language is not supported";
|
|
2578
2703
|
readonly language: "Language";
|
|
2579
2704
|
readonly addNewCar: "Add New Car";
|
|
2580
2705
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -2643,7 +2768,7 @@ declare const useI18n: () => {
|
|
|
2643
2768
|
readonly parentId: "Parent ID";
|
|
2644
2769
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
2645
2770
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
2646
|
-
readonly
|
|
2771
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
2647
2772
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
2648
2773
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
2649
2774
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -2685,6 +2810,13 @@ declare const useI18n: () => {
|
|
|
2685
2810
|
readonly clear: "Clear";
|
|
2686
2811
|
readonly close: "Close";
|
|
2687
2812
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
2813
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
2814
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
2815
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
2816
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
2817
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
2818
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
2819
|
+
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.";
|
|
2688
2820
|
}, undefined, Key_1, Value_1>): React.ReactNode;
|
|
2689
2821
|
}, useScopedI18n: <Scope extends never>(scope: Scope) => {
|
|
2690
2822
|
<Key_2 extends import("international-types").LocaleKeys<{
|
|
@@ -2884,6 +3016,19 @@ declare const useI18n: () => {
|
|
|
2884
3016
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
2885
3017
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
2886
3018
|
readonly cancel: "Cancel";
|
|
3019
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
3020
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
3021
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
3022
|
+
readonly localesHeading: "Locales";
|
|
3023
|
+
readonly baseLocaleBadge: "(base)";
|
|
3024
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
3025
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
3026
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
3027
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
3028
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
3029
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
3030
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
3031
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
2887
3032
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
2888
3033
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
2889
3034
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -2965,6 +3110,8 @@ declare const useI18n: () => {
|
|
|
2965
3110
|
readonly no: "No";
|
|
2966
3111
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
2967
3112
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
3113
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
3114
|
+
readonly undo: "Undo";
|
|
2968
3115
|
readonly selectFile: "Select File";
|
|
2969
3116
|
readonly mandatory: "Mandatory";
|
|
2970
3117
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -3023,7 +3170,7 @@ declare const useI18n: () => {
|
|
|
3023
3170
|
readonly emailAccountsList: "Email Accounts List";
|
|
3024
3171
|
readonly theme: "Theme";
|
|
3025
3172
|
readonly noAccessToSection: "No access to this section";
|
|
3026
|
-
readonly
|
|
3173
|
+
readonly languageNotSupported: "This language is not supported";
|
|
3027
3174
|
readonly language: "Language";
|
|
3028
3175
|
readonly addNewCar: "Add New Car";
|
|
3029
3176
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -3092,7 +3239,7 @@ declare const useI18n: () => {
|
|
|
3092
3239
|
readonly parentId: "Parent ID";
|
|
3093
3240
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
3094
3241
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
3095
|
-
readonly
|
|
3242
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
3096
3243
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
3097
3244
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
3098
3245
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -3134,7 +3281,14 @@ declare const useI18n: () => {
|
|
|
3134
3281
|
readonly clear: "Clear";
|
|
3135
3282
|
readonly close: "Close";
|
|
3136
3283
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
3137
|
-
|
|
3284
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
3285
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
3286
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
3287
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
3288
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
3289
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
3290
|
+
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.";
|
|
3291
|
+
}, 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<{
|
|
3138
3292
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
3139
3293
|
readonly admins: "Admins";
|
|
3140
3294
|
readonly adminPrivileges: "Admin Privileges";
|
|
@@ -3331,6 +3485,19 @@ declare const useI18n: () => {
|
|
|
3331
3485
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
3332
3486
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
3333
3487
|
readonly cancel: "Cancel";
|
|
3488
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
3489
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
3490
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
3491
|
+
readonly localesHeading: "Locales";
|
|
3492
|
+
readonly baseLocaleBadge: "(base)";
|
|
3493
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
3494
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
3495
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
3496
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
3497
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
3498
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
3499
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
3500
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
3334
3501
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
3335
3502
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
3336
3503
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -3412,6 +3579,8 @@ declare const useI18n: () => {
|
|
|
3412
3579
|
readonly no: "No";
|
|
3413
3580
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
3414
3581
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
3582
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
3583
|
+
readonly undo: "Undo";
|
|
3415
3584
|
readonly selectFile: "Select File";
|
|
3416
3585
|
readonly mandatory: "Mandatory";
|
|
3417
3586
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -3470,7 +3639,7 @@ declare const useI18n: () => {
|
|
|
3470
3639
|
readonly emailAccountsList: "Email Accounts List";
|
|
3471
3640
|
readonly theme: "Theme";
|
|
3472
3641
|
readonly noAccessToSection: "No access to this section";
|
|
3473
|
-
readonly
|
|
3642
|
+
readonly languageNotSupported: "This language is not supported";
|
|
3474
3643
|
readonly language: "Language";
|
|
3475
3644
|
readonly addNewCar: "Add New Car";
|
|
3476
3645
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -3539,7 +3708,7 @@ declare const useI18n: () => {
|
|
|
3539
3708
|
readonly parentId: "Parent ID";
|
|
3540
3709
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
3541
3710
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
3542
|
-
readonly
|
|
3711
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
3543
3712
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
3544
3713
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
3545
3714
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -3581,6 +3750,13 @@ declare const useI18n: () => {
|
|
|
3581
3750
|
readonly clear: "Clear";
|
|
3582
3751
|
readonly close: "Close";
|
|
3583
3752
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
3753
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
3754
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
3755
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
3756
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
3757
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
3758
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
3759
|
+
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.";
|
|
3584
3760
|
}, Scope, Key_2>>(key: Key_2, ...params: import("international-types").CreateParams<import("international-types").ParamsObject<Value_2>, {
|
|
3585
3761
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
3586
3762
|
readonly admins: "Admins";
|
|
@@ -3778,6 +3954,19 @@ declare const useI18n: () => {
|
|
|
3778
3954
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
3779
3955
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
3780
3956
|
readonly cancel: "Cancel";
|
|
3957
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
3958
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
3959
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
3960
|
+
readonly localesHeading: "Locales";
|
|
3961
|
+
readonly baseLocaleBadge: "(base)";
|
|
3962
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
3963
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
3964
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
3965
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
3966
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
3967
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
3968
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
3969
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
3781
3970
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
3782
3971
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
3783
3972
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -3859,6 +4048,8 @@ declare const useI18n: () => {
|
|
|
3859
4048
|
readonly no: "No";
|
|
3860
4049
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
3861
4050
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
4051
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
4052
|
+
readonly undo: "Undo";
|
|
3862
4053
|
readonly selectFile: "Select File";
|
|
3863
4054
|
readonly mandatory: "Mandatory";
|
|
3864
4055
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -3917,7 +4108,7 @@ declare const useI18n: () => {
|
|
|
3917
4108
|
readonly emailAccountsList: "Email Accounts List";
|
|
3918
4109
|
readonly theme: "Theme";
|
|
3919
4110
|
readonly noAccessToSection: "No access to this section";
|
|
3920
|
-
readonly
|
|
4111
|
+
readonly languageNotSupported: "This language is not supported";
|
|
3921
4112
|
readonly language: "Language";
|
|
3922
4113
|
readonly addNewCar: "Add New Car";
|
|
3923
4114
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -3986,7 +4177,7 @@ declare const useI18n: () => {
|
|
|
3986
4177
|
readonly parentId: "Parent ID";
|
|
3987
4178
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
3988
4179
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
3989
|
-
readonly
|
|
4180
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
3990
4181
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
3991
4182
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
3992
4183
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -4028,6 +4219,13 @@ declare const useI18n: () => {
|
|
|
4028
4219
|
readonly clear: "Clear";
|
|
4029
4220
|
readonly close: "Close";
|
|
4030
4221
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
4222
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
4223
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
4224
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
4225
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
4226
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
4227
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
4228
|
+
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.";
|
|
4031
4229
|
}, Scope, Key_2, Value_2>): string;
|
|
4032
4230
|
<Key_3 extends import("international-types").LocaleKeys<{
|
|
4033
4231
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
@@ -4226,6 +4424,19 @@ declare const useI18n: () => {
|
|
|
4226
4424
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
4227
4425
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
4228
4426
|
readonly cancel: "Cancel";
|
|
4427
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
4428
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
4429
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
4430
|
+
readonly localesHeading: "Locales";
|
|
4431
|
+
readonly baseLocaleBadge: "(base)";
|
|
4432
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
4433
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
4434
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
4435
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
4436
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
4437
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
4438
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
4439
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
4229
4440
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
4230
4441
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
4231
4442
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -4307,6 +4518,8 @@ declare const useI18n: () => {
|
|
|
4307
4518
|
readonly no: "No";
|
|
4308
4519
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
4309
4520
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
4521
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
4522
|
+
readonly undo: "Undo";
|
|
4310
4523
|
readonly selectFile: "Select File";
|
|
4311
4524
|
readonly mandatory: "Mandatory";
|
|
4312
4525
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -4365,7 +4578,7 @@ declare const useI18n: () => {
|
|
|
4365
4578
|
readonly emailAccountsList: "Email Accounts List";
|
|
4366
4579
|
readonly theme: "Theme";
|
|
4367
4580
|
readonly noAccessToSection: "No access to this section";
|
|
4368
|
-
readonly
|
|
4581
|
+
readonly languageNotSupported: "This language is not supported";
|
|
4369
4582
|
readonly language: "Language";
|
|
4370
4583
|
readonly addNewCar: "Add New Car";
|
|
4371
4584
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -4434,7 +4647,7 @@ declare const useI18n: () => {
|
|
|
4434
4647
|
readonly parentId: "Parent ID";
|
|
4435
4648
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
4436
4649
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
4437
|
-
readonly
|
|
4650
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
4438
4651
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
4439
4652
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
4440
4653
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -4476,7 +4689,14 @@ declare const useI18n: () => {
|
|
|
4476
4689
|
readonly clear: "Clear";
|
|
4477
4690
|
readonly close: "Close";
|
|
4478
4691
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
4479
|
-
|
|
4692
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
4693
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
4694
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
4695
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
4696
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
4697
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
4698
|
+
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.";
|
|
4699
|
+
}, 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<{
|
|
4480
4700
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
4481
4701
|
readonly admins: "Admins";
|
|
4482
4702
|
readonly adminPrivileges: "Admin Privileges";
|
|
@@ -4673,6 +4893,19 @@ declare const useI18n: () => {
|
|
|
4673
4893
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
4674
4894
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
4675
4895
|
readonly cancel: "Cancel";
|
|
4896
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
4897
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
4898
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
4899
|
+
readonly localesHeading: "Locales";
|
|
4900
|
+
readonly baseLocaleBadge: "(base)";
|
|
4901
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
4902
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
4903
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
4904
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
4905
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
4906
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
4907
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
4908
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
4676
4909
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
4677
4910
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
4678
4911
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -4754,6 +4987,8 @@ declare const useI18n: () => {
|
|
|
4754
4987
|
readonly no: "No";
|
|
4755
4988
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
4756
4989
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
4990
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
4991
|
+
readonly undo: "Undo";
|
|
4757
4992
|
readonly selectFile: "Select File";
|
|
4758
4993
|
readonly mandatory: "Mandatory";
|
|
4759
4994
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -4812,7 +5047,7 @@ declare const useI18n: () => {
|
|
|
4812
5047
|
readonly emailAccountsList: "Email Accounts List";
|
|
4813
5048
|
readonly theme: "Theme";
|
|
4814
5049
|
readonly noAccessToSection: "No access to this section";
|
|
4815
|
-
readonly
|
|
5050
|
+
readonly languageNotSupported: "This language is not supported";
|
|
4816
5051
|
readonly language: "Language";
|
|
4817
5052
|
readonly addNewCar: "Add New Car";
|
|
4818
5053
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -4881,7 +5116,7 @@ declare const useI18n: () => {
|
|
|
4881
5116
|
readonly parentId: "Parent ID";
|
|
4882
5117
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
4883
5118
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
4884
|
-
readonly
|
|
5119
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
4885
5120
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
4886
5121
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
4887
5122
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -4923,6 +5158,13 @@ declare const useI18n: () => {
|
|
|
4923
5158
|
readonly clear: "Clear";
|
|
4924
5159
|
readonly close: "Close";
|
|
4925
5160
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
5161
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
5162
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
5163
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
5164
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
5165
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
5166
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
5167
|
+
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.";
|
|
4926
5168
|
}, Scope, Key_3>>(key: Key_3, ...params: import("international-types").CreateParams<import("next-international").ReactParamsObject<Value_3>, {
|
|
4927
5169
|
readonly adminDoesNotExist: "Admin does not exist";
|
|
4928
5170
|
readonly admins: "Admins";
|
|
@@ -5120,6 +5362,19 @@ declare const useI18n: () => {
|
|
|
5120
5362
|
readonly catDeleteWarning: "Warning! All associated items will be deleted!";
|
|
5121
5363
|
readonly catDeleteWarningSubtitle: "Please don't proceed if you don't want to lose associated items.";
|
|
5122
5364
|
readonly cancel: "Cancel";
|
|
5365
|
+
readonly unsavedChangesConfirm: "You have unsaved changes. Are you sure you want to leave this page?";
|
|
5366
|
+
readonly deleteLocaleTranslation: "Delete this translation";
|
|
5367
|
+
readonly deleteLocaleTranslationText: "Are you sure you want to delete this translation? This action cannot be undone.";
|
|
5368
|
+
readonly localesHeading: "Locales";
|
|
5369
|
+
readonly baseLocaleBadge: "(base)";
|
|
5370
|
+
readonly editingContentTranslation: "Editing translation: {locale}. Only localized fields are shown.";
|
|
5371
|
+
readonly localizationNotEnabledForSection: "Localization is not enabled for this section";
|
|
5372
|
+
readonly invalidLocale: "Invalid locale: \"{locale}\". Must be one of: {locales}";
|
|
5373
|
+
readonly cannotDeleteBaseLocaleTranslation: "Cannot delete the base locale translation";
|
|
5374
|
+
readonly localesTableDoesNotExist: "Locales table does not exist";
|
|
5375
|
+
readonly deleteLocaleTranslationFailed: "Failed to delete locale translation: {detail}";
|
|
5376
|
+
readonly unknownErrorOccurred: "Unknown error occurred";
|
|
5377
|
+
readonly localeTranslationDeleted: "Translation deleted successfully";
|
|
5123
5378
|
readonly itemCreatedSuccessfully: "Item created successfully";
|
|
5124
5379
|
readonly itemUpdatedSuccessfully: "Item updated successfully";
|
|
5125
5380
|
readonly sectionUpdatedSuccessfully: "Information updated successfully";
|
|
@@ -5201,6 +5456,8 @@ declare const useI18n: () => {
|
|
|
5201
5456
|
readonly no: "No";
|
|
5202
5457
|
readonly videoDeletedSuccessfully: "Video deleted successfully";
|
|
5203
5458
|
readonly photoDeletedSuccessfully: "Photo deleted successfully";
|
|
5459
|
+
readonly photoMarkedForDeletion: "Photo will be deleted when you save.";
|
|
5460
|
+
readonly undo: "Undo";
|
|
5204
5461
|
readonly selectFile: "Select File";
|
|
5205
5462
|
readonly mandatory: "Mandatory";
|
|
5206
5463
|
readonly imageDimensionsMustBe: "Image dimensions must be";
|
|
@@ -5259,7 +5516,7 @@ declare const useI18n: () => {
|
|
|
5259
5516
|
readonly emailAccountsList: "Email Accounts List";
|
|
5260
5517
|
readonly theme: "Theme";
|
|
5261
5518
|
readonly noAccessToSection: "No access to this section";
|
|
5262
|
-
readonly
|
|
5519
|
+
readonly languageNotSupported: "This language is not supported";
|
|
5263
5520
|
readonly language: "Language";
|
|
5264
5521
|
readonly addNewCar: "Add New Car";
|
|
5265
5522
|
readonly createCarListing: "Create a new car listing";
|
|
@@ -5328,7 +5585,7 @@ declare const useI18n: () => {
|
|
|
5328
5585
|
readonly parentId: "Parent ID";
|
|
5329
5586
|
readonly selectFieldConfigError: "Select field requires either db, section or an options array";
|
|
5330
5587
|
readonly tableIdentifierLabelRequired: "Table, identifier and label are required";
|
|
5331
|
-
readonly
|
|
5588
|
+
readonly i18nMustHaveAtLeastOneLanguage: "i18n.supportedLanguages must have at least one language";
|
|
5332
5589
|
readonly fieldMinValueError: "{field} must be {min} and above";
|
|
5333
5590
|
readonly fieldMaxValueError: "{field} must be {max} and below";
|
|
5334
5591
|
readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
|
|
@@ -5370,6 +5627,13 @@ declare const useI18n: () => {
|
|
|
5370
5627
|
readonly clear: "Clear";
|
|
5371
5628
|
readonly close: "Close";
|
|
5372
5629
|
readonly clearAllSelectedOptions: "Clear all {count} selected options";
|
|
5630
|
+
readonly galleryPhoto: "Gallery Photo";
|
|
5631
|
+
readonly parentItemNotFound: "Parent item not found";
|
|
5632
|
+
readonly preSubmitHookFailed: "Pre-submit hook failed";
|
|
5633
|
+
readonly failedToBuildLocaleSqlQuery: "Failed to build locale SQL query";
|
|
5634
|
+
readonly noLocalizedFields: "This section has no localized fields.";
|
|
5635
|
+
readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
|
|
5636
|
+
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.";
|
|
5373
5637
|
}, Scope, Key_3, Value_3>): React.ReactNode;
|
|
5374
5638
|
}, useCurrentLocale: () => string;
|
|
5375
5639
|
type I18nProviderClientProps = {
|