Skip to content

Commit

Permalink
Multiple fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mlamberts78 committed May 10, 2024
1 parent efabffc commit acdb4b7
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ HACS is a third party community store and is not included in Home Assistant out
| show_temperature | boolean | true | Show or hide the current temperature. |
| show_current_condition| boolean | true | Show or hide the current weather condition. |
| show_attributes | boolean | true | Show or hide a section with attributes such as pressure, humidity, wind direction and speed, etc. |
| show_sun | boolean | true | Show or hide the sunset information |
| show_time | boolean | false | Show or hide the current time on the card. |
| show_time_seconds | boolean | false | Show or hide seconds for the current time on the card. |
| show_day | boolean | false | Show or hide the current day on the card. (Only visible when show_time is true.) |
Expand Down
43 changes: 39 additions & 4 deletions dist/weather-chart-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ const locale = {
'tempHi': 'Temperatura máxima',
'tempLo': 'Temperatura noite',
'precip': 'Precipitação',
'feelsLike': 'Sente-se como',
'feelsLike': 'Sensação Térmica',
'units': {
'km/h': 'km/h',
'm/s': 'm/s',
Expand All @@ -530,12 +530,12 @@ const locale = {
'N', 'N-NE', 'NE', 'E-NE', 'E', 'E-SE', 'SE', 'S-SE',
'S', 'S-SW', 'SW', 'W-SW', 'W', 'W-NW', 'NW', 'N-NW', 'N'
],
'clear-night': 'Céu limpo, noite',
'clear-night': 'Noite limpa',
'cloudy': 'Nublado',
'fog': 'Nevoeiro',
'hail': 'Granizo',
'lightning': 'Trovão',
'lightning-rainy': 'Trovões, chuva',
'lightning': 'Relâmpago ',
'lightning-rainy': 'Chuva e relâmpagos',
'partlycloudy': 'Parcialmente nublado',
'pouring': 'Chuva forte',
'rainy': 'Chuva',
Expand Down Expand Up @@ -749,6 +749,40 @@ const locale = {
'windy': 'Вітряно',
'windy-variant': 'Вітряно'
},
ko: {
'tempHi': '최고 기온',
'tempLo': '최저 기온',
'precip': '강수',
'feelsLike': '체감',
'units': {
'km/h': 'km/h',
'm/s': 'm/s',
'mph': 'mph',
'Bft': 'Bft',
'hPa': 'hPa',
'mmHg': 'mm Hg',
'mm': 'mm',
'in': 'in'
},
'cardinalDirections': [
'북', '북북동', '북동', '동북동', '동', '동남동', '남동', '남남동',
'남', '남남서', '남서', '서남서', '서', '서북서', '북서', '북북서', '북'
],
'clear-night': '맑음(밤)',
'cloudy': '흐림',
'fog': '안개',
'hail': '우박',
'lightning': '번개',
'lightning-rainy': '번개, 뇌우',
'partlycloudy': '조금 흐림',
'pouring': '폭우',
'rainy': '비',
'snowy': '눈',
'snowy-rainy': '진눈깨비',
'sunny': '맑음',
'windy': '바람',
'windy-variant': '강풍'
},
};

const cardinalDirectionsIcon = [
Expand Down Expand Up @@ -1485,6 +1519,7 @@ class WeatherChartCardEditor extends s {
<ha-list-item .value=${'es'}>Spanish</ha-list-item>
<ha-list-item .value=${'sv'}>Swedish</ha-list-item>
<ha-list-item .value=${'uk'}>Ukrainian</ha-list-item>
<ha-list-item .value=${'ko'}>한국어</ha-list-item>
</ha-select>
</div>
</div>
Expand Down

0 comments on commit acdb4b7

Please sign in to comment.