diff --git a/e2e/cypress/integration/specs/account/edit-user-company.b2b.e2e-spec.ts b/e2e/cypress/integration/specs/account/edit-user-company.b2b.e2e-spec.ts index cbb29f305f..5ea2cd8af9 100644 --- a/e2e/cypress/integration/specs/account/edit-user-company.b2b.e2e-spec.ts +++ b/e2e/cypress/integration/specs/account/edit-user-company.b2b.e2e-spec.ts @@ -23,9 +23,9 @@ describe('Changing User', () => { page.fillForm(_.user.login, _.user.password).submit().its('response.statusCode').should('equal', 200) ); at(ProfilePage, page => { - page.name.should('have.text', `${_.user.firstName} ${_.user.lastName}`); - page.phone.should('have.text', _.user.phoneHome); - page.companyName.should('have.text', _.user.companyName1); + page.name.should('contain', `${_.user.firstName} ${_.user.lastName}`); + page.phone.should('contain', _.user.phoneHome); + page.companyName.should('contain', _.user.companyName1); page.taxationId.should('be.empty'); }); }); @@ -37,8 +37,8 @@ describe('Changing User', () => { page.fillForm(_.newDetails).submit().its('response.statusCode').should('equal', 200) ); at(ProfilePage, page => { - page.companyName.should('have.text', `${_.newDetails.companyName}${_.newDetails.companyName2}`); - page.taxationId.should('have.text', _.newDetails.taxationID); + page.companyName.should('contain', `${_.newDetails.companyName}${_.newDetails.companyName2}`); + page.taxationId.should('contain', _.newDetails.taxationID); }); }); }); diff --git a/e2e/cypress/integration/specs/account/edit-user-details.b2c.e2e-spec.ts b/e2e/cypress/integration/specs/account/edit-user-details.b2c.e2e-spec.ts index f3f23078bd..8f81e86c8d 100644 --- a/e2e/cypress/integration/specs/account/edit-user-details.b2c.e2e-spec.ts +++ b/e2e/cypress/integration/specs/account/edit-user-details.b2c.e2e-spec.ts @@ -25,8 +25,8 @@ describe('Changing User', () => { ); at(ProfilePage, page => { - page.name.should('have.text', `${_.user.firstName} ${_.user.lastName}`); - page.phone.should('have.text', _.user.phoneHome); + page.name.should('contain', `${_.user.firstName} ${_.user.lastName}`); + page.phone.should('contain', _.user.phoneHome); }); }); @@ -38,8 +38,8 @@ describe('Changing User', () => { ); at(ProfilePage, page => { page.header.myAccountLink.should('have.text', `${_.newDetails.firstName} ${_.newDetails.lastName}`); - page.name.should('have.text', `${_.newDetails.title} ${_.newDetails.firstName} ${_.newDetails.lastName}`); - page.phone.should('have.text', _.newDetails.phoneHome); + page.name.should('contain', `${_.newDetails.title} ${_.newDetails.firstName} ${_.newDetails.lastName}`); + page.phone.should('contain', _.newDetails.phoneHome); }); }); }); diff --git a/src/app/extensions/compare/pages/compare/product-compare-list/product-compare-list.component.html b/src/app/extensions/compare/pages/compare/product-compare-list/product-compare-list.component.html index 456cbcf16d..7a2272cf3f 100644 --- a/src/app/extensions/compare/pages/compare/product-compare-list/product-compare-list.component.html +++ b/src/app/extensions/compare/pages/compare/product-compare-list/product-compare-list.component.html @@ -82,15 +82,6 @@ {{ product.manufacturer }} - - {{ commonAttributeName }} diff --git a/src/app/extensions/quoting/shared/quote-line-item-list/quote-line-item-list.component.html b/src/app/extensions/quoting/shared/quote-line-item-list/quote-line-item-list.component.html index fa01775846..b822df4ac4 100644 --- a/src/app/extensions/quoting/shared/quote-line-item-list/quote-line-item-list.component.html +++ b/src/app/extensions/quoting/shared/quote-line-item-list/quote-line-item-list.component.html @@ -24,9 +24,7 @@
-
{{ 'quote.items.total.label' | translate }}
-
{{ total$ | async | ishPrice }}
diff --git a/src/app/pages/account-profile/account-profile/account-profile.component.html b/src/app/pages/account-profile/account-profile/account-profile.component.html index 145e8e0a90..3b50354fcf 100644 --- a/src/app/pages/account-profile/account-profile/account-profile.component.html +++ b/src/app/pages/account-profile/account-profile/account-profile.component.html @@ -1,6 +1,6 @@

{{ 'account.profile.heading' | translate }}

- +

{{ 'account.profile.email.heading' | translate }}

@@ -9,20 +9,6 @@

{{ 'account.profile.email.heading' | translate }}

{{ 'account.profile.email.label' | translate }}
{{ user.email }}
-
@@ -40,7 +26,7 @@

{{ 'account.profile.email.heading' | translate }}

- +

{{ 'account.profile.password.heading' | translate }}

@@ -72,10 +58,9 @@

{{ 'account.company_profile.detail.heading' | translate }}

{{ 'account.company_profile.name.label' | translate }}
- -
{{ customer.companyName }}
{{ customer.companyName2 }}
+
+ {{ customer.companyName }}
{{ customer.companyName2 }} +
{{ 'account.company_profile.industry.label' | translate }}
{{ customer.industry }}
@@ -99,7 +84,7 @@

{{ 'account.company_profile.detail.heading' | translate }}

- +

{{ 'account.profile.detail.heading' | translate }}

@@ -107,19 +92,18 @@

{{ 'account.profile.detail.heading' | translate }}

{{ 'account.profile.name.label' | translate }}
- -
{{ user.title ? user.title + ' ' : '' }}{{ user.firstName }} {{ user.lastName }}
+
+ {{ user.title ? user.title + ' ' : '' }}{{ user.firstName }} {{ user.lastName }} +
{{ 'account.profile.phone.label' | translate }}
{{ user.phoneHome }}
@@ -138,32 +122,6 @@

{{ 'account.profile.detail.heading' | translate }}

- - -

{{ 'account.overview.note.heading' | translate }}: diff --git a/src/app/shared/cms/components/cms-standard-page/cms-standard-page.component.html b/src/app/shared/cms/components/cms-standard-page/cms-standard-page.component.html index 35de06a7b9..78ab195dad 100644 --- a/src/app/shared/cms/components/cms-standard-page/cms-standard-page.component.html +++ b/src/app/shared/cms/components/cms-standard-page/cms-standard-page.component.html @@ -1,7 +1,3 @@ -

-
{{ 'quote.items.total.label' | translate }}
-
{{ total | ishPrice }}
diff --git a/src/app/shared/components/product/product-bundle-display/product-bundle-display.component.html b/src/app/shared/components/product/product-bundle-display/product-bundle-display.component.html index 9fe49b3e08..c79df6b41a 100644 --- a/src/app/shared/components/product/product-bundle-display/product-bundle-display.component.html +++ b/src/app/shared/components/product/product-bundle-display/product-bundle-display.component.html @@ -1,8 +1,7 @@
    - -
  • {{ item.quantity }} x
  • +
  • + {{ item.quantity }} x +
diff --git a/src/assets/i18n/de_DE.json b/src/assets/i18n/de_DE.json index 95cf90c83d..b3bb40227c 100644 --- a/src/assets/i18n/de_DE.json +++ b/src/assets/i18n/de_DE.json @@ -189,9 +189,6 @@ "account.navigation.logout.link": "Abmelden", "account.navigation.quotes.link": "Preisangebote", "account.new_user.heading": "Neue Benutzer", - "account.newsletter.label": "Newsletter", - "account.newsletter.subscribed": "Abonniert", - "account.newsletter.unsubscribed": "Nicht abonniert", "account.option.select.text": "Bitte auswählen", "account.order.most_recent.heading": "Letzte Bestellungen", "account.order.questions.note": "Besuchen Sie die Hilfe auf unserer Website für umfassende Bestell- und Versandinformationen oder kontaktieren Sie uns rund um die Uhr.", @@ -296,9 +293,6 @@ "account.profile.heading": "Profileinstellungen", "account.profile.link": "Profileinstellungen", "account.profile.name.label": "Name", - "account.profile.newsletter.text": "Newsletter", - "account.profile.order_confirmation_email.text": "Bestellbestätigungs-E-Mails", - "account.profile.order_confirmation_subscription.text": "Aktuelle Abonnements", "account.profile.password.heading": "Kennwort", "account.profile.password.label": "Kennwort", "account.profile.phone.label": "Telefon", @@ -857,7 +851,6 @@ "product.itemNumber.label": "Artikelnummer:", "product.items.label": "{{0, plural, one{# Element} other{# Elemente}}}", "product.manufacturer_name.label": "Herstellername", - "product.manufacturer_sku.label": "Hersteller-SKU", "product.out_of_stock.text": "Nicht verfügbar", "product.price.listPriceFallback.text": "{{0}}", "product.price.na.text": "k. A.", diff --git a/src/assets/i18n/en_US.json b/src/assets/i18n/en_US.json index deb2caa76c..2fe385807a 100644 --- a/src/assets/i18n/en_US.json +++ b/src/assets/i18n/en_US.json @@ -189,9 +189,6 @@ "account.navigation.logout.link": "Logout", "account.navigation.quotes.link": "Quoting", "account.new_user.heading": "New Users", - "account.newsletter.label": "Newsletter", - "account.newsletter.subscribed": "Subscribed", - "account.newsletter.unsubscribed": "Not Subscribed", "account.option.select.text": "Please select", "account.order.most_recent.heading": "Most Recent Orders", "account.order.questions.note": "Please visit the Help area of our website for comprehensive order and shipping information or Contact Us 24 hours a day.", @@ -296,9 +293,6 @@ "account.profile.heading": "Profile Settings", "account.profile.link": "Profile Settings", "account.profile.name.label": "Name", - "account.profile.newsletter.text": "Newsletter E-mails", - "account.profile.order_confirmation_email.text": "Order Confirmation E-mails", - "account.profile.order_confirmation_subscription.text": "Current Subscriptions", "account.profile.password.heading": "Password", "account.profile.password.label": "Password", "account.profile.phone.label": "Phone", @@ -857,7 +851,6 @@ "product.itemNumber.label": "Product ID:", "product.items.label": "{{0, plural, one{# list item} other{# list items}}}", "product.manufacturer_name.label": "Manufacturer Name", - "product.manufacturer_sku.label": "Manufacturer SKU", "product.out_of_stock.text": "Out of Stock", "product.price.listPriceFallback.text": "{{0}}", "product.price.na.text": "N/A", diff --git a/src/assets/i18n/fr_FR.json b/src/assets/i18n/fr_FR.json index 4ff837eeb0..88ece75308 100644 --- a/src/assets/i18n/fr_FR.json +++ b/src/assets/i18n/fr_FR.json @@ -189,9 +189,6 @@ "account.navigation.logout.link": "Déconnexion", "account.navigation.quotes.link": "Devis", "account.new_user.heading": "Nouveaux utilisateurs", - "account.newsletter.label": "Newsletter", - "account.newsletter.subscribed": "Abonné", - "account.newsletter.unsubscribed": "Non abonné", "account.option.select.text": "Veuillez sélectionner", "account.order.most_recent.heading": "Les commandes les plus récentes", "account.order.questions.note": "Merci de consulter la section Aide de notre site Web pour des renseignements détaillés sur votre commande et l’expédition ou Contactez-nous 24 heures sur 24.", @@ -296,9 +293,6 @@ "account.profile.heading": "Paramètres de profil", "account.profile.link": "Paramètres de profil", "account.profile.name.label": "Nom", - "account.profile.newsletter.text": "Courriels newsletter", - "account.profile.order_confirmation_email.text": "Courriels de confirmation de commande", - "account.profile.order_confirmation_subscription.text": "Abonnements actuels", "account.profile.password.heading": "Mot de passe", "account.profile.password.label": "Mot de passe", "account.profile.phone.label": "Téléphone", @@ -857,7 +851,6 @@ "product.itemNumber.label": "ID produit :", "product.items.label": "{{0, plural, one{# article} other{# articles}}}", "product.manufacturer_name.label": "Nom du fabricant", - "product.manufacturer_sku.label": "UGS du fabricant", "product.out_of_stock.text": "Stock épuisé", "product.price.listPriceFallback.text": "{{0}}", "product.price.na.text": "n.c.",