Skip to content

Commit

Permalink
Updated resources for 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Herzog committed Aug 15, 2019
1 parent e34da43 commit 2517ba3
Show file tree
Hide file tree
Showing 9 changed files with 265 additions and 46 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
namespace SmartStore.Data.Migrations
{
using System;
using System.Data.Entity.Migrations;
using SmartStore.Data.Setup;

public partial class V322Resources : DbMigration, ILocaleResourcesProvider, IDataSeeder<SmartObjectContext>
{
public override void Up()
{
}

public override void Down()
{
}

public bool RollbackOnFailure
{
get { return false; }
}

public void Seed(SmartObjectContext context)
{
context.MigrateLocaleResources(MigrateLocaleResources);
context.SaveChanges();
}

public void MigrateLocaleResources(LocaleResourcesBuilder builder)
{
builder.AddOrUpdate("Admin.Configuration.Languages.NoAvailableLanguagesFound",
"There were no other available languages found for version {0}. On <a href=\"https://translate.smartstore.com/\" target=\"_blank\">translate.smartstore.com</a> you will find more details about available resources.",
"Es wurden keine weiteren verfügbaren Sprachen für Version {0} gefunden. Auf <a href=\"https://translate.smartstore.com/\" target=\"_blank\">translate.smartstore.com</a> finden Sie weitere Details zu verfügbaren Ressourcen.");

builder.AddOrUpdate("Checkout.OrderCompletes",
"Your order will be completed.",
"Ihre Bestellung wird abgeschlossen.");

builder.AddOrUpdate("Admin.Catalog.Attributes.CheckoutAttributes.Fields.TextPrompt",
"Text prompt",
"Text Eingabeaufforderung",
"Specifies the prompt text.",
"Legt den Text zur Eingabeaufforderung fest.");

builder.AddOrUpdate("Admin.Catalog.Products.ProductVariantAttributes.Attributes.Fields.TextPrompt",
"Text prompt",
"Text Eingabeaufforderung");

builder.AddOrUpdate("Admin.Catalog.Categories.Fields.ExternalLink",
"External link",
"Externer Link",
"Alternative external link for this category in the main menu and in category listings. For example, to a landing page that contains a back link to the category.",
"Abweichender, externer Verweis für diese Warengruppe im Hauptmenü und in Warengruppen-Listings. Z.B. auf eine Landingpage, die einen Rückverweis auf die Warengruppe enthält.");

builder.AddOrUpdate("Admin.ContentManagement.Menus.Title",
"Title",
"Titel",
"Specifies the title. Please keep in mind that this title is not displayed in all design templates.",
"Legt den Titel fest. Bitte beachten Sie, dass dieser Titel nicht bei allen Design-Vorlagen ausgegeben wird.");

builder.AddOrUpdate("Admin.ContentManagement.Menus.Item.InvalidRouteValues",
"Please check the link data. No link can be created on the basis of your input.",
"Bitte überprüfen Sie die Link-Daten. Auf Basis Ihrer Eingabe kann kein Link erzeugt werden.");

builder.AddOrUpdate("Admin.Packaging.IsIncompatible",
"The package is not compatible the current app version {0}. Please update Smartstore.NET or install another version of this package.",
"Das Paket ist nicht kompatibel mit der aktuellen Programmversion {0}. Bitte aktualisieren Sie Smartstore.NET oder nutzen Sie eine andere, kompatible Paket-Version.");
}
}
}

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -50,43 +50,7 @@ public void MigrateSettings(SmartObjectContext context)

public void MigrateLocaleResources(LocaleResourcesBuilder builder)
{
builder.AddOrUpdate("Admin.Configuration.Languages.NoAvailableLanguagesFound",
"There were no other available languages found for version {0}. On <a href=\"https://translate.smartstore.com/\" target=\"_blank\">translate.smartstore.com</a> you will find more details about available resources.",
"Es wurden keine weiteren verfügbaren Sprachen für Version {0} gefunden. Auf <a href=\"https://translate.smartstore.com/\" target=\"_blank\">translate.smartstore.com</a> finden Sie weitere Details zu verfügbaren Ressourcen.");

builder.AddOrUpdate("Checkout.OrderCompletes",
"Your order will be completed.",
"Ihre Bestellung wird abgeschlossen.");

builder.AddOrUpdate("Admin.Catalog.Attributes.CheckoutAttributes.Fields.TextPrompt",
"Text prompt",
"Text Eingabeaufforderung",
"Specifies the prompt text.",
"Legt den Text zur Eingabeaufforderung fest.");

builder.AddOrUpdate("Admin.Catalog.Products.ProductVariantAttributes.Attributes.Fields.TextPrompt",
"Text prompt",
"Text Eingabeaufforderung");

builder.AddOrUpdate("Admin.Catalog.Categories.Fields.ExternalLink",
"External link",
"Externer Link",
"Alternative external link for this category in the main menu and in category listings. For example, to a landing page that contains a back link to the category.",
"Abweichender, externer Verweis für diese Warengruppe im Hauptmenü und in Warengruppen-Listings. Z.B. auf eine Landingpage, die einen Rückverweis auf die Warengruppe enthält.");

builder.AddOrUpdate("Admin.ContentManagement.Menus.Title",
"Title",
"Titel",
"Specifies the title. Please keep in mind that this title is not displayed in all design templates.",
"Legt den Titel fest. Bitte beachten Sie, dass dieser Titel nicht bei allen Design-Vorlagen ausgegeben wird.");

builder.AddOrUpdate("Admin.ContentManagement.Menus.Item.InvalidRouteValues",
"Please check the link data. No link can be created on the basis of your input.",
"Bitte überprüfen Sie die Link-Daten. Auf Basis Ihrer Eingabe kann kein Link erzeugt werden.");

builder.AddOrUpdate("Admin.Packaging.IsIncompatible",
"The package is not compatible the current app version {0}. Please update Smartstore.NET or install another version of this package.",
"Das Paket ist nicht kompatibel mit der aktuellen Programmversion {0}. Bitte aktualisieren Sie Smartstore.NET oder nutzen Sie eine andere, kompatible Paket-Version.");
}
}
}
7 changes: 7 additions & 0 deletions src/Libraries/SmartStore.Data/SmartStore.Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,10 @@
<Compile Include="Migrations\201907032251575_CategoryExternalLink.Designer.cs">
<DependentUpon>201907032251575_CategoryExternalLink.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201908150749388_V322Resources.cs" />
<Compile Include="Migrations\201908150749388_V322Resources.Designer.cs">
<DependentUpon>201908150749388_V322Resources.cs</DependentUpon>
</Compile>
<Compile Include="ObjectContextBase.SaveChanges.cs" />
<Compile Include="Setup\Builder\ActivityLogTypeMigrator.cs" />
<Compile Include="Setup\Builder\PermissionMigrator.cs" />
Expand Down Expand Up @@ -1221,6 +1225,9 @@
<EmbeddedResource Include="Migrations\201907032251575_CategoryExternalLink.resx">
<DependentUpon>201907032251575_CategoryExternalLink.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Migrations\201908150749388_V322Resources.resx">
<DependentUpon>201908150749388_V322Resources.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Sql\Indexes.sql" />
<EmbeddedResource Include="Sql\StoredProcedures.sql" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1021,10 +1021,10 @@
<Value>Bestimmt die Steuerklasse des Attributes. Steuerklassen können zentral über Setup &gt; Steuern &gt; Steuerklassen verwaltet werden.</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Attributes.CheckoutAttributes.Fields.TextPrompt">
<Value>Anzeigename</Value>
<Value>Text Eingabeaufforderung</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Attributes.CheckoutAttributes.Fields.TextPrompt.Hint">
<Value>Anzeigename</Value>
<Value>Legt den Text zur Eingabeaufforderung fest.</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Attributes.CheckoutAttributes.Info">
<Value>Allgemein</Value>
Expand Down Expand Up @@ -1392,6 +1392,12 @@
<LocaleResource Name="Admin.Catalog.Categories.Fields.DisplayOrder.Hint">
<Value>Legt die Anzeige-Priorität fest (1 steht bspw. für das erste Element in der Liste)</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Categories.Fields.ExternalLink">
<Value>Externer Link</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Categories.Fields.ExternalLink.Hint">
<Value>Abweichender, externer Verweis für diese Warengruppe im Hauptmenü und in Warengruppen-Listings. Z.B. auf eine Landingpage, die einen Rückverweis auf die Warengruppe enthält.</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Categories.Fields.FullName">
<Value>Vollständiger Name</Value>
</LocaleResource>
Expand Down Expand Up @@ -2741,7 +2747,7 @@
<Value>Ist erforderlich</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Products.ProductVariantAttributes.Attributes.Fields.TextPrompt">
<Value>Anzeigetext</Value>
<Value>Text Eingabeaufforderung</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Products.ProductVariantAttributes.Attributes.Values">
<Value>Optionen</Value>
Expand Down Expand Up @@ -7745,6 +7751,9 @@
<LocaleResource Name="Admin.ContentManagement.Menus.Item.Icon.Hint">
<Value>Legt ein optionales Icon fest.</Value>
</LocaleResource>
<LocaleResource Name="Admin.ContentManagement.Menus.Item.InvalidRouteValues">
<Value>Bitte überprüfen Sie die Link-Daten. Auf Basis Ihrer Eingabe kann kein Link erzeugt werden.</Value>
</LocaleResource>
<LocaleResource Name="Admin.ContentManagement.Menus.Item.LinkTarget">
<Value>Ziel</Value>
</LocaleResource>
Expand Down Expand Up @@ -7824,7 +7833,7 @@
<Value>Titel</Value>
</LocaleResource>
<LocaleResource Name="Admin.ContentManagement.Menus.Title.Hint">
<Value>Legt den Titel fest.</Value>
<Value>Legt den Titel fest. Bitte beachten Sie, dass dieser Titel nicht bei allen Design-Vorlagen ausgegeben wird.</Value>
</LocaleResource>
<LocaleResource Name="Admin.ContentManagement.Menus.WidgetZone">
<Value>Widget Zone</Value>
Expand Down Expand Up @@ -10968,7 +10977,7 @@
<Value>Paket wurde hochgeladen und erfolgreich installiert.</Value>
</LocaleResource>
<LocaleResource Name="Admin.Packaging.IsIncompatible">
<Value>Das Paket ist nicht kompatibel mit der aktuallen Programmversion {0}. Bitte aktualisieren Sie SmartStore.NET oder nutzen Sie eine andere, kompatible Paket-Version.</Value>
<Value>Das Paket ist nicht kompatibel mit der aktuellen Programmversion {0}. Bitte aktualisieren Sie Smartstore.NET oder nutzen Sie eine andere, kompatible Paket-Version.</Value>
</LocaleResource>
<LocaleResource Name="Admin.Packaging.NotAPackage">
<Value>Paket-Datei ist ungültig. Bitte laden Sie eine 'SmartStore.*.nupkg' Datei hoch.</Value>
Expand Down Expand Up @@ -12912,6 +12921,9 @@
<LocaleResource Name="Checkout.NoPaymentMethods">
<Value>Es sind keine Zahlungsarten verfügbar.</Value>
</LocaleResource>
<LocaleResource Name="Checkout.OrderCompletes">
<Value>Ihre Bestellung wird abgeschlossen.</Value>
</LocaleResource>
<LocaleResource Name="Checkout.OrderHasBeenReceived">
<Value>Ihre Bestellung ist angekommen</Value>
</LocaleResource>
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
201905271110370_V321Resources
201908150749388_V322Resources
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@
<Value>Text prompt</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Attributes.CheckoutAttributes.Fields.TextPrompt.Hint">
<Value>Enter text prompt.</Value>
<Value>Specifies the prompt text.</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Attributes.CheckoutAttributes.Info">
<Value>Attribute info</Value>
Expand Down Expand Up @@ -1431,6 +1431,12 @@
<LocaleResource Name="Admin.Catalog.Categories.Fields.DisplayOrder.Hint">
<Value>Set the category's display order. 1 represents the top of the list.</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Categories.Fields.ExternalLink">
<Value>External link</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Categories.Fields.ExternalLink.Hint">
<Value>Alternative external link for this category in the main menu and in category listings. For example, to a landing page that contains a back link to the category.</Value>
</LocaleResource>
<LocaleResource Name="Admin.Catalog.Categories.Fields.FullName">
<Value>Complete name</Value>
</LocaleResource>
Expand Down Expand Up @@ -7937,6 +7943,9 @@
<LocaleResource Name="Admin.ContentManagement.Menus.Item.Icon.Hint">
<Value>Specifies an optional icon.</Value>
</LocaleResource>
<LocaleResource Name="Admin.ContentManagement.Menus.Item.InvalidRouteValues">
<Value>Please check the link data. No link can be created on the basis of your input.</Value>
</LocaleResource>
<LocaleResource Name="Admin.ContentManagement.Menus.Item.LinkTarget">
<Value>Target</Value>
</LocaleResource>
Expand Down Expand Up @@ -8016,7 +8025,7 @@
<Value>Title</Value>
</LocaleResource>
<LocaleResource Name="Admin.ContentManagement.Menus.Title.Hint">
<Value>Specifies the title.</Value>
<Value>Specifies the title. Please keep in mind that this title is not displayed in all design templates.</Value>
</LocaleResource>
<LocaleResource Name="Admin.ContentManagement.Menus.WidgetZone">
<Value>Widget zone</Value>
Expand Down Expand Up @@ -11241,7 +11250,7 @@
<Value>Package was uploaded and installed successfully.</Value>
</LocaleResource>
<LocaleResource Name="Admin.Packaging.IsIncompatible">
<Value>The package is not compatible the current app version {0}. Please update SmartStore.NET or install another version of this package.</Value>
<Value>The package is not compatible the current app version {0}. Please update Smartstore.NET or install another version of this package.</Value>
</LocaleResource>
<LocaleResource Name="Admin.Packaging.NotAPackage">
<Value>Package file is invalid. Please upload a 'SmartStore.*.nupkg' file.</Value>
Expand Down Expand Up @@ -13266,6 +13275,9 @@
<LocaleResource Name="Checkout.NoPaymentMethods">
<Value>No payment methods available</Value>
</LocaleResource>
<LocaleResource Name="Checkout.OrderCompletes">
<Value>Your order will be completed.</Value>
</LocaleResource>
<LocaleResource Name="Checkout.OrderHasBeenReceived">
<Value>Your order has been received</Value>
</LocaleResource>
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
201905271110370_V321Resources
201908150749388_V322Resources

0 comments on commit 2517ba3

Please sign in to comment.