1 /*****************************************************************************
2 * vlc_intf_strings.h : Strings for main interfaces
3 *****************************************************************************
4 * Copyright (C) 2003 the VideoLAN team
7 * Authors: Clément Stenac <zorglub@videolan.org>
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.
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.
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 *****************************************************************************/
24 #if !defined( __LIBVLC__ )
25 #error You are not libvlc or one of its plugins. You cannot include this file
28 #ifndef _VLC_ISTRINGS_H
29 #define _VLC_ISTRINGS_H 1
31 /*************** Open dialogs **************/
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...")
37 #define I_OP_SEL_FILES N_("Select one or more files to open")
39 /******************* Menus *****************/
41 #define I_MENU_INFO N_("Media 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 #define I_MENU_BOOKMARK N_("Bookmarks...")
47 #define I_MENU_VLM N_("VLM Configuration...")
49 #define I_MENU_ABOUT N_("About VLC media player...")
52 #define I_POP_PLAY N_("Play")
53 #define I_POP_PREPARSE N_("Fetch information")
54 #define I_POP_DEL N_("Delete")
55 #define I_POP_INFO N_("Information...")
56 #define I_POP_SORT N_("Sort")
57 #define I_POP_ADD N_("Add node")
58 #define I_POP_STREAM N_("Stream...")
59 #define I_POP_SAVE N_("Save...")
61 /*************** Playlist *************/
63 #define I_PL_LOOP N_("Repeat all")
64 #define I_PL_REPEAT N_("Repeat one")
65 #define I_PL_NOREPEAT N_("No repeat")
67 #define I_PL_RANDOM N_("Random")
68 #define I_PL_NORANDOM N_("No random")
70 #define I_PL_ADDPL N_("Add to playlist")
71 #define I_PL_ADDML N_("Add to media library")
73 #define I_PL_ADDF N_("Add file...")
74 #define I_PL_ADVADD N_("Advanced open...")
75 #define I_PL_ADDDIR N_("Add directory...")
77 #define I_PL_SAVE N_("Save playlist to file...")
78 #define I_PL_LOAD N_("Load playlist file...")
80 #define I_PL_SEARCH N_("Search")
81 #define I_PL_FILTER N_("Search filter")
83 #define I_PL_SD N_("Additional sources")
85 /*************** Preferences *************/
87 #define I_HIDDEN_ADV N_( "Some options are available but hidden. "\
88 "Check \"Advanced options\" to see them." )
90 /*************** Video filters **************/
92 #define I_CLONE N_("Image clone")
93 #define I_CLONE_TIP N_("Clone the image")
95 #define I_MAGNIFY N_("Magnification")
96 #define I_MAGNIFY_TIP N_("Magnify a part of the video. You can select " \
97 "which part of the image should be magnified." )
99 #define I_WAVE N_("Waves")
100 #define I_WAVE_TIP N_("\"Waves\" video distortion effect")
102 #define I_RIPPLE_TIP N_("\"Water surface\" video distortion effect")
104 #define I_INVERT_TIP N_("Image colors inversion")
106 #define I_WALL_TIP N_("Split the image to make an image wall")
108 #define I_PUZZLE_TIP N_("Create a \"puzzle game\" with the video.\n" \
109 "The video gets split in parts that you must sort.")
111 #define I_GRADIENT_TIP N_("\"Edge detection\" video distortion effect.\n" \
112 "Try changing the various settings for different effects" )
114 #define I_COLORTHRES_TIP N_("\"Color detection\" effect. The whole image " \
115 "will be turned to black and white, except the parts that "\
116 "are of the color that you select in the settings.")