]> git.sesse.net Git - vlc/blob - include/vlc_intf_strings.h
Qt4 - Codec Information direct access from menu.
[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_CODECINFO  N_("Codec Information...")
43 #define I_MENU_MSG   N_("Messages...")
44 #define I_MENU_EXT   N_("Extended settings...")
45
46 #define I_MENU_ABOUT N_("About VLC media player...")
47
48 /* Playlist popup */
49 #define I_POP_PLAY N_("Play")
50 #define I_POP_PREPARSE N_("Fetch information")
51 #define I_POP_DEL N_("Delete")
52 #define I_POP_INFO N_("Information...")
53 #define I_POP_SORT N_("Sort")
54 #define I_POP_ADD N_("Add node")
55 #define I_POP_STREAM N_("Stream...")
56 #define I_POP_SAVE N_("Save...")
57
58 /*************** Playlist *************/
59
60 #define I_PL_LOOP       N_("Repeat all")
61 #define I_PL_REPEAT     N_("Repeat one")
62 #define I_PL_NOREPEAT   N_("No repeat")
63
64 #define I_PL_RANDOM     N_("Random")
65 #define I_PL_NORANDOM   N_("No random")
66
67 #define I_PL_ADDPL      N_("Add to playlist")
68 #define I_PL_ADDML      N_("Add to media library")
69
70 #define I_PL_ADDF       N_("Add file...")
71 #define I_PL_ADVADD     N_("Advanced open...")
72 #define I_PL_ADDDIR     N_("Add directory...")
73
74 #define I_PL_SAVE       N_("Save playlist to file...")
75 #define I_PL_LOAD       N_("Load playlist file...")
76
77 #define I_PL_SEARCH     N_("Search")
78 #define I_PL_FILTER     N_("Search filter")
79
80 #define I_PL_SD         N_("Additional sources")
81
82 /*************** Preferences *************/
83
84 #define I_HIDDEN_ADV N_( "Some options are available but hidden. "\
85                          "Check \"Advanced options\" to see them." )
86
87 /*************** Video filters **************/
88
89 #define I_CLONE     N_("Image clone")
90 #define I_CLONE_TIP N_("Clone the image")
91
92 #define I_MAGNIFY       N_("Magnification")
93 #define I_MAGNIFY_TIP   N_("Magnify a part of the video. You can select " \
94                            "which part of the image should be magnified." )
95
96 #define I_WAVE      N_("Waves")
97 #define I_WAVE_TIP  N_("\"Waves\" video distortion effect")
98
99 #define I_RIPPLE_TIP N_("\"Water surface\" video distortion effect")
100
101 #define I_INVERT_TIP N_("Image colors inversion")
102
103 #define I_WALL_TIP N_("Split the image to make an image wall")
104
105 #define I_PUZZLE_TIP N_("Create a \"puzzle game\" with the video.\n" \
106                         "The video gets split in parts that you must sort.")
107
108 #define I_GRADIENT_TIP N_("\"Edge detection\" video distortion effect.\n" \
109                     "Try changing the various settings for different effects" )
110
111 #define I_COLORTHRES_TIP N_("\"Color detection\" effect. The whole image " \
112                   "will be turned to black and white, except the parts that "\
113                   "are of the color that you select in the settings.")
114
115 #endif