Skip to content

Commit

Permalink
Merge branch 'release/v0.7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
fratsloos committed Nov 27, 2023
2 parents c86e2bd + c3c40c7 commit f534bb7
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/fr24_card.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions hacs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "FR24 card",
"render_readme": true,
"homeassistant": "2022.6.0"
"name": "FR24 card",
"render_readme": true,
"homeassistant": "2023.11.0"
}
4 changes: 4 additions & 0 deletions src/javascript/helpers/lang.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import de from "../lang/de.json";
import en from "../lang/en.json";
import fi from "../lang/fi.json";
import nl from "../lang/nl.json";
import pl from "../lang/pl.json";
import sl from "../lang/sl.json";
Expand All @@ -24,6 +25,9 @@ export default class Lang {
case "de":
this.content = de;
break;
case "fi":
this.content = fi;
break;
case "nl":
this.content = nl;
break;
Expand Down
68 changes: 68 additions & 0 deletions src/javascript/lang/fi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"table": {
"head": {
"icao": "ICAO-tunnus",
"country": "Maa",
"registration": "Rekisteröinti",
"flight": "Lento",
"squawk": "Tunniste",
"altitude": "Korkeus",
"speed": "Nopeus",
"distance": "Etäisyys",
"track": "Lentorata",
"age": "Viimeisin viesti",
"aircraft_type": "Tyyppi"
},
"data": {
"not_available": "Ei saatavilla",
"none": "Ei havaittuja lentoaluksia!",
"undefined": "Määritys ei sisällä dataa!"
}
},
"popup": {
"table": {
"head": {
"property": "Kenttä",
"value": "Arvo"
}
}
},
"track": {
"short": {
"n": "N",
"nne": "NNE",
"ne": "NE",
"ene": "ENE",
"e": "E",
"ese": "ESE",
"se": "SE",
"sse": "SSE",
"s": "S",
"ssw": "SSW",
"sw": "SW",
"wsw": "WSW",
"w": "W",
"wnw": "WNW",
"nw": "NW",
"nnw": "NNW"
},
"long": {
"n": "Pohjoinen",
"nne": "Pohjoiskoillinen",
"ne": "Koillinen",
"ene": "Itäkoillinen",
"e": "Itä",
"ese": "Itäkaakko",
"se": "Kaakko",
"sse": "Eteläkaakko",
"s": "Etelä",
"ssw": "Etelälounas",
"sw": "Lounas",
"wsw": "Länsilounas",
"w": "Länsi",
"wnw": "Länsiluode",
"nw": "Luode",
"nnw": "Pohjoisluode"
}
}
}

0 comments on commit f534bb7

Please sign in to comment.