mirror of
https://github.com/lumapu/ahoy.git
synced 2025-07-23 03:07:12 +02:00
* merge PR: MI-MQTT and last retransmit #1363 * fixed DTU-ID, now built from the unique part of the MAC * fix lang in `/system` #1346
87 lines
2.4 KiB
C
87 lines
2.4 KiB
C
//-----------------------------------------------------------------------------
|
|
// 2024 Ahoy, https://ahoydtu.de
|
|
// Creative Commons - http://creativecommons.org/licenses/by-nc-sa/4.0/deed
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef __LANG_H__
|
|
#define __LANG_H__
|
|
|
|
#ifdef LANG_DE
|
|
#define REBOOT_ESP_APPLY_CHANGES "starte AhoyDTU neu, um die Änderungen zu speichern"
|
|
#else /*LANG_EN*/
|
|
#define REBOOT_ESP_APPLY_CHANGES "reboot AhoyDTU to apply all your configuration changes"
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define TIME_NOT_SET "keine gültige Zeit, daher keine Kommunikation zum Wechselrichter möglich"
|
|
#else /*LANG_EN*/
|
|
#define TIME_NOT_SET "time not set. No communication to inverter possible"
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define INV_INDEX_INVALID "Wechselrichterindex ungültig; "
|
|
#else /*LANG_EN*/
|
|
#define INV_INDEX_INVALID "inverter index invalid: "
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define UNKNOWN_CMD "unbekanntes Kommando: '"
|
|
#else /*LANG_EN*/
|
|
#define UNKNOWN_CMD "unknown cmd: '"
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define INV_DOES_NOT_ACCEPT_LIMIT_AT_MOMENT "Leistungsbegrenzung / Ansteuerung aktuell nicht möglich"
|
|
#else /*LANG_EN*/
|
|
#define INV_DOES_NOT_ACCEPT_LIMIT_AT_MOMENT "inverter does not accept dev control request at this moment"
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define PATH_NOT_FOUND "Pfad nicht gefunden: "
|
|
#else /*LANG_EN*/
|
|
#define PATH_NOT_FOUND "Path not found: "
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define INCOMPLETE_INPUT "Unvollständige Eingabe"
|
|
#else /*LANG_EN*/
|
|
#define INCOMPLETE_INPUT "Incomplete input"
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define INVALID_INPUT "Ungültige Eingabe"
|
|
#else /*LANG_EN*/
|
|
#define INVALID_INPUT "Invalid input"
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define NOT_ENOUGH_MEM "nicht genügend Speicher"
|
|
#else /*LANG_EN*/
|
|
#define NOT_ENOUGH_MEM "Not enough memory"
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define DESER_FAILED "Deserialisierung fehlgeschlagen"
|
|
#else /*LANG_EN*/
|
|
#define DESER_FAILED "Deserialization failed"
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define INV_NOT_FOUND "Wechselrichter nicht gefunden!"
|
|
#else /*LANG_EN*/
|
|
#define INV_NOT_FOUND "inverter not found!"
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define FACTORY_RESET "Ahoy auf Werkseinstellungen zurücksetzen"
|
|
#else /*LANG_EN*/
|
|
#define FACTORY_RESET "Ahoy Factory Reset"
|
|
#endif
|
|
|
|
#ifdef LANG_DE
|
|
#define BTN_REBOOT "Ahoy neustarten"
|
|
#else /*LANG_EN*/
|
|
#define BTN_REBOOT "Reboot"
|
|
#endif
|
|
|
|
#endif /*__LANG_H__*/
|