]> git.sesse.net Git - vlc/blob - include/vlc_intf_strings.h
Add video filters panel
[vlc] / include / vlc_intf_strings.h
1 /*****************************************************************************
2  * vlc_intf_strings.h : Strings for main interfaces
3  *****************************************************************************
4  * Copyright (C) 2003 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #if !defined( __LIBVLC__ )
25   #error You are not libvlc or one of its plugins. You cannot include this file
26 #endif
27
28 #ifndef _VLC_ISTRINGS_H
29 #define _VLC_ISTRINGS_H 1
30
31 /*************** Open dialogs **************/
32
33 #define I_OP_OPF        N_("Quick &Open File...")
34 #define I_OP_ADVOP      N_("&Advanced Open...")
35 #define I_OP_OPDIR      N_("Open &Directory...")
36
37 #define I_OP_SEL_FILES  N_("Select one or more files to open")
38
39 /******************* Menus *****************/
40
41 #define I_MENU_INFO  N_("Information...")
42 #define I_MENU_MSG   N_("Messages...")
43 #define I_MENU_EXT   N_("Extended settings...")
44
45 #define I_MENU_ABOUT N_("About VLC media player...")
46
47 /* Playlist popup */
48 #define I_POP_PLAY N_("Play")
49 #define I_POP_PREPARSE N_("Fetch information")
50 #define I_POP_DEL N_("Delete")
51 #define I_POP_INFO N_("Information...")
52 #define I_POP_SORT N_("Sort")
53 #define I_POP_ADD N_("Add node")
54 #define I_POP_STREAM N_("Stream...")
55 #define I_POP_SAVE N_("Save...")
56
57 /*************** Playlist *************/
58
59 #define I_PL_LOOP       N_("Repeat all")
60 #define I_PL_REPEAT     N_("Repeat one")
61 #define I_PL_NOREPEAT   N_("No repeat")
62
63 #define I_PL_RANDOM     N_("Random")
64 #define I_PL_NORANDOM   N_("No random")
65
66 #define I_PL_ADDPL      N_("Add to playlist")
67 #define I_PL_ADDML      N_("Add to media library")
68
69 #define I_PL_ADDF       N_("Add file...")
70 #define I_PL_ADVADD     N_("Advanced open...")
71 #define I_PL_ADDDIR     N_("Add directory...")
72
73 #define I_PL_SAVE       N_("Save playlist to file...")
74 #define I_PL_LOAD       N_("Load playlist file...")
75
76 #define I_PL_SEARCH     N_("Search")
77 #define I_PL_FILTER     N_("Search filter")
78
79 #define I_PL_SD         N_("Additional sources")
80
81 /*************** Preferences *************/
82
83 #define I_HIDDEN_ADV N_( "Some options are available but hidden. "\
84                          "Check \"Advanced options\" to see them." )
85
86 /*************** Video filters **************/
87
88 #define I_CLONE     N_("Image clone")
89 #define I_CLONE_TIP N_("Clone the image")
90
91 #define I_MAGNIFY       N_("Magnification")
92 #define I_MAGNIFY_TIP   N_("Magnify a part of the video. You can select " \
93                            "which part of the image should be magnified." )
94
95 #define I_WAVE      N_("Waves")
96 #define I_WAVE_TIP  N_("\"Waves\" video distortion effect")
97
98 #define I_RIPPLE_TIP N_("\"Water surface\" video distortion effect")
99
100 #define I_INVERT_TIP N_("Image colors inversion")
101
102 #define I_WALL_TIP N_("Split the image to make an image wall")
103
104 #define I_PUZZLE_TIP N_("Create a \"puzzle game\" with the video.\n" \
105                         "The video gets split in parts that you must sort.")
106
107 #define I_GRADIENT_TIP N_("\"Edge detection\" video distortion effect.\n" \
108                     "Try changing the various settings for different effects" )
109
110 #define I_COLORTHRES_TIP N_("\"Color detection\" effect. The whole image " \
111                   "will be turned to black and white, except the parts that "\
112                   "are of the color that you select in the settings.")
113
114 #endif