summaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
authorDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-06-12 12:22:25 +0000
committerDaniel Caujolle-Bert <f1rmb@users.sourceforge.net>2002-06-12 12:22:25 +0000
commit6c5572a3e91e95c7f92f1110fac91caa241a9a87 (patch)
tree246923aadffab6a78dbbe22865245a5dfb17b597 /src/input
parent184079276271955bc74954b0cc96298cb5ec4366 (diff)
downloadxine-lib-6c5572a3e91e95c7f92f1110fac91caa241a9a87.tar.gz
xine-lib-6c5572a3e91e95c7f92f1110fac91caa241a9a87.tar.bz2
Remove no more needed XINE_LOGO.
Internationalize all config related stuff. Fix not registered mrl ending in roq/film demuxer. Add bindtextdomain() calls in load_plugins (for audio/video out plugins). CVS patchset: 2066 CVS date: 2002/06/12 12:22:25
Diffstat (limited to 'src/input')
-rw-r--r--src/input/input_cda.c10
-rw-r--r--src/input/input_dvd.c6
-rw-r--r--src/input/input_file.c6
-rw-r--r--src/input/input_vcd.c4
4 files changed, 13 insertions, 13 deletions
diff --git a/src/input/input_cda.c b/src/input/input_cda.c
index 9553f4c94..f64a0a379 100644
--- a/src/input/input_cda.c
+++ b/src/input/input_cda.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: input_cda.c,v 1.24 2002/05/25 19:19:17 siggi Exp $
+ * $Id: input_cda.c,v 1.25 2002/06/12 12:22:34 f1rmb Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -1841,23 +1841,23 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
this->cda->cur_pos = -1;
this->cda->device_name = strdup(config->register_string(config, "input.cda_device", CDROM,
- "path to your local cd audio device file",
+ _("path to your local cd audio device file"),
NULL,
device_change_cb, (void *) this));
this->cddb.server = config->register_string(config, "input.cda_cddb_server", CDDB_SERVER,
- "cddbp server name", NULL,
+ _("cddbp server name"), NULL,
server_change_cb, (void *) this);
this->cddb.port = config->register_num(config, "input.cda_cddb_port", CDDB_PORT,
- "cddbp server port", NULL,
+ _("cddbp server port"), NULL,
port_change_cb, (void *) this);
this->cddb.fd = -1;
this->cddb.cache_dir = config->register_string(config, "input.cda_cddb_cachedir",
(_cda_cddb_get_default_location()),
- "cddbp cache directory", NULL,
+ _("cddbp cache directory"), NULL,
cachedir_change_cb, (void *) this);
this->mrls = (mrl_t **) xine_xmalloc(sizeof(mrl_t*));
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c
index 8eb7256f8..5362e972d 100644
--- a/src/input/input_dvd.c
+++ b/src/input/input_dvd.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: input_dvd.c,v 1.49 2002/05/25 19:19:17 siggi Exp $
+ * $Id: input_dvd.c,v 1.50 2002/06/12 12:22:34 f1rmb Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -854,10 +854,10 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
*/
this->device = config->register_string(config, "input.dvd_device", DVD,
- "path to your local dvd device file",
+ _("path to your local dvd device file"),
NULL, device_change_cb, (void *)this);
this->raw_device = config->register_string(config, "input.dvd_raw_device", RDVD,
- "path to a raw device set up for dvd access",
+ _("path to a raw device set up for dvd access"),
NULL, rawdevice_change_cb, (void*)this);
#ifdef __sun
check_solaris_vold_device(this);
diff --git a/src/input/input_file.c b/src/input/input_file.c
index ec3c20b2a..957108fb7 100644
--- a/src/input/input_file.c
+++ b/src/input/input_file.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: input_file.c,v 1.50 2002/06/09 13:23:36 miguelfreitas Exp $
+ * $Id: input_file.c,v 1.51 2002/06/12 12:22:34 f1rmb Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -905,12 +905,12 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
strcpy(current_dir, ".");
this->origin_path = config->register_string(this->config, "input.file_origin_path",
- current_dir, "origin path to grab file mrls",
+ current_dir, _("origin path to grab file mrls"),
NULL, origin_change_cb, (void *) this);
}
this->show_hidden_files = this->config->register_bool(this->config, "input.file_hidden_files",
- 1, "hidden files displaying.",
+ 1, _("hidden files displaying."),
NULL, hidden_bool_cb, (void *) this);
return (input_plugin_t *) this;
diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c
index f2f2238c2..5f336e6a1 100644
--- a/src/input/input_vcd.c
+++ b/src/input/input_vcd.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: input_vcd.c,v 1.42 2002/05/25 19:19:18 siggi Exp $
+ * $Id: input_vcd.c,v 1.43 2002/06/12 12:22:34 f1rmb Exp $
*
*/
@@ -1181,7 +1181,7 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) {
this->input_plugin.is_branch_possible= NULL;
this->device = config->register_string(config, "input.vcd_device", CDROM,
- "path to your local vcd device file",
+ _("path to your local vcd device file"),
NULL, device_change_cb, (void *)this);
this->mrls = (mrl_t **) xine_xmalloc(sizeof(mrl_t*));