Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add Luxembourgish language #453

Merged
merged 1 commit into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ In the above image, the 9° on Thursday represents the low across all of the for
The colored portion of the bar represents the range of temperatures that are forecast for that day (so 12° to 21° on Monday).
The circle represents the current temperature (16° or roughly midway between 12° and 21° in your case).

*Thanks to @deprecatedcoder for this text from [#143](https://github.com/pkissling/clock-weather-card/issues/143)*
_Thanks to @deprecatedcoder for this text from [#143](https://github.com/pkissling/clock-weather-card/issues/143)_

The basic idea of the forecast bars is to be able to understand the weather trend for the upcoming days in a single glance.

Expand Down Expand Up @@ -72,7 +72,7 @@ The basic idea of the forecast bars is to be able to understand the weather tren
```

2. **UI:** Add Lovelace resource [![My Home Assistant](https://my.home-assistant.io/badges/lovelace_resources.svg)](https://my.home-assistant.io/redirect/lovelace_resources).
*(Alternatively go to Settings -> Dashboards -> Resources -> Add Resource)*
_(Alternatively go to Settings -> Dashboards -> Resources -> Add Resource)_

```yaml
URL: /hacsfiles/clock-weather-card/clock-weather-card.js
Expand Down Expand Up @@ -152,4 +152,4 @@ aqi_sensor: sensor.air_quality_index
## Footnotes

[^1]: Theme used: [lovelace-ios-themes](https://github.com/basnijholt/lovelace-ios-themes).
[^2]: Supported languages: `bg`, `ca`, `cs` `da`, `de`, `el`,`en`, `es`, `et`, `fi`, `fr`, `he`, `hu`, `id`, `is`, `it`, `ko`, `lt`, `nb`, `nl`, `pl`, `pt`, `pt-BR`, `ro`, `ru`, `sk`, `sl`, `sr`, `sr-Latn`, `sv`, `th`, `tr`, `uk`, `ur`, `vi`, `zh-CN`, `zh-TW`
[^2]: Supported languages: `bg`, `ca`, `cs` `da`, `de`, `el`,`en`, `es`, `et`, `fi`, `fr`, `he`, `hu`, `id`, `is`, `it`, `ko`, `lb`, `lt`, `nb`, `nl`, `pl`, `pt`, `pt-BR`, `ro`, `ru`, `sk`, `sl`, `sr`, `sr-Latn`, `sv`, `th`, `tr`, `uk`, `ur`, `vi`, `zh-CN`, `zh-TW`
33 changes: 33 additions & 0 deletions src/localize/languages/lb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"weather": {
"clear-night": "kloer",
"cloudy": "wollekeg",
"fog": "Niwwel",
"hail": "Knëppelsteng",
"lightning": "Donnerwieder",
"lightning-rainy": "Donnerwieder",
"partlycloudy": "deels wollekeg",
"pouring": "staarke Reen",
"rainy": "Reen",
"snowy": "Schnéi",
"snowy-rainy": "Schnéireen",
"sunny": "sonneg",
"windy": "lëfteg",
"windy-variant": "staarke Wand",
"exceptional": "Onwieder"
},
"day": {
"1": "Mé",
"2": "Dë",
"3": "Më",
"4": "Do",
"5": "Fr",
"6": "Sa",
"7": "So"
},
"misc": {
"aqi": "AQI",
"humidity": "Loftfiichtegkeet",
"feels-like": "Gefillt"
}
}
2 changes: 2 additions & 0 deletions src/localize/localize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import * as id from './languages/id.json'
import * as is from './languages/is.json'
import * as it from './languages/it.json'
import * as ko from './languages/ko.json'
import * as lb from './languages/lb.json'
import * as lt from './languages/lt.json'
import * as nb from './languages/nb.json'
import * as nl from './languages/nl.json'
Expand Down Expand Up @@ -55,6 +56,7 @@ const languages: any = {
is,
it,
ko,
lb,
lt,
nb,
nl,
Expand Down