- Upgraded Code-Inspector
- Now checks language strings - New design - Better parsing - Displays actions - Added function: can't load files twice - Updated Code-Explorer - now faster - fixed a few small bugs - now keeps selection - Updated Settings-Dialog - Fixed output bug (showed sometimes huge numbers as line numbers) - Fixed design bug (displayed wrong plugin data on start) - Fixed small bug in the color dialog - Fixed small start bug (didn't show real plugin data on startup) - Added restore function - Fixed code-explorer bug (didn't recognize @-functions) - Fixed highlight bug (had problems with ^" and ^ in strings) - Fixed potential crash bug - Fixed another highlight bug - Fixed aother code-explorer bug... - Added 2 settings (for auto-complete and calltips) - Added SCM_SETTINGS_REMOVEPAGE-message - Fixed SCM_SETTINGS_CREATEPAGE bug
This commit is contained in:
@ -80,6 +80,9 @@ var lInvalidFile: String;
|
||||
lNoCPP: String;
|
||||
lInvalidChannel: String;
|
||||
lResetShortcuts: String;
|
||||
lSelectLanguageDir: String;
|
||||
lFailedCreateBak: String;
|
||||
lAskRestore: String;
|
||||
|
||||
procedure ResetToEnglish;
|
||||
|
||||
@ -163,6 +166,9 @@ begin
|
||||
lNoCPP := 'Sorry, the C++ IDE is not enabled.';
|
||||
lInvalidChannel := 'Invalid channel.';
|
||||
lResetShortcuts := 'Warning: The shortcut reset would immediately take affect. Reset anyway?';
|
||||
lSelectLanguageDir := 'Please select the directory of all dictionary files (default "%datadir%/lang"):';
|
||||
lFailedCreateBak := 'Error creating file backup.';
|
||||
lAskRestore := 'Do you want to restore the old file backup?';
|
||||
end;
|
||||
|
||||
end.
|
||||
|
Reference in New Issue
Block a user