Changeset 10 for trunk/UFormImport.pas
- Timestamp:
- Apr 22, 2016, 9:59:52 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UFormImport.pas
r8 r10 38 38 uses 39 39 UFormMain; 40 41 resourcestring 42 SImportedNewAcronyms = 'Imported %d new acronyms.'; 40 43 41 44 … … 112 115 end; 113 116 if AddedCount > 0 then FormMain.AcronymDb.Modified := True; 114 ShowMessage(Format( 'Imported %d new acronyms.', [AddedCount]));117 ShowMessage(Format(SImportedNewAcronyms, [AddedCount])); 115 118 end; 116 119 … … 159 162 Columns.Free; 160 163 if AddedCount > 0 then FormMain.AcronymDb.Modified := True; 161 ShowMessage(Format( 'Imported %d new acronyms.', [AddedCount]));164 ShowMessage(Format(SImportedNewAcronyms, [AddedCount])); 162 165 end; 163 166
Note:
See TracChangeset
for help on using the changeset viewer.