summaryrefslogtreecommitdiff
path: root/src/lang.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lang.c')
-rw-r--r--src/lang.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lang.c b/src/lang.c
index 3492cc9b..7b00f172 100644
--- a/src/lang.c
+++ b/src/lang.c
@@ -88,6 +88,7 @@ static void load_Lang_(iLang *d, const char *id) {
88 iUnused(id); 88 iUnused(id);
89 const iBlock *data = equal_CStr(id, "fi") ? &blobFi_Embedded 89 const iBlock *data = equal_CStr(id, "fi") ? &blobFi_Embedded
90 : equal_CStr(id, "fr") ? &blobFr_Embedded 90 : equal_CStr(id, "fr") ? &blobFr_Embedded
91 : equal_CStr(id, "cs") ? &blobCs_Embedded
91 : equal_CStr(id, "ru") ? &blobRu_Embedded 92 : equal_CStr(id, "ru") ? &blobRu_Embedded
92 : equal_CStr(id, "eo") ? &blobEo_Embedded 93 : equal_CStr(id, "eo") ? &blobEo_Embedded
93 : equal_CStr(id, "es") ? &blobEs_Embedded 94 : equal_CStr(id, "es") ? &blobEs_Embedded
@@ -112,7 +113,7 @@ static void load_Lang_(iLang *d, const char *id) {
112 else if (data == &blobIsv_Embedded) { 113 else if (data == &blobIsv_Embedded) {
113 d->pluralType = oneTwoMany_PluralType; 114 d->pluralType = oneTwoMany_PluralType;
114 } 115 }
115 else if (data == &blobSk_Embedded) { 116 else if (data == &blobCs_Embedded || data == &blobSk_Embedded) {
116 d->pluralType = oneFewMany_PluralType; 117 d->pluralType = oneFewMany_PluralType;
117 } 118 }
118 else if (data == &blobPl_Embedded) { 119 else if (data == &blobPl_Embedded) {