Skip to content

Commit

Permalink
Fix spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
orontee committed Nov 16, 2024
1 parent 1535695 commit 3faf5e1
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion po/cs.po
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ msgid "Last quarter moon"
msgstr "Poslední čtvrt měsíce"

#: src/util.cc:314
msgid "Wanning crescent"
msgid "Waning crescent"
msgstr "Ubývající půlměsíc"

#: src/version.cc:97
Expand Down
4 changes: 2 additions & 2 deletions po/fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -381,15 +381,15 @@ msgid "Full moon"
msgstr "Pleine lune"

#: src/util.cc:310
msgid "Wanning gibbous"
msgid "Waning gibbous"
msgstr "Lune gibbeuse décroissante"

#: src/util.cc:312
msgid "Last quarter moon"
msgstr "Dernier quartier"

#: src/util.cc:314
msgid "Wanning crescent"
msgid "Waning crescent"
msgstr "Dernier croissant"

#: src/version.cc:97
Expand Down
4 changes: 2 additions & 2 deletions po/pl.po
Original file line number Diff line number Diff line change
Expand Up @@ -377,15 +377,15 @@ msgid "Full moon"
msgstr "Pełnia księżyca"

#: src/util.cc:310
msgid "Wanning gibbous"
msgid "Waning gibbous"
msgstr "Ubywający garb"

#: src/util.cc:312
msgid "Last quarter moon"
msgstr "Ostatnia kwadra księżyca"

#: src/util.cc:314
msgid "Wanning crescent"
msgid "Waning crescent"
msgstr "Ubywający sierp księżyca"

#: src/version.cc:97
Expand Down
4 changes: 2 additions & 2 deletions po/ru.po
Original file line number Diff line number Diff line change
Expand Up @@ -377,15 +377,15 @@ msgid "Full moon"
msgstr "Полная Луна"

#: src/util.cc:310
msgid "Wanning gibbous"
msgid "Waning gibbous"
msgstr "Вечеринка"

#: src/util.cc:312
msgid "Last quarter moon"
msgstr "Последняя четверть луны"

#: src/util.cc:314
msgid "Wanning crescent"
msgid "Waning crescent"
msgstr "Отзывы к полумесяцу"

#: src/version.cc:97
Expand Down
4 changes: 2 additions & 2 deletions po/sr.po
Original file line number Diff line number Diff line change
Expand Up @@ -372,15 +372,15 @@ msgid "Full moon"
msgstr "Пун месец"

#: src/util.cc:310
msgid "Wanning gibbous"
msgid "Waning gibbous"
msgstr "Ванинг гиббоус"

#: src/util.cc:312
msgid "Last quarter moon"
msgstr "Последња четврт месеца"

#: src/util.cc:314
msgid "Wanning crescent"
msgid "Waning crescent"
msgstr "Опадајући полумесец"

#: src/version.cc:97
Expand Down
4 changes: 2 additions & 2 deletions po/taranis.pot
Original file line number Diff line number Diff line change
Expand Up @@ -364,15 +364,15 @@ msgid "Full moon"
msgstr ""

#: src/util.cc:310
msgid "Wanning gibbous"
msgid "Waning gibbous"
msgstr ""

#: src/util.cc:312
msgid "Last quarter moon"
msgstr ""

#: src/util.cc:314
msgid "Wanning crescent"
msgid "Waning crescent"
msgstr ""

#: src/version.cc:97
Expand Down
4 changes: 2 additions & 2 deletions src/util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -307,11 +307,11 @@ std::string taranis::format_moon_phase(double moon_phase) {
} else if (moon_phase == 0.5) {
return GetLangText("Full moon");
} else if (moon_phase < 0.75) {
return GetLangText("Wanning gibbous");
return GetLangText("Waning gibbous");
} else if (moon_phase == 0.75) {
return GetLangText("Last quarter moon");
} else if (moon_phase < 1) {
return GetLangText("Wanning crescent");
return GetLangText("Waning crescent");
} else if (moon_phase == 1) {
return GetLangText("New moon");
}
Expand Down

0 comments on commit 3faf5e1

Please sign in to comment.