@@ -98,6 +98,7 @@ public void MigrateLocaleResources(LocaleResourcesBuilder builder)
9898 builder . AddOrUpdate ( "Common.Projection" , "Projection" , "Projektion" ) ;
9999 builder . AddOrUpdate ( "Common.Deployment" , "Deployment" , "Bereitstellung" ) ;
100100 builder . AddOrUpdate ( "Common.Website" , "Website" , "Web-Seite" ) ;
101+ builder . AddOrUpdate ( "Common.DetailDescription" , "Detail description" , "Detailbeschreibung" ) ;
101102
102103 builder . AddOrUpdate ( "Admin.Validation.UsernamePassword" , "Please enter username and password" , "Bitte geben Sie Benutzername und Passwort ein" ) ;
103104 builder . AddOrUpdate ( "Admin.Validation.Url" , "Please enter a valid URL" , "Bitte geben Sie eine gültige URL ein" ) ;
@@ -336,12 +337,82 @@ public void MigrateLocaleResources(LocaleResourcesBuilder builder)
336337 "Specifies the currency to be applied to the export." ,
337338 "Legt die auf den Export anzuwendende Währung fest." ) ;
338339
340+ builder . AddOrUpdate ( "Admin.Configuration.Export.Projection.CustomerId" ,
341+ "Customer ID" ,
342+ "Kunden-ID" ,
343+ "Specifies the ID of the customer to be applied to the export. Is taken into account for price calculations for example." ,
344+ "Legt die ID des Kunden fest, auf den sich der Export beziehen soll. Wird z.B. bei Preisberechnungen berücksichtigt." ) ;
345+
346+ builder . AddOrUpdate ( "Admin.Configuration.Export.Projection.DescriptionMerging" ,
347+ "Product description" ,
348+ "Artikelbeschreibung" ,
349+ "Specifies what information to use for the description of the product." ,
350+ "Legt fest, welche Informationen zur Beschreibung des Artikel wie verwendet werden sollen." ) ;
351+
352+ builder . AddOrUpdate ( "Admin.Configuration.Export.Projection.DescriptionToPlainText" ,
353+ "Remove HTML from description" ,
354+ "HTML aus der Beschreibung entfernen" ,
355+ "Specifies whether to remove all HTML from the product description for the export." ,
356+ "Legt fest, ob für den Export alle HTML-Auszeichnungen aus der Artikelbeschreibung entfernt werden sollen." ) ;
357+
358+ builder . AddOrUpdate ( "Admin.Configuration.Export.Projection.AppendDescriptionText" ,
359+ "Text to be appended" ,
360+ "Anzuhängender Text" ,
361+ "Specifies the text to be attached to the product description. You can enter multiple, semicolon delimited texts. Then one of it is selected randomly." ,
362+ "Legt den an die Artikelbeschreibung anzuhängenden Text fest. Es können auch mehrere, durch Semikolon getrennte Texte eingegeben werden. Dann wird per Zufall einer ausgewählt." ) ;
363+
364+ builder . AddOrUpdate ( "Admin.Configuration.Export.Projection.RemoveCriticalCharacters" ,
365+ "Remove critical characters" ,
366+ "Kritische Zeichen entfernen" ,
367+ "Specifies whether to remove critical characters (like ½) from the detail description." ,
368+ "Legt fest, ob kritische Zeichen (wie z.B. ½) aus der Detailsbeschreibung entfernt werden sollen." ) ;
369+
370+ builder . AddOrUpdate ( "Admin.Configuration.Export.Projection.CriticalCharacters" ,
371+ "Critical characters" ,
372+ "Kritische Zeichen" ,
373+ "List with semicolon delimited characters to be removed from the detail description." ,
374+ "Liste mit Semikolon getrennten Zeichen, die aus der Detailbeschreibung entfernt werden sollen." ) ;
375+
376+ builder . AddOrUpdate ( "Admin.Configuration.Export.Projection.PriceType" ,
377+ "Product price" ,
378+ "Produktpreis" ,
379+ "Specifies the product price to be exported." ,
380+ "Legt den zu exportierenden Produktpreis fest." ) ;
381+
382+ builder . AddOrUpdate ( "Admin.Configuration.Export.Projection.ConvertNetToGrossPrices" ,
383+ "Convert net into gross prices" ,
384+ "Netto- in Bruttopreise umrechnen" ,
385+ "Specifies to convert net into gross prices." ,
386+ "Legt fest, dass Netto- in Bruttopreise umgerechnet werden sollen." ) ;
387+
388+ builder . AddOrUpdate ( "Admin.Configuration.Export.Projection.Brand" ,
389+ "Manufacturer\\ Brand" ,
390+ "Hersteller\\ Marke" ,
391+ "Specifies the manufacturer or brand to be exported, if a product has no manufacturer assigned." ,
392+ "Legt den zu exportierenden Hersteller bzw. die Marke fest, wenn für ein Produkt kein Hersteller zugeordnet ist." ) ;
339393
340394 builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDeploymentType.FileSystem" , "File system" , "Dateisystem" ) ;
341395 builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDeploymentType.Email" , "Email" , "E-Mail" ) ;
342396 builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDeploymentType.Http" , "HTTP" , "HTTP" ) ;
343397 builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDeploymentType.Ftp" , "FTP" , "FTP" ) ;
344398
399+ builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDescriptionMergingType.None" ,
400+ "None" , "Keine" ) ;
401+ builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDescriptionMergingType.ShortDescriptionOrNameIfEmpty" ,
402+ "Short description or name if empty" , "Kurzbeschreibung oder Name falls leer" ) ;
403+ builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDescriptionMergingType.ShortDescription" ,
404+ "Short description" , "Kurzbeschreibung" ) ;
405+ builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDescriptionMergingType.Description" ,
406+ "Description" , "Detailbeschreibung" ) ;
407+ builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDescriptionMergingType.NameAndShortDescription" ,
408+ "Product name + short description" , "Produktname + Kurzbeschreibung" ) ;
409+ builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDescriptionMergingType.NameAndDescription" ,
410+ "Product name + long description" , "Produktname + Detailbeschreibung" ) ;
411+ builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDescriptionMergingType.ManufacturerAndNameAndShortDescription" ,
412+ "Manufacturer + Product name + short description" , "Hersteller + Produktname + Kurzbeschreibung" ) ;
413+ builder . AddOrUpdate ( "Enums.SmartStore.Core.Domain.DataExchange.ExportDescriptionMergingType.ManufacturerAndNameAndDescription" ,
414+ "Manufacturer + Product name + long description" , "Hersteller + Produktname + Detailbeschreibung" ) ;
415+
345416
346417 builder . AddOrUpdate ( "Admin.Configuration.Export.Deployment.Name" ,
347418 "Name" ,
0 commit comments