Changeset 2b452b3ce5b0f96bd0245dab096bf570a51d8810
- Timestamp:
- 02/06/07 02:02:54
(1 year ago)
- Author:
- Christophe Mutricy <xtophe@videolan.org>
- git-committer:
- Christophe Mutricy <xtophe@videolan.org> 1180742574 +0000
- git-parent:
[2ede4ca791a0521c908d440f30ad80969fc06a9a]
- git-author:
- Christophe Mutricy <xtophe@videolan.org> 1180742574 +0000
- Message:
All: Qt4 intf i18n fix (part 1)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rbae04ee |
r2b452b3 |
|
| 364 | 364 | ]) |
|---|
| 365 | 365 | AC_SUBST(INCLUDED_LIBINTL) |
|---|
| 366 | | XGETTEXT="${XGETTEXT} --keyword=_NS --keyword=_ANS" |
|---|
| 367 | 366 | |
|---|
| 368 | 367 | dnl |
|---|
| r712f983 |
r2b452b3 |
|
| 45 | 45 | QGridLayout *l = new QGridLayout( this ); |
|---|
| 46 | 46 | #define ADD_META( string, widget ) { \ |
|---|
| 47 | | l->addWidget( new QLabel( qfu( string ) ), line, 0 ); \ |
|---|
| | 47 | l->addWidget( new QLabel( qtr( string ) ), line, 0 ); \ |
|---|
| 48 | 48 | widget = new QLabel( "" ); \ |
|---|
| 49 | 49 | l->addWidget( widget, line, 1 ); \ |
|---|
| 50 | 50 | line++; } |
|---|
| 51 | | ADD_META( _( "Name" ), name_text ); |
|---|
| 52 | | ADD_META( _( "URI" ), uri_text ); |
|---|
| | 51 | ADD_META( qtr( "Name" ), name_text ); |
|---|
| | 52 | ADD_META( qtr( "URI" ), uri_text ); |
|---|
| 53 | 53 | ADD_META( VLC_META_ARTIST, artist_text ); |
|---|
| 54 | 54 | ADD_META( VLC_META_GENRE, genre_text ); |
|---|
| r0c99373 |
r2b452b3 |
|
| 64 | 64 | QMenu *manageMenu = new QMenu(); |
|---|
| 65 | 65 | manageMenu->setTitle( qtr("Manage") ); |
|---|
| 66 | | manageMenu->addAction( "Open playlist file", THEDP, SLOT( openPlaylist() ), |
|---|
| | 66 | manageMenu->addAction( qtr("Open playlist file"), THEDP, SLOT( openPlaylist() ), |
|---|
| 67 | 67 | qtr( "Ctrl+L") ); |
|---|
| 68 | 68 | manageMenu->addSeparator(); |
|---|
| 69 | | manageMenu->addAction( "Dock playlist", this, SLOT( dock() ), |
|---|
| | 69 | manageMenu->addAction( qtr("Dock playlist"), this, SLOT( dock() ), |
|---|
| 70 | 70 | qtr( "Ctrl+U" ) ); |
|---|
| 71 | 71 | bar->addMenu( manageMenu ); |
|---|
| r9af4129 |
r2b452b3 |
|
| 282 | 282 | menu->addSeparator(); |
|---|
| 283 | 283 | menu->addAction( qtr("Switch to skins"), THEDP, SLOT(switchToSkins()), |
|---|
| 284 | | qtr("Ctrl+Z") ); |
|---|
| | 284 | "Ctrl+Z" ); |
|---|
| 285 | 285 | } |
|---|
| 286 | 286 | |
|---|
| rdd3df1a |
r2b452b3 |
|
| 24 | 24 | <widget class="QCheckBox" name="enableAudio" > |
|---|
| 25 | 25 | <property name="text" > |
|---|
| 26 | | <string>Enable audio</string> |
|---|
| | 26 | <string>_("Enable audio")</string> |
|---|
| 27 | 27 | </property> |
|---|
| 28 | 28 | <property name="checked" > |
|---|
| … | … | |
| 34 | 34 | <widget class="QGroupBox" name="groupBox_3" > |
|---|
| 35 | 35 | <property name="title" > |
|---|
| 36 | | <string>General Audio</string> |
|---|
| | 36 | <string>_("General Audio")</string> |
|---|
| 37 | 37 | </property> |
|---|
| 38 | 38 | <layout class="QGridLayout" > |
|---|
| … | … | |
| 46 | 46 | <widget class="QLabel" name="label_8" > |
|---|
| 47 | 47 | <property name="text" > |
|---|
| 48 | | <string>Force detection of Dolby Surround</string> |
|---|
| | 48 | <string>_("Force detection of Dolby Surround")</string> |
|---|
| 49 | 49 | </property> |
|---|
| 50 | 50 | </widget> |
|---|
| … | … | |
| 74 | 74 | <widget class="QCheckBox" name="spdifBox" > |
|---|
| 75 | 75 | <property name="text" > |
|---|
| 76 | | <string>Use S/PDIF when available</string> |
|---|
| | 76 | <string>_("Use S/PDIF when available")</string> |
|---|
| 77 | 77 | </property> |
|---|
| 78 | 78 | </widget> |
|---|
| … | … | |
| 81 | 81 | <widget class="QLabel" name="label" > |
|---|
| 82 | 82 | <property name="text" > |
|---|
| 83 | | <string>Preferred audio language</string> |
|---|
| | 83 | <string>_("Preferred audio language")</string> |
|---|
| 84 | 84 | </property> |
|---|
| 85 | 85 | </widget> |
|---|
| … | … | |
| 109 | 109 | <widget class="QLabel" name="label_2" > |
|---|
| 110 | 110 | <property name="text" > |
|---|
| 111 | | <string>Default volume</string> |
|---|
| | 111 | <string>_("Default volume")</string> |
|---|
| 112 | 112 | </property> |
|---|
| 113 | 113 | </widget> |
|---|
| … | … | |
| 137 | 137 | <widget class="QPushButton" name="fileBrowseButton" > |
|---|
| 138 | 138 | <property name="text" > |
|---|
| 139 | | <string>Browse...</string> |
|---|
| | 139 | <string>_("Browse...")</string> |
|---|
| 140 | 140 | </property> |
|---|
| 141 | 141 | </widget> |
|---|
| … | … | |
| 144 | 144 | <widget class="QLabel" name="label_7" > |
|---|
| 145 | 145 | <property name="text" > |
|---|
| 146 | | <string>File</string> |
|---|
| | 146 | <string>_("File")</string> |
|---|
| 147 | 147 | </property> |
|---|
| 148 | 148 | </widget> |
|---|
| … | … | |
| 151 | 151 | <widget class="QPushButton" name="OSSBrowse" > |
|---|
| 152 | 152 | <property name="text" > |
|---|
| 153 | | <string>Browse...</string> |
|---|
| | 153 | <string>_("Browse...")</string> |
|---|
| 154 | 154 | </property> |
|---|
| 155 | 155 | </widget> |
|---|
| … | … | |
| 161 | 161 | <widget class="QLabel" name="OSSLabel" > |
|---|
| 162 | 162 | <property name="text" > |
|---|
| 163 | | <string>OSS Device</string> |
|---|
| | 163 | <string>_("OSS Device")</string> |
|---|
| 164 | 164 | </property> |
|---|
| 165 | 165 | </widget> |
|---|
| … | … | |
| 168 | 168 | <widget class="QLabel" name="DirectXLabel" > |
|---|
| 169 | 169 | <property name="text" > |
|---|
| 170 | | <string>DirectX Device</string> |
|---|
| | 170 | <string>_("DirectX Device")</string> |
|---|
| 171 | 171 | </property> |
|---|
| 172 | 172 | </widget> |
|---|
| … | … | |
| 178 | 178 | <widget class="QLabel" name="alsaLabel" > |
|---|
| 179 | 179 | <property name="text" > |
|---|
| 180 | | <string>Alsa Device</string> |
|---|
| | 180 | <string>_("Alsa Device")</string> |
|---|
| 181 | 181 | </property> |
|---|
| 182 | 182 | </widget> |
|---|
| … | … | |
| 191 | 191 | <widget class="QLabel" name="label_3" > |
|---|
| 192 | 192 | <property name="text" > |
|---|
| 193 | | <string>Type</string> |
|---|
| | 193 | <string>_("Type")</string> |
|---|
| 194 | 194 | </property> |
|---|
| 195 | 195 | </widget> |
|---|
| … | … | |
| 201 | 201 | <widget class="QGroupBox" name="groupBox" > |
|---|
| 202 | 202 | <property name="title" > |
|---|
| 203 | | <string>Effects</string> |
|---|
| | 203 | <string>_("Effects")</string> |
|---|
| 204 | 204 | </property> |
|---|
| 205 | 205 | <layout class="QGridLayout" > |
|---|
| … | … | |
| 216 | 216 | <widget class="QCheckBox" name="headphoneEffect" > |
|---|
| 217 | 217 | <property name="text" > |
|---|
| 218 | | <string>Headphone surround effect</string> |
|---|
| | 218 | <string>_("Headphone surround effect")</string> |
|---|
| 219 | 219 | </property> |
|---|
| 220 | 220 | </widget> |
|---|
| … | … | |
| 223 | 223 | <widget class="QCheckBox" name="volumeNormalizer" > |
|---|
| 224 | 224 | <property name="text" > |
|---|
| 225 | | <string>Volume normalizer</string> |
|---|
| | 225 | <string>_("Volume normalizer")</string> |
|---|
| 226 | 226 | </property> |
|---|
| 227 | 227 | </widget> |
|---|
| … | … | |
| 230 | 230 | <widget class="QLabel" name="label_5" > |
|---|
| 231 | 231 | <property name="text" > |
|---|
| 232 | | <string>Visualisation</string> |
|---|
| | 232 | <string>_("Visualisation")</string> |
|---|
| 233 | 233 | </property> |
|---|
| 234 | 234 | </widget> |
|---|
| rdd3df1a |
r2b452b3 |
|
| 24 | 24 | <widget class="QGroupBox" name="groupBox" > |
|---|
| 25 | 25 | <property name="title" > |
|---|
| 26 | | <string>Disk Devices</string> |
|---|
| | 26 | <string>_("Disk Devices")</string> |
|---|
| 27 | 27 | </property> |
|---|
| 28 | 28 | <layout class="QGridLayout" > |
|---|
| … | … | |
| 36 | 36 | <widget class="QLabel" name="label" > |
|---|
| 37 | 37 | <property name="text" > |
|---|
| 38 | | <string>Disk Device</string> |
|---|
| | 38 | <string>_("Disk Device")</string> |
|---|
| 39 | 39 | </property> |
|---|
| 40 | 40 | </widget> |
|---|
| … | … | |
| 46 | 46 | <widget class="QPushButton" name="DVDBrowse" > |
|---|
| 47 | 47 | <property name="text" > |
|---|
| 48 | | <string>Browse...</string> |
|---|
| | 48 | <string>_("Browse...")</string> |
|---|
| 49 | 49 | </property> |
|---|
| 50 | 50 | </widget> |
|---|
| … | … | |
| 56 | 56 | <widget class="QGroupBox" name="groupBox_2" > |
|---|
| 57 | 57 | <property name="title" > |
|---|
| 58 | | <string>Network</string> |
|---|
| | 58 | <string>_("Network")</string> |
|---|
| 59 | 59 | </property> |
|---|
| 60 | 60 | <layout class="QGridLayout" > |
|---|
| … | … | |
| 68 | 68 | <widget class="QLabel" name="label" > |
|---|
| 69 | 69 | <property name="text" > |
|---|
| 70 | | <string>Default Network caching in ms</string> |
|---|
| | 70 | <string>_("Default Network caching in ms")</string> |
|---|
| 71 | 71 | </property> |
|---|
| 72 | 72 | </widget> |
|---|
| … | … | |
| 75 | 75 | <widget class="QLabel" name="label_7" > |
|---|
| 76 | 76 | <property name="text" > |
|---|
| 77 | | <string>HTTP Proxy</string> |
|---|
| | 77 | <string>_("HTTP Proxy")</string> |
|---|
| 78 | 78 | </property> |
|---|
| 79 | 79 | </widget> |
|---|
| … | … | |
| 114 | 114 | <widget class="QLabel" name="label_4" > |
|---|
| 115 | 115 | <property name="text" > |
|---|
| 116 | | <string>Server Default Port</string> |
|---|
| | 116 | <string>_("Server Default Port")</string> |
|---|
| 117 | 117 | </property> |
|---|
| 118 | 118 | </widget> |
|---|
| … | … | |
| 124 | 124 | <widget class="QGroupBox" name="groupBox_3" > |
|---|
| 125 | 125 | <property name="title" > |
|---|
| 126 | | <string>Codecs / Muxers</string> |
|---|
| | 126 | <string>_("Codecs / Muxers")</string> |
|---|
| 127 | 127 | </property> |
|---|
| 128 | 128 | <layout class="QGridLayout" > |
|---|
| … | … | |
| 136 | 136 | <widget class="QLabel" name="label_5" > |
|---|
| 137 | 137 | <property name="text" > |
|---|
| 138 | | <string>Post-Processing Quality</string> |
|---|
| | 138 | <string>_("Post-Processing Quality")</string> |
|---|
| 139 | 139 | </property> |
|---|
| 140 | 140 | </widget> |
|---|
| … | … | |
| 159 | 159 | <widget class="QLabel" name="label_6" > |
|---|
| 160 | 160 | <property name="text" > |
|---|
| 161 | | <string>Repair AVI files</string> |
|---|
| | 161 | <string>_("Repair AVI files")</string> |
|---|
| 162 | 162 | </property> |
|---|
| 163 | 163 | </widget> |
|---|
| … | … | |
| 169 | 169 | <widget class="QCheckBox" name="systemCodecBox" > |
|---|
| 170 | 170 | <property name="text" > |
|---|
| 171 | | <string>Use system codecs if available (better quality)</string> |
|---|
| | 171 | <string>_("Use system codecs if available (better quality)")</string> |
|---|
| 172 | 172 | </property> |
|---|
| 173 | 173 | </widget> |
|---|
| … | … | |
| 176 | 176 | <widget class="QCheckBox" name="RTSP_TCPBox" > |
|---|
| 177 | 177 | <property name="text" > |
|---|
| 178 | | <string>Use RTP over RTSP (TCP)</string> |
|---|
| | 178 | <string>_("Use RTP over RTSP (TCP)")</string> |
|---|
| 179 | 179 | </property> |
|---|
| 180 | 180 | </widget> |
|---|
| … | … | |
| 186 | 186 | <widget class="QGroupBox" name="groupBox_4" > |
|---|
| 187 | 187 | <property name="title" > |
|---|
| 188 | | <string>Access Filter</string> |
|---|
| | 188 | <string>_("Access Filter")</string> |
|---|
| 189 | 189 | </property> |
|---|
| 190 | 190 | <layout class="QHBoxLayout" > |
|---|
| … | … | |
| 198 | 198 | <widget class="QCheckBox" name="timeshiftBox" > |
|---|
| 199 | 199 | <property name="text" > |
|---|
| 200 | | <string>Timeshift</string> |
|---|
| | 200 | <string>_("Timeshift")</string> |
|---|
| 201 | 201 | </property> |
|---|
| 202 | 202 | </widget> |
|---|
| … | … | |
| 205 | 205 | <widget class="QCheckBox" name="RecordBox" > |
|---|
| 206 | 206 | <property name="text" > |
|---|
| 207 | | <string>Record</string> |
|---|
| | 207 | <string>_("Record")</string> |
|---|
| 208 | 208 | </property> |
|---|
| 209 | 209 | </widget> |
|---|
| … | … | |
| 212 | 212 | <widget class="QCheckBox" name="DumpBox" > |
|---|
| 213 | 213 | <property name="text" > |
|---|
| 214 | | <string>Dump</string> |
|---|
| | 214 | <string>_("Dump")</string> |
|---|
| 215 | 215 | </property> |
|---|
| 216 | 216 | </widget> |
|---|
| rdd3df1a |
r2b452b3 |
|
| 23 | 23 | <widget class="QGroupBox" name="groupBox" > |
|---|
| 24 | 24 | <property name="title" > |
|---|
| 25 | | <string>Default Interface</string> |
|---|
| | 25 | <string>_("Default Interface")</string> |
|---|
| 26 | 26 | </property> |
|---|
| 27 | 27 | <layout class="QGridLayout" > |
|---|
| … | … | |
| 53 | 53 | </property> |
|---|
| 54 | 54 | <property name="text" > |
|---|
| 55 | | <string>This is VLC's skinnable interface. You can download skins at http://www.videolan.org/vlc/skins.php to customize your player.</string> |
|---|
| | 55 | <string>_("This is VLC's skinnable interface. You can download skins at http://www.videolan.org/vlc/skins.php to customize your player.")</string> |
|---|
| 56 | 56 | </property> |
|---|
| 57 | 57 | <property name="alignment" > |
|---|
| … | … | |
| 72 | 72 | <widget class="QPushButton" name="skinBrowse" > |
|---|
| 73 | 73 | <property name="text" > |
|---|
| 74 | | <string>Browse...</string> |
|---|
| | 74 | <string>_("Browse...")</string> |
|---|
| 75 | 75 | </property> |
|---|
| 76 | 76 | </widget> |
|---|
| … | … | |
| 79 | 79 | <widget class="QLabel" name="label_4" > |
|---|
| 80 | 80 | <property name="text" > |
|---|
| 81 | | <string>Skin File</string> |
|---|
| | 81 | <string>_("Skin File")</string> |
|---|
| 82 | 82 | </property> |
|---|
| 83 | 83 | </widget> |
|---|
| … | … | |
| 92 | 92 | </property> |
|---|
| 93 | 93 | <property name="text" > |
|---|
| 94 | | <string>This is VLC's default interface, with a native look and feel.</string> |
|---|
| | 94 | <string>_("This is VLC's default interface, with a native look and feel.")</string> |
|---|
| 95 | 95 | </property> |
|---|
| 96 | 96 | <property name="textFormat" > |
|---|
| … | … | |
| 108 | 108 | <widget class="QRadioButton" name="qt4" > |
|---|
| 109 | 109 | <property name="text" > |
|---|
| 110 | | <string>Default</string> |
|---|
| | 110 | <string>_("Default")</string> |
|---|
| 111 | 111 | </property> |
|---|
| 112 | 112 | </widget> |
|---|
| … | … | |
| 115 | 115 | <widget class="QRadioButton" name="skins" > |
|---|
| 116 | 116 | <property name="text" > |
|---|
| 117 | | <string>Skins</string> |
|---|
| | 117 | <string>_("Skins")</string> |
|---|
| 118 | 118 | </property> |
|---|
| 119 | 119 | </widget> |
|---|
| … | … | |
| 122 | 122 | <widget class="QCheckBox" name="qtAlwaysVideo" > |
|---|
| 123 | 123 | <property name="text" > |
|---|
| 124 | | <string>Always display the video</string> |
|---|
| | 124 | <string>_("Always display the video")</string> |
|---|
| 125 | 125 | </property> |
|---|
| 126 | 126 | </widget> |
|---|
| … | … | |
| 135 | 135 | <widget class="QLabel" name="languageLabel" > |
|---|
| 136 | 136 | <property name="text" > |
|---|
| 137 | | <string>Language</string> |
|---|
| | 137 | <string>_("Language")</string> |
|---|
| 138 | 138 | </property> |
|---|
| 139 | 139 | </widget> |
|---|
| … | … | |
| 142 | 142 | <widget class="QGroupBox" name="OneInterfaceBox" > |
|---|
| 143 | 143 | <property name="title" > |
|---|
| 144 | | <string>Instances</string> |
|---|
| | 144 | <string>_("Instances")</string> |
|---|
| 145 | 145 | </property> |
|---|
| 146 | 146 | <layout class="QVBoxLayout" > |
|---|
| … | … | |
| 154 | 154 | <widget class="QCheckBox" name="OneInterfaceMode" > |
|---|
| 155 | 155 | <property name="text" > |
|---|
| 156 | | <string>Allow only one instance</string> |
|---|
| | 156 | <string>_("Allow only one instance")</string> |
|---|
| 157 | 157 | </property> |
|---|
| 158 | 158 | </widget> |
|---|
| … | … | |
| 161 | 161 | <widget class="QCheckBox" name="EnqueueOneInterfaceMode" > |
|---|
| 162 | 162 | <property name="text" > |
|---|
| 163 | | <string>Enqueue files in playlist when in one interface mode</string> |
|---|
| | 163 | <string>_("Enqueue files in playlist when in one interface mode")</string> |
|---|
| 164 | 164 | </property> |
|---|
| 165 | 165 | </widget> |
|---|
| rdd3df1a |
r2b452b3 |
|
| 24 | 24 | <widget class="QCheckBox" name="enableVideo" > |
|---|
| 25 | 25 | <property name="text" > |
|---|
| 26 | | <string>Enable video</string> |
|---|
| | 26 | <string>_("Enable video")</string> |
|---|
| 27 | 27 | </property> |
|---|
| 28 | 28 | <property name="checked" > |
|---|
| … | … | |
| 34 | 34 | <widget class="QGroupBox" name="displayBox" > |
|---|
| 35 | 35 | <property name="title" > |
|---|
| 36 | | <string>Display</string> |
|---|
| | 36 | <string>_("Display")</string> |
|---|
| 37 | 37 | </property> |
|---|
| 38 | 38 | <layout class="QGridLayout" > |
|---|
| … | … | |
| 46 | 46 | <widget class="QCheckBox" name="windowDecorations" > |
|---|
| 47 | 47 | <property name="text" > |
|---|
| 48 | | <string>Window decorations</string> |
|---|
| | 48 | <string>_("Window decorations")</string> |
|---|
| 49 | 49 | </property> |
|---|
| 50 | 50 | <property name="checked" > |
|---|
| … | … | |
| 59 | 59 | <widget class="QCheckBox" name="fullscreen" > |
|---|
| 60 | 60 | <property name="text" > |
|---|
| 61 | | <string>Fullscreen</string> |
|---|
| | 61 | <string>_("Fullscreen")</string> |
|---|
| 62 | 62 | </property> |
|---|
| 63 | 63 | </widget> |
|---|
| … | … | |
| 66 | 66 | <widget class="QCheckBox" name="alwaysOnTop" > |
|---|
| 67 | 67 | <property name="text" > |
|---|
| 68 | | <string>Always on top</string> |
|---|
| | 68 | <string>_("Always on top")</string> |
|---|
| 69 | 69 | </property> |
|---|
| 70 | 70 | </widget> |
|---|
| … | … | |
| 76 | 76 | <widget class="QLabel" name="label_4" > |
|---|
| 77 | 77 | <property name="text" > |
|---|
| 78 | | <string>Output</string> |
|---|
| | 78 | <string>_("Output")</string> |
|---|
| 79 | 79 | </property> |
|---|
| 80 | 80 | </widget> |
|---|
| … | … | |
| 83 | 83 | <widget class="QCheckBox" name="overlay" > |
|---|
| 84 | 84 | <property name="text" > |
|---|
| 85 | | <string>Accelerated video output</string> |
|---|
| | 85 | <string>_("Accelerated video output")</string> |
|---|
| 86 | 86 | </property> |
|---|
| 87 | 87 | <property name="checked" > |
|---|
| … | … | |
| 96 | 96 | <widget class="QCheckBox" name="skipFrames" > |
|---|
| 97 | 97 | <property name="text" > |
|---|
| 98 | | <string>Skip Frames</string> |
|---|
| | 98 | <string>_("Skip Frames")</string> |
|---|
| 99 | 99 | </property> |
|---|
| 100 | 100 | <property name="checked" > |
|---|
| … | … | |
| 106 | 106 | <widget class="QCheckBox" name="overlay" > |
|---|
| 107 | 107 | <property name="text" > |
|---|
| 108 | | <string>Overlay</string> |
|---|
| | 108 | <string>_("Overlay")</string> |
|---|
| 109 | 109 | </property> |
|---|
| 110 | 110 | <property name="checked" > |
|---|
| … | … | |
| 119 | 119 | <widget class="QGroupBox" name="directXBox" > |
|---|
| 120 | 120 | <property name="title" > |
|---|
| 121 | | <string>DirectX</string> |
|---|
| | 121 | <string>_("DirectX")</string> |
|---|
| 122 | 122 | </property> |
|---|
| 123 | 123 | <layout class="QGridLayout" > |
|---|
| … | … | |
| 134 | 134 | <widget class="QLabel" name="label_5" > |
|---|
| 135 | 135 | <property name="text" > |
|---|
| 136 | | <string>Display Device</string> |
|---|
| | 136 | <string>_("Display Device")</string> |
|---|
| 137 | 137 | </property> |
|---|
| 138 | 138 | </widget> |
|---|
| … | … | |
| 141 | 141 | <widget class="QCheckBox" name="wallpaperMode" > |
|---|
| 142 | 142 | <property name="text" > |
|---|
| 143 | | <string>Enable Wallpaper Mode</string> |
|---|
| | 143 | <string>_("Enable Wallpaper Mode")</string> |
|---|
| 144 | 144 | </property> |
|---|
| 145 | 145 | </widget> |
|---|
| … | … | |
| 151 | 151 | <widget class="QGroupBox" name="groupBox" > |
|---|
| 152 | 152 | <property name="title" > |
|---|
| 153 | | <string>Video snapshots</string> |
|---|
| | 153 | <string>_("Video snapshots")</string> |
|---|
| 154 | 154 | </property> |
|---|
| 155 | 155 | <layout class="QGridLayout" > |
|---|
| … | … | |
| 166 | 166 | <widget class="QPushButton" name="snapshotsDirectoryBrowse" > |
|---|
| 167 | 167 | <property name="text" > |
|---|
| 168 | | <string>Browse...</string> |
|---|
| | 168 | <string>_("Browse...")</string> |
|---|
| 169 | 169 | </property> |
|---|
| 170 | 170 | </widget> |
|---|
| … | … | |
| 173 | 173 | <widget class="QLabel" name="label" > |
|---|
| 174 | 174 | <property name="text" > |
|---|
| 175 | | <string>Directory</string> |
|---|
| | 175 | <string>_("Directory")</string> |
|---|
| 176 | 176 | </property> |
|---|
| 177 | 177 | </widget> |
|---|
| … | … | |
| 180 | 180 | <widget class="QLabel" name="label_2" > |
|---|
| 181 | 181 | <property name="text" > |
|---|
| 182 | | <string>Prefix</string> |
|---|
| | 182 | <string>_("Prefix")</string> |
|---|
| 183 | 183 | </property> |
|---|
| 184 | 184 | </widget> |
|---|
| … | … | |
| 194 | 194 | <widget class="QLabel" name="label_3" > |
|---|
| 195 | 195 | <property name="text" > |
|---|
| 196 | | <string>Format</string> |
|---|
| | 196 | <string>_("Format")</string> |
|---|
| 197 | 197 | </property> |
|---|
| 198 | 198 | </widget> |
|---|
| … | … | |
| 204 | 204 | <widget class="QCheckBox" name="snapshotsSequentialNumbering" > |
|---|
| 205 | 205 | <property name="text" > |
|---|
| 206 | | <string>Sequential numbering</string> |
|---|
| | 206 | <string>_("Sequential numbering")</string> |
|---|
| 207 | 207 | </property> |
|---|
| 208 | 208 | </widget> |
|---|
| r5743cb8 |
r2b452b3 |
|
| 23 | 23 | <widget class="QCheckBox" name="invertEnable" > |
|---|
| 24 | 24 | <property name="text" > |
|---|
| 25 | | <string>Color invert</string> |
|---|
| | 25 | <string>_("Color invert")</string> |
|---|
| 26 | 26 | </property> |
|---|
| 27 | 27 | </widget> |
|---|
| … | … | |
| 30 | 30 | <widget class="QGroupBox" name="colorthresEnable" > |
|---|
| 31 | 31 | <property name="title" > |
|---|
| 32 | | <string>Color threshold</string> |
|---|
| | 32 | <string>_("Color threshold")</string> |
|---|
| 33 | 33 | </property> |
|---|
| 34 | 34 | <property name="checkable" > |
|---|
| … | … | |
| 48 | 48 | <widget class="QLabel" name="label_14" > |
|---|
| 49 | 49 | <property name="text" > |
|---|
| 50 | | <string>Similarity</string> |
|---|
| | 50 | <string>_("Similarity")</string> |
|---|
| 51 | 51 | </property> |
|---|
| 52 | 52 | </widget> |
|---|
| … | … | |
| 69 | 69 | <widget class="QLabel" name="label_13" > |
|---|
| 70 | 70 | <property name="text" > |
|---|
| 71 | | <string>Saturation</string> |
|---|
| | 71 | <string>_("Saturation")</string> |
|---|
| 72 | 72 | </property> |
|---|
| 73 | 73 | </widget> |
|---|
| … | … | |
| 121 | 121 | <widget class="QGroupBox" name="advancedVideoFilterBox" > |
|---|
| 122 | 122 | <property name="title" > |
|---|
| 123 | | <string>Advanced video filter controls</string> |
|---|
| | 123 | <string>_("Advanced video filter controls")</string> |
|---|
| 124 | 124 | </property> |
|---|
| 125 | 125 | <layout class="QGridLayout" > |
|---|
| … | … | |
| 139 | 139 | <widget class="QPushButton" name="filtersResetButton" > |
|---|
| 140 | 140 | <property name="text" > |
|---|
| 141 | | <string>Reset</string> |
|---|
| | 141 | <string>_("Reset")</string> |
|---|
| 142 | 142 | </property> |
|---|
| 143 | 143 | </widget> |
|---|
| … | … | |
| 146 | 146 | <widget class="QPushButton" name="filtersUpdateButton" > |
|---|
| 147 | 147 | <property name="text" > |
|---|
| 148 | | <string>Update</string> |
|---|
| | 148 | <string>_("Update")</string> |
|---|
| 149 | 149 | </property> |
|---|
| 150 | 150 | </widget> |
|---|
| … | … | |
| 153 | 153 | <widget class="QLabel" name="label_33" > |
|---|
| 154 | 154 | <property name="text" > |
|---|
| 155 | | <string>Video filters</string> |
|---|
| | 155 | <string>_("Video filters")</string> |
|---|
| 156 | 156 | </property> |
|---|
| 157 | 157 | </widget> |
|---|
| … | … | |
| 160 | 160 | <widget class="QLabel" name="label_32" > |
|---|
| 161 | 161 | <property name="text" > |
|---|
| 162 | | <string>Vout filters</string> |
|---|
| | 162 | <string>_("Vout filters")</string> |
|---|
| 163 | 163 | </property> |
|---|
| 164 | 164 | </widget> |
|---|
| … | … | |
| 167 | 167 | <widget class="QLabel" name="label_34" > |
|---|
| 168 | 168 | <property name="text" > |
|---|
| 169 | | <string>Subpicture filters</string> |
|---|
| | 169 | <string>_("Subpicture filters")</string> |
|---|
| 170 | 170 | </property> |
|---|
| 171 | 171 | </widget> |
|---|
| … | … | |
| 180 | 180 | <widget class="QGroupBox" name="eraseEnable" > |
|---|
| 181 | 181 | <property name="title" > |
|---|
| 182 | | <string>Logo erase</string> |
|---|
| | 182 | <string>_("Logo erase")</string> |
|---|
| 183 | 183 | </property> |
|---|
| 184 | 184 | <property name="checkable" > |
|---|
| … | … | |
| 198 | 198 | <widget class="QLabel" name="label_16" > |
|---|
| 199 | 199 | <property name="text" > |
|---|
| 200 | | <string>Top</string> |
|---|
| | 200 | <string>_("Top")</string> |
|---|
| 201 | 201 | </property> |
|---|
| 202 | 202 | </widget> |
|---|
| … | … | |
| 205 | 205 | <widget class="QLabel" name="label_17" > |
|---|
| 206 | 206 | <property name="text" > |
|---|
| 207 | | <string>Left</string> |
|---|
| | 207 | <string>_("Left")</string> |
|---|
| 208 | 208 | </property> |
|---|
| 209 | 209 | </widget> |
|---|
| … | … | |
| 221 | 221 | <widget class="QLabel" name="label_15" > |
|---|
| 222 | 222 | <property name="text" > |
|---|
| 223 | | <string>Mask</string> |
|---|
| | 223 | <string>_("Mask")</string> |
|---|
| 224 | 224 | </property> |
|---|
| 225 | 225 | </widget> |
|---|
| … | … | |
| 231 | 231 | <widget class="QCheckBox" name="rippleEnable" > |
|---|
| 232 | 232 | <property name="text" > |
|---|
| 233 | | <string>Water effect</string> |
|---|
| | 233 | <string>_("Water effect")</string> |
|---|
| 234 | 234 | </property> |
|---|
| 235 | 235 | </widget> |
|---|
| … | … | |
| 238 | 238 | <widget class="QCheckBox" name="waveEnable" > |
|---|
| 239 | 239 | <property name="text" > |
|---|
| 240 | | <string>Waves</string> |
|---|
| | 240 | <string>_("Waves")</string> |
|---|
| 241 | 241 | </property> |
|---|
| 242 | 242 | </widget> |
|---|
| … | … | |
| 245 | 245 | <widget class="QGroupBox" name="logoEnable" > |
|---|
| 246 | 246 | <property name="title" > |
|---|
| 247 | | <string>Add logo</string> |
|---|
| | 247 | <string>_("Add logo")</string> |
|---|
| 248 | 248 | </property> |
|---|
| 249 | 249 | <property name="checkable" > |
|---|
| … | … | |
| 263 | 263 | <widget class="QLabel" name="label_22" > |
|---|
| 264 | 264 | <property name="text" > |
|---|
| 265 | | <string>Transparency</string> |
|---|
| | 265 | <string>_("Transparency")</string> |
|---|
| 266 | 266 | </property> |
|---|
| 267 | 267 | </widget> |
|---|
| … | … | |
| 270 | 270 | <widget class="QLabel" name="label_21" > |
|---|
| 271 | 271 | <property name="text" > |
|---|
| 272 | | <string>Left</string> |
|---|
| | 272 | <string>_("Left")</string> |
|---|
| 273 | 273 | </property> |
|---|
| 274 | 274 | </widget> |
|---|
| … | … | |
| 277 | 277 | <widget class="QLabel" name="label_20" > |
|---|
| 278 | 278 | <property name="text" > |
|---|
| 279 | | <string>Top</string> |
|---|
| | 279 | <string>_("Top")</string> |
|---|
| 280 | 280 | </property> |
|---|
| 281 | 281 | </widget> |
|---|
| … | … | |
| 297 | 297 | <widget class="QLabel" name="label_19" > |
|---|
| 298 | 298 | <property name="text" > |
|---|
| 299 | | <string>Logo</string> |
|---|
| | 299 | <string>_("Logo")</string> |
|---|
| 300 | 300 | </property> |
|---|
| 301 | 301 | </widget> |
|---|
| … | … | |
| 310 | 310 | <widget class="QCheckBox" name="magnifyEnable" > |
|---|
| 311 | 311 | <property name="text" > |
|---|
| 312 | | <string>Magnification</string> |
|---|
| | 312 | <string>_("Magnification")</string> |
|---|
| 313 | 313 | </property> |
|---|
| 314 | 314 | </widget> |
|---|
| … | … | |
| 317 | 317 | <widget class="QGroupBox" name="marqEnable" > |
|---|
| 318 | 318 | <property name="title" > |
|---|
| 319 | | <string>Add text</string> |
|---|
| | 319 | <string>_("Add text")</string> |
|---|
| 320 | 320 | </property> |
|---|
| 321 | 321 | <property name="checkable" > |
|---|
| … | … | |
| 335 | 335 | <widget class="QLabel" name="label_24" > |
|---|
| 336 | 336 | <property name="text" > |
|---|
| 337 | | <string>Position</string> |
|---|
| | 337 | <string>_("Position")</string> |
|---|
| 338 | 338 | </property> |
|---|
| 339 | 339 | </widget> |
|---|
| … | … | |
| 342 | 342 | <widget class="QLabel" name="label_23" > |
|---|
| 343 | 343 | <property name="text" > |
|---|
| 344 | | <string>Text</string> |
|---|
| | 344 | <string>_("Text")</string> |
|---|
| 345 | 345 | </property> |
|---|
| 346 | 346 | </widget> |
|---|
| … | … | |
| 358 | 358 | <widget class="QGroupBox" name="cloneEnable" > |
|---|
| 359 | 359 | <property name="title" > |
|---|
| 360 | | <string>Clone</string> |
|---|
| | 360 | <string>_("Clone")</string> |
|---|
| 361 | 361 | </property> |
|---|
| 362 | 362 | <property name="checkable" > |
|---|
| … | … | |
| 376 | 376 | <widget class="QLabel" name="label_9" > |
|---|
| 377 | 377 | <property name="text" > |
|---|
| 378 | | <string>Number of clones</string> |
|---|
| | 378 | <string>_("Number of clones")</string> |
|---|
| 379 | 379 | </property> |
|---|
| 380 | 380 | </widget> |
|---|
| … | … | |
| 396 | 396 | <widget class="QGroupBox" name="wallEnable" > |
|---|
| 397 | 397 | <property name="title" > |
|---|
| 398 | | <string>Wall</string> |
|---|
| | 398 | <string>_("Wall")</string> |
|---|
| 399 | 399 | </property> |
|---|
| 400 | 400 | <property name="checkable" > |
|---|
| … | … | |
| 414 | 414 | <widget class="QLabel" name="label_31" > |
|---|
| 415 | 415 | <property name="text" > |
|---|
| 416 | | <string>Rows</string> |
|---|
| | 416 | <string>_("Rows")</string> |
|---|
| 417 | 417 | </property> |
|---|
| 418 | 418 | </widget> |
|---|
| … | … | |
| 421 | 421 | <widget class="QLabel" name="label_30" > |
|---|
| 422 | 422 | <property name="text" > |
|---|
| 423 | | <string>Columns</string> |
|---|
| | 423 | <string>_("Columns")</string> |
|---|
| 424 | 424 | </property> |
|---|
| 425 | 425 | </widget> |
|---|
| … | … | |
| 451 | 451 | <widget class="QGroupBox" name="puzzleEnable" > |
|---|
| 452 | 452 | <property name="title" > |
|---|
| 453 | | <string>Puzzle game</string> |
|---|
| | 453 | <string>_("Puzzle game")</string> |
|---|
| 454 | 454 | </property> |
|---|
| 455 | 455 | <property name="checkable" > |
|---|
| … | … | |
| 489 | 489 | <widget class="QCheckBox" name="puzzleBlackSlotCheck" > |
|---|
| 490 | 490 | <property name="text" > |
|---|
| 491 | | <string>Black slot</string> |
|---|
| | 491 | <string>_("Black slot")</string> |
|---|
| 492 | 492 | </property> |
|---|
| 493 | 493 | </widget> |
|---|
| … | … | |
| 496 | 496 | <widget class="QLabel" name="label_26" > |
|---|
| 497 | 497 | <property name="text" > |
|---|
| 498 | | <string>Columns</string> |
|---|
| | 498 | <string>_("Columns")</string> |
|---|
| 499 | 499 | </property> |
|---|
| 500 | 500 | </widget> |
|---|
| … | … | |
| 503 | 503 | <widget class="QLabel" name="label_27" > |
|---|
| 504 | 504 | <property name="text" > |
|---|
| 505 | | <string>Rows</string> |
|---|
| | 505 | <string>_("Rows")</string> |
|---|
| 506 | 506 | </property> |
|---|
| 507 | 507 | </widget> |
|---|
| … | … | |
| 513 | 513 | <widget class="QGroupBox" name="rotateEnable" > |
|---|
| 514 | 514 | <property name="title" > |
|---|
| 515 | | <string>Rotate</string> |
|---|
| | 515 | <string>_("Rotate")</string> |
|---|
| 516 | 516 | </property> |
|---|
| 517 | 517 | <property name="checkable" > |
|---|
| … | … | |
| 544 | 544 | <widget class="QLabel" name="label_28" > |
|---|
| 545 | 545 | <property name="text" > |
|---|
| 546 | | <string>Angle</string> |
|---|
| | 546 | <string>_("Angle")</string> |
|---|
| 547 | 547 | </property> |
|---|
| 548 | 548 | </widget> |
|---|
| … | … | |
| 554 | 554 | <widget class="QGroupBox" name="transformEnable" > |
|---|
| 555 | 555 | <property name="title" > |
|---|
| 556 | | <string>Transform</string> |
|---|
| | 556 | <string>_("Transform")</string> |
|---|
| 557 | 557 | </property> |
|---|
| 558 | 558 | <property name="checkable" > |
|---|
| … | … | |
| 578 | 578 | <widget class="QGroupBox" name="gradientEnable" > |
|---|
| 579 | 579 | <property name="title" > |
|---|
| 580 | | <string>Gradient</string> |
|---|
| | 580 | <string>_("Gradient")</string> |
|---|
| 581 | 581 | </property> |
|---|
| 582 | 582 | <property name="checkable" > |
|---|
| … | … | |
| 596 | 596 | <widget class="QCheckBox" name="gradientCartoonCheck" > |
|---|
| 597 | 597 | <property name="text" > |
|---|
| 598 | | <string>Cartoon</string> |
|---|
| | 598 | <string>_("Cartoon")</string> |
|---|
| 599 | 599 | </property> |
|---|
| 600 | 600 | </widget> |
|---|
| … | … | |
| 603 | 603 | <widget class="QCheckBox" name="gradientTypeCheck" > |
|---|
| 604 | 604 | <property name="text" > |
|---|
| 605 | | <string>Color</string> |
|---|
| | 605 | <string>_("Color")</string> |
|---|
| 606 | 606 | </property> |
|---|
| 607 | 607 | </widget> |
|---|
| … | … | |
| 610 | 610 | <widget class="QLabel" name="label_18" > |
|---|
| 611 | 611 | <property name="text" > |
|---|
| 612 | | <string>Mode</string> |
|---|
| | 612 | <string>_("Mode")</string> |
|---|
| 613 | 613 | </property> |
|---|
| 614 | 614 | </widget> |
|---|
| … | … | |
| 623 | 623 | <widget class="QCheckBox" name="noiseEnable" > |
|---|
| 624 | 624 | <property name="text" > |
|---|
| 625 | | <string>Noise</string> |
|---|
| | 625 | <string>_("Noise")</string> |
|---|
| 626 | 626 | </property> |
|---|
| 627 | 627 | </widget> |
|---|
| … | … | |
| 630 | 630 | <widget class="QCheckBox" name="motiondetectEnable" > |
|---|
| 631 | 631 | <property name="text" > |
|---|
| 632 | | <string>Motion detect</string> |
|---|
| | 632 | <string>_("Motion detect")</string> |
|---|
| 633 | 633 | </property> |
|---|
| 634 | 634 | </widget> |
|---|
| … | … | |
| 640 | 640 | </property> |
|---|
| 641 | 641 | <property name="title" > |
|---|
| 642 | | <string>Image adjust</string> |
|---|
| | 642 | <string>_("Image adjust")</string> |
|---|
| 643 | 643 | </property> |
|---|
| 644 | 644 | <property name="checkable" > |
|---|
| … | … | |
| 720 | 720 | <widget class="QLabel" name="label_5" > |
|---|
| 721 | 721 | <property name="text" > |
|---|
| 722 | | <string>Gamma</string> |
|---|
| | 722 | <string>_("Gamma")</string> |
|---|
| 723 | 723 | </property> |
|---|
| 724 | 724 |   |
|---|