]> git.sesse.net Git - vlc/blobdiff - include/vlc_intf_strings.h
Add a string. Forgot that file in previous commits.
[vlc] / include / vlc_intf_strings.h
index 226ce79ba549aef4a56a3413cc01d8c4e5d44a4c..6a5a8f2c60dd57cf9a350763deaaf75104a718cb 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#if !defined( __LIBVLC__ )
+  #error You are not libvlc or one of its plugins. You cannot include this file
+#endif
+
 #ifndef _VLC_ISTRINGS_H
 #define _VLC_ISTRINGS_H 1
 
 /*************** Open dialogs **************/
 
-#define I_POP_SEL_FILES N_("Select one or more files to open")
+#define I_OP_OPF        N_("Quick &Open File...")
+#define I_OP_ADVOP      N_("&Advanced Open...")
+#define I_OP_OPDIR      N_("Open &Directory...")
+
+#define I_OP_SEL_FILES  N_("Select one or more files to open")
 
 /******************* Menus *****************/
 
+#define I_MENU_INFO  N_("Media Information...")
+#define I_MENU_CODECINFO  N_("Codec Information...")
+#define I_MENU_MSG   N_("Messages...")
+#define I_MENU_EXT   N_("Extended settings...")
+#define I_MENU_GOTOTIME N_("Go to specific time...")
+#define I_MENU_BOOKMARK N_("Bookmarks...")
+#define I_MENU_VLM N_("VLM Configuration...")
+
+#define I_MENU_ABOUT N_("About VLC media player...")
+
 /* Playlist popup */
 #define I_POP_PLAY N_("Play")
 #define I_POP_PREPARSE N_("Fetch information")
 #define I_POP_DEL N_("Delete")
-#define I_POP_INFO N_("Information")
+#define I_POP_INFO N_("Information...")
 #define I_POP_SORT N_("Sort")
 #define I_POP_ADD N_("Add node")
+#define I_POP_STREAM N_("Stream...")
+#define I_POP_SAVE N_("Save...")
+#define I_POP_EXPLORE N_("Open Folder...")
+
+/*************** Playlist *************/
+
+#define I_PL_LOOP       N_("Repeat all")
+#define I_PL_REPEAT     N_("Repeat one")
+#define I_PL_NOREPEAT   N_("No repeat")
+
+#define I_PL_RANDOM     N_("Random")
+#define I_PL_NORANDOM   N_("No random")
+
+#define I_PL_ADDPL      N_("Add to playlist")
+#define I_PL_ADDML      N_("Add to media library")
+
+#define I_PL_ADDF       N_("Add file...")
+#define I_PL_ADVADD     N_("Advanced open...")
+#define I_PL_ADDDIR     N_("Add directory...")
+
+#define I_PL_SAVE       N_("Save playlist to file...")
+#define I_PL_LOAD       N_("Load playlist file...")
+
+#define I_PL_SEARCH     N_("Search")
+#define I_PL_FILTER     N_("Search filter")
+
+#define I_PL_SD         N_("Additional sources")
 
 /*************** Preferences *************/
 
 #define I_HIDDEN_ADV N_( "Some options are available but hidden. "\
                          "Check \"Advanced options\" to see them." )
+
+/*************** Video filters **************/
+
+#define I_CLONE     N_("Image clone")
+#define I_CLONE_TIP N_("Clone the image")
+
+#define I_MAGNIFY       N_("Magnification")
+#define I_MAGNIFY_TIP   N_("Magnify a part of the video. You can select " \
+                           "which part of the image should be magnified." )
+
+#define I_WAVE      N_("Waves")
+#define I_WAVE_TIP  N_("\"Waves\" video distortion effect")
+
+#define I_RIPPLE_TIP N_("\"Water surface\" video distortion effect")
+
+#define I_INVERT_TIP N_("Image colors inversion")
+
+#define I_WALL_TIP N_("Split the image to make an image wall")
+
+#define I_PUZZLE_TIP N_("Create a \"puzzle game\" with the video.\n" \
+                        "The video gets split in parts that you must sort.")
+
+#define I_GRADIENT_TIP N_("\"Edge detection\" video distortion effect.\n" \
+                    "Try changing the various settings for different effects" )
+
+#define I_COLORTHRES_TIP N_("\"Color detection\" effect. The whole image " \
+                  "will be turned to black and white, except the parts that "\
+                  "are of the color that you select in the settings.")
+
 #endif