changeset 27413:897f15571922

Use translatable string instead of hardcoded message for process priority.
author diego
date Sat, 09 Aug 2008 15:45:00 +0000
parents 7d8105fefe97
children 031e294a414c
files mplayer.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mplayer.c	Sat Aug 09 14:56:09 2008 +0000
+++ b/mplayer.c	Sat Aug 09 15:45:00 2008 +0000
@@ -2640,7 +2640,7 @@
         		if(strcasecmp(priority_presets_defs[i].name, proc_priority) == 0)
 				break;
 		}
-		mp_msg(MSGT_CPLAYER,MSGL_STATUS,"Setting process priority: %s\n",
+		mp_msg(MSGT_CPLAYER,MSGL_STATUS,MSGTR_SettingProcessPriority,
 				priority_presets_defs[i].name);
 		SetPriorityClass(GetCurrentProcess(), priority_presets_defs[i].prio);
 	}