This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathprojectgroupstrconst.pas
129 lines (117 loc) · 5.66 KB
/
projectgroupstrconst.pas
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
unit ProjectGroupStrConst;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
Resourcestring
lisErrTargetDoesNotExist = 'Target does not exist. Remove?';
lisErrNoSuchFile = 'Could not find target file'+sLineBreak+
'"%s"'+sLineBreak+
'What do you want to do?';
lisRemoveTarget = 'Remove target';
lisAbortLoadingProjectGroup = 'Abort loading project group';
lisSkipAllTargets = 'Remove all invalid targets';
lisErrOnlyProjectGroupAllowed = 'Only target type "projectgroup" is allowed for root project group.';
lisAllFiles = 'All files';
lisProjectGroupModified = 'Project group modified';
lisProjectGroupModifiedConfirm = 'Project group "%s" is modified.'+sLineBreak+
'What do you want to do?';
lisSavePG = 'Save project group';
lisDiscard = 'Discard changes';
lisAbort = 'Abort';
lisTargetAdd = 'Add target';
lisTargetRemove = 'Remove target';
lisTargetCompile = 'Compile';
lisProjectGroups = 'Project Groups';
lisTargetCompileClean = 'Compile clean';
lisTargetCompileFromHere = 'Compile from here';
lisTargetInstall = 'Install';
lisTargetUnInstall = 'Uninstall';
lisTargetActivate = 'Activate target';
lisTargetOpen = 'Open Target';
lisTargetRun = 'Run Target';
lisTargetProperties = 'Target properties';
lisTargetLater = 'Compile target later';
lisTargetEarlier = 'Compile target earlier';
lisNewProjectGroup = 'New project group';
lisNewProjectGroupMenuC = 'New Project group ...';
lisOpenProjectGroup = 'Open Project Group ...';
lisOpenRecentProjectGroup = 'Open Recent Project Group';
lisSaveProjectGroup = 'Save Project Group';
lisSaveProjectGroupAs = 'Save Project Group As ...';
lisTargetCopyFilename = 'Copy file name';
lisProjectGroup = 'Project group %s';
lisNodeTargets = 'Targets';
lisNodeRemovedTargets = 'Removed targets';
lisNodeBuildModes = 'Build Modes';
lisNodeFiles = 'Files';
lisNodeRemovedFiles = 'Removed files';
lisNodeDependencies = 'Dependencies';
lisNodeRemovedDependencies = 'Removed dependencies';
lisTargetCount = '%d targets';
lisActiveTarget = 'Target: %s';
lisProjectGroupSaveCaption = 'Save';
lisProjectGroupSaveHint = 'Save project group';
lisProjectGroupSaveAsCaption = 'Save As ...';
lisProjectGroupSaveAsHint = 'Save project group with a new name';
lisProjectGroupAddExistingCaption = 'Add';
lisProjectGroupAddExistingHint = 'Add existing target to project group';
lisProjectGroupDeleteCaption = 'Remove';
lisProjectGroupDeleteHint = 'Remove target from project group';
lisProjectGroupAddNewCaption = 'New';
lisProjectGroupAddNewHint = 'Add new target to project group';
lisTargetEarlierCaption = 'Earlier';
lisTargetEarlierHint = 'Build target earlier';
lisTargetLaterCaption = 'Later';
lisTargetLaterHint = 'Build target later';
lisTargetCompileCaption = 'Compile';
lisTargetCompileHint = 'Compile selected target';
lisTargetCompileCleanCaption = 'Compile clean';
lisTargetCompileCleanHint = 'Compile selected target clean';
lisTargetPropertiesCaption = 'Properties';
lisTargetPropertiesHint = 'Show property dialog for selected target';
lisTargetRunCaption = 'Run';
lisTargetRunHint = 'Run selected target';
lisTargetInstallCaption = 'Install';
lisTargetInstallHint = 'Install selected target';
lisTargetUninstallCaption = 'Uninstall';
lisTargetUninstallHint = 'Uninstall selected target';
lisTargetActivateCaption = 'Activate';
lisTargetActivateHint = 'Activate selected target';
lisTargetOpenCaption = 'Open';
lisTargetOpenHint = 'Open selected target';
lisInvalidFile = 'Invalid File';
lisInvalidXmlFileName = 'Invalid XML file name "%s".';
lisReadError = 'Read error';
lisUnableToLoadFile = 'Unable to load file "%s"';
lisXMLSyntaxErrorInFile = 'XML syntax error in file "%s": %s';
lisWriteError = 'Write error';
lisUnableToCreateFile = 'Unable to create file "%s": %s';
lisInvalidCycleAProjectGroupCannotHaveItselfAsTarget = 'Invalid cycle. A project group cannot have itself as target.';
lisErrorReadingProjectGroupFile = 'Error reading project group file "%s"%s%s';
lisUnableToWriteProjectGroupFile = 'Unable to write project group file "%s"%s%s';
lisLazbuildNotFound = 'lazbuild not found';
lisTheLazbuildWasNotFound = 'The lazbuild%s was not found.';
lisProjectGroup2 = 'Project Group: %s';
lisBePatient = 'Be patient!';
lisThereIsStillAnotherBuildInProgress = 'There is still another build in progress.';
lisCompileProject = 'Compile Project %s';
lisBuildMode = ', build mode "%s"';
lisCompilePackage = 'Compile Package %s';
lisOtherProject = 'Other Project';
lisPackage = 'Package';
lisBuildModeNotFound = 'Build mode not found';
lisBuildModeNotFound2 = 'Build mode "%s" not found.';
lisPackageNotFound = 'Package not found';
lisPackageNotFound2 = 'Package "%s" not found.';
lisBuildMode2 = 'Build Mode "%s"';
lisLazarusProjectsLpi = 'Lazarus projects (*.lpi)';
lisLazarusPackagesLpk = 'Lazarus packages (*.lpk)';
lisLazarusProjectGroupsLpg = 'Lazarus project groups (*.lpg)';
lisPascalFilePasPpP = 'Pascal files (*.pas;*.pp;*.p)';
lisNeedSave = 'Need save';
lisPleaseSaveYourChangesBeforeReloadingTheProjectGrou = 'Please save your changes before reloading the project group.';
lisProjectGroupReload = 'Reload';
lisMore = 'More';
implementation
end.