-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #133 from TobyNorhave/Danish_Translation
Added Danish translation for the lovelace
- Loading branch information
Showing
2 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
da.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
|
||
export var messages = { | ||
|
||
// maintainer | ||
author: { | ||
name: "TobyNorhave", | ||
}, | ||
|
||
// image viewer | ||
image: { | ||
turn_camera_on: 'Tænd for kamera', | ||
turn_camera_off: 'Sluk for kamera', | ||
take_a_snapshot: 'Tag et billede', | ||
start_stream: 'Se live video', | ||
stop_stream: 'Stop live video', | ||
automatic_capture: 'Automatisk taget af', | ||
snapshot_capture: 'Billede taget af', | ||
feature_disabled: 'Kamera slukket, funktioner slået fra' | ||
}, | ||
|
||
// library viewer | ||
library: { | ||
first_page: 'Første side', | ||
previous_page: 'Forrige side', | ||
next_size: 'Næste gitter størrelse', | ||
close: 'Luk biblotek', | ||
next_page: 'Næste side', | ||
last_page: 'Sidste side', | ||
captured: 'Taget', | ||
duration: 'Længde', | ||
reason: 'Årsag', | ||
}, | ||
|
||
// video/stream viewer | ||
video: { | ||
stop: 'Stop', | ||
play: 'Start', | ||
pause: 'Pause', | ||
fullscreen: 'Fuld skærm' | ||
}, | ||
|
||
// device statuses | ||
status: { | ||
battery_strength: 'Batteri styrke', | ||
detected: 'Opdaget', | ||
door_closed: 'Lukket', | ||
door_open: 'Åben', | ||
captured: 'Taget', | ||
captured_nothing: 'Ingenting i dag', | ||
captured_something: 'Klips i dag, sidste af', | ||
clear: 'Ryd', | ||
plugged_in: 'Tilsluttet', | ||
signal_strength: 'Signal styrke', | ||
motion: 'Bevægelse', | ||
sound: 'Lyd', | ||
lock_locked: 'Låst (Tryk for at låse op)', | ||
lock_unlocked: 'Låst op (Tryk for at låse)', | ||
doorbell_pressed: 'Bank Bank!', | ||
doorbell_idle: 'Slumre', | ||
doorbell_mute: 'Lyd til (Tryk for at slå lyd fra)', | ||
doorbell_muted: 'Lyd fra (Tryk for at slå lyd til)', | ||
light_on: 'Tænd', | ||
light_off: 'Sluk', | ||
next_camera: 'Næste kamera', | ||
previous_camera: 'Forrige kamera', | ||
library: 'Biblotek', | ||
library_empty: 'Ingen optagelser tilgængelig', | ||
library_open: 'Tryk for at åbne', | ||
}, | ||
|
||
// known triggers | ||
trigger : { | ||
animal: "Dyr", | ||
vehicle: "Køretøj", | ||
person: "Person", | ||
package: "Pakke" | ||
}, | ||
|
||
// camera states | ||
state: { | ||
off: "Slukket", | ||
idle: "Slumre", | ||
recording: "Optager", | ||
streaming: "Sender live", | ||
recording_snapshot: "Optagelse + billede", | ||
streaming_snapshot: "Sender live + billede", | ||
taking_snapshot: "Tager billede", | ||
recently_active: "Sidst aktiv", | ||
unavailable: "Utilgængelig", | ||
offline_too_cold: "Slukket, det er for koldt", | ||
} | ||
} |