@cagatayfdn/flora-components 0.0.71 → 0.0.73

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 (179) hide show
  1. package/dist/Accordion.css +1 -0
  2. package/dist/ActionButton.css +1 -0
  3. package/dist/AlertCard.css +1 -0
  4. package/dist/Autocomplete.css +1 -0
  5. package/dist/Button.css +1 -0
  6. package/dist/Card.css +1 -0
  7. package/dist/Checkbox.css +1 -0
  8. package/dist/Config.css +1 -0
  9. package/dist/Confirm.css +1 -0
  10. package/dist/ContentHeader.css +1 -0
  11. package/dist/Datepicker.css +1 -0
  12. package/dist/Divider.css +1 -0
  13. package/dist/DropdownList.css +1 -0
  14. package/dist/ErrorLogModal.css +1 -0
  15. package/dist/FileUpload.css +1 -0
  16. package/dist/FileUpload.module-bCNvwTRa.js +32 -0
  17. package/dist/Heading.css +1 -0
  18. package/dist/InfoBoxList.css +1 -0
  19. package/dist/InfoBoxList.module-C6t2KDOB.js +8 -0
  20. package/dist/InfoDate.css +1 -0
  21. package/dist/InfoText.css +1 -0
  22. package/dist/Input.css +1 -0
  23. package/dist/Label.css +1 -0
  24. package/dist/Legends.css +1 -0
  25. package/dist/Loading.css +1 -0
  26. package/dist/MenuItem-BGZHvTKI.js +53 -0
  27. package/dist/MenuItem.css +1 -0
  28. package/dist/Modal.css +1 -0
  29. package/dist/NoResult.css +1 -0
  30. package/dist/PageWrap.css +1 -0
  31. package/dist/Pager.css +1 -0
  32. package/dist/Panel.css +1 -0
  33. package/dist/Radio.css +1 -0
  34. package/dist/ResultError.css +1 -0
  35. package/dist/ScrollContainer.css +1 -0
  36. package/dist/Select-DcLZCXNo.js +1831 -0
  37. package/dist/Select.css +1 -0
  38. package/dist/Select.module-BVWgPUEN.js +20 -0
  39. package/dist/StatusTypography.css +1 -0
  40. package/dist/Stepper.css +1 -0
  41. package/dist/Switch.css +1 -0
  42. package/dist/Tab.css +1 -0
  43. package/dist/TableHeader-B91BXue0.js +159 -0
  44. package/dist/TableHeader.css +1 -0
  45. package/dist/Textarea.css +1 -0
  46. package/dist/Tooltip.css +1 -0
  47. package/dist/Trans-B4ILpbwK.js +343 -0
  48. package/dist/TypographyText.css +1 -0
  49. package/dist/ValidationError.css +1 -0
  50. package/dist/_commonjsHelpers-CT_km90n.js +30 -0
  51. package/dist/_isArray-CBUZFxFA.js +6 -0
  52. package/dist/_isString-BUpNGP_8.js +6 -0
  53. package/dist/_reduce-DsUCMz4O.js +148 -0
  54. package/dist/assets/icons/icons.js +62 -0
  55. package/dist/assets/images/500_error_2x.gif +0 -0
  56. package/dist/assets/images/oms.png +0 -0
  57. package/dist/components/Accordion/Accordion.js +57 -0
  58. package/dist/components/ActionButton/ActionButton.js +54 -0
  59. package/dist/components/AlertCard/AlertCard.js +29 -0
  60. package/dist/components/AuthUserCan/Permission.js +18 -0
  61. package/dist/components/AuthUserCan/index.js +23 -0
  62. package/dist/components/Autocomplete/Autocomplete.js +87 -0
  63. package/dist/components/Button/Button.js +87 -0
  64. package/dist/components/Card/Card.js +21 -0
  65. package/dist/components/Charts/Bar.js +18 -0
  66. package/dist/components/Charts/Legends.js +21 -0
  67. package/dist/components/Charts/Line.js +18 -0
  68. package/dist/components/Charts/Pie.js +43 -0
  69. package/dist/components/Charts/index.js +31 -0
  70. package/dist/components/Charts/types.js +1 -0
  71. package/dist/components/Charts/utils.js +12 -0
  72. package/dist/components/Checkbox/Checkbox.js +119 -0
  73. package/dist/components/Config/Config.js +32 -0
  74. package/dist/components/Confirm/Confirm.js +52 -0
  75. package/dist/components/ContentHeader/ContentHeader.js +75 -0
  76. package/dist/components/ContentLoader/ContentLoader.js +16 -0
  77. package/dist/components/Countdown/Countdown.js +20 -0
  78. package/dist/components/Datepicker/Datepicker.js +1478 -0
  79. package/dist/components/Divider/Divider.js +26 -0
  80. package/dist/components/Dropdown/DropdownList.js +90 -0
  81. package/dist/components/ErrorLogModal/ErrorLogModal.js +63 -0
  82. package/dist/components/FileUpload/FileUpload.js +237 -0
  83. package/dist/components/FileUpload/ImagePreview.js +19 -0
  84. package/dist/components/FileUpload/LengthCard.js +6 -0
  85. package/dist/components/FileUpload/PreviewModal.js +53 -0
  86. package/dist/components/Grid/Column.js +29 -0
  87. package/dist/components/Grid/Row.js +6 -0
  88. package/dist/components/Heading/Heading.js +22 -0
  89. package/dist/components/Icon/index.js +24 -0
  90. package/dist/components/InfiniteScroll/InfiniteScroll.js +41 -0
  91. package/dist/components/InfoBoxList/InfoBoxList.js +30 -0
  92. package/dist/components/InfoBoxList/helper.js +83 -0
  93. package/dist/components/InfoDate/InfoDate.js +19 -0
  94. package/dist/components/InfoText/InfoText.js +13 -0
  95. package/dist/components/Input/Input.js +140 -0
  96. package/dist/components/Label/Label.js +22 -0
  97. package/dist/components/Loading/Loading.js +62 -0
  98. package/dist/components/Modal/Modal.js +57 -0
  99. package/dist/components/NavigatorCard/index.js +59 -0
  100. package/dist/components/NoResult/NoResult.js +12 -0
  101. package/dist/components/Notification/Notification.js +26 -0
  102. package/dist/components/PageWrapper/PageWrap.js +46 -0
  103. package/dist/components/Pager/Pager.js +103 -0
  104. package/dist/components/Panel/Panel.js +69 -0
  105. package/dist/components/PermaLink/PermaLink.js +34 -0
  106. package/dist/components/Radio/Radio.js +96 -0
  107. package/dist/components/ResultError/ResultError.js +20 -0
  108. package/dist/components/ScrollContainer/ScrollContainer.js +21 -0
  109. package/dist/components/Select/NoData.js +10 -0
  110. package/dist/components/Select/OptionItem.js +19 -0
  111. package/dist/components/Select/Select.js +13 -0
  112. package/dist/components/Sidebar/MenuItem.js +9 -0
  113. package/dist/components/Sidebar/index.js +137 -0
  114. package/dist/components/StatusTypography/StatusTypography.js +51 -0
  115. package/dist/components/Stepper/Stepper.js +72 -0
  116. package/dist/components/Switch/Switch.js +79 -0
  117. package/dist/components/Tab/Tab.js +28 -0
  118. package/dist/components/Table/Table.js +201 -0
  119. package/dist/components/Table/TableHeader.js +14 -0
  120. package/dist/components/Textarea/Textarea.js +95 -0
  121. package/dist/components/Tooltip/Tooltip.js +1548 -0
  122. package/dist/components/TypographyText/TypographyText.js +87 -0
  123. package/dist/components/ValidationError/ValidationError.js +7 -0
  124. package/dist/components/index.js +125 -0
  125. package/dist/defineProperty-DeKy1XT0.js +37 -0
  126. package/dist/enums/appearance.js +14 -0
  127. package/dist/enums/applicationTypeSlug.js +4 -0
  128. package/dist/enums/index.js +27 -0
  129. package/dist/enums/isActiveColor.js +4 -0
  130. package/dist/enums/size.js +4 -0
  131. package/dist/enums/status.js +9 -0
  132. package/dist/equals-PL9KqVQf.js +119 -0
  133. package/dist/flatpickr-CRz1AV0e.js +59 -0
  134. package/dist/hooks/index.js +9 -0
  135. package/dist/hooks/useAauth.js +40 -0
  136. package/dist/hooks/useDisclosure.js +14 -0
  137. package/dist/hooks/useNiceModal.js +13 -0
  138. package/dist/i18nInstance-CiCZbaCK.js +55 -0
  139. package/dist/includes-8YTFrx85.js +46 -0
  140. package/dist/index-BHf7G3IG.js +35 -0
  141. package/dist/index-BJU1K2Aw.js +8003 -0
  142. package/dist/index-C9yacAGx.js +359 -0
  143. package/dist/index-CB61CB0b.js +669 -0
  144. package/dist/index-H7XbDVmH.js +320 -0
  145. package/dist/index-a0GSBrWt.js +364 -0
  146. package/dist/index.css +1 -0
  147. package/dist/index.d.ts +2 -0
  148. package/dist/index.js +181 -0
  149. package/dist/jsx-runtime-BcAkpsdy.js +631 -0
  150. package/dist/keys-B0bo5Q7o.js +67 -0
  151. package/dist/locales/en/index.js +613 -0
  152. package/dist/locales/i18n.js +1417 -0
  153. package/dist/locales/index.js +5 -0
  154. package/dist/locales/tr/index.js +613 -0
  155. package/dist/prodivers.css +6 -0
  156. package/dist/prodivers.js +12 -0
  157. package/dist/react-content-loader.es-CswLCxkm.js +90 -0
  158. package/dist/react-toastify.esm-BUWNP7Nm.js +808 -0
  159. package/dist/types/common/date.js +1 -0
  160. package/dist/types/common/events.js +1 -0
  161. package/dist/types/common/forms.js +1 -0
  162. package/dist/types/common/option.js +1 -0
  163. package/dist/types/index.js +1 -0
  164. package/dist/useTranslation-CnCPcxVj.js +142 -0
  165. package/dist/utils/date.js +413 -0
  166. package/dist/utils/flatpickr.js +4 -0
  167. package/dist/utils/helper.js +1463 -0
  168. package/dist/utils/index.js +21 -0
  169. package/dist/utils/language.js +46 -0
  170. package/dist/utils/validation.js +27 -0
  171. package/dist/utils/yup.js +2921 -0
  172. package/package.json +8 -2
  173. package/dist/index.cjs.js +0 -295
  174. package/dist/index.cjs.js.map +0 -1
  175. package/dist/index.es.js +0 -25008
  176. package/dist/index.es.js.map +0 -1
  177. package/dist/index.umd.js +0 -295
  178. package/dist/index.umd.js.map +0 -1
  179. package/dist/style.css +0 -1
@@ -0,0 +1,613 @@
1
+ const e = "REGISTER", t = "LOGIN", o = "Reset Your Password", s = "SEND REQUEST", n = "Back to Login", a = "APPLY", i = "EDIT", c = "SAVE", r = "NEW CERTIFICATE", l = "show certificate", _ = "NEW DOMAIN", d = "NEW EMAIL VERIFICATION", p = "BUILD", m = "DEPLOY", u = "Real Time Logs", h = "NEW APPLICATION", g = "GO TO DASHBOARD", y = "ADD NEW APP", v = "CHOOSE PLAN", f = "ACCEPT & COMPLETE", b = "NEW SERVICE", w = "DEVELOPER PORTAL", E = "NEW PROJECT", A = "INSTALL", S = "INSTALLED", P = "NEW ROLE", j = "NEW USER", D = "cancel", C = "YES, PROCEED", I = "EMAIL DOWNLOAD LINK", N = "VIEW REAL TIME LOGS", $ = "Add All", T = "Remove All", R = "SAVE SETTINGS", k = "SAVE CHANGES", x = "Add All {{name}} Permissions", L = "Remove All {{name}} Permissions", O = "NEW PUBLIC KEY", Y = "YES, DELETE CERTIFICATE", z = "DEPLOY SELECTED PROJECTS", V = "CONFIGURE APPLICATION VALUES", U = "SAVE AND CONTINUE", M = "SAVE & CONTINUE", F = "Drop Files here or click to upload", q = "VIEW PROJECT", H = "CREATE REPORT", W = "COMPLETED", B = "CREATED", G = "RETRY", K = "IN PROGRESS", J = "PENDING", Q = "ATTACH CERTIFICATE", X = "DOMAIN RECORDS", Z = "CREATE DEMO", ee = "START DEMO", te = "Change Period", oe = "off", se = "VIEW ENVIRONMENT VARIABLES", ne = "+ NEW ENVIRONMENT VARIABLE", ae = {
2
+ register: e,
3
+ login: t,
4
+ reset_your_password: o,
5
+ send_request: s,
6
+ back_to_login: n,
7
+ apply: a,
8
+ edit: i,
9
+ save: c,
10
+ add_new_certificate: r,
11
+ show_certificate: l,
12
+ add_new_domain: _,
13
+ add_new_email_identities: d,
14
+ build: p,
15
+ deploy: m,
16
+ real_time: u,
17
+ add_new_application: h,
18
+ back_home: g,
19
+ add_new_app: y,
20
+ choose_plan: v,
21
+ accept_complate: f,
22
+ add_new_service: b,
23
+ developer_portal: w,
24
+ add_new_project: E,
25
+ install: A,
26
+ installed: S,
27
+ add_new_role: P,
28
+ add_new_user: j,
29
+ cancel: D,
30
+ yes_proceed: C,
31
+ email_download_link: I,
32
+ view_realt_time_logs: N,
33
+ add_all: $,
34
+ remove_all: T,
35
+ save_settings: R,
36
+ save_changes: k,
37
+ add_all_permissions: x,
38
+ remove_all_permissions: L,
39
+ new_public_key: O,
40
+ yes_delete_certificate: Y,
41
+ deploy_selected_projects: z,
42
+ select_application_value: V,
43
+ save_and_continue: U,
44
+ save_and_continue2: M,
45
+ drop_files_here: F,
46
+ view_project: q,
47
+ create_report: H,
48
+ completed: W,
49
+ created: B,
50
+ retry: G,
51
+ in_progress: K,
52
+ pending: J,
53
+ attach_certificate: Q,
54
+ domain_records: X,
55
+ create_demo: Z,
56
+ start_demo: ee,
57
+ change_period: te,
58
+ off: oe,
59
+ "1m": "1m",
60
+ "2m": "2m",
61
+ "5m": "5m",
62
+ "1h": "1h",
63
+ "3h": "3h",
64
+ "6h": "6h",
65
+ "12h": "12h",
66
+ "1d": "1d",
67
+ view_env_vars: se,
68
+ add_environment_variable: ne
69
+ }, ie = "New Password", ce = "Reenter New Password", re = "Email Address", le = "Email", _e = "First Name", de = "Last Name", pe = "Password", me = "Images", ue = "Password Again", he = "Public Keys", ge = "Fully qualified domain name", ye = "Connected Service", ve = "Description", fe = "512*512px .png or .jpg", be = "670*440px png or jpg, Max 5", we = "Add Logo", Ee = "Add Image", Ae = "Add Product Images", Se = "Panel Language", Pe = "User", je = "Role", De = "Project", Ce = "Project Apps", Ie = "Domain", Ne = "Home", $e = "Create", Te = "Add", Re = "Hostname", ke = "Identity Domain", xe = "Managed by", Le = "Status", Oe = "Certificates", Ye = "Certificate", ze = "Fully Qualified Domain Name", Ve = "Certificate Info", Ue = "Date Created", Me = "Date Created", Fe = "Date Update", qe = "Request Date", He = "Date Updated", We = "Tag", Be = "Notes", Ge = "Name", Ke = "Log Type", Je = "Download", Qe = "Export as CSV", Xe = "Export as Excel", Ze = "Enter Name", et = "Enter Slug", tt = "Application Types", ot = "Application Type", st = "Application Access", nt = "Deploy", at = "Type", it = "Slug", ct = "URL", rt = "Add New Service", lt = "Service Name", _t = "Setup Status", dt = "App Name", pt = "Project Name", mt = "Project Slug", ut = "Installed in", ht = "Version", gt = "Role Name", yt = "Role Description", vt = "Yes", ft = "No", bt = "No", wt = "Surname", Et = "Last Login", At = "Application Permission Groups", St = "Update", Pt = "Destroy", jt = "Retrieve", Dt = "Partial Update", Ct = "User Name", It = "Avatar", Nt = "Search", $t = "Select log type", Tt = "Select Project", Rt = "Select Application", kt = "Connect Service", xt = "Start Date", Lt = "End Date", Ot = "Label", Yt = "Is the stable version?", zt = "Show only installed", Vt = "Stable Version", Ut = "Date Last Checked", Mt = "Identity Status", Ft = "DKIM Status", qt = "MAIL FROM Status", Ht = "Value", Wt = "Purpose", Bt = "Custom MAIL FROM Subdomain", Gt = "Errors", Kt = "Product", Jt = "Installation", Qt = "TOTAL", Xt = "Reports", Zt = "Show only my applications", eo = "Quality Gate", to = "Email Domain Verification", oo = "Add as root domain", so = "Sentry URL", no = "S3 Bucket Name", ao = "Packages", io = "Demo Project Name", co = "Demo Project Slug", ro = "{{path}} minute", lo = "{{path}} minutes", _o = "{{path}} hour", po = "Percent", mo = "s", uo = "Count", ho = "Second", go = "Environment", yo = "Required", vo = "Edit", fo = "Monitoring", bo = {
70
+ new_password: ie,
71
+ reenter_new_password: ce,
72
+ email_address: re,
73
+ email: le,
74
+ first_name: _e,
75
+ last_name: de,
76
+ password: pe,
77
+ images: me,
78
+ password_again: ue,
79
+ public_keys: he,
80
+ add_new_certificate_modal_domain: ge,
81
+ connected_service: ye,
82
+ description: ve,
83
+ image_format_info: fe,
84
+ image_format_info_670: be,
85
+ add_logo: we,
86
+ add_image: Ee,
87
+ add_product_images: Ae,
88
+ panel_language: Se,
89
+ user: Pe,
90
+ roles: je,
91
+ projects: De,
92
+ project_apps: Ce,
93
+ domain: Ie,
94
+ home: Ne,
95
+ create: $e,
96
+ new: "New",
97
+ add: Te,
98
+ hostname: Re,
99
+ identity_domain: ke,
100
+ managed_by: xe,
101
+ status: Le,
102
+ certificates: Oe,
103
+ certificate: Ye,
104
+ fully_qualified_domain_name: ze,
105
+ certificate_info: Ve,
106
+ created_date: Ue,
107
+ date_created: Me,
108
+ date_update: Fe,
109
+ request_date: qe,
110
+ date_updated: He,
111
+ tag: We,
112
+ patch_notes: Be,
113
+ name: Ge,
114
+ log_type: Ke,
115
+ download: Je,
116
+ export_as_csv: Qe,
117
+ export_as_excell: Xe,
118
+ enter_name: Ze,
119
+ enter_slug: et,
120
+ application_types: tt,
121
+ application_type: ot,
122
+ application_access: st,
123
+ deploy: nt,
124
+ type: at,
125
+ slug: it,
126
+ url: ct,
127
+ add_new: rt,
128
+ service_name: lt,
129
+ setup_status: _t,
130
+ app_name: dt,
131
+ project_name: pt,
132
+ project_slug: mt,
133
+ installed_in: ut,
134
+ version: ht,
135
+ role_name: gt,
136
+ role_description: yt,
137
+ yes: vt,
138
+ no: ft,
139
+ number: bt,
140
+ surname: wt,
141
+ last_login: Et,
142
+ app_perm_groups: At,
143
+ update: St,
144
+ destroy: Pt,
145
+ retrieve: jt,
146
+ partial_update: Dt,
147
+ user_name: Ct,
148
+ avatar: It,
149
+ search: Nt,
150
+ select_log_type: $t,
151
+ select_project: Tt,
152
+ select_application: Rt,
153
+ connect_service: kt,
154
+ start_date: xt,
155
+ end_date: Lt,
156
+ label: Ot,
157
+ is_stable: Yt,
158
+ show_installed: zt,
159
+ stable_version: Vt,
160
+ last_checked: Ut,
161
+ identity_status: Mt,
162
+ dkim_status: Ft,
163
+ mail_from_status: qt,
164
+ value: Ht,
165
+ purpose: Wt,
166
+ mail_from_subdomain: Bt,
167
+ errors: Gt,
168
+ product: Kt,
169
+ installation: Jt,
170
+ total: Qt,
171
+ reports: Xt,
172
+ show_my_applications: Zt,
173
+ quality_gate: eo,
174
+ email_domain_verification: to,
175
+ add_root_domain: oo,
176
+ sentry_url: so,
177
+ s3_bucket_name: no,
178
+ package: "Package",
179
+ packages: ao,
180
+ demo_project_name: io,
181
+ demo_project_slug: co,
182
+ minute: ro,
183
+ minutes: lo,
184
+ hour: _o,
185
+ percent: po,
186
+ s: mo,
187
+ count: uo,
188
+ second: ho,
189
+ environment: go,
190
+ required: yo,
191
+ edit: vo,
192
+ delete: "Delete",
193
+ monitoring: fo
194
+ }, wo = "Email address", Eo = "Selected log type", Ao = "Developer", So = "Application Provider", Po = "Category", jo = "Search", Do = "Please choose", Co = "Name Your Application", Io = "Slug", No = "Select Application Type", $o = "Application Name", To = "Project Name", Ro = "Enter Project Name", ko = "Search Project", xo = "Select Action", Lo = "User Name", Oo = "Version", Yo = "Name", zo = "Slug", Vo = "Log Search", Uo = {
195
+ email_address: wo,
196
+ selected_log_type: Eo,
197
+ developer: Ao,
198
+ application_provider: So,
199
+ category: Po,
200
+ search: jo,
201
+ choose: Do,
202
+ enter_name_placeholder: Co,
203
+ enter_slug_placeholder: Io,
204
+ application_types_placeholder: No,
205
+ application_name: $o,
206
+ project_name: To,
207
+ project_name_placeholder: Ro,
208
+ search_project: ko,
209
+ select_action: xo,
210
+ user_name: Lo,
211
+ version: Oo,
212
+ name: Yo,
213
+ slug: zo,
214
+ log_search: Vo
215
+ }, Mo = "Success", Fo = "Pending Validation", qo = "Expired", Ho = "Failed", Wo = "Inactive", Bo = "Revoked", Go = "Validation Timed Out", Ko = {
216
+ SUCCESS: Mo,
217
+ PENDING_VALIDATION: Fo,
218
+ EXPIRED: qo,
219
+ FAILED: Ho,
220
+ INACTIVE: Wo,
221
+ REVOKED: Bo,
222
+ VALIDATION_TIMED_OUT: Go
223
+ }, Jo = "Enter your email address and we’ll send you a link to reset your password", Qo = "<p>We've sent password reset instructions.</p><p>If it doesn’t arrive soon, check your spam folder or <a>resend the email.</a></p>", Xo = "You can see all total cost of servers, utilities, and products billing in the system on this page.", Zo = "You can see the integrated public keys on this page.", es = "You can integrated public keys create in the system on this page.", ts = "For security reasons, the contents of a previously-added SSH key cannot be modified.", os = "You can access the documentation for all actions available on the platform and ask for support on this page.", ss = "You can get in touch with us in case you have a technical question. We will be more than happy to assist you.", ns = "Document Links", as = "Here you can access the documentation for all available actions.", is = "Akinon Partner Support Portal", cs = "You can raise a request for Akinon Partner Support using the options provided.", rs = "You can manage all your panel language settings from this page.", ls = "You can edit the Commerce Cloud panel language property from this interface.", _s = "No Result(s) Found", ds = "<bold>{{name}}</bold> successfully added", ps = "<bold>{{name}}</bold> successfully saved", ms = "<bold>{{name}}</bold> successfully removed", us = "<bold>{{name}}</bold> successfully edited", hs = "Saved as stable version", gs = "Here you can add a new domain. You will see the domain you added in the Domains list.", ys = "You can add a hostname and control all the domains in the system on this page.", vs = "Please select a domain name from the <0>{{name}}</0> to add a certificate.", fs = "In order to attach the certificate to a project, after your certificate is approved, you can proceed to this step by clicking the Attach Certificate button for the relevant certificate.", bs = "You can see all domain details in the system on this page.", ws = "You can add and see certificates on domain in the system on this page.", Es = "You can see all the domains in the system and add new domain on this page.", As = "You can see and edit all the Email Domain Verification in the system on this page.", Ss = "Once you create the necessary DNS records and they're verified, you'll be able to send emails from any address under that domain. Statuses indicate whether a certain claim is verified by our systems through the DNS records.", Ps = "This process usually takes less than 20 minutes, but we'll keep trying for 72 hours. After that you'll have to start over and create a new record.", js = "You can compile the applications labeled in the system from this page, enter the explanatory note of the application content and determine it as a stable version.", Ds = "Fields marked * are mandatory", Cs = "Your deployment process has been started.", Is = "You can deploy the application’s given tag in the system on this page.", Ns = "{{dataname}} not found.", $s = "Please select log.", Ts = "You can create new applications on this page.", Rs = "You can create all the applications and services on every stage of Akinon products in the system on this page. Additionally, you can upload, migrate, run, and integrate all outsource software products.", ks = "*All fields mandatory", xs = "This field is mandatory", Ls = "You can see details of the application on all the projects in the system on this page. Additionally, you can deploy and build. To see the application, please visit the URL.", Os = "You can see and edit all the applications in the system on this page.", Ys = "You can view applications and select the one(s) you wish to add to your project in this step.", zs = "You can see Trial plan details of the installation packages limited for 30 days below.", Vs = "You can see On Demand plan details of the installation packages below.", Us = "You can see Business plan details of the installation packages below.", Ms = "You can see Enterprise plan details of the installation packages below.", Fs = "The application has been successfully installed.", qs = "Select the service this application will work with.", Hs = "Deploy Needed", Ws = "Initializing Setup", Bs = "Initializing Setup", Gs = "Setup Initialization Failed", Ks = "Deploying", Js = "Deploy Failed", Qs = "Deployed", Xs = "*This process may take 10 minutes.", Zs = "Your project is created successfully and Omnitron Service has been initialized to setup within your project. After Omnitron Service's deployment process is completed, you will receive an email about your Omnitron Service credentials. For the next steps, please check our Project and My Applications pages through the following links;", en = "For more information on how to use the application, please visit our Developer Portal. <br> Our support team is ready to guide you through any issues you encounter along the way", tn = "Check project page", on = "Suspendisse suscipit suscipit lectus ut lacinia. Maecenas maximus urna nec pharetra sodales. Duis lacus eros, vehicula non gravida ac, tincidunt id risus. Sed tristique convallis egestas. Curabitur sit amet lorem tempus, ullamcorper nulla eu, malesuada diam. Duis auctor euismod elit, sed sodales est mollis sit amet. Curabitur sed mi non augue volutpat tincidunt. Sed tortor magna, accumsan sed vulputate sed, efficitur vitae justo. Integer vehicula ligula libero, et gravida ex suscipit vel. Nam cursus purus nunc.", sn = "You can create the projects in the system in the following steps.", nn = "You can see and edit all the projects in the system on this page.", an = "You must install {{name}} first.", cn = "You can add new roles for role-based authorizations on this page.", rn = "You can edit role-based authorizations from this page.", ln = "You can view and manage all defined roles on this page.", _n = "You can create new users, or edit and see the users on this page.", dn = "You can create new user given role and permission group in the system on this page.", pn = "Here, you can update the information and permissions of the user in the system", mn = "Here, you can edit the information of the user in the system.", un = "You can see and edit all the roles in the system on this page.", hn = "Result(s) Listed", gn = "Pieces", yn = "You are not authorized to use this page. Please contact your manager for further information.", vn = "Sorry, no related results", fn = "Log Out", bn = "Active Filters", wn = "There are no filters yet.", En = "Please install a Commerce service.", An = "Your email or password is not correct.", Sn = "An unexpected error has occurred.", Pn = "404 Not Found.", jn = "Active", Dn = "Passive", Cn = "NEVER", In = "Domains list", Nn = "Export as Excel", $n = "EXPORT AS ZONE FILE", Tn = "Show {{title}}", Rn = "You can manage all information about your profile from this page.", kn = "You can edit your user information on this page.", xn = "You can edit your Omnitron panel password from this interface.", Ln = "+ Add Avatar", On = "You can create new user given role and permission group in the system on this page", Yn = "Are you sure you want to deactivate this user?", zn = "Passive users cannot be edited!", Vn = "Click the button to view real time log records.", Un = "The log file of the date you selected will be sent to your email address.", Mn = "It has been sent to your email address.", Fn = "You can track all logs from this page.", qn = "There is no authorization selected yet. Please select authorization.", Hn = "There is no more power to choose from.", Wn = "Customize service name and slug to this project", Bn = "Coming soon", Gn = "Are you sure you want to delete the public key?", Kn = "Are you sure you want to delete the {{name}}?", Jn = "Are you sure you want to add the {{name}}?", Qn = "Email domains are used to verify ownership of a domain that will be used to send emails. If not verified, emails are likely to end up as spam.", Xn = "DKIM (DomainKeys Identified Mail) is a protocol to cryptographically sign and verify emails. It is used to verify that emails are actually sent by the domain they claim to be sent from.", Zn = "MAIL FROM is part of the SMTP protocol. It is used to receive bounce messages and other errors occurred from the recipient mail server. It is also used to comply with DMARC authentication.", ea = "All these verifications help improve the trustability of an email originating from a domain.", ta = "A verified identiy is a domain, subdomain, or email address with which you can send emails via Amazon SES.", oa = "If you specify a custom MAIL FROM Subdomain, messages sent through Amazon SES will be marked as originating from your domain instead of a subdomain of amazon.com.", sa = "Verified", na = "Unverified", aa = "Email services are fulfilled by Amazon SES.", ia = "Copy operation was successful.", ca = "No connected services found.", ra = "Please <u> connect a service </u> first.", la = "Please install a Commerce service within the project if there is none.", _a = "No Result(s) Found for <span>{{search_str}}<span>", da = "Priority", pa = "Search Result(s) for <span>{{search_str}} {{count}}</span>", ma = "User Name", ua = "File successfully downloaded", ha = "Select the project and the service with which the application will work.", ga = "Fill in the application values below", ya = "You can select the project and service information within which the application will be installed in this step.", va = "You can configure the application’s value information in this step.", fa = "You can install it to complete the installation. This process may take a few minutes.", ba = "Your application is being installed. This process may take a few minutes", wa = "Project must be selected", Ea = "You will be directed to application values", Aa = "You must contact the application owner", Sa = "Do you want to make your application public? In this case, your app will be visible to everyone in the App Store.", Pa = "Do you want to make your application private? In this case, your app will not be published on the App Store.", ja = "*It’s mandatory to select the stable version. If the stable version is selected, this will be first version to deploy when installed in projects.", Da = "Same image cannot be uploaded more than once.", Ca = 'You can attach the certificate you have chosen to a project and application if the certificate status is "Success". Please perform the certificate attachment process when transitioning to the live environment.', Ia = "Here you can see the domain and certificate details.", Na = "Here you can attach the certificate to a project and project application.", $a = "Certificate Name", Ta = "You will see the domain records after the certificate attachment.", Ra = "Are you sure you want to attach {{certificate_name}} to the project {{project_name}} and the project application {{project_app_name}}?", ka = "After the application version is released, please enter the domain records in the platform where you manage the domain. Once the domain records are entered, application traffic will be redirected to Akinon Commerce Cloud servers. Do not do this until you have completed all your checks and tests.", xa = "The SLO (service level objective) and other metrics displayed on this dashboard are for informational purposes only.", La = "Here you can create a demo project with selected ready-to-use applications.", Oa = "Please provide a project name and slug, and select a package containing the desired applications for your demo project.", Ya = "Please select a pod from the list below to monitor container based pod usages.", za = "No Result(s) Found", Va = "Period Settings", Ua = "Here, you can choose the display intervals for the data shown on the usage graphs.", Ma = "Please select a project.", Fa = "You have to add {{params}} permission(s) first.", qa = "The environment variable '{{params}}' will be deleted. Are you sure you want to proceed with this operation?", Ha = "Here, you can add a new environment variable.", Wa = "Here, you can edit an existing environment variable.", Ba = "To reflect the newly added or edited environment variables, you need to redeploy the application version.", Ga = "Here, you can see and manage the permissions that can be restricted on an object-based level in the role assigned to the user.", Ka = "You do not have permission for this action.", Ja = "Please enter the security code sent to <bold>{{email}}</bold> to log in.", Qa = {
224
+ 404: "We can’t find the page you’re lookinfg for. Perhaps you may try projects or products.",
225
+ reset_password_description: Jo,
226
+ reset_passwrod_result_content: Qo,
227
+ billing_description: Xo,
228
+ public_keys_description: Zo,
229
+ public_keys_create_desc: es,
230
+ public_keys_create_panel_desc: ts,
231
+ support_description: os,
232
+ support_box_description: ss,
233
+ support_documents: ns,
234
+ support_documents_description: as,
235
+ support_chat: is,
236
+ support_chat_description: cs,
237
+ language_settings_description: rs,
238
+ language_settings_panel_description: ls,
239
+ no_result: _s,
240
+ succesfully_added: ds,
241
+ succesfully_saved: ps,
242
+ succesfully_removed: ms,
243
+ succesfully_edited: us,
244
+ stable_succesfully_saved: hs,
245
+ create_new_domain_description: gs,
246
+ create_new_domain_box_description: ys,
247
+ domain_detail_alert_box_description: vs,
248
+ attachmend_alert_box_description: fs,
249
+ domain_detail_description: bs,
250
+ domain_detail_box_description: ws,
251
+ domain_list_description: Es,
252
+ email_identities_list_description: As,
253
+ email_identities_detail_desc_one: Ss,
254
+ email_identities_detail_desc_two: Ps,
255
+ build_modal_description: js,
256
+ build_modal_form_info: Ds,
257
+ deployment_started: Cs,
258
+ deploy_modal_description: Is,
259
+ not_found: Ns,
260
+ please_select_log: $s,
261
+ create_new_application_description: Ts,
262
+ create_new_application_sub_description: Rs,
263
+ all_fields_mandatory: ks,
264
+ this_field_mandatory: xs,
265
+ application_detail_desc: Ls,
266
+ my_applications_desc: Os,
267
+ app_store_desc: Ys,
268
+ trial_description: zs,
269
+ on_demand_description: Vs,
270
+ business_description: Us,
271
+ enterprise_description: Ms,
272
+ install_app_success_message: Fs,
273
+ connect_modal_description: qs,
274
+ first_deploy: Hs,
275
+ initializing_infastructure: Ws,
276
+ addons_initializing: Bs,
277
+ addons_initialization_failed: Gs,
278
+ deploying: Ks,
279
+ deploy_failed: Js,
280
+ deployed: Qs,
281
+ creating_message: Xs,
282
+ what_next_text_one: Zs,
283
+ what_next_text_two: en,
284
+ check_project_page: tn,
285
+ app_or_service_detail_info: on,
286
+ create_project_desc: sn,
287
+ projects_list_desc: nn,
288
+ installed_message: an,
289
+ create_role_description: cn,
290
+ edit_role_description: rn,
291
+ roles_description: ln,
292
+ create_user_description: _n,
293
+ create_user_box_description: dn,
294
+ edit_user_description: pn,
295
+ edit_user_box_description: mn,
296
+ user_detail_description: un,
297
+ results_listing: hn,
298
+ pieces: gn,
299
+ perm_result: yn,
300
+ sorry_no_suggestions: vn,
301
+ logout: fn,
302
+ active_filters: bn,
303
+ no_selected_filters: wn,
304
+ install_commerce_warning: En,
305
+ login_error: An,
306
+ error_500: Sn,
307
+ error_404: Pn,
308
+ active: jn,
309
+ passive: Dn,
310
+ never: Cn,
311
+ domains_list: In,
312
+ excel_export: Nn,
313
+ zone_export: $n,
314
+ show: Tn,
315
+ profile_description: Rn,
316
+ edit_user_panel_description: kn,
317
+ change_password_panel_description: xn,
318
+ avatar: Ln,
319
+ create_user_panel_description: On,
320
+ user_deactive_confirm: Yn,
321
+ inactive_users_cannot_edited: zn,
322
+ real_time_desc: Vn,
323
+ log_desc: Un,
324
+ log_success_message: Mn,
325
+ logs_description: Fn,
326
+ not_found_selected_roles: qn,
327
+ not_found_roles: Hn,
328
+ customize_service_desc: Wn,
329
+ coming_soon: Bn,
330
+ delete_public_key: Gn,
331
+ delete_confirm_message: Kn,
332
+ add_service_confirm: Jn,
333
+ email_domains: Qn,
334
+ dkim_desc: Xn,
335
+ mail_from_domain_desc: Zn,
336
+ amazon_ses: ea,
337
+ create_mail_identity_desc: ta,
338
+ create_mail_identity_panel_desc: oa,
339
+ verified: sa,
340
+ unverified: na,
341
+ amazon_ses_short_text: aa,
342
+ copied: ia,
343
+ no_connected_service: ca,
344
+ please_connect_service: ra,
345
+ please_install_commerce: la,
346
+ no_results_found: _a,
347
+ priority: da,
348
+ search_result: pa,
349
+ user_name: ma,
350
+ download_successful: ua,
351
+ select_project_and_service: ha,
352
+ fill_application_values: ga,
353
+ setup_information_desc: ya,
354
+ configure_environment_desc: va,
355
+ finalize_installation_desc: fa,
356
+ being_installed: ba,
357
+ project_must_selected: wa,
358
+ redirect_application_values: Ea,
359
+ contact_the_application_owner: Aa,
360
+ public_application_desc: Sa,
361
+ private_application_desc: Pa,
362
+ stable_version_desc: ja,
363
+ duplicate_image_error: Da,
364
+ certificate_info: Ca,
365
+ certificate_desc: Ia,
366
+ attachment_desc: Na,
367
+ certificate_name: $a,
368
+ attach_certificate_info: Ta,
369
+ attach_certificate_modal_desc: Ra,
370
+ domain_records_info: ka,
371
+ monitoring_desc: xa,
372
+ create_demo_desc: La,
373
+ new_demo_desc: Oa,
374
+ select_pod: Ya,
375
+ no_results: za,
376
+ period_settings: Va,
377
+ period_modal_desc: Ua,
378
+ please_select_project: Ma,
379
+ add_depended_perms: Fa,
380
+ delete_environment_variable: qa,
381
+ add_env_value_description: Ha,
382
+ edit_env_value_description: Wa,
383
+ env_values_info: Ba,
384
+ object_based_authorization_desc: Ga,
385
+ no_permission: Ka,
386
+ verify_desc: Ja
387
+ }, Xa = "Register", Za = "Login", ei = "Verify", ti = "Change", oi = "Check Your Email", si = "Change Your Password", ni = "Reset Your Password", ai = "Billing", ii = "Public Keys", ci = "Public Key", ri = "New Public Key", li = "Support Center", _i = "Support", di = "Language Settings", pi = "Edit Language Settings", mi = "Domains", ui = "Domain", hi = "Domain Details", gi = "Domain Details", yi = "Add New Domain", vi = "Add New Domain", fi = "My Applications", bi = "Applications", wi = "Application", Ei = "App Store", Ai = "Application Catalog", Si = "Application Build", Pi = "Application Deploy", ji = "Real Time Logs", Di = "Logs", Ci = "Daily Log", Ii = "Projects", Ni = "Home", $i = "Create", Ti = "Add", Ri = "Edit", ki = "Create New Application", xi = "Edit Application", Li = "Versions", Oi = "Installed Projects", Yi = "Application Detail", zi = "Install New Application", Vi = "month", Ui = "Fix Fee Voucher", Mi = "B2C Rate", Fi = "MP, B2B, Instore, External Channels", qi = "Hosting (Account Maintenance, Monitoring & Support)", Hi = "Choose a Plan", Wi = "SHARED CPU", Bi = "DEDICATED CPU", Gi = "Trial", Ki = "On Demand", Ji = "Business", Qi = "Enterprise", Xi = "Details", Zi = "Connect Service to This Application", ec = "Services", tc = "Welcome to Akinon Commerce Cloud!", oc = "Service Detail", sc = "Description", nc = "Project Information", ac = "Select App", ic = `Select Project
388
+ & Service`, cc = "Environment", rc = "Install", lc = "License", _c = "Create a Project", dc = "Roles", pc = "Role", mc = "Create Role", uc = "Add Authority Group", hc = "Edit Role", gc = "Users", yc = "User", vc = "Create User", fc = "Users Detail", bc = "Filters", wc = "Permissions", Ec = "Accounts", Ac = "Addon Types", Sc = "Addons", Pc = "Applications", jc = "Related App", Dc = "Versions", Cc = "Projects", Ic = "Project Apps", Nc = "Public Applications", $c = "Public Services", Tc = "Certificate", Rc = "Certificate Attachment", kc = "Confirm Certificate", xc = "Deploy", Lc = "Related Project App", Oc = "Remote Group", Yc = "Remote Group User", zc = "Remote Group Application", Vc = "Email", Uc = "Project App Email", Mc = "Settings", Fc = "Profile", qc = "Edit User", Hc = "Warning!", Wc = "Application Log", Bc = "Select Authorizations to Add", Gc = "Added Authorizations", Kc = "Customize Service", Jc = "Delete Public Key", Qc = "STABLE*", Xc = "Sephora", Zc = "Email Identities", er = "Email Identity", tr = "Email Domain Verification Detail", or = "Create Email Domain Verification", sr = "Email Domain Verification", nr = "DNS Record", ar = "Failed Tasks Log Begin", ir = "No Authorization", cr = "Deployment History", rr = "Overview", lr = "Technical Specifications", _r = "Reports", dr = "Quality Report", pr = "Release Notes", mr = `Application
389
+ Values`, ur = "Setup Information", hr = "Configure Application Values", gr = "Finalize Installation", yr = "Application Name", vr = "Project Name", fr = "Connecting Service", br = "Total Pricing", wr = "Application Type", Er = "Slug", Ar = "Patch Notes", Sr = "Edit Images", Pr = "Preview", jr = "Certificate Records", Dr = "Domain Records", Cr = "Public Application", Ir = "Private Application", Nr = "Configure Seller Center Application Values", $r = "Monitoring", Tr = "Application Pod Counts", Rr = "Pod", kr = "Pods", xr = "CPU", Lr = "Memory", Or = "Pod Status", Yr = "CPU Usage", zr = "CPU Usage Rate", Vr = "Memory Usage", Ur = "Memory Usage Rate", Mr = "Refresh", Fr = "Project Application Detail", qr = "Create a Demo", Hr = "Create Demo", Wr = "New Demo", Br = "Period Settings", Gr = "Pod Sayısı", Kr = "Environment Variables", Jr = "{{params}} Environment Variable", Qr = "Environment Variable", Xr = "Environment Variables", Zr = " Delete Environment Variable", el = "{{params}} Environment Value", tl = "Environment Variables Details", ol = "Object-Based Authorization", sl = "Resend", nl = "Verification", al = {
390
+ register: Xa,
391
+ login: Za,
392
+ verify: ei,
393
+ change: ti,
394
+ reset_password_result: oi,
395
+ change_password: si,
396
+ forgot_password: ni,
397
+ billing: ai,
398
+ public_keys: ii,
399
+ public_key: ci,
400
+ new_public_key: ri,
401
+ support_center: li,
402
+ support: _i,
403
+ language_settings: di,
404
+ language_settings_subtitle: pi,
405
+ domains: mi,
406
+ domain: ui,
407
+ domain_detail: hi,
408
+ domain_modal_title: gi,
409
+ create_new_domain: yi,
410
+ create_new_domain_box: vi,
411
+ my_applications: fi,
412
+ applications: bi,
413
+ application: wi,
414
+ app_store: Ei,
415
+ app_catalog: Ai,
416
+ build_modal: Si,
417
+ deploy_modal: Pi,
418
+ real_time: ji,
419
+ logs: Di,
420
+ logs_table: Ci,
421
+ project_list: Ii,
422
+ home: Ni,
423
+ create: $i,
424
+ new: "New",
425
+ add: Ti,
426
+ edit: Ri,
427
+ create_new_application: ki,
428
+ edit_application: xi,
429
+ versions: Li,
430
+ installed_projects: Oi,
431
+ application_detail: Yi,
432
+ install_new_application: zi,
433
+ month: Vi,
434
+ fix_fee_voucher: Ui,
435
+ b2c_rate: Mi,
436
+ mp_b2b_channels: Fi,
437
+ hosting: qi,
438
+ choose_a_plan: Hi,
439
+ shared_cpu: Wi,
440
+ dedicated_cpu: Bi,
441
+ trial: Gi,
442
+ on_demand: Ki,
443
+ business: Ji,
444
+ enterprise: Qi,
445
+ plan_details: Xi,
446
+ connect_modal: Zi,
447
+ services: ec,
448
+ whats_next: tc,
449
+ service_detail: oc,
450
+ description: sc,
451
+ project_information: nc,
452
+ select_app: ac,
453
+ select_project_and_service: ic,
454
+ environment: cc,
455
+ install: rc,
456
+ license: lc,
457
+ create_project: _c,
458
+ roles: dc,
459
+ role: pc,
460
+ create_role: mc,
461
+ add_authority_group: uc,
462
+ edit_role: hc,
463
+ users: gc,
464
+ user: yc,
465
+ create_user: vc,
466
+ user_detail: fc,
467
+ filters: bc,
468
+ permissions: wc,
469
+ accounts: Ec,
470
+ addon_types: Ac,
471
+ addons: Sc,
472
+ apps: Pc,
473
+ related_app: jc,
474
+ app_versions: Dc,
475
+ projects: Cc,
476
+ project_apps: Ic,
477
+ public_apps: Nc,
478
+ public_services: $c,
479
+ certificate: Tc,
480
+ attachment: Rc,
481
+ confirm_certificate: kc,
482
+ project_app_deployments: xc,
483
+ related_project_app: Lc,
484
+ remote_group: Oc,
485
+ remote_group_user: Yc,
486
+ remote_group_application: zc,
487
+ EMAIL: Vc,
488
+ PROJECT_APP_EMAIL: Uc,
489
+ settings: Mc,
490
+ profile: Fc,
491
+ edit_user: qc,
492
+ warning: Hc,
493
+ application_log: Wc,
494
+ select_authorizations_add: Bc,
495
+ added_authorizations: Gc,
496
+ customize_service: Kc,
497
+ delete: "DELETE",
498
+ delete_public_key: Jc,
499
+ stable_version: Qc,
500
+ sephora: Xc,
501
+ email_identities: Zc,
502
+ email_identity: er,
503
+ email_identity_detail: tr,
504
+ create_email_identity: or,
505
+ email_domain_verification: sr,
506
+ view_dns_record: nr,
507
+ error_log: ar,
508
+ no_authorization: ir,
509
+ deployment_history: cr,
510
+ overview: rr,
511
+ technical_specifications: lr,
512
+ reports: _r,
513
+ quality_report: dr,
514
+ release_notes: pr,
515
+ application_values: mr,
516
+ setup_information: ur,
517
+ configure_environment: hr,
518
+ finalize_installation: gr,
519
+ application_name: yr,
520
+ project_name: vr,
521
+ connecting_service: fr,
522
+ total_pricing: br,
523
+ application_type: wr,
524
+ slug: Er,
525
+ patch_notes: Ar,
526
+ edit_images: Sr,
527
+ preview: Pr,
528
+ cercificate_records: jr,
529
+ domain_records: Dr,
530
+ public_application: Cr,
531
+ private_application: Ir,
532
+ configure_seller_center_environment: Nr,
533
+ monitoring: $r,
534
+ application_pod_count: Tr,
535
+ pod: Rr,
536
+ pods: kr,
537
+ CPU: xr,
538
+ memory: Lr,
539
+ pod_status: Or,
540
+ cpu_usage: Yr,
541
+ cpu_usage_rate: zr,
542
+ memory_usage: Vr,
543
+ memory_usage_rate: Ur,
544
+ refresh: Mr,
545
+ project_application_detail: Fr,
546
+ create_demo: qr,
547
+ create_demo_breadcrumb: Hr,
548
+ new_demo: Wr,
549
+ period_settings: Br,
550
+ pod_count: Gr,
551
+ environment_variables: Kr,
552
+ environment_variable_params: Jr,
553
+ environment_variable: Qr,
554
+ environment_variables_param: Xr,
555
+ delete_variable: Zr,
556
+ environment_value: el,
557
+ environment_variables_detail: tl,
558
+ object_based_authorization: ol,
559
+ resend: sl,
560
+ verification: nl
561
+ }, il = "Must Contain 9 Characters, One Uppercase, One Lowercase, One Number and One Special Character", cl = "Please upload image in jpeg or png format.", rl = "Logo size should be less than 1 Mb.", ll = "Please Enter Lower Case", _l = "${path} is invalid", dl = "${path} is invalid.", pl = "${path} is invalid.", ml = "${path} must not be one of the following values: ${values}", ul = "${path} must be exactly ${length} characters", hl = "${path} must be at least ${min} characters", gl = "${path} must be at most ${max} characters", yl = "${path} must be at least ${min} characters.", vl = "${path} must be at least ${min} characters.", fl = "${path} must match the following: ${regex}", bl = "${path} must be a valid email", wl = "${path} must be a valid URL", El = "${path} must be a valid UUID", Al = "${path} must be a valid JSON.", Sl = "${path} must be a trimmed string", Pl = "${path} must be a lowercase string", jl = "${path} must be a upper case string", Dl = "En az ${min} rakam", Cl = "${path} must be greater than or equal to ${min}", Il = "${path} must be less than or equal to ${max}", Nl = "${path} must be less than ${less}", $l = "${path} must be greater than ${more}", Tl = "${path} must be not equal to ${notEqual}", Rl = "${path} must be a positive number", kl = "${path} must be a negative number", xl = "${path} must be an integer", Ll = "${path} field must be later than ${min}", Ol = "${path} field must be at earlier than ${max}", Yl = "${path} field cannot have keys not specified in the object shape", zl = "${path} field must have at least ${min} items", Vl = "${path} field must have less than or equal to ${max} items", Ul = "${path} must be a valid JSON key", Ml = {
562
+ "500_error": "An unexpected error occurred.",
563
+ strong_password: il,
564
+ image_format_control: cl,
565
+ image_size_control: rl,
566
+ project_slug_regex_validation: ll,
567
+ default: "${path} is invalid",
568
+ notType: _l,
569
+ required: dl,
570
+ oneOf: pl,
571
+ notOneOf: ml,
572
+ length: ul,
573
+ min: hl,
574
+ max: gl,
575
+ string_min: yl,
576
+ string_max: vl,
577
+ matches: fl,
578
+ email: bl,
579
+ url: wl,
580
+ uuid: El,
581
+ json: Al,
582
+ trim: Sl,
583
+ lowercase: Pl,
584
+ uppercase: jl,
585
+ figure: Dl,
586
+ number_min: Cl,
587
+ number_max: Il,
588
+ lessThan: Nl,
589
+ moreThan: $l,
590
+ notEqual: Tl,
591
+ positive: Rl,
592
+ negative: kl,
593
+ integer: xl,
594
+ date_min: Ll,
595
+ date_max: Ol,
596
+ noUnknown: Yl,
597
+ array_min: zl,
598
+ array_max: Vl,
599
+ jsonKey: Ul
600
+ }, Fl = {
601
+ translation: {
602
+ title: al,
603
+ text: Qa,
604
+ label: bo,
605
+ placeholder: Uo,
606
+ button: ae,
607
+ validation: Ml,
608
+ status: Ko
609
+ }
610
+ };
611
+ export {
612
+ Fl as default
613
+ };