summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-06-23 23:33:24 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-06-23 23:33:24 +0000
commit6b6f5099f5e08dc3881d498e37f632337940aef0 (patch)
treebd31c1792614956eed2b1bfd3db8194beb7770bf /src
parent17702697e6807ceff70b35449b8dd8d24e520b8e (diff)
downloadxine-lib-6b6f5099f5e08dc3881d498e37f632337940aef0.tar.gz
xine-lib-6b6f5099f5e08dc3881d498e37f632337940aef0.tar.bz2
don't translate settings (probably the cause of 0.9.12 segfaults)
CVS patchset: 2146 CVS date: 2002/06/23 23:33:24
Diffstat (limited to 'src')
-rw-r--r--src/libsputext/xine_decoder.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libsputext/xine_decoder.c b/src/libsputext/xine_decoder.c
index b270cc4ea..a3d0b2703 100644
--- a/src/libsputext/xine_decoder.c
+++ b/src/libsputext/xine_decoder.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_decoder.c,v 1.31 2002/06/23 22:51:16 f1rmb Exp $
+ * $Id: xine_decoder.c,v 1.32 2002/06/23 23:33:24 miguelfreitas Exp $
*
* code based on mplayer module:
*
@@ -1038,9 +1038,9 @@ spu_decoder_t *init_spu_decoder_plugin (int iface_version, xine_t *xine) {
static char *subtitle_size_strings[SUBTITLE_SIZE_NUM] = { NULL };
if (!subtitle_size_strings[0]) {
- subtitle_size_strings[SUBTITLE_SIZE_SMALL] = _("Small");
- subtitle_size_strings[SUBTITLE_SIZE_NORMAL] = _("Normal");
- subtitle_size_strings[SUBTITLE_SIZE_LARGE] = _("Large");
+ subtitle_size_strings[SUBTITLE_SIZE_SMALL] = "small";
+ subtitle_size_strings[SUBTITLE_SIZE_NORMAL] = "normal";
+ subtitle_size_strings[SUBTITLE_SIZE_LARGE] = "large";
}
if (iface_version != 8) {