diff options
author | Amar Takhar <mplayer@darkbeer.org> | 2009-07-07 01:15:02 +0300 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2009-07-07 01:38:20 +0300 |
commit | e306174952d42e1cd6cc5efc50ae6bb0410501bc (patch) | |
tree | a7eb451f2c634f17d8e36a72b6305c1aff508904 /osdep | |
parent | b5972d6f14c04384d88d3f813b435d484562403f (diff) | |
download | mpv-e306174952d42e1cd6cc5efc50ae6bb0410501bc.tar.bz2 mpv-e306174952d42e1cd6cc5efc50ae6bb0410501bc.tar.xz |
Translation system changes part 2: replace macros by strings
Replace all MSGTR_ macros in the source by the corresponding English
string.
Diffstat (limited to 'osdep')
-rw-r--r-- | osdep/priority.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/osdep/priority.c b/osdep/priority.c index 8f57d295e3..ffc589386f 100644 --- a/osdep/priority.c +++ b/osdep/priority.c @@ -73,7 +73,7 @@ void set_priority(void) if (strcasecmp(priority_presets_defs[i].name, proc_priority) == 0) break; } - mp_tmsg(MSGT_CPLAYER, MSGL_STATUS, MSGTR_SettingProcessPriority, + mp_tmsg(MSGT_CPLAYER, MSGL_STATUS, "Setting process priority: %s\n", priority_presets_defs[i].name); #ifdef __OS2__ |