@vtex/faststore-plugin-buyer-portal 2.0.13 → 2.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -1
- package/cms/b2b/components/.gitkeep +0 -0
- package/cms/b2b/pages/cms_content_type__i18n.jsonc +36 -0
- package/cypress/integration/localization.test.ts +482 -0
- package/cypress/support/commands.ts +8 -0
- package/docs/i18n/i18n-messages-format.md +391 -0
- package/docs/i18n/locales.json +701 -0
- package/docs/i18n/migration-inventory.md +959 -0
- package/package.json +3 -3
- package/specs/custom-localization-system.md +711 -0
- package/specs/multi-locale-e2e-validation.md +277 -0
- package/src/__mocks__/discovery.config.ts +12 -0
- package/src/features/accounting-fields/components/AccountingConfirmDelete/AccountingConfirmDelete.tsx +14 -4
- package/src/features/accounting-fields/components/AccountingFieldConfirmEdit/AccountingFieldConfirmEdit.tsx +11 -6
- package/src/features/accounting-fields/components/AccountingFieldDropdown/AccountingFieldDropdown.tsx +5 -3
- package/src/features/accounting-fields/components/AccountingFieldForm/AccountingFieldForm.tsx +33 -23
- package/src/features/accounting-fields/components/AccountingValueConfirmEdit/AccountingValueConfirmEdit.tsx +10 -6
- package/src/features/accounting-fields/components/AccountingValueDropdown/AccountingValueDropdown.tsx +19 -9
- package/src/features/accounting-fields/components/AccountingValueForm/AccountingValueForm.tsx +21 -10
- package/src/features/accounting-fields/components/CreateAccountingFieldDrawer/CreateAccountingFieldDrawer.tsx +11 -8
- package/src/features/accounting-fields/components/CreateAccountingValueDrawer/CreateAccountingValueDrawer.tsx +18 -7
- package/src/features/accounting-fields/components/DeleteAccountingFieldDrawer/DeleteAccountingFieldDrawer.tsx +14 -12
- package/src/features/accounting-fields/components/DeleteAccountingValueDrawer/DeleteAccountingValueDrawer.tsx +20 -10
- package/src/features/accounting-fields/components/EditAccountingFieldDrawer/EditAccountingFieldDrawer.tsx +5 -3
- package/src/features/accounting-fields/components/EditAccountingValueDrawer/EditAccountingValueDrawer.tsx +13 -6
- package/src/features/accounting-fields/components/RemoveValueFromUnitDrawer/RemoveValueFromUnitDrawer.tsx +19 -8
- package/src/features/accounting-fields/layouts/AccountingFieldLayout/AccountingFieldLayout.tsx +11 -9
- package/src/features/addresses/components/AddRecipientsDrawer/AddRecipientsDrawer.tsx +13 -7
- package/src/features/addresses/components/AddressDropdownMenu/AddressDropdownMenu.tsx +22 -20
- package/src/features/addresses/components/AddressForm/AddressForm.tsx +33 -22
- package/src/features/addresses/components/AddressLine/AddressLine.tsx +29 -25
- package/src/features/addresses/components/AddressLocationsList/AddressLocationsList.tsx +15 -6
- package/src/features/addresses/components/AddressRecipientsList/AddressRecipientsList.tsx +9 -4
- package/src/features/addresses/components/AddressesCard/AddressesCard.tsx +8 -5
- package/src/features/addresses/components/CreateAddressDrawer/CreateAddressDrawer.tsx +27 -14
- package/src/features/addresses/components/CreateAddressSettingsDrawer/CreateAddressSettingsDrawer.tsx +26 -21
- package/src/features/addresses/components/DeleteAddressDrawer/DeleteAddressDrawer.tsx +20 -16
- package/src/features/addresses/components/DeleteAddressLocationDrawer/DeleteAddressLocationDrawer.tsx +26 -14
- package/src/features/addresses/components/DeleteRecipientAddressDrawer/DeleteRecipientAddressDrawer.tsx +20 -17
- package/src/features/addresses/components/EditAddressDrawer/EditAddressDrawer.tsx +12 -6
- package/src/features/addresses/components/EditAddressLocationDrawer/EditAddressLocationDrawer.tsx +24 -17
- package/src/features/addresses/components/EditRecipientAddressDrawer/EditRecipientAddressDrawer.tsx +17 -15
- package/src/features/addresses/components/LocationForm/LocationField/LocationField.tsx +8 -5
- package/src/features/addresses/components/LocationForm/LocationForm.tsx +9 -3
- package/src/features/addresses/components/LocationsDrawer/LocationsDrawer.tsx +15 -9
- package/src/features/addresses/components/RecipientsForm/RecipientItem/RecipientItem.tsx +55 -46
- package/src/features/addresses/components/RecipientsForm/RecipientsForm.tsx +4 -1
- package/src/features/addresses/components/RemoveAddressDrawer/RemoveAddressDrawer.tsx +21 -14
- package/src/features/addresses/layouts/AddressDetailsLayout/AddressDetailsLayout.tsx +16 -9
- package/src/features/addresses/layouts/AddressesLayout/AddressesLayout.tsx +11 -8
- package/src/features/b2b-agent/layouts/B2BAgentLayout/B2BAgentLayout.tsx +3 -1
- package/src/features/budgets/components/BudgetAddForm/BudgetAddForm.tsx +14 -12
- package/src/features/budgets/components/BudgetAddSuccess/BudgetAddSuccess.tsx +16 -14
- package/src/features/budgets/components/BudgetAllocationsSelection/BudgetAllocationsSelection.tsx +8 -5
- package/src/features/budgets/components/BudgetAllocationsTable/BudgetAllocationsTable.tsx +9 -6
- package/src/features/budgets/components/BudgetDeleteDrawer/BudgetDeleteDrawer.tsx +23 -17
- package/src/features/budgets/components/BudgetEditNotificationDrawer/BudgetEditNotificationDrawer.tsx +13 -6
- package/src/features/budgets/components/BudgetNotificationForm/BudgetNotificationForm.tsx +31 -24
- package/src/features/budgets/components/BudgetNotificationsInfo/BudgetNotificationsInfo.tsx +15 -9
- package/src/features/budgets/components/BudgetRemainingBalance/BudgetRemainingBalance.tsx +6 -2
- package/src/features/budgets/components/BudgetSettingsInfo/BudgetSettingsInfo.tsx +27 -10
- package/src/features/budgets/components/BudgetUsersTable/BudgetUsersTable.tsx +14 -7
- package/src/features/budgets/components/BudgetsTable/BudgetsTable.tsx +11 -8
- package/src/features/budgets/components/CreateBudgetAllocationDrawer/CreateBudgetAllocationDrawer.tsx +8 -5
- package/src/features/budgets/components/CreateBudgetDrawer/CreateBudgetDrawer.tsx +31 -18
- package/src/features/budgets/components/DeleteBudgetAllocationDrawer/DeleteBudgetAllocationDrawer.tsx +17 -12
- package/src/features/budgets/components/EditBudgetDrawer/EditBudgetDrawer.tsx +14 -8
- package/src/features/budgets/components/EmptyState.tsx/EmptyState.tsx +4 -1
- package/src/features/budgets/layouts/BudgetsDetailsLayout/BudgetsDetailsLayout.tsx +7 -5
- package/src/features/budgets/layouts/BudgetsLayout/BudgetsLayout.tsx +5 -3
- package/src/features/budgets/messages/budgetNotifications.ts +5 -5
- package/src/features/budgets/utils/handleBudgetError.tsx +5 -8
- package/src/features/budgets/utils/handleBudgetError.types.ts +3 -0
- package/src/features/buying-policies/components/AccountingFieldCriteriaSelector/AccountingFieldCriteriaSelector.tsx +5 -3
- package/src/features/buying-policies/components/AccountingFieldCriteriaSelector/AccountingValueCriteriaSelector.tsx +20 -9
- package/src/features/buying-policies/components/AddBuyingPolicyDrawer/AddBuyingPolicyDrawer.tsx +8 -5
- package/src/features/buying-policies/components/BasicBuyingPolicyDrawer/BasicBuyingPolicyDrawer.tsx +49 -33
- package/src/features/buying-policies/components/BudgetCriteriaSelector/BudgetCriteriaSelector.tsx +8 -2
- package/src/features/buying-policies/components/BuyingPolicyDropdownMenu/BuyingPolicyDropdownMenu.tsx +5 -3
- package/src/features/buying-policies/components/DeleteBuyingPolicyDrawer/DeleteBuyingPolicyDrawer.tsx +28 -24
- package/src/features/buying-policies/components/UpdateBuyingPolicyDrawer/UpdateBuyingPolicyDrawer.tsx +10 -7
- package/src/features/buying-policies/layouts/BuyingPoliciesLayout/BuyingPoliciesLayout.tsx +11 -4
- package/src/features/buying-policies/layouts/BuyingPolicyDetailsLayout/BuyingPolicyDetailsLayout.tsx +26 -9
- package/src/features/buying-policies/utils/accountingFieldCriteriaHelpers.ts +2 -2
- package/src/features/buying-policies/utils/buyingPoliciesWorkflowTypes.ts +3 -3
- package/src/features/buying-policies/utils/orderFieldsCriteriaOptions.ts +8 -8
- package/src/features/buying-policies/utils/spendingLimitsCriteriaOptions.ts +6 -6
- package/src/features/contracts/components/ContractsCard/ContractsCard.tsx +7 -5
- package/src/features/contracts/layouts/ContractsLayout/ContractsLayout.tsx +9 -4
- package/src/features/credit-cards/components/CreateCreditCardDrawer/CreateCreditCardDrawer.tsx +17 -11
- package/src/features/credit-cards/components/CreditCardDropdownMenu/CreditCardDropdownMenu.tsx +17 -11
- package/src/features/credit-cards/components/CreditCardForm/CreditCardForm.tsx +8 -5
- package/src/features/credit-cards/components/CreditCardSettingsDrawer/CreditCardSettingsDrawer.tsx +10 -8
- package/src/features/credit-cards/components/DeleteCreditCardDrawer/DeleteCreditCardDrawer.tsx +19 -14
- package/src/features/credit-cards/components/EditCreditCardDrawer/EditCreditCardDrawer.tsx +14 -13
- package/src/features/credit-cards/components/RemoveCreditCardDrawer/RemoveCreditCardDrawer.tsx +18 -15
- package/src/features/credit-cards/layouts/CreditCardsLayout/CreditCardLayout.tsx +10 -4
- package/src/features/order-entry/layouts/OrderEntryLayout.tsx +3 -1
- package/src/features/org-units/components/AddAllToOrgUnitDropdown/AddAllToOrgUnitDropdown.tsx +11 -9
- package/src/features/org-units/components/AuthSetupDrawer/AuthSetupDrawer.tsx +28 -16
- package/src/features/org-units/components/CreateOrgUnitDrawer/CreateOrgUnitDrawer.tsx +18 -12
- package/src/features/org-units/components/DeleteOrgUnitDrawer/DeleteOrgUnitDrawer.tsx +28 -29
- package/src/features/org-units/components/OrgUnitBreadcrumb/OrgUnitBreadcrumbLink.tsx +4 -4
- package/src/features/org-units/components/OrgUnitDetailsDropdownMenu/OrgUnitDetailsDropdownMenu.tsx +4 -2
- package/src/features/org-units/components/OrgUnitDetailsNavbar/OrgUnitDetailsNavbar.tsx +23 -5
- package/src/features/org-units/components/OrgUnitDetailsNavbar/org-unit-details-navbar.scss +18 -2
- package/src/features/org-units/components/OrgUnitsDropdownMenu/OrgUnitsDropdownMenu.tsx +6 -4
- package/src/features/org-units/components/OrgUnitsHierarchyTree/OrgUnitsHierarchyTree.tsx +9 -6
- package/src/features/org-units/components/OrganizationalUnitsCard/OrganizationalUnitsCard.tsx +15 -7
- package/src/features/org-units/components/UpdateOrgUnitDrawer/UpdateOrgUnitDrawer.tsx +15 -9
- package/src/features/org-units/layouts/OrgUnitDetailsLayout/OrgUnitDetailsLayout.tsx +27 -26
- package/src/features/org-units/layouts/OrgUnitsLayout/OrgUnitsLayout.tsx +8 -3
- package/src/features/payment-methods/components/AddPaymentMethodsDrawer/AddPaymentMethodsDrawer.tsx +29 -18
- package/src/features/payment-methods/components/PaymentMethodSettingsDrawer/PaymentMethodSettingsDrawer.tsx +13 -9
- package/src/features/payment-methods/components/RemoveMethodButton/RemoveMethodButton.tsx +5 -2
- package/src/features/payment-methods/components/RemovePaymentMethodsDrawer/RemovePaymentMethodsDrawer.tsx +10 -7
- package/src/features/payment-methods/hooks/useRemovePaymentMethodSubmit.ts +6 -4
- package/src/features/payment-methods/layouts/PaymentMethodsLayout/PaymentMethodsLayout.tsx +21 -15
- package/src/features/product-assortment/components/ProductAssortmentTable/ProductAssortmentTable.tsx +11 -7
- package/src/features/product-assortment/layouts/ProductAssortmentLayout/ProductAssortmentLayout.tsx +9 -6
- package/src/features/profile/components/ProfileCard/ProfileCard.tsx +8 -5
- package/src/features/profile/components/ProfileSummary/ProfileSummary.tsx +13 -6
- package/src/features/profile/layouts/ProfileLayout/ProfileLayout.tsx +16 -6
- package/src/features/roles/layout/RoleDetailsLayout/RoleDetailsLayout.tsx +4 -2
- package/src/features/roles/layout/RolesLayout/RolesLayout.tsx +5 -3
- package/src/features/shared/components/BasicCard/BasicCard.tsx +6 -4
- package/src/features/shared/components/BasicCard/BasicCardLine.tsx +5 -4
- package/src/features/shared/components/CustomerSwitch/CustomerSwitchDrawer.tsx +10 -2
- package/src/features/shared/components/CustomerSwitch/CustomerSwitchSearch.tsx +4 -1
- package/src/features/shared/components/DropdownFilter/DropdownFilter.tsx +11 -7
- package/src/features/shared/components/Error/Error.tsx +13 -6
- package/src/features/shared/components/HeaderInside/HeaderInside.tsx +5 -2
- package/src/features/shared/components/InternalSearch/InternalSearch.tsx +4 -1
- package/src/features/shared/components/InternalTopbar/InternalTopbar.tsx +7 -5
- package/src/features/shared/components/MainLinksDropdownMenu/MainLinksDropdownMenu.tsx +23 -8
- package/src/features/shared/components/OrgUnitInputSearch/OrgUnitInputSearch.tsx +7 -2
- package/src/features/shared/components/Pagination/Pagination.tsx +6 -2
- package/src/features/shared/components/Paginator/Counter.tsx +11 -5
- package/src/features/shared/components/Paginator/Interval.tsx +4 -3
- package/src/features/shared/components/Paginator/NextPageButton.tsx +6 -2
- package/src/features/shared/components/SettingsDrawer/SettingsDrawer.tsx +6 -4
- package/src/features/shared/components/SettingsDrawer/SettingsDrawerListType.tsx +11 -10
- package/src/features/shared/components/SettingsDrawer/listTypeOptions.ts +10 -7
- package/src/features/shared/components/SortFilter/SortFilter.tsx +15 -8
- package/src/features/shared/components/Table/TableRow/TableRow.tsx +5 -1
- package/src/features/shared/components/VerticalNav/VerticalNavLink.tsx +7 -3
- package/src/features/shared/layouts/BaseTabsLayout/Navbar.tsx +28 -4
- package/src/features/shared/layouts/BaseTabsLayout/about-drawer/AboutDrawer.tsx +15 -5
- package/src/features/shared/layouts/BaseTabsLayout/base-tabs-layout.scss +24 -9
- package/src/features/shared/layouts/BaseTabsLayout/sidebar-drawer/SidebarDrawer.tsx +5 -2
- package/src/features/shared/layouts/ContractTabsLayout/ContractTabsLayout.tsx +10 -5
- package/src/features/shared/layouts/ErrorTabsLayout/ErrorTabsLayout.tsx +7 -4
- package/src/features/shared/layouts/FinanceTabsLayout/FinanceTabsLayout.tsx +9 -4
- package/src/features/shared/layouts/LoadingTabsLayout/LoadingTabsLayout.tsx +7 -4
- package/src/features/shared/layouts/OrgUnitTabsLayout/OrgUnitTabLayout.tsx +3 -0
- package/src/features/shared/layouts/SumaPageLayout/FullSidebarNav.tsx +13 -7
- package/src/features/shared/layouts/SumaPageLayout/SumaSidebar.tsx +9 -5
- package/src/features/shared/localization/LocalizationContext.tsx +35 -0
- package/src/features/shared/localization/__tests__/createLocalize.test.ts +166 -0
- package/src/features/shared/localization/__tests__/get-localization-labels.service.test.ts +202 -0
- package/src/features/shared/localization/clients/LocalizationClient.ts +19 -0
- package/src/features/shared/localization/constants.ts +31 -0
- package/src/features/shared/localization/createLocalize.ts +78 -0
- package/src/features/shared/localization/services/get-localization-labels.service.ts +76 -0
- package/src/features/shared/localization/types.ts +66 -0
- package/src/features/shared/localization/withLocalization.tsx +22 -0
- package/src/features/shared/types/AuthRouteProps.ts +5 -0
- package/src/features/shared/types/LoaderData.ts +1 -0
- package/src/features/shared/utils/addresLabelToPropMapping.ts +10 -10
- package/src/features/shared/utils/constants.ts +1 -4
- package/src/features/shared/utils/getContractSettingsLinks.ts +17 -12
- package/src/features/shared/utils/getFinanceSettingsLinks.ts +14 -9
- package/src/features/shared/utils/getKeyByValue.ts +2 -2
- package/src/features/shared/utils/getOrganizationSettingsLinks.ts +13 -3
- package/src/features/shared/utils/getSumaListingSidebarLinks.ts +15 -10
- package/src/features/shared/utils/index.ts +2 -0
- package/src/features/shared/utils/routeLayoutMapping.ts +30 -30
- package/src/features/shared/utils/search.tsx +10 -0
- package/src/features/shared/utils/withAuth.tsx +6 -0
- package/src/features/shared/utils/withAuthLoader.ts +11 -0
- package/src/features/shared/utils/withLoaderErrorBoundary.ts +9 -0
- package/src/features/shared/utils/withProviders.tsx +13 -2
- package/src/features/users/components/CreateUserDrawer/CreateUserDrawer.tsx +39 -27
- package/src/features/users/components/CreateUserDrawerWithUsername/CreateUserDrawerWithUsername.tsx +41 -39
- package/src/features/users/components/DeleteUserDrawer/DeleteUserDrawer.tsx +27 -23
- package/src/features/users/components/EmailTransactionalSection/EmailTransactionalSection.tsx +6 -8
- package/src/features/users/components/LoginField/LoginField.tsx +4 -4
- package/src/features/users/components/ReassignOrgUnitDrawer/ReassignOrgUnitDrawer.tsx +22 -19
- package/src/features/users/components/ResetPasswordDrawer/ResetPasswordDrawer.tsx +16 -21
- package/src/features/users/components/UpdateUserDrawer/UpdateUserDrawer.tsx +26 -15
- package/src/features/users/components/UpdateUserDrawerWithUsername/UpdateUserDrawerWithUsername.tsx +22 -8
- package/src/features/users/components/UserDropdownMenu/UserDropdownMenu.tsx +7 -5
- package/src/features/users/components/UserFormFields/UserFormFields.tsx +9 -8
- package/src/features/users/components/UsersCard/UsersCard.tsx +4 -2
- package/src/features/users/layouts/UserDetailsLayout/UserDetailsLayout.tsx +26 -10
- package/src/features/users/layouts/UsersLayout/UsersLayout.tsx +12 -8
- package/src/pages/accounting-field.tsx +28 -15
- package/src/pages/address-details.tsx +37 -26
- package/src/pages/addresses.tsx +27 -12
- package/src/pages/budgets-details.tsx +25 -15
- package/src/pages/budgets.tsx +31 -17
- package/src/pages/buyer-organization-manager.tsx +23 -12
- package/src/pages/buying-policies.tsx +38 -20
- package/src/pages/buying-policy-details.tsx +20 -19
- package/src/pages/contracts.tsx +15 -1
- package/src/pages/credit-cards.tsx +30 -17
- package/src/pages/order-entry.tsx +26 -15
- package/src/pages/org-unit-details.tsx +20 -6
- package/src/pages/org-units.tsx +20 -6
- package/src/pages/payment-groups.tsx +15 -12
- package/src/pages/productAssortment.tsx +10 -1
- package/src/pages/profile.tsx +14 -1
- package/src/pages/role-details.tsx +19 -6
- package/src/pages/roles.tsx +27 -14
- package/src/pages/user-details.tsx +29 -17
- package/src/pages/users.tsx +11 -0
- package/vitest.config.ts +13 -0
- package/src/features/addresses/constants/messages.ts +0 -8
- package/src/features/credit-cards/constants/messages.ts +0 -6
|
@@ -0,0 +1,701 @@
|
|
|
1
|
+
{
|
|
2
|
+
"shared.buttons.save": "Save",
|
|
3
|
+
"shared.buttons.cancel": "Cancel",
|
|
4
|
+
"shared.buttons.confirm": "Confirm",
|
|
5
|
+
"shared.buttons.delete": "Delete",
|
|
6
|
+
"shared.buttons.edit": "Edit",
|
|
7
|
+
"shared.buttons.add": "Add",
|
|
8
|
+
"shared.buttons.remove": "Remove",
|
|
9
|
+
"shared.buttons.view": "View",
|
|
10
|
+
"shared.buttons.ok": "Ok",
|
|
11
|
+
"shared.buttons.done": "Done",
|
|
12
|
+
"shared.buttons.continue": "Continue",
|
|
13
|
+
"shared.buttons.skip": "Skip",
|
|
14
|
+
"shared.buttons.create": "Create",
|
|
15
|
+
"shared.buttons.tryAgain": "Try again",
|
|
16
|
+
"shared.buttons.loadMore": "Load More",
|
|
17
|
+
"shared.labels.loading": "Loading...",
|
|
18
|
+
"shared.labels.name": "Name",
|
|
19
|
+
"shared.labels.email": "Email",
|
|
20
|
+
"shared.labels.id": "ID",
|
|
21
|
+
"shared.labels.active": "Active",
|
|
22
|
+
"shared.labels.inactive": "Inactive",
|
|
23
|
+
"shared.labels.buyerPortal": "Buyer Portal",
|
|
24
|
+
"shared.labels.contract": "Contract",
|
|
25
|
+
"shared.labels.organization": "Organization",
|
|
26
|
+
"shared.labels.sortBy": "Sort by:",
|
|
27
|
+
"shared.labels.customList": "Custom list",
|
|
28
|
+
"shared.labels.sharedList": "Shared list",
|
|
29
|
+
"shared.labels.searchOrganizationalUnits": "Search organizational units",
|
|
30
|
+
"shared.labels.manager": "Manager",
|
|
31
|
+
"shared.labels.buyer": "Buyer",
|
|
32
|
+
"shared.labels.admin": "Admin",
|
|
33
|
+
"shared.labels.users": "Users",
|
|
34
|
+
"shared.labels.shippingAddresses": "Shipping Addresses",
|
|
35
|
+
"shared.labels.addressName": "Address Name",
|
|
36
|
+
"shared.labels.streetAddress": "Street Address",
|
|
37
|
+
"shared.labels.number": "Number",
|
|
38
|
+
"shared.labels.aptSuiteBuilding": "Apt, Suite, Building",
|
|
39
|
+
"shared.labels.country": "Country",
|
|
40
|
+
"shared.labels.postalCode": "Postal Code",
|
|
41
|
+
"shared.labels.state": "State",
|
|
42
|
+
"shared.labels.city": "City",
|
|
43
|
+
"shared.labels.geoCoordinate": "Geo Coordinate",
|
|
44
|
+
"shared.labels.addressType": "Address Type",
|
|
45
|
+
"shared.labels.alphabeticalOrder": "Alphabetical Order",
|
|
46
|
+
"shared.labels.alphabeticalOrderDesc": "Alphabetical Order Desc",
|
|
47
|
+
"shared.labels.activeFirst": "Active First",
|
|
48
|
+
"shared.labels.inactiveFirst": "Inactive First",
|
|
49
|
+
"shared.placeholders.search": "Search",
|
|
50
|
+
"shared.messages.changesTimeout": "Changes may take up to 10 minutes to apply.",
|
|
51
|
+
"shared.messages.customListDescription": "Manage a unique list of {0} for this organization.",
|
|
52
|
+
"shared.messages.sharedListDescription": "Use the shared list of {0} defined by the contract. Updates are automatic.",
|
|
53
|
+
"shared.messages.somethingWentWrong": "Something went wrong",
|
|
54
|
+
"shared.errors.networkError": "Network error",
|
|
55
|
+
"shared.errors.requestFailed": "Request failed",
|
|
56
|
+
"shared.errors.somethingWentWrong": "Something went wrong!",
|
|
57
|
+
"shared.errors.errorDetails": "Error Details",
|
|
58
|
+
"shared.errors.stackLabel": "Stack:",
|
|
59
|
+
"shared.errors.componentLabel": "Component:",
|
|
60
|
+
"shared.errors.queryLabel": "Query:",
|
|
61
|
+
"shared.errors.httpStatus": "HTTP {0}: {1}",
|
|
62
|
+
"shared.errors.generic": "An error occurred. Please try again.",
|
|
63
|
+
"shared.errors.title": "Error",
|
|
64
|
+
"shared.pagination.counter": "{0} of {1}",
|
|
65
|
+
"shared.pagination.interval": "{0} to {1} of {2}",
|
|
66
|
+
"shared.pagination.nextPage": "Next Page",
|
|
67
|
+
"shared.pagination.previousPage": "Previous Page",
|
|
68
|
+
"shared.dropdown.noFilter": "No Filter",
|
|
69
|
+
"shared.dropdown.filterLabel": "{0}: {1}",
|
|
70
|
+
"shared.navigation.organization": "Organization",
|
|
71
|
+
"shared.navigation.contract": "Contract",
|
|
72
|
+
"shared.actions.manageOrganization": "Manage Organization",
|
|
73
|
+
"shared.buttons.logout": "Logout",
|
|
74
|
+
"layouts.drawers.switchCustomerId": "Switch customer ID",
|
|
75
|
+
"layouts.drawers.about": "About",
|
|
76
|
+
"layouts.tabs.contract": "Contract",
|
|
77
|
+
"layouts.tabs.organization": "Organization",
|
|
78
|
+
"layouts.tabs.financeAndCompliance": "Finance and Compliance",
|
|
79
|
+
"layouts.titles.versionDetails": "Version details",
|
|
80
|
+
"layouts.titles.navigationDetails": "Navigation Details",
|
|
81
|
+
"layouts.titles.profile": "Profile",
|
|
82
|
+
"layouts.titles.addresses": "Addresses",
|
|
83
|
+
"layouts.titles.addressDetails": "Address Details",
|
|
84
|
+
"layouts.titles.paymentMethods": "Payment Methods",
|
|
85
|
+
"layouts.titles.creditCards": "Credit Cards",
|
|
86
|
+
"layouts.titles.assortments": "Assortments",
|
|
87
|
+
"layouts.titles.accountingField": "Accounting field",
|
|
88
|
+
"layouts.titles.buyingPolicies": "Buying Policies",
|
|
89
|
+
"layouts.titles.buyingPolicyDetails": "Buying Policy Details",
|
|
90
|
+
"layouts.titles.roles": "Roles",
|
|
91
|
+
"layouts.titles.roleDetails": "Role Details",
|
|
92
|
+
"layouts.titles.users": "Users",
|
|
93
|
+
"layouts.titles.userDetails": "User Details",
|
|
94
|
+
"layouts.titles.organizationDetails": "Organization Details",
|
|
95
|
+
"layouts.labels.organizationAccount": "Organization Account",
|
|
96
|
+
"layouts.labels.contractId": "Contract ID",
|
|
97
|
+
"layouts.navigation.profile": "Profile",
|
|
98
|
+
"layouts.navigation.contracts": "Contracts",
|
|
99
|
+
"layouts.navigation.users": "Users",
|
|
100
|
+
"layouts.navigation.organizationalUnits": "Organizational Units",
|
|
101
|
+
"layouts.navigation.addresses": "Addresses",
|
|
102
|
+
"layouts.navigation.organizationAccount": "Organization Account",
|
|
103
|
+
"layouts.navigation.startShopping": "Start shopping",
|
|
104
|
+
"layouts.navigation.accountingFields": "Accounting fields",
|
|
105
|
+
"layouts.navigation.paymentMethods": "Payment methods",
|
|
106
|
+
"layouts.navigation.creditCards": "Credit cards",
|
|
107
|
+
"layouts.navigation.assortments": "Assortments",
|
|
108
|
+
"layouts.navigation.budgets": "Budgets",
|
|
109
|
+
"layouts.navigation.buyingPolicies": "Buying Policies",
|
|
110
|
+
"layouts.navigation.roles": "Roles",
|
|
111
|
+
"layouts.actions.removeFromUnit": "Remove from unit",
|
|
112
|
+
"addresses.toasts.defaultSaved": "Default address saved successfully",
|
|
113
|
+
"addresses.toasts.defaultUnset": "Default address unset successfully",
|
|
114
|
+
"addresses.toasts.settingDefault": "Setting the default address...",
|
|
115
|
+
"addresses.toasts.unsettingDefault": "Unsetting the default address...",
|
|
116
|
+
"addresses.toasts.addressAdded": "Address added successfully",
|
|
117
|
+
"addresses.toasts.addressUpdated": "Address updated successfully",
|
|
118
|
+
"addresses.toasts.addressDeleted": "Address deleted successfully",
|
|
119
|
+
"addresses.toasts.addressRemoved": "Address removed successfully",
|
|
120
|
+
"addresses.toasts.recipientsAdded": "Recipients added successfully",
|
|
121
|
+
"addresses.toasts.recipientEdited": "Recipient edited successfully",
|
|
122
|
+
"addresses.toasts.recipientDeleted": "Recipient deleted successfully",
|
|
123
|
+
"addresses.toasts.locationsAdded": "Locations added successfully",
|
|
124
|
+
"addresses.toasts.locationEdited": "Location edited successfully",
|
|
125
|
+
"addresses.toasts.locationRemoved": "Location removed successfully",
|
|
126
|
+
"addresses.toasts.scopeConfigUpdated": "Scope configuration updated successfully",
|
|
127
|
+
"addresses.errors.defaultError": "An error occurred while setting the default address",
|
|
128
|
+
"addresses.errors.defaultUnsetError": "An error occurred while removing the default address",
|
|
129
|
+
"addresses.errors.locationSettingsUpdate": "Failed to update Location data",
|
|
130
|
+
"addresses.errors.locationSettingsFetch": "Failed to fetch Location data",
|
|
131
|
+
"addresses.errors.locationNameFetch": "Failed to fetch Addresses Location name",
|
|
132
|
+
"addresses.errors.locationSettingsFetchLayout": "Failed to fetch Addresses Location settings",
|
|
133
|
+
"addresses.errors.locationSettingsFetchService": "Failed to fetch Addresses Location settings.",
|
|
134
|
+
"addresses.errors.locationsSettingsUpdate": "Failed to update Addresses Locations settings",
|
|
135
|
+
"addresses.errors.scopeConfigUpdate": "Failed to update scope configuration",
|
|
136
|
+
"addresses.errors.addressCreate": "An error occurred while creating the address",
|
|
137
|
+
"addresses.errors.addressUpdate": "An error occurred while updating the address",
|
|
138
|
+
"addresses.errors.addressRemoveFromUnit": "An error occurred while removing the address from the unit",
|
|
139
|
+
"addresses.errors.recipientsAdd": "An error occurred while adding recipients",
|
|
140
|
+
"addresses.errors.recipientEdit": "An error occurred while editing the recipient",
|
|
141
|
+
"addresses.errors.recipientRemove": "An error occurred while removing the recipient from address",
|
|
142
|
+
"addresses.errors.locationsAdd": "An error occurred while adding {0}",
|
|
143
|
+
"addresses.errors.locationEdit": "An error occurred while editing the {0}",
|
|
144
|
+
"addresses.errors.locationRemove": "An error occurred while removing {0}",
|
|
145
|
+
"addresses.titles.addresses": "Addresses",
|
|
146
|
+
"addresses.titles.defaultAddresses": "Default addresses",
|
|
147
|
+
"addresses.labels.active": "Active",
|
|
148
|
+
"addresses.labels.locations": "Locations",
|
|
149
|
+
"addresses.labels.location": "Location",
|
|
150
|
+
"addresses.links.manageAddresses": "Manage addresses",
|
|
151
|
+
"addresses.actions.addLocations": "Add {0}",
|
|
152
|
+
"addresses.actions.addRecipients": "Add Recipients",
|
|
153
|
+
"addresses.actions.unsetAsDefault": "Unset as default",
|
|
154
|
+
"addresses.actions.setAsDefault": "Set as default",
|
|
155
|
+
"addresses.actions.removeFromUnit": "Remove from Unit",
|
|
156
|
+
"addresses.dropdown.editDetails": "Edit details",
|
|
157
|
+
"addresses.drawers.addAddress": "Add address",
|
|
158
|
+
"addresses.drawers.addressSettings": "Address settings",
|
|
159
|
+
"addresses.drawers.addRecipients": "Add Recipients",
|
|
160
|
+
"addresses.drawers.addLocations": "Add {0}",
|
|
161
|
+
"addresses.drawers.deleteAddress": "Delete address",
|
|
162
|
+
"addresses.drawers.editAddressDetails": "Edit address details",
|
|
163
|
+
"addresses.drawers.deleteRecipient": "Delete recipient",
|
|
164
|
+
"addresses.drawers.editRecipient": "Edit recipient",
|
|
165
|
+
"addresses.drawers.confirmChanges": "Confirm changes",
|
|
166
|
+
"addresses.drawers.deleteLocation": "Delete {0}",
|
|
167
|
+
"addresses.drawers.editLocation": "Edit {0}",
|
|
168
|
+
"addresses.drawers.confirmLocationUpdate": "Confirm {0} update",
|
|
169
|
+
"addresses.drawers.removeAddressFromUnit": "Remove address from unit",
|
|
170
|
+
"addresses.tabs.details": "Details",
|
|
171
|
+
"addresses.tabs.recipients": "Recipients",
|
|
172
|
+
"addresses.forms.fillInDetails": "Fill in the address details",
|
|
173
|
+
"addresses.forms.country": "Country",
|
|
174
|
+
"addresses.forms.postalCode": "Postal Code",
|
|
175
|
+
"addresses.forms.addressName": "Address Name",
|
|
176
|
+
"addresses.forms.streetAddress": "Street Address",
|
|
177
|
+
"addresses.forms.number": "Number",
|
|
178
|
+
"addresses.forms.neighborhood": "Neighborhood",
|
|
179
|
+
"addresses.forms.aptSuiteBuilding": "Apt, Suite, Building (optional)",
|
|
180
|
+
"addresses.forms.city": "City",
|
|
181
|
+
"addresses.forms.state": "State",
|
|
182
|
+
"addresses.forms.geoCoordinates": "Geo coordinates (Optional)",
|
|
183
|
+
"addresses.forms.addressType": "Address Type",
|
|
184
|
+
"addresses.forms.shipping": "Shipping",
|
|
185
|
+
"addresses.forms.billing": "Billing",
|
|
186
|
+
"addresses.forms.listType": "List type",
|
|
187
|
+
"addresses.forms.selectDefaultAddresses": "Select the default addresses for this unit",
|
|
188
|
+
"addresses.forms.defaultShippingAddress": "Default shipping address (optional)",
|
|
189
|
+
"addresses.forms.searchShippingAddresses": "Search shipping addresses",
|
|
190
|
+
"addresses.forms.defaultBillingAddress": "Default billing address (optional)",
|
|
191
|
+
"addresses.forms.searchBillingAddresses": "Search billing addresses",
|
|
192
|
+
"addresses.forms.setLocationsFieldName": "Set the name of the {0} field in addresses",
|
|
193
|
+
"addresses.forms.fieldLabel": "Field label",
|
|
194
|
+
"addresses.forms.addLocationsDescription": "If necessary, add {0} to this address",
|
|
195
|
+
"addresses.forms.dontShowAgain": "Don't show this message again",
|
|
196
|
+
"addresses.forms.locationNumber": "{0} {1}",
|
|
197
|
+
"addresses.forms.locationName": "{0} name",
|
|
198
|
+
"addresses.forms.phoneNumber": "Phone Number",
|
|
199
|
+
"addresses.forms.recipientNumber": "Recipient {0}",
|
|
200
|
+
"addresses.forms.recipientName": "Recipient name",
|
|
201
|
+
"addresses.forms.country.brazil": "Brazil",
|
|
202
|
+
"addresses.forms.country.usa": "United States of America",
|
|
203
|
+
"addresses.forms.country.canada": "Canada",
|
|
204
|
+
"addresses.forms.country.mexico": "Mexico",
|
|
205
|
+
"addresses.validation.postalCodeRequired": "Postal Code is required",
|
|
206
|
+
"addresses.validation.streetAddressRequired": "Street Address is required",
|
|
207
|
+
"addresses.validation.numberRequired": "Number is required",
|
|
208
|
+
"addresses.validation.neighborhoodRequired": "Neighborhood is required",
|
|
209
|
+
"addresses.validation.cityRequired": "City is required",
|
|
210
|
+
"addresses.messages.invalidAddress": "Invalid Address",
|
|
211
|
+
"addresses.messages.recipientAssociated": "This recipient may be used by multiple units through its associated address. Updates will affect all of them.",
|
|
212
|
+
"addresses.placeholders.selectExistingAddress": "Already in the contract — select to add",
|
|
213
|
+
"addresses.deleteAddress.confirmQuestion": "Permanently delete {0}?",
|
|
214
|
+
"addresses.deleteAddress.warning": "This address may be used by multiple units. Deleting it will permanently remove it and all its data from all associated units, though usage history will be kept for audit. This action can't be undone.",
|
|
215
|
+
"addresses.deleteAddress.confirmInstruction": "Confirm by typing the address name below:",
|
|
216
|
+
"addresses.deleteRecipient.confirmQuestion": "Permanently delete {0}?",
|
|
217
|
+
"addresses.deleteRecipient.warning": "This recipient may be associated with multiple units through its address. Deleting it will permanently remove it and all its data from all associated units, though usage history will be kept for audit. This action can't be undone.",
|
|
218
|
+
"addresses.deleteRecipient.confirmInstruction": "Confirm by typing the recipient name below:",
|
|
219
|
+
"addresses.deleteLocation.confirmQuestion": "Permanently delete {0}?",
|
|
220
|
+
"addresses.deleteLocation.warning": "This {0} may be used by multiple units through its associated address. Deleting it will permanently remove it and all its data from all associated units, though usage history will be kept for audit. This action can't be undone.",
|
|
221
|
+
"addresses.deleteLocation.confirmInstruction": "Confirm by typing the {0} name below:",
|
|
222
|
+
"addresses.editLocation.multiUnitWarning": "This {0} may be used by multiple units through its associated address. Updates will affect all of them.",
|
|
223
|
+
"addresses.editLocation.proceedQuestion": "Proceed with the update?",
|
|
224
|
+
"addresses.editRecipient.multiUnitWarning": "This recipient may be used by multiple units through its associated address. Updates will affect all of them.",
|
|
225
|
+
"addresses.editRecipient.proceedQuestion": "Proceed with the update?",
|
|
226
|
+
"addresses.removeAddress.confirmQuestion": "Remove {0} from {1} organizational unit?",
|
|
227
|
+
"addresses.removeAddress.warning": "This action will prevent users in this unit from accessing this address during store navigation and checkout",
|
|
228
|
+
"addresses.buttons.addLocations": "Add locations",
|
|
229
|
+
"addresses.buttons.addLocation": "Add {0}",
|
|
230
|
+
"addresses.buttons.addRecipient": "Add recipient",
|
|
231
|
+
"addresses.table.type": "Type",
|
|
232
|
+
"addresses.table.phone": "Phone",
|
|
233
|
+
"addresses.empty.noAddressesYet": "No addresses yet",
|
|
234
|
+
"addresses.empty.noResults": "No results found",
|
|
235
|
+
"addresses.empty.tryDifferentTerms": "Try using different terms or filters",
|
|
236
|
+
"roles.titles.roles": "Roles",
|
|
237
|
+
"roles.titles.permissions": "Permissions",
|
|
238
|
+
"roles.details.notFound": "Not Found",
|
|
239
|
+
"orgUnits.titles.organization": "Organization",
|
|
240
|
+
"orgUnits.titles.organizationalUnits": "Organizational Units",
|
|
241
|
+
"orgUnits.labels.root": "Root",
|
|
242
|
+
"orgUnits.links.manageOrganizationalUnits": "Manage organizational units",
|
|
243
|
+
"orgUnits.empty.noOrganizationalUnitsYet": "No organizational units yet",
|
|
244
|
+
"orgUnits.empty.noChildOrganizationalUnitsYet": "No child organizational units yet",
|
|
245
|
+
"orgUnits.buttons.addNew": "+ Add New",
|
|
246
|
+
"orgUnits.buttons.add": "Add",
|
|
247
|
+
"shared.orgUnitDropdown.rename": "Rename",
|
|
248
|
+
"shared.orgUnitDropdown.addUser": "Add User",
|
|
249
|
+
"shared.orgUnitDropdown.addOrganizationalUnit": "Add Organizational Unit",
|
|
250
|
+
"shared.orgUnitDropdown.addAddress": "Add address",
|
|
251
|
+
"shared.orgUnitDropdown.addCreditCard": "Add credit card",
|
|
252
|
+
"shared.orgUnitDropdown.addAccountingFields": "Add accounting fields",
|
|
253
|
+
"shared.orgUnitDropdown.addOrganizationUnit": "Add organization unit",
|
|
254
|
+
"shared.orgUnitDropdown.addBudget": "Add budget",
|
|
255
|
+
"shared.orgUnitDropdown.addBuyingPolicy": "Add buying policy",
|
|
256
|
+
"orgUnits.drawers.create.title": "Create organization unit",
|
|
257
|
+
"orgUnits.drawers.update.title": "Edit organization unit",
|
|
258
|
+
"orgUnits.drawers.delete.title": "Delete organizational unit",
|
|
259
|
+
"orgUnits.forms.parentLabel": "Parent",
|
|
260
|
+
"orgUnits.validation.parentRequired": "Parent is required",
|
|
261
|
+
"orgUnits.validation.nameRequired": "Name is required",
|
|
262
|
+
"orgUnits.validation.nameMismatch": "The entered name does not match the organizational unit's name. Please, check and try again.",
|
|
263
|
+
"orgUnits.validation.usernameRequired": "Username is required",
|
|
264
|
+
"orgUnits.toasts.createSuccess": "Organizational unit added successfully",
|
|
265
|
+
"orgUnits.toasts.updateSuccess": "Organizational unit successfully edited",
|
|
266
|
+
"orgUnits.toasts.deleteSuccess": "Organizational unit deleted successfully",
|
|
267
|
+
"orgUnits.errors.duplicateName": "An organizational unit with the same name already exists",
|
|
268
|
+
"orgUnits.errors.createFailed": "An error occurred while creating the organizational unit",
|
|
269
|
+
"orgUnits.errors.updateFailed": "An error occurred while editing the organizational unit",
|
|
270
|
+
"orgUnits.errors.deleteFailed": "An error occurred while deleting the organizational unit",
|
|
271
|
+
"orgUnits.delete.confirmMessage": "Are you sure you want to permanently delete the {0}?",
|
|
272
|
+
"orgUnits.delete.warningDeleteAllData": "This action will delete all data from this unit.",
|
|
273
|
+
"orgUnits.delete.confirmNamePrompt": "To confirm this action, please enter the organizational unit name below:",
|
|
274
|
+
"orgUnits.delete.hasChildrenMessage": "Before deleting {0}, you must first remove all child organizational units{1}. Please delete them individually, starting from the lowest level. Once all child units{1} below are removed, you'll be able to delete {0}.",
|
|
275
|
+
"orgUnits.delete.andUsers": " and users",
|
|
276
|
+
"orgUnitDetails.drawers.authentication.title": "Authentication",
|
|
277
|
+
"orgUnitDetails.auth.userIdentification": "User identification",
|
|
278
|
+
"orgUnitDetails.auth.selectIdentifiersDescription": "Select the identifiers allowed for sign-in",
|
|
279
|
+
"orgUnitDetails.auth.username": "Username",
|
|
280
|
+
"orgUnitDetails.auth.email": "Email",
|
|
281
|
+
"orgUnitDetails.auth.phone": "Phone",
|
|
282
|
+
"orgUnitDetails.auth.authenticationMethods": "Authentication methods",
|
|
283
|
+
"orgUnitDetails.auth.controlMethodsDescription": "Control which authentication methods are available",
|
|
284
|
+
"orgUnitDetails.auth.password": "Password",
|
|
285
|
+
"orgUnitDetails.auth.emailAccessCode": "Email access code",
|
|
286
|
+
"orgUnitDetails.auth.smsAccessCode": "SMS access code",
|
|
287
|
+
"orgUnitDetails.auth.pingFederateSso": "PingFederate (SSO)",
|
|
288
|
+
"orgUnitDetails.auth.ssoTooltip": "Enables login through external identity providers, such as Google, Microsoft, or other supported IdPs",
|
|
289
|
+
"orgUnitDetails.toasts.authSettingsSaved": "Authentication settings saved successfully",
|
|
290
|
+
"orgUnitDetails.errors.authSettingsUpdateFailed": "An error occurred while updating authentication settings",
|
|
291
|
+
"orgUnitDetails.dropdown.rename": "Rename",
|
|
292
|
+
"orgUnitDetails.dropdown.authentication": "Authentication",
|
|
293
|
+
"orgUnitDetails.links.startShopping": "Start shopping",
|
|
294
|
+
"orgUnitDetails.links.manageContractSettings": "Manage contract settings",
|
|
295
|
+
"orgUnitDetails.links.manageOrganizationSettings": "Manage organization settings",
|
|
296
|
+
"orgUnitDetails.links.manageFinanceAndComplianceSettings": "Manage finance and compliance settings",
|
|
297
|
+
"orgUnitDetails.settings.accountingFields": "Accounting fields",
|
|
298
|
+
"orgUnitDetails.messages.accountingFieldEmptySingle": "Buyers won't be able to place orders until all required information is provided. Add at least one {0} value to complete the setup.",
|
|
299
|
+
"orgUnitDetails.messages.accountingFieldEmptyMultiple": "Buyers won't be able to place orders until all required information is provided. Complete the accounting field settings.",
|
|
300
|
+
"orgUnitDetails.buttons.addValue": "Add value",
|
|
301
|
+
"orgUnitDetails.actions.edit": "Edit",
|
|
302
|
+
"orgUnitDetails.titles.contracts": "Contracts",
|
|
303
|
+
"orgUnitDetails.titles.organization": "Organization",
|
|
304
|
+
"orgUnitDetails.titles.financeAndCompliance": "Finance and Compliance",
|
|
305
|
+
"users.table.columnUsername": "Username",
|
|
306
|
+
"users.table.columnFullName": "Full Name",
|
|
307
|
+
"users.table.columnEmail": "Email",
|
|
308
|
+
"users.table.columnPhone": "Phone",
|
|
309
|
+
"users.table.columnRoles": "Roles",
|
|
310
|
+
"users.titles.users": "Users",
|
|
311
|
+
"users.titles.details": "Details",
|
|
312
|
+
"users.labels.name": "Name",
|
|
313
|
+
"users.labels.username": "Username",
|
|
314
|
+
"users.labels.phoneNumber": "Phone number",
|
|
315
|
+
"users.labels.email": "Email",
|
|
316
|
+
"users.labels.role": "Role",
|
|
317
|
+
"users.labels.organizationalUnit": "Organizational Unit",
|
|
318
|
+
"users.actions.editDetails": "Edit details",
|
|
319
|
+
"users.actions.change": "Change",
|
|
320
|
+
"users.forms.fullName": "Full Name",
|
|
321
|
+
"users.forms.fullNameOptional": "Full Name (optional)",
|
|
322
|
+
"users.forms.email": "Email",
|
|
323
|
+
"users.forms.emailOptional": "Email (optional)",
|
|
324
|
+
"users.forms.phoneNumber": "Phone number",
|
|
325
|
+
"users.forms.phoneNumberOptional": "Phone number (optional)",
|
|
326
|
+
"users.forms.roles": "Roles",
|
|
327
|
+
"users.forms.username": "Username",
|
|
328
|
+
"users.validation.fullNameRequired": "Full name is required",
|
|
329
|
+
"users.validation.emailRequired": "Email is required",
|
|
330
|
+
"users.validation.emailInvalid": "Email is invalid",
|
|
331
|
+
"users.validation.usernameRequired": "Username is required",
|
|
332
|
+
"users.validation.atLeastOneRoleRequired": "At least one role is required",
|
|
333
|
+
"users.validation.emailOrPhoneRequiredFor2fa": "Email or phone number is required for two-factor authentication",
|
|
334
|
+
"users.create.drawerTitle": "Add User",
|
|
335
|
+
"users.create.drawerTitleUserCannotBeAdded": "User cannot be added",
|
|
336
|
+
"users.create.drawerTitleConfirmSharedEmail": "Confirm shared email",
|
|
337
|
+
"users.create.buttons.add": "Add",
|
|
338
|
+
"users.create.toasts.userSuccessfullyAdded": "User successfully added",
|
|
339
|
+
"users.create.toasts.userAddedSuccessfully": "User added successfully",
|
|
340
|
+
"users.create.toasts.accessCodeSent": "An access code has been sent to {0} for first-time login.",
|
|
341
|
+
"users.create.messages.userAssignedToAnotherUnit": "This user is assigned to another organizational unit.",
|
|
342
|
+
"users.create.messages.moveUserFromAnotherUnit": "Users can only belong to one organizational unit at a time. To add {0} to {1}, go to their profile and move them from {2}.",
|
|
343
|
+
"users.create.messages.emailAlreadyRegistered": "This email is already registered",
|
|
344
|
+
"users.create.messages.emailRegisteredForAnotherUser": "The email {0} is already registered for another user ({1}).",
|
|
345
|
+
"users.create.messages.confirmSharedEmailContinue": "Are you sure you want to continue? If you proceed, a temporary access code will be generated for the new user.",
|
|
346
|
+
"users.create.messages.anotherUser": "another user",
|
|
347
|
+
"users.create.errors.formCouldNotBeLoaded": "The add user form could not be loaded.",
|
|
348
|
+
"users.create.errors.failedToGenerateAccessCode": "Failed to generate access code. Please try resetting the password later.",
|
|
349
|
+
"users.create.errors.usernameAlreadyTaken": "Username is already taken. Please choose another one.",
|
|
350
|
+
"users.create.errors.failedToCreateUser": "An error occurred while creating the user",
|
|
351
|
+
"users.edit.drawerTitle": "Edit user details",
|
|
352
|
+
"users.update.errors.failedToFetchUserDetails": "Failed to fetch user details",
|
|
353
|
+
"users.update.errors.failedToUpdateUser": "Failed to update user",
|
|
354
|
+
"users.update.toasts.userSuccessfullyUpdated": "User successfully updated",
|
|
355
|
+
"users.reset.drawerTitle": "Reset password",
|
|
356
|
+
"users.reset.buttons.reset": "Reset",
|
|
357
|
+
"users.reset.messages.confirmResetPassword": "Are you sure you want to reset this user's password? The old password will be deactivated immediately.",
|
|
358
|
+
"users.reset.messages.passwordResetSuccessfully": "Password reset successfully",
|
|
359
|
+
"users.reset.messages.accessCodeGeneratedDescription": "A temporary access code has been generated. Share it with the user, as they have no individual email registered. The code expires in 12 hours. Copy it before closing this window. Once closed, access will be lost and a password reset will be required.",
|
|
360
|
+
"users.reset.errors.failedToResetPassword": "Failed to reset password. Please try again.",
|
|
361
|
+
"users.reset.toasts.accessCodeCopied": "Access code copied to clipboard",
|
|
362
|
+
"users.reset.toasts.failedToCopyAccessCode": "Failed to copy access code",
|
|
363
|
+
"users.reassign.drawerTitle": "Change user organizational unit",
|
|
364
|
+
"users.reassign.messages.selectNewUnit": "Users can belong to only one Organizational Unit. Search and select a new unit for {0}.",
|
|
365
|
+
"users.reassign.forms.searchOrganizationalUnits": "Search organizational units",
|
|
366
|
+
"users.reassign.validation.newOrgUnitRequired": "New Organizational unit is required",
|
|
367
|
+
"users.reassign.toasts.userSuccessfullyEdited": "User successfully edited",
|
|
368
|
+
"users.reassign.errors.failedToReassign": "An error occurred while reassigning the organizational unit",
|
|
369
|
+
"users.delete.drawerTitle": "Delete user",
|
|
370
|
+
"users.delete.messages.confirmDeleteUser": "Permanently delete {0}?",
|
|
371
|
+
"users.delete.messages.deleteWarning": "Deleting this user will permanently remove all its data, but usage history will be kept for audit. This action cannot be undone.",
|
|
372
|
+
"users.delete.messages.confirmByTypingUserName": "Confirm by typing the user name below:",
|
|
373
|
+
"users.delete.forms.userName": "User name",
|
|
374
|
+
"users.delete.toasts.userSuccessfullyDeleted": "User successfully deleted",
|
|
375
|
+
"users.delete.errors.failedToDeleteUser": "An error occurred while deleting the user",
|
|
376
|
+
"users.dropdown.open": "Open",
|
|
377
|
+
"users.dropdown.resetPassword": "Reset password",
|
|
378
|
+
"users.dropdown.changeOrganizationalUnit": "Change organizational unit",
|
|
379
|
+
"users.components.UsersCard.manageUsers": "Manage users",
|
|
380
|
+
"budgets.titles.budgets": "Budgets",
|
|
381
|
+
"budgets.titles.financeAndCompliance": "Finance and Compliance",
|
|
382
|
+
"budgets.labels.remainingBalance": "Remaining balance",
|
|
383
|
+
"budgets.labels.ofTotalUsed": "of {0} used",
|
|
384
|
+
"budgets.labels.active": "Active",
|
|
385
|
+
"budgets.labels.inactive": "Inactive",
|
|
386
|
+
"budgets.labels.defaultUserName": "User",
|
|
387
|
+
"budgets.labels.you": "You",
|
|
388
|
+
"budgets.labels.youSuffix": "(You)",
|
|
389
|
+
"budgets.labels.dateRangeSeparator": " to ",
|
|
390
|
+
"budgets.settingsInfo.title": "Settings",
|
|
391
|
+
"budgets.settingsInfo.name": "Name",
|
|
392
|
+
"budgets.settingsInfo.amount": "Amount",
|
|
393
|
+
"budgets.settingsInfo.period": "Period",
|
|
394
|
+
"budgets.settingsInfo.automaticRenewal": "Automatic renewal",
|
|
395
|
+
"budgets.notificationsForm.title": "Notifications",
|
|
396
|
+
"budgets.notificationsForm.thresholds": "Thresholds",
|
|
397
|
+
"budgets.notificationsForm.users": "Users",
|
|
398
|
+
"budgets.notificationsForm.thresholdsDescription": "Set up to 5 thresholds and notify users when the total amount reaches specific percentages",
|
|
399
|
+
"budgets.notificationsForm.addThreshold": "Add threshold",
|
|
400
|
+
"budgets.notificationsForm.addUsersDescription": "Add users to be notified by email. At least one user must be added",
|
|
401
|
+
"budgets.allocationsTable.title": "Allocations",
|
|
402
|
+
"budgets.forms.settings": "Settings",
|
|
403
|
+
"budgets.forms.name": "Name",
|
|
404
|
+
"budgets.forms.amount": "Amount",
|
|
405
|
+
"budgets.forms.startDate": "Start date",
|
|
406
|
+
"budgets.forms.endDate": "End date",
|
|
407
|
+
"budgets.forms.renewBudgetLabel": "Renew this budget amount and period upon expiration",
|
|
408
|
+
"budgets.forms.addUsers": "Add users",
|
|
409
|
+
"budgets.forms.budgetName": "Budget name",
|
|
410
|
+
"budgets.forms.allocationName": "Allocation name",
|
|
411
|
+
"budgets.currencies.usd": "USD",
|
|
412
|
+
"budgets.tooltips.renewBudget": "When this budget expires, both its amount and period will automatically renew. The new period will match the duration originally set.",
|
|
413
|
+
"budgets.tooltips.enforcementPolicy": "When enabled, a default policy will be created to control budget usage at checkout. You can edit its name and description later in the Buying Policies section. When disabled, no budget enforcement policy will be created.",
|
|
414
|
+
"budgets.tooltips.atLeastOneUserRequired": "At least one user must be notified. Add another user before removing this one.",
|
|
415
|
+
"budgets.tooltips.allocationsInfo": "Allocations determine how this budget is applied at checkout, ensuring it's available for use during orders. To grant users access to the budget, you must add at least one allocation.",
|
|
416
|
+
"budgets.table.remaining": "Remaining",
|
|
417
|
+
"budgets.table.expirationDate": "Expiration date",
|
|
418
|
+
"budgets.table.totalUsd": "Total (USD)",
|
|
419
|
+
"budgets.table.type": "Type",
|
|
420
|
+
"budgets.table.contract": "Contract",
|
|
421
|
+
"budgets.table.threshold": "Threshold",
|
|
422
|
+
"budgets.table.consumed": "Consumed",
|
|
423
|
+
"budgets.table.userName": "User name",
|
|
424
|
+
"budgets.table.email": "Email",
|
|
425
|
+
"budgets.dropdown.editSettings": "Edit settings",
|
|
426
|
+
"budgets.dropdown.editNotifications": "Edit notifications",
|
|
427
|
+
"budgets.dropdown.addAllocations": "Add allocations",
|
|
428
|
+
"budgets.actions.removeThreshold": "Remove threshold",
|
|
429
|
+
"budgets.actions.seeUserDetails": "See user details",
|
|
430
|
+
"budgets.actions.removeUser": "Remove {0}",
|
|
431
|
+
"budgets.pagination.selectedCount": "{0} selected",
|
|
432
|
+
"budgets.edit.budgetSettings": "Edit Budget Settings",
|
|
433
|
+
"budgets.edit.notificationsTitle": "Edit notifications",
|
|
434
|
+
"budgets.create.addNewBudget": "Add new budget",
|
|
435
|
+
"budgets.create.addBudgetAllocations": "Add budget allocations",
|
|
436
|
+
"budgets.create.budgetCreated": "Your budget has been created.",
|
|
437
|
+
"budgets.create.firstBudgetPolicyDescription": "Because this is the first budget created in this organization, and no budget-related buying policies exist yet, you have the option to create a default policy now. This policy will apply to all budgets at the same organization level where this budget was created.",
|
|
438
|
+
"budgets.create.buyingPoliciesLink": "You can edit or remove this policy later in the {0} section.",
|
|
439
|
+
"budgets.create.buyingPolicies": "Buying Policies",
|
|
440
|
+
"budgets.create.enforcementPolicyLabel": "Create budget enforcement policy",
|
|
441
|
+
"budgets.create.preventCheckoutExceeded": "Prevent checkout when budget is exceeded",
|
|
442
|
+
"budgets.create.preventCheckoutExceededDescription": "Block orders when the budget amount has been fully used",
|
|
443
|
+
"budgets.create.preventCheckoutExpired": "Prevent checkout when budget is expired",
|
|
444
|
+
"budgets.create.preventCheckoutExpiredDescription": "Block orders when the budget is no longer valid due to its expiration date",
|
|
445
|
+
"budgets.delete.budgetTitle": "Delete budget",
|
|
446
|
+
"budgets.delete.permanentlyDeleteBudget": "Permanently delete {0}?",
|
|
447
|
+
"budgets.delete.budgetWarning": "Deleting this budget will permanently remove all its data, but usage history will be kept for audit. This action can't be undone.",
|
|
448
|
+
"budgets.delete.confirmBudgetName": "Confirm by typing the budget name below:",
|
|
449
|
+
"budgets.delete.allocationTitle": "Delete allocation",
|
|
450
|
+
"budgets.delete.permanentlyDeleteAllocation": "Permanently delete {0}?",
|
|
451
|
+
"budgets.delete.allocationWarning": "Deleting this allocation will permanently remove all its data, but usage history will be kept for audit. This action cannot be undone.",
|
|
452
|
+
"budgets.delete.confirmAllocationName": "Confirm by typing the allocation name below:",
|
|
453
|
+
"budgets.validation.nameRequired": "Name is required",
|
|
454
|
+
"budgets.validation.amountRequired": "Amount is required",
|
|
455
|
+
"budgets.validation.startDateRequired": "Start date is required",
|
|
456
|
+
"budgets.validation.endDateRequired": "End date is required",
|
|
457
|
+
"budgets.validation.budgetNameRequired": "Budget name is required",
|
|
458
|
+
"budgets.validation.budgetNameInvalid": "Budget name is invalid",
|
|
459
|
+
"budgets.validation.fillRequiredFields": "Fill in all required fields.",
|
|
460
|
+
"budgets.validation.fillRequiredFieldsCorrectly": "Please fill all required fields correctly.",
|
|
461
|
+
"budgets.validation.selectAtLeastOneUser": "Select at least one user.",
|
|
462
|
+
"budgets.validation.allUsersValidEmail": "All notified users must have a valid email. Remove users without email or disable notifications.",
|
|
463
|
+
"budgets.messages.noUsersNotification": "Add at least one user to notifications or turn it off.",
|
|
464
|
+
"budgets.messages.noThresholdsNotification": "Add at least one notification threshold.",
|
|
465
|
+
"budgets.messages.invalidEmailNotification": "Every notified user must have a valid email on file. Remove invalid users or turn off notifications.",
|
|
466
|
+
"budgets.messages.noUsersFound": "No users found",
|
|
467
|
+
"budgets.toasts.budgetAdded": "Budget added successfully.",
|
|
468
|
+
"budgets.toasts.budgetPolicyAdded": "Budget policy added successfully.",
|
|
469
|
+
"budgets.toasts.budgetUpdated": "Budget updated successfully.",
|
|
470
|
+
"budgets.toasts.budgetDeleted": "Budget deleted successfully",
|
|
471
|
+
"budgets.toasts.allocationAdded": "Allocation successfully added",
|
|
472
|
+
"budgets.toasts.allocationDeleted": "Allocation deleted successfully",
|
|
473
|
+
"budgets.errors.unexpectedAllocationsLoad": "Unexpected error loading allocations list",
|
|
474
|
+
"budgets.errors.genericRetry": "An error occurred. Please try again.",
|
|
475
|
+
"budgets.errors.budgetRemoveFailed": "An error occurred while removing the budget",
|
|
476
|
+
"budgets.errors.userNoValidEmail": "This user has no valid email on file and cannot receive budget notifications.",
|
|
477
|
+
"budgets.errors.userEmailNotFound": "The selected user does not have any available email to receive the budget notifications.",
|
|
478
|
+
"budgets.empty.noBudgets": "No budgets yet",
|
|
479
|
+
"budgets.empty.noAllocations": "No allocations yet",
|
|
480
|
+
"budgets.empty.noAllocationsDescription": "Add at least one allocation so that this budget can be used at checkout.",
|
|
481
|
+
"budgets.empty.noNotifications": "No notifications",
|
|
482
|
+
"budgets.empty.noNotificationsDescription": "Set up to 5 thresholds and notify users when the total amount reaches specific percentages.",
|
|
483
|
+
"budgets.empty.noUsersFound": "No users found",
|
|
484
|
+
"buyingPolicies.titles.buyingPolicies": "Buying Policies",
|
|
485
|
+
"buyingPolicies.titles.financeAndCompliance": "Finance and Compliance",
|
|
486
|
+
"buyingPolicies.labels.name": "Name",
|
|
487
|
+
"buyingPolicies.labels.description": "Description",
|
|
488
|
+
"buyingPolicies.labels.criteria": "Criteria",
|
|
489
|
+
"buyingPolicies.labels.action": "Action",
|
|
490
|
+
"buyingPolicies.labels.buyingPolicyName": "Buying policy name",
|
|
491
|
+
"buyingPolicies.details.settings": "Settings",
|
|
492
|
+
"buyingPolicies.details.level": "Level {0}",
|
|
493
|
+
"buyingPolicies.drawers.addNewBuyingPolicy": "Add new buying policy",
|
|
494
|
+
"buyingPolicies.drawers.updateBuyingPolicy": "Update Buying Policy",
|
|
495
|
+
"buyingPolicies.drawers.deleteBuyingPolicy": "Delete buying policy",
|
|
496
|
+
"buyingPolicies.forms.basicInformation": "Basic information",
|
|
497
|
+
"buyingPolicies.forms.basicInformationDescription": "Define policy name and description to inform buyers during checkout",
|
|
498
|
+
"buyingPolicies.forms.criteriaDescription": "Define the conditions that will trigger this buying policy using",
|
|
499
|
+
"buyingPolicies.forms.jsonataLink": "JSONata",
|
|
500
|
+
"buyingPolicies.forms.actionDescription": "Define how orders that meet the criteria will be handled",
|
|
501
|
+
"buyingPolicies.placeholders.criteriaExample": "Example: value > 10000",
|
|
502
|
+
"buyingPolicies.tooltips.description": "Describe how this policy works so buyers know why an order may be denied or require approval.",
|
|
503
|
+
"buyingPolicies.tooltips.monetaryValuesInCents": "In this field, monetary values are represented in cents to support currencies with different decimal precision. Example: value > 10000 means greater than $100.00.",
|
|
504
|
+
"buyingPolicies.validation.nameRequired": "Name is required",
|
|
505
|
+
"buyingPolicies.validation.descriptionRequired": "Description is required",
|
|
506
|
+
"buyingPolicies.validation.criteriaRequired": "Criteria is required",
|
|
507
|
+
"buyingPolicies.validation.actionRequired": "Action is required",
|
|
508
|
+
"buyingPolicies.validation.sequentialWorkflowRequired": "Sequential workflow is required",
|
|
509
|
+
"buyingPolicies.workflow.sequentialWorkflow": "Sequential workflow",
|
|
510
|
+
"buyingPolicies.workflow.denyOrder": "Deny order",
|
|
511
|
+
"buyingPolicies.workflow.bypassAllBuyingPolicies": "Bypass all buying policies",
|
|
512
|
+
"buyingPolicies.workflow.level": "Level {0}",
|
|
513
|
+
"buyingPolicies.criteria.setSpendingLimitCriteria": "Set spending limit criteria",
|
|
514
|
+
"buyingPolicies.criteria.setOrderFieldCriteria": "Set order field criteria",
|
|
515
|
+
"buyingPolicies.criteria.orderValueGreaterThanX": "If the order value is greater than X",
|
|
516
|
+
"buyingPolicies.criteria.orderValueGreaterThanXAndLessThanY": "If the order value is greater than X and less than Y",
|
|
517
|
+
"buyingPolicies.criteria.unitPriceGreaterThanX": "If the unit price is greater than X",
|
|
518
|
+
"buyingPolicies.criteria.unitPriceGreaterThanXAndLessThanY": "If the unit price is greater than X and less than Y",
|
|
519
|
+
"buyingPolicies.criteria.extendedLineItemGreaterThanX": "If any extended line item is greater than X",
|
|
520
|
+
"buyingPolicies.criteria.extendedLineItemGreaterThanXAndLessThanY": "If any extended line item is greater than X and less than Y",
|
|
521
|
+
"buyingPolicies.criteria.orderContainsBudget": "If the order contains a budget",
|
|
522
|
+
"buyingPolicies.criteria.orderContainsBudgetsXyz": "If the order contains the budgets X, Y, Z",
|
|
523
|
+
"buyingPolicies.criteria.orderContainsExceededBudget": "If the order contains an exceeded budget",
|
|
524
|
+
"buyingPolicies.criteria.orderContainsExpiredBudget": "If the order contains an expired budget",
|
|
525
|
+
"buyingPolicies.criteria.orderContainsAccountingField": "If the order contains an Accounting field",
|
|
526
|
+
"buyingPolicies.criteria.orderContainsAccountingFieldsXyz": "If the order contains the Accounting fields X, Y, Z",
|
|
527
|
+
"buyingPolicies.criteria.allOrderItemsNegotiated": "If all order items are negotiated items",
|
|
528
|
+
"buyingPolicies.criteria.restrictedItemsInOrder": "If there are restricted items in the order",
|
|
529
|
+
"buyingPolicies.messages.bypassAllLegend": "When this policy is applied, all other buying policy will be ignored",
|
|
530
|
+
"buyingPolicies.messages.loadingBudgets": "Loading budgets...",
|
|
531
|
+
"buyingPolicies.messages.noOptionFound": "No option found",
|
|
532
|
+
"buyingPolicies.buttons.addApprovalLevel": "Add approval level",
|
|
533
|
+
"buyingPolicies.toasts.addedSuccessfully": "Buying policy added successfully",
|
|
534
|
+
"buyingPolicies.toasts.updatedSuccessfully": "Buying policy updated successfully",
|
|
535
|
+
"buyingPolicies.toasts.deletedSuccessfully": "Buying policy deleted successfully",
|
|
536
|
+
"buyingPolicies.delete.permanentlyDelete": "Permanently delete {0}?",
|
|
537
|
+
"buyingPolicies.delete.warningMessage": "Deleting this buying policy will permanently remove all its data, but usage history will be kept for audit. This action can't be undone.",
|
|
538
|
+
"buyingPolicies.delete.confirmByTypingName": "Confirm by typing the buying policy name below:",
|
|
539
|
+
"buyingPolicies.dropdown.open": "Open",
|
|
540
|
+
"buyingPolicies.dropdown.editSettings": "Edit settings",
|
|
541
|
+
"buyingPolicies.errors.failedToFetchAccountingFields": "Failed to fetch accounting fields",
|
|
542
|
+
"buyingPolicies.errors.failedToFetchValues": "Failed to fetch values",
|
|
543
|
+
"buyingPolicies.errors.failedToFetchAccountingValueDetails": "Failed to fetch accounting value details",
|
|
544
|
+
"buyingPolicies.empty.noBuyingPoliciesYet": "No buying policies yet",
|
|
545
|
+
"creditCards.toasts.defaultSaved": "Default credit card saved",
|
|
546
|
+
"creditCards.toasts.defaultUnset": "Default credit card unset",
|
|
547
|
+
"creditCards.toasts.defaultError": "Error setting default credit card",
|
|
548
|
+
"creditCards.toasts.defaultUnsetError": "Error unsetting default credit card",
|
|
549
|
+
"creditCards.toasts.settingDefault": "Setting the default credit card...",
|
|
550
|
+
"creditCards.toasts.unsettingDefault": "Unsetting the default credit card...",
|
|
551
|
+
"creditCards.toasts.creditCardAdded": "Credit card added successfully",
|
|
552
|
+
"creditCards.toasts.creditCardUpdated": "Credit card updated successfully",
|
|
553
|
+
"creditCards.toasts.creditCardDeleted": "Credit card deleted successfully",
|
|
554
|
+
"creditCards.toasts.creditCardRemoved": "Credit card removed successfully",
|
|
555
|
+
"creditCards.toasts.scopeConfigUpdated": "Scope configuration updated successfully",
|
|
556
|
+
"creditCards.toasts.scopeConfigUpdateFailed": "Failed to update scope configuration",
|
|
557
|
+
"creditCards.errors.createCreditCard": "An error occurred while creating the credit card",
|
|
558
|
+
"creditCards.errors.saveCreditCardFailed": "Failed to save credit card",
|
|
559
|
+
"creditCards.errors.removeFromUnit": "An error occurred while removing the credit card from the unit",
|
|
560
|
+
"creditCards.titles.creditCards": "Credit cards",
|
|
561
|
+
"creditCards.labels.cardNumber": "Card number",
|
|
562
|
+
"creditCards.labels.expirationDate": "Exp MM/YY",
|
|
563
|
+
"creditCards.labels.cvv": "CVV",
|
|
564
|
+
"creditCards.labels.cardholderName": "Cardholder name",
|
|
565
|
+
"creditCards.labels.cardNickname": "Card nickname",
|
|
566
|
+
"creditCards.labels.organizationalUnit": "Organizational Unit",
|
|
567
|
+
"creditCards.forms.cardDetails": "Card Details",
|
|
568
|
+
"creditCards.forms.cardNickname": "Card nickname",
|
|
569
|
+
"creditCards.forms.billingAddress": "Billing Address",
|
|
570
|
+
"creditCards.settings.title": "Credit cards settings",
|
|
571
|
+
"creditCards.settings.listType": "List type",
|
|
572
|
+
"creditCards.create.title": "Add credit card",
|
|
573
|
+
"creditCards.edit.title": "Rename credit card",
|
|
574
|
+
"creditCards.edit.multiUnitWarning": "This credit card may be used by multiple units. Updates will affect all of them.",
|
|
575
|
+
"creditCards.edit.proceedConfirm": "Proceed with the update?",
|
|
576
|
+
"creditCards.update.confirmTitle": "Confirm credit card update",
|
|
577
|
+
"creditCards.delete.title": "Delete credit card",
|
|
578
|
+
"creditCards.delete.permanentlyDeleteConfirm": "Permanently delete {0}?",
|
|
579
|
+
"creditCards.delete.warning": "This credit card may be used by multiple units. Deleting it will permanently remove it and all its data from all associated units, though usage history will be kept for audit. This action can't be undone.",
|
|
580
|
+
"creditCards.delete.confirmUnitName": "Confirm by typing the organizational unit name below:",
|
|
581
|
+
"creditCards.delete.removeFromUnitTitle": "Remove credit card from unit",
|
|
582
|
+
"creditCards.delete.removeFromUnitConfirm": "Remove {0} credit card from {1} organizational unit?",
|
|
583
|
+
"creditCards.delete.removeFromUnitDescription": "This action will prevent users in this unit from accessing this credit card during checkout",
|
|
584
|
+
"creditCards.actions.setAsDefault": "Set as default",
|
|
585
|
+
"creditCards.actions.unsetAsDefault": "Unset as default",
|
|
586
|
+
"creditCards.table.cardNickname": "Card Nickname",
|
|
587
|
+
"creditCards.empty.noCreditCards": "No credit cards yet",
|
|
588
|
+
"accountingFields.table.columnName": "Name",
|
|
589
|
+
"accountingFields.table.columnDescription": "Description",
|
|
590
|
+
"accountingFields.messages.emptyValueRequired": "Due to the field settings, at least one value is required for buyers to complete checkout.",
|
|
591
|
+
"accountingFields.messages.createFieldDescription": "Add and configure up to 20 custom accounting fields used by buyers at checkout",
|
|
592
|
+
"accountingFields.messages.editFieldDescription": "Set how buyers in this unit should enter {0}s during checkout",
|
|
593
|
+
"accountingFields.messages.alreadyInList": "Already in the list — select to add",
|
|
594
|
+
"accountingFields.messages.requiredValueDescription": "Since you selected \"Required\" and disabled \"Open text input,\" you must add at least one value for buyers to complete checkout.",
|
|
595
|
+
"accountingFields.messages.confirmFieldUpdateDescription": "This accounting field is used by all organizational units. Updates will affect all of them.",
|
|
596
|
+
"accountingFields.messages.proceedWithUpdate": "Proceed with the update?",
|
|
597
|
+
"accountingFields.messages.confirmValueUpdateDescription": "This value may be used by multiple units. Updates will affect all of them.",
|
|
598
|
+
"accountingFields.buttons.addValue": "Add value",
|
|
599
|
+
"accountingFields.drawers.fieldSettingsTitle": "Field settings",
|
|
600
|
+
"accountingFields.drawers.addFieldTitle": "Add accounting field",
|
|
601
|
+
"accountingFields.drawers.addFirstValueTitle": "Add a first field value",
|
|
602
|
+
"accountingFields.drawers.addValueTitle": "Add {0} value",
|
|
603
|
+
"accountingFields.drawers.editValueTitle": "Edit {0} value",
|
|
604
|
+
"accountingFields.drawers.deleteFieldTitle": "Delete accounting field",
|
|
605
|
+
"accountingFields.drawers.deleteValueTitle": "Delete {0}",
|
|
606
|
+
"accountingFields.drawers.removeFromUnitTitle": "Remove {0} from unit",
|
|
607
|
+
"accountingFields.drawers.confirmFieldUpdateTitle": "Confirm field update",
|
|
608
|
+
"accountingFields.drawers.confirmValueUpdateTitle": "Confirm {0} update",
|
|
609
|
+
"accountingFields.settings.listTypeTitle": "List type",
|
|
610
|
+
"accountingFields.forms.fieldLabel": "Field label",
|
|
611
|
+
"accountingFields.forms.inputLevel": "Input level",
|
|
612
|
+
"accountingFields.forms.orderLevel": "Order level - Applies to the entire order",
|
|
613
|
+
"accountingFields.forms.itemLevel": "Item level - Applies to each item in the cart",
|
|
614
|
+
"accountingFields.forms.inputRequirement": "Input requirement",
|
|
615
|
+
"accountingFields.forms.required": "Required",
|
|
616
|
+
"accountingFields.forms.optional": "Optional",
|
|
617
|
+
"accountingFields.forms.enableOpenTextInput": "Enable open text input so buyers can enter a value manually at checkout",
|
|
618
|
+
"accountingFields.forms.descriptionOptional": "Description (optional)",
|
|
619
|
+
"accountingFields.validation.fieldLabelRequired": "Field label is required",
|
|
620
|
+
"accountingFields.validation.nameRequired": "Name is required",
|
|
621
|
+
"accountingFields.tooltips.fieldLabelInfo": "Sets the label displayed to buyers for this field at checkout.",
|
|
622
|
+
"accountingFields.dropdown.addValues": "Add values",
|
|
623
|
+
"accountingFields.dropdown.fieldSettings": "Field settings",
|
|
624
|
+
"accountingFields.dropdown.edit": "Edit",
|
|
625
|
+
"accountingFields.dropdown.unsetAsDefault": "Unset as default",
|
|
626
|
+
"accountingFields.dropdown.setAsDefault": "Set as default",
|
|
627
|
+
"accountingFields.dropdown.removeFromUnit": "Remove from unit",
|
|
628
|
+
"accountingFields.toasts.fieldAdded": "Accounting field added successfully",
|
|
629
|
+
"accountingFields.toasts.fieldSettingsEdited": "Field settings edited successfully",
|
|
630
|
+
"accountingFields.toasts.fieldSettingsEditFailed": "Failed to edit field settings",
|
|
631
|
+
"accountingFields.toasts.fieldDeleted": "{0} deleted successfully",
|
|
632
|
+
"accountingFields.toasts.fieldDeleteFailed": "Failed to delete {0}.",
|
|
633
|
+
"accountingFields.toasts.valueAdded": "{0} value added successfully",
|
|
634
|
+
"accountingFields.toasts.addValueFailed": "Failed to add {0} value",
|
|
635
|
+
"accountingFields.toasts.valueEdited": "{0} value edited successfully",
|
|
636
|
+
"accountingFields.toasts.valueEditFailed": "Failed to edit {0} value",
|
|
637
|
+
"accountingFields.toasts.valueDeleted": "{0} value deleted successfully",
|
|
638
|
+
"accountingFields.toasts.valueDeleteFailed": "Failed to delete {0} value",
|
|
639
|
+
"accountingFields.toasts.defaultValueSaved": "Default {0} value saved successfully",
|
|
640
|
+
"accountingFields.toasts.defaultValueSaveFailed": "Failed to save {0} value",
|
|
641
|
+
"accountingFields.toasts.defaultValueUnset": "Default {0} value unset successfully",
|
|
642
|
+
"accountingFields.toasts.defaultValueUnsetFailed": "Failed to unset {0} value",
|
|
643
|
+
"accountingFields.toasts.createFieldFailed": "Failed to create accounting field",
|
|
644
|
+
"accountingFields.toasts.createValueFailed": "Failed to create accounting value field",
|
|
645
|
+
"accountingFields.toasts.scopeConfigUpdateFailed": "Failed to update scope configuration",
|
|
646
|
+
"accountingFields.delete.confirmPermanentDelete": "Permanently delete {0}?",
|
|
647
|
+
"accountingFields.delete.fieldDeleteWarning": "This accounting field is used across all organizational units. Deleting it will permanently remove the field, all its values, and all related data from every unit, though usage history will be retained for audit purposes. This action can't be undone.",
|
|
648
|
+
"accountingFields.delete.confirmByTypingFieldLabel": "Confirm by typing the field label below:",
|
|
649
|
+
"accountingFields.delete.confirmPermanentDeleteValue": "Permanently delete {0}?",
|
|
650
|
+
"accountingFields.delete.valueDeleteWarning": "This {0} may be used by multiple units. Deleting it will permanently remove it and all its data from all associated units, though usage history will be kept for audit. This action can't be undone.",
|
|
651
|
+
"accountingFields.delete.confirmByTypingName": "Confirm by typing the name below:",
|
|
652
|
+
"accountingFields.delete.removeFromUnitConfirm": "Remove {0} {1} from {2}?",
|
|
653
|
+
"accountingFields.delete.removeFromUnitWarning": "This action will prevent users in this unit from accessing this {0} during checkout.",
|
|
654
|
+
"accountingFields.empty.noValuesTitle": "No values yet",
|
|
655
|
+
"paymentMethods.titles.paymentMethods": "Payment methods",
|
|
656
|
+
"paymentMethods.drawers.addTitle": "Add payment methods",
|
|
657
|
+
"paymentMethods.drawers.addDescription": "Add payment methods to {0}",
|
|
658
|
+
"paymentMethods.drawers.removeTitle": "Remove payment method from unit",
|
|
659
|
+
"paymentMethods.settings.drawerTitle": "Payment method settings",
|
|
660
|
+
"paymentMethods.settings.listTypeTitle": "List type",
|
|
661
|
+
"paymentMethods.table.columnName": "Name",
|
|
662
|
+
"paymentMethods.delete.removeConfirm": "Remove {0} contract from {1} organizational unit?",
|
|
663
|
+
"paymentMethods.delete.removeWarning": "This action will prevent users in this unit from accessing this payment method during checkout.",
|
|
664
|
+
"paymentMethods.tooltips.allMethodsAdded": "All available payment methods have already been added to this organizational unit",
|
|
665
|
+
"paymentMethods.tooltips.cannotAddSharedList": "Cannot add items while using shared list",
|
|
666
|
+
"paymentMethods.tooltips.cannotRemoveSharedList": "Cannot remove items while using shared list",
|
|
667
|
+
"paymentMethods.tooltips.cannotRemoveLastMethod": "This payment method can't be removed. Each unit must have at least one active payment method. Add another one to proceed with the removal.",
|
|
668
|
+
"paymentMethods.tooltips.removeFromUnit": "Remove from unit",
|
|
669
|
+
"paymentMethods.toasts.methodsAdded": "Payment methods added successfully",
|
|
670
|
+
"paymentMethods.toasts.addMethodsFailed": "An error occurred while adding the payment methods",
|
|
671
|
+
"paymentMethods.toasts.scopeConfigUpdated": "Scope configuration updated successfully",
|
|
672
|
+
"paymentMethods.toasts.scopeConfigUpdateFailed": "Failed to update scope configuration",
|
|
673
|
+
"paymentMethods.toasts.methodRemoved": "Payment method removed successfully",
|
|
674
|
+
"paymentMethods.toasts.removeMethodFailed": "An error occurred while removing the payment method",
|
|
675
|
+
"paymentMethods.empty.noResultsTitle": "No results found",
|
|
676
|
+
"paymentMethods.empty.tryDifferentTerms": "Try using different terms",
|
|
677
|
+
"paymentMethods.empty.noPaymentMethodsFound": "No payment methods found",
|
|
678
|
+
"paymentMethods.empty.noPaymentMethodsAvailableTitle": "No payment methods available",
|
|
679
|
+
"paymentMethods.empty.noPaymentMethodsConfigured": "This contract does not have any payment methods configured.",
|
|
680
|
+
"paymentMethods.empty.ordersCannotBePlaced": "Orders cannot be placed until a payment method is defined.",
|
|
681
|
+
"paymentMethods.empty.allMethodsAlreadyAddedTitle": "All methods already added",
|
|
682
|
+
"paymentMethods.empty.noAdditionalMethods": "There are no additional payment methods to add for this unit.",
|
|
683
|
+
"productAssortment.titles.assortments": "Assortments",
|
|
684
|
+
"productAssortment.messages.subtitle": "Select the product assortment that users in this organizational unit should access",
|
|
685
|
+
"productAssortment.table.columnName": "Name",
|
|
686
|
+
"productAssortment.toasts.saveSuccess": "Assortment saved successfully",
|
|
687
|
+
"productAssortment.toasts.saveFailed": "Failed to save assortment",
|
|
688
|
+
"productAssortment.empty.noAssortmentsTitle": "No product assortments found.",
|
|
689
|
+
"productAssortment.empty.noAssortmentsDescription": "This organizational unit has no available product assortments.",
|
|
690
|
+
"contracts.titles.contracts": "Contracts",
|
|
691
|
+
"contracts.labels.status": "Status",
|
|
692
|
+
"contracts.actions.viewContracts": "View contracts",
|
|
693
|
+
"contracts.dropdown.open": "Open",
|
|
694
|
+
"contracts.dropdown.edit": "Edit",
|
|
695
|
+
"profile.titles.profile": "Profile",
|
|
696
|
+
"profile.titles.details": "Details",
|
|
697
|
+
"profile.labels.creationDate": "Creation Date",
|
|
698
|
+
"profile.actions.viewProfile": "View profile",
|
|
699
|
+
"b2bAgent.titles.b2bAgent": "B2B Agent",
|
|
700
|
+
"orderEntry.titles.orderEntryAgent": "Order Entry Agent"
|
|
701
|
+
}
|