Merge PR #342: Bose SoundTouch: Add alert interface and api key provider
commit
9790490156
|
|
@ -49,11 +49,16 @@ IntegrationPluginBose::~IntegrationPluginBose()
|
|||
void IntegrationPluginBose::init()
|
||||
{
|
||||
m_serviceBrowser = hardwareManager()->zeroConfController()->createServiceBrowser("_soundtouch._tcp");
|
||||
|
||||
updateConsumerKey();
|
||||
|
||||
connect(this, &IntegrationPlugin::configValueChanged, this, &IntegrationPluginBose::updateConsumerKey);
|
||||
connect(apiKeyStorage(), &ApiKeyStorage::keyAdded, this, &IntegrationPluginBose::updateConsumerKey);
|
||||
connect(apiKeyStorage(), &ApiKeyStorage::keyUpdated, this, &IntegrationPluginBose::updateConsumerKey);
|
||||
}
|
||||
|
||||
void IntegrationPluginBose::setupThing(ThingSetupInfo *info)
|
||||
{
|
||||
|
||||
if (info->thing()->thingClassId() == soundtouchThingClassId) {
|
||||
|
||||
QString ipAddress;
|
||||
|
|
@ -275,6 +280,29 @@ void IntegrationPluginBose::executeAction(ThingActionInfo *info)
|
|||
}
|
||||
m_pendingActions.insert(requestId, info);
|
||||
connect(info, &ThingActionInfo::aborted, this, [requestId, this] {m_pendingActions.remove(requestId);});
|
||||
} else if (action.actionTypeId() == soundtouchAlertActionTypeId) {
|
||||
if (m_consumerKey.isEmpty()) {
|
||||
return info->finish(Thing::ThingErrorHardwareFailure, tr("No consumer key available."));
|
||||
}
|
||||
QUrl alertUrl;
|
||||
QString alertSound = action.param(soundtouchAlertActionSoundParamTypeId).value().toString();
|
||||
if (alertSound == "Doorbell") {
|
||||
alertUrl = configValue(bosePluginDoorbellSoundUrlParamTypeId).toString();
|
||||
} else if (alertSound == "Notification") {
|
||||
alertUrl = configValue(bosePluginNotificationSoundUrlParamTypeId).toString();
|
||||
}
|
||||
if (!alertUrl.isValid()) {
|
||||
return info->finish(Thing::ThingErrorHardwareFailure, tr("Sound URL is not valid."));
|
||||
}
|
||||
PlayInfoObject playInfo;
|
||||
playInfo.url = alertUrl.toString();
|
||||
playInfo.appKey = m_consumerKey;
|
||||
playInfo.services = "nymea";
|
||||
playInfo.volume = action.param(soundtouchAlertActionVolumeParamTypeId).value().toInt();
|
||||
playInfo.reason = action.param(soundtouchAlertActionMessageParamTypeId).value().toString();
|
||||
QUuid requestId = soundTouch->setSpeaker(playInfo);
|
||||
m_pendingActions.insert(requestId, info);
|
||||
connect(info, &ThingActionInfo::aborted, this, [requestId, this] {m_pendingActions.remove(requestId);});
|
||||
} else {
|
||||
qCWarning(dcBose()) << "ActionTypeId not found" << action.actionTypeId();
|
||||
return info->finish(Thing::ThingErrorActionTypeNotFound);
|
||||
|
|
@ -369,6 +397,22 @@ void IntegrationPluginBose::executeBrowserItem(BrowserActionInfo *info)
|
|||
}
|
||||
}
|
||||
|
||||
void IntegrationPluginBose::updateConsumerKey()
|
||||
{
|
||||
QString key = configValue(bosePluginCustomConsumerKeyParamTypeId).toString();
|
||||
if (!key.isEmpty()) {
|
||||
m_consumerKey = key;
|
||||
return;
|
||||
}
|
||||
key = apiKeyStorage()->requestKey("bose").data("consumerKey");
|
||||
if (!key.isEmpty()) {
|
||||
m_consumerKey = key;
|
||||
return;
|
||||
}
|
||||
qCWarning(dcBose()) << "No API key set.";
|
||||
qCWarning(dcBose()) << "Either install an API key pacakge (nymea-apikeysprovider-plugin-*) or provide a key in the plugin settings.";
|
||||
}
|
||||
|
||||
void IntegrationPluginBose::onPluginTimer()
|
||||
{
|
||||
foreach(SoundTouch *soundTouch, m_soundTouch.values()) {
|
||||
|
|
|
|||
|
|
@ -63,6 +63,7 @@ public:
|
|||
void executeBrowserItem(BrowserActionInfo *info) override;
|
||||
|
||||
private:
|
||||
QString m_consumerKey;
|
||||
ZeroConfServiceBrowser *m_serviceBrowser = nullptr;
|
||||
PluginTimer *m_pluginTimer = nullptr;
|
||||
|
||||
|
|
@ -79,15 +80,17 @@ private slots:
|
|||
void onDeviceNameChanged();
|
||||
void onRequestExecuted(QUuid requestId, bool success);
|
||||
|
||||
void onInfoObjectReceived(QUuid requestId, InfoObject infoObject);
|
||||
void onNowPlayingObjectReceived(QUuid requestId, NowPlayingObject nowPlaying);
|
||||
void onVolumeObjectReceived(QUuid requestId, VolumeObject volume);
|
||||
void onSourcesObjectReceived(QUuid requestId, SourcesObject sources);
|
||||
void onBassObjectReceived(QUuid requestId, BassObject bass);
|
||||
void onBassCapabilitiesObjectReceived(QUuid requestId, BassCapabilitiesObject bassCapabilities);
|
||||
void onGroupObjectReceived(QUuid requestId, GroupObject group);
|
||||
void onZoneObjectReceived(QUuid requestId, ZoneObject zone);
|
||||
void onPresetsReceived(QUuid requestId, QList<PresetObject> presets);
|
||||
void onInfoObjectReceived(QUuid requestId, InfoObject infoObject);
|
||||
void onNowPlayingObjectReceived(QUuid requestId, NowPlayingObject nowPlaying);
|
||||
void onVolumeObjectReceived(QUuid requestId, VolumeObject volume);
|
||||
void onSourcesObjectReceived(QUuid requestId, SourcesObject sources);
|
||||
void onBassObjectReceived(QUuid requestId, BassObject bass);
|
||||
void onBassCapabilitiesObjectReceived(QUuid requestId, BassCapabilitiesObject bassCapabilities);
|
||||
void onGroupObjectReceived(QUuid requestId, GroupObject group);
|
||||
void onZoneObjectReceived(QUuid requestId, ZoneObject zone);
|
||||
void onPresetsReceived(QUuid requestId, QList<PresetObject> presets);
|
||||
|
||||
void updateConsumerKey();
|
||||
};
|
||||
|
||||
#endif // INTEGRATIONPLUGINBOSE_H
|
||||
|
|
|
|||
|
|
@ -2,6 +2,37 @@
|
|||
"id": "472a3f24-b05c-49b3-ad9a-dfda608b6760",
|
||||
"name": "Bose",
|
||||
"displayName": "Bose",
|
||||
"apiKeys": ["bose"],
|
||||
"paramTypes": [
|
||||
{
|
||||
"id": "a5fcebca-b37d-4c14-ba22-1e5f1dd377e7",
|
||||
"name": "customConsumerKey",
|
||||
"displayName": "Custom consumer key",
|
||||
"type" : "QString",
|
||||
"defaultValue": ""
|
||||
},
|
||||
{
|
||||
"id": "2c41fcc1-b28f-4f7e-9a8c-74972c60d22f",
|
||||
"name": "customConsumerSecret",
|
||||
"displayName": "Custom consumer secret",
|
||||
"type" : "QString",
|
||||
"defaultValue": ""
|
||||
},
|
||||
{
|
||||
"id": "82883f9b-4397-404a-9126-4e9d5a22e6c6",
|
||||
"name": "doorbellSoundUrl",
|
||||
"displayName": "Doorbell sound url",
|
||||
"type" : "QString",
|
||||
"defaultValue": "https://downloads.nymea.io/notification-sounds/doorbell.mp3"
|
||||
},
|
||||
{
|
||||
"id": "8717d14e-c3d5-44a7-b658-4826dd4013c2",
|
||||
"name": "notificationSoundUrl",
|
||||
"displayName": "Notification sound url",
|
||||
"type" : "QString",
|
||||
"defaultValue": "https://downloads.nymea.io/notification-sounds/notification.mp3"
|
||||
}
|
||||
],
|
||||
"vendors": [
|
||||
{
|
||||
"id": "433c45cd-5bc1-4239-a8a1-487c70ffdfc7",
|
||||
|
|
@ -12,7 +43,7 @@
|
|||
"id": "f9b7a3f5-6353-48b1-afc1-66f914412f82",
|
||||
"name": "soundtouch",
|
||||
"displayName": "SoundTouch",
|
||||
"interfaces": ["extendedvolumecontroller", "mediametadataprovider", "shufflerepeat", "connectable"],
|
||||
"interfaces": ["extendedvolumecontroller", "mediametadataprovider", "shufflerepeat", "alert", "connectable"],
|
||||
"createMethods": ["discovery"],
|
||||
"browsable": true,
|
||||
"paramTypes": [
|
||||
|
|
@ -221,6 +252,40 @@
|
|||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "de24c5ec-1e36-4149-bfaa-71fb05264aa3",
|
||||
"name": "alert",
|
||||
"displayName": "Alert",
|
||||
"paramTypes": [
|
||||
{
|
||||
"id": "4c13007a-82e6-484f-959a-bf3731c18768",
|
||||
"name": "sound",
|
||||
"displayName": "Sound",
|
||||
"type": "QString",
|
||||
"defaultValue": "Notification",
|
||||
"allowedValues": [
|
||||
"Doorbell",
|
||||
"Notification"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "346e1544-16fa-49a1-85ac-6be657c737d8",
|
||||
"name": "message",
|
||||
"displayName": "Display message",
|
||||
"type": "QString",
|
||||
"defaultValue": ""
|
||||
},
|
||||
{
|
||||
"id": "8527bff6-811f-41f5-a098-e4b356e2463c",
|
||||
"name": "volume",
|
||||
"displayName": "Volume",
|
||||
"type": "int",
|
||||
"minValue": 10,
|
||||
"maxValue": 70,
|
||||
"defaultValue": "40"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,410 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="de">
|
||||
<context>
|
||||
<name>Bose</name>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="96"/>
|
||||
<source>Alert</source>
|
||||
<extracomment>The name of the ActionType ({de24c5ec-1e36-4149-bfaa-71fb05264aa3}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Alarm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="99"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="102"/>
|
||||
<source>Artist</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: artist, ID: {8cb920a3-3bf1-4231-92d4-8ac27e7b3d65})
|
||||
----------
|
||||
The name of the StateType ({8cb920a3-3bf1-4231-92d4-8ac27e7b3d65}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Künstler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="105"/>
|
||||
<source>Artist changed</source>
|
||||
<extracomment>The name of the EventType ({8cb920a3-3bf1-4231-92d4-8ac27e7b3d65}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Künstler geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="108"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="111"/>
|
||||
<source>Artwork</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: artwork, ID: {44304c82-c2f6-433b-b62b-815382617d0b})
|
||||
----------
|
||||
The name of the StateType ({44304c82-c2f6-433b-b62b-815382617d0b}) of ThingClass soundtouch</extracomment>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="114"/>
|
||||
<source>Artwork changed</source>
|
||||
<extracomment>The name of the EventType ({44304c82-c2f6-433b-b62b-815382617d0b}) of ThingClass soundtouch</extracomment>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="117"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="120"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="123"/>
|
||||
<source>Bass</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: bass, ID: {91bc53ec-4f3b-438d-8e32-129b7c27aae4})
|
||||
----------
|
||||
The name of the ParamType (ThingClass: soundtouch, EventType: bass, ID: {91bc53ec-4f3b-438d-8e32-129b7c27aae4})
|
||||
----------
|
||||
The name of the StateType ({91bc53ec-4f3b-438d-8e32-129b7c27aae4}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Bass</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="126"/>
|
||||
<source>Bass changed</source>
|
||||
<extracomment>The name of the EventType ({91bc53ec-4f3b-438d-8e32-129b7c27aae4}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Bass geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="129"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="132"/>
|
||||
<source>Bose</source>
|
||||
<extracomment>The name of the vendor ({433c45cd-5bc1-4239-a8a1-487c70ffdfc7})
|
||||
----------
|
||||
The name of the plugin Bose ({472a3f24-b05c-49b3-ad9a-dfda608b6760})</extracomment>
|
||||
<translation>Bose</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="135"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="138"/>
|
||||
<source>Collection</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: collection, ID: {ce399eec-9f6a-4903-9916-0e90e38b255e})
|
||||
----------
|
||||
The name of the StateType ({ce399eec-9f6a-4903-9916-0e90e38b255e}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Sammlung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="141"/>
|
||||
<source>Collection changed</source>
|
||||
<extracomment>The name of the EventType ({ce399eec-9f6a-4903-9916-0e90e38b255e}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Sammlung geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="144"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="147"/>
|
||||
<source>Connected</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: connected, ID: {09dfbd40-c97c-4a20-9ecd-f80e389a4864})
|
||||
----------
|
||||
The name of the StateType ({09dfbd40-c97c-4a20-9ecd-f80e389a4864}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Verbunden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="150"/>
|
||||
<source>Custom consumer key</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: bose, Type: plugin, ID: {a5fcebca-b37d-4c14-ba22-1e5f1dd377e7})</extracomment>
|
||||
<translation>Benutzerdefinierter Consumer-Key</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="153"/>
|
||||
<source>Custom consumer secret</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: bose, Type: plugin, ID: {2c41fcc1-b28f-4f7e-9a8c-74972c60d22f})</extracomment>
|
||||
<translation>Benutzerdefiniertes Consumer-Secret</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="156"/>
|
||||
<source>Display message</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: alert, ID: {346e1544-16fa-49a1-85ac-6be657c737d8})</extracomment>
|
||||
<translation>Nachricht anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="159"/>
|
||||
<source>Doorbell sound url</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: bose, Type: plugin, ID: {82883f9b-4397-404a-9126-4e9d5a22e6c6})</extracomment>
|
||||
<translation>Türklingelton URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="162"/>
|
||||
<source>IP</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, Type: thing, ID: {1a897065-57c6-49b3-bac9-1e5db27859e5})</extracomment>
|
||||
<translation>IP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="165"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="168"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="171"/>
|
||||
<source>Mute</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: mute, ID: {bc98cdb0-4d0e-48ca-afc7-922e49bb7813})
|
||||
----------
|
||||
The name of the ParamType (ThingClass: soundtouch, EventType: mute, ID: {bc98cdb0-4d0e-48ca-afc7-922e49bb7813})
|
||||
----------
|
||||
The name of the StateType ({bc98cdb0-4d0e-48ca-afc7-922e49bb7813}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Stumm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="174"/>
|
||||
<source>Mute changed</source>
|
||||
<extracomment>The name of the EventType ({bc98cdb0-4d0e-48ca-afc7-922e49bb7813}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Stumm geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="177"/>
|
||||
<source>Notification sound url</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: bose, Type: plugin, ID: {8717d14e-c3d5-44a7-b658-4826dd4013c2})</extracomment>
|
||||
<translation>Benachrichtigungston URL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="180"/>
|
||||
<source>Pause</source>
|
||||
<extracomment>The name of the ActionType ({3cf341cb-fe63-40bc-a450-9678d18e91e3}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Pause</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="183"/>
|
||||
<source>Play</source>
|
||||
<extracomment>The name of the ActionType ({4d2ee668-a2e3-4795-8b96-0c800b703b46}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Start</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="186"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="189"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="192"/>
|
||||
<source>Playback status</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: playbackStatus, ID: {2dd512b7-40c2-488e-8d4f-6519edaa6f74})
|
||||
----------
|
||||
The name of the ParamType (ThingClass: soundtouch, EventType: playbackStatus, ID: {2dd512b7-40c2-488e-8d4f-6519edaa6f74})
|
||||
----------
|
||||
The name of the StateType ({2dd512b7-40c2-488e-8d4f-6519edaa6f74}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Wiedergabestatus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="195"/>
|
||||
<source>Player ID</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, Type: thing, ID: {3eb95eef-e8ba-4d44-8a21-7d8038b74c4d})</extracomment>
|
||||
<translation>Player ID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="198"/>
|
||||
<source>Player pause</source>
|
||||
<extracomment>The name of the EventType ({99498b1c-e9c0-480a-9e91-662ee79ba976}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Player pause</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="201"/>
|
||||
<source>Player play</source>
|
||||
<extracomment>The name of the EventType ({2535a1eb-7643-4874-98f6-b027fdff6311}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Player start</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="204"/>
|
||||
<source>Player stop</source>
|
||||
<extracomment>The name of the EventType ({a02ce255-3abb-435d-a92e-7f99c952ecb2}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Player stopp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="207"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="210"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="213"/>
|
||||
<source>Power</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: power, ID: {5bac4ad7-f55c-4301-8d72-f2783d9909ff})
|
||||
----------
|
||||
The name of the ParamType (ThingClass: soundtouch, EventType: power, ID: {5bac4ad7-f55c-4301-8d72-f2783d9909ff})
|
||||
----------
|
||||
The name of the StateType ({5bac4ad7-f55c-4301-8d72-f2783d9909ff}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Eingeschalten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="216"/>
|
||||
<source>Power changed</source>
|
||||
<extracomment>The name of the EventType ({5bac4ad7-f55c-4301-8d72-f2783d9909ff}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Eingeschalten geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="219"/>
|
||||
<source>Preset number</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: savePreset, ID: {04ac6e10-922d-4774-861f-060897d3a6c0})</extracomment>
|
||||
<translation>Presetnummer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="222"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="225"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="228"/>
|
||||
<source>Repeat</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: repeat, ID: {bc02c28e-3f5d-4de4-b9b5-c0b1576c6e7e})
|
||||
----------
|
||||
The name of the ParamType (ThingClass: soundtouch, EventType: repeat, ID: {bc02c28e-3f5d-4de4-b9b5-c0b1576c6e7e})
|
||||
----------
|
||||
The name of the StateType ({bc02c28e-3f5d-4de4-b9b5-c0b1576c6e7e}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Wiederholen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="231"/>
|
||||
<source>Repeat changed</source>
|
||||
<extracomment>The name of the EventType ({bc02c28e-3f5d-4de4-b9b5-c0b1576c6e7e}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Wiederholen geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="234"/>
|
||||
<source>Save preset</source>
|
||||
<extracomment>The name of the ActionType ({6c47e736-e2e0-47d4-9b96-7f56d2342b4d}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Preset speichern</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="237"/>
|
||||
<source>Set bass</source>
|
||||
<extracomment>The name of the ActionType ({91bc53ec-4f3b-438d-8e32-129b7c27aae4}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Setze Bass</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="240"/>
|
||||
<source>Set mute</source>
|
||||
<extracomment>The name of the ActionType ({bc98cdb0-4d0e-48ca-afc7-922e49bb7813}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Setze stumm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="243"/>
|
||||
<source>Set power</source>
|
||||
<extracomment>The name of the ActionType ({5bac4ad7-f55c-4301-8d72-f2783d9909ff}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Setze eingeschalten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="246"/>
|
||||
<source>Set repeat</source>
|
||||
<extracomment>The name of the ActionType ({bc02c28e-3f5d-4de4-b9b5-c0b1576c6e7e}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Setze wiederholen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="249"/>
|
||||
<source>Set shuffle</source>
|
||||
<extracomment>The name of the ActionType ({5913aa2a-629d-4de5-bf44-a4a1f130c118}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Setze zufällige Wiedergabe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="252"/>
|
||||
<source>Set volume</source>
|
||||
<extracomment>The name of the ActionType ({9dfe5d78-4c3f-497c-bab1-bb9fdf7e93a9}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Setze Lautstärke</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="255"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="258"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="261"/>
|
||||
<source>Shuffle</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: shuffle, ID: {5913aa2a-629d-4de5-bf44-a4a1f130c118})
|
||||
----------
|
||||
The name of the ParamType (ThingClass: soundtouch, EventType: shuffle, ID: {5913aa2a-629d-4de5-bf44-a4a1f130c118})
|
||||
----------
|
||||
The name of the StateType ({5913aa2a-629d-4de5-bf44-a4a1f130c118}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Zufällige Wiedergabe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="264"/>
|
||||
<source>Shuffle changed</source>
|
||||
<extracomment>The name of the EventType ({5913aa2a-629d-4de5-bf44-a4a1f130c118}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Zufällige Wiedergabe geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="267"/>
|
||||
<source>Skip Next</source>
|
||||
<extracomment>The name of the ActionType ({85d7126a-b123-4a28-aeb4-d84bcfb4d14f}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Nächster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="270"/>
|
||||
<source>Skip back</source>
|
||||
<extracomment>The name of the ActionType ({a180807d-1265-4831-9d86-a421767418dd}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Zurück</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="273"/>
|
||||
<source>Sound</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: alert, ID: {4c13007a-82e6-484f-959a-bf3731c18768})</extracomment>
|
||||
<translation>Ton</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="276"/>
|
||||
<source>SoundTouch</source>
|
||||
<extracomment>The name of the ThingClass ({f9b7a3f5-6353-48b1-afc1-66f914412f82})</extracomment>
|
||||
<translation>SoundTouch</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="279"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="282"/>
|
||||
<source>Source</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: source, ID: {f4684de8-ff5f-41f3-a5c3-f5e5754519d2})
|
||||
----------
|
||||
The name of the StateType ({f4684de8-ff5f-41f3-a5c3-f5e5754519d2}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Quelle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="285"/>
|
||||
<source>Source changed</source>
|
||||
<extracomment>The name of the EventType ({f4684de8-ff5f-41f3-a5c3-f5e5754519d2}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Quelle geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="288"/>
|
||||
<source>Stop</source>
|
||||
<extracomment>The name of the ActionType ({ae3cbe03-ee3e-410e-abbd-efabc2402198}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Stopp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="291"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="294"/>
|
||||
<source>Title</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: title, ID: {f2209fec-cceb-46ad-8189-4caf42166e6b})
|
||||
----------
|
||||
The name of the StateType ({f2209fec-cceb-46ad-8189-4caf42166e6b}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Titel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="297"/>
|
||||
<source>Title changed</source>
|
||||
<extracomment>The name of the EventType ({f2209fec-cceb-46ad-8189-4caf42166e6b}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Titel geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="300"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="303"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="306"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="309"/>
|
||||
<source>Volume</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: alert, ID: {8527bff6-811f-41f5-a098-e4b356e2463c})
|
||||
----------
|
||||
The name of the ParamType (ThingClass: soundtouch, ActionType: volume, ID: {9dfe5d78-4c3f-497c-bab1-bb9fdf7e93a9})
|
||||
----------
|
||||
The name of the ParamType (ThingClass: soundtouch, EventType: volume, ID: {9dfe5d78-4c3f-497c-bab1-bb9fdf7e93a9})
|
||||
----------
|
||||
The name of the StateType ({9dfe5d78-4c3f-497c-bab1-bb9fdf7e93a9}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Lautstärke</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="312"/>
|
||||
<source>Volume changed</source>
|
||||
<extracomment>The name of the EventType ({9dfe5d78-4c3f-497c-bab1-bb9fdf7e93a9}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Lautstärke geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="315"/>
|
||||
<source>connected changed</source>
|
||||
<extracomment>The name of the EventType ({09dfbd40-c97c-4a20-9ecd-f80e389a4864}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Verbunden geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="318"/>
|
||||
<source>playback status changed</source>
|
||||
<extracomment>The name of the EventType ({2dd512b7-40c2-488e-8d4f-6519edaa6f74}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Wiedergabastatus geändert</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="321"/>
|
||||
<source>set playback status</source>
|
||||
<extracomment>The name of the ActionType ({2dd512b7-40c2-488e-8d4f-6519edaa6f74}) of ThingClass soundtouch</extracomment>
|
||||
<translation>Setze Wiedergabestatus</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>IntegrationPluginBose</name>
|
||||
<message>
|
||||
<location filename="../integrationpluginbose.cpp" line="285"/>
|
||||
<source>No consumer key available.</source>
|
||||
<translation>Kein Consumer-Key verfügbar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginbose.cpp" line="295"/>
|
||||
<source>Sound URL is not valid.</source>
|
||||
<translation>Die Benachrichtigungston-URL ist ungültig.</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
@ -4,8 +4,14 @@
|
|||
<context>
|
||||
<name>Bose</name>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="88"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="91"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="96"/>
|
||||
<source>Alert</source>
|
||||
<extracomment>The name of the ActionType ({de24c5ec-1e36-4149-bfaa-71fb05264aa3}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="99"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="102"/>
|
||||
<source>Artist</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: artist, ID: {8cb920a3-3bf1-4231-92d4-8ac27e7b3d65})
|
||||
----------
|
||||
|
|
@ -13,14 +19,14 @@ The name of the StateType ({8cb920a3-3bf1-4231-92d4-8ac27e7b3d65}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="94"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="105"/>
|
||||
<source>Artist changed</source>
|
||||
<extracomment>The name of the EventType ({8cb920a3-3bf1-4231-92d4-8ac27e7b3d65}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="97"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="100"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="108"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="111"/>
|
||||
<source>Artwork</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: artwork, ID: {44304c82-c2f6-433b-b62b-815382617d0b})
|
||||
----------
|
||||
|
|
@ -28,15 +34,15 @@ The name of the StateType ({44304c82-c2f6-433b-b62b-815382617d0b}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="103"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="114"/>
|
||||
<source>Artwork changed</source>
|
||||
<extracomment>The name of the EventType ({44304c82-c2f6-433b-b62b-815382617d0b}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="106"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="109"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="112"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="117"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="120"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="123"/>
|
||||
<source>Bass</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: bass, ID: {91bc53ec-4f3b-438d-8e32-129b7c27aae4})
|
||||
----------
|
||||
|
|
@ -46,14 +52,14 @@ The name of the StateType ({91bc53ec-4f3b-438d-8e32-129b7c27aae4}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="115"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="126"/>
|
||||
<source>Bass changed</source>
|
||||
<extracomment>The name of the EventType ({91bc53ec-4f3b-438d-8e32-129b7c27aae4}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="118"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="121"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="129"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="132"/>
|
||||
<source>Bose</source>
|
||||
<extracomment>The name of the vendor ({433c45cd-5bc1-4239-a8a1-487c70ffdfc7})
|
||||
----------
|
||||
|
|
@ -61,8 +67,8 @@ The name of the plugin Bose ({472a3f24-b05c-49b3-ad9a-dfda608b6760})</extracomme
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="124"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="127"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="135"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="138"/>
|
||||
<source>Collection</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: collection, ID: {ce399eec-9f6a-4903-9916-0e90e38b255e})
|
||||
----------
|
||||
|
|
@ -70,14 +76,14 @@ The name of the StateType ({ce399eec-9f6a-4903-9916-0e90e38b255e}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="130"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="141"/>
|
||||
<source>Collection changed</source>
|
||||
<extracomment>The name of the EventType ({ce399eec-9f6a-4903-9916-0e90e38b255e}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="133"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="136"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="144"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="147"/>
|
||||
<source>Connected</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: connected, ID: {09dfbd40-c97c-4a20-9ecd-f80e389a4864})
|
||||
----------
|
||||
|
|
@ -85,15 +91,39 @@ The name of the StateType ({09dfbd40-c97c-4a20-9ecd-f80e389a4864}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="139"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="150"/>
|
||||
<source>Custom consumer key</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: bose, Type: plugin, ID: {a5fcebca-b37d-4c14-ba22-1e5f1dd377e7})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="153"/>
|
||||
<source>Custom consumer secret</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: bose, Type: plugin, ID: {2c41fcc1-b28f-4f7e-9a8c-74972c60d22f})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="156"/>
|
||||
<source>Display message</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: alert, ID: {346e1544-16fa-49a1-85ac-6be657c737d8})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="159"/>
|
||||
<source>Doorbell sound url</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: bose, Type: plugin, ID: {82883f9b-4397-404a-9126-4e9d5a22e6c6})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="162"/>
|
||||
<source>IP</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, Type: thing, ID: {1a897065-57c6-49b3-bac9-1e5db27859e5})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="142"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="145"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="148"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="165"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="168"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="171"/>
|
||||
<source>Mute</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: mute, ID: {bc98cdb0-4d0e-48ca-afc7-922e49bb7813})
|
||||
----------
|
||||
|
|
@ -103,27 +133,33 @@ The name of the StateType ({bc98cdb0-4d0e-48ca-afc7-922e49bb7813}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="151"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="174"/>
|
||||
<source>Mute changed</source>
|
||||
<extracomment>The name of the EventType ({bc98cdb0-4d0e-48ca-afc7-922e49bb7813}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="154"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="177"/>
|
||||
<source>Notification sound url</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: bose, Type: plugin, ID: {8717d14e-c3d5-44a7-b658-4826dd4013c2})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="180"/>
|
||||
<source>Pause</source>
|
||||
<extracomment>The name of the ActionType ({3cf341cb-fe63-40bc-a450-9678d18e91e3}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="157"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="183"/>
|
||||
<source>Play</source>
|
||||
<extracomment>The name of the ActionType ({4d2ee668-a2e3-4795-8b96-0c800b703b46}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="160"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="163"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="166"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="186"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="189"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="192"/>
|
||||
<source>Playback status</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: playbackStatus, ID: {2dd512b7-40c2-488e-8d4f-6519edaa6f74})
|
||||
----------
|
||||
|
|
@ -133,33 +169,33 @@ The name of the StateType ({2dd512b7-40c2-488e-8d4f-6519edaa6f74}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="169"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="195"/>
|
||||
<source>Player ID</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, Type: thing, ID: {3eb95eef-e8ba-4d44-8a21-7d8038b74c4d})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="172"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="198"/>
|
||||
<source>Player pause</source>
|
||||
<extracomment>The name of the EventType ({99498b1c-e9c0-480a-9e91-662ee79ba976}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="175"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="201"/>
|
||||
<source>Player play</source>
|
||||
<extracomment>The name of the EventType ({2535a1eb-7643-4874-98f6-b027fdff6311}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="178"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="204"/>
|
||||
<source>Player stop</source>
|
||||
<extracomment>The name of the EventType ({a02ce255-3abb-435d-a92e-7f99c952ecb2}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="181"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="184"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="187"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="207"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="210"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="213"/>
|
||||
<source>Power</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: power, ID: {5bac4ad7-f55c-4301-8d72-f2783d9909ff})
|
||||
----------
|
||||
|
|
@ -169,21 +205,21 @@ The name of the StateType ({5bac4ad7-f55c-4301-8d72-f2783d9909ff}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="190"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="216"/>
|
||||
<source>Power changed</source>
|
||||
<extracomment>The name of the EventType ({5bac4ad7-f55c-4301-8d72-f2783d9909ff}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="193"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="219"/>
|
||||
<source>Preset number</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: savePreset, ID: {04ac6e10-922d-4774-861f-060897d3a6c0})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="196"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="199"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="202"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="222"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="225"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="228"/>
|
||||
<source>Repeat</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: repeat, ID: {bc02c28e-3f5d-4de4-b9b5-c0b1576c6e7e})
|
||||
----------
|
||||
|
|
@ -193,57 +229,57 @@ The name of the StateType ({bc02c28e-3f5d-4de4-b9b5-c0b1576c6e7e}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="205"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="231"/>
|
||||
<source>Repeat changed</source>
|
||||
<extracomment>The name of the EventType ({bc02c28e-3f5d-4de4-b9b5-c0b1576c6e7e}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="208"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="234"/>
|
||||
<source>Save preset</source>
|
||||
<extracomment>The name of the ActionType ({6c47e736-e2e0-47d4-9b96-7f56d2342b4d}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="211"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="237"/>
|
||||
<source>Set bass</source>
|
||||
<extracomment>The name of the ActionType ({91bc53ec-4f3b-438d-8e32-129b7c27aae4}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="214"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="240"/>
|
||||
<source>Set mute</source>
|
||||
<extracomment>The name of the ActionType ({bc98cdb0-4d0e-48ca-afc7-922e49bb7813}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="217"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="243"/>
|
||||
<source>Set power</source>
|
||||
<extracomment>The name of the ActionType ({5bac4ad7-f55c-4301-8d72-f2783d9909ff}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="220"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="246"/>
|
||||
<source>Set repeat</source>
|
||||
<extracomment>The name of the ActionType ({bc02c28e-3f5d-4de4-b9b5-c0b1576c6e7e}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="223"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="249"/>
|
||||
<source>Set shuffle</source>
|
||||
<extracomment>The name of the ActionType ({5913aa2a-629d-4de5-bf44-a4a1f130c118}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="226"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="252"/>
|
||||
<source>Set volume</source>
|
||||
<extracomment>The name of the ActionType ({9dfe5d78-4c3f-497c-bab1-bb9fdf7e93a9}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="229"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="232"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="235"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="255"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="258"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="261"/>
|
||||
<source>Shuffle</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: shuffle, ID: {5913aa2a-629d-4de5-bf44-a4a1f130c118})
|
||||
----------
|
||||
|
|
@ -253,32 +289,38 @@ The name of the StateType ({5913aa2a-629d-4de5-bf44-a4a1f130c118}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="238"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="264"/>
|
||||
<source>Shuffle changed</source>
|
||||
<extracomment>The name of the EventType ({5913aa2a-629d-4de5-bf44-a4a1f130c118}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="241"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="267"/>
|
||||
<source>Skip Next</source>
|
||||
<extracomment>The name of the ActionType ({85d7126a-b123-4a28-aeb4-d84bcfb4d14f}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="244"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="270"/>
|
||||
<source>Skip back</source>
|
||||
<extracomment>The name of the ActionType ({a180807d-1265-4831-9d86-a421767418dd}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="247"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="273"/>
|
||||
<source>Sound</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: alert, ID: {4c13007a-82e6-484f-959a-bf3731c18768})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="276"/>
|
||||
<source>SoundTouch</source>
|
||||
<extracomment>The name of the ThingClass ({f9b7a3f5-6353-48b1-afc1-66f914412f82})</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="250"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="253"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="279"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="282"/>
|
||||
<source>Source</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: source, ID: {f4684de8-ff5f-41f3-a5c3-f5e5754519d2})
|
||||
----------
|
||||
|
|
@ -286,20 +328,20 @@ The name of the StateType ({f4684de8-ff5f-41f3-a5c3-f5e5754519d2}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="256"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="285"/>
|
||||
<source>Source changed</source>
|
||||
<extracomment>The name of the EventType ({f4684de8-ff5f-41f3-a5c3-f5e5754519d2}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="259"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="288"/>
|
||||
<source>Stop</source>
|
||||
<extracomment>The name of the ActionType ({ae3cbe03-ee3e-410e-abbd-efabc2402198}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="262"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="265"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="291"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="294"/>
|
||||
<source>Title</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, EventType: title, ID: {f2209fec-cceb-46ad-8189-4caf42166e6b})
|
||||
----------
|
||||
|
|
@ -307,17 +349,20 @@ The name of the StateType ({f2209fec-cceb-46ad-8189-4caf42166e6b}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="268"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="297"/>
|
||||
<source>Title changed</source>
|
||||
<extracomment>The name of the EventType ({f2209fec-cceb-46ad-8189-4caf42166e6b}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="271"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="274"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="277"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="300"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="303"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="306"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="309"/>
|
||||
<source>Volume</source>
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: volume, ID: {9dfe5d78-4c3f-497c-bab1-bb9fdf7e93a9})
|
||||
<extracomment>The name of the ParamType (ThingClass: soundtouch, ActionType: alert, ID: {8527bff6-811f-41f5-a098-e4b356e2463c})
|
||||
----------
|
||||
The name of the ParamType (ThingClass: soundtouch, ActionType: volume, ID: {9dfe5d78-4c3f-497c-bab1-bb9fdf7e93a9})
|
||||
----------
|
||||
The name of the ParamType (ThingClass: soundtouch, EventType: volume, ID: {9dfe5d78-4c3f-497c-bab1-bb9fdf7e93a9})
|
||||
----------
|
||||
|
|
@ -325,28 +370,41 @@ The name of the StateType ({9dfe5d78-4c3f-497c-bab1-bb9fdf7e93a9}) of ThingClass
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="280"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="312"/>
|
||||
<source>Volume changed</source>
|
||||
<extracomment>The name of the EventType ({9dfe5d78-4c3f-497c-bab1-bb9fdf7e93a9}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="283"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="315"/>
|
||||
<source>connected changed</source>
|
||||
<extracomment>The name of the EventType ({09dfbd40-c97c-4a20-9ecd-f80e389a4864}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="286"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="318"/>
|
||||
<source>playback status changed</source>
|
||||
<extracomment>The name of the EventType ({2dd512b7-40c2-488e-8d4f-6519edaa6f74}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="289"/>
|
||||
<location filename="../../../build-nymea-plugins-Desktop-Debug/bose/plugininfo.h" line="321"/>
|
||||
<source>set playback status</source>
|
||||
<extracomment>The name of the ActionType ({2dd512b7-40c2-488e-8d4f-6519edaa6f74}) of ThingClass soundtouch</extracomment>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>IntegrationPluginBose</name>
|
||||
<message>
|
||||
<location filename="../integrationpluginbose.cpp" line="285"/>
|
||||
<source>No consumer key available.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../integrationpluginbose.cpp" line="295"/>
|
||||
<source>Sound URL is not valid.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
||||
|
|
|
|||
Loading…
Reference in New Issue