diff options
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/input_cdda.c | 2 | ||||
-rw-r--r-- | src/input/input_dvb.c | 2 | ||||
-rw-r--r-- | src/input/input_dvd.c | 2 | ||||
-rw-r--r-- | src/input/input_file.c | 2 | ||||
-rw-r--r-- | src/input/input_gnome_vfs.c | 2 | ||||
-rw-r--r-- | src/input/input_http.c | 2 | ||||
-rw-r--r-- | src/input/input_mms.c | 2 | ||||
-rw-r--r-- | src/input/input_net.c | 2 | ||||
-rw-r--r-- | src/input/input_pnm.c | 2 | ||||
-rw-r--r-- | src/input/input_pvr.c | 2 | ||||
-rw-r--r-- | src/input/input_rtp.c | 2 | ||||
-rw-r--r-- | src/input/input_rtsp.c | 2 | ||||
-rw-r--r-- | src/input/input_smb.c | 2 | ||||
-rw-r--r-- | src/input/input_stdin_fifo.c | 2 | ||||
-rw-r--r-- | src/input/input_v4l.c | 4 | ||||
-rw-r--r-- | src/input/input_vcd.c | 2 | ||||
-rw-r--r-- | src/input/vcd/xineplug_inp_vcd.c | 2 |
17 files changed, 18 insertions, 18 deletions
diff --git a/src/input/input_cdda.c b/src/input/input_cdda.c index 0cd8982e1..83f89b08f 100644 --- a/src/input/input_cdda.c +++ b/src/input/input_cdda.c @@ -2715,7 +2715,7 @@ static void *init_plugin (xine_t *xine, void *data) { this->input_class.get_instance = cdda_class_get_instance; this->input_class.identifier = "cdda"; - this->input_class.description = _("CD Digital Audio (aka. CDDA)"); + this->input_class.description = N_("CD Digital Audio (aka. CDDA)"); /* this->input_class.get_dir = cdda_class_get_dir; */ this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = cdda_class_get_autoplay_list; diff --git a/src/input/input_dvb.c b/src/input/input_dvb.c index 1409e9c05..d84877e39 100644 --- a/src/input/input_dvb.c +++ b/src/input/input_dvb.c @@ -3244,7 +3244,7 @@ static void *init_class (xine_t *xine, void *data) { this->input_class.get_instance = dvb_class_get_instance; this->input_class.identifier = "dvb"; - this->input_class.description = _("DVB (Digital TV) input plugin"); + this->input_class.description = N_("DVB (Digital TV) input plugin"); this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = dvb_class_get_autoplay_list; this->input_class.dispose = dvb_class_dispose; diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index e2c0277c9..5f3676748 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -1759,7 +1759,7 @@ static void *init_class (xine_t *xine, void *data) { this->input_class.get_instance = dvd_class_get_instance; this->input_class.identifier = "DVD"; - this->input_class.description = _("DVD Navigator"); + this->input_class.description = N_("DVD Navigator"); /* this->input_class.get_dir = dvd_class_get_dir; */ diff --git a/src/input/input_file.c b/src/input/input_file.c index d29a1270b..a2259ec1a 100644 --- a/src/input/input_file.c +++ b/src/input/input_file.c @@ -980,7 +980,7 @@ static void *init_plugin (xine_t *xine, void *data) { this->input_class.get_instance = file_class_get_instance; this->input_class.identifier = "file"; - this->input_class.description = _("file input plugin"); + this->input_class.description = N_("file input plugin"); this->input_class.get_dir = file_class_get_dir; this->input_class.get_autoplay_list = NULL; this->input_class.dispose = file_class_dispose; diff --git a/src/input/input_gnome_vfs.c b/src/input/input_gnome_vfs.c index 24ef652c7..3f8c4a745 100644 --- a/src/input/input_gnome_vfs.c +++ b/src/input/input_gnome_vfs.c @@ -364,7 +364,7 @@ static void this->input_class.get_instance = gnomevfs_klass_get_instance; this->input_class.identifier = "gnomevfs"; - this->input_class.description = _("gnome-vfs input plugin as shipped with xine"); + this->input_class.description = N_("gnome-vfs input plugin as shipped with xine"); this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = NULL; this->input_class.dispose = gnomevfs_klass_dispose; diff --git a/src/input/input_http.c b/src/input/input_http.c index ffeb79bd7..02a54e6d8 100644 --- a/src/input/input_http.c +++ b/src/input/input_http.c @@ -1087,7 +1087,7 @@ static void *init_class (xine_t *xine, void *data) { this->input_class.get_instance = http_class_get_instance; this->input_class.identifier = "http"; - this->input_class.description = _("http input plugin"); + this->input_class.description = N_("http input plugin"); this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = NULL; this->input_class.dispose = http_class_dispose; diff --git a/src/input/input_mms.c b/src/input/input_mms.c index 7adf929b4..48944dbfb 100644 --- a/src/input/input_mms.c +++ b/src/input/input_mms.c @@ -459,7 +459,7 @@ static void *init_class (xine_t *xine, void *data) { this->input_class.get_instance = mms_class_get_instance; this->input_class.identifier = "mms"; - this->input_class.description = _("mms streaming input plugin"); + this->input_class.description = N_("mms streaming input plugin"); this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = NULL; this->input_class.dispose = mms_class_dispose; diff --git a/src/input/input_net.c b/src/input/input_net.c index 68cf5ab97..30e88757d 100644 --- a/src/input/input_net.c +++ b/src/input/input_net.c @@ -520,7 +520,7 @@ static void *init_class (xine_t *xine, void *data) { this->xine = xine; this->input_class.get_instance = net_class_get_instance; - this->input_class.description = _("net input plugin as shipped with xine"); + this->input_class.description = N_("net input plugin as shipped with xine"); this->input_class.identifier = "TCP"; this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = NULL; diff --git a/src/input/input_pnm.c b/src/input/input_pnm.c index c90fadd31..b11e1d6b3 100644 --- a/src/input/input_pnm.c +++ b/src/input/input_pnm.c @@ -275,7 +275,7 @@ static void *init_class (xine_t *xine, void *data) { this->input_class.get_instance = pnm_class_get_instance; this->input_class.identifier = "pnm"; - this->input_class.description = _("pnm streaming input plugin"); + this->input_class.description = N_("pnm streaming input plugin"); this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = NULL; this->input_class.dispose = pnm_class_dispose; diff --git a/src/input/input_pvr.c b/src/input/input_pvr.c index f6f7d51c9..eaac6afb8 100644 --- a/src/input/input_pvr.c +++ b/src/input/input_pvr.c @@ -1547,7 +1547,7 @@ static void *init_plugin (xine_t *xine, void *data) { this->input_class.get_instance = pvr_class_get_instance; this->input_class.identifier = "pvr"; - this->input_class.description = _("WinTV-PVR 250/350 input plugin"); + this->input_class.description = N_("WinTV-PVR 250/350 input plugin"); this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = NULL; this->input_class.dispose = pvr_class_dispose; diff --git a/src/input/input_rtp.c b/src/input/input_rtp.c index 12e97bd02..5ef5184cc 100644 --- a/src/input/input_rtp.c +++ b/src/input/input_rtp.c @@ -781,7 +781,7 @@ static void *init_class (xine_t *xine, void *data) { this->xine = xine; this->input_class.get_instance = rtp_class_get_instance; - this->input_class.description = _("RTP and UDP input plugin as shipped with xine"); + this->input_class.description = N_("RTP and UDP input plugin as shipped with xine"); this->input_class.identifier = "RTP/UDP"; this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = NULL; diff --git a/src/input/input_rtsp.c b/src/input/input_rtsp.c index 266ff6f6e..eb79586ad 100644 --- a/src/input/input_rtsp.c +++ b/src/input/input_rtsp.c @@ -296,7 +296,7 @@ static void *init_class (xine_t *xine, void *data) { this->input_class.get_instance = rtsp_class_get_instance; this->input_class.identifier = "rtsp"; - this->input_class.description = _("rtsp streaming input plugin"); + this->input_class.description = N_("rtsp streaming input plugin"); this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = NULL; this->input_class.dispose = rtsp_class_dispose; diff --git a/src/input/input_smb.c b/src/input/input_smb.c index d0e81ae32..d6f9a78da 100644 --- a/src/input/input_smb.c +++ b/src/input/input_smb.c @@ -508,7 +508,7 @@ static void this->input_class.get_instance = smb_class_get_instance; this->input_class.identifier = "smb"; - this->input_class.description = _("CIFS/SMB input plugin based on libsmbclient"); + this->input_class.description = N_("CIFS/SMB input plugin based on libsmbclient"); this->input_class.get_dir = smb_class_get_dir; this->input_class.get_autoplay_list = NULL; this->input_class.dispose = smb_class_dispose; diff --git a/src/input/input_stdin_fifo.c b/src/input/input_stdin_fifo.c index 4640cbf31..7708ee40d 100644 --- a/src/input/input_stdin_fifo.c +++ b/src/input/input_stdin_fifo.c @@ -360,7 +360,7 @@ static void *init_class (xine_t *xine, void *data) { this->input_class.get_instance = stdin_class_get_instance; this->input_class.identifier = "stdin_fifo"; - this->input_class.description = _("stdin streaming input plugin"); + this->input_class.description = N_("stdin streaming input plugin"); this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = NULL; this->input_class.dispose = stdin_class_dispose; diff --git a/src/input/input_v4l.c b/src/input/input_v4l.c index f698f8772..7ed5c172b 100644 --- a/src/input/input_v4l.c +++ b/src/input/input_v4l.c @@ -1918,7 +1918,7 @@ static void *init_video_class (xine_t *xine, void *data) this->input_class.get_instance = v4l_class_get_video_instance; this->input_class.identifier = "v4l"; - this->input_class.description = _("v4l tv input plugin"); + this->input_class.description = N_("v4l tv input plugin"); this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = NULL; this->input_class.dispose = v4l_class_dispose; @@ -1950,7 +1950,7 @@ static void *init_radio_class (xine_t *xine, void *data) this->input_class.get_instance = v4l_class_get_radio_instance; this->input_class.identifier = "v4l"; - this->input_class.description = _("v4l radio input plugin"); + this->input_class.description = N_("v4l radio input plugin"); this->input_class.get_dir = NULL; this->input_class.get_autoplay_list = NULL; this->input_class.dispose = v4l_class_dispose; diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c index 71c828eea..014f20258 100644 --- a/src/input/input_vcd.c +++ b/src/input/input_vcd.c @@ -1079,7 +1079,7 @@ static void *init_class (xine_t *xine, void *data) { this->input_class.get_instance = vcd_class_get_instance; this->input_class.identifier = "vcdo"; - this->input_class.description = _("Video CD input plugin"); + this->input_class.description = N_("Video CD input plugin"); this->input_class.get_dir = vcd_class_get_dir; this->input_class.get_autoplay_list = vcd_class_get_autoplay_list; this->input_class.dispose = vcd_class_dispose; diff --git a/src/input/vcd/xineplug_inp_vcd.c b/src/input/vcd/xineplug_inp_vcd.c index 4b11096c0..c33f73e40 100644 --- a/src/input/vcd/xineplug_inp_vcd.c +++ b/src/input/vcd/xineplug_inp_vcd.c @@ -1752,7 +1752,7 @@ vcd_init (xine_t *xine, void *data) class->input_class.get_instance = vcd_class_get_instance; class->input_class.identifier = SHORT_PLUGIN_NAME; - class->input_class.description = _("Video CD plugin with PBC and support for: (X)VCD, (X)SVCD, HQVCD, CVD ... "); + class->input_class.description = N_("Video CD plugin with PBC and support for: (X)VCD, (X)SVCD, HQVCD, CVD ... "); class->input_class.get_dir = vcd_class_get_dir; class->input_class.get_autoplay_list = vcd_class_get_autoplay_list; class->input_class.dispose = vcd_class_dispose; |