Skip to content

Commit

Permalink
fix #316
Browse files Browse the repository at this point in the history
  • Loading branch information
Amine El Fellah committed Dec 1, 2016
1 parent 7d3b863 commit 4c571c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/i18n.Domain/Concrete/POTranslationRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,8 @@ private Translation ParseTranslationFile(string langtag, List<string> fileNames,

foreach (var file in _settings.LocaleOtherFiles)
{
paths.Add(GetPathForLanguage(langtag, file));
if (file.IsSet())
paths.Add(GetPathForLanguage(langtag, file));
}

if (_settings.GenerateTemplatePerFile && !loadingCache)
Expand Down

0 comments on commit 4c571c7

Please sign in to comment.