1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Added status message "Resetting CAM..." for an immediate feedback when the CAM reset has been triggered

This commit is contained in:
Klaus Schmidinger 2005-10-02 10:20:19 +02:00
parent 23aa374e3d
commit 8302d81af2
4 changed files with 37 additions and 12 deletions

View File

@ -3869,3 +3869,5 @@ Video Disk Recorder Revision History
- Fixed setting current menu item if the first one is non-selectable.
- cOsdItem::cOsdItem() now has a 'Selectable' parameter.
- Improved displaying 'sub-title' and 'bottom text' in the CAM menu.
- Added status message "Resetting CAM..." for an immediate feedback when the CAM
reset has been triggered.

37
i18n.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: i18n.c 1.210 2005/09/25 11:57:04 kls Exp $
* $Id: i18n.c 1.211 2005/10/02 10:17:41 kls Exp $
*
* Translations provided by:
*
@ -2294,6 +2294,27 @@ const tI18nPhrase Phrases[] = {
"Ei saa avada CAM menüüd!",
"Kan ikke åbne CAM menuen!",
},
{ "Resetting CAM...",
"CAM wird zurückgesetzt...",
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
"",//TODO
},
{ "Can't reset CAM!",
"CAM-Reset fehlgeschlagen!",
"Ne morem resetirati CAM-a",
@ -2316,23 +2337,23 @@ const tI18nPhrase Phrases[] = {
"Kan ikke nulstille CAM!",
},
{ "CAM has been reset",
"CAM wurde zurückgesetzt!",
"CAM je resetiran!",
"Modulo CAM reimpostato!",
"CAM is herstart!",
"CAM wurde zurückgesetzt",
"CAM je resetiran",
"Modulo CAM reimpostato",
"CAM is herstart",
"",//TODO
"La CAM a été réinitialisée",
"",//TODO
"Salausmoduuli alustettu",
"CAM-Reset wykonany!",
"CAM-Reset wykonany",
"CAM reiniciada",
"Óôï CAM Ýãéíå åðáíáöïñÜ",
"CA modulen har återställts",
"CAM-ul a fost resetat",
"A CAM vissza lett állítva",
"CAM reiniciada",
"CAM-ÜÞÔãÛì ßÕàÕ×ÐßãéÕÝ!",
"CAM je resetiran!",
"CAM-ÜÞÔãÛì ßÕàÕ×ÐßãéÕÝ",
"CAM je resetiran",
"CAM mooduli taaskäivitus tehtud",
"CAM er blevet nulstillet",
},

3
menu.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: menu.c 1.365 2005/10/02 09:59:30 kls Exp $
* $Id: menu.c 1.366 2005/10/02 10:08:57 kls Exp $
*/
#include "menu.h"
@ -2180,6 +2180,7 @@ eOSState cMenuSetupCICAM::Reset(void)
{
cMenuSetupCICAMItem *item = (cMenuSetupCICAMItem *)Get(Current());
if (item) {
Skins.Message(mtWarning, tr("Resetting CAM..."));
if (item->CiHandler()->Reset(item->Slot())) {
Skins.Message(mtInfo, tr("CAM has been reset"));
return osEnd;

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: skins.c 1.4 2005/01/14 13:07:19 kls Exp $
* $Id: skins.c 1.5 2005/10/02 10:12:10 kls Exp $
*/
#include "skins.h"
@ -169,8 +169,9 @@ bool cSkins::SetCurrent(const char *Name)
eKeys cSkins::Message(eMessageType Type, const char *s, int Seconds)
{
switch (Type) {
case mtInfo: isyslog("info: %s", s); break;
case mtError: esyslog("ERROR: %s", s); break;
case mtInfo: isyslog("info: %s", s); break;
case mtWarning: isyslog("warning: %s", s); break;
case mtError: esyslog("ERROR: %s", s); break;
default: ;
}
if (!Current())