mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 06:20:17 +02:00
IdeDebugger: Add up/down navigation to callstack
This commit is contained in:
parent
b854ec9036
commit
cca69fe196
@ -1,15 +1,15 @@
|
|||||||
object CallStackDlg: TCallStackDlg
|
object CallStackDlg: TCallStackDlg
|
||||||
Left = 306
|
Left = 413
|
||||||
Height = 246
|
Height = 246
|
||||||
Top = 130
|
Top = 116
|
||||||
Width = 562
|
Width = 562
|
||||||
BorderStyle = bsSizeToolWin
|
BorderStyle = bsSizeToolWin
|
||||||
Caption = 'CallStack'
|
Caption = 'CallStack'
|
||||||
ClientHeight = 246
|
ClientHeight = 246
|
||||||
ClientWidth = 562
|
ClientWidth = 562
|
||||||
OnCreate = FormCreate
|
|
||||||
LCLVersion = '3.99.0.0'
|
LCLVersion = '3.99.0.0'
|
||||||
Visible = True
|
Visible = True
|
||||||
|
OnCreate = FormCreate
|
||||||
object lvCallStack: TListView
|
object lvCallStack: TListView
|
||||||
Left = 0
|
Left = 0
|
||||||
Height = 220
|
Height = 220
|
||||||
@ -92,14 +92,14 @@ object CallStackDlg: TCallStackDlg
|
|||||||
Style = tbsDropDown
|
Style = tbsDropDown
|
||||||
end
|
end
|
||||||
object ToolButtonGoto: TToolButton
|
object ToolButtonGoto: TToolButton
|
||||||
Left = 248
|
Left = 294
|
||||||
Top = 2
|
Top = 2
|
||||||
Action = actViewGoto
|
Action = actViewGoto
|
||||||
ImageIndex = 4
|
ImageIndex = 4
|
||||||
ShowCaption = False
|
ShowCaption = False
|
||||||
end
|
end
|
||||||
object ToolButtonCopyAll: TToolButton
|
object ToolButtonCopyAll: TToolButton
|
||||||
Left = 279
|
Left = 325
|
||||||
Top = 2
|
Top = 2
|
||||||
Action = actCopyAll
|
Action = actCopyAll
|
||||||
ImageIndex = 5
|
ImageIndex = 5
|
||||||
@ -126,15 +126,27 @@ object CallStackDlg: TCallStackDlg
|
|||||||
ImageIndex = 2
|
ImageIndex = 2
|
||||||
ShowCaption = False
|
ShowCaption = False
|
||||||
end
|
end
|
||||||
object ToolButtonBottom: TToolButton
|
object ToolButtonUp: TToolButton
|
||||||
Left = 175
|
Left = 175
|
||||||
Top = 2
|
Top = 2
|
||||||
|
Action = actViewUp
|
||||||
|
ShowCaption = False
|
||||||
|
end
|
||||||
|
object ToolButtonDown: TToolButton
|
||||||
|
Left = 198
|
||||||
|
Top = 2
|
||||||
|
Action = actViewDown
|
||||||
|
ShowCaption = False
|
||||||
|
end
|
||||||
|
object ToolButtonBottom: TToolButton
|
||||||
|
Left = 221
|
||||||
|
Top = 2
|
||||||
Action = actViewBottom
|
Action = actViewBottom
|
||||||
ImageIndex = 3
|
ImageIndex = 3
|
||||||
ShowCaption = False
|
ShowCaption = False
|
||||||
end
|
end
|
||||||
object Panel1: TPanel
|
object Panel1: TPanel
|
||||||
Left = 198
|
Left = 244
|
||||||
Height = 22
|
Height = 22
|
||||||
Top = 2
|
Top = 2
|
||||||
Width = 50
|
Width = 50
|
||||||
@ -147,9 +159,9 @@ object CallStackDlg: TCallStackDlg
|
|||||||
Height = 23
|
Height = 23
|
||||||
Top = 0
|
Top = 0
|
||||||
Width = 46
|
Width = 46
|
||||||
OnKeyPress = txtGotoKeyPress
|
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
Text = '0'
|
Text = '0'
|
||||||
|
OnKeyPress = txtGotoKeyPress
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
object ToolButtonPower: TToolButton
|
object ToolButtonPower: TToolButton
|
||||||
@ -159,12 +171,12 @@ object CallStackDlg: TCallStackDlg
|
|||||||
AutoSize = True
|
AutoSize = True
|
||||||
Caption = 'ToolButtonPower'
|
Caption = 'ToolButtonPower'
|
||||||
Down = True
|
Down = True
|
||||||
OnClick = ToolButtonPowerClick
|
|
||||||
ShowCaption = False
|
ShowCaption = False
|
||||||
Style = tbsCheck
|
Style = tbsCheck
|
||||||
|
OnClick = ToolButtonPowerClick
|
||||||
end
|
end
|
||||||
object ToolButton2: TToolButton
|
object ToolButton2: TToolButton
|
||||||
Left = 271
|
Left = 317
|
||||||
Height = 22
|
Height = 22
|
||||||
Top = 2
|
Top = 2
|
||||||
Caption = 'ToolButton2'
|
Caption = 'ToolButton2'
|
||||||
@ -209,11 +221,11 @@ object CallStackDlg: TCallStackDlg
|
|||||||
Top = 80
|
Top = 80
|
||||||
object actShow: TAction
|
object actShow: TAction
|
||||||
Caption = 'Show'
|
Caption = 'Show'
|
||||||
OnExecute = actShowClick
|
|
||||||
SecondaryShortCuts.Strings = (
|
SecondaryShortCuts.Strings = (
|
||||||
'enter'
|
'enter'
|
||||||
)
|
)
|
||||||
ShortCut = 16470
|
ShortCut = 16470
|
||||||
|
OnExecute = actShowClick
|
||||||
end
|
end
|
||||||
object actViewMore: TAction
|
object actViewMore: TAction
|
||||||
Category = 'View'
|
Category = 'View'
|
||||||
@ -235,19 +247,14 @@ object CallStackDlg: TCallStackDlg
|
|||||||
Caption = 'Top'
|
Caption = 'Top'
|
||||||
OnExecute = actViewTopExecute
|
OnExecute = actViewTopExecute
|
||||||
end
|
end
|
||||||
object actViewBottom: TAction
|
|
||||||
Category = 'View'
|
|
||||||
Caption = 'Bottom'
|
|
||||||
OnExecute = actViewBottomExecute
|
|
||||||
end
|
|
||||||
object actSetCurrent: TAction
|
object actSetCurrent: TAction
|
||||||
Caption = 'Current'
|
Caption = 'Current'
|
||||||
OnExecute = actSetAsCurrentClick
|
OnExecute = actSetAsCurrentClick
|
||||||
end
|
end
|
||||||
object actCopyLine: TAction
|
object actCopyLine: TAction
|
||||||
Caption = 'Copy line'
|
Caption = 'Copy line'
|
||||||
OnExecute = actCopyLineClick
|
|
||||||
ShortCut = 16451
|
ShortCut = 16451
|
||||||
|
OnExecute = actCopyLineClick
|
||||||
end
|
end
|
||||||
object actCopyAll: TAction
|
object actCopyAll: TAction
|
||||||
Caption = 'Copy All'
|
Caption = 'Copy All'
|
||||||
@ -255,13 +262,28 @@ object CallStackDlg: TCallStackDlg
|
|||||||
end
|
end
|
||||||
object actToggleBreakPoint: TAction
|
object actToggleBreakPoint: TAction
|
||||||
Caption = 'Toggle Breakpoint'
|
Caption = 'Toggle Breakpoint'
|
||||||
OnExecute = actToggleBreakPointExecute
|
|
||||||
ShortCut = 116
|
ShortCut = 116
|
||||||
|
OnExecute = actToggleBreakPointExecute
|
||||||
end
|
end
|
||||||
object actShowDisass: TAction
|
object actShowDisass: TAction
|
||||||
Caption = 'actShowDisass'
|
Caption = 'actShowDisass'
|
||||||
OnExecute = actShowDisassExecute
|
OnExecute = actShowDisassExecute
|
||||||
end
|
end
|
||||||
|
object actViewUp: TAction
|
||||||
|
Category = 'View'
|
||||||
|
Caption = 'actViewUp'
|
||||||
|
OnExecute = actViewUpExecute
|
||||||
|
end
|
||||||
|
object actViewDown: TAction
|
||||||
|
Category = 'View'
|
||||||
|
Caption = 'actViewDown'
|
||||||
|
OnExecute = actViewDownExecute
|
||||||
|
end
|
||||||
|
object actViewBottom: TAction
|
||||||
|
Category = 'View'
|
||||||
|
Caption = 'Bottom'
|
||||||
|
OnExecute = actViewBottomExecute
|
||||||
|
end
|
||||||
end
|
end
|
||||||
object mnuLimit: TPopupMenu
|
object mnuLimit: TPopupMenu
|
||||||
Left = 136
|
Left = 136
|
||||||
|
@ -60,6 +60,8 @@ type
|
|||||||
aclActions: TActionList;
|
aclActions: TActionList;
|
||||||
actCopyAll: TAction;
|
actCopyAll: TAction;
|
||||||
actCopyLine: TAction;
|
actCopyLine: TAction;
|
||||||
|
actViewDown: TAction;
|
||||||
|
actViewUp: TAction;
|
||||||
actShowDisass: TAction;
|
actShowDisass: TAction;
|
||||||
actToggleBreakPoint: TAction;
|
actToggleBreakPoint: TAction;
|
||||||
actViewBottom: TAction;
|
actViewBottom: TAction;
|
||||||
@ -73,6 +75,8 @@ type
|
|||||||
popShowDisass: TMenuItem;
|
popShowDisass: TMenuItem;
|
||||||
popToggle: TMenuItem;
|
popToggle: TMenuItem;
|
||||||
Separator1: TMenuItem;
|
Separator1: TMenuItem;
|
||||||
|
ToolButtonUp: TToolButton;
|
||||||
|
ToolButtonDown: TToolButton;
|
||||||
ToolButtonPower: TToolButton;
|
ToolButtonPower: TToolButton;
|
||||||
ToolButton2: TToolButton;
|
ToolButton2: TToolButton;
|
||||||
ToolButtonTop: TToolButton;
|
ToolButtonTop: TToolButton;
|
||||||
@ -102,10 +106,12 @@ type
|
|||||||
procedure actShowDisassExecute(Sender: TObject);
|
procedure actShowDisassExecute(Sender: TObject);
|
||||||
procedure actToggleBreakPointExecute(Sender: TObject);
|
procedure actToggleBreakPointExecute(Sender: TObject);
|
||||||
procedure actViewBottomExecute(Sender: TObject);
|
procedure actViewBottomExecute(Sender: TObject);
|
||||||
|
procedure actViewDownExecute(Sender: TObject);
|
||||||
procedure actViewGotoExecute(Sender: TObject);
|
procedure actViewGotoExecute(Sender: TObject);
|
||||||
procedure actViewMoreExecute(Sender: TObject);
|
procedure actViewMoreExecute(Sender: TObject);
|
||||||
procedure actViewLimitExecute(Sender: TObject);
|
procedure actViewLimitExecute(Sender: TObject);
|
||||||
procedure actViewTopExecute(Sender: TObject);
|
procedure actViewTopExecute(Sender: TObject);
|
||||||
|
procedure actViewUpExecute(Sender: TObject);
|
||||||
procedure FormCreate(Sender: TObject);
|
procedure FormCreate(Sender: TObject);
|
||||||
procedure lvCallStackClick(Sender: TObject);
|
procedure lvCallStackClick(Sender: TObject);
|
||||||
procedure popCountClick(Sender: TObject);
|
procedure popCountClick(Sender: TObject);
|
||||||
@ -370,7 +376,7 @@ begin
|
|||||||
if FWantedViewStart = MaxInt then
|
if FWantedViewStart = MaxInt then
|
||||||
Count := CStack.Count
|
Count := CStack.Count
|
||||||
else
|
else
|
||||||
Count := CStack.CountLimited(FWantedViewStart);
|
Count := CStack.CountLimited(FWantedViewStart+FViewLimit);
|
||||||
|
|
||||||
if (Count > 0) or (CStack.CountValidity = ddsValid) then begin
|
if (Count > 0) or (CStack.CountValidity = ddsValid) then begin
|
||||||
FViewStart := Min(FWantedViewStart, Count - FViewLimit);
|
FViewStart := Min(FWantedViewStart, Count - FViewLimit);
|
||||||
@ -739,6 +745,22 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TCallStackDlg.actViewDownExecute(Sender: TObject);
|
||||||
|
begin
|
||||||
|
try
|
||||||
|
DisableAllActions;
|
||||||
|
BeginUpdate;
|
||||||
|
|
||||||
|
if GetSelectedCallstack = nil then
|
||||||
|
SetViewStart(0)
|
||||||
|
else
|
||||||
|
SetViewStart(FViewStart + ViewLimit);
|
||||||
|
finally
|
||||||
|
EndUpdate;
|
||||||
|
EnableAllActions;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TCallStackDlg.actToggleBreakPointExecute(Sender: TObject);
|
procedure TCallStackDlg.actToggleBreakPointExecute(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
ToggleBreakpoint(lvCallStack.Selected);
|
ToggleBreakpoint(lvCallStack.Selected);
|
||||||
@ -787,6 +809,22 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TCallStackDlg.actViewUpExecute(Sender: TObject);
|
||||||
|
begin
|
||||||
|
try
|
||||||
|
DisableAllActions;
|
||||||
|
BeginUpdate;
|
||||||
|
|
||||||
|
if GetSelectedCallstack = nil then
|
||||||
|
SetViewStart(0)
|
||||||
|
else
|
||||||
|
SetViewStart(Max(0, FViewStart - ViewLimit));
|
||||||
|
finally
|
||||||
|
EndUpdate;
|
||||||
|
EnableAllActions;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TCallStackDlg.BreakPointChanged(const ASender: TIDEBreakPoints;
|
procedure TCallStackDlg.BreakPointChanged(const ASender: TIDEBreakPoints;
|
||||||
const ABreakpoint: TIDEBreakPoint);
|
const ABreakpoint: TIDEBreakPoint);
|
||||||
var
|
var
|
||||||
@ -827,6 +865,8 @@ begin
|
|||||||
mnuLimit.Items[i].Caption:= Format(lisMaxS, [mnuLimit.Items[i].Tag]);
|
mnuLimit.Items[i].Caption:= Format(lisMaxS, [mnuLimit.Items[i].Tag]);
|
||||||
actViewMore.Caption := lisMore;
|
actViewMore.Caption := lisMore;
|
||||||
actViewTop.Caption := lisCSTop;
|
actViewTop.Caption := lisCSTop;
|
||||||
|
actViewUp.Caption := lisCSUp;
|
||||||
|
actViewDown.Caption := lisCSDown;
|
||||||
actViewBottom.Caption := lisCSBottom;
|
actViewBottom.Caption := lisCSBottom;
|
||||||
actViewGoto.Caption := lisGotoSelected;
|
actViewGoto.Caption := lisGotoSelected;
|
||||||
actShow.Caption := lisViewSource;
|
actShow.Caption := lisViewSource;
|
||||||
@ -838,6 +878,8 @@ begin
|
|||||||
|
|
||||||
actViewMore.Hint := lisMore;
|
actViewMore.Hint := lisMore;
|
||||||
actViewTop.Hint := lisCSTop;
|
actViewTop.Hint := lisCSTop;
|
||||||
|
actViewUp.Hint := lisCSUp;
|
||||||
|
actViewDown.Hint := lisCSDown;
|
||||||
actViewBottom.Hint := lisCSBottom;
|
actViewBottom.Hint := lisCSBottom;
|
||||||
actViewGoto.Hint := lisGotoSelected;
|
actViewGoto.Hint := lisGotoSelected;
|
||||||
actShow.Hint := lisViewSource;
|
actShow.Hint := lisViewSource;
|
||||||
@ -871,8 +913,10 @@ begin
|
|||||||
ToolBar1.Images := IDEImages.Images_16;
|
ToolBar1.Images := IDEImages.Images_16;
|
||||||
ToolButtonShow.ImageIndex := IDEImages.LoadImage('callstack_show');
|
ToolButtonShow.ImageIndex := IDEImages.LoadImage('callstack_show');
|
||||||
ToolButtonMore.ImageIndex := IDEImages.LoadImage('callstack_more');
|
ToolButtonMore.ImageIndex := IDEImages.LoadImage('callstack_more');
|
||||||
ToolButtonTop.ImageIndex := IDEImages.LoadImage('callstack_top');
|
ToolButtonTop.ImageIndex := IDEImages.LoadImage('NavArrow_T');
|
||||||
ToolButtonBottom.ImageIndex := IDEImages.LoadImage('callstack_bottom');
|
ToolButtonUp.ImageIndex := IDEImages.LoadImage('NavArrow_U');
|
||||||
|
ToolButtonDown.ImageIndex := IDEImages.LoadImage('NavArrow_D');
|
||||||
|
ToolButtonBottom.ImageIndex := IDEImages.LoadImage('NavArrow_B');
|
||||||
ToolButtonGoto.ImageIndex := IDEImages.LoadImage('callstack_goto');
|
ToolButtonGoto.ImageIndex := IDEImages.LoadImage('callstack_goto');
|
||||||
ToolButtonCopyAll.ImageIndex := IDEImages.LoadImage('laz_copy');
|
ToolButtonCopyAll.ImageIndex := IDEImages.LoadImage('laz_copy');
|
||||||
ToolButtonCurrent.ImageIndex := IDEImages.LoadImage('debugger_current_line');
|
ToolButtonCurrent.ImageIndex := IDEImages.LoadImage('debugger_current_line');
|
||||||
|
@ -177,6 +177,8 @@ resourcestring
|
|||||||
lisIndex = 'Index';
|
lisIndex = 'Index';
|
||||||
lisFunction = 'Function';
|
lisFunction = 'Function';
|
||||||
lisCSTop = 'Top';
|
lisCSTop = 'Top';
|
||||||
|
lisCSDown = 'Page down';
|
||||||
|
lisCSUp = 'Page up';
|
||||||
lisCSBottom = 'Bottom';
|
lisCSBottom = 'Bottom';
|
||||||
lisCallStackNotEvaluated = 'Stack not evaluated';
|
lisCallStackNotEvaluated = 'Stack not evaluated';
|
||||||
|
|
||||||
|
@ -22,3 +22,15 @@ NavArrow_Hide_200 RCDATA "../../../images/general_purpose/Arrow_07_32.png"
|
|||||||
NavArrow_Show RCDATA "../../../images/general_purpose/Arrow_08_16.png"
|
NavArrow_Show RCDATA "../../../images/general_purpose/Arrow_08_16.png"
|
||||||
NavArrow_Show_150 RCDATA "../../../images/general_purpose/Arrow_08_24.png"
|
NavArrow_Show_150 RCDATA "../../../images/general_purpose/Arrow_08_24.png"
|
||||||
NavArrow_Show_200 RCDATA "../../../images/general_purpose/Arrow_08_32.png"
|
NavArrow_Show_200 RCDATA "../../../images/general_purpose/Arrow_08_32.png"
|
||||||
|
NavArrow_T RCDATA "../../../images/general_purpose/Arrow_27_16.png"
|
||||||
|
NavArrow_T_150 RCDATA "../../../images/general_purpose/Arrow_27_24.png"
|
||||||
|
NavArrow_T_200 RCDATA "../../../images/general_purpose/Arrow_27_32.png"
|
||||||
|
NavArrow_U RCDATA "../../../images/general_purpose/Arrow_23_16.png"
|
||||||
|
NavArrow_U_150 RCDATA "../../../images/general_purpose/Arrow_23_24.png"
|
||||||
|
NavArrow_U_200 RCDATA "../../../images/general_purpose/Arrow_23_32.png"
|
||||||
|
NavArrow_D RCDATA "../../../images/general_purpose/Arrow_24_16.png"
|
||||||
|
NavArrow_D_150 RCDATA "../../../images/general_purpose/Arrow_24_24.png"
|
||||||
|
NavArrow_D_200 RCDATA "../../../images/general_purpose/Arrow_24_32.png"
|
||||||
|
NavArrow_B RCDATA "../../../images/general_purpose/Arrow_28_16.png"
|
||||||
|
NavArrow_B_150 RCDATA "../../../images/general_purpose/Arrow_28_24.png"
|
||||||
|
NavArrow_B_200 RCDATA "../../../images/general_purpose/Arrow_28_32.png"
|
||||||
|
Binary file not shown.
@ -1067,10 +1067,18 @@ msgstr ""
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "idedebuggerstringconstants.liscurrent"
|
msgctxt "idedebuggerstringconstants.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1069,10 +1069,18 @@ msgstr ""
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "idedebuggerstringconstants.liscurrent"
|
msgctxt "idedebuggerstringconstants.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1078,10 +1078,18 @@ msgstr ""
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "idedebuggerstringconstants.liscurrent"
|
msgctxt "idedebuggerstringconstants.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1097,11 +1097,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Dolní"
|
msgstr "Dolní"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Nahoře"
|
msgstr "Nahoře"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1095,11 +1095,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Unten"
|
msgstr "Unten"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Oben"
|
msgstr "Oben"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1101,11 +1101,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Abajo"
|
msgstr "Abajo"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Arriba"
|
msgstr "Arriba"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1094,11 +1094,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Alhaalla"
|
msgstr "Alhaalla"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Ylhäällä"
|
msgstr "Ylhäällä"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1098,11 +1098,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Bas"
|
msgstr "Bas"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Haut"
|
msgstr "Haut"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1091,11 +1091,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "תחתית"
|
msgstr "תחתית"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "פסגה"
|
msgstr "פסגה"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1097,11 +1097,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Le"
|
msgstr "Le"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Fel"
|
msgstr "Fel"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1080,10 +1080,18 @@ msgstr ""
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "idedebuggerstringconstants.liscurrent"
|
msgctxt "idedebuggerstringconstants.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1100,11 +1100,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Basso"
|
msgstr "Basso"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Cima"
|
msgstr "Cima"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1098,11 +1098,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "底"
|
msgstr "底"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "上端"
|
msgstr "上端"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1098,11 +1098,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Apačion"
|
msgstr "Apačion"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Viršun"
|
msgstr "Viršun"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1080,10 +1080,18 @@ msgstr ""
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "idedebuggerstringconstants.liscurrent"
|
msgctxt "idedebuggerstringconstants.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1097,11 +1097,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Dół"
|
msgstr "Dół"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Góra"
|
msgstr "Góra"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1076,11 +1076,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1112,11 +1112,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Base"
|
msgstr "Base"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Topo"
|
msgstr "Topo"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1088,11 +1088,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Вниз"
|
msgstr "Вниз"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Вверх"
|
msgstr "Вверх"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1096,11 +1096,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Dole"
|
msgstr "Dole"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Hore"
|
msgstr "Hore"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1097,11 +1097,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Alt"
|
msgstr "Alt"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Üst"
|
msgstr "Üst"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1098,11 +1098,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "Нижній"
|
msgstr "Нижній"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "Верхній"
|
msgstr "Верхній"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
@ -1096,11 +1096,19 @@ msgctxt "lazarusidestrconsts.liscsbottom"
|
|||||||
msgid "Bottom"
|
msgid "Bottom"
|
||||||
msgstr "底部"
|
msgstr "底部"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsdown
|
||||||
|
msgid "Page down"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscstop
|
#: idedebuggerstringconstants.liscstop
|
||||||
msgctxt "lazarusidestrconsts.liscstop"
|
msgctxt "lazarusidestrconsts.liscstop"
|
||||||
msgid "Top"
|
msgid "Top"
|
||||||
msgstr "上部"
|
msgstr "上部"
|
||||||
|
|
||||||
|
#: idedebuggerstringconstants.liscsup
|
||||||
|
msgid "Page up"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: idedebuggerstringconstants.liscurrent
|
#: idedebuggerstringconstants.liscurrent
|
||||||
msgctxt "lazarusidestrconsts.liscurrent"
|
msgctxt "lazarusidestrconsts.liscurrent"
|
||||||
msgid "Current"
|
msgid "Current"
|
||||||
|
Loading…
Reference in New Issue
Block a user