Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
e90c868f
Commit
e90c868f
authored
Apr 01, 2006
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gui/macos/*: 2nd String Review (refs #438)
parent
330b37e6
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
modules/gui/macosx/extended.m
modules/gui/macosx/extended.m
+1
-1
modules/gui/macosx/interaction.m
modules/gui/macosx/interaction.m
+1
-1
modules/gui/macosx/macosx.m
modules/gui/macosx/macosx.m
+2
-2
modules/gui/macosx/open.m
modules/gui/macosx/open.m
+2
-2
modules/gui/macosx/vout.m
modules/gui/macosx/vout.m
+1
-1
modules/gui/macosx/voutgl.m
modules/gui/macosx/voutgl.m
+1
-1
modules/gui/macosx/voutqt.m
modules/gui/macosx/voutqt.m
+1
-1
No files found.
modules/gui/macosx/extended.m
View file @
e90c868f
...
...
@@ -777,7 +777,7 @@ static VLCExtended *_o_sharedInstance = nil;
if
(
returnedValue
!=
0
)
{
msg_Err
(
p_playlist
,
"
U
nable to save the preferences of the "
\
msg_Err
(
p_playlist
,
"
u
nable to save the preferences of the "
\
"extended control attribute '%s' (%i)"
,
[[
theModules
objectAtIndex
:
x
]
UTF8String
]
,
returnedValue
);
[
theModules
release
];
...
...
modules/gui/macosx/interaction.m
View file @
e90c868f
...
...
@@ -113,7 +113,7 @@
int
i
=
0
;
id
o_window
=
NULL
;
if
(
!
p_dialog
)
msg_Err
(
p_intf
,
"
N
o available interaction framework"
);
msg_Err
(
p_intf
,
"
n
o available interaction framework"
);
if
(
!
nib_interact_loaded
)
{
...
...
modules/gui/macosx/macosx.m
View file @
e90c868f
...
...
@@ -48,8 +48,8 @@ void E_(CloseVideoGL) ( vlc_object_t * );
* Module descriptor
*****************************************************************************/
#define EMBEDDED_TEXT N_("Embedded video output")
#define EMBEDDED_LONGTEXT N_(
"If enabled the video output will "
\
"be displayed
in the controller window instead of a in separate window.")
#define EMBEDDED_LONGTEXT N_( \
"Display the video
in the controller window instead of a in separate window.")
#define VDEV_TEXT N_("Video device")
#define VDEV_LONGTEXT N_("Number of the screen to use by default to display " \
...
...
modules/gui/macosx/open.m
View file @
e90c868f
...
...
@@ -241,9 +241,9 @@ static VLCOpen *_o_sharedMainInstance = nil;
[
o_file_sub_btn_settings
setTitle
:
_NS
(
"Settings..."
)];
[
o_file_sub_btn_browse
setTitle
:
_NS
(
"Browse..."
)];
[
o_file_sub_override
setTitle
:
_NS
(
"Override parametters"
)];
[
o_file_sub_delay_lbl
setStringValue
:
_NS
(
"
d
elay"
)];
[
o_file_sub_delay_lbl
setStringValue
:
_NS
(
"
D
elay"
)];
[
o_file_sub_delay_stp
setEnabled
:
NO
];
[
o_file_sub_fps_lbl
setStringValue
:
_NS
(
"
fps
"
)];
[
o_file_sub_fps_lbl
setStringValue
:
_NS
(
"
FPS
"
)];
[
o_file_sub_fps_stp
setEnabled
:
NO
];
[
o_file_sub_encoding_lbl
setStringValue
:
_NS
(
"Subtitles encoding"
)];
[
o_file_sub_encoding_pop
removeAllItems
];
...
...
modules/gui/macosx/vout.m
View file @
e90c868f
...
...
@@ -97,7 +97,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
}
else
{
msg_Warn
(
VLCIntf
,
"
C
annot find Video Output"
);
msg_Warn
(
VLCIntf
,
"
c
annot find Video Output"
);
}
}
...
...
modules/gui/macosx/voutgl.m
View file @
e90c868f
...
...
@@ -313,7 +313,7 @@ static int AspectCropCallback( vlc_object_t *p_this, char const *psz_cmd,
if
(
!
fmt
)
{
msg_Warn
(
p_vout
,
"
C
ould not create OpenGL video output"
);
msg_Warn
(
p_vout
,
"
c
ould not create OpenGL video output"
);
return
nil
;
}
...
...
modules/gui/macosx/voutqt.m
View file @
e90c868f
...
...
@@ -141,7 +141,7 @@ int E_(OpenVideoQT) ( vlc_object_t *p_this )
p_vout
->
p_sys
->
b_embedded
=
VLC_FALSE
;
p_vout
->
p_sys
->
b_altivec
=
p_vout
->
p_libvlc
->
i_cpu
&
CPU_CAPABILITY_ALTIVEC
;
msg_Dbg
(
p_vout
,
"
W
e do%s have Altivec"
,
p_vout
->
p_sys
->
b_altivec
?
""
:
"n't"
);
msg_Dbg
(
p_vout
,
"
w
e do%s have Altivec"
,
p_vout
->
p_sys
->
b_altivec
?
""
:
"n't"
);
/* Initialize QuickTime */
p_vout
->
p_sys
->
h_img_descr
=
...
...
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