@dropins/mcp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. package/LICENSE.md +127 -0
  2. package/README.md +314 -0
  3. package/dist/common/project-reader.d.ts +55 -0
  4. package/dist/common/project-reader.js +173 -0
  5. package/dist/common/registry-loader.d.ts +101 -0
  6. package/dist/common/registry-loader.js +386 -0
  7. package/dist/common/response-handling.d.ts +12 -0
  8. package/dist/common/response-handling.js +21 -0
  9. package/dist/common/sanitize.d.ts +8 -0
  10. package/dist/common/sanitize.js +45 -0
  11. package/dist/common/synonyms.d.ts +9 -0
  12. package/dist/common/synonyms.js +127 -0
  13. package/dist/common/telemetry.d.ts +14 -0
  14. package/dist/common/telemetry.js +54 -0
  15. package/dist/common/types.d.ts +308 -0
  16. package/dist/common/types.js +1 -0
  17. package/dist/common/version.d.ts +2 -0
  18. package/dist/common/version.js +14 -0
  19. package/dist/index.d.ts +2 -0
  20. package/dist/index.js +136 -0
  21. package/dist/operations/analyze-project.d.ts +13 -0
  22. package/dist/operations/analyze-project.js +125 -0
  23. package/dist/operations/check-block-health.d.ts +19 -0
  24. package/dist/operations/check-block-health.js +1149 -0
  25. package/dist/operations/check-config.d.ts +13 -0
  26. package/dist/operations/check-config.js +228 -0
  27. package/dist/operations/explain-event-flow.d.ts +16 -0
  28. package/dist/operations/explain-event-flow.js +218 -0
  29. package/dist/operations/get-upgrade-diff.d.ts +13 -0
  30. package/dist/operations/get-upgrade-diff.js +144 -0
  31. package/dist/operations/list-api-functions.d.ts +13 -0
  32. package/dist/operations/list-api-functions.js +53 -0
  33. package/dist/operations/list-containers.d.ts +13 -0
  34. package/dist/operations/list-containers.js +44 -0
  35. package/dist/operations/list-design-tokens.d.ts +13 -0
  36. package/dist/operations/list-design-tokens.js +47 -0
  37. package/dist/operations/list-events.d.ts +16 -0
  38. package/dist/operations/list-events.js +39 -0
  39. package/dist/operations/list-graphql-queries.d.ts +19 -0
  40. package/dist/operations/list-graphql-queries.js +84 -0
  41. package/dist/operations/list-i18n-keys.d.ts +19 -0
  42. package/dist/operations/list-i18n-keys.js +105 -0
  43. package/dist/operations/list-models.d.ts +16 -0
  44. package/dist/operations/list-models.js +80 -0
  45. package/dist/operations/list-slots.d.ts +16 -0
  46. package/dist/operations/list-slots.js +81 -0
  47. package/dist/operations/scaffold-block.d.ts +31 -0
  48. package/dist/operations/scaffold-block.js +331 -0
  49. package/dist/operations/scaffold-extension.d.ts +28 -0
  50. package/dist/operations/scaffold-extension.js +346 -0
  51. package/dist/operations/scaffold-slot.d.ts +22 -0
  52. package/dist/operations/scaffold-slot.js +189 -0
  53. package/dist/operations/search-commerce-docs.d.ts +16 -0
  54. package/dist/operations/search-commerce-docs.js +101 -0
  55. package/dist/operations/search-docs.d.ts +23 -0
  56. package/dist/operations/search-docs.js +298 -0
  57. package/dist/operations/suggest-event-handler.d.ts +16 -0
  58. package/dist/operations/suggest-event-handler.js +175 -0
  59. package/dist/operations/suggest-slot-implementation.d.ts +19 -0
  60. package/dist/operations/suggest-slot-implementation.js +183 -0
  61. package/dist/registry/api-functions.json +3045 -0
  62. package/dist/registry/block-patterns.json +78 -0
  63. package/dist/registry/containers.json +2003 -0
  64. package/dist/registry/design-tokens.json +577 -0
  65. package/dist/registry/docs/boilerplate.json +55 -0
  66. package/dist/registry/docs/dropins-all.json +97 -0
  67. package/dist/registry/docs/dropins-b2b.json +607 -0
  68. package/dist/registry/docs/dropins-cart.json +163 -0
  69. package/dist/registry/docs/dropins-checkout.json +193 -0
  70. package/dist/registry/docs/dropins-order.json +139 -0
  71. package/dist/registry/docs/dropins-payment-services.json +73 -0
  72. package/dist/registry/docs/dropins-personalization.json +67 -0
  73. package/dist/registry/docs/dropins-product-details.json +139 -0
  74. package/dist/registry/docs/dropins-product-discovery.json +85 -0
  75. package/dist/registry/docs/dropins-recommendations.json +67 -0
  76. package/dist/registry/docs/dropins-user-account.json +121 -0
  77. package/dist/registry/docs/dropins-user-auth.json +103 -0
  78. package/dist/registry/docs/dropins-wishlist.json +85 -0
  79. package/dist/registry/docs/get-started.json +85 -0
  80. package/dist/registry/docs/how-tos.json +19 -0
  81. package/dist/registry/docs/index.json +139 -0
  82. package/dist/registry/docs/licensing.json +19 -0
  83. package/dist/registry/docs/merchants.json +523 -0
  84. package/dist/registry/docs/resources.json +13 -0
  85. package/dist/registry/docs/sdk.json +139 -0
  86. package/dist/registry/docs/setup.json +145 -0
  87. package/dist/registry/docs/troubleshooting.json +19 -0
  88. package/dist/registry/events.json +2200 -0
  89. package/dist/registry/examples/index.json +19 -0
  90. package/dist/registry/examples/storefront-checkout.json +377 -0
  91. package/dist/registry/examples/storefront-quote-management.json +49 -0
  92. package/dist/registry/extensions.json +272 -0
  93. package/dist/registry/graphql.json +3469 -0
  94. package/dist/registry/i18n.json +1873 -0
  95. package/dist/registry/models.json +1001 -0
  96. package/dist/registry/sdk.json +2357 -0
  97. package/dist/registry/slots.json +2270 -0
  98. package/dist/registry/tools-components.json +595 -0
  99. package/dist/resources/guides.d.ts +7 -0
  100. package/dist/resources/guides.js +625 -0
  101. package/dist/resources/handlers.d.ts +31 -0
  102. package/dist/resources/handlers.js +322 -0
  103. package/package.json +47 -0
@@ -0,0 +1,1873 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "description": "Auto-generated i18n key registry from dropin en_US.json dictionaries",
4
+ "dropins": {
5
+ "storefront-account": {
6
+ "version": "3.3.0",
7
+ "keyCount": 138,
8
+ "keys": {
9
+ "Account.minifiedView.CustomerInformation.containerTitle": "Account settings",
10
+ "Account.minifiedView.CustomerInformation.genderMale": "Male",
11
+ "Account.minifiedView.CustomerInformation.genderFemale": "Female",
12
+ "Account.minifiedView.CustomerInformation.changePassword.passwordValidationMessage.chartTwoSymbols": "Use characters and numbers or symbols",
13
+ "Account.minifiedView.CustomerInformation.changePassword.passwordValidationMessage.chartThreeSymbols": "Use characters, numbers and symbols",
14
+ "Account.minifiedView.CustomerInformation.changePassword.passwordValidationMessage.chartFourSymbols": "Use uppercase characters, lowercase characters, numbers and symbols",
15
+ "Account.minifiedView.CustomerInformation.changePassword.passwordValidationMessage.messageLengthPassword": "At least {minLength} characters long",
16
+ "Account.minifiedView.CustomerInformation.changePassword.passwordValidationMessage.passwordMismatch": "Passwords do not match. Please make sure both password fields are identical",
17
+ "Account.minifiedView.CustomerInformation.changePassword.passwordValidationMessage.incorrectCurrentPassword": "The current password you entered is incorrect. Please check and try again.",
18
+ "Account.minifiedView.CustomerInformation.changePassword.passwordValidationMessage.passwordUpdateMessage": "Your password has been updated",
19
+ "Account.minifiedView.CustomerInformation.changePassword.containerTitle": "Change password",
20
+ "Account.minifiedView.CustomerInformation.changePassword.currentPassword.placeholder": "Password",
21
+ "Account.minifiedView.CustomerInformation.changePassword.currentPassword.floatingLabel": "Password",
22
+ "Account.minifiedView.CustomerInformation.changePassword.newPassword.placeholder": "New Password",
23
+ "Account.minifiedView.CustomerInformation.changePassword.newPassword.floatingLabel": "New Password",
24
+ "Account.minifiedView.CustomerInformation.changePassword.confirmPassword.placeholder": "Confirm new password",
25
+ "Account.minifiedView.CustomerInformation.changePassword.confirmPassword.floatingLabel": "Confirm new password",
26
+ "Account.minifiedView.CustomerInformation.changePassword.buttonSecondary": "Cancel",
27
+ "Account.minifiedView.CustomerInformation.changePassword.buttonPrimary": "Save",
28
+ "Account.minifiedView.CustomerInformation.customerInformationCard.buttonSecondary": "Change password",
29
+ "Account.minifiedView.CustomerInformation.customerInformationCard.buttonPrimary": "Edit",
30
+ "Account.minifiedView.CustomerInformation.customerInformationCard.accountCreation": "Account creation date",
31
+ "Account.minifiedView.CustomerInformation.editCustomerInformation.containerTitle": "Edit details",
32
+ "Account.minifiedView.CustomerInformation.editCustomerInformation.buttonSecondary": "Cancel",
33
+ "Account.minifiedView.CustomerInformation.editCustomerInformation.buttonPrimary": "Save",
34
+ "Account.minifiedView.CustomerInformation.editCustomerInformation.accountSuccess": "Your account information has been updated.",
35
+ "Account.minifiedView.CustomerInformation.editCustomerInformation.accountError": "Your account information has not been updated.",
36
+ "Account.minifiedView.CustomerInformation.editCustomerInformation.passwordField.placeholder": "Password",
37
+ "Account.minifiedView.CustomerInformation.editCustomerInformation.passwordField.floatingLabel": "Password",
38
+ "Account.minifiedView.Addresses.containerTitle": "Addresses",
39
+ "Account.minifiedView.Addresses.editAddressFormTitle": "Edit address",
40
+ "Account.minifiedView.Addresses.differentAddressFormTitle": "Deliver to new address",
41
+ "Account.minifiedView.Addresses.viewAllAddressesButton": "View address list",
42
+ "Account.minifiedView.Addresses.differentAddressButton": "Use a different address",
43
+ "Account.minifiedView.Addresses.ariaLabelAddressPicker": "form",
44
+ "Account.minifiedView.Addresses.addressCard.actionRemove": "Remove",
45
+ "Account.minifiedView.Addresses.addressCard.actionEdit": "Edit",
46
+ "Account.minifiedView.Addresses.addressCard.cardLabelShipping": "Shipping",
47
+ "Account.minifiedView.Addresses.addressCard.cardLabelBilling": "Billing",
48
+ "Account.minifiedView.Addresses.addressCard.defaultLabelText": "DEFAULT",
49
+ "Account.minifiedView.Addresses.addressCard.ariaLabel.editButton.default": "Edit address",
50
+ "Account.minifiedView.Addresses.addressCard.ariaLabel.editButton.shipping": "Edit default shipping address",
51
+ "Account.minifiedView.Addresses.addressCard.ariaLabel.editButton.billing": "Edit default billing address",
52
+ "Account.minifiedView.Addresses.addressCard.ariaLabel.editButton.shippingAndBilling": "Edit address set as default for both shipping and billing",
53
+ "Account.minifiedView.Addresses.addressCard.ariaLabel.removeButton.default": "Remove address",
54
+ "Account.minifiedView.Addresses.addressCard.ariaLabel.removeButton.shipping": "Remove default shipping address",
55
+ "Account.minifiedView.Addresses.addressCard.ariaLabel.removeButton.billing": "Remove default billing address",
56
+ "Account.minifiedView.Addresses.addressCard.ariaLabel.removeButton.shippingAndBilling": "Remove address set as default for both shipping and billing",
57
+ "Account.minifiedView.Addresses.removeAddressModal.title": "Remove address",
58
+ "Account.minifiedView.Addresses.removeAddressModal.description": "Are you sure you would like to remove this address?",
59
+ "Account.minifiedView.Addresses.removeAddressModal.actionCancel": "Cancel",
60
+ "Account.minifiedView.Addresses.removeAddressModal.actionConfirm": "Remove",
61
+ "Account.minifiedView.OrdersList.containerTitle": "Recent orders",
62
+ "Account.minifiedView.OrdersList.viewAllOrdersButton": "View all orders",
63
+ "Account.minifiedView.OrdersList.ariaLabelLink": "Redirect to full order information",
64
+ "Account.minifiedView.OrdersList.dateOrderPlaced": "Date order placed",
65
+ "Account.minifiedView.OrdersList.OrdersListCard.orderNumber": "Order number:",
66
+ "Account.minifiedView.OrdersList.OrdersListCard.itemsAmount": "items",
67
+ "Account.minifiedView.OrdersList.OrdersListCard.carrier": "Carrier:",
68
+ "Account.minifiedView.OrdersList.OrdersListCard.returns": "Return(s):",
69
+ "Account.minifiedView.OrdersList.OrdersListCard.orderDate": "Placed on",
70
+ "Account.minifiedView.OrdersList.OrdersListSelectDate.pastSixMonths": "Past 6 months",
71
+ "Account.minifiedView.OrdersList.OrdersListSelectDate.currentYear": "Current year",
72
+ "Account.minifiedView.OrdersList.OrdersListSelectDate.viewAll": "View all",
73
+ "Account.minifiedView.EmptyList.Addresses.message": "No saved addresses",
74
+ "Account.minifiedView.EmptyList.OrdersList.message": "No orders",
75
+ "Account.minifiedView.EmptyList.Payments.message": "No saved payments",
76
+ "Account.fullSizeView.Addresses.containerTitle": "Addresses",
77
+ "Account.fullSizeView.Addresses.editAddressFormTitle": "Edit address",
78
+ "Account.fullSizeView.Addresses.differentAddressFormTitle": "Deliver to new address",
79
+ "Account.fullSizeView.Addresses.newAddressFormTitle": "Add address",
80
+ "Account.fullSizeView.Addresses.addNewAddressButton": "Create new",
81
+ "Account.fullSizeView.Addresses.differentAddressButton": "Use a different address",
82
+ "Account.fullSizeView.Addresses.ariaLabelAddressPicker": "form",
83
+ "Account.fullSizeView.Addresses.addressCard.actionRemove": "Remove",
84
+ "Account.fullSizeView.Addresses.addressCard.actionEdit": "Edit",
85
+ "Account.fullSizeView.Addresses.addressCard.cardLabelShipping": "Shipping",
86
+ "Account.fullSizeView.Addresses.addressCard.cardLabelBilling": "Billing",
87
+ "Account.fullSizeView.Addresses.addressCard.defaultLabelText": "DEFAULT",
88
+ "Account.fullSizeView.Addresses.addressCard.ariaLabel.editButton.default": "Edit address",
89
+ "Account.fullSizeView.Addresses.addressCard.ariaLabel.editButton.shipping": "Edit default shipping address",
90
+ "Account.fullSizeView.Addresses.addressCard.ariaLabel.editButton.billing": "Edit default billing address",
91
+ "Account.fullSizeView.Addresses.addressCard.ariaLabel.editButton.shippingAndBilling": "Edit address set as default for both shipping and billing",
92
+ "Account.fullSizeView.Addresses.addressCard.ariaLabel.removeButton.default": "Remove address",
93
+ "Account.fullSizeView.Addresses.addressCard.ariaLabel.removeButton.shipping": "Remove default shipping address",
94
+ "Account.fullSizeView.Addresses.addressCard.ariaLabel.removeButton.billing": "Remove default billing address",
95
+ "Account.fullSizeView.Addresses.addressCard.ariaLabel.removeButton.shippingAndBilling": "Remove address set as default for both shipping and billing",
96
+ "Account.fullSizeView.Addresses.removeAddressModal.title": "Remove address",
97
+ "Account.fullSizeView.Addresses.removeAddressModal.description": "Are you sure you would like to remove this address?",
98
+ "Account.fullSizeView.Addresses.removeAddressModal.actionCancel": "Cancel",
99
+ "Account.fullSizeView.Addresses.removeAddressModal.actionConfirm": "Remove",
100
+ "Account.fullSizeView.OrdersList.containerTitle": "Your orders",
101
+ "Account.fullSizeView.OrdersList.ariaLabelLink": "Redirect to full order information",
102
+ "Account.fullSizeView.OrdersList.dateOrderPlaced": "Date order placed",
103
+ "Account.fullSizeView.OrdersList.OrdersListCard.orderNumber": "Order number:",
104
+ "Account.fullSizeView.OrdersList.OrdersListCard.itemsAmount": "items",
105
+ "Account.fullSizeView.OrdersList.OrdersListCard.carrier": "Carrier:",
106
+ "Account.fullSizeView.OrdersList.OrdersListCard.returns": "Return(s):",
107
+ "Account.fullSizeView.OrdersList.OrdersListCard.orderDate": "Placed on",
108
+ "Account.fullSizeView.OrdersList.OrdersListSelectDate.pastSixMonths": "Past 6 months",
109
+ "Account.fullSizeView.OrdersList.OrdersListSelectDate.currentYear": "Current year",
110
+ "Account.fullSizeView.OrdersList.OrdersListSelectDate.viewAll": "View all",
111
+ "Account.fullSizeView.EmptyList.Addresses.message": "No saved addresses",
112
+ "Account.fullSizeView.EmptyList.OrdersList.message": "No orders",
113
+ "Account.fullSizeView.EmptyList.Payments.message": "No saved payments",
114
+ "Account.AddressForm.formText.secondaryButton": "Cancel",
115
+ "Account.AddressForm.formText.primaryButton": "Save",
116
+ "Account.AddressForm.formText.defaultShippingLabel": "Set as default shipping address",
117
+ "Account.AddressForm.formText.defaultBillingLabel": "Set as default billing address",
118
+ "Account.AddressForm.formText.saveAddressBook": "Save in address book",
119
+ "Account.AddressForm.fields.street.label": "Street Address",
120
+ "Account.AddressForm.fields.street.placeholder": "Enter your street address",
121
+ "Account.AddressForm.fields.street_multiline_2.label": "House/Flat Number",
122
+ "Account.AddressForm.fields.street_multiline_2.placeholder": "Enter your house/flat number",
123
+ "Account.FormText.requiredFieldError": "This is a required field.",
124
+ "Account.FormText.numericError": "Only numeric values are allowed.",
125
+ "Account.FormText.alphaNumWithSpacesError": "Only alphanumeric characters and spaces are allowed.",
126
+ "Account.FormText.alphaNumericError": "Only alphanumeric characters are allowed.",
127
+ "Account.FormText.alphaError": "Only alphabetic characters are allowed.",
128
+ "Account.FormText.emailError": "Please enter a valid email address.",
129
+ "Account.FormText.dateError": "Please enter a valid date.",
130
+ "Account.FormText.dateLengthError": "Date must be between {min} and {max}.",
131
+ "Account.FormText.urlError": "Please enter a valid URL, e.g., http://www.adobe.com.",
132
+ "Account.FormText.lengthTextError": "Text length must be between {min} and {max} characters.",
133
+ "Account.AddressValidation.title": "Verify your address",
134
+ "Account.AddressValidation.subtitle": "To ensure accurate delivery, we suggest the changes highlighted below. Please choose which address you would like to use. If neither option is correct, edit your address.",
135
+ "Account.AddressValidation.suggestedAddress": "Suggested Address",
136
+ "Account.AddressValidation.originalAddress": "Original Address",
137
+ "Account.Payments.containerTitle": "Payments",
138
+ "Account.Payments.loadError": "We couldn’t load your saved payment methods. Try again later.",
139
+ "Account.Payments.removeError": "We couldn’t remove this payment method. Try again.",
140
+ "Account.Payments.paymentCard.actionRemove": "Remove",
141
+ "Account.Payments.paymentCard.cardEndingIn": "Credit card ending in",
142
+ "Account.Payments.paymentCard.expiredLabel": "Expired",
143
+ "Account.Payments.removePaymentModal.title": "Remove Payment Method",
144
+ "Account.Payments.removePaymentModal.description": "Are you sure you would like to remove this payment method?",
145
+ "Account.Payments.removePaymentModal.actionCancel": "Cancel",
146
+ "Account.Payments.removePaymentModal.actionConfirm": "Remove"
147
+ }
148
+ },
149
+ "storefront-auth": {
150
+ "version": "3.2.0",
151
+ "keyCount": 56,
152
+ "keys": {
153
+ "Auth.PasswordValidationMessage.chartTwoSymbols": "Use characters and numbers or symbols",
154
+ "Auth.PasswordValidationMessage.chartThreeSymbols": "Use characters, numbers and symbols",
155
+ "Auth.PasswordValidationMessage.chartFourSymbols": "Use uppercase characters, lowercase characters, numbers and symbols",
156
+ "Auth.PasswordValidationMessage.messageLengthPassword": "At least {minLength} characters long",
157
+ "Auth.ResetPasswordForm.title": "Reset your password",
158
+ "Auth.ResetPasswordForm.buttonPrimary": "Reset password",
159
+ "Auth.ResetPasswordForm.buttonSecondary": "Back to sign in",
160
+ "Auth.ResetPasswordForm.formAriaLabel": "Reset your password form",
161
+ "Auth.SignInForm.title": "Sign in",
162
+ "Auth.SignInForm.buttonPrimary": "Sign in",
163
+ "Auth.SignInForm.buttonSecondary": "Sign up",
164
+ "Auth.SignInForm.buttonTertiary": "Forgot password?",
165
+ "Auth.SignUpForm.title": "Sign up",
166
+ "Auth.SignUpForm.buttonPrimary": "Create account",
167
+ "Auth.SignUpForm.buttonSecondary": "Already a member? Sign in",
168
+ "Auth.SignUpForm.keepMeLoggedText": "Keep me logged in after account creation",
169
+ "Auth.SignUpForm.failedCreateCustomerAddress": "Failed to create customer addresses:",
170
+ "Auth.SignUpForm.confirmPassword.placeholder": "Confirm password",
171
+ "Auth.SignUpForm.confirmPassword.floatingLabel": "Confirm password *",
172
+ "Auth.SignUpForm.confirmPassword.passwordMismatch": "Passwords do not match. Please make sure both password fields are identical.",
173
+ "Auth.UpdatePasswordForm.title": "Update password",
174
+ "Auth.UpdatePasswordForm.buttonPrimary": "Update password",
175
+ "Auth.FormText.requiredFieldError": "This is a required field.",
176
+ "Auth.FormText.numericError": "Only numeric values are allowed.",
177
+ "Auth.FormText.alphaNumWithSpacesError": "Only alphanumeric characters and spaces are allowed.",
178
+ "Auth.FormText.alphaNumericError": "Only alphanumeric characters are allowed.",
179
+ "Auth.FormText.alphaError": "Only alphabetic characters are allowed.",
180
+ "Auth.FormText.emailError": "Please enter a valid email address.",
181
+ "Auth.FormText.dateError": "Please enter a valid date.",
182
+ "Auth.FormText.dateLengthError": "Date must be between {min} and {max}.",
183
+ "Auth.FormText.dateMaxError": "Date must be less than or equal to {max}.",
184
+ "Auth.FormText.dateMinError": "Date must be greater than or equal to {min}.",
185
+ "Auth.FormText.urlError": "Please enter a valid URL, e.g., https://www.website.com.",
186
+ "Auth.FormText.lengthTextError": "Text length must be between {min} and {max} characters.",
187
+ "Auth.EmailConfirmationForm.title": "Verify your email address",
188
+ "Auth.EmailConfirmationForm.subtitle": "We`ve sent an email to",
189
+ "Auth.EmailConfirmationForm.mainText": "Check your inbox and click on the link we just send you to confirm your email address and activate your account.",
190
+ "Auth.EmailConfirmationForm.buttonSecondary": "Resend email",
191
+ "Auth.EmailConfirmationForm.buttonPrimary": "Close",
192
+ "Auth.EmailConfirmationForm.accountConfirmMessage": "Account confirmed",
193
+ "Auth.EmailConfirmationForm.accountConfirmationEmailSuccessMessage": "Congratulations! Your account at {email} email has been successfully confirmed.",
194
+ "Auth.Notification.errorNotification": "Your password update failed due to validation errors. Please check your information and try again.",
195
+ "Auth.Notification.updatePasswordMessage": "The password has been updated.",
196
+ "Auth.Notification.updatePasswordActionMessage": "Sign in",
197
+ "Auth.Notification.successPasswordResetEmailNotification": "If there is an account associated with {email} you will receive an email with a link to reset your password.",
198
+ "Auth.Notification.resendEmailNotification.informationText": "This account is not confirmed.",
199
+ "Auth.Notification.resendEmailNotification.buttonText": "Resend confirmation email",
200
+ "Auth.Notification.emailConfirmationMessage": "Please check your email for confirmation link.",
201
+ "Auth.Notification.technicalErrors.technicalErrorSendEmail": "A technical error occurred while trying to send the email. Please try again later.",
202
+ "Auth.SuccessNotification.headingText": "Welcome!",
203
+ "Auth.SuccessNotification.messageText": "We are glad to see you!",
204
+ "Auth.SuccessNotification.primaryButtonText": "Continue shopping",
205
+ "Auth.SuccessNotification.secondaryButtonText": "Logout",
206
+ "Auth.Api.customerTokenErrorMessage": "Unable to log in. Please try again later or contact support if the issue persists.",
207
+ "Auth.InputPassword.placeholder": "Password",
208
+ "Auth.InputPassword.floatingLabel": "Password *"
209
+ }
210
+ },
211
+ "storefront-cart": {
212
+ "version": "3.2.0",
213
+ "keyCount": 165,
214
+ "keys": {
215
+ "Cart.Cart.heading": "Shopping Cart ({count})",
216
+ "Cart.Cart.editCart": "Edit",
217
+ "Cart.Cart.viewAll": "View all in cart",
218
+ "Cart.Cart.viewMore": "View more",
219
+ "Cart.CartSummaryTable.item": "Item",
220
+ "Cart.CartSummaryTable.price": "Price",
221
+ "Cart.CartSummaryTable.qty": "Qty",
222
+ "Cart.CartSummaryTable.subtotal": "Subtotal",
223
+ "Cart.CartSummaryTable.mobilePrice": "Price",
224
+ "Cart.CartSummaryTable.mobileQty": "Qty",
225
+ "Cart.CartSummaryTable.mobileSubtotal": "Subtotal",
226
+ "Cart.MiniCart.heading": "Shopping Cart ({count})",
227
+ "Cart.MiniCart.subtotal": "Subtotal",
228
+ "Cart.MiniCart.subtotalExcludingTaxes": "Subtotal excluding taxes",
229
+ "Cart.MiniCart.cartLink": "View Cart",
230
+ "Cart.MiniCart.checkoutLink": "Checkout",
231
+ "Cart.EmptyCart.heading": "Your cart is empty",
232
+ "Cart.EmptyCart.cta": "Start shopping",
233
+ "Cart.PriceSummary.taxToBeDetermined": "TBD",
234
+ "Cart.PriceSummary.checkout": "Checkout",
235
+ "Cart.PriceSummary.orderSummary": "Order Summary",
236
+ "Cart.PriceSummary.giftCard.label": "Gift Card",
237
+ "Cart.PriceSummary.giftCard.applyAction": "Apply",
238
+ "Cart.PriceSummary.giftCard.ariaLabel": "Enter gift card code",
239
+ "Cart.PriceSummary.giftCard.ariaLabelRemove": "Remove gift card",
240
+ "Cart.PriceSummary.giftCard.placeholder": "Enter code",
241
+ "Cart.PriceSummary.giftCard.title": "Gift Card",
242
+ "Cart.PriceSummary.giftCard.errors.empty": "Please enter a gift card code.",
243
+ "Cart.PriceSummary.giftCard.appliedGiftCards.label.singular": "Gift card",
244
+ "Cart.PriceSummary.giftCard.appliedGiftCards.label.plural": "Gift cards",
245
+ "Cart.PriceSummary.giftCard.appliedGiftCards.remainingBalance": "Remaining balance",
246
+ "Cart.PriceSummary.giftOptionsTax.printedCard.title": "Printed card",
247
+ "Cart.PriceSummary.giftOptionsTax.printedCard.inclTax": "Including taxes",
248
+ "Cart.PriceSummary.giftOptionsTax.printedCard.exclTax": "excluding taxes",
249
+ "Cart.PriceSummary.giftOptionsTax.itemGiftWrapping.title": "Item gift wrapping",
250
+ "Cart.PriceSummary.giftOptionsTax.itemGiftWrapping.inclTax": "Including taxes",
251
+ "Cart.PriceSummary.giftOptionsTax.itemGiftWrapping.exclTax": "excluding taxes",
252
+ "Cart.PriceSummary.giftOptionsTax.orderGiftWrapping.title": "Order gift wrapping",
253
+ "Cart.PriceSummary.giftOptionsTax.orderGiftWrapping.inclTax": "Including taxes",
254
+ "Cart.PriceSummary.giftOptionsTax.orderGiftWrapping.exclTax": "excluding taxes",
255
+ "Cart.PriceSummary.subTotal.label": "Subtotal",
256
+ "Cart.PriceSummary.subTotal.withTaxes": "Including taxes",
257
+ "Cart.PriceSummary.subTotal.withoutTaxes": "excluding taxes",
258
+ "Cart.PriceSummary.shipping.label": "Shipping",
259
+ "Cart.PriceSummary.shipping.editZipAction": "Apply",
260
+ "Cart.PriceSummary.shipping.estimated": "Estimated Shipping",
261
+ "Cart.PriceSummary.shipping.estimatedDestination": "Estimated Shipping to",
262
+ "Cart.PriceSummary.shipping.destinationLinkAriaLabel": "Change destination",
263
+ "Cart.PriceSummary.shipping.zipPlaceholder": "Zip Code",
264
+ "Cart.PriceSummary.shipping.withTaxes": "Including taxes",
265
+ "Cart.PriceSummary.shipping.withoutTaxes": "excluding taxes",
266
+ "Cart.PriceSummary.shipping.alternateField.zip": "Estimate using country/zip",
267
+ "Cart.PriceSummary.shipping.alternateField.state": "Estimate using country/state",
268
+ "Cart.PriceSummary.taxes.total": "Tax Total",
269
+ "Cart.PriceSummary.taxes.totalOnly": "Tax",
270
+ "Cart.PriceSummary.taxes.breakdown": "Taxes",
271
+ "Cart.PriceSummary.taxes.showBreakdown": "Show Tax Breakdown",
272
+ "Cart.PriceSummary.taxes.hideBreakdown": "Hide Tax Breakdown",
273
+ "Cart.PriceSummary.taxes.estimated": "Estimated Tax",
274
+ "Cart.PriceSummary.total.estimated": "Estimated Total",
275
+ "Cart.PriceSummary.total.free": "Free",
276
+ "Cart.PriceSummary.total.label": "Total",
277
+ "Cart.PriceSummary.total.withoutTax": "Total excluding taxes",
278
+ "Cart.PriceSummary.total.saved": "Total saved",
279
+ "Cart.PriceSummary.estimatedShippingForm.country.placeholder": "Country",
280
+ "Cart.PriceSummary.estimatedShippingForm.state.placeholder": "State",
281
+ "Cart.PriceSummary.estimatedShippingForm.zip.placeholder": "Zip Code",
282
+ "Cart.PriceSummary.estimatedShippingForm.apply.label": "Apply",
283
+ "Cart.PriceSummary.freeShipping": "Free",
284
+ "Cart.PriceSummary.coupon.applyAction": "Apply",
285
+ "Cart.PriceSummary.coupon.placeholder": "Enter code",
286
+ "Cart.PriceSummary.coupon.title": "Discount code",
287
+ "Cart.PriceSummary.coupon.ariaLabelRemove": "Remove coupon",
288
+ "Cart.CartItem.discountedPrice": "Discounted Price",
289
+ "Cart.CartItem.download": "file",
290
+ "Cart.CartItem.message": "Note",
291
+ "Cart.CartItem.recipient": "To",
292
+ "Cart.CartItem.regularPrice": "Regular Price",
293
+ "Cart.CartItem.sender": "From",
294
+ "Cart.CartItem.file": "{count} file",
295
+ "Cart.CartItem.files": "{count} files",
296
+ "Cart.CartItem.lowInventory": "Only {count} left!",
297
+ "Cart.CartItem.insufficientQuantity": "Only {inventory} of {count} in stock",
298
+ "Cart.CartItem.insufficientQuantityGeneral": "Not enough items for sale",
299
+ "Cart.CartItem.notAvailableMessage": "Requested qty. not available",
300
+ "Cart.CartItem.discountPercentage": "{discount}% off",
301
+ "Cart.CartItem.savingsAmount": "Savings",
302
+ "Cart.CartItem.includingTax": "Incl. tax",
303
+ "Cart.CartItem.excludingTax": "Excl. tax",
304
+ "Cart.CartItem.itemBeingRemoved": "\"{product}\" is being removed",
305
+ "Cart.CartItem.itemRemoved": "\"{product}\" was removed",
306
+ "Cart.CartItem.itemRemovedDescription": "Changed your mind? You can undo this action.",
307
+ "Cart.CartItem.undoAction": "Undo",
308
+ "Cart.CartItem.dismissAction": "Dismiss",
309
+ "Cart.EstimateShipping.label": "Shipping",
310
+ "Cart.EstimateShipping.editZipAction": "Apply",
311
+ "Cart.EstimateShipping.estimated": "Estimated Shipping",
312
+ "Cart.EstimateShipping.estimatedDestination": "Estimated Shipping to",
313
+ "Cart.EstimateShipping.destinationLinkAriaLabel": "{destination}, Change destination",
314
+ "Cart.EstimateShipping.zipPlaceholder": "Zip Code",
315
+ "Cart.EstimateShipping.withTaxes": "Including taxes",
316
+ "Cart.EstimateShipping.withoutTaxes": "excluding taxes",
317
+ "Cart.EstimateShipping.alternateField.zip": "Estimate using country/zip",
318
+ "Cart.EstimateShipping.alternateField.state": "Estimate using country/state",
319
+ "Cart.OutOfStockMessage.heading": "Your cart contains items with limited stock",
320
+ "Cart.OutOfStockMessage.message": "Please adjust quantities to continue",
321
+ "Cart.OutOfStockMessage.alert": "Out of stock",
322
+ "Cart.OutOfStockMessage.action": "Remove all out of stock items from cart",
323
+ "Cart.GiftOptions.formText.requiredFieldError": "This field is required",
324
+ "Cart.GiftOptions.modal.defaultTitle": "Gift wrapping for Cart",
325
+ "Cart.GiftOptions.modal.title": "Gift wrapping for",
326
+ "Cart.GiftOptions.modal.wrappingText": "Wrapping choice",
327
+ "Cart.GiftOptions.modal.wrappingSubText": "",
328
+ "Cart.GiftOptions.modal.modalConfirmButton": "Apply",
329
+ "Cart.GiftOptions.modal.modalCancelButton": "Cancel",
330
+ "Cart.GiftOptions.modal.ariaLabelModal": "Gift modal",
331
+ "Cart.GiftOptions.modal.ariaLabelModalOpen": "open",
332
+ "Cart.GiftOptions.modal.ariaLabelModalClose": "close",
333
+ "Cart.GiftOptions.modal.ariaLabelWrapping": "Wrapping options",
334
+ "Cart.GiftOptions.order.customize": "Customize",
335
+ "Cart.GiftOptions.order.accordionHeading": "Gift options",
336
+ "Cart.GiftOptions.order.giftReceiptIncluded.title": "Use gift receipt",
337
+ "Cart.GiftOptions.order.giftReceiptIncluded.subtitle": "The receipt and order invoice will not show the price.",
338
+ "Cart.GiftOptions.order.printedCardIncluded.title": "Include printed card",
339
+ "Cart.GiftOptions.order.printedCardIncluded.subtitle": "",
340
+ "Cart.GiftOptions.order.giftOptionsWrap.title": "Gift wrap this order",
341
+ "Cart.GiftOptions.order.giftOptionsWrap.subtitle": "Wrapping option:",
342
+ "Cart.GiftOptions.order.formContent.formTitle": "Add a message to the order (optional)",
343
+ "Cart.GiftOptions.order.formContent.formTo": "To",
344
+ "Cart.GiftOptions.order.formContent.formFrom": "From",
345
+ "Cart.GiftOptions.order.formContent.giftMessageTitle": "Gift message",
346
+ "Cart.GiftOptions.order.formContent.formToPlaceholder": "Recipient's name",
347
+ "Cart.GiftOptions.order.formContent.formFromPlaceholder": "Sender's name",
348
+ "Cart.GiftOptions.order.formContent.formMessagePlaceholder": "Gift message",
349
+ "Cart.GiftOptions.order.readOnlyFormView.title": "Selected gift order options",
350
+ "Cart.GiftOptions.order.readOnlyFormView.giftWrap": "Gift wrap this order",
351
+ "Cart.GiftOptions.order.readOnlyFormView.giftWrapOptions": "Wrapping option:",
352
+ "Cart.GiftOptions.order.readOnlyFormView.giftReceipt": "Use gift receipt",
353
+ "Cart.GiftOptions.order.readOnlyFormView.giftReceiptText": "The receipt and order invoice will not show the price.",
354
+ "Cart.GiftOptions.order.readOnlyFormView.printCard": "Use printed card",
355
+ "Cart.GiftOptions.order.readOnlyFormView.printCardText": "",
356
+ "Cart.GiftOptions.order.readOnlyFormView.formTitle": "Your gift message",
357
+ "Cart.GiftOptions.order.readOnlyFormView.formTo": "To",
358
+ "Cart.GiftOptions.order.readOnlyFormView.formFrom": "From",
359
+ "Cart.GiftOptions.order.readOnlyFormView.formMessageTitle": "Gift message",
360
+ "Cart.GiftOptions.product.customize": "Customize",
361
+ "Cart.GiftOptions.product.accordionHeading": "Gift options",
362
+ "Cart.GiftOptions.product.giftReceiptIncluded.title": "Use gift receipt",
363
+ "Cart.GiftOptions.product.giftReceiptIncluded.subtitle": "The receipt and order invoice will not show the price.",
364
+ "Cart.GiftOptions.product.printedCardIncluded.title": "Include printed card",
365
+ "Cart.GiftOptions.product.printedCardIncluded.subtitle": "",
366
+ "Cart.GiftOptions.product.giftOptionsWrap.title": "Gift wrap this item",
367
+ "Cart.GiftOptions.product.giftOptionsWrap.subtitle": "Wrapping option:",
368
+ "Cart.GiftOptions.product.formContent.formTitle": "Add a message to the item (optional)",
369
+ "Cart.GiftOptions.product.formContent.formTo": "To",
370
+ "Cart.GiftOptions.product.formContent.formFrom": "From",
371
+ "Cart.GiftOptions.product.formContent.giftMessageTitle": "Gift message",
372
+ "Cart.GiftOptions.product.formContent.formToPlaceholder": "Recipient's name",
373
+ "Cart.GiftOptions.product.formContent.formFromPlaceholder": "Sender's name",
374
+ "Cart.GiftOptions.product.formContent.formMessagePlaceholder": "Gift message",
375
+ "Cart.GiftOptions.product.readOnlyFormView.title": "This item is a gift",
376
+ "Cart.GiftOptions.product.readOnlyFormView.wrapping": "Wrapping:",
377
+ "Cart.GiftOptions.product.readOnlyFormView.recipient": "To:",
378
+ "Cart.GiftOptions.product.readOnlyFormView.sender": "From:",
379
+ "Cart.GiftOptions.product.readOnlyFormView.message": "Message:"
380
+ }
381
+ },
382
+ "storefront-checkout": {
383
+ "version": "3.2.1",
384
+ "keyCount": 72,
385
+ "keys": {
386
+ "Checkout.AddressValidation.title": "Verify your address",
387
+ "Checkout.AddressValidation.subtitle": "To ensure accurate delivery, we suggest the changes highlighted below. Please choose which address you would like to use. If neither option is correct, edit your address.",
388
+ "Checkout.AddressValidation.suggestedAddress": "Suggested Address",
389
+ "Checkout.AddressValidation.originalAddress": "Original Address",
390
+ "Checkout.BillToShippingAddress.cartSyncError": "We were unable to save your changes. Please try again later.",
391
+ "Checkout.BillToShippingAddress.title": "Bill to shipping address",
392
+ "Checkout.EmptyCart.button": "Start shopping",
393
+ "Checkout.EmptyCart.title": "Your cart is empty",
394
+ "Checkout.EstimateShipping.estimated": "Estimated Shipping",
395
+ "Checkout.EstimateShipping.freeShipping": "Free",
396
+ "Checkout.EstimateShipping.label": "Shipping",
397
+ "Checkout.EstimateShipping.taxToBeDetermined": "TBD",
398
+ "Checkout.EstimateShipping.withoutTaxes": "Excluding taxes",
399
+ "Checkout.EstimateShipping.withTaxes": "Including taxes",
400
+ "Checkout.LoginForm.account": "Already have an account?",
401
+ "Checkout.LoginForm.ariaLabel": "Email",
402
+ "Checkout.LoginForm.emailExists.alreadyHaveAccount": "It looks like you already have an account.",
403
+ "Checkout.LoginForm.emailExists.forFasterCheckout": "for a faster checkout.",
404
+ "Checkout.LoginForm.emailExists.signInButton": "Sign in",
405
+ "Checkout.LoginForm.floatingLabel": "Email *",
406
+ "Checkout.LoginForm.invalidEmailError": "Please enter a valid email address.",
407
+ "Checkout.LoginForm.missingEmailError": "Enter an email address.",
408
+ "Checkout.LoginForm.cartSyncError": "We were unable to save your changes. Please try again later.",
409
+ "Checkout.LoginForm.placeholder": "Enter your email address",
410
+ "Checkout.LoginForm.signIn": "Sign In",
411
+ "Checkout.LoginForm.signOut": "Sign Out",
412
+ "Checkout.LoginForm.switch": "Do you want to switch account?",
413
+ "Checkout.LoginForm.title": "Contact details",
414
+ "Checkout.MergedCartBanner.items.many": "{{count}} items from a previous session were added to your cart. Please review your new subtotal.",
415
+ "Checkout.MergedCartBanner.items.one": "1 item from a previous session was added to your cart. Please review your new subtotal.",
416
+ "Checkout.OutOfStock.actions.removeOutOfStock": "Remove out of stock items",
417
+ "Checkout.OutOfStock.actions.reviewCart": "Review cart",
418
+ "Checkout.OutOfStock.alert": "Out of stock!",
419
+ "Checkout.OutOfStock.lowInventory.many": "Only {{count}} left!",
420
+ "Checkout.OutOfStock.lowInventory.one": "Last item!",
421
+ "Checkout.OutOfStock.message": "The following items are out of stock:",
422
+ "Checkout.OutOfStock.title": "Your cart contains items that are out of stock",
423
+ "Checkout.PaymentMethods.cartSyncError": "We were unable to save your changes. Please try again later.",
424
+ "Checkout.PaymentMethods.emptyState": "No payment methods available",
425
+ "Checkout.PaymentMethods.title": "Payment",
426
+ "Checkout.PaymentOnAccount.referenceNumberLabel": "Custom Reference Number",
427
+ "Checkout.PaymentOnAccount.referenceNumberPlaceholder": "Enter custom reference number",
428
+ "Checkout.PaymentOnAccount.referenceNumberHint": "",
429
+ "Checkout.PaymentOnAccount.availableCreditLabel": "Available Credit",
430
+ "Checkout.PaymentOnAccount.exceedLimitWarning": "The credit limit is {{creditLimit}}. It will be exceeded by {{exceededAmount}} with this order.",
431
+ "Checkout.PaymentOnAccount.exceedLimitWarningPrefix": "The credit limit is",
432
+ "Checkout.PaymentOnAccount.exceedLimitWarningMiddle": ". It will be exceeded by",
433
+ "Checkout.PaymentOnAccount.exceedLimitWarningSuffix": "with this order.",
434
+ "Checkout.PaymentOnAccount.exceedLimitError": "Payment On Account cannot be used for this order because your order amount exceeds your credit amount.",
435
+ "Checkout.PurchaseOrder.missingReferenceNumberError": "Reference number is required",
436
+ "Checkout.PurchaseOrder.referenceNumberHint": "",
437
+ "Checkout.PurchaseOrder.referenceNumberLabel": "Custom Reference Number",
438
+ "Checkout.PurchaseOrder.referenceNumberPlaceholder": "Enter custom reference number",
439
+ "Checkout.PlaceOrder.button": "Place Order",
440
+ "Checkout.ServerError.button": "Try again",
441
+ "Checkout.ServerError.contactSupport": "If you continue to have issues, please contact support.",
442
+ "Checkout.ServerError.title": "We were unable to process your order",
443
+ "Checkout.ServerError.unexpected": "An unexpected error occurred while processing your order. Please try again later.",
444
+ "Checkout.ServerError.permissionDenied": "You do not have permission to complete checkout. Please contact your administrator for assistance.",
445
+ "Checkout.Quote.permissionDenied": "You do not have permission to checkout with this quote.",
446
+ "Checkout.Quote.dataError": "We were unable to retrieve the quote data. Please try again later.",
447
+ "Checkout.ShippingMethods.cartSyncError": "We were unable to save your changes. Please try again later.",
448
+ "Checkout.ShippingMethods.emptyState": "This order can't be shipped to the address provided. Please review the address details you entered and make sure they're correct.",
449
+ "Checkout.ShippingMethods.title": "Shipping options",
450
+ "Checkout.Summary.Edit": "Edit",
451
+ "Checkout.Summary.heading": "Your Cart ({count})",
452
+ "Checkout.Addresses.billToNewAddress": "Bill to new address",
453
+ "Checkout.Addresses.shippingAddressTitle": "Shipping address",
454
+ "Checkout.Addresses.billingAddressTitle": "Billing address",
455
+ "Checkout.TermsAndConditions.error": "Please accept the Terms and Conditions to continue.",
456
+ "Checkout.TermsAndConditions.label": "I have read, understand, and accept our <a href='https://www.adobe.com/legal/terms.html' target='_blank'>Terms of Use, Terms of Sales, Privacy Policy, and Return Policy</a>.",
457
+ "Checkout.title": "Checkout"
458
+ }
459
+ },
460
+ "storefront-company-management": {
461
+ "version": "1.2.0",
462
+ "keyCount": 343,
463
+ "keys": {
464
+ "Company.shared.fields.companyName": "Company Name",
465
+ "Company.shared.fields.companyEmail": "Company Email",
466
+ "Company.shared.fields.email": "Email",
467
+ "Company.shared.fields.legalName": "Legal Name",
468
+ "Company.shared.fields.vatTaxId": "VAT/Tax ID",
469
+ "Company.shared.fields.resellerId": "Reseller ID",
470
+ "Company.shared.fields.accountInformation": "Account Information",
471
+ "Company.shared.fields.legalAddress": "Legal Address",
472
+ "Company.shared.fields.streetAddress": "Street Address",
473
+ "Company.shared.fields.city": "City",
474
+ "Company.shared.fields.country": "Country",
475
+ "Company.shared.fields.stateProvince": "State/Province",
476
+ "Company.shared.fields.zipPostalCode": "ZIP/Postal Code",
477
+ "Company.shared.fields.phoneNumber": "Phone Number",
478
+ "Company.shared.fields.status": "Status",
479
+ "Company.shared.fields.region": "Region",
480
+ "Company.shared.fields.postalCode": "Postal Code",
481
+ "Company.shared.fields.jobTitle": "Job Title",
482
+ "Company.shared.fields.workPhoneNumber": "Work Phone Number",
483
+ "Company.shared.fields.userRole": "User Role",
484
+ "Company.shared.fields.title": "New Company",
485
+ "Company.shared.fields.companyInformation": "Company Information",
486
+ "Company.shared.fields.street": "Street Address",
487
+ "Company.shared.fields.streetLine2": "Street Address Line 2",
488
+ "Company.shared.fields.postcode": "ZIP/Postal Code",
489
+ "Company.shared.fields.telephone": "Phone Number",
490
+ "Company.shared.fields.companyAdmin": "Company Administrator",
491
+ "Company.shared.fields.adminJobTitle": "Job Title",
492
+ "Company.shared.fields.adminWorkTelephone": "Work Phone Number",
493
+ "Company.shared.fields.adminEmail": "Email",
494
+ "Company.shared.fields.adminFirstname": "First Name",
495
+ "Company.shared.fields.adminLastname": "Last Name",
496
+ "Company.shared.fields.adminGender": "Gender",
497
+ "Company.shared.fields.address": "Address",
498
+ "Company.shared.fields.submit": "Register Company",
499
+ "Company.shared.fields.submitting": "Registering...",
500
+ "Company.shared.fields.required": "Required",
501
+ "Company.shared.fields.createCompanyError": "Failed to create company. Please try again.",
502
+ "Company.shared.fields.unexpectedError": "An unexpected error occurred. Please try again.",
503
+ "Company.shared.buttons.edit": "Edit",
504
+ "Company.shared.buttons.cancel": "Cancel",
505
+ "Company.shared.buttons.save": "Save Changes",
506
+ "Company.shared.buttons.saving": "Saving...",
507
+ "Company.shared.buttons.close": "Close",
508
+ "Company.shared.buttons.confirm": "Confirm",
509
+ "Company.shared.validation.required": "This field is required",
510
+ "Company.shared.validation.invalidEmail": "Please enter a valid email address",
511
+ "Company.shared.validation.companyNameRequired": "Company name is required",
512
+ "Company.shared.validation.emailRequired": "Email is required",
513
+ "Company.shared.validation.emailNotAvailable": "This email is already used by another company",
514
+ "Company.shared.validation.phoneInvalid": "Please enter a valid phone number",
515
+ "Company.shared.validation.postalCodeInvalid": "Please enter a valid postal code",
516
+ "Company.shared.validation.companyNameLengthError": "Company name must not exceed 40 characters",
517
+ "Company.shared.validation.legalNameLengthError": "Legal name must not exceed 80 characters",
518
+ "Company.shared.validation.vatTaxIdLengthError": "VAT/Tax ID must not exceed 40 characters",
519
+ "Company.shared.validation.resellerIdLengthError": "Reseller ID must not exceed 40 characters",
520
+ "Company.shared.validation.roleNameRequired": "This is a required field.",
521
+ "Company.shared.validation.roleNameExists": "User role with this name already exists. Enter a different name to save this role.",
522
+ "Company.shared.messages.loading": "Loading...",
523
+ "Company.shared.messages.noData": "No data available",
524
+ "Company.shared.messages.error": "An error occurred",
525
+ "Company.shared.messages.success": "Operation completed successfully",
526
+ "Company.shared.loading": "Loading...",
527
+ "Company.shared.ariaLabels.editButton": "Edit company profile",
528
+ "Company.shared.ariaLabels.cancelButton": "Cancel editing",
529
+ "Company.shared.ariaLabels.saveButton": "Save company profile changes",
530
+ "Company.shared.ariaLabels.closeButton": "Close dialog",
531
+ "Company.CompanyProfile.containerTitle": "Company Profile",
532
+ "Company.CompanyProfile.editCompanyProfile.containerTitle": "Edit Company Profile",
533
+ "Company.CompanyProfile.editCompanyProfile.companySuccess": "Company profile updated successfully",
534
+ "Company.CompanyProfile.editCompanyProfile.companyError": "Failed to update company profile",
535
+ "Company.CompanyProfile.editCompanyProfile.buttonSecondary": "Cancel",
536
+ "Company.CompanyProfile.editCompanyProfile.buttonPrimary": "Save Changes",
537
+ "Company.CompanyProfile.companyProfileCard.noDataMessage": "Company profile not available. Please contact your administrator.",
538
+ "Company.CompanyProfile.companyProfileCard.contacts": "Contacts",
539
+ "Company.CompanyProfile.companyProfileCard.companyAdministrator": "Company Administrator",
540
+ "Company.CompanyProfile.companyProfileCard.salesRepresentative": "Sales Representative",
541
+ "Company.CompanyProfile.companyProfileCard.paymentInformation": "Payment Information",
542
+ "Company.CompanyProfile.companyProfileCard.availablePaymentMethods": "Available Payment Methods",
543
+ "Company.CompanyProfile.companyProfileCard.shippingInformation": "Shipping Information",
544
+ "Company.CompanyProfile.companyProfileCard.availableShippingMethods": "Available Shipping Methods",
545
+ "Company.CompanyProfile.companyProfileCard.noPaymentMethods": "This company has no payment methods. Please contact store administrator.",
546
+ "Company.CompanyProfile.companyProfileCard.noShippingMethods": "This company has no shipping methods. Please contact store administrator.",
547
+ "Company.CompanyProfile.companyProfileCard.companyDetails": "Company Details",
548
+ "Company.CompanyProfile.companyProfileCard.addressInformation": "Address Information",
549
+ "Company.CompanyProfile.messages.loadError": "Failed to load company profile",
550
+ "Company.CompanyProfile.messages.updateError": "Failed to update company profile",
551
+ "Company.CompanyProfile.messages.loadingProfile": "Loading company profile...",
552
+ "Company.CompanyProfile.messages.savingProfile": "Saving company profile...",
553
+ "Company.CompanyProfile.messages.noDataToUpdate": "No data to update",
554
+ "Company.CompanyStructure.containerTitle": "Company Structure",
555
+ "Company.CompanyStructure.shared.buttons.addUser": "Add User",
556
+ "Company.CompanyStructure.shared.buttons.addTeam": "Add Team",
557
+ "Company.CompanyStructure.shared.buttons.editSelected": "Edit",
558
+ "Company.CompanyStructure.shared.buttons.remove": "Remove",
559
+ "Company.CompanyStructure.shared.buttons.ok": "OK",
560
+ "Company.CompanyStructure.shared.buttons.cancel": "Cancel",
561
+ "Company.CompanyStructure.shared.buttons.close": "Close",
562
+ "Company.CompanyStructure.shared.buttons.save": "Save",
563
+ "Company.CompanyStructure.shared.buttons.deleting": "Deleting…",
564
+ "Company.CompanyStructure.shared.buttons.removing": "Removing…",
565
+ "Company.CompanyStructure.shared.buttons.expandAll": "Expand All",
566
+ "Company.CompanyStructure.shared.buttons.collapseAll": "Collapse All",
567
+ "Company.CompanyStructure.shared.titles.addUser": "Add User",
568
+ "Company.CompanyStructure.shared.titles.editUser": "Edit User",
569
+ "Company.CompanyStructure.shared.titles.addTeam": "Add Team",
570
+ "Company.CompanyStructure.shared.titles.editTeam": "Edit Team",
571
+ "Company.CompanyStructure.shared.fields.jobTitle": "Job Title",
572
+ "Company.CompanyStructure.shared.fields.userRole": "User Role",
573
+ "Company.CompanyStructure.shared.fields.firstName": "First Name",
574
+ "Company.CompanyStructure.shared.fields.lastName": "Last Name",
575
+ "Company.CompanyStructure.shared.fields.email": "Email",
576
+ "Company.CompanyStructure.shared.fields.workPhoneNumber": "Work Phone Number",
577
+ "Company.CompanyStructure.shared.fields.status": "Status",
578
+ "Company.CompanyStructure.shared.fields.teamTitle": "Team Title",
579
+ "Company.CompanyStructure.shared.fields.description": "Description",
580
+ "Company.CompanyStructure.shared.options.selectRole": "Select role…",
581
+ "Company.CompanyStructure.shared.options.active": "Active",
582
+ "Company.CompanyStructure.shared.options.inactive": "Inactive",
583
+ "Company.CompanyStructure.shared.options.companyAdministrator": "Company Administrator",
584
+ "Company.CompanyStructure.shared.options.delete": "Delete",
585
+ "Company.CompanyStructure.shared.options.expand": "Expand",
586
+ "Company.CompanyStructure.shared.options.collapse": "Collapse",
587
+ "Company.CompanyStructure.shared.ariaLabels.addUser": "Add user",
588
+ "Company.CompanyStructure.shared.ariaLabels.addTeam": "Add team",
589
+ "Company.CompanyStructure.shared.ariaLabels.editSelected": "Edit selected",
590
+ "Company.CompanyStructure.shared.ariaLabels.removeSelected": "Remove selected",
591
+ "Company.CompanyStructure.shared.ariaLabels.showDescription": "Show description",
592
+ "Company.CompanyStructure.shared.ariaLabels.companyStructureActions": "Company structure actions",
593
+ "Company.CompanyStructure.shared.ariaLabels.expandAllNodes": "Expand all nodes",
594
+ "Company.CompanyStructure.shared.ariaLabels.collapseAllNodes": "Collapse all nodes",
595
+ "Company.CompanyStructure.shared.messages.processing": "Processing…",
596
+ "Company.CompanyStructure.shared.messages.teamDescription": "Team description",
597
+ "Company.CompanyStructure.shared.validation.firstNameRequired": "First name is required",
598
+ "Company.CompanyStructure.shared.validation.lastNameRequired": "Last name is required",
599
+ "Company.CompanyStructure.shared.validation.emailRequired": "Email is required",
600
+ "Company.CompanyStructure.shared.validation.emailInvalid": "Enter a valid email",
601
+ "Company.CompanyStructure.shared.validation.jobTitleRequired": "Job title is required",
602
+ "Company.CompanyStructure.shared.validation.workPhoneRequired": "Work phone number is required",
603
+ "Company.CompanyStructure.shared.validation.selectRole": "Select a role",
604
+ "Company.CompanyStructure.shared.validation.teamTitleRequired": "Team title is required",
605
+ "Company.CompanyStructure.shared.validation.firstNameMaxLength": "First name must not exceed 255 characters",
606
+ "Company.CompanyStructure.shared.validation.lastNameMaxLength": "Last name must not exceed 255 characters",
607
+ "Company.CompanyStructure.shared.validation.emailMaxLength": "Email must not exceed 254 characters",
608
+ "Company.CompanyStructure.shared.validation.jobTitleMaxLength": "Job title must not exceed 255 characters",
609
+ "Company.CompanyStructure.shared.validation.telephoneMaxLength": "Phone number must not exceed 20 characters",
610
+ "Company.CompanyStructure.shared.validation.teamNameMaxLength": "Team title must not exceed 39 characters",
611
+ "Company.CompanyStructure.shared.validation.teamDescriptionMaxLength": "Team description must not exceed 1000 characters",
612
+ "Company.CompanyStructure.shared.validation.firstNameInvalidChars": "First name contains invalid characters. Only letters, numbers, spaces, and ,-._'`& are allowed",
613
+ "Company.CompanyStructure.shared.validation.lastNameInvalidChars": "Last name contains invalid characters. Only letters, numbers, spaces, and ,-._'`& are allowed",
614
+ "Company.CompanyStructure.shared.validation.telephoneInvalidChars": "Phone number contains invalid characters. Only 0-9, +, -, (, ), and spaces are allowed",
615
+ "Company.CompanyStructure.messages.loadError": "Failed to load company structure",
616
+ "Company.CompanyStructure.messages.updateError": "Failed to update company structure",
617
+ "Company.CompanyStructure.messages.noStructureData": "No structure data.",
618
+ "Company.CompanyStructure.messages.cannotDeleteUser": "Cannot Delete User",
619
+ "Company.CompanyStructure.messages.cannotDeleteTeam": "Cannot Delete This Team",
620
+ "Company.CompanyStructure.messages.removeUserConfirm": "Remove this user from Company structure?",
621
+ "Company.CompanyStructure.messages.deleteTeamConfirm": "Delete this team?",
622
+ "Company.CompanyStructure.messages.removeItemsConfirm": "Remove {count} item(s)?",
623
+ "Company.CompanyStructure.messages.removeUserMessage": "Removing a user changes the account status to Inactive. The user's content is still available to the Company administrator, but the user cannot log in.",
624
+ "Company.CompanyStructure.messages.cannotDeleteUserMessage": "This user has active users or teams assigned to it and cannot be deleted. Please unassign the users or teams first.",
625
+ "Company.CompanyStructure.messages.cannotDeleteTeamMessage": "This team has active users or teams assigned to it and cannot be deleted. Please unassign the users or teams first.",
626
+ "Company.CompanyStructure.messages.removeItemsMessage": "This action will remove the selected items from the company structure.",
627
+ "Company.CompanyStructure.messages.deleteTeamMessage": "This action cannot be undone. Are you sure you want to delete this team?",
628
+ "Company.CompanyStructure.messages.failedToMoveItem": "Failed to move item",
629
+ "Company.CompanyStructure.messages.createUserError": "Failed to create user. You may not have permission to perform this action.",
630
+ "Company.CompanyStructure.messages.createTeamError": "Failed to create team. You may not have permission to perform this action.",
631
+ "Company.CompanyStructure.messages.saveUserError": "An error occurred while saving the user.",
632
+ "Company.CompanyStructure.messages.saveTeamError": "An error occurred while saving the team.",
633
+ "Company.CompanyStructure.messages.createUserSuccess": "The customer was successfully created.",
634
+ "Company.CompanyStructure.messages.updateUserSuccess": "The customer was successfully updated.",
635
+ "Company.CompanyStructure.messages.createTeamSuccess": "The team was successfully created.",
636
+ "Company.CompanyStructure.messages.updateTeamSuccess": "The team was successfully updated.",
637
+ "Company.CompanyStructure.messages.removeUserSuccess": "User was successfully removed from company structure.",
638
+ "Company.CompanyStructure.messages.deleteTeamSuccess": "Team was successfully deleted.",
639
+ "Company.CompanyStructure.messages.removeMultipleSuccess": "{count} item(s) were successfully removed.",
640
+ "Company.CompanyStructure.messages.moveUserSuccess": "User was successfully moved.",
641
+ "Company.CompanyStructure.messages.moveTeamSuccess": "Team was successfully moved.",
642
+ "Company.CompanyStructure.messages.loadRolesError": "Failed to load roles",
643
+ "Company.CompanyStructure.messages.fetchPermissionsError": "Failed to fetch permissions",
644
+ "Company.CompanyUsers.filters.showAll": "Show All Users",
645
+ "Company.CompanyUsers.filters.showActive": "Show Active Users",
646
+ "Company.CompanyUsers.filters.showInactive": "Show Inactive Users",
647
+ "Company.CompanyUsers.columns.id": "ID",
648
+ "Company.CompanyUsers.columns.name": "Name",
649
+ "Company.CompanyUsers.columns.email": "Email",
650
+ "Company.CompanyUsers.columns.role": "Role",
651
+ "Company.CompanyUsers.columns.team": "Team",
652
+ "Company.CompanyUsers.columns.status": "Status",
653
+ "Company.CompanyUsers.columns.actions": "Actions",
654
+ "Company.CompanyUsers.status.active": "Active",
655
+ "Company.CompanyUsers.status.inactive": "Inactive",
656
+ "Company.CompanyUsers.emptyTeam": "-",
657
+ "Company.CompanyUsers.pagination.itemsRange": "Items {start}-{end} of {total}",
658
+ "Company.CompanyUsers.pagination.itemsPerPage": "Items per page:",
659
+ "Company.CompanyUsers.pagination.show": "Show",
660
+ "Company.CompanyUsers.pagination.perPage": "per page",
661
+ "Company.CompanyUsers.pagination.previous": "Previous",
662
+ "Company.CompanyUsers.pagination.next": "Next",
663
+ "Company.CompanyUsers.pagination.pageInfo": "Page {current} of {total}",
664
+ "Company.CompanyUsers.emptyActions": "",
665
+ "Company.CompanyUsers.noUsersFound": "No users found.",
666
+ "Company.CompanyUsers.actions.manage": "Manage",
667
+ "Company.CompanyUsers.actions.edit": "Edit",
668
+ "Company.CompanyUsers.actions.addNewUser": "Add New User",
669
+ "Company.CompanyUsers.ariaLabels.loadingUsers": "Loading company users",
670
+ "Company.CompanyUsers.ariaLabels.usersTable": "Company users table",
671
+ "Company.CompanyUsers.ariaLabels.filterOptions": "User filter options",
672
+ "Company.CompanyUsers.ariaLabels.paginationNav": "Pagination navigation",
673
+ "Company.CompanyUsers.ariaLabels.pageNavigation": "Page navigation",
674
+ "Company.CompanyUsers.ariaLabels.pageSizeSelector": "Items per page selector",
675
+ "Company.CompanyUsers.ariaLabels.previousPageFull": "Go to previous page, current page {current}",
676
+ "Company.CompanyUsers.ariaLabels.nextPageFull": "Go to next page, current page {current}",
677
+ "Company.CompanyUsers.ariaLabels.currentPage": "Current page {current} of {total}",
678
+ "Company.CompanyUsers.ariaLabels.showingUsers": "Showing {count} users",
679
+ "Company.CompanyUsers.ariaLabels.dataLoaded": "Loaded {count} users",
680
+ "Company.CompanyUsers.ariaLabels.dataError": "Failed to load users.",
681
+ "Company.CompanyUsers.ariaLabels.manageUser": "Manage user {name}",
682
+ "Company.CompanyUsers.ariaLabels.editUser": "Edit user {name}",
683
+ "Company.CompanyUsers.managementModal.title": "Manage user",
684
+ "Company.CompanyUsers.managementModal.setActiveText": "Reactivate the user's account by selecting \"Set as Active\".",
685
+ "Company.CompanyUsers.managementModal.setInactiveText": "Temporarily lock the user's account by selecting \"Set as Inactive\".",
686
+ "Company.CompanyUsers.managementModal.deleteText": "Permanently delete the user's account and all associated content by selecting \"Delete\". This action cannot be reverted.",
687
+ "Company.CompanyUsers.managementModal.setActiveButton": "Set as Active",
688
+ "Company.CompanyUsers.managementModal.setInactiveButton": "Set as Inactive",
689
+ "Company.CompanyUsers.managementModal.settingActiveButton": "Setting Active...",
690
+ "Company.CompanyUsers.managementModal.settingInactiveButton": "Setting Inactive...",
691
+ "Company.CompanyUsers.managementModal.deleteButton": "Delete",
692
+ "Company.CompanyUsers.managementModal.deletingButton": "Deleting...",
693
+ "Company.CompanyUsers.managementModal.cancelButton": "Cancel",
694
+ "Company.CompanyUsers.managementModal.setActiveErrorGeneric": "An unexpected error occurred while setting user as active.",
695
+ "Company.CompanyUsers.managementModal.setActiveErrorSpecific": "Failed to set user as active.",
696
+ "Company.CompanyUsers.managementModal.setInactiveErrorGeneric": "An unexpected error occurred while setting user as inactive.",
697
+ "Company.CompanyUsers.managementModal.setInactiveErrorSpecific": "Failed to set user as inactive.",
698
+ "Company.CompanyUsers.managementModal.deleteErrorGeneric": "An unexpected error occurred.",
699
+ "Company.CompanyUsers.managementModal.deleteErrorSpecific": "Failed to delete user.",
700
+ "Company.CompanyUsers.managementModal.setActiveSuccess": "User was successfully activated.",
701
+ "Company.CompanyUsers.managementModal.setInactiveSuccess": "User was successfully deactivated.",
702
+ "Company.CompanyUsers.managementModal.deleteSuccess": "User was successfully deleted.",
703
+ "Company.CompanyUsers.managementModal.ariaLabels.closeModal": "Close modal",
704
+ "Company.CompanyUsers.managementModal.ariaLabels.modalDescription": "User management options including setting as inactive or deleting the user account",
705
+ "Company.CompanyRegistration.success.pendingApproval": "Thank you! We're reviewing your request and will contact you soon.",
706
+ "Company.CompanyRegistration.success.companyDetails": "Company Information",
707
+ "Company.CustomerCompanyInfo.individualUserMessage": "You don't have a company account yet.",
708
+ "Company.CustomerCompanyInfo.createAccountCta": "Create a Company Account",
709
+ "Company.CompanyCredit.title": "Company Credit",
710
+ "Company.CompanyCredit.creditAvailable": "Available Credit",
711
+ "Company.CompanyCredit.creditLimit": "Credit Limit",
712
+ "Company.CompanyCredit.outstandingBalance": "Outstanding Balance",
713
+ "Company.CompanyCredit.messages.loadError": "Failed to load company credit",
714
+ "Company.CompanyCredit.emptyState.title": "No Credit Information",
715
+ "Company.CompanyCredit.emptyState.message": "There is no credit information to display.",
716
+ "Company.CompanyCreditHistory.title": "Credit History",
717
+ "Company.CompanyCreditHistory.columns.date": "Date",
718
+ "Company.CompanyCreditHistory.columns.operation": "Operation",
719
+ "Company.CompanyCreditHistory.columns.amount": "Amount",
720
+ "Company.CompanyCreditHistory.columns.outstandingBalance": "Outstanding Balance",
721
+ "Company.CompanyCreditHistory.columns.availableCredit": "Available Credit",
722
+ "Company.CompanyCreditHistory.columns.creditLimit": "Credit Limit",
723
+ "Company.CompanyCreditHistory.columns.customReference": "Custom Reference #",
724
+ "Company.CompanyCreditHistory.columns.updatedBy": "Updated By",
725
+ "Company.CompanyCreditHistory.pagination.itemsRange": "Items {start}-{end} of {total}",
726
+ "Company.CompanyCreditHistory.pagination.show": "Show",
727
+ "Company.CompanyCreditHistory.emptyState.title": "No Credit History",
728
+ "Company.CompanyCreditHistory.emptyState.message": "There is no credit history to display.",
729
+ "Company.CompanyCreditHistory.ariaLabels.dataLoaded": "Loaded {count} credit history entries",
730
+ "Company.CompanyCreditHistory.ariaLabels.dataError": "Failed to load credit history entries. Please try again.",
731
+ "Company.CompanyCreditHistory.ariaLabels.historyTable": "Credit history table",
732
+ "Company.CompanyCreditHistory.ariaLabels.paginationNav": "Pagination navigation",
733
+ "Company.CompanyCreditHistory.ariaLabels.pageSizeSelector": "Items per page selector",
734
+ "Company.CompanyCreditHistory.ariaLabels.showingHistory": "Showing {count} credit history entries",
735
+ "Company.EditRoleAndPermission.createTitle": "Add New Role",
736
+ "Company.EditRoleAndPermission.editTitle": "Edit Role",
737
+ "Company.EditRoleAndPermission.roleInformation": "Role Information",
738
+ "Company.EditRoleAndPermission.roleName": "Role Name",
739
+ "Company.EditRoleAndPermission.rolePermissions": "Role Permissions",
740
+ "Company.EditRoleAndPermission.permissionsDescription": "Granting permissions does not affect which features are available for your company account. The merchant must enable features to make them available for your account.",
741
+ "Company.EditRoleAndPermission.expandAll": "Expand All",
742
+ "Company.EditRoleAndPermission.collapseAll": "Collapse All",
743
+ "Company.EditRoleAndPermission.saveRole": "Save Role",
744
+ "Company.FormText.requiredFieldError": "This is a required field.",
745
+ "Company.FormText.numericError": "Only numeric values are allowed.",
746
+ "Company.FormText.alphaNumWithSpacesError": "Only alphanumeric characters and spaces are allowed.",
747
+ "Company.FormText.alphaNumericError": "Only alphanumeric characters are allowed.",
748
+ "Company.FormText.alphaError": "Only alphabetic characters are allowed.",
749
+ "Company.FormText.emailError": "Please enter a valid email address.",
750
+ "Company.FormText.phoneError": "Please enter a valid phone number.",
751
+ "Company.FormText.postalCodeError": "Please enter a valid postal code.",
752
+ "Company.FormText.lengthTextError": "Text length must be between {min} and {max} characters.",
753
+ "Company.FormText.urlError": "Please enter a valid URL",
754
+ "Company.FormText.nameError": "Please enter a valid name",
755
+ "Company.FormText.selectCountry": "Please select a country",
756
+ "Company.FormText.selectRegion": "Please select a region, state or province",
757
+ "Company.FormText.selectCountryFirst": "Please select a country first",
758
+ "Company.FormText.companyNameLengthError": "Company name must be between {min} and {max} characters.",
759
+ "Company.FormText.loading": "Loading...",
760
+ "Company.FormText.submitting": "Registering your company...",
761
+ "Company.AcceptInvitation.title": "Accept Company Invitation",
762
+ "Company.AcceptInvitation.loadingText": "Processing your invitation...",
763
+ "Company.AcceptInvitation.successMessage": "You have successfully accepted the invitation to the company.",
764
+ "Company.AcceptInvitation.myAccountButton": "My Account",
765
+ "Company.AcceptInvitation.loginButton": "Go to Login",
766
+ "Company.AcceptInvitation.invalidLinkError": "Invalid invitation link. Please check the URL and try again.",
767
+ "Company.AcceptInvitation.companyDisabledError": "Company functionality is not enabled. Please contact the store administrator.",
768
+ "Company.AcceptInvitation.expiredLinkError": "This invitation link has expired or is no longer valid.",
769
+ "Company.AcceptInvitation.genericError": "An error occurred while processing your invitation. Please try again.",
770
+ "Company.RolesAndPermissions.containerTitle": "Company Roles & Permissions",
771
+ "Company.RolesAndPermissions.noAccess.title": "Access Restricted",
772
+ "Company.RolesAndPermissions.noAccess.message": "You do not have permission to view roles and permissions. Please contact your company administrator.",
773
+ "Company.RolesAndPermissions.error.title": "Error Loading Roles",
774
+ "Company.RolesAndPermissions.error.message": "An error occurred while loading roles and permissions. Please try again.",
775
+ "Company.RolesAndPermissions.deleteModal.title": "Delete This Role?",
776
+ "Company.RolesAndPermissions.deleteModal.message": "This action cannot be undone. Are you sure you want to delete this role?",
777
+ "Company.RolesAndPermissions.deleteModal.confirm": "Delete",
778
+ "Company.RolesAndPermissions.deleteModal.cancel": "Cancel",
779
+ "Company.RolesAndPermissions.cannotDeleteModal.title": "Cannot Delete Role",
780
+ "Company.RolesAndPermissions.cannotDeleteModal.message": "This role cannot be deleted because users are assigned to it. Reassign the users to another role to continue.",
781
+ "Company.RolesAndPermissions.cannotDeleteModal.ok": "OK",
782
+ "Company.RolesAndPermissions.alerts.createSuccess": "Role \"{roleName}\" created successfully!",
783
+ "Company.RolesAndPermissions.alerts.createError": "Failed to create role. Please try again.",
784
+ "Company.RolesAndPermissions.alerts.createErrorPermissions": "Failed to create role. Please check your permissions and try again.",
785
+ "Company.RolesAndPermissions.alerts.updateSuccess": "Role \"{roleName}\" updated successfully!",
786
+ "Company.RolesAndPermissions.alerts.updateError": "Failed to update role. Please try again.",
787
+ "Company.RolesAndPermissions.alerts.updateErrorPermissions": "Failed to update role. Please check your permissions and try again.",
788
+ "Company.RolesAndPermissions.alerts.deleteError": "Failed to delete role. Please try again.",
789
+ "Company.RoleAndPermissionTable.addNewRole": "Add New Role",
790
+ "Company.RoleAndPermissionTable.columnId": "ID",
791
+ "Company.RoleAndPermissionTable.columnRole": "Role",
792
+ "Company.RoleAndPermissionTable.columnUsers": "Users",
793
+ "Company.RoleAndPermissionTable.columnActions": "Actions",
794
+ "Company.RoleAndPermissionTable.editButton": "Edit",
795
+ "Company.RoleAndPermissionTable.duplicateButton": "Duplicate",
796
+ "Company.RoleAndPermissionTable.deleteButton": "Delete",
797
+ "Company.RoleAndPermissionTable.viewOnlyLabel": "View Only",
798
+ "Company.RoleAndPermissionTable.systemRoleLabel": "System Role",
799
+ "Company.RoleAndPermissionTable.itemCount": "Item(s)",
800
+ "Company.RoleAndPermissionTable.itemsRange": "Items {start}-{end} of {total}",
801
+ "Company.RoleAndPermissionTable.show": "Show",
802
+ "Company.RoleAndPermissionTable.perPage": "per page",
803
+ "Company.RoleAndPermissionTable.deleteRole.success": "You have deleted role \"{roleName}\".",
804
+ "Company.Table.sortedAscending": "Sorted ascending by {label}",
805
+ "Company.Table.sortedDescending": "Sorted descending by {label}",
806
+ "Company.Table.sortBy": "Sort by {label}"
807
+ }
808
+ },
809
+ "storefront-company-switcher": {
810
+ "version": "1.1.1",
811
+ "keyCount": 0,
812
+ "keys": {}
813
+ },
814
+ "storefront-order": {
815
+ "version": "3.3.0",
816
+ "keyCount": 225,
817
+ "keys": {
818
+ "Order.CreateReturn.headerText": "Return items",
819
+ "Order.CreateReturn.downloadableCount": "Files",
820
+ "Order.CreateReturn.returnedItems": "Returned items:",
821
+ "Order.CreateReturn.configurationsList.quantity": "Quantity",
822
+ "Order.CreateReturn.stockStatus.inStock": "In stock",
823
+ "Order.CreateReturn.stockStatus.outOfStock": "Out of stock",
824
+ "Order.CreateReturn.giftCard.sender": "Sender",
825
+ "Order.CreateReturn.giftCard.recipient": "Recipient",
826
+ "Order.CreateReturn.giftCard.message": "Note",
827
+ "Order.CreateReturn.success.title": "Return submitted",
828
+ "Order.CreateReturn.success.message": "Your return request has been successfully submitted.",
829
+ "Order.CreateReturn.buttons.nextStep": "Continue",
830
+ "Order.CreateReturn.buttons.backStep": "Back",
831
+ "Order.CreateReturn.buttons.submit": "Submit return",
832
+ "Order.CreateReturn.buttons.backStore": "Back to order",
833
+ "Order.OrderComments.emptyState": "No order comments.",
834
+ "Order.OrderComments.title": "Order comments",
835
+ "Order.OrderCostSummary.headerText": "Order summary",
836
+ "Order.OrderCostSummary.headerReturnText": "Return summary",
837
+ "Order.OrderCostSummary.totalFree": "Free",
838
+ "Order.OrderCostSummary.subtotal.title": "Subtotal",
839
+ "Order.OrderCostSummary.shipping.title": "Shipping",
840
+ "Order.OrderCostSummary.shipping.freeShipping": "Free shipping",
841
+ "Order.OrderCostSummary.appliedGiftCards.label.singular": "Gift card",
842
+ "Order.OrderCostSummary.appliedGiftCards.label.plural": "Gift cards",
843
+ "Order.OrderCostSummary.giftOptionsTax.printedCard.title": "Printer card",
844
+ "Order.OrderCostSummary.giftOptionsTax.printedCard.inclTax": "Including taxes",
845
+ "Order.OrderCostSummary.giftOptionsTax.printedCard.exclTax": "Excluding taxes",
846
+ "Order.OrderCostSummary.giftOptionsTax.itemGiftWrapping.title": "Item gift wrapping",
847
+ "Order.OrderCostSummary.giftOptionsTax.itemGiftWrapping.inclTax": "Including taxes",
848
+ "Order.OrderCostSummary.giftOptionsTax.itemGiftWrapping.exclTax": "Excluding taxes",
849
+ "Order.OrderCostSummary.giftOptionsTax.orderGiftWrapping.title": "Order gift wrapping",
850
+ "Order.OrderCostSummary.giftOptionsTax.orderGiftWrapping.inclTax": "Including taxes",
851
+ "Order.OrderCostSummary.giftOptionsTax.orderGiftWrapping.exclTax": "Excluding taxes",
852
+ "Order.OrderCostSummary.tax.accordionTitle": "Taxes",
853
+ "Order.OrderCostSummary.tax.accordionTotalTax": "Tax Total",
854
+ "Order.OrderCostSummary.tax.totalExcludingTaxes": "Total excluding taxes",
855
+ "Order.OrderCostSummary.tax.title": "Tax",
856
+ "Order.OrderCostSummary.tax.incl": "Including taxes",
857
+ "Order.OrderCostSummary.tax.excl": "Excluding taxes",
858
+ "Order.OrderCostSummary.discount.title": "Discount",
859
+ "Order.OrderCostSummary.discount.subtitle": "discounted",
860
+ "Order.OrderCostSummary.total.title": "Total",
861
+ "Order.Returns.minifiedView.returnsList.viewAllOrdersButton": "View all returns",
862
+ "Order.Returns.minifiedView.returnsList.ariaLabelLink": "Redirect to full order information",
863
+ "Order.Returns.minifiedView.returnsList.emptyOrdersListMessage": "No returns",
864
+ "Order.Returns.minifiedView.returnsList.minifiedViewTitle": "Recent returns",
865
+ "Order.Returns.minifiedView.returnsList.orderNumber": "Order number:",
866
+ "Order.Returns.minifiedView.returnsList.returnNumber": "Return number:",
867
+ "Order.Returns.minifiedView.returnsList.carrier": "Carrier:",
868
+ "Order.Returns.minifiedView.returnsList.itemText.none": "",
869
+ "Order.Returns.minifiedView.returnsList.itemText.one": "item",
870
+ "Order.Returns.minifiedView.returnsList.itemText.many": "items",
871
+ "Order.Returns.minifiedView.returnsList.returnStatus.pending": "Pending",
872
+ "Order.Returns.minifiedView.returnsList.returnStatus.authorized": "Authorized",
873
+ "Order.Returns.minifiedView.returnsList.returnStatus.partiallyAuthorized": "Partially authorized",
874
+ "Order.Returns.minifiedView.returnsList.returnStatus.received": "Received",
875
+ "Order.Returns.minifiedView.returnsList.returnStatus.partiallyReceived": "Partially received",
876
+ "Order.Returns.minifiedView.returnsList.returnStatus.approved": "Approved",
877
+ "Order.Returns.minifiedView.returnsList.returnStatus.partiallyApproved": "Partially approved",
878
+ "Order.Returns.minifiedView.returnsList.returnStatus.rejected": "Rejected",
879
+ "Order.Returns.minifiedView.returnsList.returnStatus.partiallyRejected": "Partially rejected",
880
+ "Order.Returns.minifiedView.returnsList.returnStatus.denied": "Denied",
881
+ "Order.Returns.minifiedView.returnsList.returnStatus.processedAndClosed": "Processed and closed",
882
+ "Order.Returns.minifiedView.returnsList.returnStatus.closed": "Closed",
883
+ "Order.Returns.fullSizeView.returnsList.viewAllOrdersButton": "View all orders",
884
+ "Order.Returns.fullSizeView.returnsList.ariaLabelLink": "Redirect to full order information",
885
+ "Order.Returns.fullSizeView.returnsList.emptyOrdersListMessage": "No returns",
886
+ "Order.Returns.fullSizeView.returnsList.minifiedViewTitle": "Returns",
887
+ "Order.Returns.fullSizeView.returnsList.orderNumber": "Order number:",
888
+ "Order.Returns.fullSizeView.returnsList.returnNumber": "Return number:",
889
+ "Order.Returns.fullSizeView.returnsList.carrier": "Carrier:",
890
+ "Order.Returns.fullSizeView.returnsList.itemText.none": "",
891
+ "Order.Returns.fullSizeView.returnsList.itemText.one": "item",
892
+ "Order.Returns.fullSizeView.returnsList.itemText.many": "items",
893
+ "Order.Returns.fullSizeView.returnsList.returnStatus.pending": "Pending",
894
+ "Order.Returns.fullSizeView.returnsList.returnStatus.authorized": "Authorized",
895
+ "Order.Returns.fullSizeView.returnsList.returnStatus.partiallyAuthorized": "Partially authorized",
896
+ "Order.Returns.fullSizeView.returnsList.returnStatus.received": "Received",
897
+ "Order.Returns.fullSizeView.returnsList.returnStatus.partiallyReceived": "Partially received",
898
+ "Order.Returns.fullSizeView.returnsList.returnStatus.approved": "Approved",
899
+ "Order.Returns.fullSizeView.returnsList.returnStatus.partiallyApproved": "Partially approved",
900
+ "Order.Returns.fullSizeView.returnsList.returnStatus.rejected": "Rejected",
901
+ "Order.Returns.fullSizeView.returnsList.returnStatus.partiallyRejected": "Partially rejected",
902
+ "Order.Returns.fullSizeView.returnsList.returnStatus.denied": "Denied",
903
+ "Order.Returns.fullSizeView.returnsList.returnStatus.processedAndClosed": "Processed and closed",
904
+ "Order.Returns.fullSizeView.returnsList.returnStatus.closed": "Closed",
905
+ "Order.OrderProductListContent.cancelledTitle": "Cancelled",
906
+ "Order.OrderProductListContent.allOrdersTitle": "Your order",
907
+ "Order.OrderProductListContent.returnedTitle": "Returned",
908
+ "Order.OrderProductListContent.refundedTitle": "Your refunded",
909
+ "Order.OrderProductListContent.downloadableCount": "Files",
910
+ "Order.OrderProductListContent.stockStatus.inStock": "In stock",
911
+ "Order.OrderProductListContent.stockStatus.outOfStock": "Out of stock",
912
+ "Order.OrderProductListContent.GiftCard.sender": "Sender",
913
+ "Order.OrderProductListContent.GiftCard.recipient": "Recipient",
914
+ "Order.OrderProductListContent.GiftCard.message": "Note",
915
+ "Order.OrderSearchForm.title": "Enter your information to view order details",
916
+ "Order.OrderSearchForm.description": "You can find your order number in the receipt you received via email.",
917
+ "Order.OrderSearchForm.button": "View Order",
918
+ "Order.OrderSearchForm.email": "Email",
919
+ "Order.OrderSearchForm.lastname": "Last Name",
920
+ "Order.OrderSearchForm.orderNumber": "Order Number",
921
+ "Order.Form.notifications.requiredFieldError": "This is a required field.",
922
+ "Order.ShippingStatusCard.orderNumber": "Order number:",
923
+ "Order.ShippingStatusCard.returnNumber": "Return number:",
924
+ "Order.ShippingStatusCard.itemText.none": "",
925
+ "Order.ShippingStatusCard.itemText.one": "Package contents ({{count}} item)",
926
+ "Order.ShippingStatusCard.itemText.many": "Package contents ({{count}} items)",
927
+ "Order.ShippingStatusCard.trackButton": "Track package",
928
+ "Order.ShippingStatusCard.carrier": "Carrier:",
929
+ "Order.ShippingStatusCard.prepositionOf": "of",
930
+ "Order.ShippingStatusCard.returnOrderCardTitle": "Package details",
931
+ "Order.ShippingStatusCard.shippingCardTitle": "Package details",
932
+ "Order.ShippingStatusCard.shippingInfoTitle": "Shipping information",
933
+ "Order.ShippingStatusCard.notYetShippedTitle": "Not yet shipped",
934
+ "Order.ShippingStatusCard.notYetShippedImagesTitle.singular": "Package contents ({{count}} item)",
935
+ "Order.ShippingStatusCard.notYetShippedImagesTitle.plural": "Package contents ({{count}} items)",
936
+ "Order.OrderStatusContent.noInfoTitle": "Check back later for more details.",
937
+ "Order.OrderStatusContent.returnMessage": "The order was placed on {ORDER_CREATE_DATE} and your return process started on {RETURN_CREATE_DATE}",
938
+ "Order.OrderStatusContent.returnStatus.pending": "Pending",
939
+ "Order.OrderStatusContent.returnStatus.authorized": "Authorized",
940
+ "Order.OrderStatusContent.returnStatus.partiallyAuthorized": "Partially authorized",
941
+ "Order.OrderStatusContent.returnStatus.received": "Received",
942
+ "Order.OrderStatusContent.returnStatus.partiallyReceived": "Partially received",
943
+ "Order.OrderStatusContent.returnStatus.approved": "Approved",
944
+ "Order.OrderStatusContent.returnStatus.partiallyApproved": "Partially approved",
945
+ "Order.OrderStatusContent.returnStatus.rejected": "Rejected",
946
+ "Order.OrderStatusContent.returnStatus.partiallyRejected": "Partially rejected",
947
+ "Order.OrderStatusContent.returnStatus.denied": "Denied",
948
+ "Order.OrderStatusContent.returnStatus.processedAndClosed": "Processed and closed",
949
+ "Order.OrderStatusContent.returnStatus.closed": "Closed",
950
+ "Order.OrderStatusContent.actions.cancel": "Cancel order",
951
+ "Order.OrderStatusContent.actions.confirmGuestReturn": "Return request confirmed",
952
+ "Order.OrderStatusContent.actions.confirmGuestReturnMessage": "Your return request has been successfully confirmed.",
953
+ "Order.OrderStatusContent.actions.createReturn": "Return or replace",
954
+ "Order.OrderStatusContent.actions.createAnotherReturn": "Start another return",
955
+ "Order.OrderStatusContent.actions.reorder": "Reorder",
956
+ "Order.OrderStatusContent.orderPlaceholder.title": "",
957
+ "Order.OrderStatusContent.orderPlaceholder.message": "Your order has been in its current status since {DATE}.",
958
+ "Order.OrderStatusContent.orderPlaceholder.messageWithoutDate": "Your order has been in its current status for some time.",
959
+ "Order.OrderStatusContent.orderPending.title": "Pending",
960
+ "Order.OrderStatusContent.orderPending.message": "The order was successfully placed on {DATE} and your order is processing. Check back for more details when your order ships.",
961
+ "Order.OrderStatusContent.orderPending.messageWithoutDate": "Your order is processing. Check back for more details when your order ships.",
962
+ "Order.OrderStatusContent.orderProcessing.title": "Processing",
963
+ "Order.OrderStatusContent.orderProcessing.message": "The order was successfully placed on {DATE} and your order is processing. Check back for more details when your order ships.",
964
+ "Order.OrderStatusContent.orderProcessing.messageWithoutDate": "Your order is processing. Check back for more details when your order ships.",
965
+ "Order.OrderStatusContent.orderOnHold.title": "On hold",
966
+ "Order.OrderStatusContent.orderOnHold.message": "We’ve run into an issue while processing your order on {DATE}. Please check back later or contact us at support@adobe.com for more information.",
967
+ "Order.OrderStatusContent.orderOnHold.messageWithoutDate": "We’ve run into an issue while processing your order. Please check back later or contact us at support@adobe.com for more information.",
968
+ "Order.OrderStatusContent.orderReceived.title": "Order received",
969
+ "Order.OrderStatusContent.orderReceived.message": "The order was successfully placed on {DATE} and your order is processing. Check back for more details when your order ships.",
970
+ "Order.OrderStatusContent.orderReceived.messageWithoutDate": "Your order is processing. Check back for more details when your order ships.",
971
+ "Order.OrderStatusContent.orderComplete.title": "Complete",
972
+ "Order.OrderStatusContent.orderComplete.message": "Your order is complete. Need help with your order? Contact us at support@adobe.com",
973
+ "Order.OrderStatusContent.orderCanceled.title": "Canceled",
974
+ "Order.OrderStatusContent.orderCanceled.message": "This order was cancelled by you. You should see a refund to your original payment method with 5-7 business days.",
975
+ "Order.OrderStatusContent.orderCanceled.messageWithoutDate": "This order was cancelled by you. You should see a refund to your original payment method with 5-7 business days.",
976
+ "Order.OrderStatusContent.orderSuspectedFraud.title": "Suspected fraud",
977
+ "Order.OrderStatusContent.orderSuspectedFraud.message": "We’ve run into an issue while processing your order on {DATE}. Please check back later or contact us at support@adobe.com for more information.",
978
+ "Order.OrderStatusContent.orderSuspectedFraud.messageWithoutDate": "We’ve run into an issue while processing your order. Please check back later or contact us at support@adobe.com for more information.",
979
+ "Order.OrderStatusContent.orderPaymentReview.title": "Payment Review",
980
+ "Order.OrderStatusContent.orderPaymentReview.message": "The order was successfully placed on {DATE} and your order is processing. Check back for more details when your order ships.",
981
+ "Order.OrderStatusContent.orderPaymentReview.messageWithoutDate": "Your order is processing. Check back for more details when your order ships.",
982
+ "Order.OrderStatusContent.guestOrderCancellationRequested.title": "Cancellation requested",
983
+ "Order.OrderStatusContent.guestOrderCancellationRequested.message": "The cancellation has been requested on {DATE}. Check your email for further instructions.",
984
+ "Order.OrderStatusContent.guestOrderCancellationRequested.messageWithoutDate": "The cancellation has been requested. Check your email for further instructions.",
985
+ "Order.OrderStatusContent.orderPendingPayment.title": "Pending Payment",
986
+ "Order.OrderStatusContent.orderPendingPayment.message": "The order was successfully placed on {DATE}, but it is awaiting payment. Please complete the payment so we can start processing your order.",
987
+ "Order.OrderStatusContent.orderPendingPayment.messageWithoutDate": "Your order is awaiting payment. Please complete the payment so we can start processing your order.",
988
+ "Order.OrderStatusContent.orderRejected.title": "Rejected",
989
+ "Order.OrderStatusContent.orderRejected.message": "Your order was rejected on {DATE}. Please contact us for more information.",
990
+ "Order.OrderStatusContent.orderRejected.messageWithoutDate": "Your order was rejected. Please contact us for more information.",
991
+ "Order.OrderStatusContent.orderAuthorized.title": "Authorized",
992
+ "Order.OrderStatusContent.orderAuthorized.message": "Your order was successfully authorized on {DATE}. We will begin processing your order shortly.",
993
+ "Order.OrderStatusContent.orderAuthorized.messageWithoutDate": "Your order was successfully authorized. We will begin processing your order shortly.",
994
+ "Order.OrderStatusContent.orderPaypalCanceledReversal.title": "PayPal Canceled Reversal",
995
+ "Order.OrderStatusContent.orderPaypalCanceledReversal.message": "The PayPal transaction reversal was canceled on {DATE}. Please check your order details for more information.",
996
+ "Order.OrderStatusContent.orderPaypalCanceledReversal.messageWithoutDate": "The PayPal transaction reversal was canceled. Please check your order details for more information.",
997
+ "Order.OrderStatusContent.orderPendingPaypal.title": "Pending PayPal",
998
+ "Order.OrderStatusContent.orderPendingPaypal.message": "Your order is awaiting PayPal payment confirmation since {DATE}. Please check your PayPal account for the payment status.",
999
+ "Order.OrderStatusContent.orderPendingPaypal.messageWithoutDate": "Your order is awaiting PayPal payment confirmation. Please check your PayPal account for the payment status.",
1000
+ "Order.OrderStatusContent.orderPaypalReversed.title": "PayPal Reversed",
1001
+ "Order.OrderStatusContent.orderPaypalReversed.message": "The PayPal payment was reversed on {DATE}. Please contact us for further details.",
1002
+ "Order.OrderStatusContent.orderPaypalReversed.messageWithoutDate": "The PayPal payment was reversed. Please contact us for further details.",
1003
+ "Order.OrderStatusContent.orderClosed.title": "Closed",
1004
+ "Order.OrderStatusContent.orderClosed.message": "The order placed on {DATE} has been closed. For any further assistance, please contact support.",
1005
+ "Order.OrderStatusContent.orderClosed.messageWithoutDate": "Your order has been closed. For any further assistance, please contact support.",
1006
+ "Order.CustomerDetails.headerText": "Customer information",
1007
+ "Order.CustomerDetails.freeShipping": "Free shipping",
1008
+ "Order.CustomerDetails.orderReturnLabels.createdReturnAt": "Return requested on: ",
1009
+ "Order.CustomerDetails.orderReturnLabels.returnStatusLabel": "Return status: ",
1010
+ "Order.CustomerDetails.orderReturnLabels.orderNumberLabel": "Order number: ",
1011
+ "Order.CustomerDetails.returnStatus.pending": "Pending",
1012
+ "Order.CustomerDetails.returnStatus.authorized": "Authorized",
1013
+ "Order.CustomerDetails.returnStatus.partiallyAuthorized": "Partially authorized",
1014
+ "Order.CustomerDetails.returnStatus.received": "Received",
1015
+ "Order.CustomerDetails.returnStatus.partiallyReceived": "Partially received",
1016
+ "Order.CustomerDetails.returnStatus.approved": "Approved",
1017
+ "Order.CustomerDetails.returnStatus.partiallyApproved": "Partially approved",
1018
+ "Order.CustomerDetails.returnStatus.rejected": "Rejected",
1019
+ "Order.CustomerDetails.returnStatus.partiallyRejected": "Partially rejected",
1020
+ "Order.CustomerDetails.returnStatus.denied": "Denied",
1021
+ "Order.CustomerDetails.returnStatus.processedAndClosed": "Processed and closed",
1022
+ "Order.CustomerDetails.returnStatus.closed": "Closed",
1023
+ "Order.CustomerDetails.email.title": "Contact details",
1024
+ "Order.CustomerDetails.shippingAddress.title": "Shipping address",
1025
+ "Order.CustomerDetails.shippingMethods.title": "Shipping method",
1026
+ "Order.CustomerDetails.billingAddress.title": "Billing address",
1027
+ "Order.CustomerDetails.paymentMethods.title": "Payment method",
1028
+ "Order.CustomerDetails.returnInformation.title": "Return details",
1029
+ "Order.Errors.invalidOrder": "Invalid order. Please try again.",
1030
+ "Order.Errors.invalidSearch": "No order found with these order details.",
1031
+ "Order.OrderCancel.buttonText": "Cancel Order",
1032
+ "Order.OrderCancelForm.title": "Cancel order",
1033
+ "Order.OrderCancelForm.description": "Select a reason for canceling the order",
1034
+ "Order.OrderCancelForm.label": "Reason for cancel",
1035
+ "Order.OrderCancelForm.button": "Submit Cancellation",
1036
+ "Order.OrderCancelForm.errorHeading": "Error",
1037
+ "Order.OrderCancelForm.errorDescription": "There was an error processing your order cancellation.",
1038
+ "Order.OrderHeader.title": "{{name}}, thank you for your order!",
1039
+ "Order.OrderHeader.defaultTitle": "Thank you for your order!",
1040
+ "Order.OrderHeader.order": "ORDER #{{order}}",
1041
+ "Order.OrderHeader.CreateAccount.message": "Save your information for faster checkout next time.",
1042
+ "Order.OrderHeader.CreateAccount.button": "Create an account"
1043
+ }
1044
+ },
1045
+ "storefront-payment-services": {
1046
+ "version": "3.0.1",
1047
+ "keyCount": 19,
1048
+ "keys": {
1049
+ "PaymentServices.ApplePay.errors.default.name": "Apple Pay error",
1050
+ "PaymentServices.ApplePay.errors.default.message": "An unexpected error occurred. Please try again or contact support.",
1051
+ "PaymentServices.CreditCard.errors.default.name": "Credit Card error",
1052
+ "PaymentServices.CreditCard.errors.default.message": "An unexpected error occurred. Please try again or contact support.",
1053
+ "PaymentServices.CreditCard.formFields.cvv.invalidError": "Enter valid cvv.",
1054
+ "PaymentServices.CreditCard.formFields.cvv.label": "",
1055
+ "PaymentServices.CreditCard.formFields.cvv.missingError": "This field is required.",
1056
+ "PaymentServices.CreditCard.formFields.cvv.placeholder": "CVV*",
1057
+ "PaymentServices.CreditCard.formFields.expirationDate.invalidError": "Enter valid expiration date.",
1058
+ "PaymentServices.CreditCard.formFields.expirationDate.label": "",
1059
+ "PaymentServices.CreditCard.formFields.expirationDate.missingError": "This field is required.",
1060
+ "PaymentServices.CreditCard.formFields.expirationDate.placeholder": "MM/YY*",
1061
+ "PaymentServices.CreditCard.formFields.number.invalidError": "Enter valid card number.",
1062
+ "PaymentServices.CreditCard.formFields.number.label": "",
1063
+ "PaymentServices.CreditCard.formFields.number.missingError": "This field is required.",
1064
+ "PaymentServices.CreditCard.formFields.number.placeholder": "Card Number*",
1065
+ "PaymentServices.messages.methodNotAvailable": "Payment method not available. Please contact support.",
1066
+ "PaymentServices.messages.methodNotLoaded": "Failed to load payment method. Please try again later.",
1067
+ "PaymentServices.messages.methodLoading": "Loading payment method..."
1068
+ }
1069
+ },
1070
+ "storefront-pdp": {
1071
+ "version": "3.1.0",
1072
+ "keyCount": 31,
1073
+ "keys": {
1074
+ "PDP.Product.Incrementer.label": "Item Quantity",
1075
+ "PDP.Product.OutOfStock.label": "Out of Stock",
1076
+ "PDP.Product.AddToCart.label": "Add to Cart",
1077
+ "PDP.Product.Details.label": "Details",
1078
+ "PDP.Product.RegularPrice.label": "Regular Price",
1079
+ "PDP.Product.SpecialPrice.label": "Special Price",
1080
+ "PDP.Product.TierPrice.label": "Tier Price",
1081
+ "PDP.Product.TierPricing.label": "Buy {quantity} for {price} each and save {percent}%",
1082
+ "PDP.Product.Image.label": "{product} Image {key} of {total}",
1083
+ "PDP.Product.GiftCardOptions.ChooseAmount.label": "Choose amount",
1084
+ "PDP.Product.GiftCardOptions.OtherAmount.label": "Other amount",
1085
+ "PDP.Product.GiftCardOptions.RequiredFieldError.label": "This field is required",
1086
+ "PDP.Product.GiftCardOptions.NumberError.label": "Please enter a valid number",
1087
+ "PDP.Product.GiftCardOptions.MinError.label": "Minimum value is {min}",
1088
+ "PDP.Product.GiftCardOptions.MaxError.label": "Maximum value is {max}",
1089
+ "PDP.Product.GiftCardOptions.MinLengthError.label": "Minimum length is {min_length} characters",
1090
+ "PDP.Product.GiftCardOptions.MaxLengthError.label": "Maximum length is {max_length} characters",
1091
+ "PDP.Product.GiftCardOptions.EmailError.label": "Please enter a valid email address",
1092
+ "PDP.Product.GiftCardOptions.InvalidValueError.label": "Please select one of the allowed values: {values}",
1093
+ "PDP.Swatches.Required.label": "Required",
1094
+ "PDP.Swatches.ChooseOption.label": "Choose an option",
1095
+ "PDP.DownloadableOptions.Sample.label": "Sample",
1096
+ "PDP.DownloadableOptions.ViewSample.label": "View sample for {label}",
1097
+ "PDP.Carousel.label": "Carousel",
1098
+ "PDP.Carousel.Next.label": "Next",
1099
+ "PDP.Carousel.Previous.label": "Previous",
1100
+ "PDP.Carousel.Slide.label": "Slide",
1101
+ "PDP.Carousel.Controls.label": "Carousel Controls",
1102
+ "PDP.Carousel.Controls.Button.label": "Show slide {key} of {total}",
1103
+ "PDP.Overlay.Close.label": "Close",
1104
+ "PDP.Zoom.Close.label": "Close"
1105
+ }
1106
+ },
1107
+ "storefront-personalization": {
1108
+ "version": "3.1.1",
1109
+ "keyCount": 0,
1110
+ "keys": {}
1111
+ },
1112
+ "storefront-purchase-order": {
1113
+ "version": "1.1.1",
1114
+ "keyCount": 171,
1115
+ "keys": {
1116
+ "PurchaseOrders.customerPurchaseOrders.containerTitle": "My purchase orders",
1117
+ "PurchaseOrders.customerPurchaseOrders.noPurchaseOrders": "No purchase orders found.",
1118
+ "PurchaseOrders.companyPurchaseOrders.containerTitle": "Company purchase orders",
1119
+ "PurchaseOrders.companyPurchaseOrders.noPurchaseOrders": "No company purchase orders found.",
1120
+ "PurchaseOrders.requireApprovalPurchaseOrders.containerTitle": "Requires my approval",
1121
+ "PurchaseOrders.requireApprovalPurchaseOrders.noPurchaseOrders": "No purchase orders requiring my approval found.",
1122
+ "PurchaseOrders.approvalRulesList.containerTitle": "Approval rules",
1123
+ "PurchaseOrders.approvalRulesList.emptyTitle": "No approval rules found",
1124
+ "PurchaseOrders.approvalRulesList.ariaLabel.editRule": "Edit approval rule {{ruleName}}",
1125
+ "PurchaseOrders.approvalRulesList.ariaLabel.deleteRule": "Delete approval rule {{ruleName}}",
1126
+ "PurchaseOrders.approvalRulesList.ariaLabel.viewRule": "View approval rule {{ruleName}}",
1127
+ "PurchaseOrders.approvalRulesList.buttons.newRule": "Add New Rule",
1128
+ "PurchaseOrders.alertMessages.header.approve": "Approve Purchase Orders",
1129
+ "PurchaseOrders.alertMessages.header.reject": "Reject Purchase Orders",
1130
+ "PurchaseOrders.alertMessages.header.error": "Error",
1131
+ "PurchaseOrders.alertMessages.description.approve": "The selected purchase orders were approved successfully.",
1132
+ "PurchaseOrders.alertMessages.description.reject": "The selected purchase orders were rejected successfully.",
1133
+ "PurchaseOrders.alertMessages.description.error": "An error occurred while processing your request.",
1134
+ "PurchaseOrders.purchaseOrdersTable.noPurchaseOrders.default": "No purchase orders found.",
1135
+ "PurchaseOrders.purchaseOrdersTable.pagination.status": "Items {{from}}-{{to}} of {{total}}",
1136
+ "PurchaseOrders.purchaseOrdersTable.pagination.pageSizeLabel.start": "Show",
1137
+ "PurchaseOrders.purchaseOrdersTable.loading": "Loading purchase orders...",
1138
+ "PurchaseOrders.purchaseOrdersTable.actionView": "View",
1139
+ "PurchaseOrders.purchaseOrdersTable.actionEdit": "Edit",
1140
+ "PurchaseOrders.purchaseOrdersTable.actionDelete": "Delete",
1141
+ "PurchaseOrders.purchaseOrdersTable.rulesStatus.enabled": "Enabled",
1142
+ "PurchaseOrders.purchaseOrdersTable.rulesStatus.disabled": "Disabled",
1143
+ "PurchaseOrders.purchaseOrdersTable.ruleTypes.grand_total": "Grand Total",
1144
+ "PurchaseOrders.purchaseOrdersTable.ruleTypes.number_of_skus": "Number of SKUs",
1145
+ "PurchaseOrders.purchaseOrdersTable.ruleTypes.any_item": "Any Item",
1146
+ "PurchaseOrders.purchaseOrdersTable.ruleTypes.all_items": "All Items",
1147
+ "PurchaseOrders.purchaseOrdersTable.buttons.expandedHidden": "Hide",
1148
+ "PurchaseOrders.purchaseOrdersTable.buttons.expandedShow": "Show",
1149
+ "PurchaseOrders.purchaseOrdersTable.appliesToAll": "All",
1150
+ "PurchaseOrders.purchaseOrdersTable.statusOrder.order_placed": "Order placed",
1151
+ "PurchaseOrders.purchaseOrdersTable.statusOrder.order_failed": "Order failed",
1152
+ "PurchaseOrders.purchaseOrdersTable.statusOrder.pending": "Pending",
1153
+ "PurchaseOrders.purchaseOrdersTable.statusOrder.approved": "Approved",
1154
+ "PurchaseOrders.purchaseOrdersTable.statusOrder.rejected": "Rejected",
1155
+ "PurchaseOrders.purchaseOrdersTable.statusOrder.canceled": "Canceled",
1156
+ "PurchaseOrders.purchaseOrdersTable.statusOrder.order_in_progress": "Order in progress",
1157
+ "PurchaseOrders.purchaseOrdersTable.statusOrder.approval_required": "Approval required",
1158
+ "PurchaseOrders.purchaseOrdersTable.statusOrder.approved_pending_payment": "Approved pending Payment",
1159
+ "PurchaseOrders.purchaseOrdersTable.expandedRowLabels.orderNumber": "Order Number:",
1160
+ "PurchaseOrders.purchaseOrdersTable.expandedRowLabels.createdDate": "Created Date:",
1161
+ "PurchaseOrders.purchaseOrdersTable.expandedRowLabels.updatedDate": "Updated Date:",
1162
+ "PurchaseOrders.purchaseOrdersTable.expandedRowLabels.total": "Total:",
1163
+ "PurchaseOrders.purchaseOrdersTable.expandedRowLabels.ruleType": "Rule Type:",
1164
+ "PurchaseOrders.purchaseOrdersTable.expandedRowLabels.appliesTo": "Applies To:",
1165
+ "PurchaseOrders.purchaseOrdersTable.expandedRowLabels.approver": "Approver:",
1166
+ "PurchaseOrders.purchaseOrdersTable.tableColumns.poNumber": "PO #",
1167
+ "PurchaseOrders.purchaseOrdersTable.tableColumns.orderNumber": "Order #",
1168
+ "PurchaseOrders.purchaseOrdersTable.tableColumns.createdDate": "Created",
1169
+ "PurchaseOrders.purchaseOrdersTable.tableColumns.updatedDate": "Updated",
1170
+ "PurchaseOrders.purchaseOrdersTable.tableColumns.createdBy": "Created By",
1171
+ "PurchaseOrders.purchaseOrdersTable.tableColumns.status": "Status",
1172
+ "PurchaseOrders.purchaseOrdersTable.tableColumns.total": "Total",
1173
+ "PurchaseOrders.purchaseOrdersTable.tableColumns.action": "Action",
1174
+ "PurchaseOrders.purchaseOrdersTable.tableColumns.ruleName": "Rule Name",
1175
+ "PurchaseOrders.purchaseOrdersTable.tableColumns.selectAllAriaLabel": "Select all not approved purchase orders",
1176
+ "PurchaseOrders.purchaseOrderConfirmation.title": "Your Purchase Order has been submitted for approval.",
1177
+ "PurchaseOrders.purchaseOrderConfirmation.messagePrefix": "Your Purchase Order request number is",
1178
+ "PurchaseOrders.purchaseOrderConfirmation.messageSuffix": "A copy of this Purchase Order will be emailed to you shortly.",
1179
+ "PurchaseOrders.purchaseOrderStatus.headerText": "Status",
1180
+ "PurchaseOrders.purchaseOrderStatus.emptyText": "No actions available for this purchase order.",
1181
+ "PurchaseOrders.purchaseOrderStatus.status.pending.title": "Pending approval",
1182
+ "PurchaseOrders.purchaseOrderStatus.status.pending.message": "Purchase order is awaiting approval.",
1183
+ "PurchaseOrders.purchaseOrderStatus.status.approval_required.title": "Approval required",
1184
+ "PurchaseOrders.purchaseOrderStatus.status.approval_required.message": "Purchase order requires approval before it can be processed.",
1185
+ "PurchaseOrders.purchaseOrderStatus.status.approved.title": "Order approved",
1186
+ "PurchaseOrders.purchaseOrderStatus.status.approved.message": "Purchase order has been approved.",
1187
+ "PurchaseOrders.purchaseOrderStatus.status.order_in_progress.title": "Processing in progress",
1188
+ "PurchaseOrders.purchaseOrderStatus.status.order_in_progress.message": "Purchase order is currently being processed.",
1189
+ "PurchaseOrders.purchaseOrderStatus.status.order_placed.title": "Order placed",
1190
+ "PurchaseOrders.purchaseOrderStatus.status.order_placed.message": "Order has been placed successfully.",
1191
+ "PurchaseOrders.purchaseOrderStatus.status.order_failed.title": "Order failed",
1192
+ "PurchaseOrders.purchaseOrderStatus.status.order_failed.message": "Order placing has failed.",
1193
+ "PurchaseOrders.purchaseOrderStatus.status.rejected.title": "Order rejected",
1194
+ "PurchaseOrders.purchaseOrderStatus.status.rejected.message": "Purchase order has been rejected.",
1195
+ "PurchaseOrders.purchaseOrderStatus.status.canceled.title": "Order canceled",
1196
+ "PurchaseOrders.purchaseOrderStatus.status.canceled.message": "Purchase order has been canceled.",
1197
+ "PurchaseOrders.purchaseOrderStatus.status.approved_pending_payment.title": "Order approved - pending payment",
1198
+ "PurchaseOrders.purchaseOrderStatus.status.approved_pending_payment.message": "Purchase order has been approved and is awaiting payment.",
1199
+ "PurchaseOrders.purchaseOrderStatus.alertMessages.success.approval": "The purchase order was approved successfully.",
1200
+ "PurchaseOrders.purchaseOrderStatus.alertMessages.success.reject": "The purchase order was rejected successfully.",
1201
+ "PurchaseOrders.purchaseOrderStatus.alertMessages.success.cancel": "The purchase order was canceled successfully.",
1202
+ "PurchaseOrders.purchaseOrderStatus.alertMessages.success.placeOrder": "The sales order was placed successfully.",
1203
+ "PurchaseOrders.purchaseOrderStatus.alertMessages.errors.approval": "An error occurred while approving the purchase order. Please try again.",
1204
+ "PurchaseOrders.purchaseOrderStatus.alertMessages.errors.reject": "An error occurred while rejecting the purchase order. Please try again.",
1205
+ "PurchaseOrders.purchaseOrderStatus.alertMessages.errors.cancel": "An error occurred while canceling the purchase order. Please try again.",
1206
+ "PurchaseOrders.purchaseOrderStatus.alertMessages.errors.placeOrder": "An error occurred while placing the sales order. Please try again.",
1207
+ "PurchaseOrders.purchaseOrderStatus.buttons.approve": "Approve",
1208
+ "PurchaseOrders.purchaseOrderStatus.buttons.reject": "Reject",
1209
+ "PurchaseOrders.purchaseOrderStatus.buttons.cancel": "Cancel",
1210
+ "PurchaseOrders.purchaseOrderStatus.buttons.placeOrder": "Place Order",
1211
+ "PurchaseOrders.approvalRuleForm.headerText": "Purchase order approval rule",
1212
+ "PurchaseOrders.approvalRuleForm.titleAppliesTo": "Applies To",
1213
+ "PurchaseOrders.approvalRuleForm.titleRuleType": "Rule Type",
1214
+ "PurchaseOrders.approvalRuleForm.titleRequiresApprovalRole": "Requires Approval From",
1215
+ "PurchaseOrders.approvalRuleForm.fields.enabled": "Rule Enabled",
1216
+ "PurchaseOrders.approvalRuleForm.fields.disabled": "Rule Disabled",
1217
+ "PurchaseOrders.approvalRuleForm.fields.inputRuleName.floatingLabel": "Rule Name",
1218
+ "PurchaseOrders.approvalRuleForm.fields.inputRuleName.placeholder": "Rule Name",
1219
+ "PurchaseOrders.approvalRuleForm.fields.textAreaDescription.label": "Rule Description",
1220
+ "PurchaseOrders.approvalRuleForm.fields.appliesTo.allUsers": "All Users",
1221
+ "PurchaseOrders.approvalRuleForm.fields.appliesTo.specificRoles": "Specific Roles",
1222
+ "PurchaseOrders.approvalRuleForm.fields.ruleTypeOptions.grandTotal": "Grand Total",
1223
+ "PurchaseOrders.approvalRuleForm.fields.ruleTypeOptions.shippingInclTax": "Shipping Cost",
1224
+ "PurchaseOrders.approvalRuleForm.fields.ruleTypeOptions.numberOfSkus": "Number of SKUs",
1225
+ "PurchaseOrders.approvalRuleForm.fields.conditionOperators.moreThan": "is more than",
1226
+ "PurchaseOrders.approvalRuleForm.fields.conditionOperators.lessThan": "is less than",
1227
+ "PurchaseOrders.approvalRuleForm.fields.conditionOperators.moreThanOrEqualTo": "is more than or equal to",
1228
+ "PurchaseOrders.approvalRuleForm.fields.conditionOperators.lessThanOrEqualTo": "is less than or equal to",
1229
+ "PurchaseOrders.approvalRuleForm.fields.inputQuantity.floatingLabel": "Enter Amount",
1230
+ "PurchaseOrders.approvalRuleForm.fields.inputQuantity.placeholder": "Enter Amount",
1231
+ "PurchaseOrders.approvalRuleForm.fields.inputAmount.floatingLabel": "Enter Amount",
1232
+ "PurchaseOrders.approvalRuleForm.fields.inputAmount.placeholder": "Enter Amount",
1233
+ "PurchaseOrders.approvalRuleForm.fields.buttons.cancel": "Cancel",
1234
+ "PurchaseOrders.approvalRuleForm.fields.buttons.save": "Save",
1235
+ "PurchaseOrders.approvalRuleForm.errorsMessages.required": "This field is required.",
1236
+ "PurchaseOrders.approvalRuleForm.errorsMessages.quantity": "Quantity must be greater than 0.",
1237
+ "PurchaseOrders.approvalRuleForm.errorsMessages.amount": "Amount must be greater than 0.",
1238
+ "PurchaseOrders.approvalRuleForm.errorsMessages.approvers": "Please select at least one approver.",
1239
+ "PurchaseOrders.approvalRuleDetails.containerTitle": "Approval rule details",
1240
+ "PurchaseOrders.approvalRuleDetails.buttons.back": "Back to Rules List",
1241
+ "PurchaseOrders.approvalRuleDetails.fields.ruleName": "Rule Name:",
1242
+ "PurchaseOrders.approvalRuleDetails.fields.status": "Status:",
1243
+ "PurchaseOrders.approvalRuleDetails.fields.description": "Description:",
1244
+ "PurchaseOrders.approvalRuleDetails.fields.appliesTo": "Applies To:",
1245
+ "PurchaseOrders.approvalRuleDetails.fields.requiresApprovalFrom": "Requires Approval From:",
1246
+ "PurchaseOrders.approvalRuleDetails.fields.ruleType": "Rule Type:",
1247
+ "PurchaseOrders.approvalRuleDetails.fields.amount.label": " amount ",
1248
+ "PurchaseOrders.approvalRuleDetails.fields.statusView.enabled": "Enabled",
1249
+ "PurchaseOrders.approvalRuleDetails.fields.statusView.disabled": "Disabled",
1250
+ "PurchaseOrders.approvalRuleDetails.fields.condition.attribute.grand_total": "Grand Total",
1251
+ "PurchaseOrders.approvalRuleDetails.fields.condition.attribute.shipping_incl_tax": "Shipping Cost",
1252
+ "PurchaseOrders.approvalRuleDetails.fields.condition.attribute.number_of_skus": "Number of SKUs",
1253
+ "PurchaseOrders.approvalRuleDetails.fields.condition.operator.more_than": "Is more than",
1254
+ "PurchaseOrders.approvalRuleDetails.fields.condition.operator.less_than": "Is less than",
1255
+ "PurchaseOrders.approvalRuleDetails.fields.condition.operator.more_than_or_equal_to": "Is more than or equal to",
1256
+ "PurchaseOrders.approvalRuleDetails.fields.condition.operator.less_than_or_equal_to": "Is less than or equal to",
1257
+ "PurchaseOrders.historyLog.headerText": "Purchase order history log",
1258
+ "PurchaseOrders.historyLog.statusTitle": "Status Changes",
1259
+ "PurchaseOrders.historyLog.emptyText": "No history log available.",
1260
+ "PurchaseOrders.historyLog.status.cancel": "Cancelled on {{date}}",
1261
+ "PurchaseOrders.historyLog.status.reject": "Rejected on {{date}}",
1262
+ "PurchaseOrders.historyLog.status.place_order_fail": "Failed to place order on {{date}}",
1263
+ "PurchaseOrders.historyLog.status.apply_rules": "Rule applied on {{date}}",
1264
+ "PurchaseOrders.historyLog.status.place_order": "Order placed on {{date}}",
1265
+ "PurchaseOrders.historyLog.status.auto_approve": "Auto approved on {{date}}",
1266
+ "PurchaseOrders.historyLog.status.approve": "Approved on {{date}}",
1267
+ "PurchaseOrders.historyLog.status.submit": "Submitted for approval on {{date}}",
1268
+ "PurchaseOrders.historyLog.buttons.viewMore": "View More",
1269
+ "PurchaseOrders.historyLog.buttons.viewLess": "View Less",
1270
+ "PurchaseOrders.historyLog.ariaLabel.showMore": "Show more history items",
1271
+ "PurchaseOrders.historyLog.ariaLabel.showLess": "Show fewer history items",
1272
+ "PurchaseOrders.comments.view.headerText": "Purchase order comments",
1273
+ "PurchaseOrders.comments.view.emptyText": "No comments available.",
1274
+ "PurchaseOrders.comments.view.buttons.viewMore": "View More",
1275
+ "PurchaseOrders.comments.view.buttons.viewLess": "View Less",
1276
+ "PurchaseOrders.comments.view.ariaLabel.showMore": "Show more comments",
1277
+ "PurchaseOrders.comments.view.ariaLabel.showLess": "Show fewer comments",
1278
+ "PurchaseOrders.comments.add.headerText": "Add purchase order comment",
1279
+ "PurchaseOrders.comments.add.placeholder": "Add your comment",
1280
+ "PurchaseOrders.comments.add.submit": "Add Comment",
1281
+ "PurchaseOrders.comments.add.errorMessage": "Something went wrong while adding your comment. Please try again.",
1282
+ "PurchaseOrders.approvalFlow.headerText": "Purchase order approval flow",
1283
+ "PurchaseOrders.approvalFlow.emptyText": "No approval flow is available for this purchase order.",
1284
+ "PurchaseOrders.approvalFlow.ariaLabels.icons.approved": "Status approved",
1285
+ "PurchaseOrders.approvalFlow.ariaLabels.icons.rejected": "Status rejected",
1286
+ "PurchaseOrders.approvalFlow.ariaLabels.icons.pending": "Status pending approval"
1287
+ }
1288
+ },
1289
+ "storefront-quick-order": {
1290
+ "version": "1.0.0-beta.3",
1291
+ "keyCount": 71,
1292
+ "keys": {
1293
+ "QuickOrder.Search.placeholder": "Search by SKU...",
1294
+ "QuickOrder.Search.ariaLabel": "Search for products by SKU",
1295
+ "QuickOrder.Search.emptyState": "No results found",
1296
+ "QuickOrder.Search.resultsAvailable": "results available",
1297
+ "QuickOrder.Search.resultAvailable": "result available",
1298
+ "QuickOrder.Search.srInstructions": "Use arrow keys or Tab to navigate, Enter or Space to select, Escape to close.",
1299
+ "QuickOrder.SkuListInput.title": "Add Products by SKU",
1300
+ "QuickOrder.SkuListInput.helperText": "Use commas or paragraphs to separate SKUs.",
1301
+ "QuickOrder.SkuListInput.textArea.label": "Enter Multiple SKUs",
1302
+ "QuickOrder.SkuListInput.textArea.placeholder": "Enter SKUs here...",
1303
+ "QuickOrder.SkuListInput.button": "Add to List",
1304
+ "QuickOrder.CsvFileInput.title": "Add from File",
1305
+ "QuickOrder.CsvFileInput.helperText": "File must be in .csv format and include \"SKU\" and \"QTY\" columns ",
1306
+ "QuickOrder.CsvFileInput.downloadSample": "Download sample",
1307
+ "QuickOrder.CsvFileInput.inputLabel": "Choose File",
1308
+ "QuickOrder.CsvFileInput.selectedFile": "Selected file",
1309
+ "QuickOrder.CsvFileInput.uploadCSVErrors.invalidFile": "Invalid CSV file",
1310
+ "QuickOrder.CsvFileInput.uploadCSVErrors.emptyFile": "File is empty",
1311
+ "QuickOrder.CsvFileInput.uploadCSVErrors.missingColumns": "Must contain \"SKU\" and \"QTY\" columns",
1312
+ "QuickOrder.CsvFileInput.uploadCSVErrors.extraColumns": "Must contain only \"SKU\" and \"QTY\" columns",
1313
+ "QuickOrder.CsvFileInput.uploadCSVErrors.maxRowsExceeded": "File exceeds maximum of {maxRows} rows",
1314
+ "QuickOrder.CsvFileInput.uploadCSVErrors.skuRequired": "Row {rowNumber}: SKU is required",
1315
+ "QuickOrder.CsvFileInput.uploadCSVErrors.invalidQuantity": "Row {rowNumber}: QTY must be a positive integer",
1316
+ "QuickOrder.CsvFileInput.uploadCSVErrors.noValidData": "File contains no valid data rows",
1317
+ "QuickOrder.CsvFileInput.uploadCSVErrors.onlyCSV": "Only CSV files are allowed",
1318
+ "QuickOrder.CsvFileInput.uploadCSVErrors.failedToRead": "Failed to read file",
1319
+ "QuickOrder.CsvFileInput.uploadCSVErrors.failedToParse": "Failed to parse CSV file",
1320
+ "QuickOrder.QuickOrderItem.title": "Enter SKU or search by Product Name",
1321
+ "QuickOrder.QuickOrderItem.quantity": "Quantity: ",
1322
+ "QuickOrder.QuickOrderItem.price": "Price: ",
1323
+ "QuickOrder.QuickOrderItem.sku": "SKU",
1324
+ "QuickOrder.QuickOrderItem.remove": "Remove",
1325
+ "QuickOrder.QuickOrderItem.removeItem": "Remove item",
1326
+ "QuickOrder.QuickOrderItem.showOptions": "Show additional options",
1327
+ "QuickOrder.QuickOrderItem.hideOptions": "Hide additional options",
1328
+ "QuickOrder.QuickOrderItem.additionalOptions": "Additional options",
1329
+ "QuickOrder.QuickOrderItem.noAdditionalOptions": "No additional options available",
1330
+ "QuickOrder.QuickOrderItem.emptyList": "No products in the list",
1331
+ "QuickOrder.QuickOrderItem.loading": "Loading...",
1332
+ "QuickOrder.QuickOrderItem.productNotFound": "Product not found",
1333
+ "QuickOrder.QuickOrderItem.productNotFoundDescription": "The product with SKU {sku} could not be found",
1334
+ "QuickOrder.QuickOrderItem.configurableProductError": "Configuration required",
1335
+ "QuickOrder.QuickOrderItem.configurableProductErrorDescription": "Use ProductOptions Slot in QuickOrderItems container to enable configurable product options.",
1336
+ "QuickOrder.QuickOrderItem.configurableOptionsWarning": "Product configuration required",
1337
+ "QuickOrder.QuickOrderItem.configurableOptionsWarningDescription": "Please select all required product options before adding to cart",
1338
+ "QuickOrder.QuickOrderItem.productOptions": "Product Options",
1339
+ "QuickOrder.QuickOrderItem.outOfStock": "Out of Stock",
1340
+ "QuickOrder.QuickOrderItem.addAllToCart": "Add to Cart",
1341
+ "QuickOrder.QuickOrderItem.disabledMessage": "Quick Order feature disabled",
1342
+ "QuickOrder.QuickOrderItem.notification.validationError": "Product(s) require(s) your attention",
1343
+ "QuickOrder.QuickOrderItem.notification.backendError": "An error occurred while adding products to the cart",
1344
+ "QuickOrder.QuickOrderItem.notification.success": "{count} product(s) successfully added to the cart",
1345
+ "QuickOrder.QuickOrderItem.notification.partialSuccess": "{count} of {total} products were added to the cart. Some products could not be added",
1346
+ "QuickOrder.QuickOrderItem.notification.unexpectedError": "An unexpected error has occurred",
1347
+ "QuickOrder.VariantsGrid.imageColumn": "Image",
1348
+ "QuickOrder.VariantsGrid.attributesColumn": "Attributes",
1349
+ "QuickOrder.VariantsGrid.skuColumn": "SKU",
1350
+ "QuickOrder.VariantsGrid.availabilityColumn": "Availability",
1351
+ "QuickOrder.VariantsGrid.priceColumn": "Price",
1352
+ "QuickOrder.VariantsGrid.minOrderColumn": "Min Order / Pack Size",
1353
+ "QuickOrder.VariantsGrid.quantityColumn": "Quantity",
1354
+ "QuickOrder.VariantsGrid.subtotalColumn": "Subtotal",
1355
+ "QuickOrder.VariantsGrid.clearButton": "Clear",
1356
+ "QuickOrder.VariantsGrid.saveToCsvButton": "Save to CSV",
1357
+ "QuickOrder.VariantsGrid.collectDataButton": "Collect Data",
1358
+ "QuickOrder.VariantsGrid.inStock": "In Stock",
1359
+ "QuickOrder.VariantsGrid.outOfStock": "Out of Stock",
1360
+ "QuickOrder.VariantsGrid.tableCaption": "Product Variants Grid",
1361
+ "QuickOrder.VariantsGrid.quantityLabel": "Quantity for",
1362
+ "QuickOrder.VariantsGrid.showAll": "Show All Items",
1363
+ "QuickOrder.VariantsGrid.showLess": "Show Less"
1364
+ }
1365
+ },
1366
+ "storefront-quote-management": {
1367
+ "version": "1.1.2",
1368
+ "keyCount": 338,
1369
+ "keys": {
1370
+ "ConfirmationModal.cancel": "Cancel",
1371
+ "ConfirmationModal.confirm": "Confirm",
1372
+ "NegotiableQuote.Request.title": "Request a Quote",
1373
+ "NegotiableQuote.Request.comment": "Comment",
1374
+ "NegotiableQuote.Request.commentError": "Please add your comment",
1375
+ "NegotiableQuote.Request.quoteName": "Quote name",
1376
+ "NegotiableQuote.Request.quoteNameError": "Please add a quote name",
1377
+ "NegotiableQuote.Request.attachmentsError": "Error uploading attachments",
1378
+ "NegotiableQuote.Request.maxFilesExceeded": "Maximum {maxFiles} file(s) allowed",
1379
+ "NegotiableQuote.Request.maxFileSizeExceeded": "File size exceeds maximum limit of {maxSize}",
1380
+ "NegotiableQuote.Request.invalidFileType": "File type not accepted",
1381
+ "NegotiableQuote.Request.removeFile": "Remove file",
1382
+ "NegotiableQuote.Request.uploading": "Uploading...",
1383
+ "NegotiableQuote.Request.uploadSuccess": "Upload complete",
1384
+ "NegotiableQuote.Request.uploadError": "Upload failed",
1385
+ "NegotiableQuote.Request.requestCta": "Request a Quote",
1386
+ "NegotiableQuote.Request.saveDraftCta": "Save as draft",
1387
+ "NegotiableQuote.Request.error.header": "Error",
1388
+ "NegotiableQuote.Request.error.unauthenticated": "Please sign in to request a quote.",
1389
+ "NegotiableQuote.Request.error.unauthorized": "You are not authorized to request a quote.",
1390
+ "NegotiableQuote.Request.error.missingCart": "Could not find a valid cart.",
1391
+ "NegotiableQuote.Request.success.header": "Success",
1392
+ "NegotiableQuote.Request.success.submitted": "Quote request submitted successfully!",
1393
+ "NegotiableQuote.Request.success.draftSaved": "Quote saved as draft successfully!",
1394
+ "NegotiableQuote.Manage.createdLabel": "Created:",
1395
+ "NegotiableQuote.Manage.salesRepLabel": "Sales Rep:",
1396
+ "NegotiableQuote.Manage.expiresLabel": "Expires:",
1397
+ "NegotiableQuote.Manage.actionsLabel": "Actions",
1398
+ "NegotiableQuote.Manage.actions.remove": "Remove",
1399
+ "NegotiableQuote.Manage.attachFile": "Attach File",
1400
+ "NegotiableQuote.Manage.attachFiles": "Attach Files",
1401
+ "NegotiableQuote.Manage.fileUploadError": "Failed to upload file. Please try again.",
1402
+ "NegotiableQuote.Manage.maxFilesExceeded": "Maximum {maxFiles} file(s) allowed",
1403
+ "NegotiableQuote.Manage.maxFileSizeExceeded": "File size exceeds maximum limit of {maxSize}",
1404
+ "NegotiableQuote.Manage.invalidFileType": "File type not accepted",
1405
+ "NegotiableQuote.Manage.removeFile": "Remove file",
1406
+ "NegotiableQuote.Manage.uploading": "Uploading...",
1407
+ "NegotiableQuote.Manage.uploadSuccess": "Upload complete",
1408
+ "NegotiableQuote.Manage.uploadError": "Upload failed",
1409
+ "NegotiableQuote.Manage.bannerTitle": "Alert",
1410
+ "NegotiableQuote.Manage.bannerStatusMessages.submitted": "This quote is currently locked for editing. It will become available once released by the Merchant.",
1411
+ "NegotiableQuote.Manage.bannerStatusMessages.pending": "This quote is currently locked for editing. It will become available once released by the Merchant.",
1412
+ "NegotiableQuote.Manage.bannerStatusMessages.expired": "Your quote has expired and the product prices have been updated as per the latest prices in your catalog. You can either re-submit the quote to seller for further negotiation or go to checkout.",
1413
+ "NegotiableQuote.Manage.actionButtons.close": "Close quote",
1414
+ "NegotiableQuote.Manage.actionButtons.delete": "Delete quote",
1415
+ "NegotiableQuote.Manage.actionButtons.print": "Print quote",
1416
+ "NegotiableQuote.Manage.actionButtons.createTemplate": "Create quote template",
1417
+ "NegotiableQuote.Manage.actionButtons.createCopy": "Create copy",
1418
+ "NegotiableQuote.Manage.actionButtons.sendForReview": "Send for review",
1419
+ "NegotiableQuote.Manage.confirmationModal.cancel": "Cancel",
1420
+ "NegotiableQuote.Manage.confirmationModal.delete.title": "Delete Quote",
1421
+ "NegotiableQuote.Manage.confirmationModal.delete.message": "Are you sure you want to delete this quote?",
1422
+ "NegotiableQuote.Manage.confirmationModal.delete.confirm": "Delete",
1423
+ "NegotiableQuote.Manage.confirmationModal.delete.errorHeading": "Error",
1424
+ "NegotiableQuote.Manage.confirmationModal.delete.errorFallback": "Failed to delete quote",
1425
+ "NegotiableQuote.Manage.confirmationModal.delete.successHeading": "Success",
1426
+ "NegotiableQuote.Manage.confirmationModal.delete.successDescription": "Quote has been successfully deleted",
1427
+ "NegotiableQuote.Manage.confirmationModal.duplicate.title": "Duplicate Quote",
1428
+ "NegotiableQuote.Manage.confirmationModal.duplicate.message": "Are you sure you want to create a copy of this quote?",
1429
+ "NegotiableQuote.Manage.confirmationModal.duplicate.confirm": "Create Copy",
1430
+ "NegotiableQuote.Manage.confirmationModal.duplicate.errorHeading": "Error",
1431
+ "NegotiableQuote.Manage.confirmationModal.duplicate.errorFallback": "Failed to duplicate quote",
1432
+ "NegotiableQuote.Manage.confirmationModal.duplicate.successHeading": "Success",
1433
+ "NegotiableQuote.Manage.confirmationModal.duplicate.successDescription": "Quote has been successfully duplicated. You will be redirected to the new quote shortly.",
1434
+ "NegotiableQuote.Manage.confirmationModal.duplicate.outOfStockWarningHeading": "Alert",
1435
+ "NegotiableQuote.Manage.confirmationModal.duplicate.outOfStockWarningMessage": "Some items were skipped during duplication due to errors.",
1436
+ "NegotiableQuote.Manage.confirmationModal.close.message": "Are you sure you want to close this quote?",
1437
+ "NegotiableQuote.Manage.confirmationModal.close.confirm": "Close",
1438
+ "NegotiableQuote.Manage.confirmationModal.close.confirmLoading": "Closing...",
1439
+ "NegotiableQuote.Manage.confirmationModal.close.successHeading": "Success",
1440
+ "NegotiableQuote.Manage.confirmationModal.close.successDescription": "Quote has been successfully closed",
1441
+ "NegotiableQuote.Manage.confirmationModal.createTemplate.message": "Are you sure you want to create a quote template from this quote?",
1442
+ "NegotiableQuote.Manage.confirmationModal.createTemplate.confirm": "Create Template",
1443
+ "NegotiableQuote.Manage.confirmationModal.createTemplate.confirmLoading": "Creating...",
1444
+ "NegotiableQuote.Manage.confirmationModal.createTemplate.successHeading": "Success",
1445
+ "NegotiableQuote.Manage.confirmationModal.createTemplate.successDescription": "Quote template has been successfully created",
1446
+ "NegotiableQuote.Manage.confirmationModal.createTemplate.errorHeading": "Error",
1447
+ "NegotiableQuote.Manage.confirmationModal.createTemplate.errorFallback": "Failed to create quote template",
1448
+ "NegotiableQuote.Manage.confirmationModal.noItemsSelected.title": "Please Select Quote Items",
1449
+ "NegotiableQuote.Manage.confirmationModal.noItemsSelected.message": "Please select at least one quote item to proceed.",
1450
+ "NegotiableQuote.Manage.confirmationModal.noItemsSelected.confirm": "Ok",
1451
+ "NegotiableQuote.Manage.shippingInformation.title": "Shipping Information",
1452
+ "NegotiableQuote.Manage.shippingAddress.noAddress": "No shipping address has been set for this quote.",
1453
+ "NegotiableQuote.Manage.shippingAddress.noAddressHeading": "No Shipping Address",
1454
+ "NegotiableQuote.Manage.shippingAddress.noAddressDescription": "Please select or enter a shipping address.",
1455
+ "NegotiableQuote.Manage.quoteComments.title": "Quote Comments",
1456
+ "NegotiableQuote.Manage.quoteComments.placeholder": "Add your comment",
1457
+ "NegotiableQuote.Manage.quoteComments.emptyState": "No comments yet",
1458
+ "NegotiableQuote.Manage.quoteComments.by": "by",
1459
+ "NegotiableQuote.Manage.quoteComments.attachments": "Attachments:",
1460
+ "NegotiableQuote.Manage.productListTable.headers.productName": "Product name",
1461
+ "NegotiableQuote.Manage.productListTable.headers.sku": "SKU",
1462
+ "NegotiableQuote.Manage.productListTable.headers.price": "Price",
1463
+ "NegotiableQuote.Manage.productListTable.headers.quantity": "Quantity",
1464
+ "NegotiableQuote.Manage.productListTable.headers.discount": "Discount",
1465
+ "NegotiableQuote.Manage.productListTable.headers.subtotal": "Subtotal",
1466
+ "NegotiableQuote.Manage.productListTable.headers.actions": "Actions",
1467
+ "NegotiableQuote.Manage.productListTable.submitButton": "Update",
1468
+ "NegotiableQuote.Manage.productListTable.actions.editNoteToSeller": "Edit note to seller",
1469
+ "NegotiableQuote.Manage.productListTable.actions.remove": "Remove",
1470
+ "NegotiableQuote.Manage.productListTable.notes.header": "NOTES",
1471
+ "NegotiableQuote.Manage.productListTable.notes.leftANote": "left a note:",
1472
+ "NegotiableQuote.Manage.productListTable.notes.buyer": "Buyer",
1473
+ "NegotiableQuote.Manage.productListTable.notes.seller": "Seller",
1474
+ "NegotiableQuote.Manage.productListTable.outOfStock": "Out of Stock",
1475
+ "NegotiableQuote.Manage.productListTable.outOfStockMessage": "This item is currently out of stock.",
1476
+ "NegotiableQuote.Manage.rename.title": "Rename Quote",
1477
+ "NegotiableQuote.Manage.rename.quoteNameLabel": "Quote name",
1478
+ "NegotiableQuote.Manage.rename.reasonLabel": "Reason for change",
1479
+ "NegotiableQuote.Manage.rename.renameButton": "Rename",
1480
+ "NegotiableQuote.Manage.rename.cancelButton": "Cancel",
1481
+ "NegotiableQuote.Manage.rename.errorHeading": "Error",
1482
+ "NegotiableQuote.Manage.rename.quoteNameRequired": "Quote name is required",
1483
+ "NegotiableQuote.Manage.rename.errorDefault": "Failed to rename quote. Please try again.",
1484
+ "NegotiableQuote.Manage.rename.successHeading": "Success",
1485
+ "NegotiableQuote.Manage.rename.successMessage": "Quote renamed successfully!",
1486
+ "NegotiableQuote.Manage.lineItemNote.title": "Leave a note to seller",
1487
+ "NegotiableQuote.Manage.lineItemNote.productLabel": "Name & SKU",
1488
+ "NegotiableQuote.Manage.lineItemNote.skuLabel": "SKU",
1489
+ "NegotiableQuote.Manage.lineItemNote.priceLabel": "Price",
1490
+ "NegotiableQuote.Manage.lineItemNote.stockLabel": "Stock",
1491
+ "NegotiableQuote.Manage.lineItemNote.quantityLabel": "Qty",
1492
+ "NegotiableQuote.Manage.lineItemNote.discountLabel": "Discount",
1493
+ "NegotiableQuote.Manage.lineItemNote.subtotalLabel": "Subtotal",
1494
+ "NegotiableQuote.Manage.lineItemNote.noteLabel": "Note to seller",
1495
+ "NegotiableQuote.Manage.lineItemNote.notePlaceholder": "Can I get a discount on this?",
1496
+ "NegotiableQuote.Manage.lineItemNote.noteHelper": "The seller will see the note when you send the quote back.",
1497
+ "NegotiableQuote.Manage.lineItemNote.confirmButton": "Confirm",
1498
+ "NegotiableQuote.Manage.lineItemNote.cancelButton": "Cancel",
1499
+ "NegotiableQuote.Manage.lineItemNote.noteError": "Please enter a note",
1500
+ "NegotiableQuote.Manage.lineItemNote.quantityError": "Quantity must be greater than 0",
1501
+ "NegotiableQuote.Manage.tabbedContent.itemsQuoted": "Items quoted",
1502
+ "NegotiableQuote.Manage.tabbedContent.comments": "Comments",
1503
+ "NegotiableQuote.Manage.tabbedContent.historyLog": "History log",
1504
+ "NegotiableQuote.Manage.quotePricesSummary.subtotal.excludingTax": "Quote Subtotal (excluding tax)",
1505
+ "NegotiableQuote.Manage.quotePricesSummary.appliedTaxes": "Applied Taxes",
1506
+ "NegotiableQuote.Manage.quotePricesSummary.grandTotal.includingTax": "Quote Grand Total (including tax)",
1507
+ "NegotiableQuote.Manage.updateQuantitiesModal.title": "Change Quote Items",
1508
+ "NegotiableQuote.Manage.updateQuantitiesModal.description": "Making changes to any quote item changes the terms of the quote. After you update the quote, return it to the seller for review and approval.",
1509
+ "NegotiableQuote.Manage.updateQuantitiesModal.cancelButton": "Cancel",
1510
+ "NegotiableQuote.Manage.updateQuantitiesModal.updateButton": "Apply Changes",
1511
+ "NegotiableQuote.Manage.updateQuantitiesModal.successHeading": "Success",
1512
+ "NegotiableQuote.Manage.updateQuantitiesModal.successMessage": "Quote quantities have been successfully updated.",
1513
+ "NegotiableQuote.Manage.updateQuantitiesModal.errorHeading": "Error",
1514
+ "NegotiableQuote.Manage.updateQuantitiesModal.errorMessage": "Failed to update quote quantities. Please try again.",
1515
+ "NegotiableQuote.Manage.removeItemsModal.title": "Change Quote Items",
1516
+ "NegotiableQuote.Manage.removeItemsModal.description": "Making changes to any quote item changes the terms of the quote. After you update the quote, return it to the seller for review and approval.",
1517
+ "NegotiableQuote.Manage.removeItemsModal.cancelButton": "Cancel",
1518
+ "NegotiableQuote.Manage.removeItemsModal.confirmButton": "Remove",
1519
+ "NegotiableQuote.Manage.removeItemsModal.confirmButtonRemoving": "Removing...",
1520
+ "NegotiableQuote.Manage.removeItemsModal.successHeading": "Success",
1521
+ "NegotiableQuote.Manage.removeItemsModal.successMessage": "Quote items have been successfully removed.",
1522
+ "NegotiableQuote.Manage.removeItemsModal.errorHeading": "Error",
1523
+ "NegotiableQuote.Manage.removeItemsModal.errorMessage": "Failed to remove quote items. Please try again.",
1524
+ "NegotiableQuote.PriceSummary.taxToBeDetermined": "TBD",
1525
+ "NegotiableQuote.PriceSummary.orderSummary": "Order Summary",
1526
+ "NegotiableQuote.PriceSummary.giftOptionsTax.printedCard.title": "Printed card",
1527
+ "NegotiableQuote.PriceSummary.giftOptionsTax.printedCard.inclTax": "Including taxes",
1528
+ "NegotiableQuote.PriceSummary.giftOptionsTax.printedCard.exclTax": "excluding taxes",
1529
+ "NegotiableQuote.PriceSummary.giftOptionsTax.itemGiftWrapping.title": "Item gift wrapping",
1530
+ "NegotiableQuote.PriceSummary.giftOptionsTax.itemGiftWrapping.inclTax": "Including taxes",
1531
+ "NegotiableQuote.PriceSummary.giftOptionsTax.itemGiftWrapping.exclTax": "excluding taxes",
1532
+ "NegotiableQuote.PriceSummary.giftOptionsTax.orderGiftWrapping.title": "Order gift wrapping",
1533
+ "NegotiableQuote.PriceSummary.giftOptionsTax.orderGiftWrapping.inclTax": "Including taxes",
1534
+ "NegotiableQuote.PriceSummary.giftOptionsTax.orderGiftWrapping.exclTax": "excluding taxes",
1535
+ "NegotiableQuote.PriceSummary.subTotal.label": "Subtotal",
1536
+ "NegotiableQuote.PriceSummary.subTotal.withTaxes": "Including taxes",
1537
+ "NegotiableQuote.PriceSummary.subTotal.withoutTaxes": "excluding taxes",
1538
+ "NegotiableQuote.PriceSummary.shipping.label": "Shipping",
1539
+ "NegotiableQuote.PriceSummary.shipping.withTaxes": "Including taxes",
1540
+ "NegotiableQuote.PriceSummary.shipping.withoutTaxes": "excluding taxes",
1541
+ "NegotiableQuote.PriceSummary.taxes.total": "Tax Total",
1542
+ "NegotiableQuote.PriceSummary.taxes.totalOnly": "Tax",
1543
+ "NegotiableQuote.PriceSummary.taxes.breakdown": "Taxes",
1544
+ "NegotiableQuote.PriceSummary.taxes.showBreakdown": "Show Tax Breakdown",
1545
+ "NegotiableQuote.PriceSummary.taxes.hideBreakdown": "Hide Tax Breakdown",
1546
+ "NegotiableQuote.PriceSummary.total.free": "Free",
1547
+ "NegotiableQuote.PriceSummary.total.label": "Total",
1548
+ "NegotiableQuote.PriceSummary.total.withoutTax": "Total excluding taxes",
1549
+ "NegotiableQuote.PriceSummary.total.saved": "Total saved",
1550
+ "NegotiableQuote.QuoteSummaryList.discountedPrice": "Discounted Price",
1551
+ "NegotiableQuote.QuoteSummaryList.discountPercentage": "{discount}% off",
1552
+ "NegotiableQuote.QuoteSummaryList.editQuote": "Edit",
1553
+ "NegotiableQuote.QuoteSummaryList.file": "{count} file",
1554
+ "NegotiableQuote.QuoteSummaryList.files": "{count} files",
1555
+ "NegotiableQuote.QuoteSummaryList.heading": "Negotiable Quote ({count})",
1556
+ "NegotiableQuote.QuoteSummaryList.listOfQuoteItems": "List of Quote Items",
1557
+ "NegotiableQuote.QuoteSummaryList.regularPrice": "Regular Price",
1558
+ "NegotiableQuote.QuoteSummaryList.savingsAmount": "Savings",
1559
+ "NegotiableQuote.QuoteSummaryList.viewMore": "View more",
1560
+ "NegotiableQuoteTemplate.Manage.createdLabel": "Created:",
1561
+ "NegotiableQuoteTemplate.Manage.salesRepLabel": "Sales Rep:",
1562
+ "NegotiableQuoteTemplate.Manage.expiresLabel": "Expires:",
1563
+ "NegotiableQuoteTemplate.Manage.templateIdLabel": "Template ID:",
1564
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.title": "Reference Documents",
1565
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.add": "Add",
1566
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.edit": "Edit",
1567
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.remove": "Remove",
1568
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.noReferenceDocuments": "No reference documents",
1569
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.title": "Document Information",
1570
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.documentNameLabel": "Document name",
1571
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.documentIdentifierLabel": "Document identifier",
1572
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.referenceUrlLabel": "Reference URL",
1573
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.addButton": "Add to Quote Template",
1574
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.updateButton": "Update Document",
1575
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.cancelButton": "Cancel",
1576
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.documentNameRequired": "Document name is required",
1577
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.documentIdentifierRequired": "Document identifier is required",
1578
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.referenceUrlRequired": "Reference URL is required",
1579
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.invalidUrl": "Please enter a valid URL",
1580
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.errorHeading": "Error",
1581
+ "NegotiableQuoteTemplate.Manage.referenceDocuments.form.duplicateUidError": "A document with this identifier already exists in the template. Please use a different identifier.",
1582
+ "NegotiableQuoteTemplate.Manage.shippingInformation.title": "Shipping Information",
1583
+ "NegotiableQuoteTemplate.Manage.comments.title": "Comments",
1584
+ "NegotiableQuoteTemplate.Manage.historyLog.title": "History Log",
1585
+ "NegotiableQuoteTemplate.Manage.tabs.itemsQuoted": "Items Quoted",
1586
+ "NegotiableQuoteTemplate.Manage.tabs.comments": "Comments",
1587
+ "NegotiableQuoteTemplate.Manage.tabs.historyLog": "History Log",
1588
+ "NegotiableQuoteTemplate.Manage.templateComments.title": "Template Comments",
1589
+ "NegotiableQuoteTemplate.Manage.templateComments.placeholder": "Add your comment",
1590
+ "NegotiableQuoteTemplate.Manage.actionsLabel": "Actions",
1591
+ "NegotiableQuoteTemplate.Manage.actionButtons.sendForReview": "Send for review",
1592
+ "NegotiableQuoteTemplate.Manage.actionButtons.delete": "Delete template",
1593
+ "NegotiableQuoteTemplate.Manage.actionButtons.cancel": "Cancel template",
1594
+ "NegotiableQuoteTemplate.Manage.actionButtons.accept": "Accept",
1595
+ "NegotiableQuoteTemplate.Manage.actionButtons.generateQuote": "Generate quote",
1596
+ "NegotiableQuoteTemplate.Manage.removeItemsModal.title": "Change Quote Template Items",
1597
+ "NegotiableQuoteTemplate.Manage.removeItemsModal.description": "Making changes to any quote template item changes the terms of the template. After you update the template, return it to the seller for review and approval.",
1598
+ "NegotiableQuoteTemplate.Manage.removeItemsModal.cancelButton": "Cancel",
1599
+ "NegotiableQuoteTemplate.Manage.removeItemsModal.confirmButton": "Remove",
1600
+ "NegotiableQuoteTemplate.Manage.removeItemsModal.confirmButtonRemoving": "Removing...",
1601
+ "NegotiableQuoteTemplate.Manage.removeItemsModal.successHeading": "Success",
1602
+ "NegotiableQuoteTemplate.Manage.removeItemsModal.successMessage": "Quote template items have been successfully removed.",
1603
+ "NegotiableQuoteTemplate.Manage.removeItemsModal.errorHeading": "Error",
1604
+ "NegotiableQuoteTemplate.Manage.removeItemsModal.errorMessage": "Failed to remove quote template items. Please try again.",
1605
+ "NegotiableQuoteTemplate.Manage.updateQuantitiesModal.title": "Change Quote Template Items",
1606
+ "NegotiableQuoteTemplate.Manage.updateQuantitiesModal.description": "Making changes to any quote template item changes the terms of the template. After you update the template, return it to the seller for review and approval.",
1607
+ "NegotiableQuoteTemplate.Manage.updateQuantitiesModal.cancelButton": "Cancel",
1608
+ "NegotiableQuoteTemplate.Manage.updateQuantitiesModal.updateButton": "Apply Changes",
1609
+ "NegotiableQuoteTemplate.Manage.updateQuantitiesModal.successHeading": "Success",
1610
+ "NegotiableQuoteTemplate.Manage.updateQuantitiesModal.successMessage": "Quote template quantities have been successfully updated.",
1611
+ "NegotiableQuoteTemplate.Manage.updateQuantitiesModal.errorHeading": "Error",
1612
+ "NegotiableQuoteTemplate.Manage.updateQuantitiesModal.errorMessage": "Failed to update quote template quantities. Please try again.",
1613
+ "NegotiableQuoteTemplate.Manage.confirmationModal.cancel": "Cancel",
1614
+ "NegotiableQuoteTemplate.Manage.confirmationModal.delete.title": "Delete Quote Template",
1615
+ "NegotiableQuoteTemplate.Manage.confirmationModal.delete.message": "Are you sure you want to delete this quote template?",
1616
+ "NegotiableQuoteTemplate.Manage.confirmationModal.delete.confirm": "Delete",
1617
+ "NegotiableQuoteTemplate.Manage.confirmationModal.delete.errorHeading": "Error",
1618
+ "NegotiableQuoteTemplate.Manage.confirmationModal.delete.errorFallback": "Failed to delete quote template",
1619
+ "NegotiableQuoteTemplate.Manage.confirmationModal.delete.successHeading": "Success",
1620
+ "NegotiableQuoteTemplate.Manage.confirmationModal.delete.successDescription": "Quote template has been successfully deleted",
1621
+ "NegotiableQuoteTemplate.Manage.confirmationModal.cancelTemplate.title": "Cancel Quote Template",
1622
+ "NegotiableQuoteTemplate.Manage.confirmationModal.cancelTemplate.message": "Are you sure you want to cancel this quote template?",
1623
+ "NegotiableQuoteTemplate.Manage.confirmationModal.cancelTemplate.confirm": "Cancel Template",
1624
+ "NegotiableQuoteTemplate.Manage.confirmationModal.cancelTemplate.errorHeading": "Error",
1625
+ "NegotiableQuoteTemplate.Manage.confirmationModal.cancelTemplate.errorFallback": "Failed to cancel quote template",
1626
+ "NegotiableQuoteTemplate.Manage.confirmationModal.cancelTemplate.successHeading": "Success",
1627
+ "NegotiableQuoteTemplate.Manage.confirmationModal.cancelTemplate.successDescription": "Quote template has been successfully cancelled",
1628
+ "NegotiableQuoteTemplate.Manage.confirmationModal.accept.title": "Accept Quote Template",
1629
+ "NegotiableQuoteTemplate.Manage.confirmationModal.accept.message": "Are you sure you want to accept this quote template?",
1630
+ "NegotiableQuoteTemplate.Manage.confirmationModal.accept.confirm": "Accept",
1631
+ "NegotiableQuoteTemplate.Manage.confirmationModal.accept.confirmLoading": "Accepting...",
1632
+ "NegotiableQuoteTemplate.Manage.confirmationModal.accept.successHeading": "Quote Template Accepted",
1633
+ "NegotiableQuoteTemplate.Manage.confirmationModal.accept.successDescription": "Quote template has been successfully accepted.",
1634
+ "NegotiableQuoteTemplate.Manage.confirmationModal.accept.errorHeading": "Error",
1635
+ "NegotiableQuoteTemplate.Manage.confirmationModal.accept.errorFallback": "Failed to accept quote template. Please try again.",
1636
+ "NegotiableQuoteTemplate.Manage.confirmationModal.generateQuote.message": "Are you sure you want to generate a quote from this template?",
1637
+ "NegotiableQuoteTemplate.Manage.confirmationModal.generateQuote.confirm": "Generate Quote",
1638
+ "NegotiableQuoteTemplate.Manage.confirmationModal.generateQuote.confirmLoading": "Generating...",
1639
+ "NegotiableQuoteTemplate.Manage.confirmationModal.generateQuote.successHeading": "Quote Generated",
1640
+ "NegotiableQuoteTemplate.Manage.confirmationModal.generateQuote.successDescription": "Quote has been successfully generated from the template.",
1641
+ "NegotiableQuoteTemplate.Manage.confirmationModal.generateQuote.errorHeading": "Error",
1642
+ "NegotiableQuoteTemplate.Manage.confirmationModal.generateQuote.errorFallback": "Failed to generate quote from template. Please try again.",
1643
+ "NegotiableQuoteTemplate.Manage.quotePricesSummary.subtotal.excludingTax": "Quote Template Subtotal (excluding tax)",
1644
+ "NegotiableQuoteTemplate.Manage.quotePricesSummary.appliedTaxes": "Applied Taxes",
1645
+ "NegotiableQuoteTemplate.Manage.quotePricesSummary.grandTotal.includingTax": "Quote Template Grand Total (including tax)",
1646
+ "NegotiableQuoteTemplate.Manage.lineItemNoteModal.errorHeading": "Error",
1647
+ "NegotiableQuoteTemplate.Manage.rename.title": "Rename Quote Template",
1648
+ "NegotiableQuoteTemplate.Manage.rename.templateNameLabel": "Template name",
1649
+ "NegotiableQuoteTemplate.Manage.rename.reasonLabel": "Reason for change",
1650
+ "NegotiableQuoteTemplate.Manage.rename.renameButton": "Rename",
1651
+ "NegotiableQuoteTemplate.Manage.rename.cancelButton": "Cancel",
1652
+ "NegotiableQuoteTemplate.Manage.rename.errorHeading": "Error",
1653
+ "NegotiableQuoteTemplate.Manage.rename.templateNameRequired": "Template name is required",
1654
+ "NegotiableQuoteTemplate.Manage.rename.errorDefault": "Failed to rename quote template. Please try again.",
1655
+ "NegotiableQuoteTemplate.Manage.rename.successHeading": "Success",
1656
+ "NegotiableQuoteTemplate.Manage.rename.successMessage": "Quote template renamed successfully!",
1657
+ "NegotiableQuoteTemplate.Manage.expirationDate.title": "Set Expiration Date",
1658
+ "NegotiableQuoteTemplate.Manage.expirationDate.expirationDateLabel": "Expiration date",
1659
+ "NegotiableQuoteTemplate.Manage.expirationDate.saveButton": "Save",
1660
+ "NegotiableQuoteTemplate.Manage.expirationDate.cancelButton": "Cancel",
1661
+ "NegotiableQuoteTemplate.Manage.expirationDate.errorHeading": "Error",
1662
+ "NegotiableQuoteTemplate.Manage.expirationDate.expirationDateRequired": "Expiration date is required",
1663
+ "NegotiableQuoteTemplate.Manage.expirationDate.invalidDate": "Please enter a valid date",
1664
+ "NegotiableQuoteTemplate.Manage.expirationDate.pastDateError": "Expiration date must be in the future",
1665
+ "NegotiableQuoteTemplate.Manage.expirationDate.errorDefault": "Failed to set expiration date. Please try again.",
1666
+ "NegotiableQuoteTemplate.Manage.expirationDate.successHeading": "Success",
1667
+ "NegotiableQuoteTemplate.Manage.unsavedChangesWarningHeading": "Unsaved Changes",
1668
+ "NegotiableQuoteTemplate.Manage.unsavedChangesWarningMessage": "The quote template must be submitted for review to save the changes.",
1669
+ "NegotiableQuoteTemplate.Manage.shippingAddressWarningHeading": "No Shipping Address",
1670
+ "NegotiableQuoteTemplate.Manage.shippingAddressWarningMessage": "No shipping address has been set for this quote template.",
1671
+ "historyLog.changeTypes.created": "Quote Created",
1672
+ "historyLog.changeTypes.updated": "Quote Updated",
1673
+ "historyLog.changeTypes.statusChanged": "Status Changed",
1674
+ "historyLog.changeTypes.commentAdded": "Comment Added",
1675
+ "historyLog.changeTypes.expirationChanged": "Expiration Changed",
1676
+ "historyLog.noteTypes.buyerNoteAdded": "Buyer Note Added",
1677
+ "historyLog.noteTypes.sellerNoteAdded": "Seller Note Added",
1678
+ "historyLog.authorLabels.buyer": "(Buyer)",
1679
+ "historyLog.authorLabels.seller": "(Seller)",
1680
+ "historyLog.changeDetails.comment": "Comment: \"{comment}\"",
1681
+ "historyLog.changeDetails.statusChangedFromTo": "Status changed from {oldStatus} to {newStatus}",
1682
+ "historyLog.changeDetails.statusSetTo": "Status set to {newStatus}",
1683
+ "historyLog.changeDetails.expirationChangedFromTo": "Expiration changed from {oldExpiration} to {newExpiration}",
1684
+ "historyLog.changeDetails.expirationSetTo": "Expiration set to {newExpiration}",
1685
+ "historyLog.changeDetails.totalChangedFromTo": "Total changed from {oldTotal} to {newTotal}",
1686
+ "historyLog.changeDetails.customChange": "{title}: changed from \"{oldValue}\" to \"{newValue}\"",
1687
+ "historyLog.changeDetails.productsRemovedFromCatalog": "Products removed from catalog: {products}",
1688
+ "historyLog.changeDetails.productsRemovedFromQuote": "Products removed from quote: {products}",
1689
+ "historyLog.changeDetails.noDetailsAvailable": "No details available",
1690
+ "historyLog.emptyState": "No history available for this quote.",
1691
+ "QuoteManagement.QuotesListTable.quoteName": "Quote Name",
1692
+ "QuoteManagement.QuotesListTable.created": "Created",
1693
+ "QuoteManagement.QuotesListTable.createdBy": "Created By",
1694
+ "QuoteManagement.QuotesListTable.status": "Status",
1695
+ "QuoteManagement.QuotesListTable.lastUpdated": "Last Updated",
1696
+ "QuoteManagement.QuotesListTable.quoteTemplate": "Quote Template",
1697
+ "QuoteManagement.QuotesListTable.quoteTotal": "Quote Total",
1698
+ "QuoteManagement.QuotesListTable.actions": "Action",
1699
+ "QuoteManagement.QuoteTemplatesListTable.name": "Template Name",
1700
+ "QuoteManagement.QuoteTemplatesListTable.state": "State",
1701
+ "QuoteManagement.QuoteTemplatesListTable.status": "Status",
1702
+ "QuoteManagement.QuoteTemplatesListTable.validUntil": "Valid Until",
1703
+ "QuoteManagement.QuoteTemplatesListTable.minQuoteTotal": "Min. Quote Total (Negotiated)",
1704
+ "QuoteManagement.QuoteTemplatesListTable.ordersPlaced": "Orders Placed",
1705
+ "QuoteManagement.QuoteTemplatesListTable.lastOrdered": "Last Ordered",
1706
+ "QuoteManagement.QuoteTemplatesListTable.actions": "Action",
1707
+ "QuoteManagement.QuoteTemplatesListTable.view": "View"
1708
+ }
1709
+ },
1710
+ "storefront-recommendations": {
1711
+ "version": "4.0.0",
1712
+ "keyCount": 3,
1713
+ "keys": {
1714
+ "Recommendations.ProductList.addToCart": "Add To Cart",
1715
+ "Recommendations.ProductList.selectOptions": "Select Options",
1716
+ "Recommendations.ProductList.viewProduct": "View Product"
1717
+ }
1718
+ },
1719
+ "storefront-requisition-list": {
1720
+ "version": "1.3.0",
1721
+ "keyCount": 100,
1722
+ "keys": {
1723
+ "RequisitionList.containerTitle": "Requisition Lists",
1724
+ "RequisitionList.RequisitionListWrapper.name": "Name & Description",
1725
+ "RequisitionList.RequisitionListWrapper.itemsCount": "Items",
1726
+ "RequisitionList.RequisitionListWrapper.lastUpdated": "Latest activity",
1727
+ "RequisitionList.RequisitionListWrapper.actions": "Actions",
1728
+ "RequisitionList.RequisitionListWrapper.loginMsg": "Please login",
1729
+ "RequisitionList.RequisitionListWrapper.deleteRequisitionListTitle": "Are you sure you want to delete this Requisition List?",
1730
+ "RequisitionList.RequisitionListWrapper.deleteRequisitionListMessage": "Requisition List will be permanently deleted. This action can not be undone.",
1731
+ "RequisitionList.RequisitionListWrapper.confirmAction": "Confirm",
1732
+ "RequisitionList.RequisitionListWrapper.cancelAction": "Cancel",
1733
+ "RequisitionList.RequisitionListWrapper.emptyList": "No Requisition Lists found",
1734
+ "RequisitionList.AddNewReqList.addNewReqListBtn": "Add new Requisition List",
1735
+ "RequisitionList.RequisitionListItem.actionUpdate": "Update",
1736
+ "RequisitionList.RequisitionListItem.actionDelete": "Delete",
1737
+ "RequisitionList.RequisitionListForm.actionCancel": "Cancel",
1738
+ "RequisitionList.RequisitionListForm.actionSave": "Save",
1739
+ "RequisitionList.RequisitionListForm.requiredField": "This is a required field.",
1740
+ "RequisitionList.RequisitionListForm.nameMinLength": "Name must be at least {min} characters long.",
1741
+ "RequisitionList.RequisitionListForm.nameInvalidCharacters": "Name contains invalid characters. Only letters, numbers, spaces, and basic punctuation are allowed.",
1742
+ "RequisitionList.RequisitionListForm.floatingLabel": "Requisition List Name *",
1743
+ "RequisitionList.RequisitionListForm.placeholder": "Requisition List Name",
1744
+ "RequisitionList.RequisitionListForm.label": "Description",
1745
+ "RequisitionList.RequisitionListForm.updateTitle": "Update Requisition List",
1746
+ "RequisitionList.RequisitionListForm.createTitle": "Create Requisition List",
1747
+ "RequisitionList.RequisitionListForm.addToRequisitionList": "Add to Requisition List",
1748
+ "RequisitionList.RequisitionListSelector.addToNewRequisitionList": "Add to New Requisition List",
1749
+ "RequisitionList.RequisitionListSelector.addToSelected": "Add to Selected List",
1750
+ "RequisitionList.RequisitionListAlert.errorCreate": "Error creating requisition list.",
1751
+ "RequisitionList.RequisitionListAlert.successCreate": "Requisition list created successfully.",
1752
+ "RequisitionList.RequisitionListAlert.errorAddToCart": "Error adding item to cart.",
1753
+ "RequisitionList.RequisitionListAlert.successAddToCart": "Item(s) added to cart successfully.",
1754
+ "RequisitionList.RequisitionListAlert.errorUpdateQuantity": "Error updating quantity.",
1755
+ "RequisitionList.RequisitionListAlert.successUpdateQuantity": "Item quantity updated successfully.",
1756
+ "RequisitionList.RequisitionListAlert.errorUpdate": "Error updating requisition list.",
1757
+ "RequisitionList.RequisitionListAlert.successUpdate": "Requisition list updated successfully.",
1758
+ "RequisitionList.RequisitionListAlert.errorDeleteItem": "Error deleting item.",
1759
+ "RequisitionList.RequisitionListAlert.successDeleteItem": "Item(s) deleted successfully.",
1760
+ "RequisitionList.RequisitionListAlert.errorDeleteReqList": "Error deleting requisition list.",
1761
+ "RequisitionList.RequisitionListAlert.successDeleteReqList": "Requisition list deleted successfully.",
1762
+ "RequisitionList.RequisitionListAlert.errorMove": "Error moving item(s) to cart.",
1763
+ "RequisitionList.RequisitionListAlert.successMove": "Item(s) successfully moved to cart.",
1764
+ "RequisitionList.RequisitionListAlert.partialMoveSuccess": "{successCount} product(s) successfully added and {failedCount} product(s) couldn't be added to your shopping cart.",
1765
+ "RequisitionList.RequisitionListAlert.errorAddToRequisitionList": "Error adding item(s) to requisition list.",
1766
+ "RequisitionList.RequisitionListAlert.successAddToRequisitionList": "Item(s) successfully added to requisition list.",
1767
+ "RequisitionList.RequisitionListAlert.errorMoveToList": "Error moving item(s) to requisition list.",
1768
+ "RequisitionList.RequisitionListAlert.successMoveToList": "Item(s) successfully moved to {listName}.",
1769
+ "RequisitionList.RequisitionListAlert.errorCopyToList": "Error copying item(s) to requisition list.",
1770
+ "RequisitionList.RequisitionListAlert.successCopyToList": "Item(s) successfully copied to {listName}.",
1771
+ "RequisitionList.RequisitionListView.actionDelete": "Delete",
1772
+ "RequisitionList.RequisitionListView.statusDeleting": "Deleting...",
1773
+ "RequisitionList.RequisitionListView.actionDeleteSelected": "Delete Selected",
1774
+ "RequisitionList.RequisitionListView.actionDeleteSelectedItems": "Delete selected items",
1775
+ "RequisitionList.RequisitionListView.actionSelect": "Select",
1776
+ "RequisitionList.RequisitionListView.actionSelectAll": "Select All",
1777
+ "RequisitionList.RequisitionListView.actionSelectNone": "Select None",
1778
+ "RequisitionList.RequisitionListView.actionAddToCart": "Add to Cart",
1779
+ "RequisitionList.RequisitionListView.statusAddingToCart": "Adding...",
1780
+ "RequisitionList.RequisitionListView.actionAddSelectedToCart": "Add Selected to Cart",
1781
+ "RequisitionList.RequisitionListView.statusBulkAddingToCart": "Adding to Cart...",
1782
+ "RequisitionList.RequisitionListView.actionUpdateQuantity": "Update",
1783
+ "RequisitionList.RequisitionListView.statusUpdatingQuantity": "Updating...",
1784
+ "RequisitionList.RequisitionListView.errorUpdateQuantity": "Error updating quantity",
1785
+ "RequisitionList.RequisitionListView.successUpdateQuantity": "Item quantity updated successfully.",
1786
+ "RequisitionList.RequisitionListView.actionBackToRequisitionListsOverview": "Back to requisition lists overview",
1787
+ "RequisitionList.RequisitionListView.actionBackToRequisitionLists": "Back to Requisition Lists",
1788
+ "RequisitionList.RequisitionListView.actionRename": "Rename",
1789
+ "RequisitionList.RequisitionListView.actionDeleteList": "Delete List",
1790
+ "RequisitionList.RequisitionListView.deleteListTitle": "Delete Requisition List?",
1791
+ "RequisitionList.RequisitionListView.deleteListMessage": "Are you sure you want to delete this requisition list? This action cannot be undone.",
1792
+ "RequisitionList.RequisitionListView.deleteItemsTitle": "Delete Item(s)?",
1793
+ "RequisitionList.RequisitionListView.deleteItemsMessage": "Are you sure you want to delete the selected item(s) from this requisition list? This action cannot be undone.",
1794
+ "RequisitionList.RequisitionListView.confirmAction": "Delete",
1795
+ "RequisitionList.RequisitionListView.cancelAction": "Cancel",
1796
+ "RequisitionList.RequisitionListView.actionMoveToList": "Move to List",
1797
+ "RequisitionList.RequisitionListView.moveToListTitle": "Move to Requisition List",
1798
+ "RequisitionList.RequisitionListView.moveToListConfirm": "Move to requisition list",
1799
+ "RequisitionList.RequisitionListView.actionCopyToList": "Copy to List",
1800
+ "RequisitionList.RequisitionListView.copyToListTitle": "Copy to Requisition List",
1801
+ "RequisitionList.RequisitionListView.copyToListConfirm": "Copy to requisition list",
1802
+ "RequisitionList.RequisitionListView.emptyRequisitionList": " Requisition List is empty",
1803
+ "RequisitionList.RequisitionListView.productListTable.headers.productName": "Product name",
1804
+ "RequisitionList.RequisitionListView.productListTable.headers.sku": "SKU",
1805
+ "RequisitionList.RequisitionListView.productListTable.headers.price": "Price",
1806
+ "RequisitionList.RequisitionListView.productListTable.headers.quantity": "Quantity",
1807
+ "RequisitionList.RequisitionListView.productListTable.headers.subtotal": "Subtotal",
1808
+ "RequisitionList.RequisitionListView.productListTable.headers.actions": "Actions",
1809
+ "RequisitionList.RequisitionListView.productListTable.itemQuantity": "Item quantity",
1810
+ "RequisitionList.RequisitionListView.productListTable.outOfStock": "Out of stock",
1811
+ "RequisitionList.RequisitionListView.productListTable.onlyXLeftInStock": "Only {count} left in stock",
1812
+ "RequisitionList.RequisitionListView.errorLoadPage": "Failed to load page",
1813
+ "RequisitionList.RequisitionListView.errorLoadingProducts": "Failed to load product data",
1814
+ "RequisitionList.RequisitionListView.notFoundTitle": "Requisition List Not Found",
1815
+ "RequisitionList.RequisitionListView.notFoundMessage": "The requisition list you are looking for does not exist or you do not have access to it.",
1816
+ "RequisitionList.RequisitionListView.notFoundActionLabel": "Back to Requisition Lists",
1817
+ "RequisitionList.RequisitionListsNotEnabled.title": "Requisition Lists Not Available",
1818
+ "RequisitionList.RequisitionListsNotEnabled.message": "Requisition Lists are not available. Please contact your administrator for more information.",
1819
+ "RequisitionList.RequisitionListsNotEnabled.actionLabel": "Go to My Account",
1820
+ "RequisitionList.PageSizePicker.show": "Show",
1821
+ "RequisitionList.PageSizePicker.itemsPerPage": "Items per page",
1822
+ "RequisitionList.PaginationItemsCounter.itemsCounter": "Items {from}-{to} of {total}"
1823
+ }
1824
+ },
1825
+ "storefront-product-discovery": {
1826
+ "version": "3.1.0",
1827
+ "keyCount": 12,
1828
+ "keys": {
1829
+ "Search.PLP.noResults": "Your search returned no results.",
1830
+ "Search.PLP.searchError": "An error occurred while searching.",
1831
+ "Search.Facet.showMore": "Show more",
1832
+ "Search.Facet.showLess": "Show less",
1833
+ "Search.Facet.clearAll": "Clear all",
1834
+ "Search.SortBy.title": "Sort by",
1835
+ "Search.SortBy.lowToHigh": "Low to High",
1836
+ "Search.SortBy.highToLow": "High to Low",
1837
+ "Search.SortBy.relevance": "Relevance",
1838
+ "Search.SortBy.position": "Position",
1839
+ "Search.SortBy.name": "Product Name",
1840
+ "Search.SortBy.price": "Price"
1841
+ }
1842
+ },
1843
+ "storefront-wishlist": {
1844
+ "version": "3.2.0",
1845
+ "keyCount": 23,
1846
+ "keys": {
1847
+ "Wishlist.EmptyWishlist.heading": "Your wishlist is empty",
1848
+ "Wishlist.EmptyWishlist.message": "Add items by clicking on the heart icon.",
1849
+ "Wishlist.EmptyWishlist.cta": "Start shopping",
1850
+ "Wishlist.Wishlist.heading": "Wishlist {count}",
1851
+ "Wishlist.Wishlist.loading": "Loading...",
1852
+ "Wishlist.Wishlist.ariaLabelAddToWishlist": "add {PRODUCT_NAME} to wishlist",
1853
+ "Wishlist.Wishlist.ariaLabelRemoveFromWishlist": "remove {PRODUCT_NAME} from wishlist",
1854
+ "Wishlist.Alert.addProduct.heading": "Added to wishlist",
1855
+ "Wishlist.Alert.addProduct.message": "{product} has been added to your wishlist",
1856
+ "Wishlist.Alert.removeProduct.heading": "Removed from wishlist",
1857
+ "Wishlist.Alert.removeProduct.message": "{product} has been removed from your wishlist",
1858
+ "Wishlist.Alert.moveToCart.heading": "Moved to cart",
1859
+ "Wishlist.Alert.moveToCart.message": "{product} has been moved to your cart",
1860
+ "Wishlist.Alert.addError.heading": "Error",
1861
+ "Wishlist.Alert.addError.message": "Failed to add product to wishlist",
1862
+ "Wishlist.Alert.removeError.heading": "Error",
1863
+ "Wishlist.Alert.removeError.message": "Failed to remove {product} from wishlist",
1864
+ "Wishlist.Alert.viewWishlist": "View wishlist",
1865
+ "Wishlist.Login.sync": " to sync your saved items across all your devices.",
1866
+ "Wishlist.Login.logIn": "Log in",
1867
+ "ProductItem.CartActionButton": "Move To Cart",
1868
+ "ProductItem.TrashActionButton": "Remove this product from wishlist",
1869
+ "ProductItem.CustomizeActionButton": "Customize"
1870
+ }
1871
+ }
1872
+ }
1873
+ }