Skip to content

Commit

Permalink
some localizations
Browse files Browse the repository at this point in the history
  • Loading branch information
thkl committed Apr 30, 2020
1 parent 5fede9e commit f65e134
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Changelog for 0.0.32:
=====================

* added sorting for webui lists
* implemented a nicer update button
.. tbc

Changelog for 0.0.31:
=====================

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# hap-homematic
<img src="doc/icon.png" style="float:left"> # Hap-HomeMatic

[![Build Status](https://travis-ci.org/thkl/hap-homematic.svg?branch=master)](https://travis-ci.org/thkl/hap-homematic)
[![npm version](https://badge.fury.io/js/hap-homematic.svg)](https://badge.fury.io/js/hap-homematic)

Expand Down
Binary file added doc/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 32 additions & 1 deletion lib/configurationsrv/html/assets/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,5 +156,36 @@
"Invalid credentials":"Ungülige Zugangsdaten",
"Save":"Speichern",
"Use CCU Authentication":"CCU Anmeldung benutzen",
"Authentication":"Anmeldung"
"Authentication":"Anmeldung",
"Internals":"Internes",
"Address close sensor":"Adresse des Schließen Sensors",
"Address of the sensor which signals a closed door (mandatory) | Note if you want to use a variable the syntax is V.Varname":
"Adresse des Sensors, welcher eine geschlossene Tür anzeigt (Pflichtfeld)",
"State close sensor":"Status des Schließen Sensors",
"Value of the sensor which signals a closed door (mandatory)":
"Wert des Sensors, welcher eine geschlossene Tür anzeigt (Pflichtfeld)",
"Address open sensor":"Adresse des Offen Sensors",
"Address of the sensor which signals a open door (optional) | Note if you want to use a variable the syntax is V.Varname":
"Adresse des Sensors, welcher eine offene Tür anzeigt (Optional)",
"State open sensor":"Wert des Offen Sensors",
"Value of the sensor which signals a open door (optional)":
"Wert des Sensors, welcher eine geöffnete Tür anzeigt (optional)",
"Address open actor":"Adresse Öffnen Aktor",
"Address of the actor which opens the door (mandatory)":
"Adresse des Aktors, welcher die Tür öffnet (Pflichtfeld)",
"Address close actor":"Adresse Schließen Aktor",
"Address of the actor which closes the door (optional)":
"Adresse des Aktors, welcher die Tür schließt (Optional)",
"Delay open actor":"Verzögerung Öffnen Aktor",
"Delay in seconds to reset the open actor (optional)":"Zeit in Sekunden, bis der Öffnen Aktor zurück gesetzt wird (optional)",
"Delay close actor":"Verzögerung Schließen Aktor",
"Delay in seconds to reset the close actor (optional)":"Zeit in Sekunden, bis der Schließen Aktor zurück gesetzt wird (optional)",
"Message open actor":"Nachricht Öffnen Aktor",
"The message to send to the open actor JSON (optional)":"Die Nachricht (JSON) welche zum Öffnen Aktor gesendet wird (optional)",
"Message close actor":"Nachricht Schließen Aktor",
"The message to send to the close actor JSON (optional)":"Die Nachricht (JSON) welche zum Schließen Aktor gesendet wird (optional)",
"Sensor requery time":"Zeit Sensor Neuabfrage",
"Time the sensors will be queried again to fetch a new door state (optional)":
"Zeit in Sekunden nachdem der Sensor erneut abgefragt wird, um einen neuen Zustand der Tür zu ermitteln (optional)"

}
1 change: 1 addition & 0 deletions lib/configurationsrv/html/css/free.min.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/configurationsrv/html/js/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export class Application {
sOv.append(this.__('HAP Uptime %s', this.userFriendlySeconds(this.systemInfo.hapuptime))).append('<br />').append('<br />')
sOv.append(this.__('Version %s', this.systemInfo.version)).append('<br />')
if (this.systemInfo.version !== this.systemInfo.update) {
let update = $('<div>').append(this.__('update to %s', this.systemInfo.update))
let update = $('<button>').attr('type', 'button').addClass('btn btn-info').append(this.__('update to %s', this.systemInfo.update))
sOv.append(update)
update.bind('click', async () => {
self.updateDialog = new RebootUpdateDialog(this)
Expand Down
1 change: 1 addition & 0 deletions lib/configurationsrv/html/js/bootstrap.min.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions lib/configurationsrv/html/js/coreui.bundle.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hap-homematic",
"version": "0.0.31",
"version": "0.0.32",
"description": "provides a homekit bridge to the ccu",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit f65e134

Please sign in to comment.