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
1a6cc437
Commit
1a6cc437
authored
May 25, 2007
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gui/wx: i18n fixes pointed by Cristi Secara
parent
fd549c75
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/gui/wxwidgets/dialogs/vlm/vlm_panel.cpp
modules/gui/wxwidgets/dialogs/vlm/vlm_panel.cpp
+1
-1
modules/gui/wxwidgets/extrapanel.cpp
modules/gui/wxwidgets/extrapanel.cpp
+2
-2
No files found.
modules/gui/wxwidgets/dialogs/vlm/vlm_panel.cpp
View file @
1a6cc437
...
@@ -413,7 +413,7 @@ VLMAddStreamPanel::VLMAddStreamPanel( intf_thread_t *_p_intf,
...
@@ -413,7 +413,7 @@ VLMAddStreamPanel::VLMAddStreamPanel( intf_thread_t *_p_intf,
0
,
wxEXPAND
|
wxALL
,
5
);
0
,
wxEXPAND
|
wxALL
,
5
);
}
}
lower_sizer
->
Add
(
new
wxButton
(
this
,
Create_Event
,
lower_sizer
->
Add
(
new
wxButton
(
this
,
Create_Event
,
wxU
(
_
(
b_edit
?
"OK"
:
"Create"
)
)
),
wxU
(
_
(
b_edit
?
"OK"
:
N_
(
"Create"
)
)
)
),
0
,
wxEXPAND
|
wxALL
,
5
);
0
,
wxEXPAND
|
wxALL
,
5
);
...
...
modules/gui/wxwidgets/extrapanel.cpp
View file @
1a6cc437
...
@@ -483,12 +483,12 @@ wxPanel *ExtraPanel::EqzPanel( wxWindow *parent )
...
@@ -483,12 +483,12 @@ wxPanel *ExtraPanel::EqzPanel( wxWindow *parent )
top_sizer
->
Add
(
0
,
0
,
1
,
wxALL
,
2
);
top_sizer
->
Add
(
0
,
0
,
1
,
wxALL
,
2
);
smooth_text
=
new
wxStaticText
(
panel
,
-
1
,
wxU
(
_
(
"Smooth :"
)
));
smooth_text
=
new
wxStaticText
(
panel
,
-
1
,
wxU
(
_
(
"Smooth :"
)
));
smooth_text
->
SetToolTip
(
wxU
(
SMOOTH_TIP
)
);
smooth_text
->
SetToolTip
(
wxU
(
_
(
SMOOTH_TIP
)
)
);
top_sizer
->
Add
(
smooth_text
,
0
,
wxALL
,
2
);
top_sizer
->
Add
(
smooth_text
,
0
,
wxALL
,
2
);
smooth_slider
=
new
wxSlider
(
panel
,
Smooth_Event
,
0
,
0
,
10
,
smooth_slider
=
new
wxSlider
(
panel
,
Smooth_Event
,
0
,
0
,
10
,
wxDefaultPosition
,
wxSize
(
100
,
-
1
)
);
wxDefaultPosition
,
wxSize
(
100
,
-
1
)
);
smooth_slider
->
SetToolTip
(
wxU
(
SMOOTH_TIP
)
);
smooth_slider
->
SetToolTip
(
wxU
(
_
(
SMOOTH_TIP
)
)
);
top_sizer
->
Add
(
smooth_slider
,
0
,
wxALL
,
2
);
top_sizer
->
Add
(
smooth_slider
,
0
,
wxALL
,
2
);
i_smooth
=
0
;
i_smooth
=
0
;
...
...
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