]> git.sesse.net Git - vlc/blob - include/vlc_intf_strings.h
Add missing actions in popup
[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 #ifndef _VLC_ISTRINGS_H
25 #define _VLC_ISTRINGS_H 1
26
27 /*************** Open dialogs **************/
28
29 #define I_POP_SEL_FILES N_("Select one or more files to open")
30
31 /******************* Menus *****************/
32
33 /* Playlist popup */
34 #define I_POP_PLAY N_("Play")
35 #define I_POP_PREPARSE N_("Fetch information")
36 #define I_POP_DEL N_("Delete")
37 #define I_POP_INFO N_("Information...")
38 #define I_POP_SORT N_("Sort")
39 #define I_POP_ADD N_("Add node")
40 #define I_POP_STREAM N_("Stream...")
41 #define I_POP_SAVE N_("Save...")
42
43 /*************** Preferences *************/
44
45 #define I_HIDDEN_ADV N_( "Some options are available but hidden. "\
46                          "Check \"Advanced options\" to see them." )
47 #endif