diff options
author | Andreas Brachold <vdr07@deltab.de> | 2007-08-22 09:27:33 +0000 |
---|---|---|
committer | Andreas Brachold <vdr07@deltab.de> | 2007-08-22 09:27:33 +0000 |
commit | f9472b1e58f206defb77c5caf55fcef1618829ba (patch) | |
tree | 5fd9c7a567549d61c67a9bc065cb6a1e2dbc578b /exif.c | |
parent | 599ab946697b1dd053c467619e04456ccb71789b (diff) | |
download | vdr-plugin-image-f9472b1e58f206defb77c5caf55fcef1618829ba.tar.gz vdr-plugin-image-f9472b1e58f206defb77c5caf55fcef1618829ba.tar.bz2 |
- begin developer series 0.3.x
- Use now gettext for i18n texts, introduced with vdr-1.5.8 (Required)
Diffstat (limited to 'exif.c')
-rw-r--r-- | exif.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -30,7 +30,7 @@ extern "C" { #include "player-image.h" #include "control-image.h" #include "exif.h" -#include "i18n.h" +#include <vdr/i18n.h> // for backward compatible to libexif-0.6.12 @@ -150,12 +150,12 @@ void cImageMenuExif::Display(void) const char* szButton = NULL; if(m_bDisplayTags) { if(m_strTextMarker.length()) - szButton = tr("Button$Marker"); + szButton = tr("Marker"); } else { if(m_strTextTag.length()) - szButton = tr("Button$Tags"); + szButton = tr("Tags"); } - SetHelp(szButton, NULL, NULL, tr("Button$Back")); + SetHelp(szButton, NULL, NULL, tr("Back")); cOsdMenu::Display(); DisplayMenu()->SetText(m_bDisplayTags |