-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathen.json
More file actions
762 lines (762 loc) · 47.4 KB
/
Copy pathen.json
File metadata and controls
762 lines (762 loc) · 47.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
{
"global.tips.loading": "Loading...",
"global.button.back": "Back",
"global.button.next": "Continue",
"global.button.submit": "Submit",
"global.button.finish": "FINISH",
"global.button.logout": "Log out",
"global.validate.required": "{label} is required",
"global.validate.password.required": "You must enter a password.",
"global.fileUpload.defaultText": "Drag & drop file here or click here to browse",
"global.fileUpload.typeNotSupport": "{name} file type not support",
"global.fileUpload.namedFileSizeExceedsLimit": "{name} exceeds upload limit. Maximum file size is {maxSize}",
"global.fileUpload.fileNumberExceedsLimit": "The number of files exceeds the limit, with up to {limit} being supported",
"global.registerB2B.linkText": "Business Account Application",
"global.filter.clearFilters": "Clear Filters",
"global.filter.title": "Filters",
"global.filter.cancel": "Cancel",
"global.filter.apply": "Apply",
"global.pagination.rowsPerPage": "Rows per page:",
"global.pagination.pageXOfY": "{from}–{to} of {count}",
"global.pagination.perPage": "per page:",
"global.pagination.cardsPerPage": "Cards per page:",
"global.createShoppingList.createNew": "Create new",
"global.createShoppingList.name": "Name",
"global.createShoppingList.description": "Description",
"global.orderShoppingList.confirm": "Confirm",
"global.orderShoppingList.ok": "OK",
"global.orderShoppingList.createNew": "Create new",
"global.quoteAttachment.uploadedByCustomer": "Uploaded by customer: {createdBy}",
"global.quoteAttachment.uploadedByCustomerWithName": "Uploaded by customer: {firstName} {lastName}",
"global.quoteAttachment.maxFilesMessage": "You can add up to 3 files",
"global.quoteAttachment.title": "Attachment",
"global.fileUpload.addAttachment": "Add Attachment",
"global.fileUpload.maxFileSizeMessage": "You can add up to 3 files, not bigger than 2MB each.",
"global.fileUpload.fileTypeNotSupported": "file type not supported",
"global.fileUpload.fileSizeExceedsLimit": "file exceeds upload limit. Maximum file size is {maxFileSize}",
"global.fileUpload.maxFileNumber": "You can add up to {fileNumber} files",
"global.quoteInfo.editInfo": "Edit info",
"global.quoteInfo.billing": "Billing",
"global.quoteInfo.shipping": "Shipping",
"global.quoteNote.message": "Message",
"global.quoteNote.notes": "Notes",
"global.quoteNote.messageNote": "Your message will be sent after submitting a quote",
"global.quoteNote.typeMessage": "Type a message...",
"global.validatorRules.phoneNumber": "Please enter a valid phone number",
"global.validatorRules.email": "Please use a valid email address, such as user@example.com.",
"global.validatorRules.number": "Please enter a valid integer number",
"global.validatorRules.max": "Please do not exceed {max}",
"global.validatorRules.passwords": "Passwords must be at least 7 characters and contain both alphabetic and numeric characters.",
"global.tips.registerLogo": "register Logo",
"global.registerComplete.passwordMatchPrompt": "Your passwords do not match.",
"global.registerComplete.companyRegistrationGenericError": "We couldn't complete your company registration. Please try again.",
"global.registerComplete.createPasswordFor": "Create password for {email}",
"global.registerFinish.autoApproved.tip": "Thank you for creating your account at {storeName}. Your company account application has been approved",
"global.registerFinish.bcSuccess.tip": "Thank you for creating your account at {storeName}",
"global.loginText.emailAddress": "Email address",
"global.emailValidate.multipleCustomer": "This email is used by multiple customers in your store. Please use another email.",
"global.emailValidate.companyUsed": "This email is used by a customer within another company. {companyName}",
"global.emailValidate.alreadyExits": "This user already exists in this company.",
"global.emailValidate.usedSuperAdmin": "This email is used by a super admin.",
"global.emailValidate.emailLength": "Email length cannot exceed 200 characters",
"global.error.genericMessage": "Something went wrong. Please try again.",
"global.filter.search": "Search",
"global.table.noData": "No data",
"global.quoteStatusCode.draft": "Draft",
"global.quoteStatusCode.open": "Open",
"global.quoteStatusCode.ordered": "Ordered",
"global.quoteStatusCode.expired": "Expired",
"global.navMenu.dashboard": "Dashboard",
"global.navMenu.orders": "My orders",
"global.navMenu.companyOrders": "Company orders",
"global.navMenu.invoice": "Invoices",
"global.navMenu.quotes": "Quotes",
"global.navMenu.shoppingLists": "Shopping lists",
"global.navMenu.quickOrder": "Quick order",
"global.navMenu.addresses": "Addresses",
"global.navMenu.userManagement": "User management",
"global.navMenu.accountSettings": "Account settings",
"global.navMenu.companyHierarchy": "Company hierarchy",
"global.B3MainHeader.superAdmin": "Super admin",
"global.B3MainHeader.signIn": "Sign in",
"global.B3MainHeader.home": "Home",
"global.B3MainHeader.cart": "Cart",
"global.dialog.cancel": "Cancel",
"global.dialog.save": "Save",
"global.searchProduct.product": "Product",
"global.searchProduct.price": "Price",
"global.searchProduct.qty": "Qty",
"global.searchProduct.total": "Total",
"global.purchasedProducts.title": "Purchased products",
"global.orders.title": "My orders",
"global.companyOrders.title": "Company orders",
"global.searchProduct.chooseOptionsButton": "Choose options",
"global.notification.addProductSingular": "Product was added to your quote",
"global.notification.maximumPurchaseExceed": "The maximum purchase quantity does not exceed 1,000,000",
"global.shoppingLists.status.all": "All",
"global.shoppingLists.status.approved": "Approved",
"global.shoppingLists.status.draft": "Draft",
"global.shoppingLists.status.readyForApproval": "Ready for approval",
"global.shoppingLists.status.rejected": "Rejected",
"global.shoppingLists.filter.createdBy": "Created by",
"global.shoppingLists.filter.status": "Status",
"global.searchProduct.placeholder.quickOrder": "Search products",
"global.searchProduct.placeholder.shoppingList": "Search products",
"global.searchProduct.placeholder.quote": "Search products",
"global.searchProductAddProduct.searchBySkuOrName": "Search by SKU or product name",
"global.searchProductAddProduct.searchProduct": "Search product",
"global.searchProductAddProduct.businessAccountPendingApproval": "Your business account is pending approval. This feature is currently disabled.",
"global.searchProductAddProduct.sku": "SKU#",
"global.searchProductAddProduct.qty": "Qty",
"global.customStyles.masqueradeButton": "END MASQUERADE",
"global.customStyles.addQuoteBtn": "Add to quote",
"global.customStyles.floatingAction": "Finish quote",
"global.customStyles.addToAllQuoteBtn": "Add All To Quote",
"global.customStyles.shoppingListBtn": "Add to Shopping List",
"global.masquerade.youAreMasqueradeAs": "You are masquerade as",
"global.companyHierarchy.externalBtn": "You are representing",
"global.companyCredit.alert": "Your account does not currently allow purchasing due to a credit hold. Please contact us to reconcile.",
"global.B3Upload.downloadErrorResults": "Download error results",
"global.searchProduct.noProductsFound": "No products found",
"global.B3Upload.title": "Bulk upload",
"global.B3Upload.dragAndDrop": "Drag & drop file here",
"global.B3Upload.fileTypesInfo": "File types: CSV, maximum size: 50MB.",
"global.B3Upload.downloadSample": "Download sample",
"global.B3Upload.uploadFile": "Upload file",
"global.bulkUpload.columnSku": "SKU",
"global.bulkUpload.columnQty": "Qty",
"global.bulkUpload.columnRow": "Row",
"global.bulkUpload.columnError": "Error",
"global.bulkUpload.tabErrors": "Errors",
"global.bulkUpload.tabValid": "Valid",
"global.bulkUpload.remove": "Remove",
"global.bulkUpload.productsPerPage": "Products per page:",
"global.bulkUpload.noProduct": "No product",
"global.statusNotifications.orderingWillBeEnabledAfterAccountApproval": "Your business account is pending approval. Ordering will be enabled after account approval.",
"global.statusNotifications.productsPricingAndOrderingWillBeEnabledAfterApproval": "Your business account is pending approval. Products, pricing, and ordering will be enabled after account approval.",
"global.statusNotifications.willGainAccessToBusinessFeatAfterApproval": "Your business account is pending approval. You will gain access to business account features after account approval.",
"global.statusNotifications.willGainAccessToBusinessFeatProductsAndPricingAfterApproval": "Your business account is pending approval. You will gain access to business account features, products, and pricing after account approval.",
"global.statusNotifications.checkEmailLetterWithDetails": "Your business account has been approved. Check your email inbox, we sent you a letter with all details.",
"global.statusNotifications.checkEmailLetterWithDetailsResubmitApplication": "Your business account has been rejected. Check your email inbox, we sent you a letter with all details. You can resubmit your application.",
"global.statusNotifications.accountRejectedOrderingDisabled": "Your business account has been rejected. Ordering is disabled.",
"global.statusNotifications.businessAccountInactive": "This business account is inactive. Reach out to our support team to reactivate your account.",
"global.B2BAutoCompleteCheckbox.input.label": "Company",
"global.B2BSwitchCompanyModal.title": "Switch company",
"global.B2BSwitchCompanyModal.confirm.button": "Switch company",
"dashboard.company": "Company",
"dashboard.admin": "Admin",
"dashboard.email": "Email",
"dashboard.action": "Action",
"dashboard.selected": "Selected",
"dashboard.masqueradeAction": "Masquerade",
"dashboard.endMasqueradeAction": "End Masquerade",
"dashboard.masqueradeModal.title.start": "Start Masquerading",
"dashboard.masqueradeModal.title.end": "End Masquerading",
"dashboard.masqueradeModal.message": "This action will empty your shopping cart. Do you want to continue?",
"dashboard.masqueradeModal.actions.cancel": "Cancel",
"dashboard.masqueradeModal.actions.continue": "Continue",
"orders.order": "Order",
"orders.poReference": "PO / Reference",
"orders.grandTotal": "Grand total",
"orders.orderStatus": "Order status",
"orders.placedBy": "Placed by",
"orders.createdOn": "Created on",
"orders.company": "Company",
"orders.from": "From",
"orders.to": "To",
"orders.status.incomplete": "Incomplete",
"orders.status.pending": "Pending",
"orders.status.shipped": "Shipped",
"orders.status.partiallyShipped": "Partially Shipped",
"orders.status.refunded": "Refunded",
"orders.status.cancelled": "Cancelled",
"orders.status.declined": "Declined",
"orders.status.awaitingPayment": "Awaiting Payment",
"orders.status.awaitingPickup": "Awaiting Pickup",
"orders.status.awaitingShipment": "Awaiting Shipment",
"orders.status.completed": "Completed",
"orders.status.awaitingFulfillment": "Awaiting Fulfillment",
"orders.status.manualVerificationRequired": "Manual Verification Required",
"orders.status.disputed": "Disputed",
"orders.status.partiallyRefunded": "Partially Refunded",
"invoice.exportCsvText": "Export all as CSV",
"invoice.exportSelectedAsCsv": "Export selected as CSV",
"invoice.exportFilteredAsCsv": "Export filtered as CSV",
"invoice.pdfUrlResolutionError": "pdf url resolution error",
"invoice.headers.invoice": "Invoices",
"invoice.headers.companyName": "Company",
"invoice.headers.order": "Order",
"invoice.headers.invoiceDate": "Invoice date",
"invoice.headers.dueDate": "Due date",
"invoice.headers.invoiceTotal": "Invoice total",
"invoice.headers.amountDue": "Amount due",
"invoice.headers.amountToPay": "Amount to pay",
"invoice.headers.status": "Status",
"invoice.headers.action": "Action",
"invoice.filter.from": "From",
"invoice.filter.to": "To",
"invoice.openUnpaid": "Open: {unpaid}",
"invoice.overdueAmount": "Overdue: {overdue}",
"invoice.invoiceItemCardHeader.order": "Order",
"invoice.invoiceItemCardHeader.invoiceDate": "Invoice date",
"invoice.invoiceItemCardHeader.dueDate": "Due date",
"invoice.invoiceItemCardHeader.invoiceTotal": "Invoice total",
"invoice.invoiceItemCardHeader.amountDue": "Amount due",
"invoice.invoiceItemCardHeader.amountToPay": "Amount to pay",
"invoice.footer.invalidNameError": "The payment amount entered has an invalid value.",
"invoice.footer.invoiceSelected": "{invoices} invoices selected",
"invoice.footer.totalPayment": "Total payment: {total}",
"invoice.footer.payInvoices": "Pay invoices",
"invoice.paymentHistory.title": "Payments history",
"invoice.actions.moreActions": "More actions",
"invoice.actions.viewInvoice": "View invoice",
"invoice.actions.viewOrder": "View order",
"invoice.actions.viewPaymentHistory": "View payment history",
"invoice.actions.pay": "Pay",
"invoice.actions.print": "Print",
"invoice.actions.download": "Download",
"invoice.filterStatus.title": "Status",
"invoice.filterStatus.open": "Open",
"invoice.filterStatus.partiallyPaid": "Partially paid",
"invoice.filterStatus.paid": "Paid",
"invoice.filterStatus.overdue": "Overdue",
"quotes.dateCreated": "Date created",
"quotes.status": "Status",
"quotes.updated": "Updated",
"quotes.expiration": "Expiration",
"quotes.sortBy": "Sort by",
"quotes.open": "Open",
"quotes.ordered": "Ordered",
"quotes.expired": "Expired",
"quotes.quoteStatus": "Quote status",
"quotes.createdBy": "Created by",
"quotes.salesRep": "Sales rep",
"quotes.quoteNumber": "Quote #",
"quotes.title": "Title",
"quotes.lastUpdate": "Last update",
"quotes.expirationDate": "Expiration date",
"quotes.subtotal": "Subtotal",
"quotes.from": "From",
"quotes.to": "To",
"quotes.cardsPerPage": "Cards per page",
"quotes.quotesPerPage": "Quotes per page",
"quotes.quoteItemCard.title": "Title",
"quotes.quoteItemCard.salesRep": "Sales rep",
"quotes.quoteItemCard.createdBy": "Created by",
"quotes.quoteItemCard.dateCreated": "Date created",
"quotes.quoteItemCard.lastUpdate": "Last update",
"quotes.quoteItemCard.expirationDate": "Expiration date",
"quotes.quoteItemCard.subtotal": "Subtotal",
"quotes.quoteItemCard.view": "VIEW",
"quotes.productValidationFailed": "Product validation failed for {productName}",
"quotes.productValidationFailedForQuote": "Product validation failed for this quote",
"shoppingLists.createNew": "Create new",
"shoppingLists.deleteSuccess": "The shopping list was successfully deleted",
"shoppingLists.deleteShoppingList": "Delete shopping list",
"shoppingLists.cancel": "Cancel",
"shoppingLists.delete": "Delete",
"shoppingLists.close": "Close",
"shoppingLists.confirmDelete": "Are you sure you want to delete this shopping list?",
"shoppingLists.addSuccess": "The shopping list was successfully added",
"shoppingLists.updateSuccess": "The shopping list was successfully updated",
"shoppingLists.duplicateSuccess": "The shopping list was successfully duplicated",
"shoppingLists.edit": "Edit shopping list",
"shoppingLists.createNewShoppingList": "Create new shopping list",
"shoppingLists.duplicateShoppingList": "Duplicate shopping list",
"shoppingLists.save": "Save",
"shoppingLists.name": "Name",
"shoppingLists.title": "Add to list",
"shoppingLists.addButtonText": "Add to list",
"shoppingLists.description": "Description",
"shoppingLists.card.createdBy": "Created by:",
"shoppingLists.card.products": "Products:",
"shoppingLists.card.lastActivity": "Last activity:",
"shoppingLists.card.view": "View",
"shoppingLists.viewShoppingList": "View shopping list",
"purchasedProducts.product": "Product",
"purchasedProducts.price": "Price",
"purchasedProducts.qty": "Qty",
"purchasedProducts.total": "Total",
"purchasedProducts.lastOrdered": "Last ordered",
"purchasedProducts.totalProducts": "{total} products",
"purchasedProducts.from": "From",
"purchasedProducts.to": "To",
"purchasedProducts.itemsPerPage": "Items per page:",
"purchasedProducts.noProductsFound": "No products found",
"purchasedProducts.outOfStock": "Out of stock",
"purchasedProducts.minQuantity": "Min Quantity {minQuantity}",
"purchasedProducts.maxQuantity": "Max Quantity {maxQuantity}",
"purchasedProducts.error.default": "An error has occurred",
"purchasedProducts.error.wrongModifier": "{count, plural, one {SKU {sku} has invalid modifiers} other {SKUs {sku} have invalid modifiers}}",
"purchasedProducts.error.notPresent": "{count, plural, one {SKU {sku} product doesn''t exist} other {SKUs {sku} products don''t exist}}",
"purchasedProducts.orderDialog.additionalInformation": "Additional Information",
"purchasedProducts.orderDialog.addToShoppingList": "Add to shopping list",
"purchasedProducts.quickOrderCard.price": "Price: {price}",
"purchasedProducts.orderCheckboxProduct.price": "Price:",
"purchasedProducts.orderCheckboxProduct.qty": "Qty",
"purchasedProducts.orderCheckboxProduct.total": "Total:",
"purchasedProducts.quickOrderCard.lastOrdered": "Last ordered: {lastOrderedAt}",
"purchasedProducts.quickOrderPad.productsAdded": "Products were added to cart",
"purchasedProducts.quickOrderPad.viewCart": "VIEW CART",
"purchasedProducts.quickOrderPad.insufficientStockSku": "{sku} does not have enough stock, please change the quantity ",
"purchasedProducts.quickOrderPad.notEnoughStock": "{variantSku} does not have enough stock",
"purchasedProducts.quickOrderPad.availableAmount": "Available amount - {availableAmount}",
"purchasedProducts.quickOrderPad.outOfStockSku": "{outOfStock} are out of stock",
"purchasedProducts.quickOrderPad.notPurchaseableSku": "SKU {notPurchaseSku} cannot be purchased in online store.",
"purchasedProducts.quickOrderPad.minQuantityMessage": "You need to purchase a minimum of {minQuantity} of the {sku} per order.",
"purchasedProducts.quickOrderPad.accountPendingApproval": "Your business account is pending approval. This feature is currently disabled.",
"purchasedProducts.quickOrderPad.maxQuantityMessage": "You need to purchase a maximum of {maxQuantity} of the {sku} per order.",
"purchasedProducts.quickOrderPad.addNProductsToCart": "Add {quantity} products to cart",
"purchasedProducts.quickOrderPad.addProductsToCart": "Add products to cart",
"purchasedProducts.quickOrderPad.quickOrderPad": "Quick order pad",
"purchasedProducts.quickOrderPad.bulkUploadCSV": "Bulk upload CSV",
"purchasedProducts.quickOrderPad.downloadErrorsCSV": "Download error results",
"purchasedProducts.quickOrderPad.addToCart": "Add to cart",
"purchasedProducts.quickOrderPad.otherError": "This product can't be added due to order quantity limits or wrong configuration: {sku}",
"purchasedProducts.quickAdd.addProductToList": "Add product to list",
"purchasedProducts.quickAdd.title": "Quick add",
"purchasedProducts.quickAdd.showMoreRowsButton": "Show more rows",
"purchasedProducts.quickAdd.sku": "SKU#",
"purchasedProducts.quickAdd.qty": "Qty",
"purchasedProducts.quickAdd.incorrectNumber": "Incorrect number",
"purchasedProducts.quickAdd.notFoundSku": "{count, plural, one {SKU {notFoundSku} was not found} other {SKUs {notFoundSku} were not found}}, please check entered values",
"purchasedProducts.quickAdd.notPurchaseableSku": "SKU {notPurchaseSku} no longer for sale",
"purchasedProducts.quickAdd.insufficientStockSku": "{stockSku} does not have enough stock, please change the quantity ",
"purchasedProducts.quickAdd.purchaseQuantityLimitMessage": "You need to purchase a {typeText} of {limit} of the {sku} per order",
"purchasedProducts.quickAdd.inlineErrors.notFoundSku": "SKU not found",
"purchasedProducts.quickAdd.inlineErrors.insufficientStockSku": "{count} available",
"purchasedProducts.footer.selectOneItemToAdd": "Please select at least one item to add to cart",
"purchasedProducts.footer.productsAdded": "{count, plural, one {{count} product was added to cart} other {{count} products were added to cart}}",
"purchasedProducts.footer.productsLimit": "The quantity of each product in Quote is 1-1000000.",
"purchasedProducts.footer.viewCart": "VIEW CART",
"purchasedProducts.footer.cantAddProductsNoSku": "Can not add products without SKU.",
"purchasedProducts.footer.notFoundSku": "{sku} not found",
"purchasedProducts.footer.productsAddedToQuote": "Products were added to your quote",
"purchasedProducts.footer.viewQuote": "VIEW QUOTE",
"purchasedProducts.footer.productsAddedToShoppingList": "Products were added to your shopping list",
"purchasedProducts.footer.addToCart": "Add selected to cart",
"purchasedProducts.footer.addToQuote": "Add selected to quote",
"purchasedProducts.footer.addSelectedProductsToShoppingList": "Add selected to shopping list",
"purchasedProducts.footer.selectedProducts": "{quantity} products selected",
"purchasedProducts.footer.subtotal": "Subtotal: {subtotal}",
"purchasedProducts.footer.addToShoppingList": "Add to shopping list",
"purchasedProducts.footer.addSelectedTo": "Add selected to",
"purchasedProducts.success.successfulApplication": "The application is successful, please wait for the merchant's review",
"purchasedProducts.error.returnedQuantityShouldBeWithinThePurchase": "The returned quantity should be within the purchased quantity",
"purchasedProducts.error.selectOneItem": "Please select at least one item",
"purchasedProducts.error.fillCorrectQuantity": "Please fill in the correct quantity",
"purchasedProducts.error.failedApplication": "Application failed, please contact the merchant.",
"orderDetail.orderId": "Order #{orderId}",
"orderDetail.purchaseOrderNumber": ", {purchaseOrderNumber}",
"orderDetail.backToOrders": "Back to orders",
"orderDetail.pagination.order": "Order",
"orderDetail.pagination.of": "of",
"orderDetail.paymentMethod": "Payment by {paymentMethod}",
"orderDetail.customerName": "{firstName} {lastName}",
"orderDetail.customerAddress": "{city}, {state} {zip}, {country}",
"orderDetail.itemComments": "Comments: {item}",
"orderDetail.reorder": "Re-Order",
"orderDetail.reorder.productsAdded": "Products are added to cart",
"orderDetail.reorder.partialSuccess": "{count, plural, one {# Product was added to the cart.} other {# Products were added to the cart.}}",
"orderDetail.reorder.failedToAdd.helperText": "Add failed, try again.",
"orderDetail.reorder.addToCartError": "There was an issue with adding products to the cart. Please check the errors below.",
"orderDetail.reorder.product": "Product",
"orderDetail.reorder.price": "Price",
"orderDetail.reorder.qty": "Qty",
"orderDetail.reorder.total": "Total",
"orderDetail.return": "Return",
"orderDetail.addToShoppingList": "ADD TO SHOPPING LIST",
"orderDetail.purchaseDetails": "Purchased by {name} on {updatedAt}.",
"orderDetail.summary": "Summary",
"orderDetail.paidInFull": "Paid in full on {paidDate}",
"orderDetail.paidWithPo": "PO Submitted on {paidDate}",
"orderDetail.payment": "Payment",
"orderDetail.viewInvoice": "view invoice",
"orderDetail.printInvoice": "print invoice",
"orderDetail.comments": "Comments",
"orderDetail.viewCart": "View Cart",
"orderDetail.history.title": "History",
"orderDetail.history.dateHeader": "Date",
"orderDetail.history.statusHeader": "Status",
"orderDetail.orderCard.reorder": "Re-Order",
"orderDetail.orderCard.return": "Return",
"orderDetail.orderCard.addToShoppingList": "Add to shopping list",
"orderDetail.orderCard.reorderDescription": "Select products and quantity for reorder",
"orderDetail.orderCard.returnDescription": "Select products and quantity for return",
"orderDetail.orderCard.addToShoppingListDescription": "Select products and quantity to add to shopping list",
"orderDetail.orderCard.reorderConfirmText": "Add to cart",
"orderDetail.orderCard.returnConfirmText": "Submit return request",
"orderDetail.orderCard.addToShoppingListConfirmText": "Add to shopping list",
"orderDetail.orderCard.errorMasquerade": "To re-order, return or add product to shopping list, please masquerade",
"orderDetail.shipment.shipment": "Shipment",
"orderDetail.shipment.notShippedYet": "Not shipped yet",
"orderDetail.billing.digitalProducts": "Digital products",
"orderDetail.summary.subTotal": "Sub total",
"orderDetail.summary.shipping": "Shipping",
"orderDetail.summary.handlingFee": "Handling Fee",
"orderDetail.summary.discountAmount": "Discount amount",
"orderDetail.summary.coupon": "Coupon{couponCode}",
"orderDetail.summary.tax": "Tax",
"orderDetail.summary.grandTotal": "Grand total",
"orderDetail.addToShoppingList.productsAdded": "Products were added to your shopping list",
"orderDetail.viewShoppingList": "View shopping list",
"orderDetail.anotherCompany.tips": "This order is related to another company. To reorder, add to a shopping list, or perform other actions, you need to switch to that company.",
"orderDetail.switchCompany.title": "Switch company",
"orderDetail.switchCompany.content.tipsText": "To continue you have to switch company. Switching to a different company will refresh your shopping cart.",
"orderDetail.digitalProducts.download": "Download",
"orderDetail.digitalProducts.filesToDownload": "Files to download",
"orderDetail.digitalProducts.viewFiles": "View files",
"orderDetail.digitalProducts.close": "Close",
"orderDetail.digitalProducts.fileNotAvailable": "The file is not available for download. Please contact support.",
"addresses.noPermissionToAdd": "You do not have permission to add new address, please contact store owner",
"addresses.noPermissionToEdit": "You do not have permission to edit address, please contact store owner",
"addresses.noPermissionToDelete": "You do not have permission to delete address, please contact store owner",
"addresses.addNewAddress": "Add new address",
"addresses.addressForm.newAddressAdded": "New address is added",
"addresses.addressForm.addressUpdated": "Address updated successfully",
"addresses.addressForm.addNewAddress": "Add new address",
"addresses.addressForm.editAddress": "Edit address",
"addresses.addressForm.cancel": "Cancel",
"addresses.addressForm.saveAddress": "Save Address",
"addresses.addressForm.selectAddressType": "Select address type",
"addresses.addressItemCard.defaultShipping": "Default shipping",
"addresses.addressItemCard.defaultBilling": "Default billing",
"addresses.addressItemCard.setAsDefault": "Set as default",
"addresses.deleteAddressDialog.successfullyDeleted": "Successfully deleted",
"addresses.deleteAddressDialog.deleteAddress": "Delete address",
"addresses.deleteAddressDialog.cancel": "cancel",
"addresses.deleteAddressDialog.delete": "delete",
"addresses.deleteAddressDialog.confirmDelete": "Are you sure you want to delete this address?",
"addresses.setDefaultDialog.successfullySet": "Successfully set",
"addresses.setDefaultDialog.setDefaultAddress": "Set as default address",
"addresses.setDefaultDialog.cancel": "cancel",
"addresses.setDefaultDialog.set": "set",
"addresses.setDefaultDialog.setDefaultShippingAddress": "Set as default shipping address",
"addresses.setDefaultDialog.setDefaultBillingAddress": "Set as default billing address",
"addresses.filter.city": "City",
"addresses.filter.state": "State",
"addresses.filter.country": "Country",
"addresses.editAddress.shipping": "Shipping",
"addresses.editAddress.defaultShippingAddress": "Default Shipping Address",
"addresses.editAddress.billing": "Billing",
"addresses.editAddress.defaultBillingAddress": "Default Billing Address",
"addresses.editAddress.addressLabel": "Address label",
"addresses.editAddress.firstName": "First name",
"addresses.editAddress.lastName": "Last name",
"addresses.editAddress.company": "Company",
"addresses.editAddress.country": "Country",
"addresses.editAddress.addressLine1": "Address line 1",
"addresses.editAddress.addressLine2": "Address line 2",
"addresses.editAddress.city": "City",
"addresses.editAddress.state": "State",
"addresses.editAddress.zipCode": "Zip Code",
"addresses.editAddress.phoneNumber": "Phone number",
"shoppingList.shoppingListStatusUpdated": "Shopping list status updated successfully",
"shoppingList.productRemoved": "Product removed from your shopping list",
"shoppingList.addToShoppingList.productsAdded": "Products were added to your shopping list",
"shoppingList.addToShoppingList.skuNotAddable": "SKU {notAddAble} cannot be added quickly",
"shoppingList.addToShoppingList.skuNotPurchasable": "SKU {notPurchaseSku} cannot be purchased in online store.",
"shoppingList.addToShoppingList.addToList": "Add to list",
"shoppingList.addToShoppingList.bulkUploadCsv": "Bulk upload CSV",
"shoppingList.quickAdd.addToShoppingList": "Add product to list",
"shoppingList.quickAdd.skuNotFound": "SKU {notFoundSku} were not found, please check entered values",
"shoppingList.quickAdd.skuNotPurchasable": "SKU {notPurchaseSku} no longer for sale",
"shoppingList.quickAdd.skuNotAddable": "SKU {notAddAble} cannot be added quickly",
"shoppingList.quickAdd.skuLimitQuantity": "SKU {numberLimit} add quantity is limited from 1 to 1,000,000",
"shoppingList.quickAdd.quickAdd": "Quick add",
"shoppingList.quickAdd.showMoreRows": "Show more rows",
"shoppingList.chooseOptionsDialog.productNoLongerForSale": "This product is no longer for sale",
"shoppingList.chooseOptionsDialog.saveOption": "Save Option",
"shoppingList.chooseOptionsDialog.chooseOptions": "Choose options",
"shoppingList.chooseOptionsDialog.addToList": "Add To List",
"shoppingList.chooseOptionsDialog.price": "Price:",
"shoppingList.chooseOptionsDialog.quantity": "Qty",
"shoppingList.reAddToCart.fillCorrectQuantity": "Please fill in the correct quantity",
"shoppingList.reAddToCart.productsAdded": "Products were added to cart",
"shoppingList.reAddToCart.proceedToCheckout": "Proceed to checkout",
"shoppingList.reAddToCart.addToCart": "Add to cart",
"shoppingList.reAddToCart.productsCanCheckout": "{successProducts} product(s) can checkout",
"shoppingList.reAddToCart.productsAddedToCart": "{successProducts} product(s) were added to cart",
"shoppingList.reAddToCart.productsCantCheckout": "{quantity} product(s) can't checkout, please change the quantity",
"shoppingList.reAddToCart.productsNotAddedToCart": "{quantity} product(s) were not added to cart, please change the quantity",
"shoppingList.reAddToCart.productCount": "{quantity} products",
"shoppingList.reAddToCart.adjustQuantity": "Adjust quantity",
"shoppingList.reAddToCart.product": "Product",
"shoppingList.reAddToCart.quantity": "Qty",
"shoppingList.reAddToCart.total": "Total",
"shoppingList.reAddToCart.price": "Price",
"shoppingList.deleteItems.subtotal": "Delete product",
"shoppingList.deleteItems.cancel": "cancel",
"shoppingList.deleteItems.delete": "delete",
"shoppingList.deleteItems.confirmDelete": "Are you sure you want to delete this product?",
"shoppingList.footer.unavailableProducts": "Sku(s): {skus} unavailable for purchasing, please uncheck.",
"shoppingList.footer.productsAddedToCart": "Products were added to cart",
"shoppingList.footer.viewCart": "VIEW CART",
"shoppingList.footer.selectedProducts": "{quantity} products selected",
"shoppingList.footer.subtotal": "Subtotal: {subtotal}",
"shoppingList.footer.proceedToCheckout": "Proceed to checkout",
"shoppingList.footer.addSelectedTo": "Add selected to",
"shoppingList.footer.selectOneItem": "Please select at least one item",
"shoppingList.footer.addToQuote": "Add selected to quote",
"shoppingList.footer.addToCart": "Add selected to cart",
"shoppingList.footer.cantAddProductsNoSku": "Can not add products without SKU.",
"shoppingList.footer.notFoundSku": "{sku} not found",
"shoppingList.footer.productsAddedToQuote": "Products were added to your quote",
"shoppingList.footer.productsLimit": "The quantity of each product in Quote is 1-1000000.",
"shoppingList.footer.viewQuote": "VIEW QUOTE",
"shoppingList.header.backToShoppingLists": "Back to shopping lists",
"shoppingList.header.backToProduct": "Back to product",
"shoppingList.header.createdBy": "Created by:",
"shoppingList.header.submitForApproval": "Submit for Approval",
"shoppingList.header.reject": "Reject",
"shoppingList.header.approve": "Approve",
"shoppingList.table.productUpdated": "Product updated successfully",
"shoppingList.table.quantityUpdated": "Product quantity updated successfully",
"shoppingList.table.productNotesUpdated": "Product notes updated successfully",
"shoppingList.table.product": "Product",
"shoppingList.table.price": "Price",
"shoppingList.table.quantity": "Qty",
"shoppingList.quantityTextField.outOfStock": "Out of stock",
"shoppingList.quantityTextField.available": "{stock} available",
"shoppingList.quantityTextField.minQuantity": "Min is {minQuantity}",
"shoppingList.quantityTextField.maxQuantity": "Max is {maxQuantity}",
"shoppingList.table.total": "Total",
"shoppingList.table.totalProductCount": "{quantity} products",
"shoppingList.table.itemsPerPage": "Items per page",
"shoppingList.table.noProductsFound": "No products found",
"shoppingList.shoppingDetailCard.price": "Price: {price}",
"shoppingList.shoppingDetailCard.quantity": "qty",
"shoppingList.shoppingDetailCard.total": "Total: {total}",
"shoppingList.addItemNotes.title": "Add note",
"shoppingList.addItemNotes.cancel": "cancel",
"shoppingList.addItemNotes.save": "save",
"shoppingList.addItemNotes.placeholder": "Add notes to products",
"userManagement.addUser": "Add new user",
"userManagement.deleteUserSuccessfully": "User deleted successfully",
"userManagement.deleteUser": "Delete user",
"userManagement.delete.error": "An error occured while deleting the user",
"userManagement.delete.error.atLeastOneUser": "Company should have at least 1 user",
"userManagement.cancel": "cancel",
"userManagement.delete": "delete",
"userManagement.confirmDelete": "Are you sure you want to delete this user?",
"userManagement.addUserSuccessfully": "User added successfully",
"userManagement.userDetected": "User detected in your company, we will allow current storefront access for email: {email}",
"userManagement.updateUserSuccessfully": "update user successfully",
"userManagement.editUser": "Edit user",
"userManagement.addNewUser": "Add new user",
"userManagement.saveUser": "Save user",
"userManagement.config.email": "Email",
"userManagement.config.firstName": "First name",
"userManagement.config.lastName": "Last name",
"userManagement.config.phoneNumber": "Phone number",
"userManagement.config.userRole": "User role",
"userManagement.userRole.admin": "Admin",
"userManagement.userRole.seniorBuyer": "Senior buyer",
"userManagement.userRole.juniorBuyer": "Junior buyer",
"quoteDraft.addQuoteInfo": "Please add quote info before submitting",
"quoteDraft.submit": "Please add quote products before submitting",
"quoteDraft.submit.errorTip": "There are some products in the quote that are out of stock or unavailable for purchase. Please remove the product or modify the quantity of the product.",
"quoteDraft.button.backToQuoteLists": "Back to quote lists",
"quoteDraft.button.back": "Back",
"quoteDraft.button.backToProduct": "Back to product",
"quoteDraft.title.Quote": "Quote",
"quoteDraft.button.submit": "Submit",
"quoteDraft.section.billing": "Billing",
"quoteDraft.section.shipping": "Shipping",
"quoteDraft.button.saveInfo": "Save info",
"quoteDraft.checkbox.sameAddressShippingAndBilling": "My shipping address is the same as my billing address",
"quoteDraft.notification.cantAddProductsNoSku": "Can not add products without SKU.",
"quoteDraft.notification.productSingular": "Product was added to your quote.",
"quoteDraft.notification.productPlural": "Products were added to your quote.",
"quoteDraft.notification.errorRangeProducts": "The quantity of each product in Quote is 1-1000000.",
"quoteDraft.notification.businessAccountPendingActivation": "Your business account is pending approval. This feature is currently disabled.",
"quoteDraft.notification.openQuote": "Open quote",
"quoteDraft.notification.productCannotBeAddedToQuote": "Product {productId} is out of stock or unavailable for purchase. Please remove the product or modify the quantity of the product",
"quoteDraft.collapseTitle.addToQuote": "Add to quote",
"quoteDraft.modalTitle.addToQuote": "Add to quote",
"quoteDraft.button.addProductsToAddToQuote": "Add products to Quote",
"quoteDraft.button.bulkUploadCSV": "Bulk upload CSV",
"quoteDraft.contactInfo.contactPerson": "Contact person",
"quoteDraft.contactInfo.email": "Email",
"quoteDraft.contactInfo.companyName": "Company name",
"quoteDraft.contactInfo.phone": "Phone",
"quoteDraft.contactInfo.quoteTitle": "Quote Title",
"quoteDraft.quoteInfo.quoteTitle": "Quote title:",
"quoteDraft.contactInfo.emailExists": "Email already exists",
"quoteDraft.contactInfo.contact": "Buyer info",
"quoteDraft.quoteInfo.title": "Quote info",
"quoteDraft.contactInfo.referenceNumber": "Reference number",
"quoteDraft.quoteInfo.titleText": "Title:",
"quoteDraft.quoteInfo.referenceText": "Reference:",
"quoteDraft.quoteInfo.ccEmailText": "CC:",
"quoteDraft.contactInfo.ccEmail": "CC email",
"quoteDraft.quoteAddress.chooseFromSaved": "Choose from saved",
"quoteDraft.chooseAddress.chooseFromSaved": "Choose from saved",
"quoteDraft.chooseAddress.searchAddress": "Search address",
"quoteDraft.addressItemCard.defaultShipping": "Default shipping",
"quoteDraft.addressItemCard.defaultBilling": "Default billing",
"quoteDraft.addressItemCard.chooseAddress": "Choose address",
"quoteDraft.quoteSummary.summary": "Quote summary",
"quoteDraft.quoteSummary.subTotal": "Sub total",
"quoteDraft.quoteSummary.shipping": "Shipping",
"quoteDraft.quoteSummary.tax": "Estimated Tax",
"quoteDraft.quoteSummary.tbd": "TBD",
"quoteDraft.quoteSummary.grandTotal": "Grand total",
"quoteDraft.quoteTable.productUpdated": "Product was updated in your quote.",
"quoteDraft.quoteTable.product": "Product",
"quoteDraft.quoteTable.price": "Price",
"quoteDraft.quoteTable.qty": "Qty",
"quoteDraft.quoteTable.total": "Total",
"quoteDraft.quoteTable.perPage": "Per page:",
"quoteDraft.quoteTable.noProducts": "No products found",
"quoteDraft.quoteTable.totalProducts": "{total} products",
"quoteDraft.config.addressLabel": "Address label",
"quoteDraft.config.firstName": "First name",
"quoteDraft.config.lastName": "Last name",
"quoteDraft.config.company": "Company",
"quoteDraft.config.country": "Country",
"quoteDraft.config.addressLine1": "Address line 1",
"quoteDraft.config.addressLine2": "Address line 2 (optional)",
"quoteDraft.config.city": "City",
"quoteDraft.config.state": "State",
"quoteDraft.config.zipCode": "Zip code",
"quoteDraft.config.phoneNumber": "Phone number",
"quoteDraft.searchProduct.addToQuoteButton": "Add to quote",
"quoteDraft.submission.response.button.text": "OK",
"quoteDraft.quoteTable.outOfStock.tip": "Insufficient stock",
"quoteDraft.quoteTable.outOfStock.tipWithAvailability": "{availableToSell, plural, =0 {Insufficient stock — none available} other {Insufficient stock, only # available}}",
"quoteDraft.quoteTable.oosNumber.tip": "In stock: {qty}",
"quoteDraft.quoteTable.unavailable.tip": "Not available for purchase",
"quoteDraft.productPageToQuote.outOfStock": "{name} Out of stock. In stock: {qty}",
"quoteDraft.productPageToQuote.unavailable": "Not available for purchase",
"accountSettings.notification.detailsUpdated": "Your account details have been updated.",
"accountSettings.notification.emailExists": "Email already exists",
"accountSettings.notification.updateEmailPassword": "Please type in your current password to update your email address.",
"accountSettings.notification.noEdits": "You haven't made any edits",
"accountSettings.notification.passwordNotMatch": "The current password does not match",
"accountSettings.registeredToB2b.title": "Upgrade to a business account",
"accountSettings.registeredToB2b.description": "Access company level features like company specific pricing, buyer roles and permissions and more by completing a quick setup.",
"accountSettings.registeredToB2b.upgrade": "Upgrade",
"accountSettings.button.saveUpdates": "Save updates",
"accountSettings.form.company": "Company",
"accountSettings.form.role": "Role",
"accountSettings.form.admin": "Admin",
"accountSettings.form.seniorBuyer": "Senior buyer",
"accountSettings.form.juniorBuyer": "Junior buyer",
"accountSettings.form.superAdmin": "Super admin",
"accountSettings.form.currentPassword": "Current password",
"accountSettings.form.password": "Password",
"accountSettings.form.confirmPassword": "Confirm password",
"accountSettings.form.firstName": "First name",
"accountSettings.form.lastName": "Last name",
"accountSettings.form.email": "Email",
"accountSettings.form.phoneNumber": "Phone number",
"quoteDetail.uploadedByCustomer": "Uploaded by customer: {createdBy}",
"quoteDetail.uploadedBySalesRep": "Uploaded by sales rep: {createdBy}",
"quoteDetail.submittedQuote": "Your quote was submitted. You can always find the quote using this link.",
"quoteDetail.quoteSubmitted": "Your quote was submitted",
"quoteDetail.copySuccessful": "copy successfully",
"quoteDetail.copyQuoteLink": "Copy quote link",
"quoteDetail.reviewAllQuotes": "Review all quotes",
"quoteDetail.message.message": "Message",
"quoteDetail.message.merchantAnswers": "Merchant typically answers within 1 day",
"quoteDetail.message.typeMessage": "Type a message...",
"quoteDetail.message.insufficientStock": "{ProductName} does not have sufficient stock. Please contact your Sales Rep to have it re-issued.",
"quoteDetail.message.nonPurchasable": "{ProductName} is not purchasable. Please contact your Sales Rep to have it re-issued.",
"quoteDetail.message.sent": "Sent",
"quoteDetail.footer.proceedToCheckout": "Proceed to checkout",
"quoteDetail.header.backToQuoteLists": "Back to quote lists",
"quoteDetail.header.quoteNumber": "Quote #{quoteNumber}",
"quoteDetail.header.title": "Title:",
"quoteDetail.header.salesRep": "Sales rep:",
"quoteDetail.header.issuedOn": "Issued on:",
"quoteDetail.header.expirationDate": "Expiration date:",
"quoteDetail.header.print": "Print",
"quoteDetail.header.downloadPDF": "DownLoad pdf",
"quoteDetail.summary.quoteSummary": "Quote summary",
"quoteDetail.summary.quoteCheckout": "Customer choice at checkout",
"quoteDetail.summary.originalSubtotal": "Original subtotal",
"quoteDetail.summary.discountAmount": "Discount amount",
"quoteDetail.summary.quotedSubtotal": "Quoted subtotal",
"quoteDetail.summary.shipping": "Shipping",
"quoteDetail.summary.tax": "Tax",
"quoteDetail.summary.tbd": "TBD",
"quoteDetail.summary.estimatedTax": "Estimated Tax",
"quoteDetail.summary.grandTotal": "Grand total",
"quoteDetail.table.product": "Product",
"quoteDetail.table.price": "Price",
"quoteDetail.table.qty": "Quantity",
"quoteDetail.table.total": "Total",
"quoteDetail.table.perPage": "Per page:",
"quoteDetail.table.noProducts": "No products found",
"quoteDetail.table.totalProducts": "{total} products",
"quoteDetail.table.backorderDetails": "Backorder details",
"quoteDetail.table.readyToShip": "{totalOnHand} ready to ship",
"quoteDetail.table.willBeBackordered": "{quantityBackordered} will be backordered",
"quoteDetail.tableCard.price": "Price:",
"quoteDetail.tableCard.total": "Total:",
"quoteDetail.tableCard.qty": "Qty: {quantity}",
"quoteDetail.termsAndConditions": "Terms and conditions",
"register.title.registerComplete": "Application submitted",
"register.title.accountCreated": "Registration complete!",
"register.title.accountRegister": "Account registration",
"register.step.optional": "Optional",
"register.step.account": "Account",
"register.step.details": "Details",
"register.step.finish": "Finish",
"register.registeredAccount.accountType": "Account type",
"register.registeredAccount.businessAccount": "Business account",
"register.registeredAccount.personalAccount": "Personal account",
"register.label.companyAttachments": "Company attachments",
"register.tip.emailSignIn": "This email will be used to sign in to your account",
"register.emailValidate.alreadyExitsBC": "The email address {email} is already in use. Please enter a different one.",
"register.registeredSingleCheckBox.label": "Email me special promotions and updates",
"login.button.signIn": "Sign In",
"login.button.signInUppercase": "SIGN IN",
"login.button.createAccount": "CREATE ACCOUNT",
"login.loginTipInfo.resetPassword": "You must reset your password before you may log in again. Please check your email at {email} to reset your password",
"login.loginTipInfo.receivePassword": "If the entered email address is associated with this store, you will receive a password reset email. If you don't receive this e-mail, please check your junk mail folder or contact us for further assistance.",
"login.loginTipInfo.loggedOutLogin": "You've been logged out of your account successfully.",
"login.loginTipInfo.accountIncorrect": "Your email address or password is incorrect. Please try again. If you've forgotten your sign in details, just click the 'Forgot your password?' link below.",
"login.loginTipInfo.accountPrelaunch": "You can not login to the Buyer Portal while the store is in prelaunch or maintenance mode. Please set the store live, or login inside the customer admin panel.",
"login.loginText.forgotPasswordText": "Forgot your password?",
"login.loginText.invoiceErrorTip": "Please log in to view your invoice",
"login.loginText.deviceCrowdingLogIn": "The user has logged out, please log in again",
"login.loginText.password": "Password",
"login.loginText.signInHeader": "Sign in",
"login.registerLogo": "register Logo",
"login.loginText.quoteDetailToCheckoutUrl": "Please log in to purchase this quote",
"login.loginText.missingCaptcha": "The captcha you entered is incorrect. Please try again.",
"pdp.notification.productsAdded": "Products were added to your shopping list",
"pdp.notification.viewShoppingList": "view shopping list",
"pdp.addToShoppingList": "Add to shopping list",
"pdp.cartToQuote.error.notFound": "Cart not found",
"pdp.cartToQuote.error.empty": "No products in the cart.",
"forgotPassword.resetPassword": "Reset password",
"forgotPassword.requestEmail": "Fill in your email below to request a new password. An email will be sent to the address below containing a link to verify your email address.",
"forgotPassword.resetPasswordBtn": "Reset Password",
"registeredbctob2b.title": "Business Account Application",
"payment.errorInvoiceCantBeBlank": "The invoice cannot be blank",
"payment.errorOpenBalanceIsIncorrect": "The invoice openBalance code or value is incorrect",
"payment.invoiceDoesNotExist": "Invoice does not exist",
"payment.firstLoginToPay": "Please log in first and pay the invoice,",
"payment.clickToLandingPage": "Click ok to go to the landing page",
"payment.paymentSuccess": "Thank you for your payment",
"payment.paymentNumber": "Payment#",
"payment.paymentReceivedOn": "Payment received on",
"payment.transactionType": "Transaction type",
"payment.paymentType": "Payment type",
"payment.paymentTotal": "Payment total",
"payment.reference": "Reference",
"payment.paymentComment": "Payment comment",
"payment.invoicesPaid": "Invoices paid",
"payment.paymentTowardsInvoices": "You made payments towards the invoices shown below",
"payment.invoiceNumber": "Invoice#",
"payment.amountPaid": "Amount paid",
"payment.okButton": "Ok",
"companyHierarchy.table.name": "Name",
"companyHierarchy.dialog.title": "Switch company",
"companyHierarchy.dialog.content": "Switching to a different company will refresh your shopping cart. Do you want to continue?",
"companyHierarchy.chip.currentCompany": "Your company",
"companyHierarchy.chip.selectCompany": "Representing"
}