mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-01 18:42:40 +00:00
it's working
This commit is contained in:
parent
8120b17c2d
commit
78c5d14116
8 changed files with 7 additions and 7 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6
po/pl.po
6
po/pl.po
|
@ -4924,9 +4924,9 @@ msgstr "To jest kolejny test systemu tłumaczeń."
|
|||
#, c-format
|
||||
msgid "%d apple"
|
||||
msgid_plural "%d apples"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[0] "%d jabłko"
|
||||
msgstr[1] "%d jabłka"
|
||||
msgstr[2] "%d jabłek"
|
||||
|
||||
#: src/gui/chanOsc.cpp:32
|
||||
msgid "None (0%)"
|
||||
|
|
6
po/ru.po
6
po/ru.po
|
@ -4853,9 +4853,9 @@ msgstr ""
|
|||
#, c-format
|
||||
msgid "%d apple"
|
||||
msgid_plural "%d apples"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[0] "%d яблоко"
|
||||
msgstr[1] "%d яблока"
|
||||
msgstr[2] "%d яблок"
|
||||
|
||||
#: src/gui/chanOsc.cpp:32
|
||||
msgid "None (0%)"
|
||||
|
|
|
@ -853,7 +853,7 @@ const char* momo_ngettext(const char* str1, const char* str2, unsigned long amou
|
|||
// then I don't know how are plural strings stored
|
||||
unsigned int plural=runStackMachine(curDomain->pluralProgram,256,amount);
|
||||
// TODO: optimize
|
||||
for (size_t i=curDomain->firstString[(unsigned char)(str[0])]; i<curDomain->stringCount; i++) {
|
||||
for (size_t i=curDomain->firstString[(unsigned char)(str1[0])]; i<curDomain->stringCount; i++) {
|
||||
if (strcmp(curDomain->stringPtr[i],str1)==0) {
|
||||
const char* ret=curDomain->transPtr[i];
|
||||
for (unsigned int j=0; j<plural; j++) {
|
||||
|
|
Loading…
Reference in a new issue