nextjs-cms 0.9.6 → 0.9.8

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.
Files changed (70) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +290 -290
  3. package/dist/api/index.d.ts +3 -3
  4. package/dist/api/index.d.ts.map +1 -1
  5. package/dist/api/lib/serverActions.d.ts +3 -3
  6. package/dist/api/lib/serverActions.d.ts.map +1 -1
  7. package/dist/api/lib/serverActions.js +6 -0
  8. package/dist/api/root.d.ts +6 -6
  9. package/dist/api/root.d.ts.map +1 -1
  10. package/dist/api/routers/config.d.ts.map +1 -1
  11. package/dist/api/routers/hasItemsSection.d.ts.map +1 -1
  12. package/dist/api/routers/navigation.d.ts +3 -3
  13. package/dist/api/routers/simpleSection.d.ts.map +1 -1
  14. package/dist/cli/lib/db-config.js +10 -10
  15. package/dist/core/db/table-checker/MysqlTable.js +8 -8
  16. package/dist/core/factories/FieldFactory.d.ts.map +1 -1
  17. package/dist/core/factories/FieldFactory.js +5 -1
  18. package/dist/core/factories/section-factory-with-esbuild.js +9 -9
  19. package/dist/core/factories/section-factory-with-jiti.js +9 -9
  20. package/dist/core/fields/date-range.d.ts +119 -0
  21. package/dist/core/fields/date-range.d.ts.map +1 -0
  22. package/dist/core/fields/date-range.js +175 -0
  23. package/dist/core/fields/date.d.ts +15 -3
  24. package/dist/core/fields/date.d.ts.map +1 -1
  25. package/dist/core/fields/date.js +34 -17
  26. package/dist/core/fields/dateRange.d.ts +133 -94
  27. package/dist/core/fields/dateRange.d.ts.map +1 -1
  28. package/dist/core/fields/dateRange.js +39 -8
  29. package/dist/core/fields/index.d.ts +3 -3
  30. package/dist/core/fields/index.d.ts.map +1 -1
  31. package/dist/core/fields/index.js +1 -1
  32. package/dist/core/sections/category.d.ts +4 -4
  33. package/dist/core/sections/hasItems.d.ts +64 -64
  34. package/dist/core/sections/section.d.ts +3 -3
  35. package/dist/core/sections/simple.d.ts +4 -4
  36. package/dist/core/submit/submit.d.ts.map +1 -1
  37. package/dist/core/submit/submit.js +3 -1
  38. package/dist/translations/base/en.d.ts +3 -0
  39. package/dist/translations/base/en.d.ts.map +1 -1
  40. package/dist/translations/base/en.js +3 -0
  41. package/dist/translations/client.d.ts +40 -4
  42. package/dist/translations/client.d.ts.map +1 -1
  43. package/dist/translations/server.d.ts +40 -4
  44. package/dist/translations/server.d.ts.map +1 -1
  45. package/dist/utils/date-bounds.d.ts +10 -0
  46. package/dist/utils/date-bounds.d.ts.map +1 -0
  47. package/dist/utils/date-bounds.js +36 -0
  48. package/dist/utils/dateBounds.d.ts +10 -0
  49. package/dist/utils/dateBounds.d.ts.map +1 -0
  50. package/dist/utils/dateBounds.js +36 -0
  51. package/dist/validators/date-range.d.ts +11 -0
  52. package/dist/validators/date-range.d.ts.map +1 -0
  53. package/dist/validators/date-range.js +38 -0
  54. package/dist/validators/date.d.ts.map +1 -1
  55. package/dist/validators/date.js +23 -1
  56. package/dist/validators/dateRange.d.ts.map +1 -1
  57. package/dist/validators/dateRange.js +23 -1
  58. package/dist/validators/index.d.ts +1 -1
  59. package/dist/validators/index.d.ts.map +1 -1
  60. package/dist/validators/index.js +1 -1
  61. package/package.json +1 -1
  62. package/dist/translations/locale-cookie.d.ts +0 -24
  63. package/dist/translations/locale-cookie.d.ts.map +0 -1
  64. package/dist/translations/locale-cookie.js +0 -44
  65. package/dist/translations/locale-utils.d.ts +0 -8
  66. package/dist/translations/locale-utils.d.ts.map +0 -1
  67. package/dist/translations/locale-utils.js +0 -11
  68. package/dist/translations/localization.d.ts +0 -40
  69. package/dist/translations/localization.d.ts.map +0 -1
  70. package/dist/translations/localization.js +0 -48
@@ -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 "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 ? {
5
+ <Key extends "error" | "message" | "date" | "success" | "readonly" | "custom" | "maxFileSize" | "name" | "video" | "dashboard" | "photoFieldBuildRequired" | "folderNotSet" | "imageNotSet" | "fileWriteError" | "fileDeleteError" | "fieldIsRequired" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "fileCorrupted" | "imageDimensionMismatchDetailed" | "invalidImageExtension" | "errorReadingFile" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "invalidDocumentFileType" | "bufferNotSet" | "documentWriteError" | "documentDeleteError" | "invalidFileExtension" | "minLength" | "maxLength" | "select" | "password" | "search" | "admins" | "username" | "emailAddress" | "phoneNumber" | "language" | "publisher" | "section" | "logs" | "source" | "description" | "fieldDateBoundsMismatch" | "invalidDatePleaseProvideValid" | "fieldDateMinValueError" | "fieldDateMaxValueError" | "create" | "update" | "sectionNotFound" | "admin" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "adminDoesNotExist" | "masterAdminCannotBeDeleted" | "adminNotFound" | "requiredField" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "fieldMinValueError" | "fieldMaxValueError" | "numberMinLength" | "numberMaxLength" | "browse" | "invalidMapFormat" | "invalidColorPleaseProvideValidHex" | "contact" | "database" | "delete" | "home" | "save" | "settings" | "edit" | "undo" | "upload" | "users" | "view" | "gallery" | "level" | "version" | "yes" | "no" | "add" | "new" | "publish" | "close" | "log" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "useVideoApiRoute" | "localizationNotEnabledForSection" | "invalidLocale" | "sectionTableIdentifierNotFound" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "page" | "deleteLocaleTranslation" | "parentId" | "deletePhoto" | "login" | "logout" | "oldPassword" | "newPassword" | "changePassword" | "simpleSections" | "categorySections" | "accountSettings" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "submit" | "galleryTableNotSetUp" | "galleryPhoto" | "sectionHasNoLocalizedFields" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "checkboxRequired" | "invalidColorFormat" | "noFileSelected" | "fileSizeExceeded" | "invalidDocumentType" | "numberMinValue" | "numberMaxValue" | "unableToReadFile" | "invalidImageType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "unableToLoadImage" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidVideoType" | "register" | "oldPasswordIncorrect" | "passwordsDoNotMatch" | "languageNotSupported" | "email" | "quota" | "phpVersion" | "documentRoot" | "cpanelCredentialsNotSet" | "noTokenProvided" | "noAccessToThisOperation" | "usernameAndPasswordRequired" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "clear" | "logo" | "here" | "details" | "main" | "strong" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "adminDeletedSuccessfully" | "masterAdminCannotBeModified" | "action" | "noData" | "loginToYourAccount" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "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" | "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" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "currentPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "startTyping" | "startTypingForSuggestions" | "addNew" | "approve" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localeTranslationDeleted" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "updateQuota" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "passwordChangeWarning" | "adminDetails" | "selectOptions" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "logoutError" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "photoMarkedForDeletion" | "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" | "nodeVersion" | "remote" | "diskUsage" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "sectionsWithItems" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLanguage" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "newImage" | "autoGeneratedFromLinkedField" | "clearAllSelectedOptions" | "noLocalizedFields" | "noLocalizedFieldsHint", Value extends import("international-types").LocaleValue = ((`${Key}#zero` | `${Key}#one` | `${Key}#two` | `${Key}#few` | `${Key}#many` | `${Key}#other`) & ("error" | "message" | "date" | "success" | "readonly" | "custom" | "maxFileSize" | "name" | "video" | "dashboard" | "photoFieldBuildRequired" | "folderNotSet" | "imageNotSet" | "fileWriteError" | "fileDeleteError" | "fieldIsRequired" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "fileCorrupted" | "imageDimensionMismatchDetailed" | "invalidImageExtension" | "errorReadingFile" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "invalidDocumentFileType" | "bufferNotSet" | "documentWriteError" | "documentDeleteError" | "invalidFileExtension" | "minLength" | "maxLength" | "select" | "password" | "search" | "admins" | "username" | "emailAddress" | "phoneNumber" | "language" | "publisher" | "section" | "logs" | "source" | "description" | "fieldDateBoundsMismatch" | "invalidDatePleaseProvideValid" | "fieldDateMinValueError" | "fieldDateMaxValueError" | "create" | "update" | "sectionNotFound" | "admin" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "adminDoesNotExist" | "masterAdminCannotBeDeleted" | "adminNotFound" | "requiredField" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "fieldMinValueError" | "fieldMaxValueError" | "numberMinLength" | "numberMaxLength" | "browse" | "invalidMapFormat" | "invalidColorPleaseProvideValidHex" | "contact" | "database" | "delete" | "home" | "save" | "settings" | "edit" | "undo" | "upload" | "users" | "view" | "gallery" | "level" | "version" | "yes" | "no" | "add" | "new" | "publish" | "close" | "log" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "useVideoApiRoute" | "localizationNotEnabledForSection" | "invalidLocale" | "sectionTableIdentifierNotFound" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "page" | "deleteLocaleTranslation" | "parentId" | "deletePhoto" | "login" | "logout" | "oldPassword" | "newPassword" | "changePassword" | "simpleSections" | "categorySections" | "accountSettings" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "submit" | "galleryTableNotSetUp" | "galleryPhoto" | "sectionHasNoLocalizedFields" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "checkboxRequired" | "invalidColorFormat" | "noFileSelected" | "fileSizeExceeded" | "invalidDocumentType" | "numberMinValue" | "numberMaxValue" | "unableToReadFile" | "invalidImageType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "unableToLoadImage" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidVideoType" | "register" | "oldPasswordIncorrect" | "passwordsDoNotMatch" | "languageNotSupported" | "email" | "quota" | "phpVersion" | "documentRoot" | "cpanelCredentialsNotSet" | "noTokenProvided" | "noAccessToThisOperation" | "usernameAndPasswordRequired" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "clear" | "logo" | "here" | "details" | "main" | "strong" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "adminDeletedSuccessfully" | "masterAdminCannotBeModified" | "action" | "noData" | "loginToYourAccount" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "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" | "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" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "currentPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "startTyping" | "startTypingForSuggestions" | "addNew" | "approve" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localeTranslationDeleted" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "updateQuota" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "passwordChangeWarning" | "adminDetails" | "selectOptions" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "logoutError" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "photoMarkedForDeletion" | "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" | "nodeVersion" | "remote" | "diskUsage" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "sectionsWithItems" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLanguage" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "newImage" | "autoGeneratedFromLinkedField" | "clearAllSelectedOptions" | "noLocalizedFields" | "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";
@@ -427,6 +427,9 @@ declare const useI18n: () => {
427
427
  readonly fieldMaxValueError: "{field} must be {max} and below";
428
428
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
429
429
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
430
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
431
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
432
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
430
433
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
431
434
  readonly fileCorrupted: "File is corrupted";
432
435
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -896,6 +899,9 @@ declare const useI18n: () => {
896
899
  readonly fieldMaxValueError: "{field} must be {max} and below";
897
900
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
898
901
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
902
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
903
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
904
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
899
905
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
900
906
  readonly fileCorrupted: "File is corrupted";
901
907
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -1365,6 +1371,9 @@ declare const useI18n: () => {
1365
1371
  readonly fieldMaxValueError: "{field} must be {max} and below";
1366
1372
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
1367
1373
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
1374
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
1375
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
1376
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
1368
1377
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
1369
1378
  readonly fileCorrupted: "File is corrupted";
1370
1379
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -1410,7 +1419,7 @@ declare const useI18n: () => {
1410
1419
  readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
1411
1420
  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.";
1412
1421
  }, undefined, Key, Value>): string;
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 ? {
1422
+ <Key_1 extends "error" | "message" | "date" | "success" | "readonly" | "custom" | "maxFileSize" | "name" | "video" | "dashboard" | "photoFieldBuildRequired" | "folderNotSet" | "imageNotSet" | "fileWriteError" | "fileDeleteError" | "fieldIsRequired" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "fileCorrupted" | "imageDimensionMismatchDetailed" | "invalidImageExtension" | "errorReadingFile" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "invalidDocumentFileType" | "bufferNotSet" | "documentWriteError" | "documentDeleteError" | "invalidFileExtension" | "minLength" | "maxLength" | "select" | "password" | "search" | "admins" | "username" | "emailAddress" | "phoneNumber" | "language" | "publisher" | "section" | "logs" | "source" | "description" | "fieldDateBoundsMismatch" | "invalidDatePleaseProvideValid" | "fieldDateMinValueError" | "fieldDateMaxValueError" | "create" | "update" | "sectionNotFound" | "admin" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "adminDoesNotExist" | "masterAdminCannotBeDeleted" | "adminNotFound" | "requiredField" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "fieldMinValueError" | "fieldMaxValueError" | "numberMinLength" | "numberMaxLength" | "browse" | "invalidMapFormat" | "invalidColorPleaseProvideValidHex" | "contact" | "database" | "delete" | "home" | "save" | "settings" | "edit" | "undo" | "upload" | "users" | "view" | "gallery" | "level" | "version" | "yes" | "no" | "add" | "new" | "publish" | "close" | "log" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "useVideoApiRoute" | "localizationNotEnabledForSection" | "invalidLocale" | "sectionTableIdentifierNotFound" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "page" | "deleteLocaleTranslation" | "parentId" | "deletePhoto" | "login" | "logout" | "oldPassword" | "newPassword" | "changePassword" | "simpleSections" | "categorySections" | "accountSettings" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "submit" | "galleryTableNotSetUp" | "galleryPhoto" | "sectionHasNoLocalizedFields" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "checkboxRequired" | "invalidColorFormat" | "noFileSelected" | "fileSizeExceeded" | "invalidDocumentType" | "numberMinValue" | "numberMaxValue" | "unableToReadFile" | "invalidImageType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "unableToLoadImage" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidVideoType" | "register" | "oldPasswordIncorrect" | "passwordsDoNotMatch" | "languageNotSupported" | "email" | "quota" | "phpVersion" | "documentRoot" | "cpanelCredentialsNotSet" | "noTokenProvided" | "noAccessToThisOperation" | "usernameAndPasswordRequired" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "clear" | "logo" | "here" | "details" | "main" | "strong" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "adminDeletedSuccessfully" | "masterAdminCannotBeModified" | "action" | "noData" | "loginToYourAccount" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "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" | "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" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "currentPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "startTyping" | "startTypingForSuggestions" | "addNew" | "approve" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localeTranslationDeleted" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "updateQuota" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "passwordChangeWarning" | "adminDetails" | "selectOptions" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "logoutError" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "photoMarkedForDeletion" | "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" | "nodeVersion" | "remote" | "diskUsage" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "sectionsWithItems" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLanguage" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "newImage" | "autoGeneratedFromLinkedField" | "clearAllSelectedOptions" | "noLocalizedFields" | "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`) & ("error" | "message" | "date" | "success" | "readonly" | "custom" | "maxFileSize" | "name" | "video" | "dashboard" | "photoFieldBuildRequired" | "folderNotSet" | "imageNotSet" | "fileWriteError" | "fileDeleteError" | "fieldIsRequired" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "fileCorrupted" | "imageDimensionMismatchDetailed" | "invalidImageExtension" | "errorReadingFile" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "invalidDocumentFileType" | "bufferNotSet" | "documentWriteError" | "documentDeleteError" | "invalidFileExtension" | "minLength" | "maxLength" | "select" | "password" | "search" | "admins" | "username" | "emailAddress" | "phoneNumber" | "language" | "publisher" | "section" | "logs" | "source" | "description" | "fieldDateBoundsMismatch" | "invalidDatePleaseProvideValid" | "fieldDateMinValueError" | "fieldDateMaxValueError" | "create" | "update" | "sectionNotFound" | "admin" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "adminDoesNotExist" | "masterAdminCannotBeDeleted" | "adminNotFound" | "requiredField" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "fieldMinValueError" | "fieldMaxValueError" | "numberMinLength" | "numberMaxLength" | "browse" | "invalidMapFormat" | "invalidColorPleaseProvideValidHex" | "contact" | "database" | "delete" | "home" | "save" | "settings" | "edit" | "undo" | "upload" | "users" | "view" | "gallery" | "level" | "version" | "yes" | "no" | "add" | "new" | "publish" | "close" | "log" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "useVideoApiRoute" | "localizationNotEnabledForSection" | "invalidLocale" | "sectionTableIdentifierNotFound" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "page" | "deleteLocaleTranslation" | "parentId" | "deletePhoto" | "login" | "logout" | "oldPassword" | "newPassword" | "changePassword" | "simpleSections" | "categorySections" | "accountSettings" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "submit" | "galleryTableNotSetUp" | "galleryPhoto" | "sectionHasNoLocalizedFields" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "checkboxRequired" | "invalidColorFormat" | "noFileSelected" | "fileSizeExceeded" | "invalidDocumentType" | "numberMinValue" | "numberMaxValue" | "unableToReadFile" | "invalidImageType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "unableToLoadImage" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidVideoType" | "register" | "oldPasswordIncorrect" | "passwordsDoNotMatch" | "languageNotSupported" | "email" | "quota" | "phpVersion" | "documentRoot" | "cpanelCredentialsNotSet" | "noTokenProvided" | "noAccessToThisOperation" | "usernameAndPasswordRequired" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "clear" | "logo" | "here" | "details" | "main" | "strong" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "adminDeletedSuccessfully" | "masterAdminCannotBeModified" | "action" | "noData" | "loginToYourAccount" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "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" | "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" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "currentPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "startTyping" | "startTypingForSuggestions" | "addNew" | "approve" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localeTranslationDeleted" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "updateQuota" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "passwordChangeWarning" | "adminDetails" | "selectOptions" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "logoutError" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "photoMarkedForDeletion" | "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" | "nodeVersion" | "remote" | "diskUsage" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "sectionsWithItems" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLanguage" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "newImage" | "autoGeneratedFromLinkedField" | "clearAllSelectedOptions" | "noLocalizedFields" | "noLocalizedFieldsHint") extends never ? false : true) extends true ? {
1414
1423
  readonly adminDoesNotExist: "Admin does not exist";
1415
1424
  readonly admins: "Admins";
1416
1425
  readonly adminPrivileges: "Admin Privileges";
@@ -1835,6 +1844,9 @@ declare const useI18n: () => {
1835
1844
  readonly fieldMaxValueError: "{field} must be {max} and below";
1836
1845
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
1837
1846
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
1847
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
1848
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
1849
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
1838
1850
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
1839
1851
  readonly fileCorrupted: "File is corrupted";
1840
1852
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -2304,6 +2316,9 @@ declare const useI18n: () => {
2304
2316
  readonly fieldMaxValueError: "{field} must be {max} and below";
2305
2317
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
2306
2318
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
2319
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
2320
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
2321
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
2307
2322
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
2308
2323
  readonly fileCorrupted: "File is corrupted";
2309
2324
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -2773,6 +2788,9 @@ declare const useI18n: () => {
2773
2788
  readonly fieldMaxValueError: "{field} must be {max} and below";
2774
2789
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
2775
2790
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
2791
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
2792
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
2793
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
2776
2794
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
2777
2795
  readonly fileCorrupted: "File is corrupted";
2778
2796
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -3244,6 +3262,9 @@ declare const useI18n: () => {
3244
3262
  readonly fieldMaxValueError: "{field} must be {max} and below";
3245
3263
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
3246
3264
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
3265
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
3266
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
3267
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
3247
3268
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
3248
3269
  readonly fileCorrupted: "File is corrupted";
3249
3270
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -3288,7 +3309,7 @@ declare const useI18n: () => {
3288
3309
  readonly noLocalizedFields: "This section has no localized fields.";
3289
3310
  readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
3290
3311
  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<{
3312
+ }, Scope, "error" | "message" | "date" | "success" | "readonly" | "custom" | "maxFileSize" | "name" | "video" | "dashboard" | "photoFieldBuildRequired" | "folderNotSet" | "imageNotSet" | "fileWriteError" | "fileDeleteError" | "fieldIsRequired" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "fileCorrupted" | "imageDimensionMismatchDetailed" | "invalidImageExtension" | "errorReadingFile" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "invalidDocumentFileType" | "bufferNotSet" | "documentWriteError" | "documentDeleteError" | "invalidFileExtension" | "minLength" | "maxLength" | "select" | "password" | "search" | "admins" | "username" | "emailAddress" | "phoneNumber" | "language" | "publisher" | "section" | "logs" | "source" | "description" | "fieldDateBoundsMismatch" | "invalidDatePleaseProvideValid" | "fieldDateMinValueError" | "fieldDateMaxValueError" | "create" | "update" | "sectionNotFound" | "admin" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "adminDoesNotExist" | "masterAdminCannotBeDeleted" | "adminNotFound" | "requiredField" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "fieldMinValueError" | "fieldMaxValueError" | "numberMinLength" | "numberMaxLength" | "browse" | "invalidMapFormat" | "invalidColorPleaseProvideValidHex" | "contact" | "database" | "delete" | "home" | "save" | "settings" | "edit" | "undo" | "upload" | "users" | "view" | "gallery" | "level" | "version" | "yes" | "no" | "add" | "new" | "publish" | "close" | "log" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "useVideoApiRoute" | "localizationNotEnabledForSection" | "invalidLocale" | "sectionTableIdentifierNotFound" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "page" | "deleteLocaleTranslation" | "parentId" | "deletePhoto" | "login" | "logout" | "oldPassword" | "newPassword" | "changePassword" | "simpleSections" | "categorySections" | "accountSettings" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "submit" | "galleryTableNotSetUp" | "galleryPhoto" | "sectionHasNoLocalizedFields" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "checkboxRequired" | "invalidColorFormat" | "noFileSelected" | "fileSizeExceeded" | "invalidDocumentType" | "numberMinValue" | "numberMaxValue" | "unableToReadFile" | "invalidImageType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "unableToLoadImage" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidVideoType" | "register" | "oldPasswordIncorrect" | "passwordsDoNotMatch" | "languageNotSupported" | "email" | "quota" | "phpVersion" | "documentRoot" | "cpanelCredentialsNotSet" | "noTokenProvided" | "noAccessToThisOperation" | "usernameAndPasswordRequired" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "clear" | "logo" | "here" | "details" | "main" | "strong" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "adminDeletedSuccessfully" | "masterAdminCannotBeModified" | "action" | "noData" | "loginToYourAccount" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "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" | "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" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "currentPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "startTyping" | "startTypingForSuggestions" | "addNew" | "approve" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localeTranslationDeleted" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "updateQuota" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "passwordChangeWarning" | "adminDetails" | "selectOptions" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "logoutError" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "photoMarkedForDeletion" | "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" | "nodeVersion" | "remote" | "diskUsage" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "sectionsWithItems" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLanguage" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "newImage" | "autoGeneratedFromLinkedField" | "clearAllSelectedOptions" | "noLocalizedFields" | "noLocalizedFieldsHint">, Value_2 extends import("international-types").LocaleValue = import("international-types").ScopedValue<{
3292
3313
  readonly adminDoesNotExist: "Admin does not exist";
3293
3314
  readonly admins: "Admins";
3294
3315
  readonly adminPrivileges: "Admin Privileges";
@@ -3713,6 +3734,9 @@ declare const useI18n: () => {
3713
3734
  readonly fieldMaxValueError: "{field} must be {max} and below";
3714
3735
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
3715
3736
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
3737
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
3738
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
3739
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
3716
3740
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
3717
3741
  readonly fileCorrupted: "File is corrupted";
3718
3742
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -4182,6 +4206,9 @@ declare const useI18n: () => {
4182
4206
  readonly fieldMaxValueError: "{field} must be {max} and below";
4183
4207
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
4184
4208
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
4209
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
4210
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
4211
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
4185
4212
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
4186
4213
  readonly fileCorrupted: "File is corrupted";
4187
4214
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -4652,6 +4679,9 @@ declare const useI18n: () => {
4652
4679
  readonly fieldMaxValueError: "{field} must be {max} and below";
4653
4680
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
4654
4681
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
4682
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
4683
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
4684
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
4655
4685
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
4656
4686
  readonly fileCorrupted: "File is corrupted";
4657
4687
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -4696,7 +4726,7 @@ declare const useI18n: () => {
4696
4726
  readonly noLocalizedFields: "This section has no localized fields.";
4697
4727
  readonly sectionHasNoLocalizedFields: "Section \"{section}\" has no localized fields. Add localized: true to at least one field in the section definition to enable translations.";
4698
4728
  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<{
4729
+ }, Scope, "error" | "message" | "date" | "success" | "readonly" | "custom" | "maxFileSize" | "name" | "video" | "dashboard" | "photoFieldBuildRequired" | "folderNotSet" | "imageNotSet" | "fileWriteError" | "fileDeleteError" | "fieldIsRequired" | "invalidFileTypeOrExtension" | "fileSizeExceedsMax" | "fileCorrupted" | "imageDimensionMismatchDetailed" | "invalidImageExtension" | "errorReadingFile" | "videoFolderNotSet" | "videoBufferNotSet" | "videoWriteError" | "invalidDocumentFileType" | "bufferNotSet" | "documentWriteError" | "documentDeleteError" | "invalidFileExtension" | "minLength" | "maxLength" | "select" | "password" | "search" | "admins" | "username" | "emailAddress" | "phoneNumber" | "language" | "publisher" | "section" | "logs" | "source" | "description" | "fieldDateBoundsMismatch" | "invalidDatePleaseProvideValid" | "fieldDateMinValueError" | "fieldDateMaxValueError" | "create" | "update" | "sectionNotFound" | "admin" | "adminAlreadyExists" | "selectAtLeastOnePrivilege" | "adminDoesNotExist" | "masterAdminCannotBeDeleted" | "adminNotFound" | "requiredField" | "fieldMinMaxMismatch" | "fieldLengthMismatch" | "fieldMinValueError" | "fieldMaxValueError" | "numberMinLength" | "numberMaxLength" | "browse" | "invalidMapFormat" | "invalidColorPleaseProvideValidHex" | "contact" | "database" | "delete" | "home" | "save" | "settings" | "edit" | "undo" | "upload" | "users" | "view" | "gallery" | "level" | "version" | "yes" | "no" | "add" | "new" | "publish" | "close" | "log" | "invalidFilePath" | "invalidRequest" | "fileNotFound" | "invalidFileType" | "useVideoApiRoute" | "localizationNotEnabledForSection" | "invalidLocale" | "sectionTableIdentifierNotFound" | "cannotDeleteBaseLocaleTranslation" | "localesTableDoesNotExist" | "deleteLocaleTranslationFailed" | "unknownErrorOccurred" | "page" | "deleteLocaleTranslation" | "parentId" | "deletePhoto" | "login" | "logout" | "oldPassword" | "newPassword" | "changePassword" | "simpleSections" | "categorySections" | "accountSettings" | "recordWithFieldExists" | "recordWithCombinationExists" | "sqlQueryNotDefined" | "submit" | "galleryTableNotSetUp" | "galleryPhoto" | "sectionHasNoLocalizedFields" | "parentItemNotFound" | "preSubmitHookFailed" | "failedToBuildLocaleSqlQuery" | "checkboxRequired" | "invalidColorFormat" | "noFileSelected" | "fileSizeExceeded" | "invalidDocumentType" | "numberMinValue" | "numberMaxValue" | "unableToReadFile" | "invalidImageType" | "imageDimensionMismatch" | "couldNotVerifyImageDimensions" | "unableToLoadImage" | "atLeastOneValueRequired" | "invalidSlugFormat" | "invalidVideoType" | "register" | "oldPasswordIncorrect" | "passwordsDoNotMatch" | "languageNotSupported" | "email" | "quota" | "phpVersion" | "documentRoot" | "cpanelCredentialsNotSet" | "noTokenProvided" | "noAccessToThisOperation" | "usernameAndPasswordRequired" | "invalidCredentials" | "failedToCreateTokens" | "failedToSaveTokens" | "clear" | "logo" | "here" | "details" | "main" | "strong" | "adminPrivileges" | "createNewAdmin" | "submitNewAdmin" | "adminsList" | "deleteAdmin" | "deleteAdminText" | "editAdmin" | "editAdminText" | "adminDeletedSuccessfully" | "masterAdminCannotBeModified" | "action" | "noData" | "loginToYourAccount" | "rememberMe" | "haveAccount" | "dontHaveAnAccount" | "registerNow" | "registerNewAccount" | "forgotPassword" | "resetPassword" | "forgotPasswordText" | "sendResetLink" | "complyWithTerms" | "termsAndConditions" | "thankYouForRegistering" | "thankYouForRegisteringText" | "usernameRequired" | "passwordRequired" | "usernamePasswordRequired" | "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" | "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" | "changePasswordText" | "yourCurrentEmailIs" | "newEmailAddress" | "changeEmailAddress" | "currentPassword" | "confirmNewPassword" | "passwordStrengthTooltip" | "passwordStrength" | "veryWeak" | "weak" | "fair" | "good" | "serverError" | "diskSpace" | "totalDiskSpace" | "totalSpace" | "usedSpace" | "usedDiskSpace" | "thisMothBandwidth" | "totalBandwidth" | "usedBandwidth" | "emailAccounts" | "totalEmails" | "usedEmails" | "approved" | "pendingApproval" | "by" | "startTyping" | "startTypingForSuggestions" | "addNew" | "approve" | "addNewItem" | "catDeleteTextLight" | "catDeleteWarningLight" | "catDeleteText" | "catDeleteWarning" | "catDeleteWarningSubtitle" | "cancel" | "unsavedChangesConfirm" | "deleteLocaleTranslationText" | "localesHeading" | "baseLocaleBadge" | "editingContentTranslation" | "localeTranslationDeleted" | "itemCreatedSuccessfully" | "itemUpdatedSuccessfully" | "sectionUpdatedSuccessfully" | "itemDeletedSuccessfully" | "createNewEmailAccount" | "emailQuota" | "unlimited" | "updateQuota" | "lastLoginIp" | "passengerApplications" | "totalDatabases" | "usedDatabases" | "deleteEmailAccount" | "totalPageViews" | "totalSessions" | "totalUniqueUsers" | "bounceRate" | "monthlyPageViews" | "topDevices" | "topCountries" | "liveUsers" | "analytics" | "countriesDevices" | "device" | "liveUsersAreViewing" | "noLiveUsers" | "liveUsersSubtitle" | "sessionsPerUser" | "topSources" | "sources" | "mediums" | "topMediums" | "accountInformation" | "devices" | "countries" | "advancedSettings" | "advancedSettingsWarning" | "googleAnalyticsChangeText" | "googleAnalyticsChangeSubText" | "passwordChangeWarning" | "adminDetails" | "selectOptions" | "deleteItemText" | "deleteEmailText" | "dropzoneText" | "noItems" | "removeMarker" | "restoreMarker" | "restoreMarkerTooltip" | "uploadPhotosToGallery" | "deleteGalleryPhoto" | "deleteGalleryPhotoText" | "galleryPhotoDeleted" | "errorsInSubmit" | "newVariant" | "checkAll" | "removeAll" | "logoutError" | "deletePhotoText" | "deleteVideo" | "deleteVideoText" | "videoDeletedSuccessfully" | "photoDeletedSuccessfully" | "photoMarkedForDeletion" | "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" | "nodeVersion" | "remote" | "diskUsage" | "mysqlNotInstalled" | "emailAccountsList" | "theme" | "noAccessToSection" | "addNewCar" | "createCarListing" | "addRealEstate" | "createPropertyListing" | "viewAndManageAdmins" | "detailedAnalytics" | "totalCars" | "realEstate" | "jobs" | "services" | "addedAgo" | "hoursAgo" | "sectionsWithItems" | "cpanelPluginMisconfigured" | "loadingCpanelData" | "unableToLoadCpanelData" | "usedLabel" | "totalLabel" | "databases" | "pnpmVersion" | "npmVersion" | "bunVersion" | "cPanelDashboard" | "selectFieldConfigError" | "tableIdentifierLabelRequired" | "i18nMustHaveAtLeastOneLanguage" | "searchDots" | "noItemFound" | "searchOptionsDots" | "availableOptions" | "searchThroughOptions" | "filterOptionsHint" | "openMainMenu" | "openUserMenu" | "profileImage" | "newImage" | "autoGeneratedFromLinkedField" | "clearAllSelectedOptions" | "noLocalizedFields" | "noLocalizedFieldsHint">, Value_3 extends import("international-types").LocaleValue = import("international-types").ScopedValue<{
4700
4730
  readonly adminDoesNotExist: "Admin does not exist";
4701
4731
  readonly admins: "Admins";
4702
4732
  readonly adminPrivileges: "Admin Privileges";
@@ -5121,6 +5151,9 @@ declare const useI18n: () => {
5121
5151
  readonly fieldMaxValueError: "{field} must be {max} and below";
5122
5152
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
5123
5153
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
5154
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
5155
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
5156
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
5124
5157
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
5125
5158
  readonly fileCorrupted: "File is corrupted";
5126
5159
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -5590,6 +5623,9 @@ declare const useI18n: () => {
5590
5623
  readonly fieldMaxValueError: "{field} must be {max} and below";
5591
5624
  readonly fieldMinMaxMismatch: "{field} has minValue > maxValue";
5592
5625
  readonly fieldLengthMismatch: "{field} has minLength > maxLength";
5626
+ readonly fieldDateMinValueError: "{field} must be on or after {min}";
5627
+ readonly fieldDateMaxValueError: "{field} must be on or before {max}";
5628
+ readonly fieldDateBoundsMismatch: "{field} has minDate > maxDate";
5593
5629
  readonly invalidDatePleaseProvideValid: "{field}: Invalid date, please provide a valid date";
5594
5630
  readonly fileCorrupted: "File is corrupted";
5595
5631
  readonly fileWriteError: "{field}: Error writing file to disk";
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/translations/client.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAEtC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAA;AA0BvD,QAAA,MACI,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GACP,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GACb,gBAAgB,cAEkC,CAAA;AAGtD,KAAK,uBAAuB,GAAG;IAC3B,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,qBAAqB,CAAC,CAAA;IACpD,QAAQ,EAAE,SAAS,CAAA;CACtB,CAAA;AAID,wBAAgB,kBAAkB,CAAC,EAC/B,MAAM,EACN,QAAQ,EACR,YAAY,EACZ,QAAQ,GACX,EAAE,uBAAuB,qBAWzB;AAED,OAAO,EAAE,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,CAAA"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../src/translations/client.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAEtC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAA;AA0BvD,QAAA,MACI,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GACP,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GACb,gBAAgB,cAEkC,CAAA;AAGtD,KAAK,uBAAuB,GAAG;IAC3B,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,qBAAqB,CAAC,CAAA;IACpD,QAAQ,EAAE,SAAS,CAAA;CACtB,CAAA;AAID,wBAAgB,kBAAkB,CAAC,EAC/B,MAAM,EACN,QAAQ,EACR,YAAY,EACZ,QAAQ,GACX,EAAE,uBAAuB,qBAWzB;AAED,OAAO,EAAE,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,CAAA"}