FreeburnText.h
上传用户:cnxinhai
上传日期:2013-08-06
资源大小:265k
文件大小:7k
- /* Include file for all text strings to be used in the CFreeBurn 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.
- */
- #ifndef FREEBURN_TEXT_H
- #define FREEBURN_TEXT_H
-
- extern const char fbAppTitle[];
- // menu titles
- extern const char fbFileMenuTitle[];
- extern const char fbOptionsMenuTitle[];
- extern const char fbHelpMenuTitle[];
- // file menu commands
- extern const char fbFileMenuNewText[];
- extern const char fbFileMenuOpenText[];
- extern const char fbFileMenuSaveText[];
- extern const char fbFileMenuCloseText[];
- extern const char fbFileMenuQuitText[];
- // options menu commands
- extern const char fbOptionsMenuPropertiesText[];
- // help menu commands
- extern const char fbHelpMenuHelpText[];
- extern const char fbHelpMenuCdrecordText[];
- extern const char fbHelpMenuMkisofsText[];
- extern const char fbHelpMenuCdrdaoText[];
- extern const char fbHelpMenuAboutText[];
- // toolbar button labels, tooltips, etc.
- extern const char fbNewButtonText[];
- extern const char fbOpenButtonText[];
- extern const char fbSaveButtonText[];
- extern const char fbBurnCDButtonText[];
- extern const char fbCDImageButtonText[];
- extern const char fbPropertiesButtonText[];
- extern const char fbHelpButtonText[];
- extern const char fbExitButtonText[];
- // Text that applies to how settings are stored in the registry
- // Program settings section
- extern const char fbRegSectionProgramText[];
- // Program settings registry properties
- extern const char fbRegPropertyThemeText[];
- extern const char fbRegPropertyXposText[];
- extern const char fbRegPropertyYposText[];
- extern const char fbRegPropertyWidthText[];
- extern const char fbRegPropertyHeightText[];
- // Command Paths section
- extern const char fbRegSectionCommandPathsText[];
- // Command Paths registry properties
- extern const char fbRegPropertyShellPathText[];
- extern const char fbRegPropertyCdrecordPathText[];
- extern const char fbRegPropertyMkisofsPathText[];
- extern const char fbRegPropertyCdrdaoPathText[];
- // Command Path Defaults
- extern const char fbRegDefaultShellPathText[];
- extern const char fbRegDefaultCdrecordPathText[];
- extern const char fbRegDefaultMkisofsPathText[];
- extern const char fbRegDefaultCdrdaoPathText[];
- // Execute Dialog Error Dialog Titles and messages
- extern const char fbCmdNotExistTitleText[];
- extern const char fbCmdNotExistMessageText[];
- extern const char fbCmdErrorTitleText[];
- extern const char fbCmdErrorMessageText[];
- // Messages for saving changes to a disc layout
- extern const char fbSaveChangesTitleText[];
- extern const char fbSaveChangesMessageText[];
- // Strings for display in the main program window
- extern const char fbDiscSizeLabelText[];
- extern const char fbDiscTypeLabelText[];
- extern const char fb74650DiscText[];
- extern const char fb80700DiscText[];
- extern const char fbAudioDiscText[];
- extern const char fbCdRomDiscText[];
- extern const char fbCdRomXaDiscText[];
- extern const char fbCatNumLabelText[];
- extern const char fbCdTextLabelText[];
- extern const char fbEditGlobalCdTextButtonText[];
- extern const char fbAddCdTrackLabelText[];
- extern const char fbTrackLabel1Text[];
- extern const char fbAddTrackButtonText[];
- extern const char fbAudioTrackOptionText[];
- extern const char fbDataTrackOptionText[];
- extern const char fbRawDataTrackOptionText[];
- extern const char fbMode2DataTrackOptionText[];
- extern const char fbMode2AudioTrackOptionText[];
- extern const char fbMode2RawTrackOptionText[];
- extern const char fbModTrackLabelText[];
- extern const char fbModTrackButtonText[];
- extern const char fbEditTrackOptionText[];
- extern const char fbDeleteTrackOptionText[];
- extern const char fbTrackNumberHelpText[];
- extern const char fbDiscUsedSpaceLabelText[];
- extern const char fbDiscFreeSpaceLabelText[];
- extern const char fbDiscConfigBoxText[];
- extern const char fbTrackFuncsBoxText[];
- // strings for verifying deletion of a track from a disc class
- extern const char fbDeleteTrackTitleText[];
- extern const char fbDeleteTrackMessageText[];
- extern const char fbDeleteTrackErrorTitleText[];
- extern const char fbDeleteTrackErrorMessageText[];
- #endif