@weareconceptstudio/account 0.0.5 → 0.0.6
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/dist/templates/AccountSettingsTemplate/AccountInfo/index.js +1 -1
- package/dist/templates/AccountSettingsTemplate/AccountInfo/utils.js +6 -6
- package/dist/templates/CartTemplate/index.d.ts +3 -1
- package/dist/templates/CartTemplate/index.js +3 -3
- package/dist/templates/ForgotPasswordTemplate/index.js +1 -1
- package/dist/translations/en.d.ts +1 -29
- package/dist/translations/en.js +1 -29
- package/dist/translations/hy.d.ts +158 -0
- package/dist/translations/hy.js +157 -0
- package/dist/translations/index.d.ts +345 -29
- package/dist/translations/index.js +3 -1
- package/dist/translations/ru.d.ts +188 -0
- package/dist/translations/ru.js +187 -0
- package/package.json +1 -1
|
@@ -23,7 +23,7 @@ const AccountInfo = ({ user, onAccountUpdate, displayFields = defaultDisplayFiel
|
|
|
23
23
|
React.createElement(Text, { text: `accountInformation`, className: `account-p account-p1 account-font-bold account-primary-color1` }),
|
|
24
24
|
!edit ? (React.createElement(React.Fragment, null,
|
|
25
25
|
React.createElement("div", { className: `info-wrap` }, displayFields.map((displayField, index) => (React.createElement("div", { key: index, className: `info-item-wrap` },
|
|
26
|
-
React.createElement(Text, { className: `account-p account-p3 account-font-bold account-primary-color1`, text: `${displayField.label}
|
|
26
|
+
React.createElement(Text, { className: `account-p account-p3 account-font-bold account-primary-color1`, text: `${displayField.label}` }),
|
|
27
27
|
"\u00A0",
|
|
28
28
|
React.createElement(Text, { className: `account-p account-p3 account-font-regular account-primary-color1`, text: user[displayField.value] || '-' }))))),
|
|
29
29
|
React.createElement(AccountButton, { text: `edit`, btnType: `green-large-text`, onClick: () => setEdit(true) }))) : (React.createElement(React.Fragment, null,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export const defaultDisplayFields = [
|
|
2
|
-
{ label: '
|
|
3
|
-
{ label: '
|
|
4
|
-
{ label: '
|
|
5
|
-
{ label: '
|
|
2
|
+
{ label: 'first_name', value: 'first_name' },
|
|
3
|
+
{ label: 'last_name', value: 'last_name' },
|
|
4
|
+
{ label: 'phone_', value: 'phone' },
|
|
5
|
+
{ label: 'email_', value: 'email' },
|
|
6
6
|
];
|
|
7
7
|
export const defaultFormFields = [
|
|
8
8
|
{
|
|
@@ -28,14 +28,14 @@ export const defaultFormFields = [
|
|
|
28
28
|
{
|
|
29
29
|
fieldType: 'phone',
|
|
30
30
|
labelProps: {
|
|
31
|
-
label: '
|
|
31
|
+
label: 'phone_input',
|
|
32
32
|
name: 'phone',
|
|
33
33
|
},
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
fieldType: 'input',
|
|
37
37
|
labelProps: {
|
|
38
|
-
label: '
|
|
38
|
+
label: 'email',
|
|
39
39
|
name: 'email',
|
|
40
40
|
},
|
|
41
41
|
fieldProps: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default CartTemplate;
|
|
2
|
-
declare function CartTemplate({ items, itemsCount, shippingCost, loading, children, shoppingUrl, subtotal, total, actions }: {
|
|
2
|
+
declare function CartTemplate({ items, itemsCount, shippingCost, loading, children, shoppingUrl, subtotal, total, actions, btnDisabled, checkoutUrl }: {
|
|
3
3
|
items: any;
|
|
4
4
|
itemsCount: any;
|
|
5
5
|
shippingCost: any;
|
|
@@ -9,5 +9,7 @@ declare function CartTemplate({ items, itemsCount, shippingCost, loading, childr
|
|
|
9
9
|
subtotal: any;
|
|
10
10
|
total: any;
|
|
11
11
|
actions: any;
|
|
12
|
+
btnDisabled: any;
|
|
13
|
+
checkoutUrl?: string;
|
|
12
14
|
}): React.JSX.Element;
|
|
13
15
|
import React from 'react';
|
|
@@ -2,14 +2,14 @@ import React from 'react';
|
|
|
2
2
|
import { Container, Page } from '@weareconceptstudio/core';
|
|
3
3
|
import { EmptyCart, TotalCheckout, AccountButton, SimpleCartItems } from '../../components';
|
|
4
4
|
import CartTemplateStyle from './style';
|
|
5
|
-
const CartTemplate = ({ items, itemsCount, shippingCost, loading, children, shoppingUrl, subtotal, total, actions }) => {
|
|
5
|
+
const CartTemplate = ({ items, itemsCount, shippingCost, loading, children, shoppingUrl, subtotal, total, actions, btnDisabled, checkoutUrl = '/checkout/' }) => {
|
|
6
6
|
return (React.createElement(Page, { className: 'cart use-account' },
|
|
7
7
|
React.createElement(Container, null,
|
|
8
8
|
React.createElement(CartTemplateStyle, null,
|
|
9
9
|
React.createElement(TotalCheckout, { total: total, subtotal: subtotal, itemsCount: itemsCount, shippingCost: shippingCost, buttonProps: {
|
|
10
|
-
url:
|
|
10
|
+
url: checkoutUrl,
|
|
11
11
|
text: 'proceedToCheckout',
|
|
12
|
-
disabled:
|
|
12
|
+
disabled: btnDisabled,
|
|
13
13
|
} }, itemsCount > 0 ? (React.createElement(React.Fragment, null,
|
|
14
14
|
React.createElement(SimpleCartItems, { data: items, smallFontSize: true, title: 'myCart', favorites: [], className: `cart-st-wrap`, additionalParameters: {
|
|
15
15
|
edit: { item: true, list: false },
|
|
@@ -60,7 +60,7 @@ const ForgotPasswordTemplate = ({ onFormSubmit }) => {
|
|
|
60
60
|
React.createElement(Text, { tag: 'h1', className: 'account-h2 account-font-bold account-primary-color1 title', text: 'forgotPassword' }),
|
|
61
61
|
React.createElement(Text, { className: 'account-p account-p2 account-font-regular account-primary-color1 description', text: 'forgotPasswordDescription' }),
|
|
62
62
|
React.createElement(Form, { onSubmit: handleFormFinish },
|
|
63
|
-
React.createElement(Form.Item, { name: 'email', label: 'email' },
|
|
63
|
+
React.createElement(Form.Item, { name: 'email', label: 'email', rules: [{ type: 'email' }] },
|
|
64
64
|
React.createElement(Input, { placeholder: 'emailPlaceholder' })),
|
|
65
65
|
React.createElement("div", { className: 'loginExternalBlock' },
|
|
66
66
|
React.createElement(Link, { href: '/sign-in' },
|
|
@@ -1,31 +1,18 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
login: string;
|
|
3
2
|
saveAndApply: string;
|
|
4
3
|
addNewAdd: string;
|
|
5
4
|
editCart: string;
|
|
6
5
|
shopNow: string;
|
|
7
6
|
firstName: string;
|
|
8
|
-
first_nameIsRequired: string;
|
|
9
7
|
lastName: string;
|
|
10
|
-
last_nameIsRequired: string;
|
|
11
8
|
email: string;
|
|
12
|
-
emailIsRequired: string;
|
|
13
|
-
invalidEmailAddress: string;
|
|
14
9
|
phone: string;
|
|
15
|
-
phoneIsRequired: string;
|
|
16
|
-
invalidPhoneNumber: string;
|
|
17
10
|
password: string;
|
|
18
|
-
passwordIsRequired: string;
|
|
19
|
-
invalidPassword: string;
|
|
20
|
-
invalidConfirmPassword: string;
|
|
21
|
-
password_confirmationIsRequired: string;
|
|
22
|
-
region: string;
|
|
23
|
-
regionPlaceholder: string;
|
|
24
|
-
regionIsRequired: string;
|
|
25
11
|
noData: string;
|
|
26
12
|
contactUs: string;
|
|
27
13
|
privacyPolicy: string;
|
|
28
14
|
welcomeBack: string;
|
|
15
|
+
login: string;
|
|
29
16
|
forgotPasswordLink: string;
|
|
30
17
|
accountText: string;
|
|
31
18
|
joinNow: string;
|
|
@@ -71,11 +58,8 @@ declare const _default: {
|
|
|
71
58
|
password_title: string;
|
|
72
59
|
cancel: string;
|
|
73
60
|
phone_input: string;
|
|
74
|
-
current_passwordIsRequired: string;
|
|
75
|
-
new_passwordIsRequired: string;
|
|
76
61
|
enterCurrentPassword: string;
|
|
77
62
|
enterNewPassword: string;
|
|
78
|
-
products: string;
|
|
79
63
|
firstNamePlaceholder: string;
|
|
80
64
|
lastNamePlaceholder: string;
|
|
81
65
|
emailPlaceholder: string;
|
|
@@ -190,8 +174,6 @@ declare const _default: {
|
|
|
190
174
|
partnership: string;
|
|
191
175
|
quantityWithSymbol: string;
|
|
192
176
|
saveChanges: string;
|
|
193
|
-
phone_numberIsRequired: string;
|
|
194
|
-
region_idIsRequired: string;
|
|
195
177
|
yourSettingsHaveBeenSaved: string;
|
|
196
178
|
yourPasswordHaveBeenChanged: string;
|
|
197
179
|
oopsNoResults: string;
|
|
@@ -233,20 +215,10 @@ declare const _default: {
|
|
|
233
215
|
yourReview: string;
|
|
234
216
|
upload: string;
|
|
235
217
|
submitReview: string;
|
|
236
|
-
ratingIsRequired: string;
|
|
237
|
-
titleIsRequired: string;
|
|
238
|
-
contentIsRequired: string;
|
|
239
218
|
is_recommendedIsRequired: string;
|
|
240
|
-
username: string;
|
|
241
|
-
usernamePlaceholder: string;
|
|
242
|
-
usernameIsRequired: string;
|
|
243
|
-
userName: string;
|
|
244
|
-
emptyFilterTitle: string;
|
|
245
|
-
emptyFilterDesc: string;
|
|
246
219
|
productReviewGuidelines: string;
|
|
247
220
|
archiveRegistry: string;
|
|
248
221
|
noteMessage: string;
|
|
249
|
-
addItemsToRegistry: string;
|
|
250
222
|
iRecommendThisProduct: string;
|
|
251
223
|
removeRegistryPopupTitle: string;
|
|
252
224
|
removeRegistryPopupDesc: string;
|
package/dist/translations/en.js
CHANGED
|
@@ -1,31 +1,18 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
login: 'Login',
|
|
3
2
|
saveAndApply: 'Save and Apply',
|
|
4
3
|
addNewAdd: '+ Add a new address',
|
|
5
4
|
editCart: 'Edit cart',
|
|
6
5
|
shopNow: 'Shop now',
|
|
7
6
|
firstName: 'First name',
|
|
8
|
-
first_nameIsRequired: 'Please enter your first name.',
|
|
9
7
|
lastName: 'Last name',
|
|
10
|
-
last_nameIsRequired: 'Please enter your last name.',
|
|
11
8
|
email: 'Email',
|
|
12
|
-
emailIsRequired: 'Please enter your email.',
|
|
13
|
-
invalidEmailAddress: 'Please enter a valid email address.',
|
|
14
9
|
phone: 'Phone',
|
|
15
|
-
phoneIsRequired: 'Please enter your phone.',
|
|
16
|
-
invalidPhoneNumber: 'Please enter a valid phone number.',
|
|
17
10
|
password: 'Password',
|
|
18
|
-
passwordIsRequired: 'Please enter your password.',
|
|
19
|
-
invalidPassword: 'Password must contain lowercase, uppercase, number and has been min 8 characters.',
|
|
20
|
-
invalidConfirmPassword: 'Password confirmation is not correct.',
|
|
21
|
-
password_confirmationIsRequired: 'Please enter your confirmed password.',
|
|
22
|
-
region: 'Region',
|
|
23
|
-
regionPlaceholder: 'Select region',
|
|
24
|
-
regionIsRequired: 'Please enter your region.',
|
|
25
11
|
noData: 'No data',
|
|
26
12
|
contactUs: 'Contact us',
|
|
27
13
|
privacyPolicy: 'Privacy policy',
|
|
28
14
|
welcomeBack: 'Welcome back!',
|
|
15
|
+
login: 'Login',
|
|
29
16
|
forgotPasswordLink: 'Forgot Password?',
|
|
30
17
|
accountText: 'Don’t have an account?',
|
|
31
18
|
joinNow: 'Join now',
|
|
@@ -71,11 +58,8 @@ export default {
|
|
|
71
58
|
password_title: 'Password',
|
|
72
59
|
cancel: 'Cancel',
|
|
73
60
|
phone_input: 'Phone',
|
|
74
|
-
current_passwordIsRequired: 'Please enter your current password.',
|
|
75
|
-
new_passwordIsRequired: 'Please enter your new password.',
|
|
76
61
|
enterCurrentPassword: 'Enter current password',
|
|
77
62
|
enterNewPassword: 'Enter new password',
|
|
78
|
-
products: 'products',
|
|
79
63
|
firstNamePlaceholder: 'First name',
|
|
80
64
|
lastNamePlaceholder: 'Last name',
|
|
81
65
|
emailPlaceholder: 'Email',
|
|
@@ -190,8 +174,6 @@ export default {
|
|
|
190
174
|
partnership: 'Partnership',
|
|
191
175
|
quantityWithSymbol: 'Quantity:',
|
|
192
176
|
saveChanges: 'Save changes',
|
|
193
|
-
phone_numberIsRequired: 'Please enter your phone.',
|
|
194
|
-
region_idIsRequired: 'Please enter your region.',
|
|
195
177
|
yourSettingsHaveBeenSaved: 'Your settings have been saved.',
|
|
196
178
|
yourPasswordHaveBeenChanged: 'Your password has been changed.',
|
|
197
179
|
oopsNoResults: 'Oops, no results.',
|
|
@@ -233,20 +215,10 @@ export default {
|
|
|
233
215
|
yourReview: 'Your review',
|
|
234
216
|
upload: 'Upload',
|
|
235
217
|
submitReview: 'Submit review',
|
|
236
|
-
ratingIsRequired: 'Please rate the item.',
|
|
237
|
-
titleIsRequired: 'Please add a title to your review.',
|
|
238
|
-
contentIsRequired: 'Your review must be at least 25 characters in length. Please try again.',
|
|
239
218
|
is_recommendedIsRequired: 'Please select.',
|
|
240
|
-
username: 'Username',
|
|
241
|
-
usernamePlaceholder: 'Username',
|
|
242
|
-
usernameIsRequired: 'Please enter your username.',
|
|
243
|
-
userName: 'Username:',
|
|
244
|
-
emptyFilterTitle: 'No results matching your filters',
|
|
245
|
-
emptyFilterDesc: 'Please adjust your criteria or explore other categories to discover the perfect shop.',
|
|
246
219
|
productReviewGuidelines: 'Product review guidelines',
|
|
247
220
|
archiveRegistry: 'Archive registry',
|
|
248
221
|
noteMessage: 'Note message',
|
|
249
|
-
addItemsToRegistry: 'Add items to registry',
|
|
250
222
|
iRecommendThisProduct: 'I recommend this product',
|
|
251
223
|
removeRegistryPopupTitle: "Are you sure you'd like to remove your registry?",
|
|
252
224
|
removeRegistryPopupDesc: 'It will no longer be accessible in stores or online.',
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
saveAndApply: string;
|
|
3
|
+
addNewAdd: string;
|
|
4
|
+
editCart: string;
|
|
5
|
+
shopNow: string;
|
|
6
|
+
firstName: string;
|
|
7
|
+
lastName: string;
|
|
8
|
+
email: string;
|
|
9
|
+
phone: string;
|
|
10
|
+
password: string;
|
|
11
|
+
noData: string;
|
|
12
|
+
contactUs: string;
|
|
13
|
+
privacyPolicy: string;
|
|
14
|
+
welcomeBack: string;
|
|
15
|
+
login: string;
|
|
16
|
+
forgotPasswordLink: string;
|
|
17
|
+
accountText: string;
|
|
18
|
+
joinNow: string;
|
|
19
|
+
forgotPassword: string;
|
|
20
|
+
forgotPasswordDescription: string;
|
|
21
|
+
submit: string;
|
|
22
|
+
thankYou: string;
|
|
23
|
+
recoveryText: string;
|
|
24
|
+
tryAgainText: string;
|
|
25
|
+
tryAgain: string;
|
|
26
|
+
newPassword: string;
|
|
27
|
+
confirmNewPassword: string;
|
|
28
|
+
resetPassword: string;
|
|
29
|
+
successfullyMessage: string;
|
|
30
|
+
registration: string;
|
|
31
|
+
alreadyHaveAnAccount: string;
|
|
32
|
+
signUp: string;
|
|
33
|
+
checkedText1: string;
|
|
34
|
+
checkedText2: string;
|
|
35
|
+
verifyYourEmail: string;
|
|
36
|
+
verifyText1: string;
|
|
37
|
+
verifyText2: string;
|
|
38
|
+
verify: string;
|
|
39
|
+
haveNotReceivedIt: string;
|
|
40
|
+
resendNewCode: string;
|
|
41
|
+
deleteAccountTextPart1: string;
|
|
42
|
+
deleteAccountTextPart2: string;
|
|
43
|
+
deleteAccountTextPart3: string;
|
|
44
|
+
codeResendSuccessTitle: string;
|
|
45
|
+
codeResendSuccessSubtitle: string;
|
|
46
|
+
myAccount: string;
|
|
47
|
+
accountSettings: string;
|
|
48
|
+
orderHistory: string;
|
|
49
|
+
addresses: string;
|
|
50
|
+
signOut: string;
|
|
51
|
+
accountInformation: string;
|
|
52
|
+
edit: string;
|
|
53
|
+
first_name: string;
|
|
54
|
+
last_name: string;
|
|
55
|
+
phone_: string;
|
|
56
|
+
email_: string;
|
|
57
|
+
password_: string;
|
|
58
|
+
password_title: string;
|
|
59
|
+
cancel: string;
|
|
60
|
+
phone_input: string;
|
|
61
|
+
enterCurrentPassword: string;
|
|
62
|
+
enterNewPassword: string;
|
|
63
|
+
firstNamePlaceholder: string;
|
|
64
|
+
lastNamePlaceholder: string;
|
|
65
|
+
emailPlaceholder: string;
|
|
66
|
+
passwordPlaceholder: string;
|
|
67
|
+
phonePlaceholder: string;
|
|
68
|
+
enterCurrentPasswordPlaceholder: string;
|
|
69
|
+
enterNewPasswordPlaceholder: string;
|
|
70
|
+
newPasswordPlaceholder: string;
|
|
71
|
+
confirmNewPasswordPlaceholder: string;
|
|
72
|
+
emptyTitle: string;
|
|
73
|
+
emptyDesc: string;
|
|
74
|
+
orderDate: string;
|
|
75
|
+
totalItems: string;
|
|
76
|
+
orderNumber: string;
|
|
77
|
+
orderStatus: string;
|
|
78
|
+
totalPrice: string;
|
|
79
|
+
viewOrder: string;
|
|
80
|
+
sortBy: string;
|
|
81
|
+
sortByWithSymbol: string;
|
|
82
|
+
delivered: string;
|
|
83
|
+
canceled: string;
|
|
84
|
+
inProgress: string;
|
|
85
|
+
orderDetails: string;
|
|
86
|
+
deliverDate: string;
|
|
87
|
+
shippingAndBillingInfo: string;
|
|
88
|
+
shippedTo: string;
|
|
89
|
+
backToList: string;
|
|
90
|
+
item: string;
|
|
91
|
+
quantity: string;
|
|
92
|
+
price: string;
|
|
93
|
+
total: string;
|
|
94
|
+
orderItems: string;
|
|
95
|
+
billedTo: string;
|
|
96
|
+
color: string;
|
|
97
|
+
size: string;
|
|
98
|
+
clearAll: string;
|
|
99
|
+
shippingAddress: string;
|
|
100
|
+
billingAddress: string;
|
|
101
|
+
emptyAddress: string;
|
|
102
|
+
default: string;
|
|
103
|
+
remove: string;
|
|
104
|
+
deleteAddressMessage: string;
|
|
105
|
+
confirmDeleteAddress: string;
|
|
106
|
+
addNewShippingAddress: string;
|
|
107
|
+
addNewBillingAddress: string;
|
|
108
|
+
updateYourShippingAddress: string;
|
|
109
|
+
updateYourBillingAddress: string;
|
|
110
|
+
thisYourDefaultShippingAddress: string;
|
|
111
|
+
thisYourDefaultBillingAddress: string;
|
|
112
|
+
makeYourDefaultShippingAddress: string;
|
|
113
|
+
makeYourDefaultBillingAddress: string;
|
|
114
|
+
defaultShippingAddress: string;
|
|
115
|
+
defaultBillingAddress: string;
|
|
116
|
+
country: string;
|
|
117
|
+
countryPlaceholder: string;
|
|
118
|
+
address_1: string;
|
|
119
|
+
address_1Placeholder: string;
|
|
120
|
+
address_2: string;
|
|
121
|
+
address_2Placeholder: string;
|
|
122
|
+
zipCode: string;
|
|
123
|
+
zipCodePlaceholder: string;
|
|
124
|
+
city: string;
|
|
125
|
+
cityPlaceholder: string;
|
|
126
|
+
address_1IsRequired: string;
|
|
127
|
+
cityIsRequired: string;
|
|
128
|
+
zip_codeIsRequired: string;
|
|
129
|
+
done: string;
|
|
130
|
+
outOfStock: string;
|
|
131
|
+
cartEmpty: string;
|
|
132
|
+
cartEmptyDesc: string;
|
|
133
|
+
orderSummary: string;
|
|
134
|
+
subtotal: string;
|
|
135
|
+
shipping: string;
|
|
136
|
+
proceedToCheckout: string;
|
|
137
|
+
continueShopping: string;
|
|
138
|
+
myCart: string;
|
|
139
|
+
addToWishlist: string;
|
|
140
|
+
productDetails: string;
|
|
141
|
+
shippingInformation: string;
|
|
142
|
+
productSku: string;
|
|
143
|
+
colorCode: string;
|
|
144
|
+
message404Title: string;
|
|
145
|
+
message404Desc: string;
|
|
146
|
+
goHome: string;
|
|
147
|
+
useAlsoBillingAddress: string;
|
|
148
|
+
review: string;
|
|
149
|
+
payment: string;
|
|
150
|
+
confirmation: string;
|
|
151
|
+
change: string;
|
|
152
|
+
billing: string;
|
|
153
|
+
selectShippingAddress: string;
|
|
154
|
+
selectBillingAddress: string;
|
|
155
|
+
confirmMessageTitle: string;
|
|
156
|
+
confirmMessageDescription: string;
|
|
157
|
+
};
|
|
158
|
+
export default _default;
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
saveAndApply: 'Պահել և կիրառել',
|
|
3
|
+
addNewAdd: '+ Ավելացնել նոր հասցե',
|
|
4
|
+
editCart: 'Խմբագրել զամբյուղը',
|
|
5
|
+
shopNow: 'Գնել հիմա',
|
|
6
|
+
firstName: 'Անուն',
|
|
7
|
+
lastName: 'Ազգանուն',
|
|
8
|
+
email: 'Էլ. փոստ',
|
|
9
|
+
phone: 'Հեռախոս',
|
|
10
|
+
password: 'Գաղտնաբառ',
|
|
11
|
+
noData: 'Տվյալներ չկան',
|
|
12
|
+
contactUs: 'Կապ մեզ հետ',
|
|
13
|
+
privacyPolicy: 'Գաղտնիության քաղաքականություն',
|
|
14
|
+
welcomeBack: 'Բարի վերադարձ!',
|
|
15
|
+
login: 'Մուտք',
|
|
16
|
+
forgotPasswordLink: 'Մոռացե՞լ եք գաղտնաբառը:',
|
|
17
|
+
accountText: 'Չունե՞ք հաշիվ:',
|
|
18
|
+
joinNow: 'Միացեք հիմա',
|
|
19
|
+
forgotPassword: 'Մոռացել եմ գաղտնաբառը',
|
|
20
|
+
forgotPasswordDescription: 'Խնդրում ենք մուտքագրել Ձեր էլ. փոստը և մենք ուղարկենք գաղտնաբառի վերականգնման հրահանգներ:',
|
|
21
|
+
submit: 'Հաստատել',
|
|
22
|
+
thankYou: 'Շնորհակալություն!',
|
|
23
|
+
recoveryText: 'Մենք վերականգնման հղում ենք ուղարկել',
|
|
24
|
+
tryAgainText: 'Եթե չեք ստացել էլ. փոստը, խնդրում ենք',
|
|
25
|
+
tryAgain: 'փորձել կրկին:',
|
|
26
|
+
newPassword: 'Նոր գաղտնաբառ',
|
|
27
|
+
confirmNewPassword: 'Հաստատեք նոր գաղտնաբառը',
|
|
28
|
+
resetPassword: 'Վերականգնել գաղտնաբառը',
|
|
29
|
+
successfullyMessage: 'Ձեր գաղտնաբառը հաջողությամբ փոխվել է:',
|
|
30
|
+
registration: 'Գրանցում',
|
|
31
|
+
alreadyHaveAnAccount: 'Արդեն ունե՞ք հաշիվ:',
|
|
32
|
+
signUp: 'Գրանցվել',
|
|
33
|
+
checkedText1: 'Այո, ես կարդացել եմ',
|
|
34
|
+
checkedText2: 'և համաձայն եմ, որ իմ տրամադրած տվյալները կարող են պահպանվել էլեկտրոնային եղանակով։ Իմ տվյալները կօգտագործվեն միայն իմ հարցման համար:',
|
|
35
|
+
verifyYourEmail: 'Հաստատեք ձեր էլ. փոստը',
|
|
36
|
+
verifyText1: 'Մենք հենց նոր ուղարկեցինք ձեր ակտիվացման կոդը',
|
|
37
|
+
verifyText2: 'Մուտքագրեք ստորև նշված կոդը, որպեսզի հաստատեք ձեր էլ. փոստի հասցեն:',
|
|
38
|
+
verify: 'Հաստատել',
|
|
39
|
+
haveNotReceivedIt: 'Կոդը ստանալու համար կարող է մի քանի րոպե պահանջվել։ Չե՞ք ստացել այն:',
|
|
40
|
+
resendNewCode: 'Կրկին ուղարկել կոդ:',
|
|
41
|
+
deleteAccountTextPart1: 'Եթե ձեր էլ. հասցեն սխալ է,',
|
|
42
|
+
deleteAccountTextPart2: 'ջնջեք այս հաշիվը',
|
|
43
|
+
deleteAccountTextPart3: 'և գրանցվեք կրկին:',
|
|
44
|
+
codeResendSuccessTitle: 'Ձեր կոդը հաջողությամբ կրկին ուղարկվել է:',
|
|
45
|
+
codeResendSuccessSubtitle: 'Նոր կոդը ուղարկվել է ձեր էլ. հասցեին:',
|
|
46
|
+
myAccount: 'Իմ հաշիվը',
|
|
47
|
+
accountSettings: 'Հաշվի կարգավորումներ',
|
|
48
|
+
orderHistory: 'Պատվերների պատմություն',
|
|
49
|
+
addresses: 'Հասցեներ',
|
|
50
|
+
signOut: 'Ելք',
|
|
51
|
+
accountInformation: 'Հաշվի տեղեկատվություն',
|
|
52
|
+
edit: 'Խմբագրել',
|
|
53
|
+
first_name: 'Անունը:',
|
|
54
|
+
last_name: 'Ազգանունը:',
|
|
55
|
+
phone_: 'Հեռախոս:',
|
|
56
|
+
email_: 'Էլ. փոստ:',
|
|
57
|
+
password_: 'Գաղտնաբառ:',
|
|
58
|
+
password_title: 'Գաղտնաբառ',
|
|
59
|
+
cancel: 'Չեղարկել',
|
|
60
|
+
phone_input: 'Հեռախոս',
|
|
61
|
+
enterCurrentPassword: 'Մուտքագրեք ընթացիկ գաղտնաբառը',
|
|
62
|
+
enterNewPassword: 'Մուտքագրեք նոր գաղտնաբառը',
|
|
63
|
+
firstNamePlaceholder: 'Անուն',
|
|
64
|
+
lastNamePlaceholder: 'Ազգանուն',
|
|
65
|
+
emailPlaceholder: 'Էլ. փոստ',
|
|
66
|
+
passwordPlaceholder: 'Գաղտնաբառ',
|
|
67
|
+
phonePlaceholder: 'Հեռախոս',
|
|
68
|
+
enterCurrentPasswordPlaceholder: 'Մուտքագրեք ընթացիկ գաղտնաբառը',
|
|
69
|
+
enterNewPasswordPlaceholder: 'Մուտքագրեք նոր գաղտնաբառը',
|
|
70
|
+
newPasswordPlaceholder: 'Նոր գաղտնաբառ',
|
|
71
|
+
confirmNewPasswordPlaceholder: 'Հաստատեք նոր գաղտնաբառը',
|
|
72
|
+
emptyTitle: 'Ձեր պատվերները կհայտնվեն այստեղ:',
|
|
73
|
+
emptyDesc: 'Դուք դեռևս պատվեր չունեք:',
|
|
74
|
+
orderDate: 'Պատվերի ամսաթիվը',
|
|
75
|
+
totalItems: 'Ընդհանուր ապրանքներ',
|
|
76
|
+
orderNumber: 'Պատվերի համարը',
|
|
77
|
+
orderStatus: 'Պատվերի կարգավիճակ',
|
|
78
|
+
totalPrice: 'Ընդհանուր գին',
|
|
79
|
+
viewOrder: 'Դիտել պատվերը',
|
|
80
|
+
sortBy: 'Տեսակավորել ըստ',
|
|
81
|
+
sortByWithSymbol: 'Տեսակավորել ըստ:',
|
|
82
|
+
delivered: 'Առաքված',
|
|
83
|
+
canceled: 'Չեղարկված',
|
|
84
|
+
inProgress: 'Ընթացքում է',
|
|
85
|
+
orderDetails: 'Պատվերի մանրամասներ',
|
|
86
|
+
deliverDate: 'Առաքման ամսաթիվը',
|
|
87
|
+
shippingAndBillingInfo: 'Առաքման և վճարման տվյալներ',
|
|
88
|
+
shippedTo: 'Առաքված հասցե:',
|
|
89
|
+
backToList: 'Վերադառնալ ցուցակին',
|
|
90
|
+
item: 'Ապրանք',
|
|
91
|
+
quantity: 'Քանակ',
|
|
92
|
+
price: 'Գին',
|
|
93
|
+
total: 'Ընդհանուր',
|
|
94
|
+
orderItems: 'Պատվերի ապրանքներ',
|
|
95
|
+
billedTo: 'Վճարված հասցե:',
|
|
96
|
+
color: 'Գույն:',
|
|
97
|
+
size: 'Չափս:',
|
|
98
|
+
clearAll: 'Մաքրել բոլորը',
|
|
99
|
+
shippingAddress: 'Առաքման հասցե',
|
|
100
|
+
billingAddress: 'Վճարման հասցե',
|
|
101
|
+
emptyAddress: 'Մենք ձեր համար պահված հասցեներ չունենք:',
|
|
102
|
+
default: 'Լռելյայն',
|
|
103
|
+
remove: 'Հեռացնել',
|
|
104
|
+
deleteAddressMessage: 'Համոզվա՞ծ եք, որ ցանկանում եք հեռացնել այս հասցեն:',
|
|
105
|
+
confirmDeleteAddress: 'Խնդրում ենք հաստատել, որ ցանկանում եք ջնջել այս հասցեն:',
|
|
106
|
+
addNewShippingAddress: 'Ավելացնել նոր առաքման հասցե',
|
|
107
|
+
addNewBillingAddress: 'Ավելացնել նոր վճարման հասցե',
|
|
108
|
+
updateYourShippingAddress: 'Թարմացնել ձեր առաքման հասցեն',
|
|
109
|
+
updateYourBillingAddress: 'Թարմացնել ձեր վճարման հասցեն',
|
|
110
|
+
thisYourDefaultShippingAddress: 'Սա ձեր լռելյայն առաքման հասցեն է:',
|
|
111
|
+
thisYourDefaultBillingAddress: 'Սա ձեր լռելյայն վճարման հասցեն է:',
|
|
112
|
+
makeYourDefaultShippingAddress: 'Սա դարձնել ձեր լռելյայն առաքման հասցե:',
|
|
113
|
+
makeYourDefaultBillingAddress: 'Սա դարձնել ձեր լռելյայն վճարման հասցե:',
|
|
114
|
+
defaultShippingAddress: 'Լռելյայն առաքման հասցե',
|
|
115
|
+
defaultBillingAddress: 'Լռելյայն վճարման հասցե',
|
|
116
|
+
country: 'Երկիր',
|
|
117
|
+
countryPlaceholder: 'Երկիր',
|
|
118
|
+
address_1: 'Հասցե',
|
|
119
|
+
address_1Placeholder: 'Հասցե',
|
|
120
|
+
address_2: 'Հասցե 2',
|
|
121
|
+
address_2Placeholder: 'Հասցե 2',
|
|
122
|
+
zipCode: 'Փոստային ինդեքս',
|
|
123
|
+
zipCodePlaceholder: 'Փոստային ինդեքս',
|
|
124
|
+
city: 'Քաղաք',
|
|
125
|
+
cityPlaceholder: 'Քաղաք',
|
|
126
|
+
address_1IsRequired: 'Խնդրում ենք մուտքագրել ձեր հասցեն:',
|
|
127
|
+
cityIsRequired: 'Խնդրում ենք մուտքագրել ձեր քաղաքը:',
|
|
128
|
+
zip_codeIsRequired: 'Խնդրում ենք մուտքագրել ձեր փոստային ինդեքսը:',
|
|
129
|
+
done: 'Արված է',
|
|
130
|
+
outOfStock: 'Առկա չէ',
|
|
131
|
+
cartEmpty: 'Ձեր զամբյուղը դատարկ է',
|
|
132
|
+
cartEmptyDesc: 'Երբ ավելացնեք ինչ-որ բան ձեր զամբյուղին, այն կհայտնվի այստեղ: Պատրա՞ստ եք սկսել:',
|
|
133
|
+
orderSummary: 'Պատվերի ամփոփում',
|
|
134
|
+
subtotal: 'Ընդհանուր միջանկյալ',
|
|
135
|
+
shipping: 'Առաքում',
|
|
136
|
+
proceedToCheckout: 'Շարունակել վճարումը',
|
|
137
|
+
continueShopping: 'Շարունակել գնումները',
|
|
138
|
+
myCart: 'Իմ զամբյուղը',
|
|
139
|
+
addToWishlist: 'Ավելացնել ցանկալի ապրանքներ',
|
|
140
|
+
productDetails: 'Ապրանքի մանրամասներ',
|
|
141
|
+
shippingInformation: 'Առաքման տեղեկատվություն',
|
|
142
|
+
productSku: 'Ապրանքի կոդ',
|
|
143
|
+
colorCode: 'Գույնի կոդ',
|
|
144
|
+
message404Title: 'Այստեղ ոչինչ չկա',
|
|
145
|
+
message404Desc: 'Ներեցեք, մենք չգտանք այն, ինչ դուք փնտրում էիք, կամ էջն այլևս գոյություն չունի:',
|
|
146
|
+
goHome: 'Գնալ գլխավոր էջ',
|
|
147
|
+
useAlsoBillingAddress: 'Օգտագործել որպես վճարման հասցե:',
|
|
148
|
+
review: 'Կարծիք',
|
|
149
|
+
payment: 'Վճարում',
|
|
150
|
+
confirmation: 'Հաստատում',
|
|
151
|
+
change: 'Փոխել',
|
|
152
|
+
billing: 'Վճարում',
|
|
153
|
+
selectShippingAddress: 'Ընտրել առաքման հասցեն',
|
|
154
|
+
selectBillingAddress: 'Ընտրել վճարման հասցեն',
|
|
155
|
+
confirmMessageTitle: 'Պատվերը հաջողությամբ հաստատված է',
|
|
156
|
+
confirmMessageDescription: 'Շնորհակալություն պատվերի համար: Ձեր պատվերի համարը',
|
|
157
|
+
};
|