Changeset 8b21c8fc2c0da2deb6c01a38ac03463c3990883e
- Timestamp:
- 23/09/06 01:11:59
(2 years ago)
- Author:
- Christophe Mutricy <xtophe@videolan.org>
- git-committer:
- Christophe Mutricy <xtophe@videolan.org> 1158966719 +0000
- git-parent:
[3a004ff731875126ff0c99df0d68f2eb360a85ed]
- git-author:
- Christophe Mutricy <xtophe@videolan.org> 1158966719 +0000
- Message:
i18n fixes pointed by Marian Hikanik
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd407ed2 |
r8b21c8f |
|
| 86 | 86 | }; |
|---|
| 87 | 87 | |
|---|
| 88 | | #define MONO_DOWNMIX_TEXT ("Use downmix algorithme.") |
|---|
| 89 | | #define MONO_DOWNMIX_LONGTEXT ("This option selects a stereo to mono " \ |
|---|
| | 88 | #define MONO_DOWNMIX_TEXT N_("Use downmix algorithme.") |
|---|
| | 89 | #define MONO_DOWNMIX_LONGTEXT N_("This option selects a stereo to mono " \ |
|---|
| 90 | 90 | "downmix algorithm that is used in the headphone channel mixer. It" \ |
|---|
| 91 | 91 | "gives the effect of standing in a room full of speakers." ) |
|---|
| 92 | 92 | |
|---|
| 93 | | #define MONO_CHANNEL_TEXT ("Select channel to keep") |
|---|
| 94 | | #define MONO_CHANNEL_LONGTEXT ("This option silences all other channels " \ |
|---|
| | 93 | #define MONO_CHANNEL_TEXT N_("Select channel to keep") |
|---|
| | 94 | #define MONO_CHANNEL_LONGTEXT N_("This option silences all other channels " \ |
|---|
| 95 | 95 | "except the selected channel. Choose one from (0=left, 1=right " \ |
|---|
| 96 | 96 | "2=rear left, 3=rear right, 4=center, 5=left front)") |
|---|
| r63fa138 |
r8b21c8f |
|
| 150 | 150 | /* FIXME (cut/past from ffmpeg */ |
|---|
| 151 | 151 | #define LIBAVCODEC_PP_LONGTEXT \ |
|---|
| 152 | | "<filterName>[:<option>[:<option>...]][[,|/][-]<filterName>[:<option>...]]...\n" \ |
|---|
| | 152 | N_("<filterName>[:<option>[:<option>...]][[,|/][-]<filterName>[:<option>...]]...\n" \ |
|---|
| 153 | 153 | "long form example:\n" \ |
|---|
| 154 | 154 | "vdeblock:autoq/hdeblock:autoq/linblenddeint default,-vdeblock\n" \ |
|---|
| … | … | |
| 182 | 182 | "tn tmpnoise (3 Thresholds) Temporal Noise Reducer\n" \ |
|---|
| 183 | 183 | " 1. <= 2. <= 3. larger -> stronger filtering\n" \ |
|---|
| 184 | | "fq forceQuant <quantizer> Force quantizer\n" |
|---|
| | 184 | "fq forceQuant <quantizer> Force quantizer\n") |
|---|
| 185 | 185 | |
|---|
| 186 | 186 | /* |
|---|
| r72d2a5b |
r8b21c8f |
|
| 43 | 43 | "Enable debug" |
|---|
| 44 | 44 | |
|---|
| 45 | | #define DEBUG_LONGTEXT \ |
|---|
| | 45 | #define DEBUG_LONGTEXT N_( \ |
|---|
| 46 | 46 | "This integer when viewed in binary is a debugging mask\n" \ |
|---|
| 47 | 47 | "calls 1\n" \ |
|---|
| 48 | | "packet assembly info 2\n" |
|---|
| | 48 | "packet assembly info 2\n") |
|---|
| 49 | 49 | |
|---|
| 50 | 50 | vlc_module_begin(); |
|---|
| r272e38a |
r8b21c8f |
|
| 167 | 167 | new wxButton( panel, ButtonExtract_Event, wxU(_("Extract")) ); |
|---|
| 168 | 168 | |
|---|
| 169 | | #define ADD_TEXT "Adds a bookmark at the current position in the stream" |
|---|
| 170 | | #define REMOVE_TEXT "Removes the selected bookmarks" |
|---|
| 171 | | #define CLEAR_TEXT "Removes all the bookmarks for that stream" |
|---|
| 172 | | #define EDIT_TEXT "Edit the properties of a bookmark" |
|---|
| 173 | | #define EXTRACT_TEXT "If you select two or more bookmarks, this will " \ |
|---|
| | 169 | #define ADD_TEXT N_("Adds a bookmark at the current position in the stream") |
|---|
| | 170 | #define REMOVE_TEXT N_("Removes the selected bookmarks") |
|---|
| | 171 | #define CLEAR_TEXT N_("Removes all the bookmarks for that stream") |
|---|
| | 172 | #define EDIT_TEXT N_("Edit the properties of a bookmark") |
|---|
| | 173 | #define EXTRACT_TEXT N_("If you select two or more bookmarks, this will " \ |
|---|
| 174 | 174 | "launch the streaming/transcoding wizard to allow you to " \ |
|---|
| 175 | | "stream or save the part of the stream between these bookmarks" |
|---|
| | 175 | "stream or save the part of the stream between these bookmarks") |
|---|
| 176 | 176 | button_add->SetToolTip( wxU(_( ADD_TEXT ) ) ); |
|---|
| 177 | 177 | button_del->SetToolTip( wxU(_( REMOVE_TEXT ) ) ); |
|---|
| r7fd3632 |
r8b21c8f |
|
| 91 | 91 | #endif |
|---|
| 92 | 92 | |
|---|
| 93 | | panel_sizer->Add( new wxButton( panel, wxID_CLOSE ) , |
|---|
| | 93 | panel_sizer->Add( new wxButton( panel, wxID_CLOSE, wxU(_("&Close")) ) , |
|---|
| 94 | 94 | 0, wxALL|wxALIGN_RIGHT, 5 ); |
|---|
| 95 | 95 | |
|---|
| rf485214 |
r8b21c8f |
|
| 411 | 411 | } |
|---|
| 412 | 412 | current_item = AppendItem( root_item, |
|---|
| 413 | | wxU( config_data->psz_name ), |
|---|
| | 413 | wxU( _(config_data->psz_name) ), |
|---|
| 414 | 414 | i_image, -1, config_data ); |
|---|
| 415 | 415 | |
|---|
| … | … | |
| 484 | 484 | i_image = -1; |
|---|
| 485 | 485 | #endif |
|---|
| 486 | | AppendItem( current_item, wxU( config_data->psz_name ), |
|---|
| | 486 | AppendItem( current_item, wxU( _(config_data->psz_name) ), |
|---|
| 487 | 487 | i_image, -1, config_data ); |
|---|
| 488 | 488 | break; |
|---|
| r71bca20 |
r8b21c8f |
|
| 710 | 710 | wxOPEN |
|---|
| 711 | 711 | #else |
|---|
| 712 | | wxOPEN | wxSAVE |
|---|
| | 712 | wxOPEN |
|---|
| 713 | 713 | #endif |
|---|
| 714 | 714 | ); |
|---|
| r3f99651 |
r8b21c8f |
|
| 1361 | 1361 | set_subcategory( SUBCAT_INPUT_GENERAL ); |
|---|
| 1362 | 1362 | |
|---|
| 1363 | | add_bool( "france", VLC_FALSE, NULL, "France", FRANCE_LONGTEXT, VLC_TRUE ); |
|---|
| | 1363 | add_bool( "france", VLC_FALSE, NULL, N_("France"), FRANCE_LONGTEXT, VLC_TRUE ); |
|---|
| 1364 | 1364 | |
|---|
| 1365 | 1365 | set_section( N_( "Track settings" ), NULL ); |
|---|