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
be0055dc
Commit
be0055dc
authored
Nov 13, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/video_filter/transform.c: fix for ./toolbox --update-po
parent
ce6b6b1f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modules/video_filter/transform.c
modules/video_filter/transform.c
+4
-3
No files found.
modules/video_filter/transform.c
View file @
be0055dc
...
...
@@ -2,7 +2,7 @@
* transform.c : transform image plugin for vlc
*****************************************************************************
* Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
* $Id: transform.c,v 1.1
5 2003/11/05 00:39:17
gbazin Exp $
* $Id: transform.c,v 1.1
6 2003/11/13 21:15:43
gbazin Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -58,8 +58,9 @@ static int SendEvents( vlc_object_t *, char const *,
#define TYPE_LONGTEXT N_("One of '90', '180', '270', 'hflip' and 'vflip'")
static
char
*
type_list
[]
=
{
"90"
,
"180"
,
"270"
,
"hflip"
,
"vflip"
};
static
char
*
type_list_text
[]
=
{
N_
(
"Rotate by 90"
),
N_
(
"Rotate by 1800"
),
N_
(
"Rotate by 270"
),
N_
(
"Flip horizontally"
),
N_
(
"Flip vertically"
)
};
static
char
*
type_list_text
[]
=
{
N_
(
"Rotate by 90 degrees"
),
N_
(
"Rotate by 180 degrees"
),
N_
(
"Rotate by 270 degrees"
),
N_
(
"Flip horizontally"
),
N_
(
"Flip vertically"
)
};
vlc_module_begin
();
add_category_hint
(
N_
(
"Miscellaneous"
),
NULL
,
VLC_FALSE
);
...
...
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