We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In FileLocalizedTypeRepository.cs, the GetLanguage method, loads the entire JSON prompts file every time a translation is requested.
On line 242 in https://github.com/jgauffin/griffin.mvccontrib/blob/master/source/Griffin.MvcContrib/Localization/FlatFile/FileLocalizedTypeRepository.cs
Lines 241-246 can be replaced with:
prompts = LoadLanguage(culture) ?? new TypePromptCollection(culture); _languages.Add(culture, prompts);
The text was updated successfully, but these errors were encountered:
you are right, i'm going to commit your fix.
Sorry, something went wrong.
fixed paolosanchi@bb85f20 #41
Bugfix: jgauffin/griffin.mvccontrib#39
bb85f20
No branches or pull requests
In FileLocalizedTypeRepository.cs, the GetLanguage method, loads the entire JSON prompts file every time a translation is requested.
On line 242 in https://github.com/jgauffin/griffin.mvccontrib/blob/master/source/Griffin.MvcContrib/Localization/FlatFile/FileLocalizedTypeRepository.cs
Lines 241-246 can be replaced with:
prompts = LoadLanguage(culture) ?? new TypePromptCollection(culture);
_languages.Add(culture, prompts);
The text was updated successfully, but these errors were encountered: