Changeset 00dcf466a24ab8db0a1c23597c6be61f512170fc
- Timestamp:
- 05/09/04 18:53:04
(4 years ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1094403184 +0000
- git-parent:
[4fcaafa34c7f3134c6584422f85eb288ff7eaad1]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1094403184 +0000
- Message:
* string review
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2f3ee90 |
r00dcf46 |
|
| 52 | 52 | V4L2_STD_NTSC }; |
|---|
| 53 | 53 | static char *psz_norm_list_text[] = { N_("Automatic"), N_("SECAM"), |
|---|
| 54 | | N_("PAL"), N_("NSTC") }; |
|---|
| | 54 | N_("PAL"), N_("NTSC") }; |
|---|
| 55 | 55 | |
|---|
| 56 | 56 | #define WIDTH_TEXT N_( "Width" ) |
|---|
| … | … | |
| 69 | 69 | " auto)" ) |
|---|
| 70 | 70 | #define BFRAMES_TEXT N_( "B Frames" ) |
|---|
| 71 | | #define BFRAMES_LONGTEXT N_("If this option is set, B-Frames will be used." \ |
|---|
| | 71 | #define BFRAMES_LONGTEXT N_("If this option is set, B-Frames will be used. " \ |
|---|
| 72 | 72 | "Use this option to set the number of B-Frames.") |
|---|
| 73 | 73 | #define BITRATE_TEXT N_( "Bitrate" ) |
|---|
| … | … | |
| 81 | 81 | #define CHAN_TEXT N_( "Channel" ) |
|---|
| 82 | 82 | #define CHAN_LONGTEXT N_( "Channel of the card to use (Usually, 0 = tuner, " \ |
|---|
| 83 | | "1 = composite, 2 = svideo )" ) |
|---|
| | 83 | "1 = composite, 2 = svideo)" ) |
|---|
| 84 | 84 | |
|---|
| 85 | 85 | static int i_bitrates[] = { 0, 1 }; |
|---|
| re94917b |
r00dcf46 |
|
| 70 | 70 | "power measurement is made. A higher number of buffers will " \ |
|---|
| 71 | 71 | "increase the response time of the filter to a high " \ |
|---|
| 72 | | "power but will make it less sensitive to short variations " ) |
|---|
| | 72 | "power but will make it less sensitive to short variations." ) |
|---|
| 73 | 73 | |
|---|
| 74 | 74 | #define LEVEL_TEXT N_("Max level" ) |
|---|
| r4632a22 |
r00dcf46 |
|
| 141 | 141 | [o_ckb_2pass setTitle: _NS("2 Pass")]; |
|---|
| 142 | 142 | [o_ckb_2pass setToolTip: _NS("If you enable this settting, the " |
|---|
| 143 | | "equalizer filter will be applied twice. The effect will be sharper")]; |
|---|
| | 143 | "equalizer filter will be applied twice. The effect will be sharper.")]; |
|---|
| 144 | 144 | [o_ckb_enable setTitle: _NS("Enable")]; |
|---|
| 145 | 145 | [o_ckb_enable setToolTip: _NS("Enable the equalizer. You can either " |
|---|
| r4bfdf49 |
r00dcf46 |
|
| 86 | 86 | #define BROWSE_TEXT N_("Filebrowser starting point") |
|---|
| 87 | 87 | #define BROWSE_LONGTEXT N_( \ |
|---|
| 88 | | "This option allows you to specify directory the ncurses filebrowser " \ |
|---|
| | 88 | "This option allows you to specify the directory the ncurses filebrowser " \ |
|---|
| 89 | 89 | "will show you initially.") |
|---|
| 90 | 90 | |
|---|
| rc7ceea8 |
r00dcf46 |
|
| 500 | 500 | { |
|---|
| 501 | 501 | wxMessageBox( wxU( _("No input found. The stream must be " |
|---|
| 502 | | "playing or paused for bookmarks to work") ), |
|---|
| | 502 | "playing or paused for bookmarks to work.") ), |
|---|
| 503 | 503 | wxU( _("No input") ), wxICON_WARNING | wxOK, |
|---|
| 504 | 504 | this ); |
|---|
| r687d597 |
r00dcf46 |
|
| 395 | 395 | wxU(_("Volume normalization"))); |
|---|
| 396 | 396 | normvol_check->SetToolTip( wxU(_("This filter prevents the audio output " |
|---|
| 397 | | "power from going over a defined value" ) ) ); |
|---|
| | 397 | "power from going over a defined value." ) ) ); |
|---|
| 398 | 398 | |
|---|
| 399 | 399 | wxStaticText *normvol_label = new wxStaticText( panel, -1, |
|---|
| … | … | |
| 466 | 466 | |
|---|
| 467 | 467 | eq_2p_chkbox->SetToolTip( wxU(_("If you enable this settting, the " |
|---|
| 468 | | "equalizer filter will be applied twice. The effect will be sharper") ) ); |
|---|
| | 468 | "equalizer filter will be applied twice. The effect will be sharper.") ) ); |
|---|
| 469 | 469 | |
|---|
| 470 | 470 | top_sizer->Add( eq_2p_chkbox, 0, wxALL, 2 ); |
|---|
| … | … | |
| 917 | 917 | "If you want fine control over the filters ( to choose " |
|---|
| 918 | 918 | "the order in which they are applied ), you need to enter " |
|---|
| 919 | | "manually a filters string (Preferences / General / Video." |
|---|
| | 919 | "manually a filters string (Preferences / General / Video.)" |
|---|
| 920 | 920 | ) ), |
|---|
| 921 | 921 | wxU( _("More information" ) ), wxOK | wxICON_INFORMATION, |
|---|
| rd279ea8 |
r00dcf46 |
|
| 45 | 45 | *****************************************************************************/ |
|---|
| 46 | 46 | #define WIDTH_TEXT N_( "snapshot width" ) |
|---|
| 47 | | #define WIDTH_LONGTEXT N_( "Set the width of the snapshot image" ) |
|---|
| | 47 | #define WIDTH_LONGTEXT N_( "Set the width of the snapshot image." ) |
|---|
| 48 | 48 | |
|---|
| 49 | 49 | #define HEIGHT_TEXT N_( "snapshot height" ) |
|---|
| 50 | | #define HEIGHT_LONGTEXT N_( "Set the height of the snapshot image" ) |
|---|
| | 50 | #define HEIGHT_LONGTEXT N_( "Set the height of the snapshot image." ) |
|---|
| 51 | 51 | |
|---|
| 52 | 52 | #define CHROMA_TEXT N_( "chroma" ) |
|---|
| 53 | | #define CHROMA_LONGTEXT N_( "Set the desired chroma for the snapshot image (a 4 character string)" ) |
|---|
| | 53 | #define CHROMA_LONGTEXT N_( "Set the desired chroma for the snapshot image (a 4 character string)." ) |
|---|
| 54 | 54 | |
|---|
| 55 | 55 | #define CACHE_TEXT N_( "cache size (number of images)" ) |
|---|
| 56 | | #define CACHE_LONGTEXT N_( "Set the cache size (number of images to keep)" ) |
|---|
| | 56 | #define CACHE_LONGTEXT N_( "Set the cache size (number of images to keep)." ) |
|---|
| 57 | 57 | |
|---|
| 58 | 58 | |
|---|
| r421866e |
r00dcf46 |
|
| 119 | 119 | if( p_module ) |
|---|
| 120 | 120 | { |
|---|
| 121 | | val.psz_string = "goom"; text.psz_string = _("Goom"); |
|---|
| | 121 | val.psz_string = "goom"; text.psz_string = "Goom"; |
|---|
| 122 | 122 | var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text ); |
|---|
| 123 | 123 | } |
|---|
| … | … | |
| 127 | 127 | if( p_module ) |
|---|
| 128 | 128 | { |
|---|
| 129 | | val.psz_string = "galaktos"; text.psz_string = _("GaLaktos"); |
|---|
| | 129 | val.psz_string = "galaktos"; text.psz_string = "GaLaktos"; |
|---|
| 130 | 130 | var_Change( p_aout, "visual", VLC_VAR_ADDCHOICE, &val, &text ); |
|---|
| 131 | 131 | } |
|---|