mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 21:38:00 +02:00
IDE: improved i18n
git-svn-id: trunk@48467 -
This commit is contained in:
parent
285342a2d4
commit
80ea45ac3c
@ -1131,7 +1131,7 @@ begin
|
||||
InputHistories.ApplyFileDialogSettings(OpenDialog);
|
||||
with OpenDialog do begin
|
||||
Title:=dlgChsCodeTempl;
|
||||
Filter:='DCI file (*.dci)|*.dci|' + dlgAllFiles + '|' + GetAllFilesMask;
|
||||
Filter:=dlgDCIFileDci + '|*.dci|' + dlgAllFiles + '|' + GetAllFilesMask;
|
||||
if Execute then
|
||||
FilenameEdit.Text:=FileName;
|
||||
end;
|
||||
|
@ -358,7 +358,8 @@ begin
|
||||
end;
|
||||
end;
|
||||
FilterEdit.InvalidateFilter;
|
||||
FileCountLabel.Caption:=IntToStr(SourceEditorManager.SourceEditorCount) + ' files';
|
||||
FileCountLabel.Caption:=Format(dlgFiles, [IntToStr(SourceEditorManager.
|
||||
SourceEditorCount)]);
|
||||
end;
|
||||
|
||||
function TEditorFileManagerForm.SrcEditorByListItem(ListIndex: integer): TSourceEditor;
|
||||
|
@ -305,6 +305,7 @@ resourcestring
|
||||
lisMenuSelectAll = 'Select All';
|
||||
lisCheckAll = 'Check All';
|
||||
lisUncheckAll = 'Uncheck All';
|
||||
dlgFiles = '%s files';
|
||||
lisSAMAbstractMethodsNotYetOverridden = 'Abstract Methods - not yet overridden';
|
||||
lisMenuSelectToBrace = 'Select to Brace';
|
||||
lisMenuSelectCodeBlock = 'Select Code Block';
|
||||
@ -1447,6 +1448,7 @@ resourcestring
|
||||
dlgDelTemplate = 'Delete template ';
|
||||
dlgChsCodeTempl = 'Choose code template file (*.dci)';
|
||||
dlgAllFiles = 'All files';
|
||||
dlgDCIFileDci = 'DCI file (*.dci)';
|
||||
lisCodetoolsTemplateFile = 'CodeTools template file';
|
||||
lisExecutable = 'Executable';
|
||||
lisEditorFileTypes = 'Editor file types';
|
||||
@ -5718,7 +5720,7 @@ resourcestring
|
||||
+'new file, because there is already a directory with this name.';
|
||||
|
||||
//Toolbar options
|
||||
lisToolbarOptions = 'Toolbar Options';
|
||||
lisToolbarOptions = 'Toolbar';
|
||||
lisToolbarOptionsToolbarsVisible = 'Toolbars visible';
|
||||
lisToolbarOptionsStandardVisible = 'Standard toolbar visible';
|
||||
lisToolbarOptionsViewDebugVisible = 'Debug toolbar visible';
|
||||
|
Loading…
Reference in New Issue
Block a user