1 {
2  ***************************************************************************
3  *                                                                         *
4  *   This source is free software; you can redistribute it and/or modify   *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This code is distributed in the hope that it will be useful, but      *
10  *   WITHOUT ANY WARRANTY; without even the implied warranty of            *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
12  *   General Public License for more details.                              *
13  *                                                                         *
14  *   A copy of the GNU General Public License is available on the World    *
15  *   Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also      *
16  *   obtain it by writing to the Free Software Foundation,                 *
17  *   Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA.   *
18  *                                                                         *
19  ***************************************************************************
20 }
21 unit ToDoListStrConsts;
22 
23 {$mode objfpc}{$H+}
24 
25 interface
26 
27 const
28   csvHeader = 'Done,Description,Priority,Module,Line,Owner,Category';
29 
30 resourcestring
31   lisTodolistRefresh='Refresh todo items';
32   lisTodoListGotoLine='Goto selected source line';
33   lisCTInsertMacro = 'Insert Macro';
34   lisToDoLDone = 'Done';
35   lisToDoLType = 'Type';
36   lisToDoLDescription = 'Description';
37   lisToDoLPriority = 'Priority';
38   lisToDoLFile  = 'Module';
39   lisToDoLLine  = 'Line';
40   lisToDoLOwner = 'Owner';
41   listToDoLCategory = 'Category';
42   lisToDoGoto = 'Goto';
43   lisToDoExport = 'Export';
44   lisOptions = 'Options';
45   lisHelp = 'Help';
46   lisToDoListed = 'Listed';
47   lisToDoListedHint = 'Add units listed in project inspector/package editor';
48   lisToDoUsed = 'Used';
49   lisToDoUsedHint = 'Add units used by main source file';
50   lisPackages = 'Packages';
51   lisPackagesHint = 'Extends "%s" and "%s" options by units from used packages';
52   lisSourceEditor = 'Editor';
53   lisSourceEditorHint = 'Add units in source editor';
54   dlgUnitDepRefresh = 'Refresh';
55   lisTDDInsertToDo = 'Insert a ToDo/Done/Note';
56   lisViewToDoList = 'View ToDo List';
57   lisToDoList = 'ToDo List';
58   lisPkgFileTypeText = 'Text';
59   dlgFilterCsv = 'CSV files';
60 
61   lisFilterItem0 = 'All';
62   lisFilterItem1 = 'ToDo Only';
63   lisFilterItem2 = 'Done Only';
64   lisFilterItem3 = 'Note Only';
65   lisFilterItem4 = 'ToDo & Done';
66   lisFilterItem5 = 'ToDo & Note';
67   lisFilterItem6 = 'Done & Note';
68 
69   lisShowWhat = 'Show';
70   lisShowWhatHint = 'Select which ToDo types to list';
71   lisToDoToDoType = 'ToDo type';
72   lisAlternateTokens = 'Use Alternate Tokens';
73   lisAlternateTokensHint = 'Standard token is #todo etc. Alternate is without the #';
74 
75   excInvalidParseState = 'Invalid parse state.';
76 
77   errScanfileFailed = 'Finding ToDo items failed in file %0:s.' + LineEnding +
78                        'Is it a valid source file?' + LineEnding +
79                        'The rest of the file has been skipped.';
80   rsExportTodoIt = 'Export ToDo items to CSV';
81 
82 implementation
83 
84 end.
85 
86