[MPlayer-cvslog] r33184 - in trunk: gui/skin/skin.c help/help_mp-bg.h help/help_mp-cs.h help/help_mp-de.h help/help_mp-dk.h help/help_mp-el.h help/help_mp-en.h help/help_mp-es.h help/help_mp-fr.h help/help_mp-hu.h ...
ib
subversion at mplayerhq.hu
Fri Apr 1 22:42:06 CEST 2011
Author: ib
Date: Fri Apr 1 22:42:06 2011
New Revision: 33184
Log:
Revise font related error messages.
Modified:
trunk/gui/skin/skin.c
Changes in other areas also in this revision:
Modified:
trunk/help/help_mp-bg.h
trunk/help/help_mp-cs.h
trunk/help/help_mp-de.h
trunk/help/help_mp-dk.h
trunk/help/help_mp-el.h
trunk/help/help_mp-en.h
trunk/help/help_mp-es.h
trunk/help/help_mp-fr.h
trunk/help/help_mp-hu.h
trunk/help/help_mp-it.h
trunk/help/help_mp-ja.h
trunk/help/help_mp-ko.h
trunk/help/help_mp-mk.h
trunk/help/help_mp-nb.h
trunk/help/help_mp-nl.h
trunk/help/help_mp-pl.h
trunk/help/help_mp-pt_BR.h
trunk/help/help_mp-ru.h
trunk/help/help_mp-sk.h
trunk/help/help_mp-sv.h
trunk/help/help_mp-tr.h
trunk/help/help_mp-uk.h
trunk/help/help_mp-zh_CN.h
trunk/help/help_mp-zh_TW.h
Modified: trunk/gui/skin/skin.c
==============================================================================
--- trunk/gui/skin/skin.c Fri Apr 1 15:59:50 2011 (r33183)
+++ trunk/gui/skin/skin.c Fri Apr 1 22:42:06 2011 (r33184)
@@ -679,7 +679,7 @@ static int cmd_font(char *in)
switch (item->fontid) {
case -1:
- skin_error(MSGTR_SKIN_FONT_NotEnoughtMemory);
+ skin_error(MSGTR_SKIN_NotEnoughMemory);
return 1;
case -2:
@@ -728,7 +728,7 @@ static int cmd_slabel(char *in)
id = fntFindID(fnt);
if (id < 0) {
- skin_error(MSGTR_SKIN_FONT_NonExistentFontID, fnt);
+ skin_error(MSGTR_SKIN_FONT_NonExistentFont, fnt);
return 1;
}
@@ -745,7 +745,7 @@ static int cmd_slabel(char *in)
item->label = strdup(txt);
if (!item->label) {
- skin_error(MSGTR_SKIN_FONT_NotEnoughtMemory);
+ skin_error(MSGTR_SKIN_NotEnoughMemory);
return 1;
}
@@ -783,7 +783,7 @@ static int cmd_dlabel(char *in)
id = fntFindID(fnt);
if (id < 0) {
- skin_error(MSGTR_SKIN_FONT_NonExistentFontID, fnt);
+ skin_error(MSGTR_SKIN_FONT_NonExistentFont, fnt);
return 1;
}
@@ -801,7 +801,7 @@ static int cmd_dlabel(char *in)
item->label = strdup(txt);
if (!item->label) {
- skin_error(MSGTR_SKIN_FONT_NotEnoughtMemory);
+ skin_error(MSGTR_SKIN_NotEnoughMemory);
return 1;
}
More information about the MPlayer-cvslog
mailing list