Language Not Working in latest source

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
Hey Andrei,

Is the latest changeset c54c1a3795f3 for Nop 2.0 from codeplex stable?

I puled from the repository and tried to install to a fresh database, everything worked but the Language / Locality resources were not functioning (the keys were showing in place of the values).

Thanks in advance!
12 years ago
Everything works fines. Have you added a new language?
12 years ago
The following is what I have done to recreate the issue three times.

Step 1. Clone from https://hg01.codeplex.com/nopcommerce
Step 2. Open project in VS2010
Step 3. Rebuild Project
Step 4. Start Project without Debugging. (I have also tried with debugging on)

All of the localized language strings are not getting values rather staying as their keys, for instance:

@T("ShoppingCart.Mini.NoItems") is showing ShoppingCart.Mini.NoItems instead fo its value
@T("Products.NewProducts") is showing Products.NewProducts instead of its value

I have verified that the data exists in the database.

** Update **
This would appear to be an SQL Server related problem.
It's not finding the values in the database because the query has been executing as case sensitive.

Is there a specific Collation requirement for nop2.0? I was just using the same I had configured for 1.9

Thanks
12 years ago
cybernexus wrote:
Is there a specific Collation requirement for nop2.0?

Yes. It should be case invariant
12 years ago
Just a quick update.

The DB was Case Invariant after finding no reason for the problem I rebooted the SQL server and the problem went away.

Sorry for wasting your time Andrei
12 years ago
good luck ,i met this problem ,you should be patient
12 years ago
Great idea!

This ShoppingCart.Mini.NoItems made me crazy!

When i run in local there is noprobelm but when i publish to www.website i see "ShoppingCart.Mini.NoItems"

i checked Collation of local and www.website database they were different!

Local:
SQL_Lat in1_General_CP1_CI_AS

www.website standart collation which is wrong:
TURKISH_CI_AS

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