diff --git a/components/ideintf/maskpropedit.pas b/components/ideintf/maskpropedit.pas index 8a4967cff0..ca3360ee00 100644 --- a/components/ideintf/maskpropedit.pas +++ b/components/ideintf/maskpropedit.pas @@ -141,6 +141,7 @@ procedure TMaskEditorForm.MaskEditorFormCreate(Sender: TObject); var aDemFile: string; begin + Caption := oisInputMaskEditor; LoadSampleMasksButton.Caption := oisMasks; SaveLiteralCheckBox.Caption := oisSaveLiteralCharacters; InputMaskLabel.Caption := oisInputMask; @@ -148,6 +149,8 @@ begin CharactersForBlanksLabel.Caption := oisCharactersForBlanks; TestInputLabel.Caption := oisTestInput; + EnableSetsCheckBox.Hint := oisEnableSetsHint; + if LazarusIDE<>nil then aDemFile:=LazarusIDE.GetPrimaryConfigPath else diff --git a/components/ideintf/objinspstrconsts.pas b/components/ideintf/objinspstrconsts.pas index dbf97ca9cb..97b677026b 100644 --- a/components/ideintf/objinspstrconsts.pas +++ b/components/ideintf/objinspstrconsts.pas @@ -257,6 +257,7 @@ resourcestring // Mask Editor sccsMaskEditor = 'Edit Mask Editor ...'; oisMasks = 'Masks ...'; + oisInputMaskEditor = 'Input Mask Editor'; oisSaveLiteralCharacters = 'Save Literal Characters'; oisInputMask = 'Input Mask:'; oisSampleMasks = 'Sample Masks:';