• R/O
  • SSH
  • HTTPS

dzinifileformatter: Commit


Commit MetaInfo

Revision19 (tree)
Zeit2014-09-01 02:41:18
Autortwm

Log Message

improved commandline parameters for compare tool

Ändern Zusammenfassung

Diff

--- trunk/src/dzIniFileFormatter_version.ini (revision 18)
+++ trunk/src/dzIniFileFormatter_version.ini (revision 19)
@@ -1,6 +1,6 @@
11 [Version Info]
22 AutoIncBuild=0
3-Build=213
3+Build=214
44 MajorVer=1
55 MinorVer=0
66 Release=0
@@ -7,7 +7,7 @@
77 Revision=0
88
99 [Version Info Keys]
10-FileVersion=1.0.0.213
10+FileVersion=1.0.0.214
1111 ProductVersion={today}
1212 FileDescription=INI file formatter
1313 OriginalFilename=dzIniFileFormatter
--- trunk/src/w_IniFileFormatter.pas (revision 18)
+++ trunk/src/w_IniFileFormatter.pas (revision 19)
@@ -82,7 +82,7 @@
8282 procedure FormToConfig(_cfg: TIniFileFormatterConfig);
8383 procedure OnDropInputFiles(_Sender: TObject; _Files: TStrings);
8484 procedure OnDropTemplateFiles(_Sender: TObject; _Files: TStrings);
85- procedure CompareTo(const _fn: string);
85+ procedure CompareTo(const _RefFn: string);
8686 public
8787 constructor Create(_Owner: TComponent); override;
8888 destructor Destroy; override;
@@ -373,7 +373,7 @@
373373 FormatIni;
374374 end;
375375
376-procedure Tf_IniFileFormatter.CompareTo(const _fn: string);
376+procedure Tf_IniFileFormatter.CompareTo(const _RefFn: string);
377377 var
378378 Params: string;
379379 TempFile: string;
@@ -386,9 +386,9 @@
386386 if FFileComparerParams <> '' then begin
387387 Params := FFileComparerParams;
388388 Params := StringReplace(Params, '{SortedFile}', TempFile, [rfReplaceAll, rfIgnoreCase]);
389- Params := StringReplace(Params, '{CompareToFile}', _fn, [rfReplaceAll, rfIgnoreCase]);
389+ Params := StringReplace(Params, '{ReferenceFile}', _RefFn, [rfReplaceAll, rfIgnoreCase]);
390390 end else
391- Params := _fn + ' ' + TempFile;
391+ Params := _RefFn + ' ' + TempFile;
392392
393393 m_Preview.Lines.SaveToFile(TempFile);
394394 TExecutor.Execute(FFileComparer, Params);
--- trunk/src/w_IniFileFormatterConfig.pas (revision 18)
+++ trunk/src/w_IniFileFormatterConfig.pas (revision 19)
@@ -34,6 +34,7 @@
3434 mi_Template: TMenuItem;
3535 mi_Formatted: TMenuItem;
3636 b_CmdLine: TBitBtn;
37+ title1ReferenceFiletitle2SortedFilereadonly1: TMenuItem;
3738 procedure b_FileComparerClick(Sender: TObject);
3839 procedure mi_CmdLineItemClick(Sender: TObject);
3940 private
--- trunk/translations/de/default.po (revision 18)
+++ trunk/translations/de/default.po (revision 19)
@@ -6,7 +6,7 @@
66 msgid ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
9-"POT-Creation-Date: 2014-08-31 19:02\n"
9+"POT-Creation-Date: 2014-08-31 19:39\n"
1010 "PO-Revision-Date: 2010-10-23 16:47\n"
1111 "Last-Translator: Somebody <your.email@address.com>\n"
1212 "Language-Team: <>\n"
@@ -29,87 +29,87 @@
2929
3030 #. f_IniFileFormatter..pc_Input..ts_Original..Caption
3131 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToOriginal..Caption
32-#: w_IniFileFormatter.dfm:68 w_IniFileFormatter.dfm:320
32+#: w_IniFileFormatter.dfm:68 w_IniFileFormatter.dfm:328
3333 msgid "Original"
3434 msgstr "Original"
3535
3636 #. f_IniFileFormatter..pc_Input..ts_Template..Caption
3737 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToTemplate..Caption
38-#: w_IniFileFormatter.dfm:89 w_IniFileFormatter.dfm:324
38+#: w_IniFileFormatter.dfm:89 w_IniFileFormatter.dfm:332
3939 msgid "Template"
4040 msgstr "Vorlage"
4141
4242 #. f_IniFileFormatter..pc_Output..ts_Preview..Caption
43-#: w_IniFileFormatter.dfm:112
43+#: w_IniFileFormatter.dfm:116
4444 msgid "Preview"
4545 msgstr "Vorschau"
4646
4747 #. f_IniFileFormatter..gb_SortSections..Caption
48-#: w_IniFileFormatter.dfm:130
48+#: w_IniFileFormatter.dfm:138
4949 msgid "Sort Sections"
5050 msgstr "Sektionen sortieren"
5151
5252 #. f_IniFileFormatter..gb_SortSections..rb_SectionsUnsorted..Caption
5353 #. f_IniFileFormatter..gb_SortItems..rb_ItemsUnsorted..Caption
54-#: w_IniFileFormatter.dfm:137 w_IniFileFormatter.dfm:174
54+#: w_IniFileFormatter.dfm:145 w_IniFileFormatter.dfm:182
5555 msgid "Unsorted"
5656 msgstr "Unsortiert"
5757
5858 #. f_IniFileFormatter..gb_SortSections..rb_SectionsAlpha..Caption
5959 #. f_IniFileFormatter..gb_SortItems..rb_ItemsAlpha..Caption
60-#: w_IniFileFormatter.dfm:146 w_IniFileFormatter.dfm:183
60+#: w_IniFileFormatter.dfm:154 w_IniFileFormatter.dfm:191
6161 msgid "Alphabetically"
6262 msgstr "Alphabetisch"
6363
6464 #. f_IniFileFormatter..gb_SortSections..rb_SectionsByTemplate..Caption
6565 #. f_IniFileFormatter..gb_SortItems..rb_ItemsByTemplate..Caption
66-#: w_IniFileFormatter.dfm:157 w_IniFileFormatter.dfm:194
66+#: w_IniFileFormatter.dfm:165 w_IniFileFormatter.dfm:202
6767 msgid "By Template"
6868 msgstr "Nach einer Vorlage"
6969
7070 #. f_IniFileFormatter..gb_SortItems..Caption
71-#: w_IniFileFormatter.dfm:167
71+#: w_IniFileFormatter.dfm:175
7272 msgid "Sort Items"
7373 msgstr "Einträge sortieren"
7474
7575 #. f_IniFileFormatter..b_Close..Caption
76-#: w_IniFileFormatter.dfm:206
76+#: w_IniFileFormatter.dfm:214
7777 msgid "Close"
7878 msgstr "Schließen"
7979
8080 #. f_IniFileFormatter..b_SaveAs..Caption
81-#: w_IniFileFormatter.dfm:216
81+#: w_IniFileFormatter.dfm:224
8282 msgid "Save As ..."
8383 msgstr "Speichern unter ..."
8484
8585 #. f_IniFileFormatter..p_TemplateFile..l_Template..Caption
86-#: w_IniFileFormatter.dfm:235
86+#: w_IniFileFormatter.dfm:243
8787 msgid "Template File"
8888 msgstr "Vorlagen-Datei"
8989
9090 #. f_IniFileFormatter..b_About..Caption
91-#: w_IniFileFormatter.dfm:264
91+#: w_IniFileFormatter.dfm:272
9292 msgid "About ..."
9393 msgstr "Info ..."
9494
9595 #. f_IniFileFormatter..b_CompareTo..Caption
96-#: w_IniFileFormatter.dfm:274
96+#: w_IniFileFormatter.dfm:282
9797 msgid "Compare to"
9898 msgstr "Vergleichen mit"
9999
100100 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToFile..Caption
101-#: w_IniFileFormatter.dfm:328
101+#: w_IniFileFormatter.dfm:336
102102 msgid "File ..."
103103 msgstr "Datei ..."
104104
105105 # Label: ignore
106106 #. f_IniFileFormatter..pm_CompareTo..N1..Caption
107-#: w_IniFileFormatter.dfm:332
107+#: w_IniFileFormatter.dfm:340
108108 msgid "-"
109109 msgstr ""
110110
111111 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToConfigure..Caption
112-#: w_IniFileFormatter.dfm:335
112+#: w_IniFileFormatter.dfm:343
113113 msgid "Configure ..."
114114 msgstr "Konfigurieren ..."
115115
@@ -145,9 +145,18 @@
145145
146146 #. f_IniFileFormatterConfig..pm_CmdLine..mi_Formatted..Caption
147147 #: w_IniFileFormatterConfig.dfm:147
148-msgid "{CompareToFile}"
149-msgstr "{CompareToFile}"
148+msgid "{ReferenceFile}"
149+msgstr "{ReferenceFile}"
150150
151+#. f_IniFileFormatterConfig..pm_CmdLine..title1ReferenceFiletitle2SortedFilereadonly1..Caption
152+#: w_IniFileFormatterConfig.dfm:151
153+msgid ""
154+"/title1=\"Reference File\" /title2=\"Sorted File\" "
155+"/readonly"
156+msgstr ""
157+"/title1=\"Referenzdatei\" /title2=\"Sortierte Datei\" "
158+"/readonly"
159+
151160 #: u_IniFileFormatterMain.pas:29
152161 msgid ""
153162 "Sort sections. Possible values: no, alpha, template (default: "
@@ -209,7 +218,7 @@
209218 msgid "Compare sorted file to"
210219 msgstr "Sortierte Datei vergleichen mit"
211220
212-#: w_IniFileFormatterConfig.pas:101
221+#: w_IniFileFormatterConfig.pas:102
213222 msgid "Select file comparer executable"
214223 msgstr "Wählen sie das Dateivergleichstool"
215224
--- trunk/translations/en/default.po (revision 18)
+++ trunk/translations/en/default.po (revision 19)
@@ -6,7 +6,7 @@
66 msgid ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
9-"POT-Creation-Date: 2014-08-31 19:02\n"
9+"POT-Creation-Date: 2014-08-31 19:39\n"
1010 "PO-Revision-Date: 2010-10-23 16:47\n"
1111 "Last-Translator: Somebody <your.email@address.com>\n"
1212 "Language-Team: <>\n"
@@ -29,87 +29,87 @@
2929
3030 #. f_IniFileFormatter..pc_Input..ts_Original..Caption
3131 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToOriginal..Caption
32-#: w_IniFileFormatter.dfm:68 w_IniFileFormatter.dfm:320
32+#: w_IniFileFormatter.dfm:68 w_IniFileFormatter.dfm:328
3333 msgid "Original"
3434 msgstr "Original"
3535
3636 #. f_IniFileFormatter..pc_Input..ts_Template..Caption
3737 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToTemplate..Caption
38-#: w_IniFileFormatter.dfm:89 w_IniFileFormatter.dfm:324
38+#: w_IniFileFormatter.dfm:89 w_IniFileFormatter.dfm:332
3939 msgid "Template"
4040 msgstr "Template"
4141
4242 #. f_IniFileFormatter..pc_Output..ts_Preview..Caption
43-#: w_IniFileFormatter.dfm:112
43+#: w_IniFileFormatter.dfm:116
4444 msgid "Preview"
4545 msgstr "Preview"
4646
4747 #. f_IniFileFormatter..gb_SortSections..Caption
48-#: w_IniFileFormatter.dfm:130
48+#: w_IniFileFormatter.dfm:138
4949 msgid "Sort Sections"
5050 msgstr "Sort Sections"
5151
5252 #. f_IniFileFormatter..gb_SortSections..rb_SectionsUnsorted..Caption
5353 #. f_IniFileFormatter..gb_SortItems..rb_ItemsUnsorted..Caption
54-#: w_IniFileFormatter.dfm:137 w_IniFileFormatter.dfm:174
54+#: w_IniFileFormatter.dfm:145 w_IniFileFormatter.dfm:182
5555 msgid "Unsorted"
5656 msgstr "Unsorted"
5757
5858 #. f_IniFileFormatter..gb_SortSections..rb_SectionsAlpha..Caption
5959 #. f_IniFileFormatter..gb_SortItems..rb_ItemsAlpha..Caption
60-#: w_IniFileFormatter.dfm:146 w_IniFileFormatter.dfm:183
60+#: w_IniFileFormatter.dfm:154 w_IniFileFormatter.dfm:191
6161 msgid "Alphabetically"
6262 msgstr "Alphabetically"
6363
6464 #. f_IniFileFormatter..gb_SortSections..rb_SectionsByTemplate..Caption
6565 #. f_IniFileFormatter..gb_SortItems..rb_ItemsByTemplate..Caption
66-#: w_IniFileFormatter.dfm:157 w_IniFileFormatter.dfm:194
66+#: w_IniFileFormatter.dfm:165 w_IniFileFormatter.dfm:202
6767 msgid "By Template"
6868 msgstr "By Template"
6969
7070 #. f_IniFileFormatter..gb_SortItems..Caption
71-#: w_IniFileFormatter.dfm:167
71+#: w_IniFileFormatter.dfm:175
7272 msgid "Sort Items"
7373 msgstr "Sort Items"
7474
7575 #. f_IniFileFormatter..b_Close..Caption
76-#: w_IniFileFormatter.dfm:206
76+#: w_IniFileFormatter.dfm:214
7777 msgid "Close"
7878 msgstr "Close"
7979
8080 #. f_IniFileFormatter..b_SaveAs..Caption
81-#: w_IniFileFormatter.dfm:216
81+#: w_IniFileFormatter.dfm:224
8282 msgid "Save As ..."
8383 msgstr "Save As ..."
8484
8585 #. f_IniFileFormatter..p_TemplateFile..l_Template..Caption
86-#: w_IniFileFormatter.dfm:235
86+#: w_IniFileFormatter.dfm:243
8787 msgid "Template File"
8888 msgstr "Template File"
8989
9090 #. f_IniFileFormatter..b_About..Caption
91-#: w_IniFileFormatter.dfm:264
91+#: w_IniFileFormatter.dfm:272
9292 msgid "About ..."
9393 msgstr "About ..."
9494
9595 #. f_IniFileFormatter..b_CompareTo..Caption
96-#: w_IniFileFormatter.dfm:274
96+#: w_IniFileFormatter.dfm:282
9797 msgid "Compare to"
9898 msgstr "Compare to"
9999
100100 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToFile..Caption
101-#: w_IniFileFormatter.dfm:328
101+#: w_IniFileFormatter.dfm:336
102102 msgid "File ..."
103103 msgstr "File ..."
104104
105105 # Label: ignore
106106 #. f_IniFileFormatter..pm_CompareTo..N1..Caption
107-#: w_IniFileFormatter.dfm:332
107+#: w_IniFileFormatter.dfm:340
108108 msgid "-"
109109 msgstr ""
110110
111111 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToConfigure..Caption
112-#: w_IniFileFormatter.dfm:335
112+#: w_IniFileFormatter.dfm:343
113113 msgid "Configure ..."
114114 msgstr "Configure ..."
115115
@@ -145,9 +145,18 @@
145145
146146 #. f_IniFileFormatterConfig..pm_CmdLine..mi_Formatted..Caption
147147 #: w_IniFileFormatterConfig.dfm:147
148-msgid "{CompareToFile}"
149-msgstr "{CompareToFile}"
148+msgid "{ReferenceFile}"
149+msgstr "{ReferenceFile}"
150150
151+#. f_IniFileFormatterConfig..pm_CmdLine..title1ReferenceFiletitle2SortedFilereadonly1..Caption
152+#: w_IniFileFormatterConfig.dfm:151
153+msgid ""
154+"/title1=\"Reference File\" /title2=\"Sorted File\" "
155+"/readonly"
156+msgstr ""
157+"/title1=\"Reference File\" /title2=\"Sorted File\" "
158+"/readonly"
159+
151160 #: u_IniFileFormatterMain.pas:29
152161 msgid ""
153162 "Sort sections. Possible values: no, alpha, template (default: "
@@ -205,7 +214,7 @@
205214 msgid "Compare sorted file to"
206215 msgstr "Compare sorted file to"
207216
208-#: w_IniFileFormatterConfig.pas:101
217+#: w_IniFileFormatterConfig.pas:102
209218 msgid "Select file comparer executable"
210219 msgstr "Select file comparer executable"
211220
--- trunk/translations/fr/default.po (revision 18)
+++ trunk/translations/fr/default.po (revision 19)
@@ -6,14 +6,14 @@
66 msgid ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
9-"POT-Creation-Date: 2014-08-31 19:02\n"
9+"POT-Creation-Date: 2014-08-31 19:39\n"
1010 "PO-Revision-Date: 2010-10-23 16:47\n"
1111 "Last-Translator: Somebody <your.email@address.com>\n"
12+"Language-Team: <>\n"
1213 "MIME-Version: 1.0\n"
1314 "Content-Type: text/plain; charset=UTF-8\n"
1415 "Content-Transfer-Encoding: 8bit\n"
1516 "X-Generator: dxgettext 1.2.2\n"
16-"Language-Team: <>\n"
1717 "X-Poedit-Language: french\n"
1818 "X-Poedit-Basepath: \n"
1919
@@ -29,87 +29,87 @@
2929
3030 #. f_IniFileFormatter..pc_Input..ts_Original..Caption
3131 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToOriginal..Caption
32-#: w_IniFileFormatter.dfm:68 w_IniFileFormatter.dfm:320
32+#: w_IniFileFormatter.dfm:68 w_IniFileFormatter.dfm:328
3333 msgid "Original"
3434 msgstr ""
3535
3636 #. f_IniFileFormatter..pc_Input..ts_Template..Caption
3737 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToTemplate..Caption
38-#: w_IniFileFormatter.dfm:89 w_IniFileFormatter.dfm:324
38+#: w_IniFileFormatter.dfm:89 w_IniFileFormatter.dfm:332
3939 msgid "Template"
4040 msgstr ""
4141
4242 #. f_IniFileFormatter..pc_Output..ts_Preview..Caption
43-#: w_IniFileFormatter.dfm:112
43+#: w_IniFileFormatter.dfm:116
4444 msgid "Preview"
4545 msgstr ""
4646
4747 #. f_IniFileFormatter..gb_SortSections..Caption
48-#: w_IniFileFormatter.dfm:130
48+#: w_IniFileFormatter.dfm:138
4949 msgid "Sort Sections"
5050 msgstr ""
5151
5252 #. f_IniFileFormatter..gb_SortSections..rb_SectionsUnsorted..Caption
5353 #. f_IniFileFormatter..gb_SortItems..rb_ItemsUnsorted..Caption
54-#: w_IniFileFormatter.dfm:137 w_IniFileFormatter.dfm:174
54+#: w_IniFileFormatter.dfm:145 w_IniFileFormatter.dfm:182
5555 msgid "Unsorted"
5656 msgstr ""
5757
5858 #. f_IniFileFormatter..gb_SortSections..rb_SectionsAlpha..Caption
5959 #. f_IniFileFormatter..gb_SortItems..rb_ItemsAlpha..Caption
60-#: w_IniFileFormatter.dfm:146 w_IniFileFormatter.dfm:183
60+#: w_IniFileFormatter.dfm:154 w_IniFileFormatter.dfm:191
6161 msgid "Alphabetically"
6262 msgstr ""
6363
6464 #. f_IniFileFormatter..gb_SortSections..rb_SectionsByTemplate..Caption
6565 #. f_IniFileFormatter..gb_SortItems..rb_ItemsByTemplate..Caption
66-#: w_IniFileFormatter.dfm:157 w_IniFileFormatter.dfm:194
66+#: w_IniFileFormatter.dfm:165 w_IniFileFormatter.dfm:202
6767 msgid "By Template"
6868 msgstr ""
6969
7070 #. f_IniFileFormatter..gb_SortItems..Caption
71-#: w_IniFileFormatter.dfm:167
71+#: w_IniFileFormatter.dfm:175
7272 msgid "Sort Items"
7373 msgstr ""
7474
7575 #. f_IniFileFormatter..b_Close..Caption
76-#: w_IniFileFormatter.dfm:206
76+#: w_IniFileFormatter.dfm:214
7777 msgid "Close"
7878 msgstr ""
7979
8080 #. f_IniFileFormatter..b_SaveAs..Caption
81-#: w_IniFileFormatter.dfm:216
81+#: w_IniFileFormatter.dfm:224
8282 msgid "Save As ..."
8383 msgstr ""
8484
8585 #. f_IniFileFormatter..p_TemplateFile..l_Template..Caption
86-#: w_IniFileFormatter.dfm:235
86+#: w_IniFileFormatter.dfm:243
8787 msgid "Template File"
8888 msgstr ""
8989
9090 #. f_IniFileFormatter..b_About..Caption
91-#: w_IniFileFormatter.dfm:264
91+#: w_IniFileFormatter.dfm:272
9292 msgid "About ..."
9393 msgstr "Apropos ..."
9494
9595 #. f_IniFileFormatter..b_CompareTo..Caption
96-#: w_IniFileFormatter.dfm:274
96+#: w_IniFileFormatter.dfm:282
9797 msgid "Compare to"
9898 msgstr ""
9999
100100 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToFile..Caption
101-#: w_IniFileFormatter.dfm:328
101+#: w_IniFileFormatter.dfm:336
102102 msgid "File ..."
103103 msgstr ""
104104
105105 # Label: ignore
106106 #. f_IniFileFormatter..pm_CompareTo..N1..Caption
107-#: w_IniFileFormatter.dfm:332
107+#: w_IniFileFormatter.dfm:340
108108 msgid "-"
109109 msgstr ""
110110
111111 #. f_IniFileFormatter..pm_CompareTo..mi_CompareToConfigure..Caption
112-#: w_IniFileFormatter.dfm:335
112+#: w_IniFileFormatter.dfm:343
113113 msgid "Configure ..."
114114 msgstr ""
115115
@@ -145,19 +145,20 @@
145145
146146 #. f_IniFileFormatterConfig..pm_CmdLine..mi_Formatted..Caption
147147 #: w_IniFileFormatterConfig.dfm:147
148-msgid "{CompareToFile}"
149-msgstr "{CompareToFile}"
148+msgid "{ReferenceFile}"
149+msgstr ""
150150
151+#. f_IniFileFormatterConfig..pm_CmdLine..title1ReferenceFiletitle2SortedFilereadonly1..Caption
152+#: w_IniFileFormatterConfig.dfm:151
153+msgid "/title1=\"Reference File\" /title2=\"Sorted File\" /readonly"
154+msgstr ""
155+
151156 #: u_IniFileFormatterMain.pas:29
152-msgid ""
153-"Sort sections. Possible values: no, alpha, template (default: "
154-"alpha)"
157+msgid "Sort sections. Possible values: no, alpha, template (default: alpha)"
155158 msgstr ""
156159
157160 #: u_IniFileFormatterMain.pas:31
158-msgid ""
159-"Sort items. Possible values: no, alpha, template (default: "
160-"alpha)"
161+msgid "Sort items. Possible values: no, alpha, template (default: alpha)"
161162 msgstr ""
162163
163164 #: u_IniFileFormatterMain.pas:32
@@ -169,16 +170,12 @@
169170 msgstr ""
170171
171172 #: u_IniFileFormatterMain.pas:35
172-msgid ""
173-"Destination INI file to write, if given, the program exits "
174-"automatically"
173+msgid "Destination INI file to write, if given, the program exits automatically"
175174 msgstr ""
176175
177176 #: u_IniFileFormatterMain.pas:63 u_IniFileFormatterMain.pas:73
178177 #, object-pascal-format
179-msgid ""
180-"Invalid value \"%s\" for option SortSections, must be one of \"no\", "
181-"\"alpha\" or \"template\""
178+msgid "Invalid value \"%s\" for option SortSections, must be one of \"no\", \"alpha\" or \"template\""
182179 msgstr ""
183180
184181 #: w_IniFileFormatter.pas:275
@@ -197,7 +194,9 @@
197194 msgid "Compare sorted file to"
198195 msgstr ""
199196
200-#: w_IniFileFormatterConfig.pas:101
197+#: w_IniFileFormatterConfig.pas:102
201198 msgid "Select file comparer executable"
202199 msgstr ""
203200
201+#~ msgid "{CompareToFile}"
202+#~ msgstr "{CompareToFile}"
Show on old repository browser