genebean / PiWeatherRock

Displays local weather on a Raspberry Pi

Home Page:https://piweatherrock.technicalissues.us

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Language adjustment, especially in German and text size adjustment

dodas425 opened this issue · comments

It would be a nice feature if you could adapt texts in weather.py to German (or other languages). For example date, times of day and days of the week. A simple adjustment of the text size would also be ingenious, so that texts on the info screen and also in the feels like, wind, humidity window could be adjusted accordingly.

I will look into the logistics of this but was wondering if you’d be game to help with the actual translations if I provided a list of words / phrases?

Naturally! You help me / us so much, then I can help you. What do you need for phrases / words in German?

Hello! Do you already have something in the works regarding language integration? I could give you German translations on a timely basis... Greetings Thomas

It would also be very nice if you could help me to reduce text size as needed...

I have to look at how to do i18n with Python and what it will take to apply that to the code. I may have some time this weekend to poke at it some but am not sure. I greatly appreciate the offer to help translate things though and will take you up on it as soon as I figure the other bits out.

Oh, that's very nice! But it doesn't burn... :-)

I think this may be easier than I first thought... I will push up a change shortly that adds a new configuration setting so that the results from the Dark Sky api can be in any language they support. For example, here's the daily summary in multiple languages:

  • English: "Possible drizzle in the morning."
  • German: "Nieselregen m\u00f6glich am Vormittag."
  • Czech: "R\u00e1no mo\u017enost mrholen\u00ed."

Note the non-english ones include unicode characters too

Further on and on! I'm glad to see you're making progress!

Have you tried the setting yet @dodas425 ?

Sent with GitHawk

No problem! The parts that come directly from Dark Sky like the summary are now translated. I just realized that the only documentation of this is in the sample config file though. I’ll get the docs updated and link them here so it’s more clear.

Sent with GitHawk

Hi there! This is how the 2 views look on my display. Unfortunately, the writing and the texts do not fit on my 320/240 resolution display. Do you already have a solution to my resolution?

@dodas425 Hi look to line 632 in weather.py, you might be a bit further or closer
find this line: time_string = time.strftime("%-d. %b, %-H:%M", time.localtime()) and test this change.

@dodas425 and here is a nice explanation of what each value means. For example, you may have to use only time to fit the text. try it
https://strftime.org/

@dodas425 or there is time and date text size in line 266 self.time_date_text_height = 0.129

In a similar way it will be possible to reduce size other texts

Sorry my English please

This coming week I am planning on digging into the issues with the 320 resolution. I had another project with a deadline that has taken my time this week.

Sent with GitHawk

https://linkode.org/#RanYQoA2t1cJJVpjFX5PO4 will help with the translation bit

@repkadan sorry, no - the link was because I got @metaMMA to share it with me the other day and I wanted to include it here to keep from losing it. With the move to ClimaCell and the changes I have already merged into the code base its going to be even more important that I deal with all the places that need the language taken into account. Thanks for filling it in too!