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