FreeburnPreferencesText.cpp
上传用户:cnxinhai
上传日期:2013-08-06
资源大小:265k
文件大小:7k
源码类别:
DVD
开发平台:
Visual C++
- /* File defining all text strings to be used in the CFreeburnPreferences Class
- *
- * Copyright (C) 2001, 2002 Adam Schlag
- */
- /*
- * FreeBurn Software License
- * (based on the Apache Software License)
- *
- * Version 1.1
- *
- * Copyright (c) 2001, 2002 The FreeBurn Project. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * 3. The end-user documentation included with the redistribution, if any, must
- * include the following acknowledgment:
- *
- * "This product includes software developed by the FreeBurn
- * Project (http://freeburn.sourceforge.net/)."
- *
- * Alternately, this acknowledgment may appear in the software itself,
- * if and wherever such third-party acknowledgments normally appear.
- *
- * 4. The names "FreeBurn" and "FreeBurn Project" must not be
- * used to endorse or promote products derived from this software
- * without prior written permission. For written permission, please
- * contact aschlag@users.sourceforge.net.
- *
- * 5. Products derived from this software may not be called "FreeBurn",
- * nor may "FreeBurn" appear in their name, without prior written
- * permission of the FreeBurn Project.
- *
- * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
- * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE FREEBURN PROJECT OR ITS
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- *
- * This software consists of voluntary contributions made by many
- * individuals on behalf of the FreeBurn Project. For more
- * information on the FreeBurn Project and FreeBurn, please see
- * <http://freeburn.sourceforge.net/>.
- *
- * This software is distributed with software that is released under the GNU
- * General Public License (GPL). You can find the terms of this license in the
- * file GPL.txt distributed in this package. You can find information on the
- * software distributed with this package in the file PROGRAMS.txt.
- */
- #include "FreeburnDefs.h"
- #include "FreeburnPreferencesText.h"
- const char fbPreferencesTitleText[] = "Preferences";
- const char fbPreferencesProgramTitleText[] = "External Programs";
- const char fbPreferencesProgramButtonText[] = "ProgramstSet Program PathstChange the location of the external programs FreeBurn uses";
- const char fbPreferencesProgramShellText[] = "Unix Shell Path:ttPath to the program to use for a UNIX-style shell";
- const char fbPreferencesProgramCdrecordText[] = "Cdrecord Path:ttPath to cdrecord.exe (used for TAO and basic recording)";
- const char fbPreferencesProgramMkisofsText[] = "Mkisofs Path:ttPath to mkisofs.exe (used for creating hybrid ISO-9660 images)";
- const char fbPreferencesProgramCdrdaoText[] = "Cdrdao Path:ttPath to cdrdao.exe (used for DAO and advanced recording, and for .bin/.cue/.toc images)";
- const char fbPreferencesFindShellText[] = "tFind UNIX ShelltFind the location of a UNIX shell program";
- const char fbPreferencesFindCdrecordText[] = "tFind cdrecord.exetFind the location of cdrecord.exe";
- const char fbPreferencesFindMkisofsText[] = "tFind mkisofs.exetFind the location of mkisofs.exe";
- const char fbPreferencesFindCdrdaoText[] = "tFind cdrdao.exetFind the location of cdrdao.exe";
- const char fbPreferencesThemeTitleText[] = "FreeBurn Theme";
- const char fbPreferencesThemeButtonText[] = "ThemestSet The Program ThemetSet the theme (icons and colors) used by FreeBurn";
- const char fbPreferencesThemeIconText[] = "Icon ThemettChoose the icon theme you wish to use";
- const char fbPreferencesThemeDefaultText[] = "Default Theme";
- const char fbPreferencesThemeXPText[] = "XP Theme";
- const char fbPreferencesThemeKDEText[] = "KDE Theme";
- const char fbPreferencesThemeGNOMEText[] = "GNOME Theme";
- const char fbPreferencesThemePreviewText[] = "Preview";
- const char fbPreferencesThemeColorsText[] = "Color ThemettChoose the colors for displaying FreeBurn";
- const char fbPreferencesThemeBaseColorText[] = "Base ColorttBase Color is the color of the basic program itself";
- const char fbPreferencesThemeBackColorText[] = "Background ColorttBackground Color is the color of input fields and other similar elements";
- const char fbPreferencesThemeForeColorText[] = "Foreground ColorttForeground Color is the color of text and items displayed above the base program";
- const char fbPreferencesThemeBordColorText[] = "Border ColorttBorder color is the color of the borders of the different menus, windows, etc.";
- const char fbPreferencesThemeDefaultColorText[] = "DefaulttSet To Default ColortRevert the color back to the default color";
- const char fbPreferencesAcceptButtonText[] = "&OKttApply the changes made";
- const char fbPreferencesCancelButtonText[] = "&CancelttDo not apply the changes made";
- const char fbFindShellPathTitle[] = "Find UNIX Shell";
- const char *fbFindShellPathPatterns[] = {"Executable Files", "*.exe",
- "All Files", "*.*", NULL};
- const char fbFindCdrecordPathTitle[] = "Find cdrecord.exe";
- const char *fbFindCdrecordPathPatterns[]= {"cdrecord program", "cdrecord.exe",
- "Executable Files", "*.exe",
- "All Files", "*.*", NULL};
- const char fbFindMkisofsPathTitle[] = "Find mkisofs.exe";
- const char *fbFindMkisofsPathPatterns[] = {"mkisofs program", "mkisofs.exe",
- "Executable Files", "*.exe",
- "All Files", "*.*", NULL};
- const char fbFindCdrdaoPathTitle[] = "Find cdrdao.exe";
- const char *fbFindCdrdaoPathPatterns[] = {"cdrdao program", "cdrdao.exe",
- "Executable Files", "*.exe",
- "All Files", "*.*", NULL};