001: /*
002: * $RCSfile: Language_da_DK.java,v $
003: * @modification $Date: 2001/09/28 19:27:49 $
004: * @version $Id: Language_da_DK.java,v 1.1 2001/09/28 19:27:49 hfalk Exp $
005: *
006: */
007:
008: package com.memoire.vainstall.builder;
009:
010: import java.awt.event.*;
011:
012: import java.util.ListResourceBundle;
013: import java.io.Serializable;
014:
015: /**
016: * This is
017: *
018: * @see
019: *
020: * @author Henrik Falk
021: * @version $Id: Language_da_DK.java,v 1.1 2001/09/28 19:27:49 hfalk Exp $
022: */
023: public class Language_da_DK extends ListResourceBundle implements
024: Serializable {
025:
026: /**
027: * contents
028: */
029: public static Object[][] contents = {
030:
031: // Special Danish unicodes
032: // ae =\u00e6
033: // oe =\u00f8
034: // aa =\u00e5
035: // AE =\u00c6
036: // OE =\u00d8
037: // AA =\u00c5
038:
039: // LOCALIZE THIS
040:
041: // Common Strings
042: { "Common_OK", "OK" },
043: { "Common_Finish", "Finish" },
044: { "Common_Cancel", "Cancel" },
045:
046: // The Menu
047: { "Menu_File", "Fil" },
048: { "Menu_File_M", new Integer('F') },
049: { "Menu_FileNew", "Ny" },
050: { "Menu_FileNew_M", new Integer('N') },
051: { "Menu_FileOpen", "\u00c5bn" },
052: { "Menu_FileOpen_M", new Integer('\u00c5') },
053: { "Menu_FileSave", "Gem" },
054: { "Menu_FileSave_M", new Integer('G') },
055: { "Menu_FileSaveAll", "Gem Alle" },
056: { "Menu_FileSaveAll_M", new Integer('e') },
057: { "Menu_FileClose", "Luk" },
058: { "Menu_FileClose_M", new Integer('L') },
059: { "Menu_FilePreferences", "Indstillinger" },
060: { "Menu_FilePreferences_M", new Integer('I') },
061: { "Menu_FileQuit", "Afslut" },
062: { "Menu_FileQuit_M", new Integer('A') },
063:
064: { "Menu_Tools", "Tools" },
065: { "Menu_Tools_M", new Integer('T') },
066: { "Menu_ToolsShowRequirements", "Show Requirements" },
067: { "Menu_ToolsShowRequirements_M", new Integer('R') },
068: { "Menu_ToolsExportOld", "Export to old format" },
069: { "Menu_ToolsExportOld_M", new Integer('E') },
070:
071: { "Menu_Window", "Window" },
072: { "Menu_Window_M", new Integer('W') },
073: { "Menu_CascadeWindows", "Cascade Windows" },
074: { "Menu_CascadeWindows_M", new Integer('C') },
075: { "Menu_TileWindowsHorizontal", "Tile Windows Horizontal" },
076: { "Menu_TileWindowsHorizontal_M", new Integer('H') },
077: { "Menu_TileWindowsVertical", "Tile Windows Vertical" },
078: { "Menu_TileWindowsVertical_M", new Integer('V') },
079:
080: { "Menu_Help", "Hj\u00e6lp" },
081: { "Menu_Help_M", new Integer('H') },
082: { "Menu_HelpAbout", "Om" },
083: { "Menu_HelpAbout_M", new Integer('O') },
084:
085: // The Toolbar
086: { "ToolBarButton_New",
087: "<html><font color=black><center>New<br>Project</center></font></html>" },
088: { "ToolBarButton_Open",
089: "<html><font color=black><center>Open<br>Project</center></font></html>" },
090: { "ToolBarButton_Save",
091: "<html><font color=black><center>Save<br>Project</center></font></html>" },
092:
093: // Information
094: { "Information_Ready",
095: "<html><b><font color=black size=2><center>Ready.</center></font></b></html>" },
096:
097: // Tips of the day
098: { "Tip_0", "1" },
099: { "Tip_1",
100: "<html><b><font color=black size=2><center>Klar.</center></font></b></html>" },
101:
102: // **********************************************************
103: // Specific windows follows.
104: // The string are by purpose redundant because it's a more
105: // flexible way to handle rapid changes in the application.
106: // I hope this is ok :-)
107: // **********************************************************
108:
109: // AboutAction
110: { "AboutAction_AboutName", "About" },
111: { "AboutAction_AboutTitle", "About VAIBuilder" },
112: { "AboutAction_CopyrightName", "Copyrights" },
113: { "AboutAction_CopyrightTitle", "Various Copyrights" },
114:
115: // CloseProductAction
116: { "CloseProductAction_Version", " v" },
117: { "CloseProductAction_WantToSave",
118: "Product data has changed. Do you want to save ?" },
119:
120: // JavaProductPersister
121: { "JavaProductPersister_Load", "Load Product" },
122: { "JavaProductPersister_PleaseReport",
123: "<br>Please report the bug at http://sourceforge.net/projects/vainstall" },
124: { "JavaProductPersister_ProgramError",
125: "This is a program error." },
126: { "JavaProductPersister_MaybeError",
127: "This is maybe a program error." },
128: { "JavaProductPersister_NotInit", "Loader not initialized!" },
129: { "JavaProductPersister_NotFound",
130: "Project file not found!" },
131: { "JavaProductPersister_NotParse",
132: "Could not parse project file!" },
133:
134: // New Product Wizard
135: { "NewProductWizard_New", "New" },
136: { "NewProductWizard_Title", "VAInstall Project" },
137: { "NewProductWizard_SubTitle", "Create a new Project" },
138: { "NewProductWizard_Name", "Product name:" },
139: { "NewProductWizard_Version", "Product version:" },
140: { "NewProductWizard_Directory", "Root Project Directory:" },
141: { "NewProductWizard_Select", "Select Directory" },
142: { "NewProductWizard_Type", "Type of package:" },
143: { "NewProductWizard_Type_Install", "Install" },
144: { "NewProductWizard_Type_Update", "Update" },
145: { "NewProductWizard_Type_Module", "Module" },
146:
147: // PreferencesBaseNode
148: { "PreferencesBaseNode_Version", " v" },
149:
150: // PreferencesProjectNode
151: { "PreferencesProjectNode_Name", "Project" },
152: { "PreferencesProjectNode_Title",
153: "General Project Properties" },
154:
155: // PreferencesProjectPanel
156: { "PreferencesProjectPanel_Root", "Root Project Directory:" },
157: { "PreferencesProjectPanel_Change", "Change" },
158: { "PreferencesProjectPanel_Select", "Select Directory" },
159:
160: // VAIProductController
161: { "VAIProductController_Version", " v" },
162: { "VAIProductController_Dirty", "(*) " },
163: { "VAIProductController_CreateProject", "Create Project" },
164: { "VAIProductController_AlreadyExists",
165: "Project Directory already exists!" },
166: {
167: "VAIProductController_AlreadyExistsHelp",
168: "You are trying to create a project<br>with a product name and product version<br>that already exists!" },
169: { "VAIProductController_NotCreated",
170: "Project Directory could not be created!" },
171: { "VAIProductController_NotCreatedSecurity",
172: "Project Directory could not be created du to security issues!" },
173: { "VAIProductController_NotSaved",
174: "New Project could not be saved!" },
175:
176: // END OF MATERIAL TO LOCALIZE
177: };
178:
179: /**
180: * Method: getContents()
181: */
182: public Object[][] getContents() {
183: return contents;
184: }
185:
186: }
|