Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLC-iOS
Commits
61859587
Commit
61859587
authored
Jan 02, 2018
by
Soomin Lee
Committed by
Carola Nitz
Jan 03, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VLCMovieViewController: Update sleep timer strings
Signed-off-by:
Carola Nitz
<
nitz.carola@googlemail.com
>
parent
4995cd45
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
Resources/en.lproj/Localizable.strings
Resources/en.lproj/Localizable.strings
+2
-0
Sources/VLCMovieViewController.m
Sources/VLCMovieViewController.m
+2
-2
No files found.
Resources/en.lproj/Localizable.strings
View file @
61859587
...
...
@@ -65,6 +65,8 @@
"BUTTON_LEARN_MORE" = "Learn More";
"BUTTON_LOGOUT" = "Logout";
"BUTTON_CONTINUE" = "Continue";
"BUTTON_SET" = "Set";
"BUTTON_RESET" = "Reset";
"PRIVATE_PLAYBACK_TOGGLE" = "Private Playback";
"SCAN_SUBTITLE_TOGGLE" = "Scan for Subtitles (http-only)";
...
...
Sources/VLCMovieViewController.m
View file @
61859587
...
...
@@ -571,7 +571,7 @@ typedef NS_ENUM(NSInteger, VLCPanType) {
UIButton
*
cancelSleepTimer
=
[[
UIButton
alloc
]
initWithFrame
:
CGRectMake
(
0
.,
162
.,
150
.,
48
.)];
cancelSleepTimer
.
backgroundColor
=
[
UIColor
clearColor
];
[
cancelSleepTimer
setTitle
:
NSLocalizedString
(
@"BUTTON_
CANCEL
"
,
nil
)
forState
:
UIControlStateNormal
];
[
cancelSleepTimer
setTitle
:
NSLocalizedString
(
@"BUTTON_
RESET
"
,
nil
)
forState
:
UIControlStateNormal
];
[
cancelSleepTimer
setTintColor
:[
UIColor
VLCLightTextColor
]];
[
cancelSleepTimer
setTitleColor
:[
UIColor
VLCDarkTextShadowColor
]
forState
:
UIControlStateHighlighted
];
[
cancelSleepTimer
addTarget
:
self
action
:
@selector
(
sleepTimerCancel
:
)
forControlEvents
:
UIControlEventTouchDown
];
...
...
@@ -580,7 +580,7 @@ typedef NS_ENUM(NSInteger, VLCPanType) {
UIButton
*
confirmSleepTimer
=
[[
UIButton
alloc
]
initWithFrame
:
CGRectMake
(
150
.,
162
.,
150
.,
48
.)];
confirmSleepTimer
.
backgroundColor
=
[
UIColor
clearColor
];
[
confirmSleepTimer
setTitle
:
NSLocalizedString
(
@"BUTTON_
DONE
"
,
nil
)
forState
:
UIControlStateNormal
];
[
confirmSleepTimer
setTitle
:
NSLocalizedString
(
@"BUTTON_
SET
"
,
nil
)
forState
:
UIControlStateNormal
];
[
confirmSleepTimer
setTintColor
:[
UIColor
VLCLightTextColor
]];
[
confirmSleepTimer
setTitleColor
:[
UIColor
VLCDarkTextShadowColor
]
forState
:
UIControlStateHighlighted
];
[
confirmSleepTimer
addTarget
:
self
action
:
@selector
(
sleepTimerAction
:
)
forControlEvents
:
UIControlEventTouchDown
];
...
...
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