v18 Translate new Weather String to german - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Translations and Languages (https://forum.kodi.tv/forumdisplay.php?fid=90) +--- Thread: v18 Translate new Weather String to german (/showthread.php?tid=341605) |
Translate new Weather String to german - DarkZone-World - 2019-03-04 Hello, how can i translate the Weather conditionDescription "Breezy" to german? I use the weather addon Yahoo-Weather. Thanks! RE: Translate new Weather String to german - DaVu - 2019-03-05 @DarkZone-World Are you sure that the correct word is "Breezy"? As we can't find that string either at the yahoo wether add-on https://gitlab.com/ronie/weather.yahoo/blob/master/resources/language/resource.language.en_GB/strings.po nor at Kodi core. Kodi Core therefore has "Breeze" which is already translated for german with "Brise" RE: Translate new Weather String to german - DarkZone-World - 2019-03-05 @DaVu Look here That's the condition description that shows in Kodi. I did not find the string, so I asked. When I paste Breezy it will not translate Thanks for helping! RE: Translate new Weather String to german - MrTarantula - 2019-03-06 That's not a Kodi string. That's from Yahoo's weather API. I tried adding a language parameter to the request but it did no good. This is the only documentation I could find about Yahoo's weather API. I couldn't find anything about the endpoint you're using. It might only reply in English. If that's the case, you will need to translate in your add-on, or use a different weather provider that will respond in German. RE: Translate new Weather String to german - vitusson - 2019-10-15 (2019-03-04, 11:15)DarkZone-World Wrote: Hello,breezy = windig in German RE: Translate new Weather String to german - Fuchs2468 - 2020-07-07 I also noticed this error in "weather.yahoo". I had been working on Kodi this weekend and it had bothered me a little. I changed the following in "resource.language.en_gb" , Old: Code: #. Weather token New: Code: #. Weather token and in my language "resource.language.de_de" this. Old: Code: msgctxt "#1392" New: Code: msgctxt "#1392" The translation for "Breezy" is on yahoo weather page "Leichte Brise" in German. Possible change in yahoo API output of "msgctxt # 1391" or "msgctxt # 1392" to "Breezy" I chose "msgctxt # 1392" and so far it works very well. |