diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-11-11 10:39:27 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-11-11 10:39:27 +0100 |
commit | b668b2d013cdd79ace08f9e89817cc631ef555d0 (patch) | |
tree | b889a7d910cfa36978a92e162d91177f91c7466d /osd.c | |
parent | 1d828252b6f6f3af4f3f718f8cf1e8d67c4678ea (diff) | |
download | vdr-b668b2d013cdd79ace08f9e89817cc631ef555d0.tar.gz vdr-b668b2d013cdd79ace08f9e89817cc631ef555d0.tar.bz2 |
Implemented internationalization
Diffstat (limited to 'osd.c')
-rw-r--r-- | osd.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,12 +4,13 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osd.c 1.11 2000/11/01 11:21:51 kls Exp $ + * $Id: osd.c 1.12 2000/11/10 16:18:38 kls Exp $ */ #include "osd.h" #include <assert.h> #include <string.h> +#include "i18n.h" // --- cOsdItem -------------------------------------------------------------- @@ -248,7 +249,7 @@ void cOsdMenu::Mark(void) { if (Count() && marked < 0) { marked = current; - SetStatus("Up/Dn for new location - OK to move"); + SetStatus(tr("Up/Dn for new location - OK to move")); } } |