diff --git a/CHANGELOG.md b/CHANGELOG.md index e1a9139..02fca53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +- Added translation for CZ by Maca-LSczechforum - for [#13](https://github.com/Peppie84/FS22_BeesRevamp/issues/13) + +## [1.1.0.1] - 2024-11-04 +- Fixed Number to string conversion for formatting the nectar info for en and it language - for [#16](https://github.com/Peppie84/FS22_BeesRevamp/issues/16) ## [1.1.0.0] - 2024-10-29 - Reduced load while playing with precision farming and calculating the field info diff --git a/FS22_BeesRevamp/modDesc.xml b/FS22_BeesRevamp/modDesc.xml index 1fe638d..7f4275a 100644 --- a/FS22_BeesRevamp/modDesc.xml +++ b/FS22_BeesRevamp/modDesc.xml @@ -1,7 +1,7 @@ Peppie84 - 1.1.0.0 + 1.1.0.1 <en>Bees Revamp</en> @@ -39,6 +39,9 @@ Additional supported bee hives: - Beehive With 3 Large Frames by doodoo - Beehouse by Ls_Dezign +Changelog v1.1.0.1 +- Fixed Number to string conversion for formatting the nectar info for en and it language + Changelog v1.1.0.0 - Added multiplayer functionality - Reduced load while playing with precision farming and calculating the field info @@ -81,6 +84,9 @@ Zusätzlich unterstützte Bienenstöcke: - Bienenstock Mit 3 Grossen Zargen von doodoo - Bienenhaus von Ls_Dezign +Changelog v1.1.0.1 +- Konvertierung von Zahlen in Zeichenfolgen zum formatieren der Nectar-Informationen für die Sprachen EN und IT, behoben + Changelog v1.1.0.0 - Multiplayer funktionalität hinzugefügt - Veringert die Rechenlast zur Berechnung der Feldinfo mit PrecisionFarmin @@ -123,6 +129,9 @@ Alveari aggiuntivi supportati: - Arnia con 3 telaini grandi di doodoo - Apicoltura di Ls_Dezign +Changelog v1.1.0.1 +- Conversione fissa da numero a stringa per formattare le informazioni di Nectar per le lingue EN e IT + Changelog v1.1.0.0 - Aggiunta della funzionalità multigiocatore - Riduzione del carico durante il gioco dell'agricoltura di precisione e il calcolo delle informazioni sul campo diff --git a/FS22_BeesRevamp/src/placeablebeehiveextended.lua b/FS22_BeesRevamp/src/placeablebeehiveextended.lua index f12453a..ada8772 100644 --- a/FS22_BeesRevamp/src/placeablebeehiveextended.lua +++ b/FS22_BeesRevamp/src/placeablebeehiveextended.lua @@ -369,7 +369,7 @@ function PlaceableBeehiveExtended:updateNectarInfoTable() spec.infoTableNectar.text = string.format( g_brUtils:getModText('beesrevamp_placeablebeehiveextended_info_nectar_format'), - g_i18n:formatNumber(spec.nectar, 2) + tostring(g_i18n:formatNumber(spec.nectar, 2)) ) end diff --git a/FS22_BeesRevamp/translations/translation_cz.xml b/FS22_BeesRevamp/translations/translation_cz.xml new file mode 100644 index 0000000..616d19e --- /dev/null +++ b/FS22_BeesRevamp/translations/translation_cz.xml @@ -0,0 +1,115 @@ + + + Maca + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/FS22_BeesRevamp/translations/translation_en.xml b/FS22_BeesRevamp/translations/translation_en.xml index b5dc691..7d03626 100644 --- a/FS22_BeesRevamp/translations/translation_en.xml +++ b/FS22_BeesRevamp/translations/translation_en.xml @@ -15,7 +15,7 @@ - + diff --git a/FS22_BeesRevamp/translations/translation_it.xml b/FS22_BeesRevamp/translations/translation_it.xml index 746ab4a..2a1f008 100644 --- a/FS22_BeesRevamp/translations/translation_it.xml +++ b/FS22_BeesRevamp/translations/translation_it.xml @@ -15,7 +15,7 @@ - + diff --git a/README.md b/README.md index c688dcf..c4ac271 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@
[![FarmingSimulator-22](https://img.shields.io/badge/FarmingSimulator-22-blue?style=flat-square)](https://www.farming-simulator.com/) -[![Modhub Version](https://img.shields.io/badge/Modhub-v1.1.0.0-green?style=flat-square)](https://www.farming-simulator.com/mod.php?mod_id=298737) +[![Modhub Version](https://img.shields.io/badge/Modhub-v1.1.0.1-green?style=flat-square)](https://www.farming-simulator.com/mod.php?mod_id=298737) [![GitHub issues](https://img.shields.io/github/issues/Peppie84/FS22_BeesRevamp?style=flat-square)](https://github.com/Peppie84/FS22_BeesRevamp/issues) [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue?style=flat-square)](https://www.gnu.org/licenses/gpl-3.0) [![Last commit](https://img.shields.io/github/last-commit/Peppie84/FS22_BeesRevamp?style=flat-square&color=important)](https://github.com/Peppie84/FS22_BeesRevamp/commits/development)