Skip to content

Commit e5a5810

Browse files
committed
Added new string resources
1 parent 9e45857 commit e5a5810

2 files changed

Lines changed: 23 additions & 1 deletion

File tree

changelog.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@
66
* #2014 Added paging and sorting for top customers report.
77
* #1735 Added a setting to open a product directly if the search term matches a SKU, MPN or GTIN.
88
* #1239 Added configurability of the password strength.
9+
* #1678 Determine initial working currency based on IP/country.
10+
* #1697 Added picture and color options to checkout attribute values.
911

1012
### Improvements
1113
* #1981 Added grouping for cart rules.
1214
* #1407 Added menu to set order and payment status for orders checked in backend grid.
13-
* #1778: Back button closes offcanvas menu/cart.
15+
* #1778 Back button closes offcanvas menu/cart.
1416

1517

1618
## Smartstore 4.0.1

src/Libraries/SmartStore.Data/Migrations/MigrationsConfiguration.cs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,26 @@ public void MigrateLocaleResources(LocaleResourcesBuilder builder)
114114
builder.AddOrUpdate("Admin.Orders.ProcessingResult",
115115
"<div>{0} of {1} orders were successfully processed.</div><div{3}>{2} orders cannot be changed as desired due to their current status and were skipped.</div>",
116116
"<div>Es wurden {0} von {1} Aufträgen erfolgreich verarbeitet.</div><div{3}>{2} Aufträge können aufgrund ihres aktuellen Status nicht wie gewünscht geändert werden und wurden übersprungen.</div>");
117+
118+
builder.AddOrUpdate("Admin.Configuration.Countries.Fields.DefaultCurrency",
119+
"Default currency",
120+
"Standardwährung",
121+
"Specifies the default currency. Preselects the default currency in the shop according to the country to which the current IP address belongs.",
122+
"Legt die Standardwährung fest. Bewirkt im Shop eine Vorauswahl der Standardwährung anhand des Landes, zu dem die aktuelle IP-Adresse gehört.");
123+
124+
builder.AddOrUpdate("Admin.Catalog.Attributes.CheckoutAttributes.Values.Fields.MediaFile",
125+
"Picture",
126+
"Bild",
127+
"Specifies an image to be displayed as the selection element for the attribute.",
128+
"Legt ein Bild fest, welches als Auswahlelement für das Attribut angezeigt werden soll.");
129+
130+
builder.AddOrUpdate("Admin.Catalog.Attributes.CheckoutAttributes.Values.Fields.Color",
131+
"RGB color",
132+
"RGB-Farbe",
133+
"Specifies a color for the color squares control.",
134+
"Legt eine Farbe für das Farbflächen-Steuerelement fest.");
135+
136+
builder.AddOrUpdate("Common.Entity.CheckoutAttributeValue", "Checkout attribute option", "Checkout-Attribut-Option");
117137
}
118138
}
119139
}

0 commit comments

Comments
 (0)