Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
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
Expand all
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
This diff is collapsed.
Click to expand it.
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