Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
2b452b3c
Commit
2b452b3c
authored
Jun 02, 2007
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
All: Qt4 intf i18n fix (part 1)
parent
2ede4ca7
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
129 additions
and
130 deletions
+129
-130
configure.ac
configure.ac
+0
-1
modules/gui/qt4/components/infopanels.cpp
modules/gui/qt4/components/infopanels.cpp
+3
-3
modules/gui/qt4/dialogs/playlist.cpp
modules/gui/qt4/dialogs/playlist.cpp
+2
-2
modules/gui/qt4/menus.cpp
modules/gui/qt4/menus.cpp
+1
-1
modules/gui/qt4/ui/sprefs_audio.ui
modules/gui/qt4/ui/sprefs_audio.ui
+17
-17
modules/gui/qt4/ui/sprefs_input.ui
modules/gui/qt4/ui/sprefs_input.ui
+16
-16
modules/gui/qt4/ui/sprefs_interface.ui
modules/gui/qt4/ui/sprefs_interface.ui
+12
-12
modules/gui/qt4/ui/sprefs_video.ui
modules/gui/qt4/ui/sprefs_video.ui
+18
-18
modules/gui/qt4/ui/video_effects.ui
modules/gui/qt4/ui/video_effects.ui
+59
-59
po/Makevars
po/Makevars
+1
-1
No files found.
configure.ac
View file @
2b452b3c
...
@@ -363,7 +363,6 @@ AS_IF([test "${nls_cv_force_use_gnu_gettext}" = "yes"], [
...
@@ -363,7 +363,6 @@ AS_IF([test "${nls_cv_force_use_gnu_gettext}" = "yes"], [
])
])
])
])
AC_SUBST(INCLUDED_LIBINTL)
AC_SUBST(INCLUDED_LIBINTL)
XGETTEXT="${XGETTEXT} --keyword=_NS --keyword=_ANS"
dnl
dnl
dnl Iconv stuff
dnl Iconv stuff
...
...
modules/gui/qt4/components/infopanels.cpp
View file @
2b452b3c
...
@@ -44,12 +44,12 @@ MetaPanel::MetaPanel( QWidget *parent, intf_thread_t *_p_intf ) :
...
@@ -44,12 +44,12 @@ MetaPanel::MetaPanel( QWidget *parent, intf_thread_t *_p_intf ) :
int
line
=
0
;
int
line
=
0
;
QGridLayout
*
l
=
new
QGridLayout
(
this
);
QGridLayout
*
l
=
new
QGridLayout
(
this
);
#define ADD_META( string, widget ) { \
#define ADD_META( string, widget ) { \
l->addWidget( new QLabel( q
fu
( string ) ), line, 0 ); \
l->addWidget( new QLabel( q
tr
( string ) ), line, 0 ); \
widget = new QLabel( "" ); \
widget = new QLabel( "" ); \
l->addWidget( widget, line, 1 ); \
l->addWidget( widget, line, 1 ); \
line++; }
line++; }
ADD_META
(
_
(
"Name"
),
name_text
);
ADD_META
(
qtr
(
"Name"
),
name_text
);
ADD_META
(
_
(
"URI"
),
uri_text
);
ADD_META
(
qtr
(
"URI"
),
uri_text
);
ADD_META
(
VLC_META_ARTIST
,
artist_text
);
ADD_META
(
VLC_META_ARTIST
,
artist_text
);
ADD_META
(
VLC_META_GENRE
,
genre_text
);
ADD_META
(
VLC_META_GENRE
,
genre_text
);
ADD_META
(
VLC_META_COPYRIGHT
,
copyright_text
);
ADD_META
(
VLC_META_COPYRIGHT
,
copyright_text
);
...
...
modules/gui/qt4/dialogs/playlist.cpp
View file @
2b452b3c
...
@@ -63,10 +63,10 @@ void PlaylistDialog::createPlMenuBar( QMenuBar *bar, intf_thread_t *p_intf )
...
@@ -63,10 +63,10 @@ void PlaylistDialog::createPlMenuBar( QMenuBar *bar, intf_thread_t *p_intf )
{
{
QMenu
*
manageMenu
=
new
QMenu
();
QMenu
*
manageMenu
=
new
QMenu
();
manageMenu
->
setTitle
(
qtr
(
"Manage"
)
);
manageMenu
->
setTitle
(
qtr
(
"Manage"
)
);
manageMenu
->
addAction
(
"Open playlist file"
,
THEDP
,
SLOT
(
openPlaylist
()
),
manageMenu
->
addAction
(
qtr
(
"Open playlist file"
)
,
THEDP
,
SLOT
(
openPlaylist
()
),
qtr
(
"Ctrl+L"
)
);
qtr
(
"Ctrl+L"
)
);
manageMenu
->
addSeparator
();
manageMenu
->
addSeparator
();
manageMenu
->
addAction
(
"Dock playlist"
,
this
,
SLOT
(
dock
()
),
manageMenu
->
addAction
(
qtr
(
"Dock playlist"
)
,
this
,
SLOT
(
dock
()
),
qtr
(
"Ctrl+U"
)
);
qtr
(
"Ctrl+U"
)
);
bar
->
addMenu
(
manageMenu
);
bar
->
addMenu
(
manageMenu
);
bar
->
addMenu
(
QVLCMenu
::
SDMenu
(
p_intf
)
);
bar
->
addMenu
(
QVLCMenu
::
SDMenu
(
p_intf
)
);
...
...
modules/gui/qt4/menus.cpp
View file @
2b452b3c
...
@@ -281,7 +281,7 @@ QMenu *QVLCMenu::InterfacesMenu( intf_thread_t *p_intf, QMenu *current )
...
@@ -281,7 +281,7 @@ QMenu *QVLCMenu::InterfacesMenu( intf_thread_t *p_intf, QMenu *current )
{
{
menu
->
addSeparator
();
menu
->
addSeparator
();
menu
->
addAction
(
qtr
(
"Switch to skins"
),
THEDP
,
SLOT
(
switchToSkins
()),
menu
->
addAction
(
qtr
(
"Switch to skins"
),
THEDP
,
SLOT
(
switchToSkins
()),
qtr
(
"Ctrl+Z"
)
);
"Ctrl+Z"
);
}
}
CONNECT
(
menu
,
aboutToShow
(),
THEDP
->
menusUpdateMapper
,
map
()
);
CONNECT
(
menu
,
aboutToShow
(),
THEDP
->
menusUpdateMapper
,
map
()
);
...
...
modules/gui/qt4/ui/sprefs_audio.ui
View file @
2b452b3c
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
<item>
<item>
<widget class="QCheckBox" name="enableAudio" >
<widget class="QCheckBox" name="enableAudio" >
<property name="text" >
<property name="text" >
<string>
Enable audio
</string>
<string>
_("Enable audio")
</string>
</property>
</property>
<property name="checked" >
<property name="checked" >
<bool>true</bool>
<bool>true</bool>
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
<item>
<item>
<widget class="QGroupBox" name="groupBox_3" >
<widget class="QGroupBox" name="groupBox_3" >
<property name="title" >
<property name="title" >
<string>
General Audio
</string>
<string>
_("General Audio")
</string>
</property>
</property>
<layout class="QGridLayout" >
<layout class="QGridLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
<item row="2" column="0" >
<item row="2" column="0" >
<widget class="QLabel" name="label_8" >
<widget class="QLabel" name="label_8" >
<property name="text" >
<property name="text" >
<string>
Force detection of Dolby Surround
</string>
<string>
_("Force detection of Dolby Surround")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -73,14 +73,14 @@
...
@@ -73,14 +73,14 @@
<item row="1" column="0" colspan="2" >
<item row="1" column="0" colspan="2" >
<widget class="QCheckBox" name="spdifBox" >
<widget class="QCheckBox" name="spdifBox" >
<property name="text" >
<property name="text" >
<string>
Use S/PDIF when available
</string>
<string>
_("Use S/PDIF when available")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="3" column="0" >
<item row="3" column="0" >
<widget class="QLabel" name="label" >
<widget class="QLabel" name="label" >
<property name="text" >
<property name="text" >
<string>
Preferred audio language
</string>
<string>
_("Preferred audio language")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -108,7 +108,7 @@
...
@@ -108,7 +108,7 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_2" >
<widget class="QLabel" name="label_2" >
<property name="text" >
<property name="text" >
<string>
Default volume
</string>
<string>
_("Default volume")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -136,21 +136,21 @@
...
@@ -136,21 +136,21 @@
<item row="4" column="2" >
<item row="4" column="2" >
<widget class="QPushButton" name="fileBrowseButton" >
<widget class="QPushButton" name="fileBrowseButton" >
<property name="text" >
<property name="text" >
<string>
Browse...
</string>
<string>
_("Browse...")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="4" column="0" >
<item row="4" column="0" >
<widget class="QLabel" name="label_7" >
<widget class="QLabel" name="label_7" >
<property name="text" >
<property name="text" >
<string>
File
</string>
<string>
_("File")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="3" column="2" >
<item row="3" column="2" >
<widget class="QPushButton" name="OSSBrowse" >
<widget class="QPushButton" name="OSSBrowse" >
<property name="text" >
<property name="text" >
<string>
Browse...
</string>
<string>
_("Browse...")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -160,14 +160,14 @@
...
@@ -160,14 +160,14 @@
<item row="3" column="0" >
<item row="3" column="0" >
<widget class="QLabel" name="OSSLabel" >
<widget class="QLabel" name="OSSLabel" >
<property name="text" >
<property name="text" >
<string>
OSS Device
</string>
<string>
_("OSS Device")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="2" column="0" >
<item row="2" column="0" >
<widget class="QLabel" name="DirectXLabel" >
<widget class="QLabel" name="DirectXLabel" >
<property name="text" >
<property name="text" >
<string>
DirectX Device
</string>
<string>
_("DirectX Device")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -177,7 +177,7 @@
...
@@ -177,7 +177,7 @@
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="alsaLabel" >
<widget class="QLabel" name="alsaLabel" >
<property name="text" >
<property name="text" >
<string>
Alsa Device
</string>
<string>
_("Alsa Device")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -190,7 +190,7 @@
...
@@ -190,7 +190,7 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_3" >
<widget class="QLabel" name="label_3" >
<property name="text" >
<property name="text" >
<string>
Type
</string>
<string>
_("Type")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -200,7 +200,7 @@
...
@@ -200,7 +200,7 @@
<item>
<item>
<widget class="QGroupBox" name="groupBox" >
<widget class="QGroupBox" name="groupBox" >
<property name="title" >
<property name="title" >
<string>
Effects
</string>
<string>
_("Effects")
</string>
</property>
</property>
<layout class="QGridLayout" >
<layout class="QGridLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -215,21 +215,21 @@
...
@@ -215,21 +215,21 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QCheckBox" name="headphoneEffect" >
<widget class="QCheckBox" name="headphoneEffect" >
<property name="text" >
<property name="text" >
<string>
Headphone surround effect
</string>
<string>
_("Headphone surround effect")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QCheckBox" name="volumeNormalizer" >
<widget class="QCheckBox" name="volumeNormalizer" >
<property name="text" >
<property name="text" >
<string>
Volume normalizer
</string>
<string>
_("Volume normalizer")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="2" column="0" >
<item row="2" column="0" >
<widget class="QLabel" name="label_5" >
<widget class="QLabel" name="label_5" >
<property name="text" >
<property name="text" >
<string>
Visualisation
</string>
<string>
_("Visualisation")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
...
modules/gui/qt4/ui/sprefs_input.ui
View file @
2b452b3c
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
<item>
<item>
<widget class="QGroupBox" name="groupBox" >
<widget class="QGroupBox" name="groupBox" >
<property name="title" >
<property name="title" >
<string>
Disk Devices
</string>
<string>
_("Disk Devices")
</string>
</property>
</property>
<layout class="QGridLayout" >
<layout class="QGridLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label" >
<widget class="QLabel" name="label" >
<property name="text" >
<property name="text" >
<string>
Disk Device
</string>
<string>
_("Disk Device")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
<item row="0" column="2" >
<item row="0" column="2" >
<widget class="QPushButton" name="DVDBrowse" >
<widget class="QPushButton" name="DVDBrowse" >
<property name="text" >
<property name="text" >
<string>
Browse...
</string>
<string>
_("Browse...")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -55,7 +55,7 @@
...
@@ -55,7 +55,7 @@
<item>
<item>
<widget class="QGroupBox" name="groupBox_2" >
<widget class="QGroupBox" name="groupBox_2" >
<property name="title" >
<property name="title" >
<string>
Network
</string>
<string>
_("Network")
</string>
</property>
</property>
<layout class="QGridLayout" >
<layout class="QGridLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -67,14 +67,14 @@
...
@@ -67,14 +67,14 @@
<item row="2" column="0" colspan="2" >
<item row="2" column="0" colspan="2" >
<widget class="QLabel" name="label" >
<widget class="QLabel" name="label" >
<property name="text" >
<property name="text" >
<string>
Default Network caching in ms
</string>
<string>
_("Default Network caching in ms")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="label_7" >
<widget class="QLabel" name="label_7" >
<property name="text" >
<property name="text" >
<string>
HTTP Proxy
</string>
<string>
_("HTTP Proxy")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -113,7 +113,7 @@
...
@@ -113,7 +113,7 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_4" >
<widget class="QLabel" name="label_4" >
<property name="text" >
<property name="text" >
<string>
Server Default Port
</string>
<string>
_("Server Default Port")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -123,7 +123,7 @@
...
@@ -123,7 +123,7 @@
<item>
<item>
<widget class="QGroupBox" name="groupBox_3" >
<widget class="QGroupBox" name="groupBox_3" >
<property name="title" >
<property name="title" >
<string>
Codecs / Muxers
</string>
<string>
_("Codecs / Muxers")
</string>
</property>
</property>
<layout class="QGridLayout" >
<layout class="QGridLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -135,7 +135,7 @@
...
@@ -135,7 +135,7 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_5" >
<widget class="QLabel" name="label_5" >
<property name="text" >
<property name="text" >
<string>
Post-Processing Quality
</string>
<string>
_("Post-Processing Quality")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -158,7 +158,7 @@
...
@@ -158,7 +158,7 @@
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="label_6" >
<widget class="QLabel" name="label_6" >
<property name="text" >
<property name="text" >
<string>
Repair AVI files
</string>
<string>
_("Repair AVI files")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -168,14 +168,14 @@
...
@@ -168,14 +168,14 @@
<item row="3" column="0" colspan="2" >
<item row="3" column="0" colspan="2" >
<widget class="QCheckBox" name="systemCodecBox" >
<widget class="QCheckBox" name="systemCodecBox" >
<property name="text" >
<property name="text" >
<string>
Use system codecs if available (better quality
)</string>
<string>
_("Use system codecs if available (better quality)"
)</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="2" column="0" colspan="2" >
<item row="2" column="0" colspan="2" >
<widget class="QCheckBox" name="RTSP_TCPBox" >
<widget class="QCheckBox" name="RTSP_TCPBox" >
<property name="text" >
<property name="text" >
<string>
Use RTP over RTSP (TCP
)</string>
<string>
_("Use RTP over RTSP (TCP)"
)</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -185,7 +185,7 @@
...
@@ -185,7 +185,7 @@
<item>
<item>
<widget class="QGroupBox" name="groupBox_4" >
<widget class="QGroupBox" name="groupBox_4" >
<property name="title" >
<property name="title" >
<string>
Access Filter
</string>
<string>
_("Access Filter")
</string>
</property>
</property>
<layout class="QHBoxLayout" >
<layout class="QHBoxLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -197,21 +197,21 @@
...
@@ -197,21 +197,21 @@
<item>
<item>
<widget class="QCheckBox" name="timeshiftBox" >
<widget class="QCheckBox" name="timeshiftBox" >
<property name="text" >
<property name="text" >
<string>
Timeshift
</string>
<string>
_("Timeshift")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item>
<item>
<widget class="QCheckBox" name="RecordBox" >
<widget class="QCheckBox" name="RecordBox" >
<property name="text" >
<property name="text" >
<string>
Record
</string>
<string>
_("Record")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item>
<item>
<widget class="QCheckBox" name="DumpBox" >
<widget class="QCheckBox" name="DumpBox" >
<property name="text" >
<property name="text" >
<string>
Dump
</string>
<string>
_("Dump")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
...
modules/gui/qt4/ui/sprefs_interface.ui
View file @
2b452b3c
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
<item row="1" column="0" colspan="2" >
<item row="1" column="0" colspan="2" >
<widget class="QGroupBox" name="groupBox" >
<widget class="QGroupBox" name="groupBox" >
<property name="title" >
<property name="title" >
<string>
Default Interface
</string>
<string>
_("Default Interface")
</string>
</property>
</property>
<layout class="QGridLayout" >
<layout class="QGridLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
<enum>QFrame::NoFrame</enum>
<enum>QFrame::NoFrame</enum>
</property>
</property>
<property name="text" >
<property name="text" >
<string>
This is VLC's skinnable interface. You can download skins at http://www.videolan.org/vlc/skins.php to customize your player.
</string>
<string>
_("This is VLC's skinnable interface. You can download skins at http://www.videolan.org/vlc/skins.php to customize your player.")
</string>
</property>
</property>
<property name="alignment" >
<property name="alignment" >
<set>Qt::AlignBottom|Qt::AlignJustify</set>
<set>Qt::AlignBottom|Qt::AlignJustify</set>
...
@@ -71,14 +71,14 @@
...
@@ -71,14 +71,14 @@
<item row="4" column="2" >
<item row="4" column="2" >
<widget class="QPushButton" name="skinBrowse" >
<widget class="QPushButton" name="skinBrowse" >
<property name="text" >
<property name="text" >
<string>
Browse...
</string>
<string>
_("Browse...")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="4" column="0" >
<item row="4" column="0" >
<widget class="QLabel" name="label_4" >
<widget class="QLabel" name="label_4" >
<property name="text" >
<property name="text" >
<string>
Skin File
</string>
<string>
_("Skin File")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -91,7 +91,7 @@
...
@@ -91,7 +91,7 @@
<enum>QFrame::NoFrame</enum>
<enum>QFrame::NoFrame</enum>
</property>
</property>
<property name="text" >
<property name="text" >
<string>
This is VLC's default interface, with a native look and feel.
</string>
<string>
_("This is VLC's default interface, with a native look and feel.")
</string>
</property>
</property>
<property name="textFormat" >
<property name="textFormat" >
<enum>Qt::RichText</enum>
<enum>Qt::RichText</enum>
...
@@ -107,21 +107,21 @@
...
@@ -107,21 +107,21 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QRadioButton" name="qt4" >
<widget class="QRadioButton" name="qt4" >
<property name="text" >
<property name="text" >
<string>
Default
</string>
<string>
_("Default")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="3" column="0" >
<item row="3" column="0" >
<widget class="QRadioButton" name="skins" >
<widget class="QRadioButton" name="skins" >
<property name="text" >
<property name="text" >
<string>
Skins
</string>
<string>
_("Skins")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="1" colspan="2" >
<item row="1" column="1" colspan="2" >
<widget class="QCheckBox" name="qtAlwaysVideo" >
<widget class="QCheckBox" name="qtAlwaysVideo" >
<property name="text" >
<property name="text" >
<string>
Always display the video
</string>
<string>
_("Always display the video")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -134,14 +134,14 @@
...
@@ -134,14 +134,14 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="languageLabel" >
<widget class="QLabel" name="languageLabel" >
<property name="text" >
<property name="text" >
<string>
Language
</string>
<string>
_("Language")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="2" column="0" colspan="2" >
<item row="2" column="0" colspan="2" >
<widget class="QGroupBox" name="OneInterfaceBox" >
<widget class="QGroupBox" name="OneInterfaceBox" >
<property name="title" >
<property name="title" >
<string>
Instances
</string>
<string>
_("Instances")
</string>
</property>
</property>
<layout class="QVBoxLayout" >
<layout class="QVBoxLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -153,14 +153,14 @@
...
@@ -153,14 +153,14 @@
<item>
<item>
<widget class="QCheckBox" name="OneInterfaceMode" >
<widget class="QCheckBox" name="OneInterfaceMode" >
<property name="text" >
<property name="text" >
<string>
Allow only one instance
</string>
<string>
_("Allow only one instance")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item>
<item>
<widget class="QCheckBox" name="EnqueueOneInterfaceMode" >
<widget class="QCheckBox" name="EnqueueOneInterfaceMode" >
<property name="text" >
<property name="text" >
<string>
Enqueue files in playlist when in one interface mode
</string>
<string>
_("Enqueue files in playlist when in one interface mode")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
...
modules/gui/qt4/ui/sprefs_video.ui
View file @
2b452b3c
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
<item>
<item>
<widget class="QCheckBox" name="enableVideo" >
<widget class="QCheckBox" name="enableVideo" >
<property name="text" >
<property name="text" >
<string>
Enable video
</string>
<string>
_("Enable video")
</string>
</property>
</property>
<property name="checked" >
<property name="checked" >
<bool>true</bool>
<bool>true</bool>
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
<item>
<item>
<widget class="QGroupBox" name="displayBox" >
<widget class="QGroupBox" name="displayBox" >
<property name="title" >
<property name="title" >
<string>
Display
</string>
<string>
_("Display")
</string>
</property>
</property>
<layout class="QGridLayout" >
<layout class="QGridLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
<item row="1" column="2" >
<item row="1" column="2" >
<widget class="QCheckBox" name="windowDecorations" >
<widget class="QCheckBox" name="windowDecorations" >
<property name="text" >
<property name="text" >
<string>
Window decorations
</string>
<string>
_("Window decorations")
</string>
</property>
</property>
<property name="checked" >
<property name="checked" >
<bool>true</bool>
<bool>true</bool>
...
@@ -58,14 +58,14 @@
...
@@ -58,14 +58,14 @@
<item row="0" column="0" colspan="2" >
<item row="0" column="0" colspan="2" >
<widget class="QCheckBox" name="fullscreen" >
<widget class="QCheckBox" name="fullscreen" >
<property name="text" >
<property name="text" >
<string>
Fullscreen
</string>
<string>
_("Fullscreen")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="0" colspan="2" >
<item row="1" column="0" colspan="2" >
<widget class="QCheckBox" name="alwaysOnTop" >
<widget class="QCheckBox" name="alwaysOnTop" >
<property name="text" >
<property name="text" >
<string>
Always on top
</string>
<string>
_("Always on top")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -75,14 +75,14 @@
...
@@ -75,14 +75,14 @@
<item row="3" column="0" >
<item row="3" column="0" >
<widget class="QLabel" name="label_4" >
<widget class="QLabel" name="label_4" >
<property name="text" >
<property name="text" >
<string>
Output
</string>
<string>
_("Output")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="0" column="2" >
<item row="0" column="2" >
<widget class="QCheckBox" name="overlay" >
<widget class="QCheckBox" name="overlay" >
<property name="text" >
<property name="text" >
<string>
Accelerated video output
</string>
<string>
_("Accelerated video output")
</string>
</property>
</property>
<property name="checked" >
<property name="checked" >
<bool>true</bool>
<bool>true</bool>
...
@@ -95,7 +95,7 @@
...
@@ -95,7 +95,7 @@
<item row="2" column="0" colspan="2" >
<item row="2" column="0" colspan="2" >
<widget class="QCheckBox" name="skipFrames" >
<widget class="QCheckBox" name="skipFrames" >
<property name="text" >
<property name="text" >
<string>
Skip Frames
</string>
<string>
_("Skip Frames")
</string>
</property>
</property>
<property name="checked" >
<property name="checked" >
<bool>true</bool>
<bool>true</bool>
...
@@ -105,7 +105,7 @@
...
@@ -105,7 +105,7 @@
<item row="2" column="2" >
<item row="2" column="2" >
<widget class="QCheckBox" name="overlay" >
<widget class="QCheckBox" name="overlay" >
<property name="text" >
<property name="text" >
<string>
Overlay
</string>
<string>
_("Overlay")
</string>
</property>
</property>
<property name="checked" >
<property name="checked" >
<bool>true</bool>
<bool>true</bool>
...
@@ -118,7 +118,7 @@
...
@@ -118,7 +118,7 @@
<item>
<item>
<widget class="QGroupBox" name="directXBox" >
<widget class="QGroupBox" name="directXBox" >
<property name="title" >
<property name="title" >
<string>
DirectX
</string>
<string>
_("DirectX")
</string>
</property>
</property>
<layout class="QGridLayout" >
<layout class="QGridLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -133,14 +133,14 @@
...
@@ -133,14 +133,14 @@
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="label_5" >
<widget class="QLabel" name="label_5" >
<property name="text" >
<property name="text" >
<string>
Display Device
</string>
<string>
_("Display Device")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="0" column="0" colspan="2" >
<item row="0" column="0" colspan="2" >
<widget class="QCheckBox" name="wallpaperMode" >
<widget class="QCheckBox" name="wallpaperMode" >
<property name="text" >
<property name="text" >
<string>
Enable Wallpaper Mode
</string>
<string>
_("Enable Wallpaper Mode")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -150,7 +150,7 @@
...
@@ -150,7 +150,7 @@
<item>
<item>
<widget class="QGroupBox" name="groupBox" >
<widget class="QGroupBox" name="groupBox" >
<property name="title" >
<property name="title" >
<string>
Video snapshots
</string>
<string>
_("Video snapshots")
</string>
</property>
</property>
<layout class="QGridLayout" >
<layout class="QGridLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -165,21 +165,21 @@
...
@@ -165,21 +165,21 @@
<item row="0" column="3" >
<item row="0" column="3" >
<widget class="QPushButton" name="snapshotsDirectoryBrowse" >
<widget class="QPushButton" name="snapshotsDirectoryBrowse" >
<property name="text" >
<property name="text" >
<string>
Browse...
</string>
<string>
_("Browse...")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label" >
<widget class="QLabel" name="label" >
<property name="text" >
<property name="text" >
<string>
Directory
</string>
<string>
_("Directory")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="label_2" >
<widget class="QLabel" name="label_2" >
<property name="text" >
<property name="text" >
<string>
Prefix
</string>
<string>
_("Prefix")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -193,7 +193,7 @@
...
@@ -193,7 +193,7 @@
<item row="2" column="0" >
<item row="2" column="0" >
<widget class="QLabel" name="label_3" >
<widget class="QLabel" name="label_3" >
<property name="text" >
<property name="text" >
<string>
Format
</string>
<string>
_("Format")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -203,7 +203,7 @@
...
@@ -203,7 +203,7 @@
<item row="1" column="2" colspan="2" >
<item row="1" column="2" colspan="2" >
<widget class="QCheckBox" name="snapshotsSequentialNumbering" >
<widget class="QCheckBox" name="snapshotsSequentialNumbering" >
<property name="text" >
<property name="text" >
<string>
Sequential numbering
</string>
<string>
_("Sequential numbering")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
...
modules/gui/qt4/ui/video_effects.ui
View file @
2b452b3c
...
@@ -22,14 +22,14 @@
...
@@ -22,14 +22,14 @@
<item row="11" column="0" >
<item row="11" column="0" >
<widget class="QCheckBox" name="invertEnable" >
<widget class="QCheckBox" name="invertEnable" >
<property name="text" >
<property name="text" >
<string>
Color invert
</string>
<string>
_("Color invert")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item rowspan="4" row="7" column="0" >
<item rowspan="4" row="7" column="0" >
<widget class="QGroupBox" name="colorthresEnable" >
<widget class="QGroupBox" name="colorthresEnable" >
<property name="title" >
<property name="title" >
<string>
Color threshold
</string>
<string>
_("Color threshold")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -47,7 +47,7 @@
...
@@ -47,7 +47,7 @@
<item row="4" column="0" >
<item row="4" column="0" >
<widget class="QLabel" name="label_14" >
<widget class="QLabel" name="label_14" >
<property name="text" >
<property name="text" >
<string>
Similarity
</string>
<string>
_("Similarity")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
<item row="3" column="0" >
<item row="3" column="0" >
<widget class="QLabel" name="label_13" >
<widget class="QLabel" name="label_13" >
<property name="text" >
<property name="text" >
<string>
Saturation
</string>
<string>
_("Saturation")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -120,7 +120,7 @@
...
@@ -120,7 +120,7 @@
<item rowspan="3" row="9" column="2" colspan="3" >
<item rowspan="3" row="9" column="2" colspan="3" >
<widget class="QGroupBox" name="advancedVideoFilterBox" >
<widget class="QGroupBox" name="advancedVideoFilterBox" >
<property name="title" >
<property name="title" >
<string>
Advanced video filter controls
</string>
<string>
_("Advanced video filter controls")
</string>
</property>
</property>
<layout class="QGridLayout" >
<layout class="QGridLayout" >
<property name="margin" >
<property name="margin" >
...
@@ -138,35 +138,35 @@
...
@@ -138,35 +138,35 @@
<item row="3" column="0" colspan="2" >
<item row="3" column="0" colspan="2" >
<widget class="QPushButton" name="filtersResetButton" >
<widget class="QPushButton" name="filtersResetButton" >
<property name="text" >
<property name="text" >
<string>
Reset
</string>
<string>
_("Reset")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="3" column="2" >
<item row="3" column="2" >
<widget class="QPushButton" name="filtersUpdateButton" >
<widget class="QPushButton" name="filtersUpdateButton" >
<property name="text" >
<property name="text" >
<string>
Update
</string>
<string>
_("Update")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="label_33" >
<widget class="QLabel" name="label_33" >
<property name="text" >
<property name="text" >
<string>
Video filters
</string>
<string>
_("Video filters")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_32" >
<widget class="QLabel" name="label_32" >
<property name="text" >
<property name="text" >
<string>
Vout filters
</string>
<string>
_("Vout filters")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="2" column="0" >
<item row="2" column="0" >
<widget class="QLabel" name="label_34" >
<widget class="QLabel" name="label_34" >
<property name="text" >
<property name="text" >
<string>
Subpicture filters
</string>
<string>
_("Subpicture filters")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -179,7 +179,7 @@
...
@@ -179,7 +179,7 @@
<item rowspan="4" row="5" column="3" >
<item rowspan="4" row="5" column="3" >
<widget class="QGroupBox" name="eraseEnable" >
<widget class="QGroupBox" name="eraseEnable" >
<property name="title" >
<property name="title" >
<string>
Logo erase
</string>
<string>
_("Logo erase")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -197,14 +197,14 @@
...
@@ -197,14 +197,14 @@
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="label_16" >
<widget class="QLabel" name="label_16" >
<property name="text" >
<property name="text" >
<string>
Top
</string>
<string>
_("Top")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="2" column="0" >
<item row="2" column="0" >
<widget class="QLabel" name="label_17" >
<widget class="QLabel" name="label_17" >
<property name="text" >
<property name="text" >
<string>
Left
</string>
<string>
_("Left")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -220,7 +220,7 @@
...
@@ -220,7 +220,7 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_15" >
<widget class="QLabel" name="label_15" >
<property name="text" >
<property name="text" >
<string>
Mask
</string>
<string>
_("Mask")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -230,21 +230,21 @@
...
@@ -230,21 +230,21 @@
<item row="9" column="1" >
<item row="9" column="1" >
<widget class="QCheckBox" name="rippleEnable" >
<widget class="QCheckBox" name="rippleEnable" >
<property name="text" >
<property name="text" >
<string>
Water effect
</string>
<string>
_("Water effect")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="10" column="1" >
<item row="10" column="1" >
<widget class="QCheckBox" name="waveEnable" >
<widget class="QCheckBox" name="waveEnable" >
<property name="text" >
<property name="text" >
<string>
Waves
</string>
<string>
_("Waves")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item rowspan="6" row="2" column="4" >
<item rowspan="6" row="2" column="4" >
<widget class="QGroupBox" name="logoEnable" >
<widget class="QGroupBox" name="logoEnable" >
<property name="title" >
<property name="title" >
<string>
Add logo
</string>
<string>
_("Add logo")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -262,21 +262,21 @@
...
@@ -262,21 +262,21 @@
<item row="3" column="0" >
<item row="3" column="0" >
<widget class="QLabel" name="label_22" >
<widget class="QLabel" name="label_22" >
<property name="text" >
<property name="text" >
<string>
Transparency
</string>
<string>
_("Transparency")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="2" column="0" colspan="2" >
<item row="2" column="0" colspan="2" >
<widget class="QLabel" name="label_21" >
<widget class="QLabel" name="label_21" >
<property name="text" >
<property name="text" >
<string>
Left
</string>
<string>
_("Left")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="0" colspan="2" >
<item row="1" column="0" colspan="2" >
<widget class="QLabel" name="label_20" >
<widget class="QLabel" name="label_20" >
<property name="text" >
<property name="text" >
<string>
Top
</string>
<string>
_("Top")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -296,7 +296,7 @@
...
@@ -296,7 +296,7 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_19" >
<widget class="QLabel" name="label_19" >
<property name="text" >
<property name="text" >
<string>
Logo
</string>
<string>
_("Logo")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -309,14 +309,14 @@
...
@@ -309,14 +309,14 @@
<item row="8" column="2" >
<item row="8" column="2" >
<widget class="QCheckBox" name="magnifyEnable" >
<widget class="QCheckBox" name="magnifyEnable" >
<property name="text" >
<property name="text" >
<string>
Magnification
</string>
<string>
_("Magnification")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item rowspan="2" row="0" column="4" >
<item rowspan="2" row="0" column="4" >
<widget class="QGroupBox" name="marqEnable" >
<widget class="QGroupBox" name="marqEnable" >
<property name="title" >
<property name="title" >
<string>
Add text
</string>
<string>
_("Add text")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -334,14 +334,14 @@
...
@@ -334,14 +334,14 @@
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="label_24" >
<widget class="QLabel" name="label_24" >
<property name="text" >
<property name="text" >
<string>
Position
</string>
<string>
_("Position")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_23" >
<widget class="QLabel" name="label_23" >
<property name="text" >
<property name="text" >
<string>
Text
</string>
<string>
_("Text")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -357,7 +357,7 @@
...
@@ -357,7 +357,7 @@
<item row="0" column="3" >
<item row="0" column="3" >
<widget class="QGroupBox" name="cloneEnable" >
<widget class="QGroupBox" name="cloneEnable" >
<property name="title" >
<property name="title" >
<string>
Clone
</string>
<string>
_("Clone")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -375,7 +375,7 @@
...
@@ -375,7 +375,7 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_9" >
<widget class="QLabel" name="label_9" >
<property name="text" >
<property name="text" >
<string>
Number of clones
</string>
<string>
_("Number of clones")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -395,7 +395,7 @@
...
@@ -395,7 +395,7 @@
<item rowspan="4" row="1" column="3" >
<item rowspan="4" row="1" column="3" >
<widget class="QGroupBox" name="wallEnable" >
<widget class="QGroupBox" name="wallEnable" >
<property name="title" >
<property name="title" >
<string>
Wall
</string>
<string>
_("Wall")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -413,14 +413,14 @@
...
@@ -413,14 +413,14 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_31" >
<widget class="QLabel" name="label_31" >
<property name="text" >
<property name="text" >
<string>
Rows
</string>
<string>
_("Rows")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="label_30" >
<widget class="QLabel" name="label_30" >
<property name="text" >
<property name="text" >
<string>
Columns
</string>
<string>
_("Columns")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -450,7 +450,7 @@
...
@@ -450,7 +450,7 @@
<item rowspan="3" row="5" column="2" >
<item rowspan="3" row="5" column="2" >
<widget class="QGroupBox" name="puzzleEnable" >
<widget class="QGroupBox" name="puzzleEnable" >
<property name="title" >
<property name="title" >
<string>
Puzzle game
</string>
<string>
_("Puzzle game")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -488,21 +488,21 @@
...
@@ -488,21 +488,21 @@
<item row="2" column="0" colspan="2" >
<item row="2" column="0" colspan="2" >
<widget class="QCheckBox" name="puzzleBlackSlotCheck" >
<widget class="QCheckBox" name="puzzleBlackSlotCheck" >
<property name="text" >
<property name="text" >
<string>
Black slot
</string>
<string>
_("Black slot")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="label_26" >
<widget class="QLabel" name="label_26" >
<property name="text" >
<property name="text" >
<string>
Columns
</string>
<string>
_("Columns")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_27" >
<widget class="QLabel" name="label_27" >
<property name="text" >
<property name="text" >
<string>
Rows
</string>
<string>
_("Rows")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -512,7 +512,7 @@
...
@@ -512,7 +512,7 @@
<item rowspan="4" row="1" column="2" >
<item rowspan="4" row="1" column="2" >
<widget class="QGroupBox" name="rotateEnable" >
<widget class="QGroupBox" name="rotateEnable" >
<property name="title" >
<property name="title" >
<string>
Rotate
</string>
<string>
_("Rotate")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -543,7 +543,7 @@
...
@@ -543,7 +543,7 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_28" >
<widget class="QLabel" name="label_28" >
<property name="text" >
<property name="text" >
<string>
Angle
</string>
<string>
_("Angle")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -553,7 +553,7 @@
...
@@ -553,7 +553,7 @@
<item row="0" column="2" >
<item row="0" column="2" >
<widget class="QGroupBox" name="transformEnable" >
<widget class="QGroupBox" name="transformEnable" >
<property name="title" >
<property name="title" >
<string>
Transform
</string>
<string>
_("Transform")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -577,7 +577,7 @@
...
@@ -577,7 +577,7 @@
<item rowspan="2" row="0" column="1" >
<item rowspan="2" row="0" column="1" >
<widget class="QGroupBox" name="gradientEnable" >
<widget class="QGroupBox" name="gradientEnable" >
<property name="title" >
<property name="title" >
<string>
Gradient
</string>
<string>
_("Gradient")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -595,21 +595,21 @@
...
@@ -595,21 +595,21 @@
<item row="2" column="0" colspan="2" >
<item row="2" column="0" colspan="2" >
<widget class="QCheckBox" name="gradientCartoonCheck" >
<widget class="QCheckBox" name="gradientCartoonCheck" >
<property name="text" >
<property name="text" >
<string>
Cartoon
</string>
<string>
_("Cartoon")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="0" colspan="2" >
<item row="1" column="0" colspan="2" >
<widget class="QCheckBox" name="gradientTypeCheck" >
<widget class="QCheckBox" name="gradientTypeCheck" >
<property name="text" >
<property name="text" >
<string>
Color
</string>
<string>
_("Color")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_18" >
<widget class="QLabel" name="label_18" >
<property name="text" >
<property name="text" >
<string>
Mode
</string>
<string>
_("Mode")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -622,14 +622,14 @@
...
@@ -622,14 +622,14 @@
<item row="5" column="1" >
<item row="5" column="1" >
<widget class="QCheckBox" name="noiseEnable" >
<widget class="QCheckBox" name="noiseEnable" >
<property name="text" >
<property name="text" >
<string>
Noise
</string>
<string>
_("Noise")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="4" column="1" >
<item row="4" column="1" >
<widget class="QCheckBox" name="motiondetectEnable" >
<widget class="QCheckBox" name="motiondetectEnable" >
<property name="text" >
<property name="text" >
<string>
Motion detect
</string>
<string>
_("Motion detect")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -639,7 +639,7 @@
...
@@ -639,7 +639,7 @@
<bool>true</bool>
<bool>true</bool>
</property>
</property>
<property name="title" >
<property name="title" >
<string>
Image adjust
</string>
<string>
_("Image adjust")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -719,42 +719,42 @@
...
@@ -719,42 +719,42 @@
<item row="4" column="0" >
<item row="4" column="0" >
<widget class="QLabel" name="label_5" >
<widget class="QLabel" name="label_5" >
<property name="text" >
<property name="text" >
<string>
Gamma
</string>
<string>
_("Gamma")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="label_2" >
<widget class="QLabel" name="label_2" >
<property name="text" >
<property name="text" >
<string>
Contrast
</string>
<string>
_("Contrast")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="2" column="0" >
<item row="2" column="0" >
<widget class="QLabel" name="label_3" >
<widget class="QLabel" name="label_3" >
<property name="text" >
<property name="text" >
<string>
Brightness
</string>
<string>
_("Brightness")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="3" column="0" >
<item row="3" column="0" >
<widget class="QLabel" name="label_4" >
<widget class="QLabel" name="label_4" >
<property name="text" >
<property name="text" >
<string>
Saturation
</string>
<string>
_("Saturation")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label" >
<widget class="QLabel" name="label" >
<property name="text" >
<property name="text" >
<string>
Hue
</string>
<string>
_("Hue")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="5" column="1" >
<item row="5" column="1" >
<widget class="QCheckBox" name="brightnessThresholdCheck" >
<widget class="QCheckBox" name="brightnessThresholdCheck" >
<property name="text" >
<property name="text" >
<string>
Brightness threshold
</string>
<string>
_("Brightness threshold")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -764,7 +764,7 @@
...
@@ -764,7 +764,7 @@
<item rowspan="4" row="3" column="0" >
<item rowspan="4" row="3" column="0" >
<widget class="QGroupBox" name="extractEnable" >
<widget class="QGroupBox" name="extractEnable" >
<property name="title" >
<property name="title" >
<string>
Color extraction
</string>
<string>
_("Color extraction")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -803,21 +803,21 @@
...
@@ -803,21 +803,21 @@
<item row="2" column="0" >
<item row="2" column="0" >
<widget class="QLabel" name="label_8" >
<widget class="QLabel" name="label_8" >
<property name="text" >
<property name="text" >
<string>
Blue
</string>
<string>
_("Blue")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="1" column="0" >
<item row="1" column="0" >
<widget class="QLabel" name="label_7" >
<widget class="QLabel" name="label_7" >
<property name="text" >
<property name="text" >
<string>
Green
</string>
<string>
_("Green")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_6" >
<widget class="QLabel" name="label_6" >
<property name="text" >
<property name="text" >
<string>
Red
</string>
<string>
_("Red")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -827,7 +827,7 @@
...
@@ -827,7 +827,7 @@
<item rowspan="2" row="7" column="1" >
<item rowspan="2" row="7" column="1" >
<widget class="QGroupBox" name="sharpenEnable" >
<widget class="QGroupBox" name="sharpenEnable" >
<property name="title" >
<property name="title" >
<string>
Sharpen
</string>
<string>
_("Sharpen")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -845,7 +845,7 @@
...
@@ -845,7 +845,7 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_29" >
<widget class="QLabel" name="label_29" >
<property name="text" >
<property name="text" >
<string>
Sigma
</string>
<string>
_("Sigma")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -862,7 +862,7 @@
...
@@ -862,7 +862,7 @@
<item rowspan="2" row="2" column="1" >
<item rowspan="2" row="2" column="1" >
<widget class="QGroupBox" name="blurEnable" >
<widget class="QGroupBox" name="blurEnable" >
<property name="title" >
<property name="title" >
<string>
Motion blur
</string>
<string>
_("Motion blur")
</string>
</property>
</property>
<property name="checkable" >
<property name="checkable" >
<bool>true</bool>
<bool>true</bool>
...
@@ -880,7 +880,7 @@
...
@@ -880,7 +880,7 @@
<item row="0" column="0" >
<item row="0" column="0" >
<widget class="QLabel" name="label_25" >
<widget class="QLabel" name="label_25" >
<property name="text" >
<property name="text" >
<string>
Factor
</string>
<string>
_("Factor")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
@@ -897,7 +897,7 @@
...
@@ -897,7 +897,7 @@
<item row="6" column="1" >
<item row="6" column="1" >
<widget class="QCheckBox" name="psychedelicEnable" >
<widget class="QCheckBox" name="psychedelicEnable" >
<property name="text" >
<property name="text" >
<string>
Psychedelic
</string>
<string>
_("Psychedelic")
</string>
</property>
</property>
</widget>
</widget>
</item>
</item>
...
...
po/Makevars
View file @
2b452b3c
...
@@ -8,7 +8,7 @@ subdir = po
...
@@ -8,7 +8,7 @@ subdir = po
top_builddir = ..
top_builddir = ..
# These options get passed to xgettext.
# These options get passed to xgettext.
XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --language=C++
XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --
keyword=_NS --keyword=_ANS --keyword=qtr --
language=C++
# This is the copyright holder that gets inserted into the header of the
# This is the copyright holder that gets inserted into the header of the
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment