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
e76bab29
Commit
e76bab29
authored
Oct 30, 2005
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fixed some other strings
parent
ac22bdb8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
6 deletions
+18
-6
modules/access/mms/mms.c
modules/access/mms/mms.c
+1
-1
modules/gui/macosx/wizard.m
modules/gui/macosx/wizard.m
+17
-5
No files found.
modules/access/mms/mms.c
View file @
e76bab29
...
...
@@ -56,7 +56,7 @@ static void Close( vlc_object_t * );
will be selected" )
vlc_module_begin
();
set_shortname
(
_
(
"MMS"
)
);
set_shortname
(
"MMS"
);
set_description
(
_
(
"Microsoft Media Server (MMS) input"
)
);
set_capability
(
"access2"
,
-
1
);
set_category
(
CAT_INPUT
);
...
...
modules/gui/macosx/wizard.m
View file @
e76bab29
...
...
@@ -200,7 +200,7 @@ static VLCWizard *_o_sharedInstance = nil;
@"-1"
,
nil
];
o_spx
=
[
NSArray
arrayWithObjects
:
@"Speex"
,
@"spx"
,
\
_NS
(
"A free audio codec dedicated to compression of voice (useable "
\
"with OGG"
),
@"MUX_OGG"
,
@"-1"
,
@"-1"
,
@"-1"
,
@"-1"
,
@"-1"
,
@"-1"
,
\
"with OGG
)
"
),
@"MUX_OGG"
,
@"-1"
,
@"-1"
,
@"-1"
,
@"-1"
,
@"-1"
,
@"-1"
,
\
@"-1"
,
@"-1"
,
nil
];
o_s16l
=
[
NSArray
arrayWithObjects
:
@"Uncompressed, integer"
,
@"s16l"
,
\
_NS
(
"Uncompressed audio samples (useable with WAV)"
),
@"MUX_WAV"
,
\
...
...
@@ -252,6 +252,7 @@ static VLCWizard *_o_sharedInstance = nil;
NSArray
*
o_mms
;
NSArray
*
o_udp_uni
;
NSArray
*
o_udp_multi
;
NSArray
*
o_rtp
;
o_http
=
[
NSArray
arrayWithObjects
:
@"http"
,
@"HTTP"
,
_NS
(
"Enter the local "
\
"addresses you want to listen to. Do not enter anything if you want to "
\
"listen to all adresses or if you don't understand. This is generally "
\
...
...
@@ -278,8 +279,11 @@ static VLCWizard *_o_sharedInstance = nil;
"to a dynamic group of computers on a multicast-enabled network. This "
\
"is the most efficient method to stream to several computers, but it "
\
"does not work over Internet."
),
nil
];
o_rtp
=
[
NSArray
arrayWithObjects
:
@"rtp"
,
@"RTP"
,
_NS
(
"Enter the "
\
"address of the computer to stream to."
)
,
_NS
(
"Use this to stream "
\
"to a single computer."
),
nil
];
o_strmgMthds
=
[[
NSArray
alloc
]
initWithObjects
:
o_http
,
o_mms
,
\
o_udp_uni
,
o_udp_multi
,
nil
];
o_udp_uni
,
o_udp_multi
,
o_rtp
,
nil
];
}
-
(
void
)
showWizard
...
...
@@ -589,7 +593,7 @@ static VLCWizard *_o_sharedInstance = nil;
_NS
(
"OK"
),
@""
,
@""
,
o_wizard_window
,
nil
,
nil
,
nil
,
nil
,
\
_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."
));
"want use.
\n\n
Choose one before going to the next page."
));
}
}
else
if
([[[
o_tab_pageHolder
selectedTabViewItem
]
label
]
isEqualToString
:
\
...
...
@@ -655,7 +659,7 @@ static VLCWizard *_o_sharedInstance = nil;
_NS
(
"OK"
),
@""
,
@""
,
o_wizard_window
,
nil
,
nil
,
nil
,
nil
,
\
_NS
(
"You need to enter a valid destination you want to "
\
"stream to. Enter either a Unicast-IP or a Multicast-IP."
\
"
\n\n
If you don't know what this means, have a look at "
\
"
\n\n
If you don't know what this means, have a look at "
\
"the VLC Streaming HOWTO and the help texts in this "
\
"window."
));
}
else
{
...
...
@@ -1111,7 +1115,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
{
...
...
@@ -1556,6 +1560,14 @@ static VLCWizard *_o_sharedInstance = nil;
[
o_t3_txt_strgMthdInfo
setStringValue
:
[[
o_strmgMthds
objectAtIndex
:
1
]
\
objectAtIndex
:
3
]];
}
else
if
(
[
o_mode
intValue
]
==
4
)
{
/* RTP */
[
o_t3_txt_destInfo
setStringValue
:
[[
o_strmgMthds
objectAtIndex
:
4
]
\
objectAtIndex
:
2
]];
[
o_t3_txt_strgMthdInfo
setStringValue
:
[[
o_strmgMthds
objectAtIndex
:
4
]
\
objectAtIndex
:
3
]];
}
[
o_mode
release
];
}
...
...
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