| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011, the Dart project authors. | 2 * Copyright (c) 2011, the Dart project authors. |
| 3 * | 3 * |
| 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not | 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u
se this file except |
| 5 * use this file except in compliance with the License. You may obtain a copy of | 5 * in compliance with the License. You may obtain a copy of the License at |
| 6 * the License at | 6 * |
| 7 * | |
| 8 * http://www.eclipse.org/legal/epl-v10.html | 7 * http://www.eclipse.org/legal/epl-v10.html |
| 9 * | 8 * |
| 10 * Unless required by applicable law or agreed to in writing, software | 9 * Unless required by applicable law or agreed to in writing, software distribut
ed under the License |
| 11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K
IND, either express |
| 12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | 11 * or implied. See the License for the specific language governing permissions a
nd limitations under |
| 13 * License for the specific language governing permissions and limitations under | |
| 14 * the License. | 12 * the License. |
| 15 */ | 13 */ |
| 16 package com.google.dart.tools.ui.wizard; | 14 package com.google.dart.tools.ui.wizard; |
| 17 | 15 |
| 18 import org.eclipse.osgi.util.NLS; | 16 import org.eclipse.osgi.util.NLS; |
| 19 | 17 |
| 20 public class WizardMessages extends NLS { | 18 public class WizardMessages extends NLS { |
| 21 private static final String BUNDLE_NAME = "com.google.dart.tools.ui.wizard.Wiz
ardMessages"; //$NON-NLS-1$ | 19 private static final String BUNDLE_NAME = "com.google.dart.tools.ui.wizard.Wiz
ardMessages"; //$NON-NLS-1$ |
| 22 public static String NewApplicationWizard_title; | 20 public static String NewApplicationWizard_title; |
| 21 public static String NewApplicationWizardPage_ApplicationType_Title; |
| 23 public static String NewApplicationWizardPage_browse; | 22 public static String NewApplicationWizardPage_browse; |
| 23 public static String NewApplicationWizardPage_CommandLineApplication; |
| 24 public static String NewApplicationWizardPage_CommandLineButtonToolTip; |
| 24 public static String NewApplicationWizardPage_directory; | 25 public static String NewApplicationWizardPage_directory; |
| 25 public static String NewApplicationWizardPage_message; | 26 public static String NewApplicationWizardPage_message; |
| 26 public static String NewApplicationWizardPage_name; | 27 public static String NewApplicationWizardPage_name; |
| 27 public static String NewApplicationWizardPage_title; | 28 public static String NewApplicationWizardPage_title; |
| 29 public static String NewApplicationWizardPage_WebApplication; |
| 30 public static String NewApplicationWizardPage_WebButtonToolTip; |
| 28 public static String NewFileWizard_newFile; | 31 public static String NewFileWizard_newFile; |
| 29 public static String NewFileWizardPage_browse; | 32 public static String NewFileWizardPage_browse; |
| 30 public static String NewFileWizardPage_directory; | 33 public static String NewFileWizardPage_directory; |
| 31 public static String NewFileWizardPage_title; | 34 public static String NewFileWizardPage_title; |
| 32 public static String NewFileWizardPage_fileNameLabel; | 35 public static String NewFileWizardPage_fileNameLabel; |
| 33 public static String NewFileWizardPage_newDartFile; | 36 public static String NewFileWizardPage_newDartFile; |
| 34 public static String NewFileWizardPage_newHTMLFile; | 37 public static String NewFileWizardPage_newHTMLFile; |
| 35 public static String NewFileWizardPage_newCSSFile; | 38 public static String NewFileWizardPage_newCSSFile; |
| 36 public static String NewFileWizardPage_newEmptyFile; | 39 public static String NewFileWizardPage_newEmptyFile; |
| 37 public static String NewFileWizardPage_status1; | 40 public static String NewFileWizardPage_status1; |
| 38 public static String NewFileWizardPage_status2; | 41 public static String NewFileWizardPage_status2; |
| 39 static { | 42 static { |
| 40 // initialize resource bundle | 43 // initialize resource bundle |
| 41 NLS.initializeMessages(BUNDLE_NAME, WizardMessages.class); | 44 NLS.initializeMessages(BUNDLE_NAME, WizardMessages.class); |
| 42 } | 45 } |
| 43 | 46 |
| 44 private WizardMessages() { | 47 private WizardMessages() { |
| 45 } | 48 } |
| 46 } | 49 } |
| OLD | NEW |