mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 01:08:12 +02:00
IDEIntf: improved Save/Open dialog i18n for Treeview Items Editor
This commit is contained in:
parent
a7c6c82c2b
commit
df205ffc25
@ -384,7 +384,6 @@ resourcestring
|
||||
// TFileNamePropertyEditor
|
||||
oisSelectAFile = 'Select a file';
|
||||
oisPropertiesOf = 'Properties of %s';
|
||||
oisAllFiles = 'All files';
|
||||
|
||||
// TCommonDialogComponentEditor
|
||||
oisTestDialog = 'Test dialog ...';
|
||||
@ -531,6 +530,10 @@ resourcestring
|
||||
lrsCopyFromDataset = 'Copy data from other dataset';
|
||||
lrsNoDatasetsAvailableForCopy = 'No dataset available to copy data from.';
|
||||
|
||||
// File types
|
||||
oisAllFiles = 'All files';
|
||||
oisFilterXML = 'XML files';
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
@ -156,7 +156,7 @@ begin
|
||||
// dialogs
|
||||
dlgOpen.Title := sccsTrEdtOpenDialog;
|
||||
dlgSave.Title := sccsTrEdtSaveDialog;
|
||||
dlgSave.Filter := 'xml files|*.xml|All files|'+GetAllFilesMask+'|';
|
||||
dlgSave.Filter := oisFilterXML+'|*.xml|'+oisAllFiles+'|'+GetAllFilesMask+'|';
|
||||
dlgOpen.Filter := dlgSave.Filter;
|
||||
|
||||
// button panel
|
||||
|
Loading…
Reference in New Issue
Block a user