Greek language pack 2.6 - Can we contribute ?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
11 years ago
For a new (greek) project of ours we decided to use nopCommerce 2.6 .
We downloaded the greek language pack for ver 2.5, which plays quite nice with ver 2.6 but lacks some translations.
Is there anybody who can tell us what the differences (in terms of resource strings) are between ver 2.5 and 2.6 so we can translate and contribute to the community?

Thanks in advance
11 years ago
See the upgrade script upgradescripts\2.50-2.60\upgrade.sql for new and removed locale string resources.

http://nopcommerce.codeplex.com/SourceControl/changeset/view/580423cd02a4#upgradescripts%2f2.50-2.60%2fupgrade.sql

As noted by a script comment, resources with empty values (<Value></Value>) are being removed in 2.60, so you should also remove them from the 2.50 language pack you are updating to 2.60.

.
11 years ago
There is no empty string resource value in the ver 2.50 file.
11 years ago
The <Value></Value> refers to entries in upgrade.sql

You can download the nopCommerce 2.60 upgrade script at the following URL:
http://nopcommerce.codeplex.com/downloads/get/420035

The following is a portion of the script showing a new resource ("Admin.RecurringPayments.Fields.Customer") and a resource to be removed ("Enums.Nop.Core.Domain.Customers.ShowEmails.ShowEmails"):

--upgrade scripts from nopCommerce 2.50 to nopCommerce 2.60

--new locale resources
declare @resources xml
--a resource will be delete if its value is empty
set @resources='
<Language>
  <LocaleResource Name="Admin.RecurringPayments.Fields.Customer">
    <Value>Customer</Value>
  </LocaleResource>
  [...]
  <LocaleResource Name="Enums.Nop.Core.Domain.Customers.ShowEmails.ShowEmails">
    <Value></Value>
  </LocaleResource>
  [...]

.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.