# HG changeset patch # User diego # Date 1218296700 0 # Node ID 897f15571922aa19ac0bd1e92dbe7f2a1d139f02 # Parent 7d8105fefe97497edd04e4bdc90cbc4a5827a470 Use translatable string instead of hardcoded message for process priority. diff -r 7d8105fefe97 -r 897f15571922 mplayer.c --- 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); }