From ebfbb758189b9b58f0bbb7d918cf0a95e3cb155b Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Wed, 14 Dec 2022 22:30:00 +0100 Subject: [PATCH 1/2] Improve debug logging filter arguments This disables the info category by default, with the exception of the Application category. And allows enabling info and debug categories indidually. Also adds a -q (quiet) flag to silence even warnings. For convenience, enabling a debug category will implicitly enable the according info and warning categories. --- server/main.cpp | 63 +++++++++++++++++++++++++++++-------------------- 1 file changed, 37 insertions(+), 26 deletions(-) diff --git a/server/main.cpp b/server/main.cpp index 99f0917d..b6f5be3b 100644 --- a/server/main.cpp +++ b/server/main.cpp @@ -99,19 +99,10 @@ int main(int argc, char *argv[]) QCommandLineOption foregroundOption(QStringList() << "n" << "no-daemon", QCoreApplication::translate("nymea", "Run nymead in the foreground, not as daemon.")); parser.addOption(foregroundOption); - QString debugDescription = QCoreApplication::translate("nymea", "Debug categories to enable. Prefix with \"No\" to disable. Suffix with \"Warnings\" to address warnings.\nExamples:\n-d AWSTraffic\n-d NoDeviceManager\n-d NoBluetoothWarnings\n\nCategories are:"); + QCommandLineOption quietOption(QStringList() << "q" << "quiet", QCoreApplication::translate("nymea", "Disables logging all debug, info and warning categories.")); + parser.addOption(quietOption); - loggingFilters.sort(); - foreach (const QString &filterName, loggingFilters) - debugDescription += "\n- " + filterName; - - - loggingFiltersPlugins.sort(); - debugDescription += "\n\nPlugin categories:\n"; - foreach (const QString &filterName, loggingFiltersPlugins) - debugDescription += "\n- " + filterName; - - QCommandLineOption allOption(QStringList() << "p" << "print-all", QCoreApplication::translate("nymea", "Enables all debug categories except *Traffic and *Debug categories. Single debug categories can be disabled again with -d parameter.")); + QCommandLineOption allOption(QStringList() << "p" << "print-all", QCoreApplication::translate("nymea", "Enables all info and debug categories except *Traffic and *Debug categories.")); parser.addOption(allOption); QCommandLineOption logOption({"l", "log"}, QCoreApplication::translate("nymea", "Specify a log file to write to, if this option is not specified, logs will be printed to the standard output."), "logfile"); @@ -123,7 +114,8 @@ int main(int argc, char *argv[]) QCommandLineOption dbusOption(QStringList() << "session", QCoreApplication::translate("nymea", "If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus.")); parser.addOption(dbusOption); - QCommandLineOption debugOption(QStringList() << "d" << "debug-category", debugDescription, "[No]DebugCategory[Warnings]"); + QString debugDescription = QCoreApplication::translate("nymea", "Debug categories to enable. Prefix with \"No\" to disable. Suffix with \"Info\" or \"Warnings\" to address info and warning messages. Enabling a debug category will implicitly enable the according info category.\nExamples:\n-d ThingManager\n-d NoApplicationInfo\n\n"); + QCommandLineOption debugOption(QStringList() << "d" << "debug-category", debugDescription, "[No]DebugCategory[Warning|Info]]"); parser.addOption(debugOption); QCommandLineOption interfacesOption({"i", "interface"}, QCoreApplication::translate("nymea", "Additional interfaces to listen on. In nymea URI format (e.g. nymeas://127.0.0.2:7777). Note that such interfaces will not require any authentication as they are intended to be used for automated testing only."), "interfaceString"); @@ -138,23 +130,29 @@ int main(int argc, char *argv[]) } /* The logging rules will be evaluated sequentially - * 1. All debug categories off - * 2. Enable all debug categories if requested from command line (-p) + * 1. All debug and info categories off (with -q also warnings) + * 2. Enable all warning info and debug categories if requested from command line (-p) * 3. The stored categories from the nymead.conf will be appended * 4. Add the individual command line params will be added (-d) * 5. QT_LOGGING_CONF * 6. QT_LOGGING_RULES - * - * The final filter rules will be set. */ // 1. All debug categories off QStringList loggingRules; loggingRules << "*.debug=false"; + loggingRules << "*.info=false"; + if (parser.isSet(quietOption)) { + loggingRules << "*.warning=false"; + } else { + loggingRules << "Application.info=true"; + } // 2. Enable all debug categories making sense if requested from command line (-p) if (parser.isSet(allOption)) { loggingRules << "*.debug=true"; + loggingRules << "*.info=true"; + loggingRules << "*.warning=true"; loggingRules << "*Traffic.debug=false"; loggingRules << "*Debug.debug=false"; } @@ -163,21 +161,34 @@ int main(int argc, char *argv[]) NymeaSettings nymeaSettings(NymeaSettings::SettingsRoleGlobal); nymeaSettings.beginGroup("LoggingRules"); foreach (const QString &category, nymeaSettings.childKeys()) { - loggingRules << QString("%1=%2").arg(category).arg(nymeaSettings.value(category, "false").toString()); + bool enable = nymeaSettings.value(category, false).toBool(); + if (enable && category.endsWith("debug")) { + loggingRules << QString("%1=%2").arg(category).arg("true"); + loggingRules << QString("%1=%2").arg(QString(category).replace(QRegExp("debug$"), "info")).arg("true"); + loggingRules << QString("%1=%2").arg(QString(category).replace(QRegExp("debug$"), "warning")).arg("true"); + } else { + loggingRules << QString("%1=%2").arg(category).arg(nymeaSettings.value(category, "false").toString()); + } } nymeaSettings.endGroup(); // 4. Add the individual command line params will be added (-d) foreach (QString debugArea, parser.values(debugOption)) { - bool enable = !debugArea.startsWith("No"); + bool enable = true; bool isWarning = debugArea.endsWith("Warnings"); - debugArea.remove(QRegExp("^No")); - debugArea.remove(QRegExp("Warnings$")); - loggingRules.append(QString("%1.%2=%3").arg(debugArea).arg(isWarning ? "warning" : "debug").arg(enable ? "true": "false")); -// if (loggingFilters.contains(debugArea) || loggingFiltersPlugins.contains(debugArea)) { -// } else { -// qCWarning(dcApplication) << QCoreApplication::translate("nymea", "No such debug category:") << debugArea; -// } + bool isInfo = debugArea.endsWith("Info"); + if (QRegExp("^No[A-Z]").exactMatch(debugArea)) { + debugArea.remove(QRegExp("^No")); + enable = false; + } + debugArea.remove(QRegExp("(Warnings|Info)$")); + if (enable && !isWarning && !isInfo) { + loggingRules.append(QString("%1.%2=%3").arg(debugArea).arg("debug").arg("true")); + loggingRules.append(QString("%1.%2=%3").arg(debugArea).arg("info").arg("true")); + loggingRules.append(QString("%1.%2=%3").arg(debugArea).arg("warning").arg("true")); + } else { + loggingRules.append(QString("%1.%2=%3").arg(debugArea).arg(isWarning ? "warning" : (isInfo ? "info" : "debug")).arg(enable ? "true": "false")); + } } // Finally set the rules for the logging From 88aab9e639dd1d12225be91e8c5f75f6b07e392a Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Wed, 14 Dec 2022 22:39:29 +0100 Subject: [PATCH 2/2] Update translations --- ...727a4a9a-c187-446f-aadf-f1b2220607d1-de.ts | 537 +++++++++--------- ...a4a9a-c187-446f-aadf-f1b2220607d1-en_US.ts | 537 +++++++++--------- translations/nymead-cs.ts | 287 +++++----- translations/nymead-da.ts | 287 +++++----- translations/nymead-de.ts | 302 +++++----- translations/nymead-en_US.ts | 287 +++++----- translations/nymead-es.ts | 287 +++++----- translations/nymead-fi.ts | 287 +++++----- translations/nymead-fr.ts | 287 +++++----- translations/nymead-it.ts | 287 +++++----- translations/nymead-nl.ts | 287 +++++----- translations/nymead-pt.ts | 287 +++++----- 12 files changed, 1937 insertions(+), 2022 deletions(-) diff --git a/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-de.ts b/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-de.ts index 6f012e57..d45db00c 100644 --- a/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-de.ts +++ b/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-de.ts @@ -53,88 +53,38 @@ Bool - The name of the ParamType (ThingClass: inputTypeMock, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) ----------- -The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of ThingClass inputTypeMock + The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of ThingClass inputTypeMock Boolscher Wert - - Bool changed - The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of ThingClass inputTypeMock - Boolscher Wert geändert - Color - The name of the ParamType (ThingClass: inputTypeMock, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) ----------- -The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of ThingClass inputTypeMock + The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of ThingClass inputTypeMock Farbe - - Color changed - The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of ThingClass inputTypeMock - Farbe geändert - Double - The name of the ParamType (ThingClass: inputTypeMock, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22}) ----------- -The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of ThingClass inputTypeMock + The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of ThingClass inputTypeMock Gleitkommazahl - - Double changed - The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of ThingClass inputTypeMock - Gleitkommazahl geändert - Dummy bool state - The name of the ParamType (ThingClass: autoMock, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469}) ----------- -The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of ThingClass autoMock ----------- -The name of the ParamType (ThingClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310}) + The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of ThingClass autoMock ---------- The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of ThingClass mock Simulierter boolscher Zustand - - Dummy bool state changed - The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of ThingClass autoMock ----------- -The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of ThingClass mock - Simulierter boolscher Zustand geändert - Dummy double state - The name of the ParamType (ThingClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c}) ----------- -The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of ThingClass mock + The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of ThingClass mock Simulierter Gleitkommazahl-Zustand - - Dummy double state changed - The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of ThingClass mock - Simulierter Gleitkommazahl-Zustand geändert - Dummy int state - The name of the ParamType (ThingClass: autoMock, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) ----------- -The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of ThingClass autoMock ----------- -The name of the ParamType (ThingClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83}) + The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of ThingClass autoMock ---------- The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of ThingClass mock Simulierter Integer Zustand - - Dummy int state changed - The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of ThingClass autoMock ----------- -The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of ThingClass mock - Simulierter Integer Zustand geändert - IPv4 address The name of the ParamType (ThingClass: inputTypeMock, Type: thing, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2}) @@ -147,16 +97,9 @@ The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of ThingClass Int - The name of the ParamType (ThingClass: inputTypeMock, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) ----------- -The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of ThingClass inputTypeMock + The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of ThingClass inputTypeMock Ganzzahl - - Int changed - The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of ThingClass inputTypeMock - Ganzzahl geändert - Mac address The name of the ParamType (ThingClass: inputTypeMock, Type: thing, ID: {e93db587-7919-48f3-8c88-1651de63c765}) @@ -397,16 +340,9 @@ The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of ThingClas String - The name of the ParamType (ThingClass: inputTypeMock, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4}) ----------- -The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of ThingClass inputTypeMock + The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of ThingClass inputTypeMock Zeichenkette - - String changed - The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of ThingClass inputTypeMock - Zeichenkette gändert - Text area The name of the ParamType (ThingClass: inputTypeMock, Type: thing, ID: {716f0994-bc01-42b0-b64d-59236f7320d2}) @@ -419,16 +355,9 @@ The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of ThingClass Time - The name of the ParamType (ThingClass: inputTypeMock, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1}) ----------- -The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of ThingClass inputTypeMock + The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of ThingClass inputTypeMock Zeit - - Time changed - The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of ThingClass inputTypeMock - Zeit geändert - Timeout action The name of the ActionType ({854a0a4a-803f-4b7f-9dce-b07794f9011b}) of ThingClass displayPinMock @@ -438,40 +367,19 @@ The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of ThingClas Timestamp (Int) - The name of the ParamType (ThingClass: inputTypeMock, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641}) ----------- -The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of ThingClass inputTypeMock + The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of ThingClass inputTypeMock Zeitstempel (Int) - - Timestamp (Int) changed - The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of ThingClass inputTypeMock - Zeitstempel (Int) geändert - Timestamp (UInt) - The name of the ParamType (ThingClass: inputTypeMock, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79}) ----------- -The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of ThingClass inputTypeMock + The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of ThingClass inputTypeMock Zeitstempel (UInt) - - Timestamp (UInt) changed - The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of ThingClass inputTypeMock - Zeitstempel (UInt) geändert - UInt - The name of the ParamType (ThingClass: inputTypeMock, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162}) ----------- -The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of ThingClass inputTypeMock + The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of ThingClass inputTypeMock UInt - - UInt changed - The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of ThingClass inputTypeMock - UInt geändert - URL The name of the ParamType (ThingClass: inputTypeMock, Type: thing, ID: {fa67229f-fcef-496f-b671-59a4b48f3ab5}) @@ -481,36 +389,20 @@ The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of ThingClass Writable Bool The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) ----------- The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of ThingClass inputTypeMock Schreibbarer boolscher Wert - - Writable Bool changed - The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of ThingClass inputTypeMock - Schreibbarer Boolscher Wert geändert - Writable Color The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) ----------- The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of ThingClass inputTypeMock Schreibbare Farbe - - Writable Color changed - The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of ThingClass inputTypeMock - Schreibbare Farbe geändert - Writable Double The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170}) ----------- The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of ThingClass inputTypeMock Schreibbare Gleitkommazahl @@ -518,27 +410,13 @@ The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of ThingClass Writable Double (min/max) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136}) ----------- The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of ThingClass inputTypeMock Schreibbare Gleitkommazah (min/max) - - Writable Double (min/max) changed - The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of ThingClass inputTypeMock - Schreibbare Gleitkommazahl (min/max) geändert - - - Writable Double changed - The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of ThingClass inputTypeMock - Schreibbare Gleitkommazahl geändert - Writable Int The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7}) ----------- The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of ThingClass inputTypeMock Schreibbare Ganzzahl @@ -546,27 +424,13 @@ The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of ThingClass Writable Int (min/max) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) ----------- The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of ThingClass inputTypeMock Schreibbare Ganzzahl (min/max) - - Writable Int (min/max) changed - The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of ThingClass inputTypeMock - Schreibbare Ganzzahl (min/max) geändert - - - Writable Int changed - The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of ThingClass inputTypeMock - Schreibbare Ganzzahl geändert - Writable String The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38}) ----------- The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of ThingClass inputTypeMock Schreibbbare Zeichenkette @@ -574,69 +438,34 @@ The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of ThingClass Writable String (selection) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639}) ----------- The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of ThingClass inputTypeMock Schreibbare Zeichenkette (Auswahl) - - Writable String (selection) changed - The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of ThingClass inputTypeMock - Schreibbare Zeichenkette (Auswahl) geändert - - - Writable String changed - The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of ThingClass inputTypeMock - Schreibbare Zeichenkette geändert - Writable Time The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) ----------- The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of ThingClass inputTypeMock Schreibbare Zeit - - Writable Time changed - The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of ThingClass inputTypeMock - Schreibbare Zeit geändert - Writable Timestamp (Int) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2}) ----------- The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of ThingClass inputTypeMock Schreibbarer Zeitstempel (Int) - - Writable Timestamp (Int) changed - The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of ThingClass inputTypeMock - Schreibbarer Zeitstempel (Int) geändert - Writable Timestamp (UInt) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee}) ----------- The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of ThingClass inputTypeMock Schreibbarer Zeitstempel (UInt) - - Writable Timestamp (UInt) changed - The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of ThingClass inputTypeMock - Schreibbarer Zeitstempel (UInt) geändert - Writable UInt The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58}) ----------- The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of ThingClass inputTypeMock Schreibbarer UInt @@ -644,43 +473,20 @@ The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of ThingClass Writable UInt (min/max) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751}) ----------- The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of ThingClass inputTypeMock Schriebbarer UInt (min/max) - - Writable UInt (min/max) changed - The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of ThingClass inputTypeMock - - - - Writable UInt changed - The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of ThingClass inputTypeMock - - allowed values The name of the ParamType (ThingClass: displayPinMock, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143}) ---------- -The name of the ParamType (ThingClass: displayPinMock, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143}) ----------- The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of ThingClass displayPinMock ---------- The name of the ParamType (ThingClass: pushButtonMock, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) ----------- The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of ThingClass pushButtonMock Mögliche Werte - - allowed values changed - The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of ThingClass displayPinMock ----------- -The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of ThingClass pushButtonMock - Mögliche Werte geändert - async The name of the ParamType (ThingClass: autoMock, Type: thing, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e}) @@ -688,62 +494,30 @@ The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of ThingClass The name of the ParamType (ThingClass: mock, Type: thing, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3}) asynchron - - battery level - The name of the ParamType (ThingClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4}) ----------- -The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of ThingClass mock ----------- -The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of ThingClass mock - Batterieladung - battery level critical - The name of the ParamType (ThingClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3}) ----------- -The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of ThingClass mock ----------- -The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of ThingClass mock + The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of ThingClass mock Batterieladung kritisch bool value The name of the ParamType (ThingClass: childMock, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568}) ---------- -The name of the ParamType (ThingClass: childMock, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568}) ----------- The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of ThingClass childMock ---------- The name of the ParamType (ThingClass: parentMock, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0}) ---------- -The name of the ParamType (ThingClass: parentMock, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0}) ----------- The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of ThingClass parentMock ---------- The name of the ParamType (ThingClass: displayPinMock, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4}) ---------- -The name of the ParamType (ThingClass: displayPinMock, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4}) ----------- The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of ThingClass displayPinMock ---------- The name of the ParamType (ThingClass: pushButtonMock, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768}) ----------- The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of ThingClass pushButtonMock Boolscher Wert - - bool value changed - The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of ThingClass childMock ----------- -The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of ThingClass parentMock ----------- -The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of ThingClass displayPinMock ----------- -The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of ThingClass pushButtonMock - Boolscher Wert geändert - broken The name of the ParamType (ThingClass: autoMock, Type: thing, ID: {66179395-ef7a-4013-9fc6-2084104eea09}) @@ -755,24 +529,13 @@ The name of the ParamType (ThingClass: mock, Type: thing, ID: {ae8f8901-f2c1-42a color The name of the ParamType (ThingClass: displayPinMock, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa}) ---------- -The name of the ParamType (ThingClass: displayPinMock, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa}) ----------- The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of ThingClass displayPinMock ---------- The name of the ParamType (ThingClass: pushButtonMock, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e}) ----------- The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of ThingClass pushButtonMock Farbe - - color changed - The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of ThingClass displayPinMock ----------- -The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of ThingClass pushButtonMock - Farbe geändert - configParamBool The name of the ParamType (ThingClass: mock, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145}) @@ -787,24 +550,13 @@ The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of ThingClass double value The name of the ParamType (ThingClass: displayPinMock, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843}) ---------- -The name of the ParamType (ThingClass: displayPinMock, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843}) ----------- The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of ThingClass displayPinMock ---------- The name of the ParamType (ThingClass: pushButtonMock, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c}) ----------- The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of ThingClass pushButtonMock Gleitkommazahl - - double value changed - The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of ThingClass displayPinMock ----------- -The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of ThingClass pushButtonMock - Gleitkommazahl geändert - http port The name of the ParamType (ThingClass: autoMock, Type: thing, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1}) @@ -842,24 +594,13 @@ The name of the ParamType (ThingClass: mock, EventType: event2, ID: {0550e16d-60 percentage The name of the ParamType (ThingClass: displayPinMock, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797}) ---------- -The name of the ParamType (ThingClass: displayPinMock, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797}) ----------- The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of ThingClass displayPinMock ---------- The name of the ParamType (ThingClass: pushButtonMock, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c}) ----------- The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of ThingClass pushButtonMock Prozent - - percentage changed - The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of ThingClass displayPinMock ----------- -The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of ThingClass pushButtonMock - Prozent geändert - pin The name of the ParamType (ThingClass: displayPinMock, Type: thing, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9}) @@ -869,23 +610,14 @@ The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of ThingClass powered The name of the ParamType (ThingClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84}) ---------- -The name of the ParamType (ThingClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84}) ----------- The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of ThingClass mock Eingeschaltet - - powered changed - The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of ThingClass mock - Eingeschaltet geändert - resultCount The name of the ParamType (ThingClass: displayPinMock, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b}) ----------- -The name of the ParamType (ThingClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce}) +The name of the ParamType (ThingClass: pushButtonMock, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b}) Anzahl Ergebnisse @@ -898,5 +630,246 @@ The name of the ParamType (ThingClass: mock, Type: discovery, ID: {d222adb4-2f9c The name of the ParamType (ThingClass: autoMock, Type: settings, ID: {da0b9106-03cf-4631-87e9-26ade3360182}) Mock-Einstellung + + Analog Input 1 + The name of the ParamType (ThingClass: genericIoMock, ActionType: analogInput1, ID: {ac56977c-cbba-47c6-a827-5735d8b0aed6}) +---------- +The name of the StateType ({ac56977c-cbba-47c6-a827-5735d8b0aed6}) of ThingClass genericIoMock + + + + Analog Input 2 + The name of the StateType ({8e07e57e-ba4e-42df-81ee-5b72ed074532}) of ThingClass genericIoMock + + + + Analog Output 1 + The name of the ParamType (ThingClass: genericIoMock, ActionType: analogOutput1, ID: {70cf053e-4abc-4d88-8e1e-2bd9a62256c7}) +---------- +The name of the StateType ({70cf053e-4abc-4d88-8e1e-2bd9a62256c7}) of ThingClass genericIoMock + + + + Analog Output 2 + The name of the ParamType (ThingClass: genericIoMock, ActionType: analogOutput2, ID: {e40bcf7d-47b8-41fa-b213-3652a905b376}) +---------- +The name of the StateType ({e40bcf7d-47b8-41fa-b213-3652a905b376}) of ThingClass genericIoMock + + + + Available firmware version + The name of the StateType ({060d7947-2b70-4a2b-b33b-a3577f71faeb}) of ThingClass mock + + + + Battery level + The name of the ParamType (ThingClass: mock, ActionType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4}) +---------- +The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of ThingClass mock + + + + Button name + The name of the ParamType (ThingClass: mock, ActionType: pressButton, ID: {279e0157-78ea-4bb3-a756-b12fb46cf4fc}) +---------- +The name of the ParamType (ThingClass: mock, EventType: pressed, ID: {5f8adeb2-04f0-4b2e-9dbf-a91966bdcc24}) + + + + Button pressed + The name of the EventType ({f2708625-4b7b-42fd-9a18-3501d89ce599}) of ThingClass mock + + + + Connected + The name of the StateType ({9860d105-2bd9-4651-9bc9-13ff4b9039a7}) of ThingClass mock + + + + Digital Output 1 + The name of the ParamType (ThingClass: genericIoMock, ActionType: digitalOutput1, ID: {d6fcdb52-f7c3-423b-b9f5-1e29f164c42e}) +---------- +The name of the StateType ({d6fcdb52-f7c3-423b-b9f5-1e29f164c42e}) of ThingClass genericIoMock + + + + Digital Output 2 + The name of the ParamType (ThingClass: genericIoMock, ActionType: digitalOutput2, ID: {35de8b68-0cf3-4850-a27d-cf9c4a26921f}) +---------- +The name of the StateType ({35de8b68-0cf3-4850-a27d-cf9c4a26921f}) of ThingClass genericIoMock + + + + Digital input 1 + The name of the StateType ({07165c12-4d53-45c0-8bf1-34618443b706}) of ThingClass genericIoMock + + + + Digital input 2 + The name of the StateType ({0a4362ba-a086-4540-84ba-107ef7b99ed8}) of ThingClass genericIoMock + + + + Dummy int state with limits + The name of the ParamType (ThingClass: mock, ActionType: intWithLimits, ID: {5aa479bd-537a-4716-9852-52f6eec58722}) +---------- +The name of the StateType ({5aa479bd-537a-4716-9852-52f6eec58722}) of ThingClass mock + + + + Event 1 + The name of the EventType ({dad344b4-fff3-4803-b5cb-7cbb65aa5102}) of ThingClass childMock +---------- +The name of the EventType ({61ebadc0-47ea-4800-8c45-ee5222cddb4b}) of ThingClass parentMock + + + + Firmware version + The name of the StateType ({9f2e1e5d-3f1f-4794-aca3-4e05b7a48842}) of ThingClass mock + + + + Generic IO pins + The name of the ThingClass ({7cbd729a-465b-4ccb-b59c-5733039dbbed}) + + + + Generic Light (Mock) + The name of the ThingClass ({98ab137e-757e-43f8-9d9b-5d50d990242a}) + + + + Generic Temperature Sensor (Mock) + The name of the ThingClass ({f8917e12-c9cb-4ea1-a06e-1ce6db2194f3}) + + + + Input + The name of the ParamType (ThingClass: virtualIoTemperatureSensorMock, ActionType: input, ID: {fd341f72-6d9a-4812-9f66-47197c48a935}) +---------- +The name of the StateType ({fd341f72-6d9a-4812-9f66-47197c48a935}) of ThingClass virtualIoTemperatureSensorMock + + + + Maximum temperature + The name of the ParamType (ThingClass: virtualIoTemperatureSensorMock, Type: settings, ID: {7077c56f-c35b-4252-8c15-8fb549be04ce}) + + + + Maximum value for int with limits + The name of the ParamType (ThingClass: mock, Type: settings, ID: {984e7ae0-6de7-447e-bc4d-5afde8a00f27}) + + + + Minimum temperature + The name of the ParamType (ThingClass: virtualIoTemperatureSensorMock, Type: settings, ID: {803cddbf-94c7-4f35-bc7a-18698b03b942}) + + + + Minimum value for int with limits + The name of the ParamType (ThingClass: mock, Type: settings, ID: {9c34c881-e825-4f27-bb5c-db868bc60fb1}) + + + + Param with default value + The name of the ParamType (ThingClass: mock, ActionType: withParams, ID: {d1e428ae-eb8c-45aa-b1b0-e3d7de659c3a}) + + + + Power + The name of the ParamType (ThingClass: virtualIoLightMock, ActionType: power, ID: {d1917b3d-1530-4cf9-90f7-263ee88e714b}) +---------- +The name of the StateType ({d1917b3d-1530-4cf9-90f7-263ee88e714b}) of ThingClass virtualIoLightMock + + + + Press button + The name of the ActionType ({592dfded-0144-4947-bd02-ca84c2124f39}) of ThingClass mock + + + + Result count + The name of the ParamType (ThingClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce}) + + + + Set Digital Output 1 + The name of the ActionType ({d6fcdb52-f7c3-423b-b9f5-1e29f164c42e}) of ThingClass genericIoMock + + + + Set Digital Output 2 + The name of the ActionType ({35de8b68-0cf3-4850-a27d-cf9c4a26921f}) of ThingClass genericIoMock + + + + Set Output Input 1 + The name of the ActionType ({70cf053e-4abc-4d88-8e1e-2bd9a62256c7}) of ThingClass genericIoMock + + + + Set Output Input 2 + The name of the ActionType ({e40bcf7d-47b8-41fa-b213-3652a905b376}) of ThingClass genericIoMock + + + + Set analog input 1 + The name of the ActionType ({ac56977c-cbba-47c6-a827-5735d8b0aed6}) of ThingClass genericIoMock + + + + Set battery level + The name of the ActionType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of ThingClass mock + + + + Set dummy int state with limits + The name of the ActionType ({5aa479bd-537a-4716-9852-52f6eec58722}) of ThingClass mock + + + + Set input + The name of the ActionType ({fd341f72-6d9a-4812-9f66-47197c48a935}) of ThingClass virtualIoTemperatureSensorMock + + + + Set power + The name of the ActionType ({d1917b3d-1530-4cf9-90f7-263ee88e714b}) of ThingClass virtualIoLightMock + + + + Set signal strength + The name of the ActionType ({2a0213bf-4af3-4384-904e-3376348a597e}) of ThingClass mock + + + + Set update status + The name of the ActionType ({ebc41327-53d5-40c2-8e7b-1164a8ff359e}) of ThingClass mock + + + + Signal strength + The name of the ParamType (ThingClass: mock, ActionType: signalStrength, ID: {2a0213bf-4af3-4384-904e-3376348a597e}) +---------- +The name of the StateType ({2a0213bf-4af3-4384-904e-3376348a597e}) of ThingClass mock + + + + Temperature + The name of the StateType ({db9cc518-1012-47e2-8212-6e616fed07a6}) of ThingClass virtualIoTemperatureSensorMock + + + + Update firmware + The name of the ActionType ({f2b847dd-ab40-4278-940b-3615f1d7dfd3}) of ThingClass mock + + + + Update status + The name of the ParamType (ThingClass: mock, ActionType: updateStatus, ID: {ebc41327-53d5-40c2-8e7b-1164a8ff359e}) +---------- +The name of the StateType ({ebc41327-53d5-40c2-8e7b-1164a8ff359e}) of ThingClass mock + + diff --git a/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-en_US.ts b/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-en_US.ts index b4bc0c2b..1a239083 100644 --- a/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-en_US.ts +++ b/plugins/mock/translations/727a4a9a-c187-446f-aadf-f1b2220607d1-en_US.ts @@ -53,88 +53,38 @@ Bool - The name of the ParamType (ThingClass: inputTypeMock, EventType: bool, ID: {3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) ----------- -The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of ThingClass inputTypeMock - - - - Bool changed - The name of the EventType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of ThingClass inputTypeMock + The name of the StateType ({3bad3a09-5826-4ed7-a832-10e3e2ee2a7d}) of ThingClass inputTypeMock Color - The name of the ParamType (ThingClass: inputTypeMock, EventType: color, ID: {4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) ----------- -The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of ThingClass inputTypeMock - - - - Color changed - The name of the EventType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of ThingClass inputTypeMock + The name of the StateType ({4507d5c6-b692-4bd6-87f2-00364bc0cb4d}) of ThingClass inputTypeMock Double - The name of the ParamType (ThingClass: inputTypeMock, EventType: double, ID: {f7d2063d-959e-46ac-8568-8b99722d3b22}) ----------- -The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of ThingClass inputTypeMock - - - - Double changed - The name of the EventType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of ThingClass inputTypeMock + The name of the StateType ({f7d2063d-959e-46ac-8568-8b99722d3b22}) of ThingClass inputTypeMock Dummy bool state - The name of the ParamType (ThingClass: autoMock, EventType: boolValue, ID: {978b0ba5-d008-41bd-b63d-a3bd23cb6469}) ----------- -The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of ThingClass autoMock ----------- -The name of the ParamType (ThingClass: mock, EventType: bool, ID: {9dd6a97c-dfd1-43dc-acbd-367932742310}) + The name of the StateType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of ThingClass autoMock ---------- The name of the StateType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of ThingClass mock - - Dummy bool state changed - The name of the EventType ({978b0ba5-d008-41bd-b63d-a3bd23cb6469}) of ThingClass autoMock ----------- -The name of the EventType ({9dd6a97c-dfd1-43dc-acbd-367932742310}) of ThingClass mock - - Dummy double state - The name of the ParamType (ThingClass: mock, EventType: double, ID: {7cac53ee-7048-4dc9-b000-7b585390f34c}) ----------- -The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of ThingClass mock - - - - Dummy double state changed - The name of the EventType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of ThingClass mock + The name of the StateType ({7cac53ee-7048-4dc9-b000-7b585390f34c}) of ThingClass mock Dummy int state - The name of the ParamType (ThingClass: autoMock, EventType: int, ID: {74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) ----------- -The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of ThingClass autoMock ----------- -The name of the ParamType (ThingClass: mock, EventType: int, ID: {80baec19-54de-4948-ac46-31eabfaceb83}) + The name of the StateType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of ThingClass autoMock ---------- The name of the StateType ({80baec19-54de-4948-ac46-31eabfaceb83}) of ThingClass mock - - Dummy int state changed - The name of the EventType ({74b24296-ba0b-4fbd-87f3-1b09a8bc3e8c}) of ThingClass autoMock ----------- -The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of ThingClass mock - - IPv4 address The name of the ParamType (ThingClass: inputTypeMock, Type: thing, ID: {9e5f86a0-4bb3-4892-bff8-3fc4032af6e2}) @@ -147,14 +97,7 @@ The name of the EventType ({80baec19-54de-4948-ac46-31eabfaceb83}) of ThingClass Int - The name of the ParamType (ThingClass: inputTypeMock, EventType: int, ID: {d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) ----------- -The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of ThingClass inputTypeMock - - - - Int changed - The name of the EventType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of ThingClass inputTypeMock + The name of the StateType ({d0fc56ae-5791-4e91-b76c-dadfbc7e7dbb}) of ThingClass inputTypeMock @@ -397,14 +340,7 @@ The name of the ActionType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of ThingClas String - The name of the ParamType (ThingClass: inputTypeMock, EventType: string, ID: {27f69ca9-a321-40ff-bfee-4b0272a671b4}) ----------- -The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of ThingClass inputTypeMock - - - - String changed - The name of the EventType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of ThingClass inputTypeMock + The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of ThingClass inputTypeMock @@ -419,14 +355,7 @@ The name of the StateType ({27f69ca9-a321-40ff-bfee-4b0272a671b4}) of ThingClass Time - The name of the ParamType (ThingClass: inputTypeMock, EventType: time, ID: {8250c71e-59bc-41ab-b576-99fcfc34e8d1}) ----------- -The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of ThingClass inputTypeMock - - - - Time changed - The name of the EventType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of ThingClass inputTypeMock + The name of the StateType ({8250c71e-59bc-41ab-b576-99fcfc34e8d1}) of ThingClass inputTypeMock @@ -438,38 +367,17 @@ The name of the ActionType ({54646e7c-bc54-4895-81a2-590d72d120f9}) of ThingClas Timestamp (Int) - The name of the ParamType (ThingClass: inputTypeMock, EventType: timestampInt, ID: {2c91b5ef-c2d1-4367-bc65-5a13abf69641}) ----------- -The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of ThingClass inputTypeMock - - - - Timestamp (Int) changed - The name of the EventType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of ThingClass inputTypeMock + The name of the StateType ({2c91b5ef-c2d1-4367-bc65-5a13abf69641}) of ThingClass inputTypeMock Timestamp (UInt) - The name of the ParamType (ThingClass: inputTypeMock, EventType: timestampUInt, ID: {6c9a96e8-0d48-4f42-8967-848358fd7f79}) ----------- -The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of ThingClass inputTypeMock - - - - Timestamp (UInt) changed - The name of the EventType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of ThingClass inputTypeMock + The name of the StateType ({6c9a96e8-0d48-4f42-8967-848358fd7f79}) of ThingClass inputTypeMock UInt - The name of the ParamType (ThingClass: inputTypeMock, EventType: uint, ID: {19e74fcc-bfd5-491f-8eb6-af128e8f1162}) ----------- -The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of ThingClass inputTypeMock - - - - UInt changed - The name of the EventType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of ThingClass inputTypeMock + The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of ThingClass inputTypeMock @@ -481,36 +389,20 @@ The name of the StateType ({19e74fcc-bfd5-491f-8eb6-af128e8f1162}) of ThingClass Writable Bool The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableBool, ID: {a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) ----------- The name of the StateType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of ThingClass inputTypeMock - - Writable Bool changed - The name of the EventType ({a7c11774-f31f-4d64-99d1-e0ae5fb35a5c}) of ThingClass inputTypeMock - - Writable Color The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableColor, ID: {455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) ----------- The name of the StateType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of ThingClass inputTypeMock - - Writable Color changed - The name of the EventType ({455f4f68-3cb0-4e8a-a707-62e4a2a8035c}) of ThingClass inputTypeMock - - Writable Double The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableDouble, ID: {8e2eb91b-d60b-4461-9a50-d7b8ad263170}) ----------- The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of ThingClass inputTypeMock @@ -518,27 +410,13 @@ The name of the StateType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of ThingClass Writable Double (min/max) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableDoubleMinMax, ID: {00d3425e-1da6-4748-8906-4555ceefb136}) ----------- The name of the StateType ({00d3425e-1da6-4748-8906-4555ceefb136}) of ThingClass inputTypeMock - - Writable Double (min/max) changed - The name of the EventType ({00d3425e-1da6-4748-8906-4555ceefb136}) of ThingClass inputTypeMock - - - - Writable Double changed - The name of the EventType ({8e2eb91b-d60b-4461-9a50-d7b8ad263170}) of ThingClass inputTypeMock - - Writable Int The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableInt, ID: {857a8422-983c-47d6-a15f-d8450b3162f7}) ----------- The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of ThingClass inputTypeMock @@ -546,27 +424,13 @@ The name of the StateType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of ThingClass Writable Int (min/max) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableIntMinMax, ID: {86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) ----------- The name of the StateType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of ThingClass inputTypeMock - - Writable Int (min/max) changed - The name of the EventType ({86a107bc-510a-4d38-bfeb-0a9c2b6d8d87}) of ThingClass inputTypeMock - - - - Writable Int changed - The name of the EventType ({857a8422-983c-47d6-a15f-d8450b3162f7}) of ThingClass inputTypeMock - - Writable String The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableString, ID: {ef511043-bd1a-4a5f-984c-222b7da43f38}) ----------- The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of ThingClass inputTypeMock @@ -574,69 +438,34 @@ The name of the StateType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of ThingClass Writable String (selection) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableStringSelection, ID: {209d7afc-6fe9-4fe9-939b-e472ea0ad639}) ----------- The name of the StateType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of ThingClass inputTypeMock - - Writable String (selection) changed - The name of the EventType ({209d7afc-6fe9-4fe9-939b-e472ea0ad639}) of ThingClass inputTypeMock - - - - Writable String changed - The name of the EventType ({ef511043-bd1a-4a5f-984c-222b7da43f38}) of ThingClass inputTypeMock - - Writable Time The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableTime, ID: {d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) ----------- The name of the StateType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of ThingClass inputTypeMock - - Writable Time changed - The name of the EventType ({d64c8b3f-ca7d-47f6-b271-867ffd80a4d4}) of ThingClass inputTypeMock - - Writable Timestamp (Int) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableTimestampInt, ID: {88b6746a-b009-4df6-8986-d7884ffd94b2}) ----------- The name of the StateType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of ThingClass inputTypeMock - - Writable Timestamp (Int) changed - The name of the EventType ({88b6746a-b009-4df6-8986-d7884ffd94b2}) of ThingClass inputTypeMock - - Writable Timestamp (UInt) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableTimestampUInt, ID: {45d0069a-63ac-4265-8170-8152778608ee}) ----------- The name of the StateType ({45d0069a-63ac-4265-8170-8152778608ee}) of ThingClass inputTypeMock - - Writable Timestamp (UInt) changed - The name of the EventType ({45d0069a-63ac-4265-8170-8152778608ee}) of ThingClass inputTypeMock - - Writable UInt The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableUInt, ID: {563e9c4c-5198-400a-9f6c-358f4752af58}) ----------- The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of ThingClass inputTypeMock @@ -644,43 +473,20 @@ The name of the StateType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of ThingClass Writable UInt (min/max) The name of the ParamType (ThingClass: inputTypeMock, ActionType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751}) ---------- -The name of the ParamType (ThingClass: inputTypeMock, EventType: writableUIntMinMax, ID: {79238998-eaab-4d71-b406-5d78f1749751}) ----------- The name of the StateType ({79238998-eaab-4d71-b406-5d78f1749751}) of ThingClass inputTypeMock - - Writable UInt (min/max) changed - The name of the EventType ({79238998-eaab-4d71-b406-5d78f1749751}) of ThingClass inputTypeMock - - - - Writable UInt changed - The name of the EventType ({563e9c4c-5198-400a-9f6c-358f4752af58}) of ThingClass inputTypeMock - - allowed values The name of the ParamType (ThingClass: displayPinMock, ActionType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143}) ---------- -The name of the ParamType (ThingClass: displayPinMock, EventType: allowedValues, ID: {b463c5ae-4d55-402f-8480-a5cdb485c143}) ----------- The name of the StateType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of ThingClass displayPinMock ---------- The name of the ParamType (ThingClass: pushButtonMock, ActionType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, EventType: allowedValues, ID: {05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) ----------- The name of the StateType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of ThingClass pushButtonMock - - allowed values changed - The name of the EventType ({b463c5ae-4d55-402f-8480-a5cdb485c143}) of ThingClass displayPinMock ----------- -The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of ThingClass pushButtonMock - - async The name of the ParamType (ThingClass: autoMock, Type: thing, ID: {a5c4315f-0624-4971-87c1-4bbfbfdbd16e}) @@ -688,62 +494,30 @@ The name of the EventType ({05f63f9c-f61e-4dcf-ad55-3f13fde2765b}) of ThingClass The name of the ParamType (ThingClass: mock, Type: thing, ID: {f2977061-4dd0-4ef5-85aa-3b7134743be3}) - - battery level - The name of the ParamType (ThingClass: mock, EventType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4}) ----------- -The name of the EventType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of ThingClass mock ----------- -The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of ThingClass mock - - battery level critical - The name of the ParamType (ThingClass: mock, EventType: batteryCritical, ID: {580bc611-1a55-41f3-996f-8d3ccf543db3}) ----------- -The name of the EventType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of ThingClass mock ----------- -The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of ThingClass mock + The name of the StateType ({580bc611-1a55-41f3-996f-8d3ccf543db3}) of ThingClass mock bool value The name of the ParamType (ThingClass: childMock, ActionType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568}) ---------- -The name of the ParamType (ThingClass: childMock, EventType: boolValue, ID: {80ba1449-b485-47d4-a067-6bf306e2a568}) ----------- The name of the StateType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of ThingClass childMock ---------- The name of the ParamType (ThingClass: parentMock, ActionType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0}) ---------- -The name of the ParamType (ThingClass: parentMock, EventType: boolValue, ID: {d24ede5f-4064-4898-bb84-cfb533b1fbc0}) ----------- The name of the StateType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of ThingClass parentMock ---------- The name of the ParamType (ThingClass: displayPinMock, ActionType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4}) ---------- -The name of the ParamType (ThingClass: displayPinMock, EventType: bool, ID: {7ffe514f-7999-4998-8350-0e73e222a8c4}) ----------- The name of the StateType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of ThingClass displayPinMock ---------- The name of the ParamType (ThingClass: pushButtonMock, ActionType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, EventType: bool, ID: {e680f7a4-b39e-46da-be41-fa3170fe3768}) ----------- The name of the StateType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of ThingClass pushButtonMock - - bool value changed - The name of the EventType ({80ba1449-b485-47d4-a067-6bf306e2a568}) of ThingClass childMock ----------- -The name of the EventType ({d24ede5f-4064-4898-bb84-cfb533b1fbc0}) of ThingClass parentMock ----------- -The name of the EventType ({7ffe514f-7999-4998-8350-0e73e222a8c4}) of ThingClass displayPinMock ----------- -The name of the EventType ({e680f7a4-b39e-46da-be41-fa3170fe3768}) of ThingClass pushButtonMock - - broken The name of the ParamType (ThingClass: autoMock, Type: thing, ID: {66179395-ef7a-4013-9fc6-2084104eea09}) @@ -755,24 +529,13 @@ The name of the ParamType (ThingClass: mock, Type: thing, ID: {ae8f8901-f2c1-42a color The name of the ParamType (ThingClass: displayPinMock, ActionType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa}) ---------- -The name of the ParamType (ThingClass: displayPinMock, EventType: color, ID: {3e161294-8a0d-4384-9676-6959e08cc2fa}) ----------- The name of the StateType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of ThingClass displayPinMock ---------- The name of the ParamType (ThingClass: pushButtonMock, ActionType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, EventType: color, ID: {20dc7c22-c50e-42db-837c-2bbced939f8e}) ----------- The name of the StateType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of ThingClass pushButtonMock - - color changed - The name of the EventType ({3e161294-8a0d-4384-9676-6959e08cc2fa}) of ThingClass displayPinMock ----------- -The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of ThingClass pushButtonMock - - configParamBool The name of the ParamType (ThingClass: mock, Type: plugin, ID: {c75723b6-ea4f-4982-9751-6c5e39c88145}) @@ -787,24 +550,13 @@ The name of the EventType ({20dc7c22-c50e-42db-837c-2bbced939f8e}) of ThingClass double value The name of the ParamType (ThingClass: displayPinMock, ActionType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843}) ---------- -The name of the ParamType (ThingClass: displayPinMock, EventType: double, ID: {17635624-7c19-4bae-8429-2f7aa5d2f843}) ----------- The name of the StateType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of ThingClass displayPinMock ---------- The name of the ParamType (ThingClass: pushButtonMock, ActionType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, EventType: double, ID: {53cd7c55-49b7-441b-b970-9048f20f0e2c}) ----------- The name of the StateType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of ThingClass pushButtonMock - - double value changed - The name of the EventType ({17635624-7c19-4bae-8429-2f7aa5d2f843}) of ThingClass displayPinMock ----------- -The name of the EventType ({53cd7c55-49b7-441b-b970-9048f20f0e2c}) of ThingClass pushButtonMock - - http port The name of the ParamType (ThingClass: autoMock, Type: thing, ID: {bfeb0613-dab6-408c-aa27-c362c921d0d1}) @@ -842,24 +594,13 @@ The name of the ParamType (ThingClass: mock, EventType: event2, ID: {0550e16d-60 percentage The name of the ParamType (ThingClass: displayPinMock, ActionType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797}) ---------- -The name of the ParamType (ThingClass: displayPinMock, EventType: percentage, ID: {527f0687-0b28-4c26-852c-25b8f83e4797}) ----------- The name of the StateType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of ThingClass displayPinMock ---------- The name of the ParamType (ThingClass: pushButtonMock, ActionType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, EventType: percentage, ID: {72981c04-267a-4ba0-a59e-9921d2f3af9c}) ----------- The name of the StateType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of ThingClass pushButtonMock - - percentage changed - The name of the EventType ({527f0687-0b28-4c26-852c-25b8f83e4797}) of ThingClass displayPinMock ----------- -The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of ThingClass pushButtonMock - - pin The name of the ParamType (ThingClass: displayPinMock, Type: thing, ID: {da820e07-22dc-4173-9c07-2f49a4e265f9}) @@ -869,23 +610,14 @@ The name of the EventType ({72981c04-267a-4ba0-a59e-9921d2f3af9c}) of ThingClass powered The name of the ParamType (ThingClass: mock, ActionType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84}) ---------- -The name of the ParamType (ThingClass: mock, EventType: power, ID: {064aed0d-da4c-49d4-b236-60f97e98ff84}) ----------- The name of the StateType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of ThingClass mock - - powered changed - The name of the EventType ({064aed0d-da4c-49d4-b236-60f97e98ff84}) of ThingClass mock - - resultCount The name of the ParamType (ThingClass: displayPinMock, Type: discovery, ID: {35f6e4ba-28ad-4152-a58d-ec2600667bcf}) ---------- -The name of the ParamType (ThingClass: pushButtonMock, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b}) ----------- -The name of the ParamType (ThingClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce}) +The name of the ParamType (ThingClass: pushButtonMock, Type: discovery, ID: {c40dbc59-4bba-4871-9b8e-bbd8d5d9193b}) @@ -898,5 +630,246 @@ The name of the ParamType (ThingClass: mock, Type: discovery, ID: {d222adb4-2f9c The name of the ParamType (ThingClass: autoMock, Type: settings, ID: {da0b9106-03cf-4631-87e9-26ade3360182}) + + Analog Input 1 + The name of the ParamType (ThingClass: genericIoMock, ActionType: analogInput1, ID: {ac56977c-cbba-47c6-a827-5735d8b0aed6}) +---------- +The name of the StateType ({ac56977c-cbba-47c6-a827-5735d8b0aed6}) of ThingClass genericIoMock + + + + Analog Input 2 + The name of the StateType ({8e07e57e-ba4e-42df-81ee-5b72ed074532}) of ThingClass genericIoMock + + + + Analog Output 1 + The name of the ParamType (ThingClass: genericIoMock, ActionType: analogOutput1, ID: {70cf053e-4abc-4d88-8e1e-2bd9a62256c7}) +---------- +The name of the StateType ({70cf053e-4abc-4d88-8e1e-2bd9a62256c7}) of ThingClass genericIoMock + + + + Analog Output 2 + The name of the ParamType (ThingClass: genericIoMock, ActionType: analogOutput2, ID: {e40bcf7d-47b8-41fa-b213-3652a905b376}) +---------- +The name of the StateType ({e40bcf7d-47b8-41fa-b213-3652a905b376}) of ThingClass genericIoMock + + + + Available firmware version + The name of the StateType ({060d7947-2b70-4a2b-b33b-a3577f71faeb}) of ThingClass mock + + + + Battery level + The name of the ParamType (ThingClass: mock, ActionType: batteryLevel, ID: {6c8ab9a6-0164-4795-b829-f4394fe4edc4}) +---------- +The name of the StateType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of ThingClass mock + + + + Button name + The name of the ParamType (ThingClass: mock, ActionType: pressButton, ID: {279e0157-78ea-4bb3-a756-b12fb46cf4fc}) +---------- +The name of the ParamType (ThingClass: mock, EventType: pressed, ID: {5f8adeb2-04f0-4b2e-9dbf-a91966bdcc24}) + + + + Button pressed + The name of the EventType ({f2708625-4b7b-42fd-9a18-3501d89ce599}) of ThingClass mock + + + + Connected + The name of the StateType ({9860d105-2bd9-4651-9bc9-13ff4b9039a7}) of ThingClass mock + + + + Digital Output 1 + The name of the ParamType (ThingClass: genericIoMock, ActionType: digitalOutput1, ID: {d6fcdb52-f7c3-423b-b9f5-1e29f164c42e}) +---------- +The name of the StateType ({d6fcdb52-f7c3-423b-b9f5-1e29f164c42e}) of ThingClass genericIoMock + + + + Digital Output 2 + The name of the ParamType (ThingClass: genericIoMock, ActionType: digitalOutput2, ID: {35de8b68-0cf3-4850-a27d-cf9c4a26921f}) +---------- +The name of the StateType ({35de8b68-0cf3-4850-a27d-cf9c4a26921f}) of ThingClass genericIoMock + + + + Digital input 1 + The name of the StateType ({07165c12-4d53-45c0-8bf1-34618443b706}) of ThingClass genericIoMock + + + + Digital input 2 + The name of the StateType ({0a4362ba-a086-4540-84ba-107ef7b99ed8}) of ThingClass genericIoMock + + + + Dummy int state with limits + The name of the ParamType (ThingClass: mock, ActionType: intWithLimits, ID: {5aa479bd-537a-4716-9852-52f6eec58722}) +---------- +The name of the StateType ({5aa479bd-537a-4716-9852-52f6eec58722}) of ThingClass mock + + + + Event 1 + The name of the EventType ({dad344b4-fff3-4803-b5cb-7cbb65aa5102}) of ThingClass childMock +---------- +The name of the EventType ({61ebadc0-47ea-4800-8c45-ee5222cddb4b}) of ThingClass parentMock + + + + Firmware version + The name of the StateType ({9f2e1e5d-3f1f-4794-aca3-4e05b7a48842}) of ThingClass mock + + + + Generic IO pins + The name of the ThingClass ({7cbd729a-465b-4ccb-b59c-5733039dbbed}) + + + + Generic Light (Mock) + The name of the ThingClass ({98ab137e-757e-43f8-9d9b-5d50d990242a}) + + + + Generic Temperature Sensor (Mock) + The name of the ThingClass ({f8917e12-c9cb-4ea1-a06e-1ce6db2194f3}) + + + + Input + The name of the ParamType (ThingClass: virtualIoTemperatureSensorMock, ActionType: input, ID: {fd341f72-6d9a-4812-9f66-47197c48a935}) +---------- +The name of the StateType ({fd341f72-6d9a-4812-9f66-47197c48a935}) of ThingClass virtualIoTemperatureSensorMock + + + + Maximum temperature + The name of the ParamType (ThingClass: virtualIoTemperatureSensorMock, Type: settings, ID: {7077c56f-c35b-4252-8c15-8fb549be04ce}) + + + + Maximum value for int with limits + The name of the ParamType (ThingClass: mock, Type: settings, ID: {984e7ae0-6de7-447e-bc4d-5afde8a00f27}) + + + + Minimum temperature + The name of the ParamType (ThingClass: virtualIoTemperatureSensorMock, Type: settings, ID: {803cddbf-94c7-4f35-bc7a-18698b03b942}) + + + + Minimum value for int with limits + The name of the ParamType (ThingClass: mock, Type: settings, ID: {9c34c881-e825-4f27-bb5c-db868bc60fb1}) + + + + Param with default value + The name of the ParamType (ThingClass: mock, ActionType: withParams, ID: {d1e428ae-eb8c-45aa-b1b0-e3d7de659c3a}) + + + + Power + The name of the ParamType (ThingClass: virtualIoLightMock, ActionType: power, ID: {d1917b3d-1530-4cf9-90f7-263ee88e714b}) +---------- +The name of the StateType ({d1917b3d-1530-4cf9-90f7-263ee88e714b}) of ThingClass virtualIoLightMock + + + + Press button + The name of the ActionType ({592dfded-0144-4947-bd02-ca84c2124f39}) of ThingClass mock + + + + Result count + The name of the ParamType (ThingClass: mock, Type: discovery, ID: {d222adb4-2f9c-4c3f-8655-76400d0fb6ce}) + + + + Set Digital Output 1 + The name of the ActionType ({d6fcdb52-f7c3-423b-b9f5-1e29f164c42e}) of ThingClass genericIoMock + + + + Set Digital Output 2 + The name of the ActionType ({35de8b68-0cf3-4850-a27d-cf9c4a26921f}) of ThingClass genericIoMock + + + + Set Output Input 1 + The name of the ActionType ({70cf053e-4abc-4d88-8e1e-2bd9a62256c7}) of ThingClass genericIoMock + + + + Set Output Input 2 + The name of the ActionType ({e40bcf7d-47b8-41fa-b213-3652a905b376}) of ThingClass genericIoMock + + + + Set analog input 1 + The name of the ActionType ({ac56977c-cbba-47c6-a827-5735d8b0aed6}) of ThingClass genericIoMock + + + + Set battery level + The name of the ActionType ({6c8ab9a6-0164-4795-b829-f4394fe4edc4}) of ThingClass mock + + + + Set dummy int state with limits + The name of the ActionType ({5aa479bd-537a-4716-9852-52f6eec58722}) of ThingClass mock + + + + Set input + The name of the ActionType ({fd341f72-6d9a-4812-9f66-47197c48a935}) of ThingClass virtualIoTemperatureSensorMock + + + + Set power + The name of the ActionType ({d1917b3d-1530-4cf9-90f7-263ee88e714b}) of ThingClass virtualIoLightMock + + + + Set signal strength + The name of the ActionType ({2a0213bf-4af3-4384-904e-3376348a597e}) of ThingClass mock + + + + Set update status + The name of the ActionType ({ebc41327-53d5-40c2-8e7b-1164a8ff359e}) of ThingClass mock + + + + Signal strength + The name of the ParamType (ThingClass: mock, ActionType: signalStrength, ID: {2a0213bf-4af3-4384-904e-3376348a597e}) +---------- +The name of the StateType ({2a0213bf-4af3-4384-904e-3376348a597e}) of ThingClass mock + + + + Temperature + The name of the StateType ({db9cc518-1012-47e2-8212-6e616fed07a6}) of ThingClass virtualIoTemperatureSensorMock + + + + Update firmware + The name of the ActionType ({f2b847dd-ab40-4278-940b-3615f1d7dfd3}) of ThingClass mock + + + + Update status + The name of the ParamType (ThingClass: mock, ActionType: updateStatus, ID: {ebc41327-53d5-40c2-8e7b-1164a8ff359e}) +---------- +The name of the StateType ({ebc41327-53d5-40c2-8e7b-1164a8ff359e}) of ThingClass mock + + diff --git a/translations/nymead-cs.ts b/translations/nymead-cs.ts index ba0171a1..29bde3f9 100644 --- a/translations/nymead-cs.ts +++ b/translations/nymead-cs.ts @@ -4,52 +4,47 @@ CloudNotifications - - + + Cloud Notifications Cloud notifikace - + User ID ID uživatele - + Device Zařízení - + Title Název - + Message text Text zprávy - + Send notification Poslat notifikaci - + connected připojeno - - - Connected changed - Připojeno změněno - ThingManagerImplementation - - + + The plugin for this thing is not loaded. @@ -57,7 +52,7 @@ nymea - + nymea is an open source IoT (Internet of Things) server, which allows to control a lot of different devices from many different @@ -72,66 +67,75 @@ nymea je otevřený (open source) server IoT (Internet of Things), který umož - + Run nymead in the foreground, not as daemon. Spusťte nymead v popředí, ne jako démona. - - Debug categories to enable. Prefix with "No" to disable. Suffix with "Warnings" to address warnings. -Examples: --d AWSTraffic --d NoDeviceManager --d NoBluetoothWarnings - -Categories are: + + Disables logging all debug, info and warning categories. - - Enables all debug categories except *Traffic and *Debug categories. Single debug categories can be disabled again with -d parameter. + + Enables all info and debug categories except *Traffic and *Debug categories. - + Specify a log file to write to, if this option is not specified, logs will be printed to the standard output. Specifikujte log file k zapisování, pokud tato možnost není specifikována, logs budou tištěny ke standardnímu výstupu. - + Log output is colorized by default. Use this option to disable colors. - + If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus. Pokud je specifikováno, všechna rozhraní D-bus budou napojena k sekční sběrnici místo k systémové sběrnici. + + + Debug categories to enable. Prefix with "No" to disable. Suffix with "Info" or "Warnings" to address info and warning messages. Enabling a debug category will implicitly enable the according info category. +Examples: +-d ThingManager +-d NoApplicationInfo + + + + + + + Additional interfaces to listen on. In nymea URI format (e.g. nymeas://127.0.0.2:7777). Note that such interfaces will not require any authentication as they are intended to be used for automated testing only. + + nymeaserver::DebugServerHandler - - + + Debug nymea The header title of the debug server interface Ladění nymea - + nymea debug interface The main title of the debug server interface nymea rozhraní k ladění - + Information The name of the section tab in the debug server interface - - + + Network The name of the section tab in the debug server interface ---------- @@ -139,190 +143,161 @@ The network section of the debug interface - - Welcome to the debug interface. - The welcome message of the debug interface - Vítejte u rozhraní k ladění. - - - - This debug interface was designed to provide an easy possibility to get helpful information about the running nymea server. - Toto rozhraní k ladění bylo vytvořeno k poskytnutí snadné možnosti získání užitečných informací o fungování serveru nymea. - - - - Be aware that this debug interface is a security risk and could offer access to sensible data. - The warning message of the debug interface - Uvědomte si, že toto rozhraní k ladění je bezpečnostním rizikem a mohlo by nabídnout přístup k citlivým údajům. - - - + Server information The server information section of the debug interface Informace o serveru - + User The user name in the server infromation section of the debug interface Uživatel - + Compiled with Qt version The Qt build version description in the server infromation section of the debug interface Kompilováno s verzí Qt - + Qt runtime version The Qt runtime version description in the server infromation section of the debug interface Verze Qt runtime - + Command The command description in the server infromation section of the debug interface Příkaz - + Snap name The snap name description in the server infromation section of the debug interface Název snap - + Snap version The snap version description in the server infromation section of the debug interface Verze snap - + Snap directory The snap directory description in the server infromation section of the debug interface Adresář snap - + Snap application data The snap application data description in the server infromation section of the debug interface Aplikační data snap - + Snap user data The snap user data description in the server infromation section of the debug interface Uživatelská data snap - + Snap common data The snap common data description in the server infromation section of the debug interface Společná data snap - + Server name The server name description in the server infromation section of the debug interface Název serveru - + Server version The server version description in the server infromation section of the debug interface Verze serveru - + JSON-RPC version The API version description in the server infromation section of the debug interface Verze JSON-RPC - + Language The language description in the server infromation section of the debug interface Jazyk - + Timezone The timezone description in the server infromation section of the debug interface Zóna času - + Server UUID The server id description in the server infromation section of the debug interface Server UUID - + Settings path The settings path description in the server infromation section of the debug interface Nastavení cesta - + Translations path The translation path description in the server infromation section of the debug interface Překlady cesta - + Generate report In the server information section of the debug interface - + If you want to provide all the debug information to a developer, you can generate a report file, which contains all information needed for reproducing a system and get information about possible problems. - - Do not share these generated information public, since they can contain sensible data and should be shared very carefully and only with people you trust! - The warning message of the debug interface - - - - + Generate report file The generate debug report button text of the debug interface - + Log database The log databse download description of the debug interface Databáze Log - + Thing settings The thing settings download description of the debug interface - - Thing states settings - The thing states settings download description of the debug interface - - - - + This test shows the trace path from the nymea device to the nymea.io server. - + This section allows you to see the live logs of the nymea server. - - + + Downloads The name of the section tab in the debug server interface ---------- @@ -330,8 +305,8 @@ The downloads section of the debug interface Downloads (ke stažení) - - + + Logs The name of the section tab in the debug server interface ---------- @@ -339,87 +314,99 @@ The download logs section of the debug interface Logs - + + Please note that this debug interface may allow accessing sensitive data about the nymea system and connected devices and services. It is recommended to disable it again when not needed any more. + The warning message of the debug interface + + + + System information The system information section of the debug interface - + Hostname The command description in the server infromation section of the debug interface - + Architecture The command description in the server infromation section of the debug interface - + Kernel type The command description in the server infromation section of the debug interface - + Kernel version The command description in the server infromation section of the debug interface - + Product type The command description in the server infromation section of the debug interface - + Product version The command description in the server infromation section of the debug interface - - - + + Please note that the generated debug report may contain sensitive data about the nymea system and connected devices and services. + The warning message of the debug interface + + + + + + Download The download button description of the debug interface Download (ke stažení) - + System logs The syslog download description of the debug interface Logs systému - - + + Show - + Settings The settings download section title of the debug interface Nastavení - + nymead settings The nymead settings download description of the debug interface nastavení nymead @@ -449,118 +436,128 @@ The download logs section of the debug interface - + + IO Connections + The MQTT policies download description of the debug interface + + + + This section allows you to perform different network connectivity tests in order to find out if the device where nymea is running has full network connectivity. The network section description of the debug interface - + Ping The ping section of the debug interface - + This test makes four ping attempts to the nymea.io server. - + Start ping test The ping button text of the debug interface - + DNS lookup The DNS lookup section of the debug interface - + This test makes a dynamic name server lookup for nymea.io. - + Start DNS lookup test The ping button text of the debug interface - + Trace path The trace section of the debug interface - + Start trace path test The trace path button text of the debug interface - + Server live logs The network section of the debug interface - + Start logs The connect button for the log stream of the debug interface - + Logging filters The network section of the debug interface - + Logging filters plugins The network section of the debug interface - - - Released under the GNU GENERAL PUBLIC LICENSE Version 2. + + Released under the GNU GENERAL PUBLIC LICENSE Version 3. The footer license note of the debug interface + Spuštěno pod obecnou veřejnou licencí GNU GENERAL PUBLIC LICENSE verze 2. {3.?} + + + + Released under the GNU GENERAL PUBLIC LICENSE Version 2. Spuštěno pod obecnou veřejnou licencí GNU GENERAL PUBLIC LICENSE verze 2. - + Error %1 The HTTP error message of the debug interface. The %1 represents the error code ie.e 404 Chyba %1 - - - - - - - - - + + + + + + + + + Could not find file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Nemohl být nalezen soubor "%1". - - - - - - - - - + + + + + + + + + Could not open file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Nemohl být otevřen soubor "%1". diff --git a/translations/nymead-da.ts b/translations/nymead-da.ts index f189aea6..b241ac32 100644 --- a/translations/nymead-da.ts +++ b/translations/nymead-da.ts @@ -4,52 +4,47 @@ CloudNotifications - - + + Cloud Notifications Cloud-meddelelser - + User ID Bruger-id - + Device Enhed - + Title Titel - + Message text Meddelelsestekst - + Send notification Send meddelelse - + connected forbundet - - - Connected changed - Forbindelse ændret - ThingManagerImplementation - - + + The plugin for this thing is not loaded. @@ -57,7 +52,7 @@ nymea - + nymea is an open source IoT (Internet of Things) server, which allows to control a lot of different devices from many different @@ -72,66 +67,75 @@ nymea er en open source IoT-server ("Internet of Things"), som giver m - + Run nymead in the foreground, not as daemon. Kør nymead i forgrunden, ikke som daemon. - - Debug categories to enable. Prefix with "No" to disable. Suffix with "Warnings" to address warnings. -Examples: --d AWSTraffic --d NoDeviceManager --d NoBluetoothWarnings - -Categories are: + + Disables logging all debug, info and warning categories. - - Enables all debug categories except *Traffic and *Debug categories. Single debug categories can be disabled again with -d parameter. + + Enables all info and debug categories except *Traffic and *Debug categories. - + Specify a log file to write to, if this option is not specified, logs will be printed to the standard output. Specificér en logfil, der skal skrives til. Hvis denne mulighed ikke er specificeret, udskrives logger til standard-output. - + Log output is colorized by default. Use this option to disable colors. - + If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus. Hvis det specificeret, vil alle D-Bus grænseflader være bundet til session-bussen i stedet for system-bussen. + + + Debug categories to enable. Prefix with "No" to disable. Suffix with "Info" or "Warnings" to address info and warning messages. Enabling a debug category will implicitly enable the according info category. +Examples: +-d ThingManager +-d NoApplicationInfo + + + + + + + Additional interfaces to listen on. In nymea URI format (e.g. nymeas://127.0.0.2:7777). Note that such interfaces will not require any authentication as they are intended to be used for automated testing only. + + nymeaserver::DebugServerHandler - - + + Debug nymea The header title of the debug server interface Debug nymea - + nymea debug interface The main title of the debug server interface nymea debug-grænseflade - + Information The name of the section tab in the debug server interface - - + + Network The name of the section tab in the debug server interface ---------- @@ -139,190 +143,161 @@ The network section of the debug interface - - Welcome to the debug interface. - The welcome message of the debug interface - Velkommen til debug-grænsefladen. - - - - This debug interface was designed to provide an easy possibility to get helpful information about the running nymea server. - Denne debug-grænseflade er udviklet til at gøre det nemt at få praktiske oplysninger nymea-serveren, der er i drift. - - - - Be aware that this debug interface is a security risk and could offer access to sensible data. - The warning message of the debug interface - Vær opmærksom på, at denne debug-grænseflade er en sikkerhedsrisiko og kan give adgang til følsomme data. - - - + Server information The server information section of the debug interface Server-information - + User The user name in the server infromation section of the debug interface Bruger - + Compiled with Qt version The Qt build version description in the server infromation section of the debug interface Kompileret med Qt-version - + Qt runtime version The Qt runtime version description in the server infromation section of the debug interface Qt runtime-version - + Command The command description in the server infromation section of the debug interface Command - + Snap name The snap name description in the server infromation section of the debug interface Snap-navn - + Snap version The snap version description in the server infromation section of the debug interface Snap-version - + Snap directory The snap directory description in the server infromation section of the debug interface Snap-mappe - + Snap application data The snap application data description in the server infromation section of the debug interface Snap-applikationsdata - + Snap user data The snap user data description in the server infromation section of the debug interface Snap-brugerdata - + Snap common data The snap common data description in the server infromation section of the debug interface Snap-fællesdata - + Server name The server name description in the server infromation section of the debug interface Servernavn - + Server version The server version description in the server infromation section of the debug interface Server-version - + JSON-RPC version The API version description in the server infromation section of the debug interface JSON-RPC-version - + Language The language description in the server infromation section of the debug interface Sprog - + Timezone The timezone description in the server infromation section of the debug interface Tidszone - + Server UUID The server id description in the server infromation section of the debug interface Server-UUID - + Settings path The settings path description in the server infromation section of the debug interface Indstillingssti - + Translations path The translation path description in the server infromation section of the debug interface Oversættelsessti - + Generate report In the server information section of the debug interface - + If you want to provide all the debug information to a developer, you can generate a report file, which contains all information needed for reproducing a system and get information about possible problems. - - Do not share these generated information public, since they can contain sensible data and should be shared very carefully and only with people you trust! - The warning message of the debug interface - - - - + Generate report file The generate debug report button text of the debug interface - + Log database The log databse download description of the debug interface Log-database - + Thing settings The thing settings download description of the debug interface - - Thing states settings - The thing states settings download description of the debug interface - - - - + This test shows the trace path from the nymea device to the nymea.io server. - + This section allows you to see the live logs of the nymea server. - - + + Downloads The name of the section tab in the debug server interface ---------- @@ -330,8 +305,8 @@ The downloads section of the debug interface Downloads - - + + Logs The name of the section tab in the debug server interface ---------- @@ -339,87 +314,99 @@ The download logs section of the debug interface Logger - + + Please note that this debug interface may allow accessing sensitive data about the nymea system and connected devices and services. It is recommended to disable it again when not needed any more. + The warning message of the debug interface + + + + System information The system information section of the debug interface - + Hostname The command description in the server infromation section of the debug interface - + Architecture The command description in the server infromation section of the debug interface - + Kernel type The command description in the server infromation section of the debug interface - + Kernel version The command description in the server infromation section of the debug interface - + Product type The command description in the server infromation section of the debug interface - + Product version The command description in the server infromation section of the debug interface - - - + + Please note that the generated debug report may contain sensitive data about the nymea system and connected devices and services. + The warning message of the debug interface + + + + + + Download The download button description of the debug interface Download - + System logs The syslog download description of the debug interface System-logger - - + + Show - + Settings The settings download section title of the debug interface Indstillinger - + nymead settings The nymead settings download description of the debug interface nymead-indstillinger @@ -449,118 +436,128 @@ The download logs section of the debug interface - + + IO Connections + The MQTT policies download description of the debug interface + + + + This section allows you to perform different network connectivity tests in order to find out if the device where nymea is running has full network connectivity. The network section description of the debug interface - + Ping The ping section of the debug interface - + This test makes four ping attempts to the nymea.io server. - + Start ping test The ping button text of the debug interface - + DNS lookup The DNS lookup section of the debug interface - + This test makes a dynamic name server lookup for nymea.io. - + Start DNS lookup test The ping button text of the debug interface - + Trace path The trace section of the debug interface - + Start trace path test The trace path button text of the debug interface - + Server live logs The network section of the debug interface - + Start logs The connect button for the log stream of the debug interface - + Logging filters The network section of the debug interface - + Logging filters plugins The network section of the debug interface - - - Released under the GNU GENERAL PUBLIC LICENSE Version 2. + + Released under the GNU GENERAL PUBLIC LICENSE Version 3. The footer license note of the debug interface + Udgivet i henhold til GNU GENERAL PUBLIC LICENSE Version 2. {3.?} + + + + Released under the GNU GENERAL PUBLIC LICENSE Version 2. Udgivet i henhold til GNU GENERAL PUBLIC LICENSE Version 2. - + Error %1 The HTTP error message of the debug interface. The %1 represents the error code ie.e 404 Fejl %1 - - - - - - - - - + + + + + + + + + Could not find file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Kunne ikke finde filen "%1". - - - - - - - - - + + + + + + + + + Could not open file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Kunne ikke åbne filen "%1". diff --git a/translations/nymead-de.ts b/translations/nymead-de.ts index baeefa44..492aa723 100644 --- a/translations/nymead-de.ts +++ b/translations/nymead-de.ts @@ -4,52 +4,47 @@ CloudNotifications - - + + Cloud Notifications Cloud Benachrichtigung - + User ID Benutzer ID - + Device Gerät - + Title Titel - + Message text Nachrichtentext - + Send notification Sende Benachrichtigung - + connected Verbunden - - - Connected changed - Verbunden geändert - ThingManagerImplementation - - + + The plugin for this thing is not loaded. Das Plugin für dieses \"Thing\" konnte nicht geladen werden. @@ -57,7 +52,7 @@ nymea - + nymea is an open source IoT (Internet of Things) server, which allows to control a lot of different devices from many different @@ -72,72 +67,80 @@ nymea ist ein Open-Source-IoT (Internet der Dinge) Server, der es ermöglicht, v - + Run nymead in the foreground, not as daemon. Führe Nymead im Vordergrund aus, nicht als Daemon. - - Debug categories to enable. Prefix with "No" to disable. Suffix with "Warnings" to address warnings. -Examples: --d AWSTraffic --d NoDeviceManager --d NoBluetoothWarnings - -Categories are: - Debug -Kategorien zum Aktivieren. Präfix mit "No" zum Deaktivieren. Suffix mit "Warnings", um Warnungen zu bekommen. -Beispiele: --d AWSTraffic --d NoDeviceManager --d NoBluetoothWarnings - -Kategorien sind: + + Disables logging all debug, info and warning categories. + Deaktiviert das Schreiben von debug, info und warning Kategorien. - - Enables all debug categories except *Traffic and *Debug categories. Single debug categories can be disabled again with -d parameter. - Aktiviert alle Debug-Kategorien außer *Graffic- und *Debug-Kategorien. Einzelne Debug-Kategorien können mit dem Parameter -d wieder deaktiviert werden. + + Enables all info and debug categories except *Traffic and *Debug categories. + Aktiviert alle info und debug Kategorien ausgenommen *Traffic und *Debug Kategorien. - + Specify a log file to write to, if this option is not specified, logs will be printed to the standard output. Geben Sie eine Log-datei an, in die geschrieben werden soll. Wenn diese Option nicht angegeben wird, werden Protokolle auf die Standardausgabe gedruckt. - + Log output is colorized by default. Use this option to disable colors. Die Log-Ausgabe ist normalerweise eingefärbt. Diese Option ermöglicht das Ausschalten der Farbe. - + If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus. Falls angegeben, werden alle D-Bus Schnittstellen auf dem Sitzungs-Bus anstatt auf dem System-Bus zur Verfügung gestellt. + + + Debug categories to enable. Prefix with "No" to disable. Suffix with "Info" or "Warnings" to address info and warning messages. Enabling a debug category will implicitly enable the according info category. +Examples: +-d ThingManager +-d NoApplicationInfo + + + Zu aktiviernde Debug-Kategorien. Der Präfix "No" deaktivert die entsprechende Kategorie. Der Suffix "Info" oder "Warning" wählt die entsprechende info oder warning Kategorie. Das Aktivieren einer debug Kategorie aktiviert auch die entsprechende info und warning Kategorien. +Beispiele: +-d ThingManager +-d NoApplicationInfo + + + + + + Additional interfaces to listen on. In nymea URI format (e.g. nymeas://127.0.0.2:7777). Note that such interfaces will not require any authentication as they are intended to be used for automated testing only. + Zusätzliche Schnittstellen um auf Verbindungen zu hören, in nymea URI Format (z.B. nymeas://127.0.0.2:7777). Achtung: Schnittstellen die auf diese Weise aktiviert werden, benötigen keine Authentifizierung und sind nur zu Testzwecken vorgesehen. + nymeaserver::DebugServerHandler - - + + Debug nymea The header title of the debug server interface Debug nymea - + nymea debug interface The main title of the debug server interface nymea Debug-Schnittstelle - + Information The name of the section tab in the debug server interface Imformationen - - + + Network The name of the section tab in the debug server interface ---------- @@ -145,190 +148,161 @@ The network section of the debug interface Netzwerk - - Welcome to the debug interface. - The welcome message of the debug interface - Willkommen bei der Debug-Schnittstelle. - - - - This debug interface was designed to provide an easy possibility to get helpful information about the running nymea server. - Diese Debug-Oberfläche wurde entwickelt, um eine einfache Möglichkeit zu geben, hilfreiche Informationen über den laufenden nymea-Server zu erhalten. - - - - Be aware that this debug interface is a security risk and could offer access to sensible data. - The warning message of the debug interface - Beachten Sie, dass diese Debug-Schnittstelle ein Sicherheitsrisiko darstellt und Zugriff auf sensible Daten bieten könnte. - - - + Server information The server information section of the debug interface Server Information - + User The user name in the server infromation section of the debug interface Benutzer - + Compiled with Qt version The Qt build version description in the server infromation section of the debug interface Kompiliert mit Qt-Version - + Qt runtime version The Qt runtime version description in the server infromation section of the debug interface Qt Runtime-Version - + Command The command description in the server infromation section of the debug interface Kommando - + Snap name The snap name description in the server infromation section of the debug interface Snap Name - + Snap version The snap version description in the server infromation section of the debug interface Snap Version - + Snap directory The snap directory description in the server infromation section of the debug interface Snap Verzeichnis - + Snap application data The snap application data description in the server infromation section of the debug interface Snap Anwendungsdaten - + Snap user data The snap user data description in the server infromation section of the debug interface Snap Benutzerdaten - + Snap common data The snap common data description in the server infromation section of the debug interface Snap gemeinsame Daten - + Server name The server name description in the server infromation section of the debug interface Servername - + Server version The server version description in the server infromation section of the debug interface Server Version - + JSON-RPC version The API version description in the server infromation section of the debug interface JSON-RPC Version - + Language The language description in the server infromation section of the debug interface Sprache - + Timezone The timezone description in the server infromation section of the debug interface Zeitzone - + Server UUID The server id description in the server infromation section of the debug interface Server UUID - + Settings path The settings path description in the server infromation section of the debug interface Einstellungen Pfad - + Translations path The translation path description in the server infromation section of the debug interface Übersetzungspfad - + Generate report In the server information section of the debug interface Bericht generieren - + If you want to provide all the debug information to a developer, you can generate a report file, which contains all information needed for reproducing a system and get information about possible problems. Wenn Sie einem Entwickler alle Debug-Informationen zur Verfügung stellen möchten, können Sie eine Berichtsdatei erstellen, die alle Informationen enthält, die zum Reproduzieren eines Systems erforderlich sind, und Informationen zu möglichen Problemen bereitstellt. - - Do not share these generated information public, since they can contain sensible data and should be shared very carefully and only with people you trust! - The warning message of the debug interface - Teilen Sie die generierten Informationen nicht öffentlich es können sensible Daten enthalten sein. Geben Sie die Information nur an Personen weiter denen Sie vertrauen! - - - + Generate report file The generate debug report button text of the debug interface Berichtsdatei generieren - + Log database The log databse download description of the debug interface Logdatenbank - + Thing settings The thing settings download description of the debug interface Thing Einstellungen - - Thing states settings - The thing states settings download description of the debug interface - Thing States Einstellungen - - - + This test shows the trace path from the nymea device to the nymea.io server. Dieser Test zeigt den Trace-Pfad vom nymea Gerät zum nymea.io Server. - + This section allows you to see the live logs of the nymea server. In diesem Abschnitt können Sie die Livelogs vom nymea-Servers sehen. - - + + Downloads The name of the section tab in the debug server interface ---------- @@ -336,8 +310,8 @@ The downloads section of the debug interface Downloads - - + + Logs The name of the section tab in the debug server interface ---------- @@ -345,87 +319,99 @@ The download logs section of the debug interface Logs - + + Please note that this debug interface may allow accessing sensitive data about the nymea system and connected devices and services. It is recommended to disable it again when not needed any more. + The warning message of the debug interface + + + + System information The system information section of the debug interface Systeminformationen - + Hostname The command description in the server infromation section of the debug interface Hostname - + Architecture The command description in the server infromation section of the debug interface Architektur - + Kernel type The command description in the server infromation section of the debug interface Kerneltyp - + Kernel version The command description in the server infromation section of the debug interface Kernelversion - + Product type The command description in the server infromation section of the debug interface Produkttyp - + Product version The command description in the server infromation section of the debug interface Produktversion - - - + + Please note that the generated debug report may contain sensitive data about the nymea system and connected devices and services. + The warning message of the debug interface + + + + + + Download The download button description of the debug interface Download - + System logs The syslog download description of the debug interface Systemlogs - - + + Show Anzeigen - + Settings The settings download section title of the debug interface Einstellungen - + nymead settings The nymead settings download description of the debug interface nymead Einstellungen @@ -455,118 +441,128 @@ The download logs section of the debug interface MQTT-Richtlinien - + + IO Connections + The MQTT policies download description of the debug interface + + + + This section allows you to perform different network connectivity tests in order to find out if the device where nymea is running has full network connectivity. The network section description of the debug interface In diesem Abschnitt können Sie verschiedene Netzwerkkonnektivitätstests durchführen, um festzustellen, ob das Gerät, auf dem nymea ausgeführt wird, über eine vollständige Netzwerkkonnektivität verfügt. - + Ping The ping section of the debug interface Ping - + This test makes four ping attempts to the nymea.io server. Dieser Test führt vier Ping-Versuche zum Server nymea.io durch. - + Start ping test The ping button text of the debug interface Start ping-Test - + DNS lookup The DNS lookup section of the debug interface DNS-Suche - + This test makes a dynamic name server lookup for nymea.io. Dieser Test macht einen dynamischen Nameserver-Lookup für nymea.io. - + Start DNS lookup test The ping button text of the debug interface Start DNS-Lookup-Test - + Trace path The trace section of the debug interface Trace-Pfad - + Start trace path test The trace path button text of the debug interface Starten Sie den Trace-Pfad-Test - + Server live logs The network section of the debug interface Server-Live-Log - + Start logs The connect button for the log stream of the debug interface Start Logs - + Logging filters The network section of the debug interface Log-Filter - + Logging filters plugins The network section of the debug interface Log-Filter Plug-Ins - - - Released under the GNU GENERAL PUBLIC LICENSE Version 2. + + Released under the GNU GENERAL PUBLIC LICENSE Version 3. The footer license note of the debug interface + Veröffentlicht unter der GNU GENERAL PUBLIC LICENSE Version 2. {3.?} + + + + Released under the GNU GENERAL PUBLIC LICENSE Version 2. Veröffentlicht unter der GNU GENERAL PUBLIC LICENSE Version 2. - + Error %1 The HTTP error message of the debug interface. The %1 represents the error code ie.e 404 Fehler %1 - - - - - - - - - + + + + + + + + + Could not find file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Die Datei "%1" konnte nicht gefunden werden. - - - - - - - - - + + + + + + + + + Could not open file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Die Datei "% 1" konnte nicht geöffnet werden. diff --git a/translations/nymead-en_US.ts b/translations/nymead-en_US.ts index 60aa9568..5025c565 100644 --- a/translations/nymead-en_US.ts +++ b/translations/nymead-en_US.ts @@ -4,52 +4,47 @@ CloudNotifications - - + + Cloud Notifications - + User ID - + Device - + Title - + Message text - + Send notification - + connected - - - Connected changed - - ThingManagerImplementation - - + + The plugin for this thing is not loaded. @@ -57,7 +52,7 @@ nymea - + nymea is an open source IoT (Internet of Things) server, which allows to control a lot of different devices from many different @@ -69,66 +64,75 @@ for your environment. - + Run nymead in the foreground, not as daemon. - - Debug categories to enable. Prefix with "No" to disable. Suffix with "Warnings" to address warnings. -Examples: --d AWSTraffic --d NoDeviceManager --d NoBluetoothWarnings - -Categories are: + + Disables logging all debug, info and warning categories. - - Enables all debug categories except *Traffic and *Debug categories. Single debug categories can be disabled again with -d parameter. + + Enables all info and debug categories except *Traffic and *Debug categories. - + Specify a log file to write to, if this option is not specified, logs will be printed to the standard output. - + Log output is colorized by default. Use this option to disable colors. - + If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus. + + + Debug categories to enable. Prefix with "No" to disable. Suffix with "Info" or "Warnings" to address info and warning messages. Enabling a debug category will implicitly enable the according info category. +Examples: +-d ThingManager +-d NoApplicationInfo + + + + + + + Additional interfaces to listen on. In nymea URI format (e.g. nymeas://127.0.0.2:7777). Note that such interfaces will not require any authentication as they are intended to be used for automated testing only. + + nymeaserver::DebugServerHandler - - + + Debug nymea The header title of the debug server interface - + nymea debug interface The main title of the debug server interface - + Information The name of the section tab in the debug server interface - - + + Network The name of the section tab in the debug server interface ---------- @@ -136,190 +140,161 @@ The network section of the debug interface - - Welcome to the debug interface. - The welcome message of the debug interface - - - - - This debug interface was designed to provide an easy possibility to get helpful information about the running nymea server. - - - - - Be aware that this debug interface is a security risk and could offer access to sensible data. - The warning message of the debug interface - - - - + Server information The server information section of the debug interface - + User The user name in the server infromation section of the debug interface - + Compiled with Qt version The Qt build version description in the server infromation section of the debug interface - + Qt runtime version The Qt runtime version description in the server infromation section of the debug interface - + Command The command description in the server infromation section of the debug interface - + Snap name The snap name description in the server infromation section of the debug interface - + Snap version The snap version description in the server infromation section of the debug interface - + Snap directory The snap directory description in the server infromation section of the debug interface - + Snap application data The snap application data description in the server infromation section of the debug interface - + Snap user data The snap user data description in the server infromation section of the debug interface - + Snap common data The snap common data description in the server infromation section of the debug interface - + Server name The server name description in the server infromation section of the debug interface - + Server version The server version description in the server infromation section of the debug interface - + JSON-RPC version The API version description in the server infromation section of the debug interface - + Language The language description in the server infromation section of the debug interface - + Timezone The timezone description in the server infromation section of the debug interface - + Server UUID The server id description in the server infromation section of the debug interface - + Settings path The settings path description in the server infromation section of the debug interface - + Translations path The translation path description in the server infromation section of the debug interface - + Generate report In the server information section of the debug interface - + If you want to provide all the debug information to a developer, you can generate a report file, which contains all information needed for reproducing a system and get information about possible problems. - - Do not share these generated information public, since they can contain sensible data and should be shared very carefully and only with people you trust! - The warning message of the debug interface - - - - + Generate report file The generate debug report button text of the debug interface - + Log database The log databse download description of the debug interface - + Thing settings The thing settings download description of the debug interface - - Thing states settings - The thing states settings download description of the debug interface - - - - + This test shows the trace path from the nymea device to the nymea.io server. - + This section allows you to see the live logs of the nymea server. - - + + Downloads The name of the section tab in the debug server interface ---------- @@ -327,8 +302,8 @@ The downloads section of the debug interface - - + + Logs The name of the section tab in the debug server interface ---------- @@ -336,87 +311,99 @@ The download logs section of the debug interface - + + Please note that this debug interface may allow accessing sensitive data about the nymea system and connected devices and services. It is recommended to disable it again when not needed any more. + The warning message of the debug interface + + + + System information The system information section of the debug interface - + Hostname The command description in the server infromation section of the debug interface - + Architecture The command description in the server infromation section of the debug interface - + Kernel type The command description in the server infromation section of the debug interface - + Kernel version The command description in the server infromation section of the debug interface - + Product type The command description in the server infromation section of the debug interface - + Product version The command description in the server infromation section of the debug interface - - - + + Please note that the generated debug report may contain sensitive data about the nymea system and connected devices and services. + The warning message of the debug interface + + + + + + Download The download button description of the debug interface - + System logs The syslog download description of the debug interface - - + + Show - + Settings The settings download section title of the debug interface - + nymead settings The nymead settings download description of the debug interface @@ -446,118 +433,128 @@ The download logs section of the debug interface - + + IO Connections + The MQTT policies download description of the debug interface + + + + This section allows you to perform different network connectivity tests in order to find out if the device where nymea is running has full network connectivity. The network section description of the debug interface - + Ping The ping section of the debug interface - + This test makes four ping attempts to the nymea.io server. - + Start ping test The ping button text of the debug interface - + DNS lookup The DNS lookup section of the debug interface - + This test makes a dynamic name server lookup for nymea.io. - + Start DNS lookup test The ping button text of the debug interface - + Trace path The trace section of the debug interface - + Start trace path test The trace path button text of the debug interface - + Server live logs The network section of the debug interface - + Start logs The connect button for the log stream of the debug interface - + Logging filters The network section of the debug interface - + Logging filters plugins The network section of the debug interface - - - Released under the GNU GENERAL PUBLIC LICENSE Version 2. + + Released under the GNU GENERAL PUBLIC LICENSE Version 3. The footer license note of the debug interface - + + Released under the GNU GENERAL PUBLIC LICENSE Version 2. + + + + Error %1 The HTTP error message of the debug interface. The %1 represents the error code ie.e 404 - - - - - - - - - + + + + + + + + + Could not find file "%1". The HTTP error message of the debug interface. The %1 represents the file name. - - - - - - - - - + + + + + + + + + Could not open file "%1". The HTTP error message of the debug interface. The %1 represents the file name. diff --git a/translations/nymead-es.ts b/translations/nymead-es.ts index 35c6a361..3e1ca516 100644 --- a/translations/nymead-es.ts +++ b/translations/nymead-es.ts @@ -4,52 +4,47 @@ CloudNotifications - - + + Cloud Notifications Notificaciones en la nube - + User ID Identificación de usuario - + Device Dispositivo - + Title Título - + Message text Texto de mensaje - + Send notification Enviar notificación - + connected conectado - - - Connected changed - Conexión modificada - ThingManagerImplementation - - + + The plugin for this thing is not loaded. @@ -57,7 +52,7 @@ nymea - + nymea is an open source IoT (Internet of Things) server, which allows to control a lot of different devices from many different @@ -72,66 +67,75 @@ nymea es un servidor de código abierto IoT (Internet de las cosas) que permite - + Run nymead in the foreground, not as daemon. Ejecute nymea en primer plano, no como daemon. - - Debug categories to enable. Prefix with "No" to disable. Suffix with "Warnings" to address warnings. -Examples: --d AWSTraffic --d NoDeviceManager --d NoBluetoothWarnings - -Categories are: + + Disables logging all debug, info and warning categories. - - Enables all debug categories except *Traffic and *Debug categories. Single debug categories can be disabled again with -d parameter. + + Enables all info and debug categories except *Traffic and *Debug categories. - + Specify a log file to write to, if this option is not specified, logs will be printed to the standard output. Especifique un archivo de registro en el que escribir, si esta opción no está especificada, se imprimirán los registros de forma estándar. - + Log output is colorized by default. Use this option to disable colors. - + If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus. Si se ha especificado, todas las interfaces D-Bus estarán conectadas a la sesión en lugar de al bus de sistema. + + + Debug categories to enable. Prefix with "No" to disable. Suffix with "Info" or "Warnings" to address info and warning messages. Enabling a debug category will implicitly enable the according info category. +Examples: +-d ThingManager +-d NoApplicationInfo + + + + + + + Additional interfaces to listen on. In nymea URI format (e.g. nymeas://127.0.0.2:7777). Note that such interfaces will not require any authentication as they are intended to be used for automated testing only. + + nymeaserver::DebugServerHandler - - + + Debug nymea The header title of the debug server interface Eliminación de fallos de nymea - + nymea debug interface The main title of the debug server interface Interfaz de eliminación de fallos de nymea - + Information The name of the section tab in the debug server interface - - + + Network The name of the section tab in the debug server interface ---------- @@ -139,190 +143,161 @@ The network section of the debug interface - - Welcome to the debug interface. - The welcome message of the debug interface - Bienvenido a la interfaz de eliminación de fallos. - - - - This debug interface was designed to provide an easy possibility to get helpful information about the running nymea server. - La interfaz de eliminación de fallos ha sido diseñada para ofrecer una opción sencilla de conseguir información útil acerca de la ejecución del servidor de nymea. - - - - Be aware that this debug interface is a security risk and could offer access to sensible data. - The warning message of the debug interface - Tenga en cuenta que la interfaz de eliminación de fallos supone un riesgo de seguridad y podría accederse a datos sensibles. - - - + Server information The server information section of the debug interface Información del servidor - + User The user name in the server infromation section of the debug interface Usuario - + Compiled with Qt version The Qt build version description in the server infromation section of the debug interface Elaborado con la versión Qt - + Qt runtime version The Qt runtime version description in the server infromation section of the debug interface Versión de tiempo de ejecución Qt - + Command The command description in the server infromation section of the debug interface Comando - + Snap name The snap name description in the server infromation section of the debug interface Nombre de Snap - + Snap version The snap version description in the server infromation section of the debug interface Versión de Snap - + Snap directory The snap directory description in the server infromation section of the debug interface Directorio de Snap - + Snap application data The snap application data description in the server infromation section of the debug interface Datos de aplicación de Snap - + Snap user data The snap user data description in the server infromation section of the debug interface Datos de usuario de Snap - + Snap common data The snap common data description in the server infromation section of the debug interface Datos comunes de Snap - + Server name The server name description in the server infromation section of the debug interface Nombre del servidor - + Server version The server version description in the server infromation section of the debug interface Versión del servidor - + JSON-RPC version The API version description in the server infromation section of the debug interface Versión JSON-RPC - + Language The language description in the server infromation section of the debug interface Idioma - + Timezone The timezone description in the server infromation section of the debug interface Zona horaria - + Server UUID The server id description in the server infromation section of the debug interface Servidor UUID - + Settings path The settings path description in the server infromation section of the debug interface Ruta de ajustes - + Translations path The translation path description in the server infromation section of the debug interface Ruta de traducciones - + Generate report In the server information section of the debug interface - + If you want to provide all the debug information to a developer, you can generate a report file, which contains all information needed for reproducing a system and get information about possible problems. - - Do not share these generated information public, since they can contain sensible data and should be shared very carefully and only with people you trust! - The warning message of the debug interface - - - - + Generate report file The generate debug report button text of the debug interface - + Log database The log databse download description of the debug interface Base da datos de registro - + Thing settings The thing settings download description of the debug interface - - Thing states settings - The thing states settings download description of the debug interface - - - - + This test shows the trace path from the nymea device to the nymea.io server. - + This section allows you to see the live logs of the nymea server. - - + + Downloads The name of the section tab in the debug server interface ---------- @@ -330,8 +305,8 @@ The downloads section of the debug interface Descargas - - + + Logs The name of the section tab in the debug server interface ---------- @@ -339,87 +314,99 @@ The download logs section of the debug interface Registros - + + Please note that this debug interface may allow accessing sensitive data about the nymea system and connected devices and services. It is recommended to disable it again when not needed any more. + The warning message of the debug interface + + + + System information The system information section of the debug interface - + Hostname The command description in the server infromation section of the debug interface - + Architecture The command description in the server infromation section of the debug interface - + Kernel type The command description in the server infromation section of the debug interface - + Kernel version The command description in the server infromation section of the debug interface - + Product type The command description in the server infromation section of the debug interface - + Product version The command description in the server infromation section of the debug interface - - - + + Please note that the generated debug report may contain sensitive data about the nymea system and connected devices and services. + The warning message of the debug interface + + + + + + Download The download button description of the debug interface Descarga - + System logs The syslog download description of the debug interface Registros de sistema - - + + Show - + Settings The settings download section title of the debug interface Ajustes - + nymead settings The nymead settings download description of the debug interface Ajustes nymea @@ -449,118 +436,128 @@ The download logs section of the debug interface - + + IO Connections + The MQTT policies download description of the debug interface + + + + This section allows you to perform different network connectivity tests in order to find out if the device where nymea is running has full network connectivity. The network section description of the debug interface - + Ping The ping section of the debug interface - + This test makes four ping attempts to the nymea.io server. - + Start ping test The ping button text of the debug interface - + DNS lookup The DNS lookup section of the debug interface - + This test makes a dynamic name server lookup for nymea.io. - + Start DNS lookup test The ping button text of the debug interface - + Trace path The trace section of the debug interface - + Start trace path test The trace path button text of the debug interface - + Server live logs The network section of the debug interface - + Start logs The connect button for the log stream of the debug interface - + Logging filters The network section of the debug interface - + Logging filters plugins The network section of the debug interface - - - Released under the GNU GENERAL PUBLIC LICENSE Version 2. + + Released under the GNU GENERAL PUBLIC LICENSE Version 3. The footer license note of the debug interface + Publicado en la LICENCIA PÚBLICA GENERAL GNU, versión 2. {3.?} + + + + Released under the GNU GENERAL PUBLIC LICENSE Version 2. Publicado en la LICENCIA PÚBLICA GENERAL GNU, versión 2. - + Error %1 The HTTP error message of the debug interface. The %1 represents the error code ie.e 404 Error 1% - - - - - - - - - + + + + + + + + + Could not find file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Imposible encontrar el archivo "%1". - - - - - - - - - + + + + + + + + + Could not open file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Imposible abrir el archivo "%1". diff --git a/translations/nymead-fi.ts b/translations/nymead-fi.ts index d92704d2..7e8bbbe0 100644 --- a/translations/nymead-fi.ts +++ b/translations/nymead-fi.ts @@ -4,52 +4,47 @@ CloudNotifications - - + + Cloud Notifications Pilvi-ilmoitukset - + User ID Käyttäjätunnus - + Device Laite - + Title Otsikko - + Message text Viestin teksti - + Send notification Lähetä ilmoitus - + connected yhdistetty - - - Connected changed - Yhdistetty muutettiin - ThingManagerImplementation - - + + The plugin for this thing is not loaded. @@ -57,7 +52,7 @@ nymea - + nymea is an open source IoT (Internet of Things) server, which allows to control a lot of different devices from many different @@ -72,66 +67,75 @@ nymea on avoimen lähdekoodin IoT (Internet of Things) -palvelin, joka mahdollis - + Run nymead in the foreground, not as daemon. Aja nymead edustalla, älä daemonina. - - Debug categories to enable. Prefix with "No" to disable. Suffix with "Warnings" to address warnings. -Examples: --d AWSTraffic --d NoDeviceManager --d NoBluetoothWarnings - -Categories are: + + Disables logging all debug, info and warning categories. - - Enables all debug categories except *Traffic and *Debug categories. Single debug categories can be disabled again with -d parameter. + + Enables all info and debug categories except *Traffic and *Debug categories. - + Specify a log file to write to, if this option is not specified, logs will be printed to the standard output. Määritä kirjoitettava lokitiedosto, jos tätä vaihtoehtoa ei ole määritetty, lokit tulostetaan vakiotulostuksena. - + Log output is colorized by default. Use this option to disable colors. - + If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus. Jos määritetty, kaikki D-väylä-liittymät yhdistetään istuntoväylään järjestelmäväylän sijaan. + + + Debug categories to enable. Prefix with "No" to disable. Suffix with "Info" or "Warnings" to address info and warning messages. Enabling a debug category will implicitly enable the according info category. +Examples: +-d ThingManager +-d NoApplicationInfo + + + + + + + Additional interfaces to listen on. In nymea URI format (e.g. nymeas://127.0.0.2:7777). Note that such interfaces will not require any authentication as they are intended to be used for automated testing only. + + nymeaserver::DebugServerHandler - - + + Debug nymea The header title of the debug server interface Debug nymea - + nymea debug interface The main title of the debug server interface nymea debug -liittymä - + Information The name of the section tab in the debug server interface - - + + Network The name of the section tab in the debug server interface ---------- @@ -139,190 +143,161 @@ The network section of the debug interface - - Welcome to the debug interface. - The welcome message of the debug interface - Tervetuloa debug-liittymään. - - - - This debug interface was designed to provide an easy possibility to get helpful information about the running nymea server. - Tämä debug-liittymä suunniteltiin tarjoamaan helppo mahdollisuus saada hyödyllistä tietoa nymea-palvelimen ajamisesta. - - - - Be aware that this debug interface is a security risk and could offer access to sensible data. - The warning message of the debug interface - Huomaa, että tämä debug-liittymä on turvallisuusriski ja saattaa tarjota pääsyn arkaluonteisiin tietoihin. - - - + Server information The server information section of the debug interface Palvelintiedot - + User The user name in the server infromation section of the debug interface Käyttäjä - + Compiled with Qt version The Qt build version description in the server infromation section of the debug interface Kootti Qt-versiolla - + Qt runtime version The Qt runtime version description in the server infromation section of the debug interface Qt-ajoaikaversio - + Command The command description in the server infromation section of the debug interface Käsky - + Snap name The snap name description in the server infromation section of the debug interface Snap-nimi - + Snap version The snap version description in the server infromation section of the debug interface Snap-versio - + Snap directory The snap directory description in the server infromation section of the debug interface Snap-hakemisto - + Snap application data The snap application data description in the server infromation section of the debug interface Snap-sovellustiedot - + Snap user data The snap user data description in the server infromation section of the debug interface Snap-käyttäjätiedot - + Snap common data The snap common data description in the server infromation section of the debug interface Snap - yleiset tiedot - + Server name The server name description in the server infromation section of the debug interface Palvelimen nimi - + Server version The server version description in the server infromation section of the debug interface Palvelimen versio - + JSON-RPC version The API version description in the server infromation section of the debug interface JSON-RPC-versio - + Language The language description in the server infromation section of the debug interface Kieli - + Timezone The timezone description in the server infromation section of the debug interface Aikavyöhyke - + Server UUID The server id description in the server infromation section of the debug interface Palvelin-UUID - + Settings path The settings path description in the server infromation section of the debug interface Asetuspolku - + Translations path The translation path description in the server infromation section of the debug interface Käännöspolku - + Generate report In the server information section of the debug interface - + If you want to provide all the debug information to a developer, you can generate a report file, which contains all information needed for reproducing a system and get information about possible problems. - - Do not share these generated information public, since they can contain sensible data and should be shared very carefully and only with people you trust! - The warning message of the debug interface - - - - + Generate report file The generate debug report button text of the debug interface - + Log database The log databse download description of the debug interface Lokitietokanta - + Thing settings The thing settings download description of the debug interface - - Thing states settings - The thing states settings download description of the debug interface - - - - + This test shows the trace path from the nymea device to the nymea.io server. - + This section allows you to see the live logs of the nymea server. - - + + Downloads The name of the section tab in the debug server interface ---------- @@ -330,8 +305,8 @@ The downloads section of the debug interface Lataukset - - + + Logs The name of the section tab in the debug server interface ---------- @@ -339,87 +314,99 @@ The download logs section of the debug interface Lokit - + + Please note that this debug interface may allow accessing sensitive data about the nymea system and connected devices and services. It is recommended to disable it again when not needed any more. + The warning message of the debug interface + + + + System information The system information section of the debug interface - + Hostname The command description in the server infromation section of the debug interface - + Architecture The command description in the server infromation section of the debug interface - + Kernel type The command description in the server infromation section of the debug interface - + Kernel version The command description in the server infromation section of the debug interface - + Product type The command description in the server infromation section of the debug interface - + Product version The command description in the server infromation section of the debug interface - - - + + Please note that the generated debug report may contain sensitive data about the nymea system and connected devices and services. + The warning message of the debug interface + + + + + + Download The download button description of the debug interface Lataa - + System logs The syslog download description of the debug interface Järjestelmälokit - - + + Show - + Settings The settings download section title of the debug interface Asetukset - + nymead settings The nymead settings download description of the debug interface nymead-asetukset @@ -449,118 +436,128 @@ The download logs section of the debug interface - + + IO Connections + The MQTT policies download description of the debug interface + + + + This section allows you to perform different network connectivity tests in order to find out if the device where nymea is running has full network connectivity. The network section description of the debug interface - + Ping The ping section of the debug interface - + This test makes four ping attempts to the nymea.io server. - + Start ping test The ping button text of the debug interface - + DNS lookup The DNS lookup section of the debug interface - + This test makes a dynamic name server lookup for nymea.io. - + Start DNS lookup test The ping button text of the debug interface - + Trace path The trace section of the debug interface - + Start trace path test The trace path button text of the debug interface - + Server live logs The network section of the debug interface - + Start logs The connect button for the log stream of the debug interface - + Logging filters The network section of the debug interface - + Logging filters plugins The network section of the debug interface - - - Released under the GNU GENERAL PUBLIC LICENSE Version 2. + + Released under the GNU GENERAL PUBLIC LICENSE Version 3. The footer license note of the debug interface + Julkaistu GNU GENERAL PUBLIC LICENSE, version 2 alla. {3.?} + + + + Released under the GNU GENERAL PUBLIC LICENSE Version 2. Julkaistu GNU GENERAL PUBLIC LICENSE, version 2 alla. - + Error %1 The HTTP error message of the debug interface. The %1 represents the error code ie.e 404 Virhe %1 - - - - - - - - - + + + + + + + + + Could not find file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Tiedostoa "&1" ei löytynyt. - - - - - - - - - + + + + + + + + + Could not open file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Tiedostoa "&1" ei voitu avata. diff --git a/translations/nymead-fr.ts b/translations/nymead-fr.ts index a5399669..7da12758 100644 --- a/translations/nymead-fr.ts +++ b/translations/nymead-fr.ts @@ -4,52 +4,47 @@ CloudNotifications - - + + Cloud Notifications Notification de cloud - + User ID Utilisateur - + Device Paramètres de l'appareil - + Title Titre - + Message text Texte du message - + Send notification Notification d'envoi - + connected connecté - - - Connected changed - Connecté modifié - ThingManagerImplementation - - + + The plugin for this thing is not loaded. @@ -57,7 +52,7 @@ nymea - + nymea is an open source IoT (Internet of Things) server, which allows to control a lot of different devices from many different @@ -72,66 +67,75 @@ nymea est un serveur IoT (Internet of Things) open source, qui permet de contrô - + Run nymead in the foreground, not as daemon. Exécutez nymead au premier plan, pas en tant que démon. - - Debug categories to enable. Prefix with "No" to disable. Suffix with "Warnings" to address warnings. -Examples: --d AWSTraffic --d NoDeviceManager --d NoBluetoothWarnings - -Categories are: + + Disables logging all debug, info and warning categories. - - Enables all debug categories except *Traffic and *Debug categories. Single debug categories can be disabled again with -d parameter. + + Enables all info and debug categories except *Traffic and *Debug categories. - + Specify a log file to write to, if this option is not specified, logs will be printed to the standard output. Spécifiez un fichier journal dans lequel écrire, si cette option n'est pas spécifiée, les jounaux seront imprimés sur la sortie standard. - + Log output is colorized by default. Use this option to disable colors. - + If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus. Si spécifié, toutes les interfaces D-Bus seront liées au bus de session au lieu du bus système. + + + Debug categories to enable. Prefix with "No" to disable. Suffix with "Info" or "Warnings" to address info and warning messages. Enabling a debug category will implicitly enable the according info category. +Examples: +-d ThingManager +-d NoApplicationInfo + + + + + + + Additional interfaces to listen on. In nymea URI format (e.g. nymeas://127.0.0.2:7777). Note that such interfaces will not require any authentication as they are intended to be used for automated testing only. + + nymeaserver::DebugServerHandler - - + + Debug nymea The header title of the debug server interface Débogage nymea - + nymea debug interface The main title of the debug server interface Interface de débogage nymea - + Information The name of the section tab in the debug server interface - - + + Network The name of the section tab in the debug server interface ---------- @@ -139,190 +143,161 @@ The network section of the debug interface - - Welcome to the debug interface. - The welcome message of the debug interface - Bienvenue dans l'interface de débogage. - - - - This debug interface was designed to provide an easy possibility to get helpful information about the running nymea server. - Cette interface de débogage a été conçue pour faciliter l'obtention d'informations utiles sur le serveur nymea en cours d'exécution. - - - - Be aware that this debug interface is a security risk and could offer access to sensible data. - The warning message of the debug interface - Sachez que cette interface de débogage est un risque pour la sécurité et pourrait donner accès à des données sensibles. - - - + Server information The server information section of the debug interface Informations serveur - + User The user name in the server infromation section of the debug interface Utilisateur - + Compiled with Qt version The Qt build version description in the server infromation section of the debug interface Compilé avec la version Qt - + Qt runtime version The Qt runtime version description in the server infromation section of the debug interface Version d'exécution Qt - + Command The command description in the server infromation section of the debug interface Commande - + Snap name The snap name description in the server infromation section of the debug interface Nom snap - + Snap version The snap version description in the server infromation section of the debug interface Version snap - + Snap directory The snap directory description in the server infromation section of the debug interface Répertoire snap - + Snap application data The snap application data description in the server infromation section of the debug interface Données d'application snap - + Snap user data The snap user data description in the server infromation section of the debug interface Données utilisateur snap - + Snap common data The snap common data description in the server infromation section of the debug interface Données de commande snap - + Server name The server name description in the server infromation section of the debug interface Nom du serveur - + Server version The server version description in the server infromation section of the debug interface Version du serveur - + JSON-RPC version The API version description in the server infromation section of the debug interface Version JSON-RPC - + Language The language description in the server infromation section of the debug interface Langue - + Timezone The timezone description in the server infromation section of the debug interface Zone de temps - + Server UUID The server id description in the server infromation section of the debug interface UUID du serveur - + Settings path The settings path description in the server infromation section of the debug interface Chemin de paramétrage - + Translations path The translation path description in the server infromation section of the debug interface Chemin des traductions - + Generate report In the server information section of the debug interface - + If you want to provide all the debug information to a developer, you can generate a report file, which contains all information needed for reproducing a system and get information about possible problems. - - Do not share these generated information public, since they can contain sensible data and should be shared very carefully and only with people you trust! - The warning message of the debug interface - - - - + Generate report file The generate debug report button text of the debug interface - + Log database The log databse download description of the debug interface Base de données journal - + Thing settings The thing settings download description of the debug interface - - Thing states settings - The thing states settings download description of the debug interface - - - - + This test shows the trace path from the nymea device to the nymea.io server. - + This section allows you to see the live logs of the nymea server. - - + + Downloads The name of the section tab in the debug server interface ---------- @@ -330,8 +305,8 @@ The downloads section of the debug interface Téléchargements - - + + Logs The name of the section tab in the debug server interface ---------- @@ -339,87 +314,99 @@ The download logs section of the debug interface Journaux - + + Please note that this debug interface may allow accessing sensitive data about the nymea system and connected devices and services. It is recommended to disable it again when not needed any more. + The warning message of the debug interface + + + + System information The system information section of the debug interface - + Hostname The command description in the server infromation section of the debug interface - + Architecture The command description in the server infromation section of the debug interface - + Kernel type The command description in the server infromation section of the debug interface - + Kernel version The command description in the server infromation section of the debug interface - + Product type The command description in the server infromation section of the debug interface - + Product version The command description in the server infromation section of the debug interface - - - + + Please note that the generated debug report may contain sensitive data about the nymea system and connected devices and services. + The warning message of the debug interface + + + + + + Download The download button description of the debug interface Téléchargement - + System logs The syslog download description of the debug interface Journaux système - - + + Show - + Settings The settings download section title of the debug interface Paramètres - + nymead settings The nymead settings download description of the debug interface Paramètres nymead @@ -449,118 +436,128 @@ The download logs section of the debug interface - + + IO Connections + The MQTT policies download description of the debug interface + + + + This section allows you to perform different network connectivity tests in order to find out if the device where nymea is running has full network connectivity. The network section description of the debug interface - + Ping The ping section of the debug interface - + This test makes four ping attempts to the nymea.io server. - + Start ping test The ping button text of the debug interface - + DNS lookup The DNS lookup section of the debug interface - + This test makes a dynamic name server lookup for nymea.io. - + Start DNS lookup test The ping button text of the debug interface - + Trace path The trace section of the debug interface - + Start trace path test The trace path button text of the debug interface - + Server live logs The network section of the debug interface - + Start logs The connect button for the log stream of the debug interface - + Logging filters The network section of the debug interface - + Logging filters plugins The network section of the debug interface - - - Released under the GNU GENERAL PUBLIC LICENSE Version 2. + + Released under the GNU GENERAL PUBLIC LICENSE Version 3. The footer license note of the debug interface + Publié sous la licence GNU GENERAL PUBLIC Version 2. {3.?} + + + + Released under the GNU GENERAL PUBLIC LICENSE Version 2. Publié sous la licence GNU GENERAL PUBLIC Version 2. - + Error %1 The HTTP error message of the debug interface. The %1 represents the error code ie.e 404 Erreur %1 - - - - - - - - - + + + + + + + + + Could not find file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Fichier "%1" introuvable. - - - - - - - - - + + + + + + + + + Could not open file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Impossible d'ouvrir le fichier "%1". diff --git a/translations/nymead-it.ts b/translations/nymead-it.ts index 4db7b9d4..10590cd4 100644 --- a/translations/nymead-it.ts +++ b/translations/nymead-it.ts @@ -4,52 +4,47 @@ CloudNotifications - - + + Cloud Notifications Notifiche cloud - + User ID ID utente - + Device Dispositivo - + Title Titolo - + Message text Testo del messaggio - + Send notification Invia notifica - + connected connesso - - - Connected changed - Connesso modificato - ThingManagerImplementation - - + + The plugin for this thing is not loaded. @@ -57,7 +52,7 @@ nymea - + nymea is an open source IoT (Internet of Things) server, which allows to control a lot of different devices from many different @@ -72,66 +67,75 @@ nymea è un server IoT (Internet of Things) open source, che consente di control - + Run nymead in the foreground, not as daemon. Esegui nymead in primo piano, non come demone. - - Debug categories to enable. Prefix with "No" to disable. Suffix with "Warnings" to address warnings. -Examples: --d AWSTraffic --d NoDeviceManager --d NoBluetoothWarnings - -Categories are: + + Disables logging all debug, info and warning categories. - - Enables all debug categories except *Traffic and *Debug categories. Single debug categories can be disabled again with -d parameter. + + Enables all info and debug categories except *Traffic and *Debug categories. - + Specify a log file to write to, if this option is not specified, logs will be printed to the standard output. Specificare un file di registro in cui scrivere, se questa opzione non è specificata, i registri verranno stampati sullo standard output. - + Log output is colorized by default. Use this option to disable colors. - + If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus. Se specificato, tutte le interfacce bus D saranno associate al bus di sessione anziché al bus di sistema. + + + Debug categories to enable. Prefix with "No" to disable. Suffix with "Info" or "Warnings" to address info and warning messages. Enabling a debug category will implicitly enable the according info category. +Examples: +-d ThingManager +-d NoApplicationInfo + + + + + + + Additional interfaces to listen on. In nymea URI format (e.g. nymeas://127.0.0.2:7777). Note that such interfaces will not require any authentication as they are intended to be used for automated testing only. + + nymeaserver::DebugServerHandler - - + + Debug nymea The header title of the debug server interface debug nymea - + nymea debug interface The main title of the debug server interface interfaccia di debug nymea - + Information The name of the section tab in the debug server interface - - + + Network The name of the section tab in the debug server interface ---------- @@ -139,190 +143,161 @@ The network section of the debug interface - - Welcome to the debug interface. - The welcome message of the debug interface - Benvenuti nell'interfaccia di debug. - - - - This debug interface was designed to provide an easy possibility to get helpful information about the running nymea server. - Questa interfaccia di debug è stata progettata per fornire una facile possibilità di ottenere informazioni utili sul server nymea in esecuzione. - - - - Be aware that this debug interface is a security risk and could offer access to sensible data. - The warning message of the debug interface - Nota che questa interfaccia di debug è un rischio per la sicurezza e potrebbe offrire l'accesso a dati sensibili. - - - + Server information The server information section of the debug interface Informazioni sul sever - + User The user name in the server infromation section of the debug interface Utente - + Compiled with Qt version The Qt build version description in the server infromation section of the debug interface Compilato con la versione Qt - + Qt runtime version The Qt runtime version description in the server infromation section of the debug interface Versione runtime Qt - + Command The command description in the server infromation section of the debug interface Comando - + Snap name The snap name description in the server infromation section of the debug interface Nome snap - + Snap version The snap version description in the server infromation section of the debug interface Versione snap - + Snap directory The snap directory description in the server infromation section of the debug interface Directory snap - + Snap application data The snap application data description in the server infromation section of the debug interface Dati applicativo snap - + Snap user data The snap user data description in the server infromation section of the debug interface Dati utente snap - + Snap common data The snap common data description in the server infromation section of the debug interface Dati comuni snap - + Server name The server name description in the server infromation section of the debug interface Nome del server - + Server version The server version description in the server infromation section of the debug interface Versione del server - + JSON-RPC version The API version description in the server infromation section of the debug interface Versione JSON-RPC - + Language The language description in the server infromation section of the debug interface Lingua - + Timezone The timezone description in the server infromation section of the debug interface Fuso orario - + Server UUID The server id description in the server infromation section of the debug interface Server UUID - + Settings path The settings path description in the server infromation section of the debug interface Percorso delle impostazioni - + Translations path The translation path description in the server infromation section of the debug interface Percorso delle traduzioni - + Generate report In the server information section of the debug interface - + If you want to provide all the debug information to a developer, you can generate a report file, which contains all information needed for reproducing a system and get information about possible problems. - - Do not share these generated information public, since they can contain sensible data and should be shared very carefully and only with people you trust! - The warning message of the debug interface - - - - + Generate report file The generate debug report button text of the debug interface - + Log database The log databse download description of the debug interface Registro database - + Thing settings The thing settings download description of the debug interface - - Thing states settings - The thing states settings download description of the debug interface - - - - + This test shows the trace path from the nymea device to the nymea.io server. - + This section allows you to see the live logs of the nymea server. - - + + Downloads The name of the section tab in the debug server interface ---------- @@ -330,8 +305,8 @@ The downloads section of the debug interface Download - - + + Logs The name of the section tab in the debug server interface ---------- @@ -339,87 +314,99 @@ The download logs section of the debug interface Log - + + Please note that this debug interface may allow accessing sensitive data about the nymea system and connected devices and services. It is recommended to disable it again when not needed any more. + The warning message of the debug interface + + + + System information The system information section of the debug interface - + Hostname The command description in the server infromation section of the debug interface - + Architecture The command description in the server infromation section of the debug interface - + Kernel type The command description in the server infromation section of the debug interface - + Kernel version The command description in the server infromation section of the debug interface - + Product type The command description in the server infromation section of the debug interface - + Product version The command description in the server infromation section of the debug interface - - - + + Please note that the generated debug report may contain sensitive data about the nymea system and connected devices and services. + The warning message of the debug interface + + + + + + Download The download button description of the debug interface Download - + System logs The syslog download description of the debug interface Log di sistema - - + + Show - + Settings The settings download section title of the debug interface Impostazioni - + nymead settings The nymead settings download description of the debug interface Impostazioni nymead @@ -449,118 +436,128 @@ The download logs section of the debug interface - + + IO Connections + The MQTT policies download description of the debug interface + + + + This section allows you to perform different network connectivity tests in order to find out if the device where nymea is running has full network connectivity. The network section description of the debug interface - + Ping The ping section of the debug interface - + This test makes four ping attempts to the nymea.io server. - + Start ping test The ping button text of the debug interface - + DNS lookup The DNS lookup section of the debug interface - + This test makes a dynamic name server lookup for nymea.io. - + Start DNS lookup test The ping button text of the debug interface - + Trace path The trace section of the debug interface - + Start trace path test The trace path button text of the debug interface - + Server live logs The network section of the debug interface - + Start logs The connect button for the log stream of the debug interface - + Logging filters The network section of the debug interface - + Logging filters plugins The network section of the debug interface - - - Released under the GNU GENERAL PUBLIC LICENSE Version 2. + + Released under the GNU GENERAL PUBLIC LICENSE Version 3. The footer license note of the debug interface + Rilasciato su licenza GNU General Public License versione 2. {3.?} + + + + Released under the GNU GENERAL PUBLIC LICENSE Version 2. Rilasciato su licenza GNU General Public License versione 2. - + Error %1 The HTTP error message of the debug interface. The %1 represents the error code ie.e 404 Errore %1 - - - - - - - - - + + + + + + + + + Could not find file "%1". The HTTP error message of the debug interface. The %1 represents the file name. File "%1" non trovato. - - - - - - - - - + + + + + + + + + Could not open file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Impossibile aprire il file "%1". diff --git a/translations/nymead-nl.ts b/translations/nymead-nl.ts index cd786320..d555efb0 100644 --- a/translations/nymead-nl.ts +++ b/translations/nymead-nl.ts @@ -4,52 +4,47 @@ CloudNotifications - - + + Cloud Notifications Cloud-berichten - + User ID Gebruikers-ID - + Device Apparaat - + Title Titel - + Message text Berichttekst - + Send notification Bericht versturen - + connected verbonden - - - Connected changed - Verbonden gewijzigd - ThingManagerImplementation - - + + The plugin for this thing is not loaded. @@ -57,7 +52,7 @@ nymea - + nymea is an open source IoT (Internet of Things) server, which allows to control a lot of different devices from many different @@ -72,66 +67,75 @@ nymea is een open source IoT-server (IoT: Internet der dingen), waarmee zeer vee - + Run nymead in the foreground, not as daemon. nymead op de voorgrond - en niet als daemon uitvoeren. - - Debug categories to enable. Prefix with "No" to disable. Suffix with "Warnings" to address warnings. -Examples: --d AWSTraffic --d NoDeviceManager --d NoBluetoothWarnings - -Categories are: + + Disables logging all debug, info and warning categories. - - Enables all debug categories except *Traffic and *Debug categories. Single debug categories can be disabled again with -d parameter. + + Enables all info and debug categories except *Traffic and *Debug categories. - + Specify a log file to write to, if this option is not specified, logs will be printed to the standard output. Specificeer een logbestand waarnaar geschreven kan worden. Als deze optie niet is gespecificeerd, worden logbestanden naar de standaarduitvoer geschreven. - + Log output is colorized by default. Use this option to disable colors. - + If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus. Indien gespecificeerd, worden alle D-businterfaces gebonden aan de sessiebus, en niet aan de systeembus. + + + Debug categories to enable. Prefix with "No" to disable. Suffix with "Info" or "Warnings" to address info and warning messages. Enabling a debug category will implicitly enable the according info category. +Examples: +-d ThingManager +-d NoApplicationInfo + + + + + + + Additional interfaces to listen on. In nymea URI format (e.g. nymeas://127.0.0.2:7777). Note that such interfaces will not require any authentication as they are intended to be used for automated testing only. + + nymeaserver::DebugServerHandler - - + + Debug nymea The header title of the debug server interface nymea debuggen - + nymea debug interface The main title of the debug server interface nymea debug-interface - + Information The name of the section tab in the debug server interface - - + + Network The name of the section tab in the debug server interface ---------- @@ -139,190 +143,161 @@ The network section of the debug interface - - Welcome to the debug interface. - The welcome message of the debug interface - Welkom bij de debug-interface. - - - - This debug interface was designed to provide an easy possibility to get helpful information about the running nymea server. - Deze debug-interface is bedoeld om gemakkelijk nuttige informatie over de inwerking zijnde nymea-server te krijgen. - - - - Be aware that this debug interface is a security risk and could offer access to sensible data. - The warning message of the debug interface - Besef wel dat deze debug-interface een beveiligingsrisico inhoudt, waarmee mogelijk toegang tot vertrouwelijke gegevens kan worden verkregen. - - - + Server information The server information section of the debug interface Serverinformatie - + User The user name in the server infromation section of the debug interface Gebruiker - + Compiled with Qt version The Qt build version description in the server infromation section of the debug interface Gecompileerd met Qt-versie - + Qt runtime version The Qt runtime version description in the server infromation section of the debug interface Qt-runtimeversie - + Command The command description in the server infromation section of the debug interface Opdracht - + Snap name The snap name description in the server infromation section of the debug interface Snap-naam - + Snap version The snap version description in the server infromation section of the debug interface Snap-versie - + Snap directory The snap directory description in the server infromation section of the debug interface Snap-directory - + Snap application data The snap application data description in the server infromation section of the debug interface Snap-toepassingsgegevens - + Snap user data The snap user data description in the server infromation section of the debug interface Snap-gebruikersgegevens - + Snap common data The snap common data description in the server infromation section of the debug interface Gemeenschappelijke gegevens voor Snap - + Server name The server name description in the server infromation section of the debug interface Servernaam - + Server version The server version description in the server infromation section of the debug interface Serverversie - + JSON-RPC version The API version description in the server infromation section of the debug interface JSON-RPC-versie - + Language The language description in the server infromation section of the debug interface Taal - + Timezone The timezone description in the server infromation section of the debug interface Tijdzone - + Server UUID The server id description in the server infromation section of the debug interface Server-UUID - + Settings path The settings path description in the server infromation section of the debug interface Pad naar instellingen - + Translations path The translation path description in the server infromation section of the debug interface Pad naar vertalingen - + Generate report In the server information section of the debug interface - + If you want to provide all the debug information to a developer, you can generate a report file, which contains all information needed for reproducing a system and get information about possible problems. - - Do not share these generated information public, since they can contain sensible data and should be shared very carefully and only with people you trust! - The warning message of the debug interface - - - - + Generate report file The generate debug report button text of the debug interface - + Log database The log databse download description of the debug interface Log-database - + Thing settings The thing settings download description of the debug interface - - Thing states settings - The thing states settings download description of the debug interface - - - - + This test shows the trace path from the nymea device to the nymea.io server. - + This section allows you to see the live logs of the nymea server. - - + + Downloads The name of the section tab in the debug server interface ---------- @@ -330,8 +305,8 @@ The downloads section of the debug interface Downloads - - + + Logs The name of the section tab in the debug server interface ---------- @@ -339,87 +314,99 @@ The download logs section of the debug interface Logboeken - + + Please note that this debug interface may allow accessing sensitive data about the nymea system and connected devices and services. It is recommended to disable it again when not needed any more. + The warning message of the debug interface + + + + System information The system information section of the debug interface - + Hostname The command description in the server infromation section of the debug interface - + Architecture The command description in the server infromation section of the debug interface - + Kernel type The command description in the server infromation section of the debug interface - + Kernel version The command description in the server infromation section of the debug interface - + Product type The command description in the server infromation section of the debug interface - + Product version The command description in the server infromation section of the debug interface - - - + + Please note that the generated debug report may contain sensitive data about the nymea system and connected devices and services. + The warning message of the debug interface + + + + + + Download The download button description of the debug interface Download - + System logs The syslog download description of the debug interface Systeemlogboeken - - + + Show - + Settings The settings download section title of the debug interface Instellingen - + nymead settings The nymead settings download description of the debug interface nymead-instellingen @@ -449,118 +436,128 @@ The download logs section of the debug interface - + + IO Connections + The MQTT policies download description of the debug interface + + + + This section allows you to perform different network connectivity tests in order to find out if the device where nymea is running has full network connectivity. The network section description of the debug interface - + Ping The ping section of the debug interface - + This test makes four ping attempts to the nymea.io server. - + Start ping test The ping button text of the debug interface - + DNS lookup The DNS lookup section of the debug interface - + This test makes a dynamic name server lookup for nymea.io. - + Start DNS lookup test The ping button text of the debug interface - + Trace path The trace section of the debug interface - + Start trace path test The trace path button text of the debug interface - + Server live logs The network section of the debug interface - + Start logs The connect button for the log stream of the debug interface - + Logging filters The network section of the debug interface - + Logging filters plugins The network section of the debug interface - - - Released under the GNU GENERAL PUBLIC LICENSE Version 2. + + Released under the GNU GENERAL PUBLIC LICENSE Version 3. The footer license note of the debug interface + Uitgebracht onder de GNU GENERAL PUBLIC LICENSE versie 2. {3.?} + + + + Released under the GNU GENERAL PUBLIC LICENSE Version 2. Uitgebracht onder de GNU GENERAL PUBLIC LICENSE versie 2. - + Error %1 The HTTP error message of the debug interface. The %1 represents the error code ie.e 404 Fout %1 - - - - - - - - - + + + + + + + + + Could not find file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Bestand "%1" kon niet worden gevonden. - - - - - - - - - + + + + + + + + + Could not open file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Bestand "%1" kon niet worden geopend. diff --git a/translations/nymead-pt.ts b/translations/nymead-pt.ts index 0431b61c..cd7bea46 100644 --- a/translations/nymead-pt.ts +++ b/translations/nymead-pt.ts @@ -4,52 +4,47 @@ CloudNotifications - - + + Cloud Notifications Notificações de nuvem - + User ID ID de utilizador - + Device Dispositivo - + Title Título - + Message text Texto de mensagem - + Send notification Enviar notificação - + connected ligado - - - Connected changed - Ligado alterado - ThingManagerImplementation - - + + The plugin for this thing is not loaded. @@ -57,7 +52,7 @@ nymea - + nymea is an open source IoT (Internet of Things) server, which allows to control a lot of different devices from many different @@ -72,66 +67,75 @@ nymea é um servidor IoT (Internet das Coisas) de código aberto, que permite co - + Run nymead in the foreground, not as daemon. Execute nymead em primeiro plano, não como daemon. - - Debug categories to enable. Prefix with "No" to disable. Suffix with "Warnings" to address warnings. -Examples: --d AWSTraffic --d NoDeviceManager --d NoBluetoothWarnings - -Categories are: + + Disables logging all debug, info and warning categories. - - Enables all debug categories except *Traffic and *Debug categories. Single debug categories can be disabled again with -d parameter. + + Enables all info and debug categories except *Traffic and *Debug categories. - + Specify a log file to write to, if this option is not specified, logs will be printed to the standard output. Especifique um ficheiro de registo para gravar, se essa opção não for especificada, os registos serão impressos na saída padrão. - + Log output is colorized by default. Use this option to disable colors. - + If specified, all D-Bus interfaces will be bound to the session bus instead of the system bus. Se especificado, todas as interfaces do D-Bus serão ligadas ao barramento da sessão em vez do barramento do sistema. + + + Debug categories to enable. Prefix with "No" to disable. Suffix with "Info" or "Warnings" to address info and warning messages. Enabling a debug category will implicitly enable the according info category. +Examples: +-d ThingManager +-d NoApplicationInfo + + + + + + + Additional interfaces to listen on. In nymea URI format (e.g. nymeas://127.0.0.2:7777). Note that such interfaces will not require any authentication as they are intended to be used for automated testing only. + + nymeaserver::DebugServerHandler - - + + Debug nymea The header title of the debug server interface Depuração nymea - + nymea debug interface The main title of the debug server interface Interface depuração nymea - + Information The name of the section tab in the debug server interface - - + + Network The name of the section tab in the debug server interface ---------- @@ -139,190 +143,161 @@ The network section of the debug interface - - Welcome to the debug interface. - The welcome message of the debug interface - Bem-vindo à interface debug. - - - - This debug interface was designed to provide an easy possibility to get helpful information about the running nymea server. - Esta interface de depuração foi projetada para fornecer uma possibilidade fácil de obter informações úteis sobre o servidor nymea em execução. - - - - Be aware that this debug interface is a security risk and could offer access to sensible data. - The warning message of the debug interface - Esteja ciente que esta interface de depuração representa um risco de segurança e pode oferecer acesso a dados sensíveis. - - - + Server information The server information section of the debug interface Informação do servidor - + User The user name in the server infromation section of the debug interface Utilizador - + Compiled with Qt version The Qt build version description in the server infromation section of the debug interface Compilado com a versão Qt - + Qt runtime version The Qt runtime version description in the server infromation section of the debug interface Versão de tempo de execução Qt - + Command The command description in the server infromation section of the debug interface Comando - + Snap name The snap name description in the server infromation section of the debug interface Nome Snap - + Snap version The snap version description in the server infromation section of the debug interface Versão Snap - + Snap directory The snap directory description in the server infromation section of the debug interface Diretório Snap - + Snap application data The snap application data description in the server infromation section of the debug interface Dados da aplicação Snap - + Snap user data The snap user data description in the server infromation section of the debug interface Dados do utilizador Snap - + Snap common data The snap common data description in the server infromation section of the debug interface Dados comuns Snap - + Server name The server name description in the server infromation section of the debug interface Nome do servidor - + Server version The server version description in the server infromation section of the debug interface Versão do servidor - + JSON-RPC version The API version description in the server infromation section of the debug interface Versão JSON-RPC - + Language The language description in the server infromation section of the debug interface Idioma - + Timezone The timezone description in the server infromation section of the debug interface Fuso horário - + Server UUID The server id description in the server infromation section of the debug interface UUID servidor - + Settings path The settings path description in the server infromation section of the debug interface Caminho de configurações - + Translations path The translation path description in the server infromation section of the debug interface Caminho de traduções - + Generate report In the server information section of the debug interface - + If you want to provide all the debug information to a developer, you can generate a report file, which contains all information needed for reproducing a system and get information about possible problems. - - Do not share these generated information public, since they can contain sensible data and should be shared very carefully and only with people you trust! - The warning message of the debug interface - - - - + Generate report file The generate debug report button text of the debug interface - + Log database The log databse download description of the debug interface Banco de dados de registo - + Thing settings The thing settings download description of the debug interface - - Thing states settings - The thing states settings download description of the debug interface - - - - + This test shows the trace path from the nymea device to the nymea.io server. - + This section allows you to see the live logs of the nymea server. - - + + Downloads The name of the section tab in the debug server interface ---------- @@ -330,8 +305,8 @@ The downloads section of the debug interface Descargas - - + + Logs The name of the section tab in the debug server interface ---------- @@ -339,87 +314,99 @@ The download logs section of the debug interface Registos - + + Please note that this debug interface may allow accessing sensitive data about the nymea system and connected devices and services. It is recommended to disable it again when not needed any more. + The warning message of the debug interface + + + + System information The system information section of the debug interface - + Hostname The command description in the server infromation section of the debug interface - + Architecture The command description in the server infromation section of the debug interface - + Kernel type The command description in the server infromation section of the debug interface - + Kernel version The command description in the server infromation section of the debug interface - + Product type The command description in the server infromation section of the debug interface - + Product version The command description in the server infromation section of the debug interface - - - + + Please note that the generated debug report may contain sensitive data about the nymea system and connected devices and services. + The warning message of the debug interface + + + + + + Download The download button description of the debug interface Descarga - + System logs The syslog download description of the debug interface Registos do sistema - - + + Show - + Settings The settings download section title of the debug interface Configurações - + nymead settings The nymead settings download description of the debug interface Configurações nymead @@ -449,118 +436,128 @@ The download logs section of the debug interface - + + IO Connections + The MQTT policies download description of the debug interface + + + + This section allows you to perform different network connectivity tests in order to find out if the device where nymea is running has full network connectivity. The network section description of the debug interface - + Ping The ping section of the debug interface - + This test makes four ping attempts to the nymea.io server. - + Start ping test The ping button text of the debug interface - + DNS lookup The DNS lookup section of the debug interface - + This test makes a dynamic name server lookup for nymea.io. - + Start DNS lookup test The ping button text of the debug interface - + Trace path The trace section of the debug interface - + Start trace path test The trace path button text of the debug interface - + Server live logs The network section of the debug interface - + Start logs The connect button for the log stream of the debug interface - + Logging filters The network section of the debug interface - + Logging filters plugins The network section of the debug interface - - - Released under the GNU GENERAL PUBLIC LICENSE Version 2. + + Released under the GNU GENERAL PUBLIC LICENSE Version 3. The footer license note of the debug interface + Lançado sob a LICENÇA PÚBLICA GERAL do GNU Versão 2. {3.?} + + + + Released under the GNU GENERAL PUBLIC LICENSE Version 2. Lançado sob a LICENÇA PÚBLICA GERAL do GNU Versão 2. - + Error %1 The HTTP error message of the debug interface. The %1 represents the error code ie.e 404 Erro %1 - - - - - - - - - + + + + + + + + + Could not find file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Não foi possível encontrar ficheiro "%1". - - - - - - - - - + + + + + + + + + Could not open file "%1". The HTTP error message of the debug interface. The %1 represents the file name. Não foi possível abrir ficheiro "%1".