Changeset 870a36bbd13b26ff2e55bb33462f659952255b18
- Timestamp:
- 07/06/08 12:58:01
(2 months ago)
- Author:
- Rémi Denis-Courmont <rdenis@simphalempin.com>
- git-committer:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1215341881 +0300
- git-parent:
[614adab2f96a88b548583b9acf9a31da33cdae58]
- git-author:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1215341714 +0300
- Message:
Protocol names are localized.
There are real-life cases. There may also be differences in punctuations
and character sets. Besides the VLC core will anyway apply gettext to
these strings, so they are translatable in any case...
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r62ec225 |
r870a36b |
|
| 98 | 98 | set_description( N_("HTTP input") ); |
|---|
| 99 | 99 | set_capability( "access", 0 ); |
|---|
| 100 | | set_shortname( "HTTP(S)" ); |
|---|
| | 100 | set_shortname( N_( "HTTP(S)" ) ); |
|---|
| 101 | 101 | set_category( CAT_INPUT ); |
|---|
| 102 | 102 | set_subcategory( SUBCAT_INPUT_ACCESS ); |
|---|
| r62ec225 |
r870a36b |
|
| 51 | 51 | vlc_module_begin(); |
|---|
| 52 | 52 | set_description( N_("RTMP input") ); |
|---|
| 53 | | set_shortname( "RTMP" ); |
|---|
| | 53 | set_shortname( N_("RTMP") ); |
|---|
| 54 | 54 | set_category( CAT_INPUT ); |
|---|
| 55 | 55 | set_subcategory( SUBCAT_INPUT_ACCESS ); |
|---|
| r62ec225 |
r870a36b |
|
| 54 | 54 | vlc_module_begin(); |
|---|
| 55 | 55 | set_description( N_("RTMP stream output") ); |
|---|
| 56 | | set_shortname( "RTMP" ); |
|---|
| | 56 | set_shortname( N_("RTMP" ) ); |
|---|
| 57 | 57 | set_capability( "sout access", 50 ); |
|---|
| 58 | 58 | set_category( CAT_SOUT ); |
|---|
| r62ec225 |
r870a36b |
|
| 477 | 477 | { |
|---|
| 478 | 478 | val.i_int = AOUT_VAR_5_1; |
|---|
| 479 | | text.psz_string = "5.1"; |
|---|
| | 479 | text.psz_string = (char *)N_("5.1"); |
|---|
| 480 | 480 | var_Change( p_aout, "audio-device", |
|---|
| 481 | 481 | VLC_VAR_ADDCHOICE, &val, &text ); |
|---|
| r62ec225 |
r870a36b |
|
| 49 | 49 | vlc_module_begin(); |
|---|
| 50 | 50 | set_capability( "decoder", 40 ); |
|---|
| 51 | | set_shortname( "USFSubs" ); |
|---|
| | 51 | set_shortname( N_("USFSubs")); |
|---|
| 52 | 52 | set_description( N_("USF subtitles decoder") ); |
|---|
| 53 | 53 | set_callbacks( OpenDecoder, CloseDecoder ); |
|---|
| r62ec225 |
r870a36b |
|
| 80 | 80 | */ |
|---|
| 81 | 81 | vlc_module_begin (); |
|---|
| 82 | | set_shortname ( "RTP" ); |
|---|
| | 82 | set_shortname (_("RTP")); |
|---|
| 83 | 83 | set_description (_("(Experimental) Real-Time Protocol demuxer")); |
|---|
| 84 | 84 | set_category (CAT_INPUT); |
|---|
| r62ec225 |
r870a36b |
|
| 57 | 57 | |
|---|
| 58 | 58 | vlc_module_begin(); |
|---|
| 59 | | set_shortname( "TY" ); |
|---|
| | 59 | set_shortname( N_("TY") ); |
|---|
| 60 | 60 | set_description(N_("TY Stream audio/video demux")); |
|---|
| 61 | 61 | set_category( CAT_INPUT ); |
|---|
| r62ec225 |
r870a36b |
|
| 183 | 183 | |
|---|
| 184 | 184 | [[o_disc_type cellAtRow:0 column:0] setTitle: _NS("VIDEO_TS directory")]; |
|---|
| 185 | | [[o_disc_type cellAtRow:1 column:0] setTitle: @"DVD"]; |
|---|
| 186 | | [[o_disc_type cellAtRow:2 column:0] setTitle: @"VCD"]; |
|---|
| | 185 | [[o_disc_type cellAtRow:1 column:0] setTitle: _NS("DVD")]; |
|---|
| | 186 | [[o_disc_type cellAtRow:2 column:0] setTitle: _NS("VCD")]; |
|---|
| 187 | 187 | [[o_disc_type cellAtRow:3 column:0] setTitle: _NS("Audio CD")]; |
|---|
| 188 | 188 | |
|---|
| … | … | |
| 192 | 192 | [o_net_http_url_lbl setStringValue: _NS("URL")]; |
|---|
| 193 | 193 | |
|---|
| 194 | | [[o_net_mode cellAtRow:0 column:0] setTitle: @"UDP/RTP"]; |
|---|
| | 194 | [[o_net_mode cellAtRow:0 column:0] setTitle: _NS("UDP/RTP")]; |
|---|
| 195 | 195 | [[o_net_mode cellAtRow:1 column:0] setTitle: _NS("UDP/RTP Multicast")]; |
|---|
| 196 | | [[o_net_mode cellAtRow:2 column:0] setTitle: @"HTTP/FTP/MMS/RTSP"]; |
|---|
| | 196 | [[o_net_mode cellAtRow:2 column:0] setTitle: _NS("HTTP/FTP/MMS/RTSP")]; |
|---|
| 197 | 197 | [o_net_timeshift_ckbox setTitle: _NS("Allow timeshifting")]; |
|---|
| 198 | 198 | |
|---|
| r62ec225 |
r870a36b |
|
| 159 | 159 | |
|---|
| 160 | 160 | vlc_module_begin(); |
|---|
| 161 | | set_shortname( "RTP" ); |
|---|
| | 161 | set_shortname( N_("RTP")); |
|---|
| 162 | 162 | set_description( N_("RTP stream output") ); |
|---|
| 163 | 163 | set_capability( "sout stream", 0 ); |
|---|