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
ad0a2b09
Commit
ad0a2b09
authored
Feb 11, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: l10n fixes
parent
a7f2e897
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
modules/gui/macosx/coredialogs.m
modules/gui/macosx/coredialogs.m
+8
-7
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+1
-0
No files found.
modules/gui/macosx/coredialogs.m
View file @
ad0a2b09
...
...
@@ -230,14 +230,7 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil;
[
super
init
];
if
(
!
b_nib_loaded
)
{
b_nib_loaded
=
[
NSBundle
loadNibNamed
:
@"ErrorPanel"
owner
:
self
];
/* init strings */
[
o_window
setTitle
:
_NS
(
"Errors and Warnings"
)];
[
o_cleanup_button
setTitle
:
_NS
(
"Clean up"
)];
[
o_messages_btn
setTitle
:
_NS
(
"Show Details"
)];
}
/* init data sources */
o_errors
=
[[
NSMutableArray
alloc
]
init
];
...
...
@@ -246,6 +239,14 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil;
return
self
;
}
-
(
void
)
awakeFromNib
{
/* init strings */
[
o_window
setTitle
:
_NS
(
"Errors and Warnings"
)];
[
o_cleanup_button
setTitle
:
_NS
(
"Clean up"
)];
[
o_messages_btn
setTitle
:
_NS
(
"Show Details"
)];
}
-
(
void
)
dealloc
{
[
o_errors
release
];
...
...
modules/gui/macosx/intf.m
View file @
ad0a2b09
...
...
@@ -662,6 +662,7 @@ static VLCMain *_o_sharedMainInstance = nil;
/* we will need this, so let's load it here so the interface appears to be more responsive */
nib_open_loaded
=
[
NSBundle
loadNibNamed
:
@"Open"
owner
:
NSApp
];
[
self
initStrings
];
}
-
(
void
)
initStrings
...
...
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