Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Add Slovak language #123

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Note: If you get an error similar to this `Custom element doesn't exist` you wil
| timeFormat | `'12h'`/`'24h'` | Displayed time format | Locale based on Home assistant language |
| title | `string` | Card title | Doesn't display a title by default | |

(<sup>1</sup>) Supported languages: `da`, `de`, `en`, `es`, `et`, `fi`, `fr`, `hu`, `it`, `nl`, `pl`, `pt-BR`, `ru`, `sl`, `sv`
(<sup>1</sup>) Supported languages: `da`, `de`, `en`, `es`, `et`, `fi`, `fr`, `hu`, `it`, `nl`, `pl`, `pt-BR`, `ru`, `sk`, `sl`, `sv`

## Known issues
- Home assistant seems to provide next events instead today's one
12 changes: 12 additions & 0 deletions src/assets/localization/languages/sk.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"Azimuth": "Azimut",
"Dawn": "Svitanie",
"Dusk": "Súmrak",
"Elevation": "Stúpanie",
"Noon": "Slnečné poludnie",
"Sunrise": "Východ slnka",
"Sunset": "Západ slnka",
"errors": {
"SunIntegrationNotFound": "Integrácia Sun sa nenašla"
}
}
3 changes: 2 additions & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import nl from './assets/localization/languages/nl.json'
import pl from './assets/localization/languages/pl.json'
import ptBR from './assets/localization/languages/pt-BR.json'
import ru from './assets/localization/languages/ru.json'
import sk from './assets/localization/languages/sk.json'
import sl from './assets/localization/languages/sl.json'
import sv from './assets/localization/languages/sv.json'
import { TSunCardConfig, TSunCardTexts } from './types'
Expand All @@ -33,7 +34,7 @@ export class Constants {

static readonly HORIZON_Y = 108
static readonly LOCALIZATION_LANGUAGES: Record<string, TSunCardTexts> = {
da, de, en, es, et, fi, fr, hu, it, nl, pl, 'pt-BR': ptBR, ru, sl, sv
da, de, en, es, et, fi, fr, hu, it, nl, pl, 'pt-BR': ptBR, ru, sk, sl, sv
}
static readonly SUN_RADIUS = 17
}