diff options
author | woro <woro@e10066b5-e1e2-0310-b819-94efdf66514b> | 2008-02-12 09:31:40 +0000 |
---|---|---|
committer | woro <woro@e10066b5-e1e2-0310-b819-94efdf66514b> | 2008-02-12 09:31:40 +0000 |
commit | e6f6f469a43e72bed319c3d88f4c1420509532fb (patch) | |
tree | a47cdef04708f5e9248b0e450d47403bfdd09284 | |
parent | c66d8709dd31b9aa3850560a9104626c213809e0 (diff) | |
download | vdr-plugin-muggle-e6f6f469a43e72bed319c3d88f4c1420509532fb.tar.gz vdr-plugin-muggle-e6f6f469a43e72bed319c3d88f4c1420509532fb.tar.bz2 |
do not translate 2 error messages pointing to programming error
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@1024 e10066b5-e1e2-0310-b819-94efdf66514b
-rw-r--r-- | vdr_player.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vdr_player.c b/vdr_player.c index 9a87244..114e5f5 100644 --- a/vdr_player.c +++ b/vdr_player.c @@ -1667,7 +1667,7 @@ eOSState mgPlayerControl::ProcessKey (eKeys key) break; default: { - s = tr ("Unknown loop mode"); + s = "Unknown loop mode"; } } #if VDRVERSNUM >= 10307 @@ -1713,7 +1713,7 @@ eOSState mgPlayerControl::ProcessKey (eKeys key) break; default: { - s = tr ("Unknown shuffle mode"); + s = "Unknown shuffle mode"; } } #if VDRVERSNUM >= 10307 |