mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The Setup/CAM menu now displays which device an individual CAM is currently assigned to
This commit is contained in:
parent
eb7816259c
commit
cc306290da
@ -3003,6 +3003,8 @@ Frank Neumann <fnu@yavdr.org>
|
|||||||
for reporting a problem with tuning timeouts when using SCR with multiple tuners
|
for reporting a problem with tuning timeouts when using SCR with multiple tuners
|
||||||
for fixing the German translation of "VDR will shut down in %s minutes"
|
for fixing the German translation of "VDR will shut down in %s minutes"
|
||||||
for adding support for "Satellite Channel Routing" (SCR) according to EN50607 ("JESS")
|
for adding support for "Satellite Channel Routing" (SCR) according to EN50607 ("JESS")
|
||||||
|
for suggesting to make the Setup/CAM menu display which device an individual CAM
|
||||||
|
is currently assigned to
|
||||||
|
|
||||||
Gerald Dachs <vdr@dachsweb.de>
|
Gerald Dachs <vdr@dachsweb.de>
|
||||||
for reporting a problem with checking for minimum line length of 21 characters in
|
for reporting a problem with checking for minimum line length of 21 characters in
|
||||||
|
4
HISTORY
4
HISTORY
@ -8596,10 +8596,12 @@ Video Disk Recorder Revision History
|
|||||||
- Bumped all version numbers to 2.2.0.
|
- Bumped all version numbers to 2.2.0.
|
||||||
- Official release.
|
- Official release.
|
||||||
|
|
||||||
2015-03-08: Version 2.3.1
|
2015-03-09: Version 2.3.1
|
||||||
|
|
||||||
- The new function cOsd::MaxPixmapSize() can be called to determine the maximum size
|
- The new function cOsd::MaxPixmapSize() can be called to determine the maximum size
|
||||||
a cPixmap may have on the current OSD. The 'osddemo' example has been modified
|
a cPixmap may have on the current OSD. The 'osddemo' example has been modified
|
||||||
accordingly. Plugin authors may want to use this function in case they use pixmaps
|
accordingly. Plugin authors may want to use this function in case they use pixmaps
|
||||||
that are larger than the full OSD size. The default implementation sets this limit
|
that are larger than the full OSD size. The default implementation sets this limit
|
||||||
to 2048x2048 pixel.
|
to 2048x2048 pixel.
|
||||||
|
- The Setup/CAM menu now displays which device an individual CAM is currently
|
||||||
|
assigned to (suggested by Frank Neumann).
|
||||||
|
7
menu.c
7
menu.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: menu.c 3.48 2015/02/10 12:37:06 kls Exp $
|
* $Id: menu.c 4.1 2015/03/09 11:50:26 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -3507,6 +3507,7 @@ cMenuSetupCAMItem::cMenuSetupCAMItem(cCamSlot *CamSlot)
|
|||||||
|
|
||||||
bool cMenuSetupCAMItem::Changed(void)
|
bool cMenuSetupCAMItem::Changed(void)
|
||||||
{
|
{
|
||||||
|
cString AssignedDevice("");
|
||||||
const char *Activating = "";
|
const char *Activating = "";
|
||||||
const char *CamName = camSlot->GetCamName();
|
const char *CamName = camSlot->GetCamName();
|
||||||
if (!CamName) {
|
if (!CamName) {
|
||||||
@ -3520,7 +3521,9 @@ bool cMenuSetupCAMItem::Changed(void)
|
|||||||
else if (camSlot->IsActivating())
|
else if (camSlot->IsActivating())
|
||||||
// TRANSLATORS: note the leading blank!
|
// TRANSLATORS: note the leading blank!
|
||||||
Activating = tr(" (activating)");
|
Activating = tr(" (activating)");
|
||||||
cString buffer = cString::sprintf(" %d %s%s", camSlot->SlotNumber(), CamName, Activating);
|
if (cDevice *Device = camSlot->Device())
|
||||||
|
AssignedDevice = cString::sprintf(" %s %d", tr("@ device"), Device->CardIndex() + 1);
|
||||||
|
cString buffer = cString::sprintf(" %d %s%s%s", camSlot->SlotNumber(), CamName, *AssignedDevice, Activating);
|
||||||
if (strcmp(buffer, Text()) != 0) {
|
if (strcmp(buffer, Text()) != 0) {
|
||||||
SetText(buffer);
|
SetText(buffer);
|
||||||
return true;
|
return true;
|
||||||
|
5
po/ar.po
5
po/ar.po
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2008-10-16 11:16-0400\n"
|
"PO-Revision-Date: 2008-10-16 11:16-0400\n"
|
||||||
"Last-Translator: Osama Alrawab <alrawab@hotmail.com>\n"
|
"Last-Translator: Osama Alrawab <alrawab@hotmail.com>\n"
|
||||||
"Language-Team: Arabic <ar@li.org>\n"
|
"Language-Team: Arabic <ar@li.org>\n"
|
||||||
@ -1122,6 +1122,9 @@ msgstr "الكامة جاهزة"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "الكامة"
|
msgstr "الكامة"
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
|
"PO-Revision-Date: 2008-03-02 19:02+0100\n"
|
||||||
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
|
"Last-Translator: Luca Olivetti <luca@ventoso.org>\n"
|
||||||
"Language-Team: Catalan <vdr@linuxtv.org>\n"
|
"Language-Team: Catalan <vdr@linuxtv.org>\n"
|
||||||
@ -1121,6 +1121,9 @@ msgstr "CAM preparat"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2010-05-06 11:00+0200\n"
|
"PO-Revision-Date: 2010-05-06 11:00+0200\n"
|
||||||
"Last-Translator: Aleš Juřík <ajurik@quick.cz>\n"
|
"Last-Translator: Aleš Juřík <ajurik@quick.cz>\n"
|
||||||
"Language-Team: Czech <vdr@linuxtv.org>\n"
|
"Language-Team: Czech <vdr@linuxtv.org>\n"
|
||||||
@ -1121,6 +1121,9 @@ msgstr "CAM připraven"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (aktivuji)"
|
msgstr " (aktivuji)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||||
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
|
"Last-Translator: Mogens Elneff <mogens@elneff.dk>\n"
|
||||||
"Language-Team: Danish <vdr@linuxtv.org>\n"
|
"Language-Team: Danish <vdr@linuxtv.org>\n"
|
||||||
@ -1118,6 +1118,9 @@ msgstr "CAM klar"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-10 13:45+0100\n"
|
"PO-Revision-Date: 2015-02-10 13:45+0100\n"
|
||||||
"Last-Translator: Klaus Schmidinger <vdr@tvdr.de>\n"
|
"Last-Translator: Klaus Schmidinger <vdr@tvdr.de>\n"
|
||||||
"Language-Team: German <vdr@linuxtv.org>\n"
|
"Language-Team: German <vdr@linuxtv.org>\n"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "CAM bereit"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (wird aktiviert)"
|
msgstr " (wird aktiviert)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr "@ Empfänger"
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||||
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
|
"Last-Translator: Dimitrios Dimitrakos <mail@dimitrios.de>\n"
|
||||||
"Language-Team: Greek <vdr@linuxtv.org>\n"
|
"Language-Team: Greek <vdr@linuxtv.org>\n"
|
||||||
@ -1118,6 +1118,9 @@ msgstr ""
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-19 23:00+0100\n"
|
"PO-Revision-Date: 2015-02-19 23:00+0100\n"
|
||||||
"Last-Translator: Gabriel Bonich <gbonich@gmail.com>\n"
|
"Last-Translator: Gabriel Bonich <gbonich@gmail.com>\n"
|
||||||
"Language-Team: Spanish <vdr@linuxtv.org>\n"
|
"Language-Team: Spanish <vdr@linuxtv.org>\n"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "CAM preparado"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (activando)"
|
msgstr " (activando)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||||
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
|
"Last-Translator: Arthur Konovalov <artlov@gmail.com>\n"
|
||||||
"Language-Team: Estonian <vdr@linuxtv.org>\n"
|
"Language-Team: Estonian <vdr@linuxtv.org>\n"
|
||||||
@ -1118,6 +1118,9 @@ msgstr "CAM töövalmis"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (aktiveerimine)"
|
msgstr " (aktiveerimine)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2007-08-15 15:52+0200\n"
|
"PO-Revision-Date: 2007-08-15 15:52+0200\n"
|
||||||
"Last-Translator: Matti Lehtimäki <matti.lehtimaki@gmail.com>\n"
|
"Last-Translator: Matti Lehtimäki <matti.lehtimaki@gmail.com>\n"
|
||||||
"Language-Team: Finnish <vdr@linuxtv.org>\n"
|
"Language-Team: Finnish <vdr@linuxtv.org>\n"
|
||||||
@ -1122,6 +1122,9 @@ msgstr "CAM valmis"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (aktivoidaan)"
|
msgstr " (aktivoidaan)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-11 11:02+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-18 20:16+0100\n"
|
"PO-Revision-Date: 2015-02-18 20:16+0100\n"
|
||||||
"Last-Translator: Bernard Jaulin <bernard.jaulin@gmail.com>\n"
|
"Last-Translator: Bernard Jaulin <bernard.jaulin@gmail.com>\n"
|
||||||
"Language-Team: French <vdr@linuxtv.org>\n"
|
"Language-Team: French <vdr@linuxtv.org>\n"
|
||||||
@ -1129,6 +1129,9 @@ msgstr "CAM prêt"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (activation en cours)"
|
msgstr " (activation en cours)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2008-03-17 19:00+0100\n"
|
"PO-Revision-Date: 2008-03-17 19:00+0100\n"
|
||||||
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
|
"Last-Translator: Adrian Caval <anrxc@sysphere.org>\n"
|
||||||
"Language-Team: Croatian <vdr@linuxtv.org>\n"
|
"Language-Team: Croatian <vdr@linuxtv.org>\n"
|
||||||
@ -1120,6 +1120,9 @@ msgstr "CAM spreman"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-01-30 13:14+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-13 09:36+0200\n"
|
"PO-Revision-Date: 2015-02-13 09:36+0200\n"
|
||||||
"Last-Translator: István Füley <ifuley@tigercomp.ro>\n"
|
"Last-Translator: István Füley <ifuley@tigercomp.ro>\n"
|
||||||
"Language-Team: Hungarian <vdr@linuxtv.org>\n"
|
"Language-Team: Hungarian <vdr@linuxtv.org>\n"
|
||||||
@ -1123,6 +1123,9 @@ msgstr "CAM működik"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (aktiválás)"
|
msgstr " (aktiválás)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-12 19:31+0100\n"
|
"PO-Revision-Date: 2015-02-12 19:31+0100\n"
|
||||||
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
||||||
"Language-Team: Italian <vdr@linuxtv.org>\n"
|
"Language-Team: Italian <vdr@linuxtv.org>\n"
|
||||||
@ -1124,6 +1124,9 @@ msgstr "La CAM è pronta"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (attivazione)"
|
msgstr " (attivazione)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "Accesso condizionato CAM"
|
msgstr "Accesso condizionato CAM"
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-11 14:02+0200\n"
|
"PO-Revision-Date: 2015-02-11 14:02+0200\n"
|
||||||
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
|
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
|
||||||
"Language-Team: Lithuanian <vdr@linuxtv.org>\n"
|
"Language-Team: Lithuanian <vdr@linuxtv.org>\n"
|
||||||
@ -1118,6 +1118,9 @@ msgstr "Dekodavimo modulis (CAM) paruoštas darbui"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (aktyvuojama)"
|
msgstr " (aktyvuojama)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "Dekodavimo modulis (CAM)"
|
msgstr "Dekodavimo modulis (CAM)"
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-08 15:18+0100\n"
|
"PO-Revision-Date: 2015-02-08 15:18+0100\n"
|
||||||
"Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n"
|
"Last-Translator: Dimitar Petrovski <dimeptr@gmail.com>\n"
|
||||||
"Language-Team: Macedonian <en@li.org>\n"
|
"Language-Team: Macedonian <en@li.org>\n"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "CAM спремен"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (активирање)"
|
msgstr " (активирање)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-11 10:51+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-10 19:43+0100\n"
|
"PO-Revision-Date: 2015-02-10 19:43+0100\n"
|
||||||
"Last-Translator: Erik Oomen <oomen.e@gmail.com>\n"
|
"Last-Translator: Erik Oomen <oomen.e@gmail.com>\n"
|
||||||
"Language-Team: Dutch <vdr@linuxtv.org>\n"
|
"Language-Team: Dutch <vdr@linuxtv.org>\n"
|
||||||
@ -1124,6 +1124,9 @@ msgstr "CAM gereed"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (Activeren)"
|
msgstr " (Activeren)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
"PO-Revision-Date: 2007-08-12 14:17+0200\n"
|
||||||
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
|
"Last-Translator: Truls Slevigen <truls@slevigen.no>\n"
|
||||||
"Language-Team: Norwegian Nynorsk <vdr@linuxtv.org>\n"
|
"Language-Team: Norwegian Nynorsk <vdr@linuxtv.org>\n"
|
||||||
@ -1119,6 +1119,9 @@ msgstr ""
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-12 00:59+0100\n"
|
"PO-Revision-Date: 2015-02-12 00:59+0100\n"
|
||||||
"Last-Translator: Tomasz Maciej Nowak <tmn505@gmail.com>\n"
|
"Last-Translator: Tomasz Maciej Nowak <tmn505@gmail.com>\n"
|
||||||
"Language-Team: Polish <vdr@linuxtv.org>\n"
|
"Language-Team: Polish <vdr@linuxtv.org>\n"
|
||||||
@ -1121,6 +1121,9 @@ msgstr "CAM gotowy"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (aktywujê)"
|
msgstr " (aktywujê)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2010-03-28 22:49+0100\n"
|
"PO-Revision-Date: 2010-03-28 22:49+0100\n"
|
||||||
"Last-Translator: Cris Silva <hudokkow@gmail.com>\n"
|
"Last-Translator: Cris Silva <hudokkow@gmail.com>\n"
|
||||||
"Language-Team: Portuguese <vdr@linuxtv.org>\n"
|
"Language-Team: Portuguese <vdr@linuxtv.org>\n"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "CAM pronta"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-11 22:26+0100\n"
|
"PO-Revision-Date: 2015-02-11 22:26+0100\n"
|
||||||
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
|
"Last-Translator: Lucian Muresan <lucianm@users.sourceforge.net>\n"
|
||||||
"Language-Team: Romanian <vdr@linuxtv.org>\n"
|
"Language-Team: Romanian <vdr@linuxtv.org>\n"
|
||||||
@ -1120,6 +1120,9 @@ msgstr "CAM pregătit"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (activez)"
|
msgstr " (activez)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2013-03-10 17:13+0100\n"
|
"PO-Revision-Date: 2013-03-10 17:13+0100\n"
|
||||||
"Last-Translator: Oleg Roitburd <oroitburd@gmail.com>\n"
|
"Last-Translator: Oleg Roitburd <oroitburd@gmail.com>\n"
|
||||||
"Language-Team: Russian <vdr@linuxtv.org>\n"
|
"Language-Team: Russian <vdr@linuxtv.org>\n"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "CAM
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "ÃáÛÞÒÝëÙ ÔÞáâãß"
|
msgstr "ÃáÛÞÒÝëÙ ÔÞáâãß"
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-17 18:59+0100\n"
|
"PO-Revision-Date: 2015-02-17 18:59+0100\n"
|
||||||
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
|
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
|
||||||
"Language-Team: Slovak <vdr@linuxtv.org>\n"
|
"Language-Team: Slovak <vdr@linuxtv.org>\n"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "CAM pripraven
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (aktivované)"
|
msgstr " (aktivované)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM (modul podmieneného prístupu)"
|
msgstr "CAM (modul podmieneného prístupu)"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2013-03-04 12:46+0100\n"
|
"PO-Revision-Date: 2013-03-04 12:46+0100\n"
|
||||||
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
|
"Last-Translator: Matjaz Thaler <matjaz.thaler@guest.arnes.si>\n"
|
||||||
"Language-Team: Slovenian <vdr@linuxtv.org>\n"
|
"Language-Team: Slovenian <vdr@linuxtv.org>\n"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "CAM pripravljen"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2013-03-16 15:05+0100\n"
|
"PO-Revision-Date: 2013-03-16 15:05+0100\n"
|
||||||
"Last-Translator: Zoran Turalija <zoran.turalija@gmail.com>\n"
|
"Last-Translator: Zoran Turalija <zoran.turalija@gmail.com>\n"
|
||||||
"Language-Team: Serbian <vdr@linuxtv.org>\n"
|
"Language-Team: Serbian <vdr@linuxtv.org>\n"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "CAM spreman"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-12 21:58+0100\n"
|
"PO-Revision-Date: 2015-02-12 21:58+0100\n"
|
||||||
"Last-Translator: Magnus Sirviö <sirwio@hotmail.com>\n"
|
"Last-Translator: Magnus Sirviö <sirwio@hotmail.com>\n"
|
||||||
"Language-Team: Swedish <vdr@linuxtv.org>\n"
|
"Language-Team: Swedish <vdr@linuxtv.org>\n"
|
||||||
@ -1123,6 +1123,9 @@ msgstr "CAM klar"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (aktiverar)"
|
msgstr " (aktiverar)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2008-02-28 00:33+0100\n"
|
"PO-Revision-Date: 2008-02-28 00:33+0100\n"
|
||||||
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
|
"Last-Translator: Oktay Yolgeçen <oktay_73@yahoo.de>\n"
|
||||||
"Language-Team: Turkish <vdr@linuxtv.org>\n"
|
"Language-Team: Turkish <vdr@linuxtv.org>\n"
|
||||||
@ -1118,6 +1118,9 @@ msgstr "CAM haz
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM"
|
msgstr "CAM"
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2015-02-13 18:14+0100\n"
|
"PO-Revision-Date: 2015-02-13 18:14+0100\n"
|
||||||
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
|
"Last-Translator: Yarema aka Knedlyk <yupadmin@gmail.com>\n"
|
||||||
"Language-Team: Ukrainian <vdr@linuxtv.org>\n"
|
"Language-Team: Ukrainian <vdr@linuxtv.org>\n"
|
||||||
@ -1119,6 +1119,9 @@ msgstr "CAM готовий"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr " (активування)"
|
msgstr " (активування)"
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM (Умовний доступ)"
|
msgstr "CAM (Умовний доступ)"
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: VDR 2.2.0\n"
|
"Project-Id-Version: VDR 2.2.0\n"
|
||||||
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
"Report-Msgid-Bugs-To: <vdr-bugs@tvdr.de>\n"
|
||||||
"POT-Creation-Date: 2015-02-10 13:40+0100\n"
|
"POT-Creation-Date: 2015-03-09 12:50+0100\n"
|
||||||
"PO-Revision-Date: 2013-03-04 14:52+0800\n"
|
"PO-Revision-Date: 2013-03-04 14:52+0800\n"
|
||||||
"Last-Translator: NFVDR <nfvdr@live.com>\n"
|
"Last-Translator: NFVDR <nfvdr@live.com>\n"
|
||||||
"Language-Team: Chinese (simplified) <nfvdr@live.com>\n"
|
"Language-Team: Chinese (simplified) <nfvdr@live.com>\n"
|
||||||
@ -1120,6 +1120,9 @@ msgstr "CAM准备"
|
|||||||
msgid " (activating)"
|
msgid " (activating)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "@ device"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "CAM"
|
msgid "CAM"
|
||||||
msgstr "CAM设置"
|
msgstr "CAM设置"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user