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
db7107f2
Commit
db7107f2
authored
Oct 27, 2005
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* minor string fixes
parent
1bf86eb0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
11 deletions
+13
-11
modules/gui/macosx/bookmarks.m
modules/gui/macosx/bookmarks.m
+7
-7
modules/gui/macosx/wizard.m
modules/gui/macosx/wizard.m
+6
-4
No files found.
modules/gui/macosx/bookmarks.m
View file @
db7107f2
...
...
@@ -239,9 +239,9 @@ static VLCBookmarks *_o_sharedInstance = nil;
if
(
p_old_input
!=
p_input
)
{
NSBeginCriticalAlertSheet
(
_NS
(
"Input has changed"
),
_NS
(
"OK"
),
\
@""
,
@""
,
o_bookmarks_window
,
nil
,
nil
,
nil
,
nil
,
_NS
(
"Input "
\
"has changed, unable to save bookmark. Use
\"
p
ause
\"
while "
\
"editing bookmarks to keep the same input."
));
@""
,
@""
,
o_bookmarks_window
,
nil
,
nil
,
nil
,
nil
,
_NS
(
"Input "
\
"has changed, unable to save bookmark. Use
\"
P
ause
\"
while "
\
"editing bookmarks to keep the same input."
));
vlc_object_release
(
p_input
);
return
;
}
...
...
@@ -289,8 +289,8 @@ static VLCBookmarks *_o_sharedInstance = nil;
if
(
[
o_tbl_dataTable
numberOfSelectedRows
]
<
2
)
{
NSBeginAlertSheet
(
_NS
(
"Invalid selection"
),
_NS
(
"OK"
),
\
@""
,
@""
,
o_bookmarks_window
,
nil
,
nil
,
nil
,
nil
,
_NS
(
""
\
"You must select two bookmarks
"
));
@""
,
@""
,
o_bookmarks_window
,
nil
,
nil
,
nil
,
nil
,
_NS
(
""
\
"You have to select two bookmarks.
"
));
return
;
}
input_thread_t
*
p_input
=
...
...
@@ -299,8 +299,8 @@ static VLCBookmarks *_o_sharedInstance = nil;
if
(
!
p_input
)
{
NSBeginCriticalAlertSheet
(
_NS
(
"No input found"
),
_NS
(
"OK"
),
\
@""
,
@""
,
o_bookmarks_window
,
nil
,
nil
,
nil
,
nil
,
_NS
(
""
\
"The stream must be playing or paused for bookmarks to work
"
));
@""
,
@""
,
o_bookmarks_window
,
nil
,
nil
,
nil
,
nil
,
_NS
(
""
\
"The stream must be playing or paused for bookmarks to work.
"
));
return
;
}
...
...
modules/gui/macosx/wizard.m
View file @
db7107f2
...
...
@@ -587,9 +587,9 @@ static VLCWizard *_o_sharedInstance = nil;
/* show a sheet that the user didn't select a file */
NSBeginInformationalAlertSheet
(
_NS
(
"No input selected"
),
\
_NS
(
"OK"
),
@""
,
@""
,
o_wizard_window
,
nil
,
nil
,
nil
,
nil
,
\
_NS
(
"You
selected neither a new stream nor a valid playlist
"
\
"
item. VLC is unable to guess, which input you want use. "
\
"
\n\n
Choose one before going to the next page."
));
_NS
(
"You
have selected neither a new stream nor a valid
"
\
"
playlist item. VLC is unable to guess, which input you "
\
"
want use.
\n\n
Choose one before going to the next page."
));
}
}
else
if
([[[
o_tab_pageHolder
selectedTabViewItem
]
label
]
isEqualToString
:
\
...
...
@@ -1111,7 +1111,7 @@ static VLCWizard *_o_sharedInstance = nil;
/* complain to the user that "" is no valid path */
NSBeginInformationalAlertSheet
(
_NS
(
"No file selected"
),
_NS
(
"OK"
),
\
@""
,
@""
,
o_wizard_window
,
nil
,
nil
,
nil
,
nil
,
_NS
(
"You you "
\
"need to select a file, you want to save to.
\n\n
Enter either "
\
"need to select a file, you want to save to.
\n\n
Enter either "
\
"a valid path or choose a location through the button's "
\
"dialog-box."
));
}
else
{
...
...
@@ -1670,6 +1670,8 @@ static VLCWizard *_o_sharedInstance = nil;
[[
o_userSelections
objectForKey
:
@"encapFormat"
]
intValue
]]
\
objectAtIndex
:
0
];
/* don't use ".ps" as suffix, since the OSX Finder confuses our creations
* with PostScript-files and wants to open them with Preview.app */
if
(
theEncapFormat
!=
@"ps"
)
{
[
savePanel
setRequiredFileType
:
theEncapFormat
];
...
...
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