add Ukrainian translations (#823)
This commit is contained in:
parent
92f35837ad
commit
1fab386ab1
|
@ -56,22 +56,24 @@ SMAPI rarely shows text in-game, so it only has a few translations. Contribution
|
||||||
[Modding:Translations](https://stardewvalleywiki.com/Modding:Translations) on the wiki for help
|
[Modding:Translations](https://stardewvalleywiki.com/Modding:Translations) on the wiki for help
|
||||||
contributing translations.
|
contributing translations.
|
||||||
|
|
||||||
locale | status
|
locale | status
|
||||||
---------- | :----------------
|
----------- | :----------------
|
||||||
default | ✓ [fully translated](../src/SMAPI/i18n/default.json)
|
default | ✓ [fully translated](../src/SMAPI/i18n/default.json)
|
||||||
Chinese | ✓ [fully translated](../src/SMAPI/i18n/zh.json)
|
Chinese | ✓ [fully translated](../src/SMAPI/i18n/zh.json)
|
||||||
French | ✓ [fully translated](../src/SMAPI/i18n/fr.json)
|
French | ✓ [fully translated](../src/SMAPI/i18n/fr.json)
|
||||||
German | ✓ [fully translated](../src/SMAPI/i18n/de.json)
|
German | ✓ [fully translated](../src/SMAPI/i18n/de.json)
|
||||||
Hungarian | ✓ [fully translated](../src/SMAPI/i18n/hu.json)
|
Hungarian | ✓ [fully translated](../src/SMAPI/i18n/hu.json)
|
||||||
Italian | ✓ [fully translated](../src/SMAPI/i18n/it.json)
|
Italian | ✓ [fully translated](../src/SMAPI/i18n/it.json)
|
||||||
Japanese | ✓ [fully translated](../src/SMAPI/i18n/ja.json)
|
Japanese | ✓ [fully translated](../src/SMAPI/i18n/ja.json)
|
||||||
Korean | ✓ [fully translated](../src/SMAPI/i18n/ko.json)
|
Korean | ✓ [fully translated](../src/SMAPI/i18n/ko.json)
|
||||||
Polish¹ | ✓ [fully translated](../src/SMAPI/i18n/pl.json)
|
[Polish] | ✓ [fully translated](../src/SMAPI/i18n/pl.json)
|
||||||
Portuguese | ✓ [fully translated](../src/SMAPI/i18n/pt.json)
|
Portuguese | ✓ [fully translated](../src/SMAPI/i18n/pt.json)
|
||||||
Russian | ✓ [fully translated](../src/SMAPI/i18n/ru.json)
|
Russian | ✓ [fully translated](../src/SMAPI/i18n/ru.json)
|
||||||
Spanish | ✓ [fully translated](../src/SMAPI/i18n/es.json)
|
Spanish | ✓ [fully translated](../src/SMAPI/i18n/es.json)
|
||||||
Thai¹ | ✓ [fully translated](../src/SMAPI/i18n/th.json)
|
[Thai] | ✓ [fully translated](../src/SMAPI/i18n/th.json)
|
||||||
Turkish | ✓ [fully translated](../src/SMAPI/i18n/tr.json)
|
Turkish | ✓ [fully translated](../src/SMAPI/i18n/tr.json)
|
||||||
|
[Ukrainian] | ✓ [fully translated](../src/SMAPI/i18n/uk.json)
|
||||||
|
|
||||||
¹ This is a custom language provided by a mod (see [Polish](https://www.nexusmods.com/stardewvalley/mods/3616)
|
[Polish]: https://www.nexusmods.com/stardewvalley/mods/3616
|
||||||
and [Thai](https://www.nexusmods.com/stardewvalley/mods/7052)).
|
[Thai]: https://www.nexusmods.com/stardewvalley/mods/7052
|
||||||
|
[Ukrainian]: https://www.nexusmods.com/stardewvalley/mods/8427
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
* Fixed launch issue on macOS when using some terminals (thanks to bruce2409!).
|
* Fixed launch issue on macOS when using some terminals (thanks to bruce2409!).
|
||||||
* Simplified [running without a terminal on Linux/macOS](https://stardewvalleywiki.com/Modding:Player_Guide/Troubleshooting#SMAPI_doesn.27t_recognize_controller_.28Steam_only.29) when needed.
|
* Simplified [running without a terminal on Linux/macOS](https://stardewvalleywiki.com/Modding:Player_Guide/Troubleshooting#SMAPI_doesn.27t_recognize_controller_.28Steam_only.29) when needed.
|
||||||
* Updated compatibility list.
|
* Updated compatibility list.
|
||||||
|
* Improved translations. Thanks to ChulkyBow (added Ukrainian)!
|
||||||
|
|
||||||
* For the web UI:
|
* For the web UI:
|
||||||
* Fixed log parser not correctly handling multiple mods having the exact same name.
|
* Fixed log parser not correctly handling multiple mods having the exact same name.
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
// warning messages
|
||||||
|
"warn.invalid-content-removed": "Недійсний вміст видалено, щоб запобігти аварійному завершенню роботи (Додаткову інформацію див. на консолі SMAPI)."
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
// short date format for SDate
|
||||||
|
// tokens: {{day}} (like 15), {{season}} (like Spring), {{seasonLowercase}} (like spring), {{year}} (like 2)
|
||||||
|
"generic.date": "{{season}} День {{day}}",
|
||||||
|
"generic.date-with-year": "{{season}} День {{day}}, Рік {{year}}"
|
||||||
|
}
|
Loading…
Reference in New Issue