Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
62557bba
Commit
62557bba
authored
Jul 09, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use OK instead of Ok
Same as previous
parent
62fae3a7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+1
-1
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+1
-1
src/interface/interaction.c
src/interface/interaction.c
+1
-1
No files found.
modules/gui/qt4/components/open_panels.cpp
View file @
62557bba
...
...
@@ -1129,7 +1129,7 @@ void CaptureOpenPanel::advancedDialog()
/* Button stuffs */
QDialogButtonBox
*
advButtonBox
=
new
QDialogButtonBox
(
adv
);
QPushButton
*
closeButton
=
new
QPushButton
(
qtr
(
"O
k
"
)
);
QPushButton
*
closeButton
=
new
QPushButton
(
qtr
(
"O
K
"
)
);
QPushButton
*
cancelButton
=
new
QPushButton
(
qtr
(
"Cancel"
)
);
CONNECT
(
closeButton
,
clicked
(),
adv
,
accept
()
);
...
...
modules/gui/qt4/main_interface.cpp
View file @
62557bba
...
...
@@ -521,7 +521,7 @@ int MainInterface::privacyDialog( QList<ConfigControl *> controls )
CONFIG_GENERIC_NOBOOL
(
"qt-updates-days"
,
Integer
);
line
++
;
#endif
QPushButton
*
ok
=
new
QPushButton
(
qtr
(
"O
k
"
)
);
QPushButton
*
ok
=
new
QPushButton
(
qtr
(
"O
K
"
)
);
gLayout
->
addWidget
(
ok
,
2
,
2
);
...
...
src/interface/interaction.c
View file @
62557bba
...
...
@@ -276,7 +276,7 @@ int __intf_UserLoginPassword( vlc_object_t *p_this,
p_new
->
i_type
=
INTERACT_DIALOG_TWOWAY
;
p_new
->
psz_title
=
strdup
(
psz_title
);
p_new
->
psz_description
=
strdup
(
psz_description
);
p_new
->
psz_default_button
=
strdup
(
_
(
"O
k
"
)
);
p_new
->
psz_default_button
=
strdup
(
_
(
"O
K
"
)
);
p_new
->
psz_alternate_button
=
strdup
(
_
(
"Cancel"
)
);
p_new
->
i_flags
=
DIALOG_LOGIN_PW_OK_CANCEL
;
...
...
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