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
01cb2578
Commit
01cb2578
authored
Jan 04, 2004
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a small bug which prevented the translation of a string.
parent
a666bc56
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
modules/gui/macosx/intf.h
modules/gui/macosx/intf.h
+2
-1
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+3
-2
No files found.
modules/gui/macosx/intf.h
View file @
01cb2578
...
...
@@ -2,7 +2,7 @@
* intf.h: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: intf.h,v 1.5
3 2003/12/22 14:32:56 sam
Exp $
* $Id: intf.h,v 1.5
4 2004/01/04 21:44:44 kuehne
Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -226,6 +226,7 @@ struct intf_sys_t
IBOutlet
id
o_dmi_stop
;
IBOutlet
id
o_dmi_next
;
IBOutlet
id
o_dmi_previous
;
IBOutlet
id
o_dmi_mute
;
}
-
(
id
)
getControls
;
...
...
modules/gui/macosx/intf.m
View file @
01cb2578
...
...
@@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: intf.m,v 1.11
0 2003/12/22 17:08:22 bigben
Exp $
* $Id: intf.m,v 1.11
1 2004/01/04 21:44:44 kuehne
Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -435,7 +435,7 @@ unsigned int VLCModifiersToCocoa( unsigned int i_key )
}
-
(
void
)
initStrings
-
(
void
)
initStrings
{
[
o_window
setTitle
:
_NS
(
"VLC - Controller"
)];
[
o_scrollfield
setStringValue
:
_NS
(
"VLC Media Player"
)];
...
...
@@ -548,6 +548,7 @@ unsigned int VLCModifiersToCocoa( unsigned int i_key )
[
o_dmi_stop
setTitle
:
_NS
(
"Stop"
)];
[
o_dmi_next
setTitle
:
_NS
(
"Next"
)];
[
o_dmi_previous
setTitle
:
_NS
(
"Previous"
)];
[
o_dmi_mute
setTitle
:
_NS
(
"Mute"
)];
/* error panel */
[
o_error
setTitle
:
_NS
(
"Error"
)];
...
...
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