aboutsummaryrefslogtreecommitdiffhomepage
path: root/Gui/mplayer/play.c
diff options
context:
space:
mode:
authorGravatar pontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-09-12 15:08:53 +0000
committerGravatar pontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-09-12 15:08:53 +0000
commitfdf4a82029cf9e49e275101175c417b903e16b58 (patch)
treeece8eb0a50e87875bde12c534690e54e447dfe56 /Gui/mplayer/play.c
parent6a8ef38e092fff64227df74d342a0bec0fd65eab (diff)
add to multi lang support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1885 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/mplayer/play.c')
-rw-r--r--Gui/mplayer/play.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Gui/mplayer/play.c b/Gui/mplayer/play.c
index eb4629a4f4..1500ba90aa 100644
--- a/Gui/mplayer/play.c
+++ b/Gui/mplayer/play.c
@@ -16,6 +16,7 @@ int moviex,moviey,moviewidth,movieheight;
#include "../wm/widget.h"
#include "../../config.h"
+#include "../../help_mp.h"
#include "../../libvo/x11_common.h"
#include "widgets.h"
@@ -25,7 +26,6 @@ int moviex,moviey,moviewidth,movieheight;
#include "../skin/skin.h"
#include "../error.h"
-#include "../language.h"
mplCommStruct * mplShMem;
char * Filename = NULL;
@@ -157,7 +157,7 @@ void ChangeSkin( void )
{
if ( mplMenuDrawBuffer ) free( mplMenuDrawBuffer );
if ( ( mplMenuDrawBuffer = (unsigned char *)calloc( 1,appMPlayer.menuBase.Bitmap.ImageSize ) ) == NULL )
- { message( False,langNEMDB ); return; }
+ { message( False,MSGTR_NEMDB ); return; }
wsResizeWindow( &appMPlayer.menuWindow,appMPlayer.menuBase.width,appMPlayer.menuBase.height );
wsResizeImage( &appMPlayer.menuWindow,appMPlayer.menuBase.width,appMPlayer.menuBase.height );
}
@@ -179,7 +179,7 @@ void ChangeSkin( void )
if ( mplDrawBuffer ) free( mplDrawBuffer );
if ( ( mplDrawBuffer = (unsigned char *)calloc( 1,appMPlayer.main.Bitmap.ImageSize ) ) == NULL )
- { message( False,langNEMDB ); return; }
+ { message( False,MSGTR_NEMDB ); return; }
wsVisibleWindow( &appMPlayer.mainWindow,wsHideWindow );
wsResizeWindow( &appMPlayer.mainWindow,appMPlayer.main.width,appMPlayer.main.height );
wsMoveWindow( &appMPlayer.mainWindow,appMPlayer.main.x,appMPlayer.main.y );