summaryrefslogtreecommitdiffstats
path: root/libvo/sub.c
diff options
context:
space:
mode:
authorAmar Takhar <mplayer@darkbeer.org>2009-07-06 02:41:23 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-07-07 01:28:07 +0300
commitb5972d6f14c04384d88d3f813b435d484562403f (patch)
treeaf30d63d0bca01c2132cd54f43b51e444948abc0 /libvo/sub.c
parent7394680e4eb7b21cd8bf38b973ff66881889be26 (diff)
downloadmpv-b5972d6f14c04384d88d3f813b435d484562403f.tar.bz2
mpv-b5972d6f14c04384d88d3f813b435d484562403f.tar.xz
Translation system changes part 1: wrap translated strings
Replace mp_msg() calls which have a translated string as the format argument with mp_tmsg and add _() around all other translated strings.
Diffstat (limited to 'libvo/sub.c')
-rw-r--r--libvo/sub.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/libvo/sub.c b/libvo/sub.c
index 987ab76ba0..234201f5ff 100644
--- a/libvo/sub.c
+++ b/libvo/sub.c
@@ -66,19 +66,19 @@ struct osd_text_p {
//^
char * const sub_osd_names[]={
- MSGTR_VO_SUB_Seekbar,
- MSGTR_VO_SUB_Play,
- MSGTR_VO_SUB_Pause,
- MSGTR_VO_SUB_Stop,
- MSGTR_VO_SUB_Rewind,
- MSGTR_VO_SUB_Forward,
- MSGTR_VO_SUB_Clock,
- MSGTR_VO_SUB_Contrast,
- MSGTR_VO_SUB_Saturation,
- MSGTR_VO_SUB_Volume,
- MSGTR_VO_SUB_Brightness,
- MSGTR_VO_SUB_Hue,
- MSGTR_VO_SUB_Balance
+ _(MSGTR_VO_SUB_Seekbar),
+ _(MSGTR_VO_SUB_Play),
+ _(MSGTR_VO_SUB_Pause),
+ _(MSGTR_VO_SUB_Stop),
+ _(MSGTR_VO_SUB_Rewind),
+ _(MSGTR_VO_SUB_Forward),
+ _(MSGTR_VO_SUB_Clock),
+ _(MSGTR_VO_SUB_Contrast),
+ _(MSGTR_VO_SUB_Saturation),
+ _(MSGTR_VO_SUB_Volume),
+ _(MSGTR_VO_SUB_Brightness),
+ _(MSGTR_VO_SUB_Hue),
+ _(MSGTR_VO_SUB_Balance)
};
char * const sub_osd_names_short[] ={ "", "|>", "||", "[]", "<<" , ">>", "", "", "", "", "", "", "" };