Skip to content

Commit

Permalink
Merge pull request #3620 from plentymarkets/fix/small_feedback_about_…
Browse files Browse the repository at this point in the history
…gpsr_display

Fix/small feedback about gpsr display
  • Loading branch information
teodorrosusn authored Dec 4, 2024
2 parents e0fa89e + a7c8e9a commit 31049a5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@
"caption": "Config.itemManufacturerTown"
},
{
"value": "country",
"value": "countryId",
"caption": "Config.itemManufacturerCountry"
},
{
Expand Down
10 changes: 5 additions & 5 deletions resources/lang/de/Widget.properties
Original file line number Diff line number Diff line change
Expand Up @@ -784,14 +784,14 @@ dataFieldBarcodeType = "Typ"
dataFieldBarcodeCode = "Code"
; Data Fields - Manufacturer
dataFieldManufacturer = "Hersteller"
dataFieldManufacturerName = "Herstellername"
dataFieldManufacturerName = "Hersteller Name"
dataFieldManufacturerExternalName = "Externer Herstellername"
dataFieldManufacturerLogo = "Herstellerlogo"
dataFieldManufacturerHomepage = "Hersteller Homepage"
dataFieldManufacturerStreet = "Herstellerstraße"
dataFieldManufacturerHouseNo = "Hergestellte Hausnummer"
dataFieldManufacturerStreet = "Hersteller Straße"
dataFieldManufacturerHouseNo = "Hersteller Hausnummer"
dataFieldManufacturerPostCode = "Hersteller Postleitzahl"
dataFieldManufacturerTown = "Hersteller Ort"
dataFieldManufacturerTown = "Hersteller Stadt"
dataFieldManufacturerCountry = "Hersteller Land"
dataFieldManufacturerPhoneNo = "Hersteller Telefonnummer"
dataFieldManufacturerFaxNo = "Hersteller Faxnummer"
Expand All @@ -802,7 +802,7 @@ dataFieldManufacturerResponsibleName = "EU-Verantwortlicher Name"
dataFieldManufacturerResponsibleStreet = "EU-Verantwortlicher Straße"
dataFieldManufacturerResponsibleHouseNo = "EU-Verantwortlicher Hausnummer"
dataFieldManufacturerResponsiblePostCode = "EU-Verantwortlicher Postleitzahl"
dataFieldManufacturerResponsibleTown = "EU-Verantwortlicher Ort"
dataFieldManufacturerResponsibleTown = "EU-Verantwortlicher Stadt"
dataFieldManufacturerResponsibleCountry = "EU-Verantwortlicher Land"
dataFieldManufacturerResponsibleEmail = "EU-Verantwortlicher E-Mail"
dataFieldManufacturerResponsiblePhoneNo = "EU-Verantwortlicher Telefonnummer"
Expand Down
2 changes: 1 addition & 1 deletion src/Builders/EuManufacturer/EuManufacturerBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ public function withDetailedAddress(): EuManufacturerBuilder
*/
public function withGeneralAddress(): EuManufacturerBuilder
{
$this->generalAddressBuilder->withPostCode();
$this->generalAddressBuilder->withCity();
$this->generalAddressBuilder->withCountry();
$this->generalAddressBuilder->withPostCode();
$this->results[] = $this->generalAddressBuilder->build();

return $this;
Expand Down
2 changes: 1 addition & 1 deletion src/Wizard/ShopWizard/Config/ItemViewConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ItemViewConfig
"itemManufacturerHouseNo" => "houseNo",
"itemManufacturerPostcode" => "postcode",
"itemManufacturerTown" => "town",
"itemManufacturerCountry" => "country",
"itemManufacturerCountry" => "countryId",
"itemManufacturerTelephoneNumber" => "phoneNumber",
"itemManufacturerFaxNumber" => "faxNumber",
"itemManufacturerEmail" => "email",
Expand Down

0 comments on commit 31049a5

Please sign in to comment.