summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorville <ville@e10066b5-e1e2-0310-b819-94efdf66514b>2006-01-21 14:07:01 +0000
committerville <ville@e10066b5-e1e2-0310-b819-94efdf66514b>2006-01-21 14:07:01 +0000
commit94616487ec9f75e43cfed28466fb8328d0890ab4 (patch)
treeb98e36797d93d8da7dc5c182f51a3a528803a645
parent8f13a59dacd1e878bd66016f990b0e82fb171d92 (diff)
downloadvdr-plugin-muggle-94616487ec9f75e43cfed28466fb8328d0890ab4.tar.gz
vdr-plugin-muggle-94616487ec9f75e43cfed28466fb8328d0890ab4.tar.bz2
Fix button translations with VDR >= 1.3.38.
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@908 e10066b5-e1e2-0310-b819-94efdf66514b
-rw-r--r--vdr_actions.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vdr_actions.c b/vdr_actions.c
index a150a15..a274038 100644
--- a/vdr_actions.c
+++ b/vdr_actions.c
@@ -602,7 +602,7 @@ class mgEditOrder : public mgCommand
bool Enabled(mgActions on) { return true; }
eOSState Process(eKeys key);
bool Execute () { osd ()->newmenu = new mgMenuOrder; return true; }
- const char *ButtonName() { return tr("Edit"); }
+ const char *ButtonName() { return tr("Button$Edit"); }
};
eOSState
@@ -639,7 +639,7 @@ class mgDeleteOrder : public mgCommand
public:
bool Enabled(mgActions on) { return true; }
bool Execute ();
- const char *ButtonName() { return tr("Delete"); }
+ const char *ButtonName() { return tr("Button$Delete"); }
};
bool
@@ -1182,7 +1182,7 @@ class mgDeleteCollection:public mgCommand
bool Enabled(mgActions on);
const char *ButtonName ()
{
- return tr ("Delete");
+ return tr ("Button$Delete");
}
const char *MenuName (const unsigned int idx,const mgListItem* item);
};