|
1 | | -package org.eclipsescript.messages; |
2 | | - |
3 | | -import org.eclipse.osgi.util.NLS; |
4 | | - |
5 | | -/** |
6 | | - * Localization messages using the {@link NLS} system. The static initializer block will initialize the fields of this |
7 | | - * class with values loaded from the messages properties file. |
8 | | - */ |
9 | | -public class Messages extends NLS { |
10 | | - |
11 | | - private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$ |
12 | | - |
13 | | - public static String cannotRunCurrentScriptText; |
14 | | - public static String cannotRunCurrentScriptTitle; |
15 | | - public static String clearMarkersJobName; |
16 | | - public static String fileToIncludeDoesNotExist; |
17 | | - public static String fileToReadDoesNotExist; |
18 | | - public static String internalErrorDialogDetails; |
19 | | - public static String internalErrorDialogText; |
20 | | - public static String internalErrorDialogTitle; |
21 | | - public static String noDocumentSelected; |
22 | | - public static String noSelectionSelected; |
23 | | - public static String noTextEditorSelected; |
24 | | - public static String notPossibleToScheduleObject; |
25 | | - public static String removeAllTerminatedConsoles; |
26 | | - public static String Resources_cannotReadFromObject; |
27 | | - public static String runScriptBeforeRunningLast; |
28 | | - public static String scriptAlertDialogTitle; |
29 | | - public static String scriptBackgroundJobName; |
30 | | - public static String scriptConfirmDialogTitle; |
31 | | - public static String scriptConsoleName; |
32 | | - public static String scriptErrorWhenRunningScriptDialogText; |
33 | | - public static String scriptErrorWhenRunningScriptDialogTitle; |
34 | | - public static String scriptErrorWhenRunningScriptJumpToScriptButton; |
35 | | - public static String scriptErrorWhenRunningScriptOkButton; |
36 | | - public static String scriptPromptDialogTitle; |
37 | | - public static String scriptTimeout; |
38 | | - public static String windowOpenArgumentNull; |
39 | | - |
40 | | - static { |
41 | | - NLS.initializeMessages(BUNDLE_NAME, Messages.class); |
42 | | - } |
43 | | - |
44 | | -} |
| 1 | +package org.eclipsescript.messages; |
| 2 | + |
| 3 | +import org.eclipse.osgi.util.NLS; |
| 4 | + |
| 5 | +/** |
| 6 | + * Localization messages using the {@link NLS} system. The static initializer block will initialize the fields of this |
| 7 | + * class with values loaded from the messages properties file. |
| 8 | + */ |
| 9 | +public class Messages extends NLS { |
| 10 | + |
| 11 | + private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$ |
| 12 | + |
| 13 | + public static String cannotRunCurrentScriptText; |
| 14 | + public static String cannotRunCurrentScriptTitle; |
| 15 | + public static String clearMarkersJobName; |
| 16 | + public static String fileToIncludeDoesNotExist; |
| 17 | + public static String fileToReadDoesNotExist; |
| 18 | + public static String internalErrorDialogDetails; |
| 19 | + public static String internalErrorDialogText; |
| 20 | + public static String internalErrorDialogTitle; |
| 21 | + public static String noDocumentSelected; |
| 22 | + public static String noSelectionSelected; |
| 23 | + public static String noTextEditorSelected; |
| 24 | + public static String notPossibleToScheduleObject; |
| 25 | + public static String removeAllTerminatedConsoles; |
| 26 | + public static String Resources_cannotReadFromObject; |
| 27 | + public static String runScriptBeforeRunningLast; |
| 28 | + public static String scriptAlertDialogTitle; |
| 29 | + public static String scriptBackgroundJobName; |
| 30 | + public static String scriptConfirmDialogTitle; |
| 31 | + public static String scriptConsoleName; |
| 32 | + public static String scriptErrorWhenRunningScriptDialogText; |
| 33 | + public static String scriptErrorWhenRunningScriptDialogTitle; |
| 34 | + public static String scriptErrorWhenRunningScriptJumpToScriptButton; |
| 35 | + public static String scriptErrorWhenRunningScriptOkButton; |
| 36 | + public static String scriptPromptDialogTitle; |
| 37 | + public static String scriptTimeout; |
| 38 | + public static String windowOpenArgumentNull; |
| 39 | + |
| 40 | + static { |
| 41 | + NLS.initializeMessages(BUNDLE_NAME, Messages.class); |
| 42 | + } |
| 43 | + |
| 44 | +} |
0 commit comments