IDE: fixed typo in a name of a resource string, also cleaned up hacky spaces in a caption

This commit is contained in:
Maxim Ganetsky 2023-06-24 16:39:16 +03:00
parent 1a28bdd0f9
commit 54e3f2ca0c
2 changed files with 3 additions and 3 deletions

View File

@ -112,8 +112,8 @@ begin
ICSortDividerBevel.Caption:=lisSorting;
ICSortForHistoryCheckBox.Caption:=lisShowRecentlyUsedIdentifiersAtTop;
ICSortOrderRadioGroup.Hint:=lisForExampleShowAtTopTheLocalVariablesThenTheMembers;
ICSortOrderRadioGroup.Caption:=' '+lisSortOrderTitle+' ';
ICSortOrderRadioGroup.Items[0]:= lisSortOrderSopedAlphabetic;
ICSortOrderRadioGroup.Caption:=lisSortOrderTitle;
ICSortOrderRadioGroup.Items[0]:= lisSortOrderScopedAlphabetic;
ICSortOrderRadioGroup.Items[1]:= lisSortOrderAlphabetic;
ICSortOrderRadioGroup.Items[2]:= lisSortOrderDefinition;
ICContentDividerBevel.Caption:=lisContents;

View File

@ -5778,7 +5778,7 @@ resourcestring
+' ancestors, then the current unit, then of used units';
lisSortOrderTitle = 'Order by';
lisSortOrderDefinition = 'Definition (Scoped)';
lisSortOrderSopedAlphabetic = 'Alphabetic (Scoped)';
lisSortOrderScopedAlphabetic = 'Alphabetic (Scoped)';
lisSortOrderAlphabetic = 'Alphabetic';
lisShowEmptyUnitsPackages = 'Show empty units/packages';
lisUsePackageInProject = 'Use package %s in project';