1
0
Fork 0

Status icons are back (#794)

This commit is contained in:
Dimo Karaivanov 2025-05-05 11:30:11 +03:00 committed by GitHub
parent dca050445e
commit 898bbf7a7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
184 changed files with 614 additions and 32 deletions

View file

@ -4,7 +4,7 @@ import java.util.zip.ZipOutputStream
apply from: 'dictionary-tools.gradle'
ext.convertDictionaries = { definitionsInputDir, dictionariesInputDir, dictionariesOutputDir, dictionariesMetaDir ->
ext.convertDictionaries = { definitionsInputDir, dictionariesInputDir, dictionariesOutputDir, dictionariesMetaDir, iconsDir ->
int errorCount = 0
def errorStream = fileTree(dir: definitionsInputDir).getFiles().parallelStream().map { definition ->
@ -12,7 +12,7 @@ ext.convertDictionaries = { definitionsInputDir, dictionariesInputDir, dictionar
return ""
}
def (_, sounds, prependSoundsToWords, noSyllables, locale, dictionaryFile, langFileErrorCount, langFileErrorMsg) = parseLanguageDefintion(definition, dictionariesInputDir)
def (_, sounds, prependSoundsToWords, noSyllables, locale, dictionaryFile, langFileErrorCount, langFileErrorMsg) = parseLanguageDefintion(definition, dictionariesInputDir, iconsDir)
errorCount += langFileErrorCount
if (!langFileErrorMsg.isEmpty()) {
return langFileErrorMsg