Skip to main content
summaryrefslogtreecommitdiffstats
blob: ec7132cec8dedba6f3d9e3f5eb4a47f59433aefe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
/*******************************************************************************
 * Copyright (c) 2010 University of Illinois at Urbana-Champaign and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    UIUC - Initial API and implementation
 *******************************************************************************/
package org.eclipse.photran.internal.core.refactoring;

import org.eclipse.osgi.util.NLS;

/**
 * Externalized strings.
 */
public class Messages extends NLS
{
    private static final String BUNDLE_NAME = "org.eclipse.photran.internal.core.refactoring.messages"; //$NON-NLS-1$

    public static String AddIdentifierToEndRefactoring_Name;

    public static String AddIdentifierToEndRefactoring_SelectedFileCannotBeParsed;

    public static String AddOnlyToUseStmtRefactoring_AddingWouldChangeMeaningOf;

    public static String AddOnlyToUseStmtRefactoring_Analyzing;

    public static String AddOnlyToUseStmtRefactoring_CheckingForConflicts;

    public static String AddOnlyToUseStmtRefactoring_CreatingChangeObject;

    public static String AddOnlyToUseStmtRefactoring_FindingReferences;

    public static String AddOnlyToUseStmtRefactoring_InsertingUseStmt;

    public static String AddOnlyToUseStmtRefactoring_ModuleNameInUseStmtNotSelected;

    public static String AddOnlyToUseStmtRefactoring_ModuleNodeNodeFound;

    public static String AddOnlyToUseStmtRefactoring_ModuleTokenNotFound;

    public static String AddOnlyToUseStmtRefactoring_MultipleDefinitionsOfModule;

    public static String AddOnlyToUseStmtRefactoring_Name;

    public static String AddOnlyToUseStmtRefactoring_NameConflicts;

    public static String AddOnlyToUseStmtRefactoring_NameMightConflict;

    public static String AddOnlyToUseStmtRefactoring_NoDeclarationsInModule;

    public static String AddOnlyToUseStmtRefactoring_NoFilesContainModule;

    public static String AddOnlyToUseStmtRefactoring_NoModuleNamed;

    public static String AddOnlyToUseStmtRefactoring_NoModuleNameSelected;

    public static String AddOnlyToUseStmtRefactoring_Parsing;

    public static String AddOnlyToUseStmtRefactoring_PleaseSelectModuleName;

    public static String AddOnlyToUseStmtRefactoring_ProjectDoesNotExist;

    public static String AddOnlyToUseStmtRefactoring_SelectModuleName;

    public static String AddSubroutineParameterRefactoring_InvalidDeclaration;

    public static String AddSubroutineParameterRefactoring_InvalidDefaultValue;

    public static String AddSubroutineParameterRefactoring_InvalidParameterPosition;

    public static String AddSubroutineParameterRefactoring_matchingDeclarationsDoNotUniquelyBind;

    public static String AddSubroutineParameterRefactoring_Name;

    public static String AddSubroutineParameterRefactoring_NameConflictsWith;

    public static String AddSubroutineParameterRefactoring_NameMightConflictWithSubprogram;

    public static String AddSubroutineParameterRefactoring_selectSubroutineError;

    public static String ChangeToVectorNotation_PleaseSelectDoLoopNode;

    public static String ChangeToVectorNotation_PleaseSelectNewStyleDoLoopNode;
    
    public static String ChangeToVectorNotation_CanNotBeChanged;

    public static String ChangeToVectorNotation_CanNotBeChangedToVectorNotation;

    public static String EncapsulateVariableRefactoring_CannotEncapsulateArrays;

    public static String EncapsulateVariableRefactoring_CannotEncapsulatePARAMETER;

    public static String EncapsulateVariableRefactoring_CannotEncapsulatePointers;

    public static String EncapsulateVariableRefactoring_CannotEncapsulateTARGET;

    public static String EncapsulateVariableRefactoring_CannotRefactorFixedFormFile;

    public static String EncapsulateVariableRefactoring_CouldNotFindToken;

    public static String EncapsulateVariableRefactoring_CouldNotFindTokenForVarDef;

    public static String EncapsulateVariableRefactoring_CouldNotFindTokenForVarRef;

    public static String EncapsulateVariableRefactoring_Name;

    public static String EncapsulateVariableRefactoring_NameConflicts;

    public static String EncapsulateVariableRefactoring_NameMightConflict;

    public static String EncapsulateVariableRefactoring_NotAnExpression;

    public static String EncapsulateVariableRefactoring_NoUniqueDefinition;

    public static String EncapsulateVariableRefactoring_PleaseSelectAnIdentifier;

    public static String EncapsulateVariableRefactoring_VariableNotSelected;

    public static String EncapsulateVariableRefactoring_WarningFunctionArgument;

    public static String EncapsulateVariableRefactoring_WarningWillNotChangeReference;
    public static String ExtractProcedureRefactoring_PleaseSelectContiguousStatements;

    public static String ExtractProcedureRefactoring_CanOnlyExtractFromSubprogramOrMainProgram;

    public static String ExtractProcedureRefactoring_ExtractionWouldRequirePointerParameter;

    public static String ExtractProcedureRefactoring_InvalidIdentifier;

    public static String ExtractProcedureRefactoring_Name;

    public static String ExtractProcedureRefactoring_NameConflicts;

    public static String ExtractProcedureRefactoring_OnlyExecutableStatementsCanBeExtracted;

    public static String ExtractProcedureRefactoring_ProcedureContainsLabels;

    public static String ExtractProcedureRefactoring_StatementCannotBeExtracted;

    public static String MakeSaveExplicitRefactoring_Name;

    public static String MakeSaveExplicitRefactoring_SelectedFileCannotBeParsed;

    public static String MinOnlyListRefactoring_ModuleIsEmpty;

    public static String MinOnlyListRefactoring_ModuleNodeNotFound;

    public static String MinOnlyListRefactoring_ModuleNotFoundWithName;

    public static String MinOnlyListRefactoring_ModuleTokenNotFound;

    public static String MinOnlyListRefactoring_Name;

    public static String MinOnlyListRefactoring_NoFilesContainModuleNamed;

    public static String MinOnlyListRefactoring_NoModuleNameSelected;

    public static String MinOnlyListRefactoring_PleaseSelectModuleName;

    public static String MinOnlyListRefactoring_PleaseSelectModuleNameInUSEStatement;

    public static String MinOnlyListRefactoring_ProjectDoesNotExist;

    public static String MinOnlyListRefactoring_USEStatementNotFound;

    public static String MoveSavedToCommonBlockRefactoring_AbsentOrAmbiguousDefinition;

    public static String MoveSavedToCommonBlockRefactoring_CouldNotFindArrayDeclaration;

    public static String MoveSavedToCommonBlockRefactoring_CouldNotFindDeclarationNode;

    public static String MoveSavedToCommonBlockRefactoring_CouldNotFindTypeSpecificationNode;

    public static String MoveSavedToCommonBlockRefactoring_Name;

    public static String MoveSavedToCommonBlockRefactoring_OnlyInternalSubprogramsSupported;

    public static String MoveSavedToCommonBlockRefactoring_PleaseSelectSubprogram;

    public static String MoveSavedToCommonBlockRefactoring_PleaseSelectSubprogramNotInINTERFACE;

    public static String RenameRefactoring_CannotRename;

    public static String RenameRefactoring_CannotRenameAmbiguous;

    public static String RenameRefactoring_CannotRenameInINCLUDEFile;

    public static String RenameRefactoring_CannotRenameIntrinsicProcedure;

    public static String RenameRefactoring_CannotRenameSubprogramArgs;

    public static String RenameRefactoring_CannotRenameTypeBoundProcedures;

    public static String RenameRefactoring_CannotRenameUsedInINCLUDEFile;

    public static String RenameRefactoring_ChangingNameWouldChangeMeaning;

    public static String RenameRefactoring_StatusCheckingIfReferencesInFileCanBeRenamed;

    public static String RenameRefactoring_CPreprocessedFileWillNotBeRefactored;

    public static String RenameRefactoring_FixedFormFileWillNotBeRefactored;

    public static String RenameRefactoring_InvalidIdentifier;

    public static String RenameRefactoring_MultipleDeclarationsFoundFor;

    public static String RenameRefactoring_Name;

    public static String RenameRefactoring_NameConflicts;

    public static String RenameRefactoring_NameMightConflict;

    public static String RenameRefactoring_NewNameIsExactlyTheSame;

    public static String RenameRefactoring_NoDeclarationFoundFor;

    public static String RenameRefactoring_PleaseSelectAnIdentifier;

    public static String RenameRefactoring_StatusModifyingFile;

    public static String RenameRefactoring_StatusRenaming;

    public static String PermuteSubroutineArgsRefactoring_matchingDeclarationsDoNotUniquelyBind;

    public static String PermuteSubroutineArgsRefactoring_name;

    public static String PermuteSubroutineArgsRefactoring_selectedTextNotSubroutine;

    public static String PermuteSubroutineArgsRefactoring_selectSubroutineError;

    public static String CommonVarNamesRefactoring_Name;

    public static String CommonVarNamesRefactoring_NameConflictsWith;

    public static String CommonVarNamesRefactoring_NameMightConflictWithSubprogram;

    public static String CommonVarNamesRefactoring_NoCommonBlockFoundWithName;

    public static String CommonVarNamesRefactoring_NoFilesFoundContainingCommonBlock;

    public static String CommonVarNamesRefactoring_ProjectDoesNotExist;

    public static String CommonVarNamesRefactoring_SelectCommonBlockName;

    public static String CommonVarNamesRefactoring_VariableTypesDiffer;
    public static String DataToParameterRefactoring_AmbiguouslyDefined;

    public static String DataToParameterRefactoring_ArraysNotSupported;

    public static String DataToParameterRefactoring_DefinitionNotFound;

    public static String DataToParameterRefactoring_EmptyDataListInNode;

    public static String DataToParameterRefactoring_ImpliedDoNotSupported;

    public static String DataToParameterRefactoring_Name;

    public static String DataToParameterRefactoring_PointersNotSupported;

    public static String DataToParameterRefactoring_RefactorNotConsideringVarAssignment;

    public static String DataToParameterRefactoring_SelectedFileCannotBeParsed;
    public static String ExtractLocalVariableRefactoring_DeclarationDoesNotDeclareSingleVar;

    public static String ExtractLocalVariableRefactoring_DeclarationMustNotContainInitialization;

    public static String ExtractLocalVariableRefactoring_EnterDeclarationForExtractedVar;

    public static String ExtractLocalVariableRefactoring_ErrorSelectingPartOfExpression;

    public static String ExtractLocalVariableRefactoring_ExpressionNotInExtractableStmt;

    public static String ExtractLocalVariableRefactoring_ExpressionTypeNotBeAutoDetermined;

    public static String ExtractLocalVariableRefactoring_ExtractionMayNotPreserveBehavior;

    public static String ExtractLocalVariableRefactoring_InvalidTypeDeclStmt;

    public static String ExtractLocalVariableRefactoring_Name;

    public static String ExtractLocalVariableRefactoring_NameConflictsWith;

    public static String ExtractLocalVariableRefactoring_NameMightConflictWithSubprogram;

    public static String ExtractLocalVariableRefactoring_SelectExpressionToExtract;

    public static String ExtractLocalVariableRefactoring_VarsExtractedOnlyFromActionStmt;

    public static String ExtractLocalVariableRefactoring_VarsOnlyExtractedFromStmtsIn;

    public static String InterchangeLoopsRefactoring_Name;

    public static String IfConstructStatementConversionRefactoring_Name;

    public static String IfConstructStatementConversionRefactoring_SelectAValidIfStatement;

    public static String IfConstructStatementConversionRefactoring_InvalidNamedConstruct;

    public static String IfConstructStatementConversionRefactoring_TooManyStatements;

    public static String FortranEditorRefactoring_CantPerformRefactoringOnReadOnlyFile;

    public static String FortranEditorRefactoring_CantPerformRefactoringOnFileThatDoesNotExist;

    public static String InterchangeLoopsRefactoring_SelectTwoPerfNextedLoops;

    public static String InterchangeLoopsRefactoring_UncheckedTransNotGuaranteedToPreserve;

    public static String IntroImplicitNoneRefactoring_Name;

    public static String IntroImplicitNoneRefactoring_SelectedFileCannotBeParsed;

    public static String KeywordCaseRefactoring_Name;

    public static String KeywordCaseRefactoring_SelectedFileCannotBeParsed;

    public static String FuseLoopsRefactoring_CycleExitFails;

    public static String FuseLoopsRefactoring_IncompatibleLoopErorrMessage;

    public static String FuseLoopsRefactoring_InvalidStepError;

    public static String FuseLoopsRefactoring_LoopFusionName;

    public static String FuseLoopsRefactoring_NoSecondLoopErrorMsg;

    public static String FuseLoopsRefactoring_SelectLoopsWithoutLabels;

    public static String FuseLoopsRefactoring_SelectLoopWithIntegers;

    public static String TileLoopRefactoring_CantTileLoopsWithStep;

    public static String TileLoopRefactoring_InvalidTileSize;

    public static String TileLoopRefactoring_InvalidTilingOffset;

    public static String TileLoopRefactoring_LoopTilingName;

    public static String TileLoopRefactoring_SelectLoopWithOnlyOneNestedLoop;

    public static String TileLoopRefactoring_UnableToCreateNewIndex;

    public static String UnrollLoopRefactoring_cannotUnrollLoopWithLabel;

    public static String UnrollLoopRefactoring_InvalidStepError;

    public static String UnrollLoopRefactoring_LoopUnrollingName;

    public static String UnrollLoopRefactoring_LoopWritesToIndexVariable;

    public static String UnrollLoopRefactoring_SelectLoopWithExplicitBound;

    public static String UnrollLoopRefactoring_unableToCreateUpperBound;

    public static String MakePrivateEntityPublicRefactoring_DoesNotSupportExternalEntities;

    public static String MakePrivateEntityPublicRefactoring_DoesNotSupportInterfaceDeclarations;

    public static String MakePrivateEntityPublicRefactoring_DoesNotSupportIntrinsicEntities;

    public static String MakePrivateEntityPublicRefactoring_HighlightPrivateEntityName;

    public static String MakePrivateEntityPublicRefactoring_Name;

    public static String MakePrivateEntityPublicRefactoring_NoPrivateEntitySelected;

    public static String MakePrivateEntityPublicRefactoring_PublicEntitySelectedSelectPrivate;

    public static String MakePrivateEntityPublicRefactoring_SelectPrivateEntityName;

    public static String MoveCommonToModuleRefactoring_InvalidIdentifier;

    public static String MoveCommonToModuleRefactoring_Name;

    public static String MoveCommonToModuleRefactoring_SelectVarOrBlockInCommonStmt;

    public static String RemoveArithmeticIfRefactoring_Error;

    public static String RemoveArithmeticIfRefactoring_Name;

    public static String RemoveBranchToEndIfRefactoring_BranchToImmediateEndIf;

    public static String RemoveBranchToEndIfRefactoring_Name;

    public static String RemoveBranchToEndIfRefactoring_NoEnclosingIfConstruct;

    public static String RemoveBranchToEndIfRefactoring_NoGotoStatementReferencingThisLabel;

    public static String RemoveBranchToEndIfRefactoring_NoGotoStatements;

    public static String RemoveBranchToEndIfRefactoring_PleaseSelectLabeledEndIfStatement;

    public static String RemoveComputedGoToRefactoring_Name;

    public static String RemoveComputedGoToRefactoring_PleaseSelectComputedGotoStmt;

    public static String RemovePauseStmtRefactoring_Name;

    public static String RemovePauseStmtRefactoring_PleaseSelectAPauseStatement;

    public static String RemoveRealAndDoublePrecisionLoopCountersRefactoring_Name;

    public static String RemoveRealAndDoublePrecisionLoopCountersRefactoring_NotRealOrDoublePrecision;

    public static String RemoveRealAndDoublePrecisionLoopCountersRefactoring_NoUniqueDeclaration;

    public static String RemoveRealAndDoublePrecisionLoopCountersRefactoring_PleaseSelectACountedDoLoop;

    public static String RemoveRealAndDoublePrecisionLoopCountersRefactoring_PleaseSelectADoLoop;

    public static String RemoveUnusedVariablesRefactoring_CouldNotCompleteOperation;

    public static String RemoveUnusedVariablesRefactoring_DoesNotRemovedUnusedVarsWithDefsOnAnotherLine;

    public static String RemoveUnusedVariablesRefactoring_Name;

    public static String RemoveUnusedVariablesRefactoring_RefactorAgainToRemoveAllUnusedVars;

    public static String RemoveUnusedVariablesRefactoring_Scope;

    public static String RemoveUnusedVariablesRefactoring_SelectedFileCannotBeParsed;

    public static String RemoveUnusedVariablesRefactoring_SelectedFilesCannotBeParsed;

    public static String RemoveUnusedVariablesRefactoring_SelectedFilesMustBeImplicitNone;

    public static String RemoveUnusedVariablesRefactoring_UnusedVarsRemovedFromFile;

    public static String RemoveUnusedVariablesRefactoring_VariableUnusedAndWillBeRemoved;

    public static String ReplaceCharacterToCharacterLenRefactoring_CharacterStarDeclNotSelected;

    public static String ReplaceCharacterToCharacterLenRefactoring_Name;

    public static String ReplaceOldStyleDoLoopRefactoring_AmbiguousLabel;

    public static String ReplaceOldStyleDoLoopRefactoring_EndOfLoopError;

    public static String ReplaceOldStyleDoLoopRefactoring_MissingLabel;

    public static String ReplaceOldStyleDoLoopRefactoring_Name;

    public static String ReplaceOldStyleDoLoopRefactoring_ThereMustBeAtLeastOneOldStyleDoLoop;

    public static String RepObsOpersRefactoring_Name;

    public static String RepObsOpersRefactoring_SelectedFileCannotBeParsed;

    public static String ReverseLoopRefactoring_Name;

    public static String ReverseLoopRefactoring_SelectDoLoop;

    public static String SafeDeleteInternalSubprogramRefactoring_MultipleDefinitions;

    public static String SafeDeleteInternalSubprogramRefactoring_Name;

    public static String SafeDeleteInternalSubprogramRefactoring_NoDefinition;

    public static String SafeDeleteInternalSubprogramRefactoring_NoSubroutineSelected;

    public static String SafeDeleteInternalSubprogramRefactoring_NotAnInternalSubprogram;

    public static String SafeDeleteInternalSubprogramRefactoring_SubroutineMustHaveOnlyInternalReferences;

    public static String StandardizeStatementsRefactoring_Name;

    public static String StandardizeStatementsRefactoring_SelectedFileCannotBeParsed;

    public static String RemoveUnreferencedLabelsRefactoring_Name;

    public static String RemoveUnreferencedLabelsRefactoring_ThereMustBeAtLeastOneLabeledStatement;

    public static String RemoveAssignedGotoRefactoring_AllLabelsUsedInActionStatement;

    public static String RemoveAssignedGotoRefactoring_ForFile;

    public static String RemoveAssignedGotoRefactoring_LabelNotFound;

    public static String RemoveAssignedGotoRefactoring_NothingToBeRefactored;

    public static String RemoveAssignedGotoRefactoring_TheFollowingLabelsCannotBeRefactored;

    public static String RemoveAssignedGoToRefactoring_Name;

    public static String RemoveAssignedGoToRefactoring_SelectedFileCannotBeParsed;

    public static String RemoveUnusedCommonBlockVariablesRefactoring_Name;

    public static String RemoveUnusedCommonBlockVariablesRefactoring_SelectedFilesMustBeImplicitNone;

    public static String RemoveUnusedCommonBlockVariablesRefactoring_NoDeclarationFoundFor;

    public static String RemoveUnusedCommonBlockVariablesRefactoring_MultipleDeclarationsFoundFor;

    public static String VariableCaseRefactoring_Name;

    public static String VariableCaseRefactoring_SelectedFileCannotBeParsed;

    static
    {
        // initialize resource bundle
        NLS.initializeMessages(BUNDLE_NAME, Messages.class);
    }

    private Messages()
    {
    }
}

Back to the top