Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
a70b7325
Commit
a70b7325
authored
Apr 03, 2015
by
Felix Paul Kühne
Browse files
add moar l10n
parent
b4e8b43d
Changes
2
Hide whitespace changes
Inline
Side-by-side
VLC for iOS WatchKit Extension/VLCDetailInterfaceController.m
View file @
a70b7325
...
...
@@ -21,6 +21,16 @@
@implementation
VLCDetailInterfaceController
-
(
instancetype
)
init
{
self
=
[
super
init
];
if
(
self
)
{
[
self
.
playNowButton
setTitle
:
NSLocalizedString
(
@"Play now"
,
nil
)];
[
self
setTitle
:
NSLocalizedString
(
@"DETAIL"
,
nil
)];
}
return
self
;
}
-
(
void
)
awakeWithContext
:(
id
)
context
{
[
super
awakeWithContext
:
context
];
...
...
@@ -53,7 +63,6 @@
if
(
thumbnail
)
{
self
.
imageView
.
image
=
thumbnail
;
}
}
-
(
IBAction
)
playNow
{
...
...
VLC for iOS WatchKit Extension/VLCNowPlayingInterfaceController.m
View file @
a70b7325
...
...
@@ -22,6 +22,15 @@
@implementation
VLCNowPlayingInterfaceController
-
(
instancetype
)
init
{
self
=
[
super
init
];
if
(
self
)
{
[
self
setTitle
:
NSLocalizedString
(
@"PLAYING"
,
nil
)];
}
return
self
;
}
-
(
void
)
awakeWithContext
:(
id
)
context
{
[
super
awakeWithContext
:
context
];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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