mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-09 02:16:48 +02:00
IDE, MultiPaste dialog: added i18n
git-svn-id: trunk@53070 -
This commit is contained in:
parent
861f05a8dd
commit
0167fd9dde
@ -347,7 +347,7 @@ resourcestring
|
|||||||
lisKMSelectPageBottom = 'Select Page Bottom';
|
lisKMSelectPageBottom = 'Select Page Bottom';
|
||||||
lisUseAndClose = 'Use and close';
|
lisUseAndClose = 'Use and close';
|
||||||
lisMenuSelect = 'Select';
|
lisMenuSelect = 'Select';
|
||||||
lisMenuMultiPaste = 'MultiPaste';
|
lisMenuMultiPaste = 'MultiPaste ...';
|
||||||
lisMenuSelectAll = 'Select All';
|
lisMenuSelectAll = 'Select All';
|
||||||
lisCheckAll = 'Check All';
|
lisCheckAll = 'Check All';
|
||||||
lisUncheckAll = 'Uncheck All';
|
lisUncheckAll = 'Uncheck All';
|
||||||
@ -6317,6 +6317,16 @@ resourcestring
|
|||||||
synfMatchActionModifiersOfMouseDown = 'Match action modifiers of mouse down';
|
synfMatchActionModifiersOfMouseDown = 'Match action modifiers of mouse down';
|
||||||
synfContinueWithNextMouseUpAction = 'Continue with next mouse up action';
|
synfContinueWithNextMouseUpAction = 'Continue with next mouse up action';
|
||||||
lisDuplicateUnitIn = 'Duplicate unit "%s" in "%s"';
|
lisDuplicateUnitIn = 'Duplicate unit "%s" in "%s"';
|
||||||
|
|
||||||
|
lismpMultiPaste = 'MultiPaste';
|
||||||
|
lismpPasteOptions = 'Paste &options';
|
||||||
|
lismpTextBeforeEachLine = 'Text &before each line';
|
||||||
|
lismpTextAfterEachLine = 'Text &after each line';
|
||||||
|
lismpEscapeQuotes = 'Escape "es';
|
||||||
|
lismpPascalStyle = 'Pascal style: '' => ''''';
|
||||||
|
lismpCStyle = 'C style: " => \"';
|
||||||
|
lismpTrimClipboardContents = '&Trim clipboard contents';
|
||||||
|
lismpPreview = '&Preview';
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
@ -40,7 +40,7 @@ interface
|
|||||||
|
|
||||||
uses
|
uses
|
||||||
SysUtils, Classes, StdCtrls, ButtonPanel, Forms, Clipbrd, SynEdit,
|
SysUtils, Classes, StdCtrls, ButtonPanel, Forms, Clipbrd, SynEdit,
|
||||||
IDEHelpIntf, InputHistory, IDEProcs;
|
IDEHelpIntf, InputHistory, IDEProcs, LazarusIDEStrConsts;
|
||||||
|
|
||||||
const
|
const
|
||||||
hlFormatPasteTxtBefore = 'FormatPasteTxtBefore';
|
hlFormatPasteTxtBefore = 'FormatPasteTxtBefore';
|
||||||
@ -107,6 +107,16 @@ begin
|
|||||||
List.AppendEntry(''');');
|
List.AppendEntry(''');');
|
||||||
TxtAfterLinesComboBox.Items.Assign(List);
|
TxtAfterLinesComboBox.Items.Assign(List);
|
||||||
TxtAfterLinesComboBox.Text:=List[0];
|
TxtAfterLinesComboBox.Text:=List[0];
|
||||||
|
|
||||||
|
Caption := lismpMultiPaste;
|
||||||
|
PasteOptsGroupBox.Caption := lismpPasteOptions;
|
||||||
|
TxtBeforeLinesLabel.Caption := lismpTextBeforeEachLine;
|
||||||
|
TxtAfterLinesLabel.Caption := lismpTextAfterEachLine;
|
||||||
|
EscQuotesCheckBox.Caption := lismpEscapeQuotes;
|
||||||
|
EscQuotesStyleComboBox.Items[0] := lismpPascalStyle;
|
||||||
|
EscQuotesStyleComboBox.Items[1] := lismpCStyle;
|
||||||
|
TrimClipbrdContentsCheckBox.Caption := lismpTrimClipboardContents;
|
||||||
|
PreviewGroupBox.Caption := lismpPreview;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TMultiPasteDialog.FormDestroy(Sender: TObject);
|
procedure TMultiPasteDialog.FormDestroy(Sender: TObject);
|
||||||
|
Loading…
Reference in New Issue
Block a user