adata-ui 2.1.0 → 2.1.2

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 (307) hide show
  1. package/.editorconfig +12 -12
  2. package/.nuxtrc +1 -1
  3. package/.playground/app.config.ts +5 -5
  4. package/README.md +75 -75
  5. package/app.config.ts +4 -3
  6. package/app.vue +1 -0
  7. package/assets/styles/index.scss +104 -0
  8. package/assets/styles/modules/_base.scss +5 -0
  9. package/assets/styles/modules/_typography.scss +152 -0
  10. package/components/elements/README.md +1 -1
  11. package/components/elements/accordion/AAccordion.vue +13 -12
  12. package/components/elements/curve-block/ACurveBlock.vue +94 -19
  13. package/components/elements/feature-description/AFeatureDescription.vue +4 -4
  14. package/components/elements/illustrations/noAccess.vue +11 -2
  15. package/components/elements/photos-animation/APhotosAnimation.vue +3 -1
  16. package/components/elements/select/ASelect.vue +65 -9
  17. package/components/features/lang-switcher/lang-switcher.vue +8 -1
  18. package/components/features/payment/banner/BasicPlusLimitBanner.vue +104 -0
  19. package/components/features/payment/banner/PaymentBanner.vue +108 -0
  20. package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +158 -0
  21. package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +112 -0
  22. package/components/features/payment/process/PaymentMethodSidePanel.vue +121 -0
  23. package/components/features/payment/process/PaymentProcess.vue +138 -0
  24. package/components/features/payment/process/PaymentTopUpSidePanel.vue +130 -0
  25. package/components/features/pk-mobile-services/APkMobileServices.vue +21 -2
  26. package/components/forms/README.md +1 -1
  27. package/components/forms/checkbox/ACheckbox.vue +0 -2
  28. package/components/forms/radio-button/ARadioButton.vue +21 -13
  29. package/components/forms/request-demo/ARequestDemo.vue +21 -7
  30. package/components/modals/AConfirmationEmail.vue +40 -0
  31. package/components/modals/AnotherDeviceModal.vue +3 -2
  32. package/components/modals/ConnectingTariffModal.vue +0 -1
  33. package/components/modals/ContentNavigationModal.vue +148 -75
  34. package/components/modals/Insufficient-funds-modal.vue +5 -2
  35. package/components/modals/LimitReachedModal.vue +4 -3
  36. package/components/modals/ReportBugModal.vue +3 -3
  37. package/components/modals/Resend.vue +82 -0
  38. package/components/modals/SubmitApplicationModal.vue +4 -0
  39. package/components/modals/id/AuthModal.vue +78 -0
  40. package/components/modals/id/IdAutoLogoutModal.vue +45 -0
  41. package/components/modals/id/IdBanner.vue +58 -0
  42. package/components/modals/id/IdConfirmAccountOtpModal.vue +186 -0
  43. package/components/modals/id/IdConfirmSuccessfulModal.vue +41 -0
  44. package/components/modals/id/IdLoginModal.vue +316 -0
  45. package/components/modals/id/IdModals.vue +114 -0
  46. package/components/modals/id/IdNewPasswordModal.vue +129 -0
  47. package/components/modals/id/IdOtpInput.vue +155 -0
  48. package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -0
  49. package/components/modals/id/IdRecoveryModal.vue +117 -0
  50. package/components/modals/id/IdRegistrationModal.vue +215 -0
  51. package/components/modals/id/IdResetPasswordOtpModal.vue +158 -0
  52. package/components/modals/id/IdTwoFactorModal.vue +130 -0
  53. package/components/navigation/README.md +1 -1
  54. package/components/navigation/bottom-navigation/ABottomNavigation.vue +34 -29
  55. package/components/navigation/footer/AFooter.vue +210 -57
  56. package/components/navigation/footer/ui/{new-footer-accordion.vue → a-footer-accordion.vue} +2 -4
  57. package/components/navigation/header/AHeader.vue +59 -51
  58. package/components/navigation/header/AlmatyContacts.vue +16 -14
  59. package/components/navigation/header/AstanaContacts.vue +13 -11
  60. package/components/navigation/header/CardGallery.vue +5 -4
  61. package/components/navigation/header/HeaderLink.vue +16 -8
  62. package/components/navigation/header/NavList.vue +21 -5
  63. package/components/navigation/header/ProductMenu.vue +8 -78
  64. package/components/navigation/header/ProfileMenu.vue +10 -5
  65. package/components/navigation/header/TopHeader.vue +2 -2
  66. package/components/navigation/mobile-navigation/AMobileNavigation.vue +3 -3
  67. package/components/navigation/pill-tabs/APillTabs.vue +18 -4
  68. package/components/navigation/pill-tabs/types.ts +1 -0
  69. package/components/navigation/side-navigation/ASideNavigation.vue +23 -21
  70. package/components/overlays/README.md +1 -1
  71. package/components/overlays/side-panel/ASidePanel.vue +439 -0
  72. package/components/overlays/tooltip/ATooltip.vue +149 -154
  73. package/components/utils/removeTrailingSlash.ts +7 -0
  74. package/composables/useBuyTariffs.ts +91 -0
  75. package/composables/useHeaderNavigationLinks.ts +174 -297
  76. package/composables/useIdModals.ts +36 -0
  77. package/composables/usePayment.ts +74 -0
  78. package/composables/useUrls.ts +21 -0
  79. package/eslint.config.mjs +45 -0
  80. package/icons/adata-logo.vue +1 -1
  81. package/icons/ai-assistant.vue +13 -0
  82. package/icons/akimat.vue +20 -0
  83. package/icons/arrow/arrow-bottom-left-on-square.vue +1 -1
  84. package/icons/arrow/arrow-circle-reset.vue +1 -1
  85. package/icons/arrow/arrow-corner.vue +1 -1
  86. package/icons/arrow/arrow-graph-down.vue +1 -1
  87. package/icons/arrow/arrow-graph-up.vue +1 -1
  88. package/icons/arrow/arrow-square-down.vue +1 -1
  89. package/icons/arrow/arrow-top-right-on-square.vue +1 -1
  90. package/icons/arrow-currency-gray.vue +1 -1
  91. package/icons/arrow-currency-green.vue +1 -1
  92. package/icons/arrow-currency-red.vue +1 -1
  93. package/icons/avatar.vue +1 -1
  94. package/icons/bank.vue +5 -0
  95. package/icons/block.vue +1 -1
  96. package/icons/bookmark/bookmark-filled.vue +1 -1
  97. package/icons/bookmark/bookmark.vue +1 -1
  98. package/icons/browsers/browser-duck.vue +1 -1
  99. package/icons/browsers/browser-google.vue +7 -1
  100. package/icons/browsers/browser-yandex.vue +1 -1
  101. package/icons/building-vector.vue +1 -1
  102. package/icons/calculator.vue +1 -1
  103. package/icons/calendar.vue +1 -1
  104. package/icons/car.vue +1 -1
  105. package/icons/chart-bar.vue +5 -0
  106. package/icons/chart-pie.vue +16 -0
  107. package/icons/check/check-circle.vue +1 -1
  108. package/icons/check/check.vue +1 -1
  109. package/icons/check/checkmark-circle.vue +1 -1
  110. package/icons/check-sb.vue +7 -0
  111. package/icons/checkbox/checkbox-active.vue +1 -1
  112. package/icons/checkbox/checkbox-empty.vue +1 -1
  113. package/icons/checkbox/checkbox-intermediate.vue +1 -1
  114. package/icons/chevron/chevron-down.vue +1 -1
  115. package/icons/chevron/chevron-left.vue +1 -1
  116. package/icons/chevron/chevron-right.vue +1 -1
  117. package/icons/chevron/chevron-up.vue +1 -1
  118. package/icons/chevron/double-chevron-right.vue +1 -1
  119. package/icons/clipboard-text.vue +1 -1
  120. package/icons/clock.vue +1 -1
  121. package/icons/company/company-bazis.vue +3 -3
  122. package/icons/company/company-bereke.vue +13 -13
  123. package/icons/company/company-bigroup.vue +5 -5
  124. package/icons/company/company-erg.vue +6 -6
  125. package/icons/company/company-forte.vue +11 -11
  126. package/icons/company/company-halyk.vue +4 -4
  127. package/icons/company/company-jusan.vue +20 -3
  128. package/icons/company/company-kaspi.vue +3 -3
  129. package/icons/company/company-mycar.vue +2 -2
  130. package/icons/company/company-samruk.vue +9 -9
  131. package/icons/company-egov-small.vue +1 -1
  132. package/icons/company.vue +1 -1
  133. package/icons/copy.vue +1 -1
  134. package/icons/currency/currency-dollar.vue +1 -1
  135. package/icons/currency/currency-down.vue +1 -1
  136. package/icons/currency/currency-eur.vue +1 -1
  137. package/icons/currency/currency-rub.vue +1 -1
  138. package/icons/currency/currency-tenge.vue +9 -0
  139. package/icons/currency/currency-usd.vue +1 -1
  140. package/icons/currency/currency-yuan.vue +1 -1
  141. package/icons/delete.vue +1 -1
  142. package/icons/document.vue +1 -1
  143. package/icons/download.vue +1 -1
  144. package/icons/edit.vue +1 -1
  145. package/icons/education.vue +1 -1
  146. package/icons/egov-small.vue +1 -1
  147. package/icons/excel-icon.vue +14 -0
  148. package/icons/expand-window.vue +1 -1
  149. package/icons/eye-closed.vue +1 -1
  150. package/icons/eye-open.vue +1 -1
  151. package/icons/eye-opened.vue +1 -1
  152. package/icons/file/file.vue +1 -1
  153. package/icons/filter.vue +1 -1
  154. package/icons/flag.vue +1 -1
  155. package/icons/gift.vue +1 -1
  156. package/icons/globe.vue +1 -1
  157. package/icons/google.vue +41 -0
  158. package/icons/hand/hand-thumb-up-filled.vue +1 -1
  159. package/icons/hand/hand-thumb-up.vue +1 -1
  160. package/icons/hand-with-phone/hand-with-phone-dark.vue +1 -1
  161. package/icons/hand-with-phone/hand-with-phone-light.vue +1 -1
  162. package/icons/handshake.vue +1 -1
  163. package/icons/hcheck.vue +1 -1
  164. package/icons/hdocument.vue +1 -1
  165. package/icons/history.vue +1 -1
  166. package/icons/horizontal-more.vue +1 -1
  167. package/icons/hot-line.vue +6 -0
  168. package/icons/hummer.vue +1 -1
  169. package/icons/info/info-circle.vue +1 -1
  170. package/icons/invoice.vue +1 -1
  171. package/icons/kaspi-qr.vue +13 -0
  172. package/icons/link-chain.vue +1 -1
  173. package/icons/link.vue +1 -1
  174. package/icons/linkedin.vue +24 -24
  175. package/icons/loader-circle.vue +1 -1
  176. package/icons/location.vue +1 -1
  177. package/icons/lock.vue +1 -1
  178. package/icons/logo.vue +1 -1
  179. package/icons/logout.vue +1 -1
  180. package/icons/magnify/magnifying-glass-minus.vue +1 -1
  181. package/icons/magnify/magnifying-glass-plus.vue +1 -1
  182. package/icons/magnify/magnifying-glass.vue +1 -1
  183. package/icons/mail.vue +1 -1
  184. package/icons/mailru.vue +34 -0
  185. package/icons/main-filter.vue +1 -1
  186. package/icons/map/map-pin-filled.vue +1 -1
  187. package/icons/map/map-pin-rect.vue +1 -1
  188. package/icons/map/map-pin.vue +1 -1
  189. package/icons/map-marker-start.vue +1 -1
  190. package/icons/medal.vue +1 -1
  191. package/icons/menu-filled.vue +1 -1
  192. package/icons/menu.vue +1 -1
  193. package/icons/message/message.vue +1 -1
  194. package/icons/minus/minus-circle.vue +1 -1
  195. package/icons/money.vue +1 -1
  196. package/icons/monitoring.vue +1 -1
  197. package/icons/moon.vue +1 -1
  198. package/icons/more.vue +1 -1
  199. package/icons/notification.vue +1 -1
  200. package/icons/paperclip.vue +1 -1
  201. package/icons/payment/payment-card.vue +1 -1
  202. package/icons/payment/payment-kaspi.vue +1 -1
  203. package/icons/person-vector.vue +1 -1
  204. package/icons/person-with-briefcase.vue +1 -1
  205. package/icons/phone-filled.vue +1 -1
  206. package/icons/phone.vue +1 -1
  207. package/icons/plus/plus-circle.vue +1 -1
  208. package/icons/plus/plus.vue +1 -1
  209. package/icons/profile.vue +1 -1
  210. package/icons/radio/radio-check.vue +1 -1
  211. package/icons/radio/radio-empty.vue +1 -1
  212. package/icons/receipt.vue +1 -1
  213. package/icons/sanctions.vue +8 -0
  214. package/icons/scales/scale.vue +1 -1
  215. package/icons/scales/scales.vue +1 -1
  216. package/icons/scales/standing-scales.vue +1 -1
  217. package/icons/search.vue +1 -1
  218. package/icons/share/share-alt.vue +1 -1
  219. package/icons/share/share.vue +1 -1
  220. package/icons/socials/face-book.vue +1 -1
  221. package/icons/socials/instagram.vue +1 -1
  222. package/icons/socials/telegram.vue +1 -1
  223. package/icons/socials/tik-tok.vue +1 -1
  224. package/icons/socials/youtube.vue +1 -1
  225. package/icons/sort/sort-asc.vue +1 -1
  226. package/icons/sort/sort-desc.vue +1 -1
  227. package/icons/splitting-arrows.vue +1 -1
  228. package/icons/star/star-filled.vue +1 -1
  229. package/icons/star/star-half-filled.vue +1 -1
  230. package/icons/star/star.vue +1 -1
  231. package/icons/sun.vue +14 -14
  232. package/icons/sviazi.vue +1 -1
  233. package/icons/tag.vue +1 -1
  234. package/icons/tasks.vue +10 -0
  235. package/icons/tender-search.vue +1 -1
  236. package/icons/toasts/check-circle-toast.vue +1 -1
  237. package/icons/toasts/warning-triangle-toast.vue +1 -1
  238. package/icons/trash.vue +1 -1
  239. package/icons/triangle.vue +1 -1
  240. package/icons/truck.vue +1 -1
  241. package/icons/user.vue +1 -1
  242. package/icons/users-focus.vue +1 -1
  243. package/icons/users.vue +1 -1
  244. package/icons/warning/warning-circle.vue +1 -1
  245. package/icons/warning/warning-triangle-filled.vue +1 -1
  246. package/icons/warning/warning-triangle.vue +1 -1
  247. package/icons/whatsapp.vue +1 -1
  248. package/icons/work-bag.vue +1 -1
  249. package/icons/work-case.vue +9 -0
  250. package/icons/work-search.vue +1 -1
  251. package/icons/work.vue +1 -1
  252. package/icons/x-mark.vue +1 -1
  253. package/icons/yandex.vue +28 -0
  254. package/illustrations/address-location.vue +1 -1
  255. package/illustrations/ball-with-chain.vue +1 -1
  256. package/illustrations/bill.vue +1 -1
  257. package/illustrations/buildings.vue +1 -1
  258. package/illustrations/calendar.vue +1 -1
  259. package/illustrations/chains.vue +1 -1
  260. package/illustrations/coin-percent.vue +1 -1
  261. package/illustrations/coins-stack.vue +1 -1
  262. package/illustrations/delete-dark.vue +1 -1
  263. package/illustrations/delete.vue +1 -1
  264. package/illustrations/doc-with-stamp.vue +1 -1
  265. package/illustrations/document.vue +1 -1
  266. package/illustrations/door.vue +1 -1
  267. package/illustrations/empty-box.vue +1 -1
  268. package/illustrations/empty-wallet.vue +1 -1
  269. package/illustrations/graph-in-coin.vue +1 -1
  270. package/illustrations/hammer.vue +1 -1
  271. package/illustrations/hand-cash.vue +1 -1
  272. package/illustrations/info.vue +1 -1
  273. package/illustrations/mail.vue +1 -1
  274. package/illustrations/ok.vue +1 -1
  275. package/illustrations/people-group.vue +1 -1
  276. package/illustrations/person-with-phone.vue +1 -1
  277. package/illustrations/person.vue +1 -1
  278. package/illustrations/phone-check.vue +1 -1
  279. package/illustrations/phone-payment-method.vue +1 -1
  280. package/illustrations/stop-hand.vue +1 -1
  281. package/illustrations/stop-sign.vue +1 -1
  282. package/illustrations/suit.vue +1 -1
  283. package/illustrations/suitcase.vue +1 -1
  284. package/illustrations/terminal-dark.vue +1 -1
  285. package/illustrations/terminal.vue +1 -1
  286. package/illustrations/trash-can.vue +1 -1
  287. package/illustrations/turn-on-tariff.vue +1 -1
  288. package/illustrations/two-persons.vue +1 -1
  289. package/lang/en.ts +475 -270
  290. package/lang/kk.ts +476 -271
  291. package/lang/ru.ts +315 -107
  292. package/layouts/default.vue +13 -13
  293. package/nuxt.config.ts +42 -14
  294. package/package.json +69 -53
  295. package/public/kaspi/logo.svg +4 -0
  296. package/shared/constans/pages.ts +17 -2
  297. package/tailwind.config.ts +163 -0
  298. package/vitest.config.ts +14 -0
  299. package/.eslintrc.cjs +0 -4
  300. package/.playground/app.vue +0 -9
  301. package/.playground/pages/index.vue +0 -13
  302. package/.prettierignore +0 -24
  303. package/.prettierrc +0 -10
  304. package/assets/styles/index.css +0 -226
  305. package/components/modals/AuthModal.vue +0 -50
  306. package/components/navigation/footer/NewFooter.vue +0 -276
  307. package/components/navigation/footer/ui/footer-acccordion.vue +0 -119
package/lang/en.ts CHANGED
@@ -1,363 +1,415 @@
1
- import Ru from "./ru";
2
- type RuLocale = typeof Ru;
1
+ import type Ru from './ru'
2
+
3
+ type RuLocale = typeof Ru
3
4
 
4
5
  const EnLocale: RuLocale = {
5
6
  lang: {
6
7
  ru: {
7
- short: "RU",
8
- long: "Русский"
8
+ short: 'RU',
9
+ long: 'Русский',
9
10
  },
10
11
  kk: {
11
- short: "KZ",
12
- long: "Қазақша"
12
+ short: 'KZ',
13
+ long: 'Қазақша',
13
14
  },
14
15
  en: {
15
- short: "EN",
16
- long: "English"
17
- }
16
+ short: 'EN',
17
+ long: 'English',
18
+ },
18
19
  },
19
20
  reuse: {
20
- yes: 'Yes'
21
+ yes: 'Yes',
22
+ or: 'Or',
23
+ successfully: 'Successfully',
21
24
  },
22
25
  header: {
23
26
  top: {
24
- requestLimit: "Daily request limit",
25
- daysLeft: "Days left"
27
+ requestLimit: 'Daily request limit',
28
+ daysLeft: 'Days left',
26
29
  },
27
30
  profile: {
28
- tariff: "Tariff",
29
- balance: "Balance:",
30
- connected: "Connected",
31
- currentBalance: "Current balance:",
32
- addBalance: "Add balance",
33
- requests: "Requests",
34
- daysLeft: "Days left",
35
- currentTheme: "Current theme:",
36
- colorScheme: "Color scheme:",
37
- logout: "Logout",
31
+ tariff: 'Tariff',
32
+ balance: 'Balance:',
33
+ connected: 'Connected',
34
+ currentBalance: 'Current balance:',
35
+ addBalance: 'Add balance',
36
+ requests: 'Requests',
37
+ daysLeft: 'Days left',
38
+ currentTheme: 'Current theme:',
39
+ colorScheme: 'Color scheme:',
40
+ logout: 'Logout',
38
41
  menu: {
39
- personalInfo: "Personal Information",
40
- security: "Security",
41
- work: "Work",
42
- paymentHistory: "Payment History",
43
- notifications: "Notifications",
44
- favourites: "Favourites",
45
- myReports: "My Reports",
46
- browsingHistory: "Browsing History",
47
- myGroups: "My Groups",
48
- notes: "Notes"
49
- }
42
+ personalInfo: 'Personal Information',
43
+ security: 'Security',
44
+ work: 'Work',
45
+ paymentHistory: 'Payment History',
46
+ notifications: 'Notifications',
47
+ favourites: 'Favourites',
48
+ myReports: 'My Reports',
49
+ browsingHistory: 'Browsing History',
50
+ myGroups: 'My Groups',
51
+ notes: 'Notes',
52
+ },
50
53
  },
51
54
  mega: {
52
- favourites: "Favourites",
53
- tariffs: "Tariffs",
54
- useful: "Useful",
55
- apiDescription: "API Description",
56
- termsOfUse: "Terms of Use",
57
- privacyPolicy: "Privacy Policy"
55
+ favourites: 'Favourites',
56
+ tariffs: 'Tariffs',
57
+ useful: 'Useful',
58
+ apiDescription: 'API Description',
59
+ termsOfUse: 'Terms of Use',
60
+ privacyPolicy: 'Privacy Policy',
58
61
  },
59
62
  navs: {
60
- products: "Products and Solutions",
61
- tariffs: "Tariffs",
62
- contacts: "Contacts"
63
+ products: 'Products and Solutions',
64
+ tariffs: 'Tariffs',
65
+ contacts: 'Contacts',
66
+ api: "API"
63
67
  },
64
68
  products: {
65
69
  counterparties: {
66
- label: "Counterparties",
70
+ label: 'Counterparties',
67
71
  items: {
68
72
  counterparty: {
69
- title: "Counterparty check",
70
- subtitle: "Company information, its history, legal status, and any legal issues or disputes"
73
+ title: 'Counterparty check',
74
+ subtitle: 'Company information, its history, legal status, and any legal issues or disputes',
71
75
  },
72
76
  wholesale: {
73
- title: "Mass check",
74
- subtitle: "Check affiliations between employees and your counterparties"
77
+ title: 'Mass check',
78
+ subtitle: 'Check affiliations between employees and your counterparties',
75
79
  },
76
80
  foreign: {
77
- title: "Foreign counterparties",
78
- subtitle: "History and legal status, any legal issues or disputes"
81
+ title: 'Foreign counterparties',
82
+ subtitle: 'History and legal status, any legal issues or disputes',
79
83
  },
80
84
  compare: {
81
- title: "Comparison of counterparties",
82
- subtitle: ""
85
+ title: 'Comparison of counterparties',
86
+ subtitle: '',
83
87
  },
84
88
  networks: {
85
- title: "Indirect connections",
86
- subtitle: ""
89
+ title: 'Indirect connections',
90
+ subtitle: '',
87
91
  },
88
92
  unloading: {
89
- title: "Data export",
90
- subtitle: "Get data about competitors or potential clients"
93
+ title: 'Data export',
94
+ subtitle: 'Get data about competitors or potential clients',
91
95
  },
92
96
  sanction: {
93
- title: "Sanction lists",
94
- subtitle: ""
97
+ title: 'Sanction lists',
98
+ subtitle: '',
95
99
  },
96
100
  offshore: {
97
- title: "Offshore lists",
98
- subtitle: ""
99
- }
100
- }
101
+ title: 'Offshore lists',
102
+ subtitle: '',
103
+ },
104
+ },
101
105
  },
102
106
  jobs: {
103
- label: "Jobs",
107
+ label: 'Jobs',
104
108
  items: {
105
109
  vacancies: {
106
- title: "Vacancies",
107
- subtitle: "Explore the job market to find out which professions are currently in demand, and evaluate leading companies in the sectors you are interested in"
110
+ title: 'Vacancies',
111
+ subtitle: 'Explore the job market to find out which professions are currently in demand, and evaluate leading companies in the sectors you are interested in',
108
112
  },
109
113
  resume: {
110
- title: "Resume",
111
- subtitle: "Search for up-to-date resumes across Kazakhstan. Use convenient filters for precise candidate search by skills, experience, and education"
112
- }
113
- }
114
+ title: 'Resume',
115
+ subtitle: 'Search for up-to-date resumes across Kazakhstan. Use convenient filters for precise candidate search by skills, experience, and education',
116
+ },
117
+ },
114
118
  },
115
119
  tenders: {
116
- label: "Procurement",
120
+ label: 'Procurement',
117
121
  items: {
122
+ customers: {
123
+ title: 'Participant Analysis',
124
+ subtitle: 'Ratings and profiles of participants: specialization, deals and prices, market share and dynamics',
125
+ },
126
+ akimat: {
127
+ title: 'Akimat. Reports',
128
+ subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
129
+ },
130
+ tru: {
131
+ title: 'Goods, Works and Services Analysis',
132
+ subtitle: 'Procurement trends: thematic search, market by items, prices and volumes, total budget and leaders',
133
+ },
134
+ price: {
135
+ title: 'Price Analysis',
136
+ subtitle: 'Tracking prices for goods, works, and services with smart search and accurate selection for budgeting, margin calculation, and deviation detection',
137
+ },
138
+ constructor: {
139
+ title: 'Report Builder',
140
+ subtitle: 'Flexible creation and fast export of detailed reports',
141
+ },
142
+ monitoring: {
143
+ title: 'Procurement Monitoring',
144
+ subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
145
+ },
118
146
  tenders: {
119
- title: "Tender search",
120
- subtitle: "Information about procurements, use search by keywords to find lots that match your interests or line of work"
147
+ title: 'Tender search',
148
+ subtitle: 'Information about procurements, use search by keywords to find lots that match your interests or line of work',
121
149
  },
122
150
  contracts: {
123
- title: "Contract search",
124
- subtitle: "Study key trends, consumption patterns, and forecast demand for future periods"
151
+ title: 'Contract search',
152
+ subtitle: 'Study key trends, consumption patterns, and forecast demand for future periods',
125
153
  },
126
154
  procurement: {
127
- title: "Procurement plans",
128
- subtitle: "Identify customers and their budgets for goods, work, and services"
129
- }
130
- }
155
+ title: 'Procurement plans',
156
+ subtitle: 'Identify customers and their budgets for goods, work, and services',
157
+ },
158
+ },
131
159
  },
132
160
  fines: {
133
- label: "Fines",
161
+ label: 'Fines',
134
162
  items: {
135
163
  fines: {
136
- title: "Fine check",
137
- subtitle: "Check administrative fines imposed by state authorities for violations of the laws of the Republic of Kazakhstan"
164
+ title: 'Fine check',
165
+ subtitle: 'Check administrative fines imposed by state authorities for violations of the laws of the Republic of Kazakhstan',
138
166
  },
139
167
  auto: {
140
- title: "Car check",
141
- subtitle: "Check the car's history for legal clarity, participation in accidents, technical inspection status, traffic fines"
168
+ title: 'Car check',
169
+ subtitle: 'Check the car\'s history for legal clarity, participation in accidents, technical inspection status, traffic fines',
142
170
  },
143
171
  wholesaleAuto: {
144
- title: "Mass car check",
145
- subtitle: "Check car information for fines, tax arrears, and other important data using a convenient mass verification tool"
146
- }
147
- }
172
+ title: 'Mass car check',
173
+ subtitle: 'Check car information for fines, tax arrears, and other important data using a convenient mass verification tool',
174
+ },
175
+ },
148
176
  },
149
177
  analytics: {
150
- label: "Analytics",
178
+ label: 'Analytics',
151
179
  items: {
152
180
  clients: {
153
- title: "Client search",
154
- subtitle: "Current contact database of potential clients in Kazakhstan"
181
+ title: 'Client search',
182
+ subtitle: 'Current contact database of potential clients in Kazakhstan',
155
183
  },
156
184
  procurement: {
157
- title: "Procurement analysis",
158
- subtitle: "Evaluate the volume of competitors' procurements over a certain period"
185
+ title: 'Procurement analysis',
186
+ subtitle: 'Evaluate the volume of competitors\' procurements over a certain period',
159
187
  },
160
188
  activity: {
161
- title: "Business activity index",
162
- subtitle: "Assessment of market risk of current business activity"
189
+ title: 'Business activity index',
190
+ subtitle: 'Assessment of market risk of current business activity',
163
191
  },
164
192
  subjects: {
165
- title: "Business entities",
166
- subtitle: "Change in the number of business entities in various sectors of the economy"
193
+ title: 'Business entities',
194
+ subtitle: 'Change in the number of business entities in various sectors of the economy',
167
195
  },
168
196
  rate: {
169
- title: "Taxpayer ranking",
170
- subtitle: "Taxpayers who regularly pay taxes"
171
- }
172
- }
197
+ title: 'Taxpayer ranking',
198
+ subtitle: 'Taxpayers who regularly pay taxes',
199
+ },
200
+ },
173
201
  },
174
202
  fea: {
175
- label: "Foreign Economic Activity",
203
+ label: 'Foreign Economic Activity',
176
204
  items: {
177
205
  i: {
178
- t: "Foreign trade in goods",
179
- st: "Information service of foreign trade turnover by foreign economic activity participants"
206
+ t: 'Foreign trade in goods',
207
+ st: 'Information service of foreign trade turnover by foreign economic activity participants',
180
208
  },
181
209
  o: {
182
- t: "FEACN",
183
- st: "Product reference, intelligent search, and selection of the code, FEACN tree with full descriptions"
210
+ t: 'FEACN',
211
+ st: 'Product reference, intelligent search, and selection of the code, FEACN tree with full descriptions',
184
212
  },
185
213
  cp: {
186
- t: "Customs-related sphere",
187
- st: "Lists, registries, and other reference information"
214
+ t: 'Customs-related sphere',
215
+ st: 'Lists, registries, and other reference information',
188
216
  },
189
217
  ca: {
190
- t: "Calculator",
191
- st: "Calculation of Customs Payments. Customs Duties. Customs Fees"
218
+ t: 'Calculator',
219
+ st: 'Calculation of Customs Payments. Customs Duties. Customs Fees',
192
220
  },
193
221
  tr: {
194
- t: "International market and tariffs",
195
- st: "Customs Tariffs and Quotas. Measures for Protecting the Domestic Market. Regulatory Requirements"
222
+ t: 'International market and tariffs',
223
+ st: 'Customs Tariffs and Quotas. Measures for Protecting the Domestic Market. Regulatory Requirements',
196
224
  },
197
225
  importerMap: {
198
226
  t: 'Map of importers',
199
- st: ''
227
+ st: '',
200
228
  },
201
229
  containers: {
202
230
  t: 'Container Tracking',
203
- st: ''
204
- }
205
- }
231
+ st: '',
232
+ },
233
+ },
206
234
  },
207
235
  compliance: {
208
- label: "Compliance",
236
+ label: 'Compliance',
209
237
  items: {
210
238
  l: {
211
- t: "Compliance",
212
- st: "Automatic compliance risk check: protecting your business in real-time"
213
- }
214
- }
239
+ t: 'Compliance',
240
+ st: 'Automatic compliance risk check: protecting your business in real-time',
241
+ },
242
+ assistant: {
243
+ t: 'AI assistant',
244
+ st: '',
245
+ },
246
+ inspection: {
247
+ t: 'Tasks',
248
+ st: '',
249
+ },
250
+ hotline: {
251
+ t: 'Hotline',
252
+ st: '',
253
+ },
254
+ sanctions: {
255
+ t: 'Sanctions',
256
+ st: '',
257
+ },
258
+ suppliers: {
259
+ t: 'Dossier',
260
+ st: '',
261
+ },
262
+ sb: {
263
+ t: 'Security Service check',
264
+ st: '',
265
+ },
266
+ },
215
267
  },
216
268
  edo: {
217
269
  label: 'EDM',
218
270
  items: {
219
271
  l: {
220
- t: 'Document Flow'
221
- }
222
- }
272
+ t: 'Document Flow',
273
+ },
274
+ },
223
275
  },
224
276
  galleryCards: {
225
277
  unload: {
226
- title: "Data export",
227
- subtitle: "Get a list of potential clients",
278
+ title: 'Data export',
279
+ subtitle: 'Get a list of potential clients',
228
280
  },
229
281
  ved: {
230
- title: "Foreign economic activity",
231
- subtitle: "A universal tool for international trade",
282
+ title: 'Foreign economic activity',
283
+ subtitle: 'A universal tool for international trade',
232
284
  },
233
285
  compliance: {
234
- title: "Compliance",
286
+ title: 'Compliance',
235
287
  subtitle:
236
- "Automated compliance risk assessment: real-time business protection",
288
+ 'Automated compliance risk assessment: real-time business protection',
237
289
  },
238
290
  },
239
291
  },
240
292
  contacts: {
241
293
  almaty: {
242
- title: "Contacts of LLP 'Alldata'",
294
+ title: 'Contacts of LLP \'Alldata\'',
243
295
  adress: {
244
- title: "Address",
245
- subtitle: "Kazakhstan, Almaty, Khojanov St., 79"
296
+ title: 'Address',
297
+ subtitle: 'Kazakhstan, Almaty, Khojanov St., 79',
246
298
  },
247
299
  email: {
248
- title: "Email"
300
+ title: 'Email',
249
301
  },
250
302
  schedule: {
251
- title: "Working hours",
252
- subtitle: "9:00 - 18:00, Mon - Fri"
303
+ title: 'Working hours',
304
+ subtitle: '9:00 - 18:00, Mon - Fri',
253
305
  },
254
306
  sellDep: {
255
- title: "Sales Department"
307
+ title: 'Sales Department',
256
308
  },
257
309
  contactUs: {
258
- title: 'Contact us'
310
+ title: 'Contact us',
259
311
  },
260
312
  support: {
261
- title: "Technical Support",
262
- subtitle: "+7 (771) 228 90 41",
313
+ title: 'Technical Support',
314
+ subtitle: '+7 (771) 228 90 41',
263
315
  linkTitle: 'Go to support chat',
264
316
  },
265
317
  financeDep: {
266
318
  title: 'Finance Department',
267
- linkTitle: 'Go to chat with the Finance Department'
319
+ linkTitle: 'Go to chat with the Finance Department',
268
320
  },
269
321
  },
270
322
  astana: {
271
- title: "Branch in Astana: LLP 'ADATA Consulting'",
323
+ title: 'Branch in Astana: LLP \'ADATA Consulting\'',
272
324
  adress: {
273
- title: "Address",
274
- subtitle: "Astana, Kunayev St., 29/1, 'Diplomat' Business Center, 11th floor, Office 1108"
325
+ title: 'Address',
326
+ subtitle: 'Astana, Kunayev St., 29/1, \'Diplomat\' Business Center, 11th floor, Office 1108',
275
327
  },
276
328
  email: {
277
- title: "Email"
329
+ title: 'Email',
278
330
  },
279
331
  schedule: {
280
- title: "Working hours",
281
- subtitle: "9:00 - 18:00, Mon - Fri"
332
+ title: 'Working hours',
333
+ subtitle: '9:00 - 18:00, Mon - Fri',
282
334
  },
283
335
  sellDep: {
284
- title: "Sales Department"
336
+ title: 'Sales Department',
285
337
  },
286
338
  details: {
287
- title: "Details",
288
- subtitle: "BIN: 090740016057"
289
- }
339
+ title: 'Details',
340
+ subtitle: 'BIN: 090740016057',
341
+ },
290
342
  },
291
- toContacts: "Go to Contacts page"
343
+ toContacts: 'Go to Contacts page',
292
344
  },
293
- login: "Login",
294
- oldVersion: "Old version of the site",
345
+ login: 'Login',
346
+ oldVersion: 'Old version of the site',
295
347
  notifications: {
296
- title: "Notifications",
297
- seeAll: "See all notifications",
298
- noData: "No new notifications"
299
- }
348
+ title: 'Notifications',
349
+ seeAll: 'See all notifications',
350
+ noData: 'No new notifications',
351
+ },
300
352
  },
301
353
  footer: {
302
- services: "Services",
303
- useful: "Useful",
354
+ services: 'Services',
355
+ useful: 'Useful',
304
356
  contacts: {
305
- title: "Contacts",
306
- address: "Kazakhstan, Almaty, Khozhanova St. 79",
307
- goToChat: "Go to support chat",
357
+ title: 'Contacts',
358
+ address: 'Kazakhstan, Almaty, Khozhanova St. 79',
359
+ goToChat: 'Go to support chat',
308
360
  },
309
361
  subtitle: 'A single solution for business tasks',
310
362
  info: {
311
- tariff: "Tariffs",
312
- helpful: "Useful",
313
- api: "API Description",
314
- userAgreement: "User Agreement",
315
- privacyPolicy: "Privacy Policy",
316
- vacancy: "Vacancies",
317
- counterparty: "Enterprise Catalog",
318
- contacts: "Contacts"
363
+ tariff: 'Tariffs',
364
+ helpful: 'Useful',
365
+ api: 'API Description',
366
+ userAgreement: 'User Agreement',
367
+ privacyPolicy: 'Privacy Policy',
368
+ vacancy: 'Vacancies',
369
+ counterparty: 'Enterprise Catalog',
370
+ contacts: 'Contacts',
319
371
  },
320
372
  counterparties: {
321
- title: "Counterparties",
322
- checkCounterparties: "Counterparty Check",
323
- compareCounterparties: "Compare Counterparties",
324
- indirectConnections: "Indirect Connections",
325
- massCheck: "Mass Check",
326
- foreignCounterparties: "Foreign Counterparties",
327
- sanctions: "Sanctions",
328
- offshores: "Offshores"
373
+ title: 'Counterparties',
374
+ checkCounterparties: 'Counterparty Check',
375
+ compareCounterparties: 'Compare Counterparties',
376
+ indirectConnections: 'Indirect Connections',
377
+ massCheck: 'Mass Check',
378
+ foreignCounterparties: 'Foreign Counterparties',
379
+ sanctions: 'Sanctions',
380
+ offshores: 'Offshores',
329
381
  },
330
382
  work: {
331
- title: "Jobs",
332
- createFindVacancies: "Create and Find Vacancies",
333
- createFindResume: "Create and Find Resume"
383
+ title: 'Jobs',
384
+ createFindVacancies: 'Create and Find Vacancies',
385
+ createFindResume: 'Create and Find Resume',
334
386
  },
335
387
  tenders: {
336
- title: "Tenders",
337
- searchTenders: "Search by Tenders",
338
- purchasePlans: "Procurement Plans"
388
+ title: 'Tenders',
389
+ searchTenders: 'Search by Tenders',
390
+ purchasePlans: 'Procurement Plans',
339
391
  },
340
392
  fines: {
341
- title: "Fines",
342
- checkFines: "Fine Check",
343
- checkAuto: "Car Check",
344
- massCheckAuto: "Mass Car Check"
393
+ title: 'Fines',
394
+ checkFines: 'Fine Check',
395
+ checkAuto: 'Car Check',
396
+ massCheckAuto: 'Mass Car Check',
345
397
  },
346
398
  analytics: {
347
- title: "Analytics",
348
- searchCustomers: "Search Clients",
349
- purchaseAnalysis: "Procurement Analysis",
350
- businessActivityIndex: "Business Activity Index",
351
- taxpayerRanking: "Taxpayer Ranking",
352
- businessEntities: "Business Entities"
399
+ title: 'Analytics',
400
+ searchCustomers: 'Search Clients',
401
+ purchaseAnalysis: 'Procurement Analysis',
402
+ businessActivityIndex: 'Business Activity Index',
403
+ taxpayerRanking: 'Taxpayer Ranking',
404
+ businessEntities: 'Business Entities',
353
405
  },
354
406
  fea: {
355
- title: "FEA",
356
- i: "Foreign Trade in Goods",
357
- o: "Foreign Economic Activity Commodity Nomenclature",
358
- cp: "Customs-related sphere",
359
- calc:'Calculator',
360
- mr:'International Market and Tariffs',
407
+ title: 'FEA',
408
+ i: 'Foreign Trade in Goods',
409
+ o: 'Foreign Economic Activity Commodity Nomenclature',
410
+ cp: 'Customs-related sphere',
411
+ calc: 'Calculator',
412
+ mr: 'International Market and Tariffs',
361
413
  importerMap: 'Map of importers',
362
414
  containers: 'Container Tracking',
363
415
  },
@@ -365,42 +417,42 @@ const EnLocale: RuLocale = {
365
417
  title: 'Compliance',
366
418
  },
367
419
  edo: {
368
- title: 'EDM'
420
+ title: 'EDM',
369
421
  },
370
- LLP: "LLP"
422
+ LLP: 'LLP',
371
423
  },
372
424
  our_clients: {
373
- title: "Our Clients"
425
+ title: 'Our Clients',
374
426
  },
375
427
  forms: {
376
428
  feedback: {
377
- title: "Interested in more data?",
378
- subtitle: "Leave a comment, and we will consider your proposal as soon as possible.",
379
- email: "Email",
380
- phone: "Phone number",
381
- comment: "Your comment",
382
- send: "Send",
383
- close: "Close",
384
- fieldRequired: "Field is required",
385
- emailValid: "Enter a valid email",
386
- phoneMinLength: "Minimum phone number length is {count} characters",
387
- commentMinLength: "Minimum comment length is {count} characters",
388
- commentMaxLength: "Maximum comment length is {count} characters",
389
- modalTitle: "Request Accepted",
390
- modalSubtitle: "Thank you for your feedback!"
429
+ title: 'Interested in more data?',
430
+ subtitle: 'Leave a comment, and we will consider your proposal as soon as possible.',
431
+ email: 'Email',
432
+ phone: 'Phone number',
433
+ comment: 'Your comment',
434
+ send: 'Send',
435
+ close: 'Close',
436
+ fieldRequired: 'Field is required',
437
+ emailValid: 'Enter a valid email',
438
+ phoneMinLength: 'Minimum phone number length is {count} characters',
439
+ commentMinLength: 'Minimum comment length is {count} characters',
440
+ commentMaxLength: 'Maximum comment length is {count} characters',
441
+ modalTitle: 'Request Accepted',
442
+ modalSubtitle: 'Thank you for your feedback!',
391
443
  },
392
444
  demo: {
393
- t: "Request Demo Access",
394
- st: "Fill out the form to request demo access",
445
+ t: 'Request Demo Access',
446
+ st: 'Fill out the form to request demo access',
395
447
  e: 'Email',
396
- n: "Full Name",
397
- p: "Phone number",
398
- c: "Comment",
399
- b: "Request demo access"
448
+ n: 'Full Name',
449
+ p: 'Phone number',
450
+ c: 'Comment',
451
+ b: 'Request demo access',
400
452
  },
401
453
  request_demo: {
402
- title: 'Request demo access',
403
- info: 'Fill out the form to request demo access',
454
+ title: 'Try all the features of the service for free',
455
+ info: 'Check the functionality and quality of the data in real conditions. Demo access will allow you to test all the key features of the service.\nFill out the form to submit a connection request',
404
456
  agreement: 'By filling out the form, you agree to the processing of personal data and receiving informational messages',
405
457
  send: 'Submit Request',
406
458
  },
@@ -460,29 +512,128 @@ const EnLocale: RuLocale = {
460
512
  showMore: 'Show more',
461
513
  close: 'Close',
462
514
  send: 'Send',
515
+ login: 'Login',
516
+ register: 'Register',
517
+ toTariffs: 'Go to tariffs',
518
+ back: 'Back',
519
+ recover: 'Recover',
520
+ cancel: 'Cancel',
521
+ set: 'Set',
522
+ resend: 'Resend',
523
+ confirm: 'Confirm',
524
+ "topUp": "Top up",
525
+ update: 'Update',
463
526
  },
464
527
  modals: {
528
+ id: {
529
+ "banners": {
530
+ auth: {
531
+ "title": "Free checks",
532
+ "subtitle": "{register} and get 5 free checks",
533
+ "register": "Register"
534
+ },
535
+ "basicPlusLimit": {
536
+ "title": "Your limit of checks under the 'Basic +' plan has been exhausted",
537
+ "subtitle": "{topUp} your balance and get access to additional checks",
538
+ "topUp": "Top up"
539
+ }
540
+ },
541
+ login: {
542
+ title: 'Login',
543
+ subtitle: 'Welcome to Adata.kz',
544
+ remember_me: 'Remember me',
545
+ forget_password: 'Forgot password?',
546
+ first_time: 'First time using our service?',
547
+ labels: {
548
+ email: 'Enter email',
549
+ password: 'Enter password',
550
+ },
551
+ },
552
+ register: {
553
+ title: 'Registration',
554
+ subtitle: 'Enter your details to register',
555
+ labels: {
556
+ email: 'Enter email',
557
+ password: 'Enter password',
558
+ password_confirmation: 'Confirm password',
559
+ },
560
+ alert: 'The password must be at least 8 characters long and contain (an uppercase letter, a number, and a special character)',
561
+ agreement: {
562
+ text: 'I have read the {link} and fully agree with them.',
563
+ link: 'terms of service',
564
+ },
565
+ continue: 'Continue',
566
+ haveAcc: 'Already have an account?',
567
+ enter: 'Login',
568
+ errors: {
569
+ low_security: 'Low security level',
570
+ minLength: 'The password must be at least 8 characters long',
571
+ passwordRequirements: 'must contain (an uppercase letter, a number, and a special character)',
572
+ sameAs: 'Passwords do not match',
573
+ },
574
+ },
575
+ confirmAccount: {
576
+ title: 'Account confirmation',
577
+ },
578
+ recovery: {
579
+ title: 'Password recovery',
580
+ content: 'Enter your email address',
581
+ placeholder: 'Enter email',
582
+ },
583
+ resetPasswordOtp: {
584
+ title: 'Confirm action',
585
+ content: 'Enter the 6-digit confirmation code sent to your email address',
586
+ seconds: 'seconds',
587
+ attempts: 'Remaining attempts: {n}',
588
+ },
589
+ newPassword: {
590
+ title: 'Create a new password',
591
+ content: 'Come up with your new password',
592
+ alert: 'The password must be at least 8 characters long and contain (an uppercase letter, a number)',
593
+ placeholder: {
594
+ 1: 'Enter new password',
595
+ 2: 'Repeat password',
596
+ },
597
+ },
598
+ twoFactor: {
599
+ title: 'Two-factor authentication',
600
+ code: 'Enter the 6-digit code for confirmation',
601
+ error: 'You entered an incorrect code',
602
+ },
603
+ passwordSuccessful: {
604
+ title: 'Great',
605
+ content: 'You have successfully changed your account password',
606
+ },
607
+ confirmSuccessful: {
608
+ title: 'Success!',
609
+ content: 'Email has been confirmed. Thank you!',
610
+ },
611
+ autoLogout: {
612
+ title: 'Information',
613
+ content: 'For security reasons, an automatic account logout was performed.',
614
+ },
615
+ },
465
616
  auth: {
466
- title: "No Access",
467
- content: "This functionality is available to authorized users only.",
468
- firstTime: "First time on our service?"
617
+ title: 'No Access',
618
+ content: 'This functionality is available to authorized users only.',
619
+ firstTime: 'First time on our service?',
469
620
  },
470
621
  limit: {
471
- title: "Limit Reached",
472
- content: "More checks will be available tomorrow, please come back later.",
473
- changedToBasic: "Your tariff has been changed to Basic.",
474
- basicPlus: "To get an extended account, go to the 'Tariffs' section."
622
+ title: 'Limit Reached',
623
+ content: 'More checks will be available tomorrow, please come back later.',
624
+ changedToBasic: 'Your tariff has been changed to Basic.',
625
+ basicPlus: 'To get an extended account, go to the \'Tariffs\' section.',
475
626
  },
476
627
  mobile_navigation: {
477
- type_main: "Products and Solutions",
478
- type_contacts: "Contacts",
628
+ type_main: 'Products and Solutions',
629
+ type_contacts: 'Contacts',
479
630
  type_tariff: 'Tariffs',
480
- type_login: "Login",
481
- type_profile: "Profile",
482
- return_button:'Main'
631
+ type_login: 'Login',
632
+ type_profile: 'Profile',
633
+ return_button: 'Main',
483
634
  },
484
635
  payment_method: {
485
- title: "Payment Method",
636
+ title: 'Payment Method',
486
637
  questions: 'Select a payment system to conduct the \n transaction',
487
638
  banks: {
488
639
  kaspi: 'Kaspi',
@@ -496,18 +647,18 @@ const EnLocale: RuLocale = {
496
647
  },
497
648
  connecting: {
498
649
  title: 'Connecting Tariff',
499
- questions: 'Funds will be deducted from your account, do you want to \n connect the tariff?',
650
+ questions: 'Funds will be deducted from your account, do you want to connect the tariff?',
500
651
  },
501
652
  replenish_modal: {
502
- title: "Top up balance",
503
- info: "Funds will be credited in tenge.",
653
+ title: 'Top up balance',
654
+ info: 'Funds will be credited in tenge.',
504
655
  enter_sum: 'Enter the amount',
505
- error: 'Maximum amount – 1 000 000 ₸'
656
+ error: 'Maximum amount – 1 000 000 ₸',
506
657
  },
507
658
  low_balance: {
508
- title: "Insufficient Funds",
509
- current_balance: "Your current balance",
510
- questions: "Would you like to top up now?"
659
+ title: 'Insufficient Funds',
660
+ current_balance: 'Your current balance',
661
+ questions: 'Would you like to top up now?',
511
662
  },
512
663
  another_device_modal: {
513
664
  title: 'Login from another device',
@@ -516,18 +667,18 @@ const EnLocale: RuLocale = {
516
667
  },
517
668
  no_access: {
518
669
  title: 'No access',
519
- info: 'This functionality is unavailable'
670
+ info: 'This functionality is unavailable',
520
671
  },
521
672
  buttons: {
522
- close: "Close",
523
- back: "Cancel",
524
- buy: "Pay",
525
- topUp: "Top up",
673
+ close: 'Close',
674
+ back: 'Cancel',
675
+ buy: 'Pay',
676
+ topUp: 'Top up',
526
677
  goToMainPage: 'Go to Main Page',
527
- logIn: "Log in",
528
- register: "Register",
529
- goTariffs: "Go to tariffs",
530
- example: "View example",
678
+ logIn: 'Log in',
679
+ register: 'Register',
680
+ goTariffs: 'Go to tariffs',
681
+ example: 'View example',
531
682
  toMain: 'To Home',
532
683
  goToKaspi: 'Go to Kaspi.kz',
533
684
  },
@@ -542,7 +693,7 @@ const EnLocale: RuLocale = {
542
693
  rules: {
543
694
  required: 'Required field',
544
695
  email: 'Invalid e-mail',
545
- }
696
+ },
546
697
  },
547
698
  application_accepted_modal: {
548
699
  title: 'Application Accepted',
@@ -556,30 +707,30 @@ const EnLocale: RuLocale = {
556
707
  name: 'Enter your name',
557
708
  email: 'Enter your email',
558
709
  phone: 'Enter your phone number',
559
- comment: 'Your comment'
710
+ comment: 'Your comment',
560
711
  },
561
712
  validation: {
562
713
  required: 'This field is required',
563
- phone: 'Phone number must contain {n} digits'
564
- }
565
- }
714
+ phone: 'Phone number must contain {n} digits',
715
+ },
716
+ },
566
717
  },
567
718
  mobile_navigation: {
568
719
  contacts: {
569
720
  first_type: 'LLP "Alldata"',
570
721
  second_type: 'LLP "ADATA Consulting"',
571
722
  allData: {
572
- address: "Address",
573
- address_info: "Kazakhstan, Almaty, Khojanov St., 79",
574
- email: "Email",
575
- mode: "Working hours",
576
- mode_info: "9:00 - 18:00, Mon - Fri",
577
- sales_department: "Sales Department",
578
- technical_support: "Technical Support",
579
- support_link_title: 'Go to chat with support'
580
- }
581
- },
582
- content: {}
723
+ address: 'Address',
724
+ address_info: 'Kazakhstan, Almaty, Khojanov St., 79',
725
+ email: 'Email',
726
+ mode: 'Working hours',
727
+ mode_info: '9:00 - 18:00, Mon - Fri',
728
+ sales_department: 'Sales Department',
729
+ technical_support: 'Technical Support',
730
+ support_link_title: 'Go to chat with support',
731
+ },
732
+ },
733
+ content: {},
583
734
  },
584
735
  illustrations: {
585
736
  afterLogInBlock: {
@@ -587,7 +738,61 @@ const EnLocale: RuLocale = {
587
738
  login: 'Log In',
588
739
  },
589
740
  },
590
- all_services: 'All services'
741
+ all_services: 'All services',
742
+ error: {
743
+ required: 'Required field',
744
+ validation: 'Validation failed',
745
+ user_canceled_auth: 'You canceled the authorization',
746
+ email_not_verified: 'Email is not verified',
747
+ email: 'Invalid email',
748
+ otp: 'You entered an incorrect code',
749
+ authorization_error_with_yandex: 'Failed to sign in with Yandex',
750
+ authorization_error_with_google: 'Failed to sign in with Google',
751
+ authorization_error_with_mailru: 'Failed to sign in with Mail.ru',
752
+ },
753
+ info: {
754
+ userAgreement: 'I, the user of the information system "Adata", continuing to work on the portal, confirm my agreement that I bear responsibility for all actions taken in accordance with the legislation of the Republic of Kazakhstan',
755
+ },
756
+ "payment": {
757
+ "bank": {
758
+ "description": "Account top-up on Adata service",
759
+ "payError": "Payment failed. Please try again later.",
760
+ "paySuccess": "Your account has been successfully topped up"
761
+ },
762
+ "banner": {
763
+ "title": "Access to extended information in a paid plan",
764
+ "subtitle": "Buy one-time access or {tariffs}",
765
+ "tariffs": "view tariffs"
766
+ },
767
+ "topUp": {
768
+ "title": "Top up balance",
769
+ "balance": "Balance:",
770
+ "info": "Funds will be credited in tenge!",
771
+ "enterAmount": "Enter amount"
772
+ },
773
+ "method": {
774
+ "title": "Payment method",
775
+ "description": "Choose a payment system to complete the transaction",
776
+ "note": "Will be credited:",
777
+ "kaspi": "Kaspi",
778
+ "other": "Other bank"
779
+ },
780
+ "kaspi": {
781
+ "title": "Kaspi.kz",
782
+ "description": "Choose a payment system to complete the transaction",
783
+ "qr": "Kaspi QR",
784
+ "scan": "Scan and pay",
785
+ "changeMethod": "Change payment method",
786
+ "adata": "Adata.kz - Search and verification of counterparties"
787
+ },
788
+ "redirect": {
789
+ "title": "You will now be redirected to Kaspi.kz",
790
+ "paymentId": "Your order number:",
791
+ "description": "After completing the payment, you can close the widget or return",
792
+ "goKaspi": "Go to Kaspi.kz",
793
+ "changeMethod": "Change payment method"
794
+ }
795
+ }
591
796
  }
592
797
 
593
798
  export default EnLocale