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.
- package/.editorconfig +12 -12
- package/.nuxtrc +1 -1
- package/.playground/app.config.ts +5 -5
- package/README.md +75 -75
- package/app.config.ts +4 -3
- package/app.vue +1 -0
- package/assets/styles/index.scss +104 -0
- package/assets/styles/modules/_base.scss +5 -0
- package/assets/styles/modules/_typography.scss +152 -0
- package/components/elements/README.md +1 -1
- package/components/elements/accordion/AAccordion.vue +13 -12
- package/components/elements/curve-block/ACurveBlock.vue +94 -19
- package/components/elements/feature-description/AFeatureDescription.vue +4 -4
- package/components/elements/illustrations/noAccess.vue +11 -2
- package/components/elements/photos-animation/APhotosAnimation.vue +3 -1
- package/components/elements/select/ASelect.vue +65 -9
- package/components/features/lang-switcher/lang-switcher.vue +8 -1
- package/components/features/payment/banner/BasicPlusLimitBanner.vue +104 -0
- package/components/features/payment/banner/PaymentBanner.vue +108 -0
- package/components/features/payment/process/PaymentKaspiQrSidePanel.vue +158 -0
- package/components/features/payment/process/PaymentKaspiRedirectSidePanel.vue +112 -0
- package/components/features/payment/process/PaymentMethodSidePanel.vue +121 -0
- package/components/features/payment/process/PaymentProcess.vue +138 -0
- package/components/features/payment/process/PaymentTopUpSidePanel.vue +130 -0
- package/components/features/pk-mobile-services/APkMobileServices.vue +21 -2
- package/components/forms/README.md +1 -1
- package/components/forms/checkbox/ACheckbox.vue +0 -2
- package/components/forms/radio-button/ARadioButton.vue +21 -13
- package/components/forms/request-demo/ARequestDemo.vue +21 -7
- package/components/modals/AConfirmationEmail.vue +40 -0
- package/components/modals/AnotherDeviceModal.vue +3 -2
- package/components/modals/ConnectingTariffModal.vue +0 -1
- package/components/modals/ContentNavigationModal.vue +148 -75
- package/components/modals/Insufficient-funds-modal.vue +5 -2
- package/components/modals/LimitReachedModal.vue +4 -3
- package/components/modals/ReportBugModal.vue +3 -3
- package/components/modals/Resend.vue +82 -0
- package/components/modals/SubmitApplicationModal.vue +4 -0
- package/components/modals/id/AuthModal.vue +78 -0
- package/components/modals/id/IdAutoLogoutModal.vue +45 -0
- package/components/modals/id/IdBanner.vue +58 -0
- package/components/modals/id/IdConfirmAccountOtpModal.vue +186 -0
- package/components/modals/id/IdConfirmSuccessfulModal.vue +41 -0
- package/components/modals/id/IdLoginModal.vue +316 -0
- package/components/modals/id/IdModals.vue +114 -0
- package/components/modals/id/IdNewPasswordModal.vue +129 -0
- package/components/modals/id/IdOtpInput.vue +155 -0
- package/components/modals/id/IdPasswordSuccessfulModal.vue +25 -0
- package/components/modals/id/IdRecoveryModal.vue +117 -0
- package/components/modals/id/IdRegistrationModal.vue +215 -0
- package/components/modals/id/IdResetPasswordOtpModal.vue +158 -0
- package/components/modals/id/IdTwoFactorModal.vue +130 -0
- package/components/navigation/README.md +1 -1
- package/components/navigation/bottom-navigation/ABottomNavigation.vue +34 -29
- package/components/navigation/footer/AFooter.vue +210 -57
- package/components/navigation/footer/ui/{new-footer-accordion.vue → a-footer-accordion.vue} +2 -4
- package/components/navigation/header/AHeader.vue +59 -51
- package/components/navigation/header/AlmatyContacts.vue +16 -14
- package/components/navigation/header/AstanaContacts.vue +13 -11
- package/components/navigation/header/CardGallery.vue +5 -4
- package/components/navigation/header/HeaderLink.vue +16 -8
- package/components/navigation/header/NavList.vue +21 -5
- package/components/navigation/header/ProductMenu.vue +8 -78
- package/components/navigation/header/ProfileMenu.vue +10 -5
- package/components/navigation/header/TopHeader.vue +2 -2
- package/components/navigation/mobile-navigation/AMobileNavigation.vue +3 -3
- package/components/navigation/pill-tabs/APillTabs.vue +18 -4
- package/components/navigation/pill-tabs/types.ts +1 -0
- package/components/navigation/side-navigation/ASideNavigation.vue +23 -21
- package/components/overlays/README.md +1 -1
- package/components/overlays/side-panel/ASidePanel.vue +439 -0
- package/components/overlays/tooltip/ATooltip.vue +149 -154
- package/components/utils/removeTrailingSlash.ts +7 -0
- package/composables/useBuyTariffs.ts +91 -0
- package/composables/useHeaderNavigationLinks.ts +174 -297
- package/composables/useIdModals.ts +36 -0
- package/composables/usePayment.ts +74 -0
- package/composables/useUrls.ts +21 -0
- package/eslint.config.mjs +45 -0
- package/icons/adata-logo.vue +1 -1
- package/icons/ai-assistant.vue +13 -0
- package/icons/akimat.vue +20 -0
- package/icons/arrow/arrow-bottom-left-on-square.vue +1 -1
- package/icons/arrow/arrow-circle-reset.vue +1 -1
- package/icons/arrow/arrow-corner.vue +1 -1
- package/icons/arrow/arrow-graph-down.vue +1 -1
- package/icons/arrow/arrow-graph-up.vue +1 -1
- package/icons/arrow/arrow-square-down.vue +1 -1
- package/icons/arrow/arrow-top-right-on-square.vue +1 -1
- package/icons/arrow-currency-gray.vue +1 -1
- package/icons/arrow-currency-green.vue +1 -1
- package/icons/arrow-currency-red.vue +1 -1
- package/icons/avatar.vue +1 -1
- package/icons/bank.vue +5 -0
- package/icons/block.vue +1 -1
- package/icons/bookmark/bookmark-filled.vue +1 -1
- package/icons/bookmark/bookmark.vue +1 -1
- package/icons/browsers/browser-duck.vue +1 -1
- package/icons/browsers/browser-google.vue +7 -1
- package/icons/browsers/browser-yandex.vue +1 -1
- package/icons/building-vector.vue +1 -1
- package/icons/calculator.vue +1 -1
- package/icons/calendar.vue +1 -1
- package/icons/car.vue +1 -1
- package/icons/chart-bar.vue +5 -0
- package/icons/chart-pie.vue +16 -0
- package/icons/check/check-circle.vue +1 -1
- package/icons/check/check.vue +1 -1
- package/icons/check/checkmark-circle.vue +1 -1
- package/icons/check-sb.vue +7 -0
- package/icons/checkbox/checkbox-active.vue +1 -1
- package/icons/checkbox/checkbox-empty.vue +1 -1
- package/icons/checkbox/checkbox-intermediate.vue +1 -1
- package/icons/chevron/chevron-down.vue +1 -1
- package/icons/chevron/chevron-left.vue +1 -1
- package/icons/chevron/chevron-right.vue +1 -1
- package/icons/chevron/chevron-up.vue +1 -1
- package/icons/chevron/double-chevron-right.vue +1 -1
- package/icons/clipboard-text.vue +1 -1
- package/icons/clock.vue +1 -1
- package/icons/company/company-bazis.vue +3 -3
- package/icons/company/company-bereke.vue +13 -13
- package/icons/company/company-bigroup.vue +5 -5
- package/icons/company/company-erg.vue +6 -6
- package/icons/company/company-forte.vue +11 -11
- package/icons/company/company-halyk.vue +4 -4
- package/icons/company/company-jusan.vue +20 -3
- package/icons/company/company-kaspi.vue +3 -3
- package/icons/company/company-mycar.vue +2 -2
- package/icons/company/company-samruk.vue +9 -9
- package/icons/company-egov-small.vue +1 -1
- package/icons/company.vue +1 -1
- package/icons/copy.vue +1 -1
- package/icons/currency/currency-dollar.vue +1 -1
- package/icons/currency/currency-down.vue +1 -1
- package/icons/currency/currency-eur.vue +1 -1
- package/icons/currency/currency-rub.vue +1 -1
- package/icons/currency/currency-tenge.vue +9 -0
- package/icons/currency/currency-usd.vue +1 -1
- package/icons/currency/currency-yuan.vue +1 -1
- package/icons/delete.vue +1 -1
- package/icons/document.vue +1 -1
- package/icons/download.vue +1 -1
- package/icons/edit.vue +1 -1
- package/icons/education.vue +1 -1
- package/icons/egov-small.vue +1 -1
- package/icons/excel-icon.vue +14 -0
- package/icons/expand-window.vue +1 -1
- package/icons/eye-closed.vue +1 -1
- package/icons/eye-open.vue +1 -1
- package/icons/eye-opened.vue +1 -1
- package/icons/file/file.vue +1 -1
- package/icons/filter.vue +1 -1
- package/icons/flag.vue +1 -1
- package/icons/gift.vue +1 -1
- package/icons/globe.vue +1 -1
- package/icons/google.vue +41 -0
- package/icons/hand/hand-thumb-up-filled.vue +1 -1
- package/icons/hand/hand-thumb-up.vue +1 -1
- package/icons/hand-with-phone/hand-with-phone-dark.vue +1 -1
- package/icons/hand-with-phone/hand-with-phone-light.vue +1 -1
- package/icons/handshake.vue +1 -1
- package/icons/hcheck.vue +1 -1
- package/icons/hdocument.vue +1 -1
- package/icons/history.vue +1 -1
- package/icons/horizontal-more.vue +1 -1
- package/icons/hot-line.vue +6 -0
- package/icons/hummer.vue +1 -1
- package/icons/info/info-circle.vue +1 -1
- package/icons/invoice.vue +1 -1
- package/icons/kaspi-qr.vue +13 -0
- package/icons/link-chain.vue +1 -1
- package/icons/link.vue +1 -1
- package/icons/linkedin.vue +24 -24
- package/icons/loader-circle.vue +1 -1
- package/icons/location.vue +1 -1
- package/icons/lock.vue +1 -1
- package/icons/logo.vue +1 -1
- package/icons/logout.vue +1 -1
- package/icons/magnify/magnifying-glass-minus.vue +1 -1
- package/icons/magnify/magnifying-glass-plus.vue +1 -1
- package/icons/magnify/magnifying-glass.vue +1 -1
- package/icons/mail.vue +1 -1
- package/icons/mailru.vue +34 -0
- package/icons/main-filter.vue +1 -1
- package/icons/map/map-pin-filled.vue +1 -1
- package/icons/map/map-pin-rect.vue +1 -1
- package/icons/map/map-pin.vue +1 -1
- package/icons/map-marker-start.vue +1 -1
- package/icons/medal.vue +1 -1
- package/icons/menu-filled.vue +1 -1
- package/icons/menu.vue +1 -1
- package/icons/message/message.vue +1 -1
- package/icons/minus/minus-circle.vue +1 -1
- package/icons/money.vue +1 -1
- package/icons/monitoring.vue +1 -1
- package/icons/moon.vue +1 -1
- package/icons/more.vue +1 -1
- package/icons/notification.vue +1 -1
- package/icons/paperclip.vue +1 -1
- package/icons/payment/payment-card.vue +1 -1
- package/icons/payment/payment-kaspi.vue +1 -1
- package/icons/person-vector.vue +1 -1
- package/icons/person-with-briefcase.vue +1 -1
- package/icons/phone-filled.vue +1 -1
- package/icons/phone.vue +1 -1
- package/icons/plus/plus-circle.vue +1 -1
- package/icons/plus/plus.vue +1 -1
- package/icons/profile.vue +1 -1
- package/icons/radio/radio-check.vue +1 -1
- package/icons/radio/radio-empty.vue +1 -1
- package/icons/receipt.vue +1 -1
- package/icons/sanctions.vue +8 -0
- package/icons/scales/scale.vue +1 -1
- package/icons/scales/scales.vue +1 -1
- package/icons/scales/standing-scales.vue +1 -1
- package/icons/search.vue +1 -1
- package/icons/share/share-alt.vue +1 -1
- package/icons/share/share.vue +1 -1
- package/icons/socials/face-book.vue +1 -1
- package/icons/socials/instagram.vue +1 -1
- package/icons/socials/telegram.vue +1 -1
- package/icons/socials/tik-tok.vue +1 -1
- package/icons/socials/youtube.vue +1 -1
- package/icons/sort/sort-asc.vue +1 -1
- package/icons/sort/sort-desc.vue +1 -1
- package/icons/splitting-arrows.vue +1 -1
- package/icons/star/star-filled.vue +1 -1
- package/icons/star/star-half-filled.vue +1 -1
- package/icons/star/star.vue +1 -1
- package/icons/sun.vue +14 -14
- package/icons/sviazi.vue +1 -1
- package/icons/tag.vue +1 -1
- package/icons/tasks.vue +10 -0
- package/icons/tender-search.vue +1 -1
- package/icons/toasts/check-circle-toast.vue +1 -1
- package/icons/toasts/warning-triangle-toast.vue +1 -1
- package/icons/trash.vue +1 -1
- package/icons/triangle.vue +1 -1
- package/icons/truck.vue +1 -1
- package/icons/user.vue +1 -1
- package/icons/users-focus.vue +1 -1
- package/icons/users.vue +1 -1
- package/icons/warning/warning-circle.vue +1 -1
- package/icons/warning/warning-triangle-filled.vue +1 -1
- package/icons/warning/warning-triangle.vue +1 -1
- package/icons/whatsapp.vue +1 -1
- package/icons/work-bag.vue +1 -1
- package/icons/work-case.vue +9 -0
- package/icons/work-search.vue +1 -1
- package/icons/work.vue +1 -1
- package/icons/x-mark.vue +1 -1
- package/icons/yandex.vue +28 -0
- package/illustrations/address-location.vue +1 -1
- package/illustrations/ball-with-chain.vue +1 -1
- package/illustrations/bill.vue +1 -1
- package/illustrations/buildings.vue +1 -1
- package/illustrations/calendar.vue +1 -1
- package/illustrations/chains.vue +1 -1
- package/illustrations/coin-percent.vue +1 -1
- package/illustrations/coins-stack.vue +1 -1
- package/illustrations/delete-dark.vue +1 -1
- package/illustrations/delete.vue +1 -1
- package/illustrations/doc-with-stamp.vue +1 -1
- package/illustrations/document.vue +1 -1
- package/illustrations/door.vue +1 -1
- package/illustrations/empty-box.vue +1 -1
- package/illustrations/empty-wallet.vue +1 -1
- package/illustrations/graph-in-coin.vue +1 -1
- package/illustrations/hammer.vue +1 -1
- package/illustrations/hand-cash.vue +1 -1
- package/illustrations/info.vue +1 -1
- package/illustrations/mail.vue +1 -1
- package/illustrations/ok.vue +1 -1
- package/illustrations/people-group.vue +1 -1
- package/illustrations/person-with-phone.vue +1 -1
- package/illustrations/person.vue +1 -1
- package/illustrations/phone-check.vue +1 -1
- package/illustrations/phone-payment-method.vue +1 -1
- package/illustrations/stop-hand.vue +1 -1
- package/illustrations/stop-sign.vue +1 -1
- package/illustrations/suit.vue +1 -1
- package/illustrations/suitcase.vue +1 -1
- package/illustrations/terminal-dark.vue +1 -1
- package/illustrations/terminal.vue +1 -1
- package/illustrations/trash-can.vue +1 -1
- package/illustrations/turn-on-tariff.vue +1 -1
- package/illustrations/two-persons.vue +1 -1
- package/lang/en.ts +475 -270
- package/lang/kk.ts +476 -271
- package/lang/ru.ts +315 -107
- package/layouts/default.vue +13 -13
- package/nuxt.config.ts +42 -14
- package/package.json +69 -53
- package/public/kaspi/logo.svg +4 -0
- package/shared/constans/pages.ts +17 -2
- package/tailwind.config.ts +163 -0
- package/vitest.config.ts +14 -0
- package/.eslintrc.cjs +0 -4
- package/.playground/app.vue +0 -9
- package/.playground/pages/index.vue +0 -13
- package/.prettierignore +0 -24
- package/.prettierrc +0 -10
- package/assets/styles/index.css +0 -226
- package/components/modals/AuthModal.vue +0 -50
- package/components/navigation/footer/NewFooter.vue +0 -276
- package/components/navigation/footer/ui/footer-acccordion.vue +0 -119
package/lang/en.ts
CHANGED
|
@@ -1,363 +1,415 @@
|
|
|
1
|
-
import Ru from
|
|
2
|
-
|
|
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:
|
|
8
|
-
long:
|
|
8
|
+
short: 'RU',
|
|
9
|
+
long: 'Русский',
|
|
9
10
|
},
|
|
10
11
|
kk: {
|
|
11
|
-
short:
|
|
12
|
-
long:
|
|
12
|
+
short: 'KZ',
|
|
13
|
+
long: 'Қазақша',
|
|
13
14
|
},
|
|
14
15
|
en: {
|
|
15
|
-
short:
|
|
16
|
-
long:
|
|
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:
|
|
25
|
-
daysLeft:
|
|
27
|
+
requestLimit: 'Daily request limit',
|
|
28
|
+
daysLeft: 'Days left',
|
|
26
29
|
},
|
|
27
30
|
profile: {
|
|
28
|
-
tariff:
|
|
29
|
-
balance:
|
|
30
|
-
connected:
|
|
31
|
-
currentBalance:
|
|
32
|
-
addBalance:
|
|
33
|
-
requests:
|
|
34
|
-
daysLeft:
|
|
35
|
-
currentTheme:
|
|
36
|
-
colorScheme:
|
|
37
|
-
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:
|
|
40
|
-
security:
|
|
41
|
-
work:
|
|
42
|
-
paymentHistory:
|
|
43
|
-
notifications:
|
|
44
|
-
favourites:
|
|
45
|
-
myReports:
|
|
46
|
-
browsingHistory:
|
|
47
|
-
myGroups:
|
|
48
|
-
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:
|
|
53
|
-
tariffs:
|
|
54
|
-
useful:
|
|
55
|
-
apiDescription:
|
|
56
|
-
termsOfUse:
|
|
57
|
-
privacyPolicy:
|
|
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:
|
|
61
|
-
tariffs:
|
|
62
|
-
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:
|
|
70
|
+
label: 'Counterparties',
|
|
67
71
|
items: {
|
|
68
72
|
counterparty: {
|
|
69
|
-
title:
|
|
70
|
-
subtitle:
|
|
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:
|
|
74
|
-
subtitle:
|
|
77
|
+
title: 'Mass check',
|
|
78
|
+
subtitle: 'Check affiliations between employees and your counterparties',
|
|
75
79
|
},
|
|
76
80
|
foreign: {
|
|
77
|
-
title:
|
|
78
|
-
subtitle:
|
|
81
|
+
title: 'Foreign counterparties',
|
|
82
|
+
subtitle: 'History and legal status, any legal issues or disputes',
|
|
79
83
|
},
|
|
80
84
|
compare: {
|
|
81
|
-
title:
|
|
82
|
-
subtitle:
|
|
85
|
+
title: 'Comparison of counterparties',
|
|
86
|
+
subtitle: '',
|
|
83
87
|
},
|
|
84
88
|
networks: {
|
|
85
|
-
title:
|
|
86
|
-
subtitle:
|
|
89
|
+
title: 'Indirect connections',
|
|
90
|
+
subtitle: '',
|
|
87
91
|
},
|
|
88
92
|
unloading: {
|
|
89
|
-
title:
|
|
90
|
-
subtitle:
|
|
93
|
+
title: 'Data export',
|
|
94
|
+
subtitle: 'Get data about competitors or potential clients',
|
|
91
95
|
},
|
|
92
96
|
sanction: {
|
|
93
|
-
title:
|
|
94
|
-
subtitle:
|
|
97
|
+
title: 'Sanction lists',
|
|
98
|
+
subtitle: '',
|
|
95
99
|
},
|
|
96
100
|
offshore: {
|
|
97
|
-
title:
|
|
98
|
-
subtitle:
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
+
title: 'Offshore lists',
|
|
102
|
+
subtitle: '',
|
|
103
|
+
},
|
|
104
|
+
},
|
|
101
105
|
},
|
|
102
106
|
jobs: {
|
|
103
|
-
label:
|
|
107
|
+
label: 'Jobs',
|
|
104
108
|
items: {
|
|
105
109
|
vacancies: {
|
|
106
|
-
title:
|
|
107
|
-
subtitle:
|
|
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:
|
|
111
|
-
subtitle:
|
|
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:
|
|
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:
|
|
120
|
-
subtitle:
|
|
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:
|
|
124
|
-
subtitle:
|
|
151
|
+
title: 'Contract search',
|
|
152
|
+
subtitle: 'Study key trends, consumption patterns, and forecast demand for future periods',
|
|
125
153
|
},
|
|
126
154
|
procurement: {
|
|
127
|
-
title:
|
|
128
|
-
subtitle:
|
|
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:
|
|
161
|
+
label: 'Fines',
|
|
134
162
|
items: {
|
|
135
163
|
fines: {
|
|
136
|
-
title:
|
|
137
|
-
subtitle:
|
|
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:
|
|
141
|
-
subtitle:
|
|
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:
|
|
145
|
-
subtitle:
|
|
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:
|
|
178
|
+
label: 'Analytics',
|
|
151
179
|
items: {
|
|
152
180
|
clients: {
|
|
153
|
-
title:
|
|
154
|
-
subtitle:
|
|
181
|
+
title: 'Client search',
|
|
182
|
+
subtitle: 'Current contact database of potential clients in Kazakhstan',
|
|
155
183
|
},
|
|
156
184
|
procurement: {
|
|
157
|
-
title:
|
|
158
|
-
subtitle:
|
|
185
|
+
title: 'Procurement analysis',
|
|
186
|
+
subtitle: 'Evaluate the volume of competitors\' procurements over a certain period',
|
|
159
187
|
},
|
|
160
188
|
activity: {
|
|
161
|
-
title:
|
|
162
|
-
subtitle:
|
|
189
|
+
title: 'Business activity index',
|
|
190
|
+
subtitle: 'Assessment of market risk of current business activity',
|
|
163
191
|
},
|
|
164
192
|
subjects: {
|
|
165
|
-
title:
|
|
166
|
-
subtitle:
|
|
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:
|
|
170
|
-
subtitle:
|
|
171
|
-
}
|
|
172
|
-
}
|
|
197
|
+
title: 'Taxpayer ranking',
|
|
198
|
+
subtitle: 'Taxpayers who regularly pay taxes',
|
|
199
|
+
},
|
|
200
|
+
},
|
|
173
201
|
},
|
|
174
202
|
fea: {
|
|
175
|
-
label:
|
|
203
|
+
label: 'Foreign Economic Activity',
|
|
176
204
|
items: {
|
|
177
205
|
i: {
|
|
178
|
-
t:
|
|
179
|
-
st:
|
|
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:
|
|
183
|
-
st:
|
|
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:
|
|
187
|
-
st:
|
|
214
|
+
t: 'Customs-related sphere',
|
|
215
|
+
st: 'Lists, registries, and other reference information',
|
|
188
216
|
},
|
|
189
217
|
ca: {
|
|
190
|
-
t:
|
|
191
|
-
st:
|
|
218
|
+
t: 'Calculator',
|
|
219
|
+
st: 'Calculation of Customs Payments. Customs Duties. Customs Fees',
|
|
192
220
|
},
|
|
193
221
|
tr: {
|
|
194
|
-
t:
|
|
195
|
-
st:
|
|
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:
|
|
236
|
+
label: 'Compliance',
|
|
209
237
|
items: {
|
|
210
238
|
l: {
|
|
211
|
-
t:
|
|
212
|
-
st:
|
|
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:
|
|
227
|
-
subtitle:
|
|
278
|
+
title: 'Data export',
|
|
279
|
+
subtitle: 'Get a list of potential clients',
|
|
228
280
|
},
|
|
229
281
|
ved: {
|
|
230
|
-
title:
|
|
231
|
-
subtitle:
|
|
282
|
+
title: 'Foreign economic activity',
|
|
283
|
+
subtitle: 'A universal tool for international trade',
|
|
232
284
|
},
|
|
233
285
|
compliance: {
|
|
234
|
-
title:
|
|
286
|
+
title: 'Compliance',
|
|
235
287
|
subtitle:
|
|
236
|
-
|
|
288
|
+
'Automated compliance risk assessment: real-time business protection',
|
|
237
289
|
},
|
|
238
290
|
},
|
|
239
291
|
},
|
|
240
292
|
contacts: {
|
|
241
293
|
almaty: {
|
|
242
|
-
title:
|
|
294
|
+
title: 'Contacts of LLP \'Alldata\'',
|
|
243
295
|
adress: {
|
|
244
|
-
title:
|
|
245
|
-
subtitle:
|
|
296
|
+
title: 'Address',
|
|
297
|
+
subtitle: 'Kazakhstan, Almaty, Khojanov St., 79',
|
|
246
298
|
},
|
|
247
299
|
email: {
|
|
248
|
-
title:
|
|
300
|
+
title: 'Email',
|
|
249
301
|
},
|
|
250
302
|
schedule: {
|
|
251
|
-
title:
|
|
252
|
-
subtitle:
|
|
303
|
+
title: 'Working hours',
|
|
304
|
+
subtitle: '9:00 - 18:00, Mon - Fri',
|
|
253
305
|
},
|
|
254
306
|
sellDep: {
|
|
255
|
-
title:
|
|
307
|
+
title: 'Sales Department',
|
|
256
308
|
},
|
|
257
309
|
contactUs: {
|
|
258
|
-
title: 'Contact us'
|
|
310
|
+
title: 'Contact us',
|
|
259
311
|
},
|
|
260
312
|
support: {
|
|
261
|
-
title:
|
|
262
|
-
subtitle:
|
|
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:
|
|
323
|
+
title: 'Branch in Astana: LLP \'ADATA Consulting\'',
|
|
272
324
|
adress: {
|
|
273
|
-
title:
|
|
274
|
-
subtitle:
|
|
325
|
+
title: 'Address',
|
|
326
|
+
subtitle: 'Astana, Kunayev St., 29/1, \'Diplomat\' Business Center, 11th floor, Office 1108',
|
|
275
327
|
},
|
|
276
328
|
email: {
|
|
277
|
-
title:
|
|
329
|
+
title: 'Email',
|
|
278
330
|
},
|
|
279
331
|
schedule: {
|
|
280
|
-
title:
|
|
281
|
-
subtitle:
|
|
332
|
+
title: 'Working hours',
|
|
333
|
+
subtitle: '9:00 - 18:00, Mon - Fri',
|
|
282
334
|
},
|
|
283
335
|
sellDep: {
|
|
284
|
-
title:
|
|
336
|
+
title: 'Sales Department',
|
|
285
337
|
},
|
|
286
338
|
details: {
|
|
287
|
-
title:
|
|
288
|
-
subtitle:
|
|
289
|
-
}
|
|
339
|
+
title: 'Details',
|
|
340
|
+
subtitle: 'BIN: 090740016057',
|
|
341
|
+
},
|
|
290
342
|
},
|
|
291
|
-
toContacts:
|
|
343
|
+
toContacts: 'Go to Contacts page',
|
|
292
344
|
},
|
|
293
|
-
login:
|
|
294
|
-
oldVersion:
|
|
345
|
+
login: 'Login',
|
|
346
|
+
oldVersion: 'Old version of the site',
|
|
295
347
|
notifications: {
|
|
296
|
-
title:
|
|
297
|
-
seeAll:
|
|
298
|
-
noData:
|
|
299
|
-
}
|
|
348
|
+
title: 'Notifications',
|
|
349
|
+
seeAll: 'See all notifications',
|
|
350
|
+
noData: 'No new notifications',
|
|
351
|
+
},
|
|
300
352
|
},
|
|
301
353
|
footer: {
|
|
302
|
-
services:
|
|
303
|
-
useful:
|
|
354
|
+
services: 'Services',
|
|
355
|
+
useful: 'Useful',
|
|
304
356
|
contacts: {
|
|
305
|
-
title:
|
|
306
|
-
address:
|
|
307
|
-
goToChat:
|
|
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:
|
|
312
|
-
helpful:
|
|
313
|
-
api:
|
|
314
|
-
userAgreement:
|
|
315
|
-
privacyPolicy:
|
|
316
|
-
vacancy:
|
|
317
|
-
counterparty:
|
|
318
|
-
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:
|
|
322
|
-
checkCounterparties:
|
|
323
|
-
compareCounterparties:
|
|
324
|
-
indirectConnections:
|
|
325
|
-
massCheck:
|
|
326
|
-
foreignCounterparties:
|
|
327
|
-
sanctions:
|
|
328
|
-
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:
|
|
332
|
-
createFindVacancies:
|
|
333
|
-
createFindResume:
|
|
383
|
+
title: 'Jobs',
|
|
384
|
+
createFindVacancies: 'Create and Find Vacancies',
|
|
385
|
+
createFindResume: 'Create and Find Resume',
|
|
334
386
|
},
|
|
335
387
|
tenders: {
|
|
336
|
-
title:
|
|
337
|
-
searchTenders:
|
|
338
|
-
purchasePlans:
|
|
388
|
+
title: 'Tenders',
|
|
389
|
+
searchTenders: 'Search by Tenders',
|
|
390
|
+
purchasePlans: 'Procurement Plans',
|
|
339
391
|
},
|
|
340
392
|
fines: {
|
|
341
|
-
title:
|
|
342
|
-
checkFines:
|
|
343
|
-
checkAuto:
|
|
344
|
-
massCheckAuto:
|
|
393
|
+
title: 'Fines',
|
|
394
|
+
checkFines: 'Fine Check',
|
|
395
|
+
checkAuto: 'Car Check',
|
|
396
|
+
massCheckAuto: 'Mass Car Check',
|
|
345
397
|
},
|
|
346
398
|
analytics: {
|
|
347
|
-
title:
|
|
348
|
-
searchCustomers:
|
|
349
|
-
purchaseAnalysis:
|
|
350
|
-
businessActivityIndex:
|
|
351
|
-
taxpayerRanking:
|
|
352
|
-
businessEntities:
|
|
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:
|
|
356
|
-
i:
|
|
357
|
-
o:
|
|
358
|
-
cp:
|
|
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:
|
|
422
|
+
LLP: 'LLP',
|
|
371
423
|
},
|
|
372
424
|
our_clients: {
|
|
373
|
-
title:
|
|
425
|
+
title: 'Our Clients',
|
|
374
426
|
},
|
|
375
427
|
forms: {
|
|
376
428
|
feedback: {
|
|
377
|
-
title:
|
|
378
|
-
subtitle:
|
|
379
|
-
email:
|
|
380
|
-
phone:
|
|
381
|
-
comment:
|
|
382
|
-
send:
|
|
383
|
-
close:
|
|
384
|
-
fieldRequired:
|
|
385
|
-
emailValid:
|
|
386
|
-
phoneMinLength:
|
|
387
|
-
commentMinLength:
|
|
388
|
-
commentMaxLength:
|
|
389
|
-
modalTitle:
|
|
390
|
-
modalSubtitle:
|
|
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:
|
|
394
|
-
st:
|
|
445
|
+
t: 'Request Demo Access',
|
|
446
|
+
st: 'Fill out the form to request demo access',
|
|
395
447
|
e: 'Email',
|
|
396
|
-
n:
|
|
397
|
-
p:
|
|
398
|
-
c:
|
|
399
|
-
b:
|
|
448
|
+
n: 'Full Name',
|
|
449
|
+
p: 'Phone number',
|
|
450
|
+
c: 'Comment',
|
|
451
|
+
b: 'Request demo access',
|
|
400
452
|
},
|
|
401
453
|
request_demo: {
|
|
402
|
-
title: '
|
|
403
|
-
info: '
|
|
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:
|
|
467
|
-
content:
|
|
468
|
-
firstTime:
|
|
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:
|
|
472
|
-
content:
|
|
473
|
-
changedToBasic:
|
|
474
|
-
basicPlus:
|
|
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:
|
|
478
|
-
type_contacts:
|
|
628
|
+
type_main: 'Products and Solutions',
|
|
629
|
+
type_contacts: 'Contacts',
|
|
479
630
|
type_tariff: 'Tariffs',
|
|
480
|
-
type_login:
|
|
481
|
-
type_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:
|
|
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
|
|
650
|
+
questions: 'Funds will be deducted from your account, do you want to connect the tariff?',
|
|
500
651
|
},
|
|
501
652
|
replenish_modal: {
|
|
502
|
-
title:
|
|
503
|
-
info:
|
|
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:
|
|
509
|
-
current_balance:
|
|
510
|
-
questions:
|
|
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:
|
|
523
|
-
back:
|
|
524
|
-
buy:
|
|
525
|
-
topUp:
|
|
673
|
+
close: 'Close',
|
|
674
|
+
back: 'Cancel',
|
|
675
|
+
buy: 'Pay',
|
|
676
|
+
topUp: 'Top up',
|
|
526
677
|
goToMainPage: 'Go to Main Page',
|
|
527
|
-
logIn:
|
|
528
|
-
register:
|
|
529
|
-
goTariffs:
|
|
530
|
-
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:
|
|
573
|
-
address_info:
|
|
574
|
-
email:
|
|
575
|
-
mode:
|
|
576
|
-
mode_info:
|
|
577
|
-
sales_department:
|
|
578
|
-
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
|