mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2026-01-04 01:22:46 +01:00
IDE: Move units to IdeDebugger package.
This commit is contained in:
parent
2972581f05
commit
048aa12384
@ -263,7 +263,8 @@ type
|
||||
function GetFullFilename(const AUnitinfo: TDebuggerUnitInfo; out Filename: string;
|
||||
AskUserIfNotFound: Boolean): Boolean; override;
|
||||
function GetFullFilename(var Filename: string; AskUserIfNotFound: Boolean): Boolean; override;
|
||||
procedure JumpToUnitSource(AnUnitInfo: TDebuggerUnitInfo; ALine: Integer); override;
|
||||
procedure JumpToUnitSource(AFileName: String; ALine: Integer; AMapLineFromDebug: Boolean = True); override;
|
||||
procedure JumpToUnitSource(AnUnitInfo: TDebuggerUnitInfo; ALine: Integer; AMapLineFromDebug: Boolean = True); override;
|
||||
|
||||
function DoCreateBreakPoint(const AFilename: string; ALine: integer;
|
||||
WarnIfNoDebugger: boolean): TModalResult; override;
|
||||
@ -974,14 +975,35 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TDebugManager.JumpToUnitSource(AFileName: String; ALine: Integer;
|
||||
AMapLineFromDebug: Boolean);
|
||||
var
|
||||
ok: Boolean;
|
||||
JmpFlags: TJumpToCodePosFlags;
|
||||
begin
|
||||
debugln(DBG_LOCATION_INFO, ['JumpToUnitSource Filename =', AFileName ]);
|
||||
// avoid any process-messages, so this proc can not be re-entered (avoid opening one files many times)
|
||||
LockCommandProcessing;
|
||||
try
|
||||
ok := false;
|
||||
JmpFlags := [jfAddJumpPoint, jfFocusEditor, jfMarkLine, jfSearchVirtualFullPath];
|
||||
if AMapLineFromDebug then
|
||||
JmpFlags := JmpFlags + [jfMapLineFromDebug];
|
||||
if FilenameIsAbsolute(AFilename) then
|
||||
ok := MainIDEInterface.DoJumpToSourcePosition(AFilename, 0, ALine, 0, JmpFlags) = mrOK;
|
||||
if not ok then
|
||||
MainIDEInterface.DoJumpToSourcePosition(AFilename, 0, ALine, 0, JmpFlags+[jfDoNotExpandFilename]);
|
||||
finally
|
||||
UnLockCommandProcessing;
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TDebugManager.JumpToUnitSource(AnUnitInfo: TDebuggerUnitInfo;
|
||||
ALine: Integer);
|
||||
const
|
||||
JmpFlags: TJumpToCodePosFlags =
|
||||
[jfAddJumpPoint, jfFocusEditor, jfMarkLine, jfMapLineFromDebug, jfSearchVirtualFullPath];
|
||||
ALine: Integer; AMapLineFromDebug: Boolean);
|
||||
var
|
||||
Filename: String;
|
||||
ok: Boolean;
|
||||
JmpFlags: TJumpToCodePosFlags;
|
||||
begin
|
||||
if AnUnitInfo = nil then exit;
|
||||
debugln(DBG_LOCATION_INFO, ['JumpToUnitSource AnUnitInfo=', AnUnitInfo.DebugText ]);
|
||||
@ -997,6 +1019,9 @@ begin
|
||||
ok := false;
|
||||
if ALine <= 0 then
|
||||
ALine := AnUnitInfo.SrcLine;
|
||||
JmpFlags := [jfAddJumpPoint, jfFocusEditor, jfMarkLine, jfSearchVirtualFullPath];
|
||||
if AMapLineFromDebug then
|
||||
JmpFlags := JmpFlags + [jfMapLineFromDebug];
|
||||
if FilenameIsAbsolute(Filename) then
|
||||
ok := MainIDEInterface.DoJumpToSourcePosition(Filename, 0, ALine, 0, JmpFlags) = mrOK;
|
||||
if not ok then
|
||||
|
||||
@ -1432,12 +1432,6 @@
|
||||
<HasResources Value="True"/>
|
||||
<UnitName Value="AssemblerDlg"/>
|
||||
</Unit>
|
||||
<Unit>
|
||||
<Filename Value="../debugger/breakpointsdlg.pp"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<HasResources Value="True"/>
|
||||
<UnitName Value="BreakPointsDlg"/>
|
||||
</Unit>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
|
||||
@ -67,8 +67,6 @@ resourcestring
|
||||
lisNew = 'New';
|
||||
lisClose = 'Close';
|
||||
lisBtnClose = '&Close';
|
||||
lisBreak = 'Break';
|
||||
lisMenuBreak = '&Break';
|
||||
lisExit = 'Exit';
|
||||
lisQuit = 'Quit';
|
||||
lisBtnQuit = '&Quit';
|
||||
@ -441,7 +439,6 @@ resourcestring
|
||||
lisMenuViewComponentPalette = 'Component Palette';
|
||||
lisMenuDebugWindows = 'Debug Windows';
|
||||
lisMenuViewWatches = 'Watches';
|
||||
lisMenuViewBreakPoints = 'BreakPoints';
|
||||
lisMenuViewLocalVariables = 'Local Variables';
|
||||
lisMenuViewPseudoTerminal = 'Console In/Output';
|
||||
lisMenuViewRegisters = 'Registers';
|
||||
|
||||
@ -176,7 +176,8 @@ type
|
||||
function GetFullFilename(var Filename: string; AskUserIfNotFound: Boolean): Boolean; virtual; abstract;
|
||||
|
||||
procedure EvaluateModify(const AExpression: String; AWatch: TWatch = nil); virtual; abstract;
|
||||
procedure JumpToUnitSource(AnUnitInfo: TDebuggerUnitInfo; ALine: Integer); virtual; abstract;
|
||||
procedure JumpToUnitSource(AFileName: String; ALine: Integer; AMapLineFromDebug: Boolean = True); virtual; abstract;
|
||||
procedure JumpToUnitSource(AnUnitInfo: TDebuggerUnitInfo; ALine: Integer; AMapLineFromDebug: Boolean = True); virtual; abstract;
|
||||
|
||||
procedure Inspect(const AExpression: String; AWatch: TWatch = nil); virtual; abstract;
|
||||
|
||||
|
||||
@ -38,12 +38,11 @@ unit BreakPointsDlg;
|
||||
interface
|
||||
|
||||
uses
|
||||
|
||||
Classes, SysUtils, LazFileUtils, Forms, Controls, Dialogs,
|
||||
IDEWindowIntf, Menus, ComCtrls, Debugger, DebuggerDlg, ActnList,
|
||||
IDEImagesIntf, DbgIntfDebuggerBase, DbgIntfMiscClasses,
|
||||
BaseDebugManager, IdeDebuggerStringConstants, IdeIntfStrConsts,
|
||||
// IDE
|
||||
LazarusIDEStrConsts, SourceEditor, MainBase, MainIntf;
|
||||
BaseDebugManager, IdeDebuggerStringConstants, IdeIntfStrConsts, SrcEditorIntf;
|
||||
|
||||
type
|
||||
TBreakPointsDlgState = (
|
||||
@ -389,11 +388,11 @@ procedure TBreakPointsDlg.BreakpointsDlgCREATE(Sender: TObject);
|
||||
begin
|
||||
Caption:= lisMenuViewBreakPoints;
|
||||
lvBreakPoints.Align:=alClient;
|
||||
lvBreakPoints.Columns[0].Caption:= lisOIPState;
|
||||
lvBreakPoints.Columns[0].Caption:= lisBrkPointState;
|
||||
lvBreakPoints.Columns[1].Caption:= lisFilenameAddress;
|
||||
lvBreakPoints.Columns[2].Caption:= lisLineLength;
|
||||
lvBreakPoints.Columns[3].Caption:= lisCondition;
|
||||
lvBreakPoints.Columns[4].Caption:= lisLazBuildABOAction;
|
||||
lvBreakPoints.Columns[4].Caption:= lisBrkPointAction;
|
||||
lvBreakPoints.Columns[5].Caption:= lisPassCount;
|
||||
lvBreakPoints.Columns[6].Caption:= lisGroup;
|
||||
actShow.Caption := lisViewSource;
|
||||
@ -504,11 +503,11 @@ end;
|
||||
procedure TBreakPointsDlg.actAddSourceBPExecute(Sender: TObject);
|
||||
var
|
||||
NewBreakpoint: TIDEBreakPoint;
|
||||
SrcEdit: TSourceEditor;
|
||||
SrcEdit: TSourceEditorInterface;
|
||||
begin
|
||||
SrcEdit := SourceEditorManager.GetActiveSE;
|
||||
SrcEdit := SourceEditorManagerIntf.ActiveEditor;
|
||||
if SrcEdit <> nil then
|
||||
NewBreakpoint := BreakPoints.Add(SrcEdit.FileName, SrcEdit.CurrentCursorYLine, True)
|
||||
NewBreakpoint := BreakPoints.Add(SrcEdit.FileName, SrcEdit.CursorTextXY.Y, True)
|
||||
else
|
||||
NewBreakpoint := BreakPoints.Add('', 0, True);
|
||||
if DebugBoss.ShowBreakPointProperties(NewBreakpoint) = mrOk then begin
|
||||
@ -1006,8 +1005,7 @@ begin
|
||||
if CurItem=nil then exit;
|
||||
CurBreakPoint:=TIDEBreakPoint(CurItem.Data);
|
||||
if CurBreakPoint.Kind = bpkSource then
|
||||
MainIDE.DoJumpToSourcePosition(CurBreakPoint.Source, 0, CurBreakPoint.Line, 0,
|
||||
[jfAddJumpPoint, jfFocusEditor, jfMarkLine, jfSearchVirtualFullPath]);
|
||||
DebugBoss.JumpToUnitSource(CurBreakPoint.Source, CurBreakPoint.Line, False);
|
||||
end;
|
||||
|
||||
procedure TBreakPointsDlg.ShowProperties;
|
||||
@ -16,7 +16,7 @@ uses
|
||||
DbgIntfDebuggerBase,
|
||||
// IDE
|
||||
BreakPropertyDlgGroups, DebuggerDlg, Debugger, BaseDebugManager,
|
||||
IdeDebuggerStringConstants, InputHistory, IDEProcs, EnvironmentOpts, RecentListProcs;
|
||||
IdeDebuggerStringConstants, InputHistory, EnvironmentOpts, RecentListProcs;
|
||||
|
||||
type
|
||||
|
||||
@ -46,7 +46,7 @@ uses
|
||||
// DebuggerIntf
|
||||
DbgIntfDebuggerBase, LazClasses, LazDebuggerIntf, LazDebuggerIntfBaseTypes,
|
||||
// IDE
|
||||
BaseDebugManager, InputHistory, IDEProcs, Debugger,
|
||||
BaseDebugManager, InputHistory, Debugger,
|
||||
IdeDebuggerWatchResPrinter, IdeDebuggerWatchResult, IdeDebuggerOpts,
|
||||
IdeDebuggerBackendValueConv, WatchInspectToolbar, DebuggerDlg,
|
||||
IdeDebuggerStringConstants, IdeDebuggerBase, EnvironmentOpts, RecentListProcs;
|
||||
@ -158,6 +158,22 @@
|
||||
<Filename Value="debugattachdialog.pas"/>
|
||||
<UnitName Value="DebugAttachDialog"/>
|
||||
</Item>
|
||||
<Item>
|
||||
<Filename Value="breakpropertydlg.pas"/>
|
||||
<UnitName Value="BreakPropertyDlg"/>
|
||||
</Item>
|
||||
<Item>
|
||||
<Filename Value="evaluatedlg.pp"/>
|
||||
<UnitName Value="EvaluateDlg"/>
|
||||
</Item>
|
||||
<Item>
|
||||
<Filename Value="inspectdlg.pas"/>
|
||||
<UnitName Value="InspectDlg"/>
|
||||
</Item>
|
||||
<Item>
|
||||
<Filename Value="breakpointsdlg.pp"/>
|
||||
<UnitName Value="BreakPointsDlg"/>
|
||||
</Item>
|
||||
</Files>
|
||||
<i18n>
|
||||
<EnableI18N Value="True"/>
|
||||
|
||||
@ -16,7 +16,8 @@ uses
|
||||
WatchInspectToolbar, BaseDebugManager, WatchPropertyDlg, DebuggerDlg,
|
||||
WatchesDlg, CallStackDlg, LocalsDlg, ThreadDlg, BreakPropertyDlgGroups,
|
||||
HistoryDlg, PseudoTerminalDlg, RegistersDlg, DebugOutputForm, ExceptionDlg,
|
||||
FeedbackDlg, DebugAttachDialog, LazarusPackageIntf;
|
||||
FeedbackDlg, DebugAttachDialog, BreakPropertyDlg, EvaluateDlg, InspectDlg,
|
||||
BreakPointsDlg, LazarusPackageIntf;
|
||||
|
||||
implementation
|
||||
|
||||
|
||||
@ -275,6 +275,9 @@ resourcestring
|
||||
lisGroupSetNone = 'Clear group(s)';
|
||||
lisGroupEmptyDelete = 'No more breakpoints are assigned to group "%s", delete it?';
|
||||
lisGroupEmptyDeleteMore = '%sThere are %d more empty groups, delete all?';
|
||||
lisMenuViewBreakPoints = 'BreakPoints';
|
||||
lisBrkPointState = 'State';
|
||||
lisBrkPointAction = 'Action';
|
||||
|
||||
// Debug Output Dialog
|
||||
lisCopyAllOutputClipboard = 'Copy all output to clipboard';
|
||||
|
||||
@ -38,7 +38,7 @@ uses
|
||||
DbgIntfDebuggerBase, DbgIntfBaseTypes, LazClasses, SpinEx, LazDebuggerIntf,
|
||||
LazDebuggerIntfBaseTypes,
|
||||
// IDE
|
||||
BaseDebugManager, InputHistory, IDEProcs, Debugger,
|
||||
BaseDebugManager, InputHistory, Debugger,
|
||||
IdeDebuggerWatchResPrinter, IdeDebuggerWatchResult, IdeDebuggerWatchResUtils,
|
||||
IdeDebuggerBase, ArrayNavigationFrame, IdeDebuggerOpts,
|
||||
IdeDebuggerBackendValueConv, WatchInspectToolbar, DebuggerDlg,
|
||||
@ -78,6 +78,7 @@ msgid "Unsigned"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
@ -453,6 +454,16 @@ msgstr ""
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Staat"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr ""
|
||||
@ -952,6 +963,10 @@ msgstr ""
|
||||
msgid "&Help"
|
||||
msgstr "&Help"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Breekpunte"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr ""
|
||||
|
||||
@ -79,6 +79,7 @@ msgid "Unsigned"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
@ -456,6 +457,16 @@ msgstr ""
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr ""
|
||||
@ -954,6 +965,10 @@ msgstr ""
|
||||
msgid "&Help"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr ""
|
||||
@ -1064,6 +1079,7 @@ msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.listhreadsstate
|
||||
msgctxt "idedebuggerstringconstants.listhreadsstate"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -80,6 +80,7 @@ msgid "Unsigned"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
@ -461,6 +462,16 @@ msgstr ""
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Estat"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr ""
|
||||
@ -963,6 +974,10 @@ msgstr ""
|
||||
msgid "&Help"
|
||||
msgstr "A&juda"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Punts de ruptura"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Pila de les Crides"
|
||||
|
||||
@ -90,8 +90,10 @@ msgid "Unsigned"
|
||||
msgstr "Bez znaménka"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Akce"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -479,6 +481,16 @@ msgstr "Přerušit"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Vlastnosti bodů zastavení"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Akce"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Stav"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Zásobník není vyhodnocen"
|
||||
@ -988,6 +1000,10 @@ msgstr "&Přerušit"
|
||||
msgid "&Help"
|
||||
msgstr "&Nápověda"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Body přerušení"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Zásobník volání"
|
||||
|
||||
@ -89,8 +89,10 @@ msgid "Unsigned"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Aktion"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -477,6 +479,16 @@ msgstr "Halt"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Haltepunkt-Eigenschaften"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Aktion"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Stack nicht ausgewertet"
|
||||
@ -985,6 +997,10 @@ msgstr ""
|
||||
msgid "&Help"
|
||||
msgstr "&Hilfe"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Haltepunkte"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Aufrufstack"
|
||||
|
||||
@ -90,8 +90,10 @@ msgid "Unsigned"
|
||||
msgstr "Sin firmar"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Acción"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -483,6 +485,16 @@ msgstr "Interrumpir"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Propiedades del punto de interrupción"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Acción"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Pila (stack) no evaluada"
|
||||
@ -995,6 +1007,10 @@ msgstr "&Break"
|
||||
msgid "&Help"
|
||||
msgstr "A&yuda"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Puntos de Interrupción"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Pila (stack) de Llamadas"
|
||||
|
||||
@ -89,8 +89,10 @@ msgid "Unsigned"
|
||||
msgstr "Etumerkitön"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Toiminta"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -475,6 +477,16 @@ msgstr "Keskeytä"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Keskeytyskohdan ominaisuudet"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Toiminta"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Tila"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Pinoa ei arvioitu"
|
||||
@ -984,6 +996,10 @@ msgstr "&Keskeytä"
|
||||
msgid "&Help"
|
||||
msgstr "&Ohje"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Keskeytyskohdat"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Kutsupino"
|
||||
|
||||
@ -90,8 +90,10 @@ msgid "Unsigned"
|
||||
msgstr "Non signé"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Action"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -480,6 +482,16 @@ msgstr "Pause"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Propriétés du point d'arrêt"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Action"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "État"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Pile non évaluée"
|
||||
@ -988,6 +1000,10 @@ msgstr "&Arrêt"
|
||||
msgid "&Help"
|
||||
msgstr "&Aide"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Points d'arrêt"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Pile d'appels"
|
||||
|
||||
@ -89,8 +89,10 @@ msgid "Unsigned"
|
||||
msgstr "ללא סימן"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "פעולה"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -477,6 +479,16 @@ msgstr "שבור"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "תכונות נקודת עצירה"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "פעולה"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "מצב"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr ""
|
||||
@ -992,6 +1004,10 @@ msgstr ""
|
||||
msgid "&Help"
|
||||
msgstr "עזרה&"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "נקודות עצירה"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "קרא למחסנית"
|
||||
|
||||
@ -90,8 +90,10 @@ msgid "Unsigned"
|
||||
msgstr "Előjel nélküli"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Művelet"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -479,6 +481,16 @@ msgstr "Megszakítás"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Töréspont tulajdonságai"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Művelet"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Állapot"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Verem nincs kiértékelve"
|
||||
@ -988,6 +1000,10 @@ msgstr "Megszakítás"
|
||||
msgid "&Help"
|
||||
msgstr "&Súgó"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Töréspontok"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Hívási verem"
|
||||
|
||||
@ -80,6 +80,7 @@ msgid "Unsigned"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
@ -463,6 +464,16 @@ msgstr ""
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Kondisi"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr ""
|
||||
@ -969,6 +980,10 @@ msgstr ""
|
||||
msgid "&Help"
|
||||
msgstr "&Panduan"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "BreakPoints"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Tumpukan Panggilan"
|
||||
|
||||
@ -90,8 +90,10 @@ msgid "Unsigned"
|
||||
msgstr "Senza segno"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Azione"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -483,6 +485,16 @@ msgstr "Divisione"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Proprietà del breakpoint"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Azione"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Stato"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Stack non calcolato"
|
||||
@ -994,6 +1006,10 @@ msgstr ""
|
||||
msgid "&Help"
|
||||
msgstr "&Aiuto"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Breakpoint"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Stack di chiamata"
|
||||
|
||||
@ -90,8 +90,10 @@ msgid "Unsigned"
|
||||
msgstr "未署名"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "アクション"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -481,6 +483,16 @@ msgstr "ブレーク"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "ブレークポイントプロパティ"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "アクション"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "状態"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "評価されていないスタック"
|
||||
@ -992,6 +1004,10 @@ msgstr "ブレーク(&B)"
|
||||
msgid "&Help"
|
||||
msgstr "ヘルプ(&H)"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "ブレークポイント"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "呼び出しスタック"
|
||||
|
||||
@ -90,8 +90,10 @@ msgid "Unsigned"
|
||||
msgstr "Be ženklo"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Veiksmas"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -481,6 +483,16 @@ msgstr "Stabdyti"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Stabdos tašo savybės"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Veiksmas"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Būsena"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Dėklas neįvertintas"
|
||||
@ -992,6 +1004,10 @@ msgstr "&Pertraukti"
|
||||
msgid "&Help"
|
||||
msgstr "Žin&ynas"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Stabdos taškai"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Kreipčių dėklas"
|
||||
|
||||
@ -80,6 +80,7 @@ msgid "Unsigned"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
@ -463,6 +464,16 @@ msgstr ""
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr ""
|
||||
@ -967,6 +978,10 @@ msgstr ""
|
||||
msgid "&Help"
|
||||
msgstr "&Help"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Breekpunten"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Call Stack"
|
||||
|
||||
@ -89,8 +89,10 @@ msgid "Unsigned"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Działanie"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -478,6 +480,16 @@ msgstr "Przerwij"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Właściwości pułapki"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Działanie"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Stan"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
#, fuzzy
|
||||
msgid "Stack not evaluated"
|
||||
@ -1000,6 +1012,10 @@ msgstr "Przerwij"
|
||||
msgid "&Help"
|
||||
msgstr "Pomo&c"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Pułapki"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Stos wywołań"
|
||||
|
||||
@ -463,6 +463,16 @@ msgstr ""
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr ""
|
||||
@ -971,6 +981,10 @@ msgstr ""
|
||||
msgid "&Help"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr ""
|
||||
|
||||
@ -483,6 +483,16 @@ msgstr "Interromper"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Propriedades Pontos de Paradas"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Ação"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Pilha não avaliada"
|
||||
@ -991,6 +1001,10 @@ msgstr "&Interromper"
|
||||
msgid "&Help"
|
||||
msgstr "Aj&uda"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Pontos de parada"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Chamada de pilha"
|
||||
|
||||
@ -475,6 +475,16 @@ msgstr "Останов"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Параметры точки останова"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Действие"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Состояние"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Стек не определён"
|
||||
@ -983,6 +993,10 @@ msgstr "&Остановить"
|
||||
msgid "&Help"
|
||||
msgstr "&Справка"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Точки останова"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Стек вызовов"
|
||||
|
||||
@ -88,8 +88,10 @@ msgid "Unsigned"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Akcia"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -476,6 +478,16 @@ msgstr "Zalomiť"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr ""
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Akcia"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Stav"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr ""
|
||||
@ -982,6 +994,10 @@ msgstr ""
|
||||
msgid "&Help"
|
||||
msgstr "&Pomoc"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Body prerušenia"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Zásobník volaní"
|
||||
|
||||
@ -89,8 +89,10 @@ msgid "Unsigned"
|
||||
msgstr "İmzasız"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Aksiyon"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -476,6 +478,16 @@ msgstr "Kırılma"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Kesme Noktası Özellikleri"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Aksiyon"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Durum"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Yığın değerlendirilmedi"
|
||||
@ -983,6 +995,10 @@ msgstr "Kırılmalar"
|
||||
msgid "&Help"
|
||||
msgstr "&Yardım"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Kırılma noktaları"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Çağrı yığını"
|
||||
|
||||
@ -90,8 +90,10 @@ msgid "Unsigned"
|
||||
msgstr "Непідписаний"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "Дія"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -480,6 +482,16 @@ msgstr "Перервати"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "Властивості точки зупинки"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "Дія"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "Стан"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "Стек не обчислений"
|
||||
@ -988,6 +1000,10 @@ msgstr "&Перервати"
|
||||
msgid "&Help"
|
||||
msgstr "&Довідка"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Точки зупину"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "Стек викликів"
|
||||
|
||||
@ -90,8 +90,10 @@ msgid "Unsigned"
|
||||
msgstr "Unsigned(无符号整型)"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaction
|
||||
#, fuzzy
|
||||
msgctxt "idedebuggerstringconstants.dlgbackconvoptaction"
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
msgstr "动作"
|
||||
|
||||
#: idedebuggerstringconstants.dlgbackconvoptaddnew
|
||||
msgid "Add"
|
||||
@ -480,6 +482,16 @@ msgstr "中断"
|
||||
msgid "Breakpoint Properties"
|
||||
msgstr "断点属性"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointaction
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointaction"
|
||||
msgid "Action"
|
||||
msgstr "动作"
|
||||
|
||||
#: idedebuggerstringconstants.lisbrkpointstate
|
||||
msgctxt "idedebuggerstringconstants.lisbrkpointstate"
|
||||
msgid "State"
|
||||
msgstr "状态"
|
||||
|
||||
#: idedebuggerstringconstants.liscallstacknotevaluated
|
||||
msgid "Stack not evaluated"
|
||||
msgstr "栈(Stack)未评估(evaluated)"
|
||||
@ -991,6 +1003,10 @@ msgstr "中断(Break)(&B)"
|
||||
msgid "&Help"
|
||||
msgstr "帮助(&H)"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "断点"
|
||||
|
||||
#: idedebuggerstringconstants.lismenuviewcallstack
|
||||
msgid "Call Stack"
|
||||
msgstr "调用栈"
|
||||
|
||||
@ -13585,10 +13585,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Breekpunte"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13536,10 +13536,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13935,10 +13935,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Punts de ruptura"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13646,10 +13646,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Assembler"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Body přerušení"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13666,10 +13666,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Assembler"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Haltepunkte"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13930,10 +13930,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Ensamblador"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Puntos de Interrupción"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13507,10 +13507,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Keskeytyskohdat"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13576,10 +13576,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Assembleur"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Points d'arrêt"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -14392,10 +14392,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Assembler"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "נקודות עצירה"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
#, fuzzy
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
|
||||
@ -13589,10 +13589,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Assembler"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Töréspontok"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -14114,10 +14114,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "BreakPoints"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
#, fuzzy
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
|
||||
@ -13833,10 +13833,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Assembler"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Breakpoint"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13737,10 +13737,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "アセンブラ"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "ブレークポイント"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13767,10 +13767,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Asembleris"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Stabdos taškai"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -14030,10 +14030,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Breekpunten"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13749,10 +13749,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Asembler"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Pułapki"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13481,10 +13481,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13596,10 +13596,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Assembler"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Pontos de parada"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13551,10 +13551,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Ассемблер"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Точки останова"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13770,10 +13770,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr ""
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Body prerušenia"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13499,10 +13499,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Assembler"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Kırılma noktaları"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13587,10 +13587,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "Асемблер"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "Точки зупину"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
@ -13599,10 +13599,6 @@ msgctxt "lazarusidestrconsts.lismenuviewassembler"
|
||||
msgid "Assembler"
|
||||
msgstr "汇编"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewbreakpoints
|
||||
msgid "BreakPoints"
|
||||
msgstr "断点"
|
||||
|
||||
#: lazarusidestrconsts.lismenuviewcodebrowser
|
||||
msgctxt "lazarusidestrconsts.lismenuviewcodebrowser"
|
||||
msgid "Code Browser"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user