mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-20 15:39:18 +02:00
implemented Hints for TPropertyEditor
git-svn-id: trunk@5373 -
This commit is contained in:
parent
a46af145b1
commit
3a41138231
@ -182,8 +182,8 @@ type
|
|||||||
FIndent:integer;
|
FIndent:integer;
|
||||||
FBackgroundColor:TColor;
|
FBackgroundColor:TColor;
|
||||||
FNameFont,FDefaultValueFont,FValueFont:TFont;
|
FNameFont,FDefaultValueFont,FValueFont:TFont;
|
||||||
FCurrentEdit:TWinControl; // nil or ValueEdit or ValueComboBox
|
FCurrentEdit: TWinControl; // nil or ValueEdit or ValueComboBox
|
||||||
FCurrentButton:TWinControl; // nil or ValueButton
|
FCurrentButton: TWinControl; // nil or ValueButton
|
||||||
FCurrentEditorLookupRoot: TPersistent;
|
FCurrentEditorLookupRoot: TPersistent;
|
||||||
FDragging:boolean;
|
FDragging:boolean;
|
||||||
FOnModified: TNotifyEvent;
|
FOnModified: TNotifyEvent;
|
||||||
@ -306,6 +306,7 @@ type
|
|||||||
function CanEditRowValue: boolean;
|
function CanEditRowValue: boolean;
|
||||||
property CurrentEditValue: string read GetCurrentEditValue
|
property CurrentEditValue: string read GetCurrentEditValue
|
||||||
write SetCurrentEditValue;
|
write SetCurrentEditValue;
|
||||||
|
function GetHintTypeAt(RowIndex: integer; X: integer): TPropEditHint;
|
||||||
|
|
||||||
property OnModified: TNotifyEvent read FOnModified write FOnModified;
|
property OnModified: TNotifyEvent read FOnModified write FOnModified;
|
||||||
procedure SetBounds(aLeft,aTop,aWidth,aHeight:integer); override;
|
procedure SetBounds(aLeft,aTop,aWidth,aHeight:integer); override;
|
||||||
@ -1190,6 +1191,28 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TOIPropertyGrid.GetHintTypeAt(RowIndex: integer; X: integer
|
||||||
|
): TPropEditHint;
|
||||||
|
var
|
||||||
|
IconX: integer;
|
||||||
|
begin
|
||||||
|
Result:=pehNone;
|
||||||
|
if (RowIndex<0) or (RowIndex>=RowCount) then exit;
|
||||||
|
if SplitterX>=X then begin
|
||||||
|
if (FCurrentButton<>nil)
|
||||||
|
and (FCurrentButton.Left<=X) then
|
||||||
|
Result:=pehEditButton
|
||||||
|
else
|
||||||
|
Result:=pehValue;
|
||||||
|
end else begin
|
||||||
|
IconX:=GetTreeIconX(RowIndex);
|
||||||
|
if IconX+Indent>X then
|
||||||
|
Result:=pehTree
|
||||||
|
else
|
||||||
|
Result:=pehName;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TOIPropertyGrid.MouseDown(Button:TMouseButton; Shift:TShiftState;
|
procedure TOIPropertyGrid.MouseDown(Button:TMouseButton; Shift:TShiftState;
|
||||||
X,Y:integer);
|
X,Y:integer);
|
||||||
begin
|
begin
|
||||||
@ -1724,8 +1747,8 @@ var
|
|||||||
Position : TPoint;
|
Position : TPoint;
|
||||||
Index: integer;
|
Index: integer;
|
||||||
PointedRow:TOIpropertyGridRow;
|
PointedRow:TOIpropertyGridRow;
|
||||||
TypeKind : TTypeKind;
|
|
||||||
Window: TWinControl;
|
Window: TWinControl;
|
||||||
|
HintType: TPropEditHint;
|
||||||
begin
|
begin
|
||||||
// ToDo: use LCL hintsystem
|
// ToDo: use LCL hintsystem
|
||||||
FHintTimer.Enabled := False;
|
FHintTimer.Enabled := False;
|
||||||
@ -1750,29 +1773,9 @@ begin
|
|||||||
PointedRow:=Rows[Index];
|
PointedRow:=Rows[Index];
|
||||||
if Assigned(PointedRow) then
|
if Assigned(PointedRow) then
|
||||||
Begin
|
Begin
|
||||||
if Assigned(PointedRow.Editor) then
|
if Assigned(PointedRow.Editor) then begin
|
||||||
AHint := PointedRow.Editor.GetName;
|
HintType := GetHintTypeAt(Index,Position.X);
|
||||||
|
AHint := PointedRow.Editor.GetHint(HintType,Position.X,Position.Y);
|
||||||
AHint := AHint + #10+oisValue+PointedRow.LastPaintedValue;
|
|
||||||
TypeKind := PointedRow.Editor.GetPropType^.Kind;
|
|
||||||
case TypeKind of
|
|
||||||
tkInteger : AHint := AHint + #10'Integer';
|
|
||||||
tkInt64 : AHint := AHint + #10'Int64';
|
|
||||||
tkBool : AHint := AHint + #10'Boolean';
|
|
||||||
tkEnumeration : AHint := AHint + #10'Enumeration';
|
|
||||||
tkChar,tkWChar : AHint := AHint + #10'Char';
|
|
||||||
tkUnknown : AHint := AHint + #10'Unknown';
|
|
||||||
tkObject : AHint := AHint + #10'Object';
|
|
||||||
tkClass : AHint := AHint + #10'Class';
|
|
||||||
tkQWord : AHint := AHint + #10'Word';
|
|
||||||
tkString,tkLString,tkAString,tkWString : AHint := AHint + #10'String';
|
|
||||||
tkFloat : AHint := AHint + #10'Float';
|
|
||||||
tkSet : AHint := AHint + #10'Set';
|
|
||||||
tkMethod : AHint := AHint + #10'Method';
|
|
||||||
tkVariant : AHint := AHint + #10'Variant';
|
|
||||||
tkArray : AHint := AHint + #10'Array';
|
|
||||||
tkRecord : AHint := AHint + #10'Record';
|
|
||||||
tkInterface : AHint := AHint + #10'Interface';
|
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
@ -27,6 +27,17 @@ resourcestring
|
|||||||
oiscAdd = '&Add';
|
oiscAdd = '&Add';
|
||||||
oiscDelete = '&Delete';
|
oiscDelete = '&Delete';
|
||||||
oisUnknown = 'Unknown';
|
oisUnknown = 'Unknown';
|
||||||
|
oisObject = 'Object';
|
||||||
|
oisClass = 'Class';
|
||||||
|
oisWord = 'Word';
|
||||||
|
oisString = 'String';
|
||||||
|
oisFloat = 'Float';
|
||||||
|
oisSet = 'Set';
|
||||||
|
oisMethod = 'Method';
|
||||||
|
oisVariant = 'Variant';
|
||||||
|
oisArray = 'Array';
|
||||||
|
oisRecord = 'Record';
|
||||||
|
oisInterface = 'Interface';
|
||||||
|
|
||||||
oisProperties='Properties';
|
oisProperties='Properties';
|
||||||
oisEvents='Events';
|
oisEvents='Events';
|
||||||
@ -35,6 +46,11 @@ resourcestring
|
|||||||
|
|
||||||
// typeinfo
|
// typeinfo
|
||||||
oisValue = 'Value:';
|
oisValue = 'Value:';
|
||||||
|
oisInteger = 'Integer';
|
||||||
|
oisInt64 = 'Int64';
|
||||||
|
oisBoolean = 'Boolean';
|
||||||
|
oisEnumeration = 'Enumeration';
|
||||||
|
oisChar = 'Char';
|
||||||
|
|
||||||
|
|
||||||
// ListView items editor
|
// ListView items editor
|
||||||
|
@ -272,6 +272,14 @@ type
|
|||||||
TPropEditDrawStateType = (pedsSelected, pedsFocused, pedsInEdit,
|
TPropEditDrawStateType = (pedsSelected, pedsFocused, pedsInEdit,
|
||||||
pedsInComboList, pedsPainted);
|
pedsInComboList, pedsPainted);
|
||||||
TPropEditDrawState = set of TPropEditDrawStateType;
|
TPropEditDrawState = set of TPropEditDrawStateType;
|
||||||
|
|
||||||
|
TPropEditHint = (
|
||||||
|
pehNone,
|
||||||
|
pehTree,
|
||||||
|
pehName,
|
||||||
|
pehValue,
|
||||||
|
pehEditButton
|
||||||
|
);
|
||||||
|
|
||||||
TPropertyEditorHook = class;
|
TPropertyEditorHook = class;
|
||||||
|
|
||||||
@ -323,6 +331,7 @@ type
|
|||||||
procedure GetProperties(Proc: TGetPropEditProc); virtual;
|
procedure GetProperties(Proc: TGetPropEditProc); virtual;
|
||||||
function GetPropType: PTypeInfo;
|
function GetPropType: PTypeInfo;
|
||||||
function GetValue: ansistring; virtual;
|
function GetValue: ansistring; virtual;
|
||||||
|
function GetHint(HintType: TPropEditHint; x, y: integer): string; virtual;
|
||||||
function GetDefaultValue: ansistring; virtual;
|
function GetDefaultValue: ansistring; virtual;
|
||||||
function GetVisualValue: ansistring;
|
function GetVisualValue: ansistring;
|
||||||
procedure GetValues(Proc: TGetStringProc); virtual;
|
procedure GetValues(Proc: TGetStringProc); virtual;
|
||||||
@ -2138,6 +2147,38 @@ begin
|
|||||||
Result:=oisUnknown;
|
Result:=oisUnknown;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TPropertyEditor.GetHint(HintType: TPropEditHint; x, y: integer
|
||||||
|
): string;
|
||||||
|
var
|
||||||
|
TypeHint: String;
|
||||||
|
begin
|
||||||
|
Result:=GetName
|
||||||
|
+#13+oisValue+GetVisualValue;
|
||||||
|
case GetPropType^.Kind of
|
||||||
|
tkInteger : TypeHint:=oisInteger;
|
||||||
|
tkInt64 : TypeHint:=oisInt64;
|
||||||
|
tkBool : TypeHint:=oisBoolean;
|
||||||
|
tkEnumeration : TypeHint:=oisEnumeration;
|
||||||
|
tkChar, tkWChar : TypeHint:=oisChar;
|
||||||
|
tkUnknown : TypeHint:=oisUnknown;
|
||||||
|
tkObject : TypeHint:=oisObject;
|
||||||
|
tkClass : TypeHint:=oisClass;
|
||||||
|
tkQWord : TypeHint:=oisWord;
|
||||||
|
tkString, tkLString, tkAString, tkWString : TypeHint:=oisString;
|
||||||
|
tkFloat : TypeHint:=oisFloat;
|
||||||
|
tkSet : TypeHint:=oisSet;
|
||||||
|
tkMethod : TypeHint:=oisMethod;
|
||||||
|
tkVariant : TypeHint:=oisVariant;
|
||||||
|
tkArray : TypeHint:=oisArray;
|
||||||
|
tkRecord : TypeHint:=oisRecord;
|
||||||
|
tkInterface : TypeHint:=oisInterface;
|
||||||
|
else
|
||||||
|
TypeHint:='';
|
||||||
|
end;
|
||||||
|
if TypeHint<>'' then
|
||||||
|
Result:=Result+#13+TypeHint;
|
||||||
|
end;
|
||||||
|
|
||||||
function TPropertyEditor.GetDefaultValue: ansistring;
|
function TPropertyEditor.GetDefaultValue: ansistring;
|
||||||
begin
|
begin
|
||||||
if not (paHasDefaultValue in GetAttributes) then
|
if not (paHasDefaultValue in GetAttributes) then
|
||||||
|
@ -58,10 +58,26 @@ msgstr ""
|
|||||||
msgid "All files (*.*)|*.*"
|
msgid "All files (*.*)|*.*"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiscategory
|
#: objinspstrconsts:oiscategory
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccsilbtnclear
|
#: objinspstrconsts:sccsilbtnclear
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr "Netejar"
|
msgstr "Netejar"
|
||||||
@ -78,6 +94,10 @@ msgstr "Esborrar"
|
|||||||
msgid "Edit action list..."
|
msgid "Edit action list..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiserror
|
#: objinspstrconsts:oiserror
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -86,6 +106,10 @@ msgstr ""
|
|||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "Esdeveniments"
|
msgstr "Esdeveniments"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtimgindexcaption
|
#: objinspstrconsts:sccslvedtimgindexcaption
|
||||||
msgid "Image index"
|
msgid "Image index"
|
||||||
msgstr "Índex d'imatges"
|
msgstr "Índex d'imatges"
|
||||||
@ -94,6 +118,18 @@ msgstr "
|
|||||||
msgid "Image list editor"
|
msgid "Image list editor"
|
||||||
msgstr "Editor de llista d'imatges"
|
msgstr "Editor de llista d'imatges"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtlabcaption
|
#: objinspstrconsts:sccslvedtlabcaption
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr "Etiqueta"
|
msgstr "Etiqueta"
|
||||||
@ -102,10 +138,18 @@ msgstr "Etiqueta"
|
|||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr "Editor de ListView"
|
msgstr "Editor de ListView"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtbtnadd
|
#: objinspstrconsts:sccslvedtbtnadd
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nou"
|
msgstr "Nou"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisobjectinspector
|
#: objinspstrconsts:oisobjectinspector
|
||||||
msgid "Object Inspector"
|
msgid "Object Inspector"
|
||||||
msgstr "Inspector d'objectes"
|
msgstr "Inspector d'objectes"
|
||||||
@ -114,10 +158,18 @@ msgstr "Inspector d'objectes"
|
|||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr "Propietats"
|
msgstr "Propietats"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisselectafile
|
#: objinspstrconsts:oisselectafile
|
||||||
msgid "Select a file"
|
msgid "Select a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oissettodefaultvalue
|
#: objinspstrconsts:oissettodefaultvalue
|
||||||
msgid "Set to default value"
|
msgid "Set to default value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -126,6 +178,10 @@ msgstr ""
|
|||||||
msgid "Set to default: %s"
|
msgid "Set to default: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:cesstringgrideditor2
|
#: objinspstrconsts:cesstringgrideditor2
|
||||||
msgid "StringGrid Editor"
|
msgid "StringGrid Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,3 +202,11 @@ msgstr ""
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
@ -58,10 +58,26 @@ msgstr ""
|
|||||||
msgid "All files (*.*)|*.*"
|
msgid "All files (*.*)|*.*"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiscategory
|
#: objinspstrconsts:oiscategory
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccsilbtnclear
|
#: objinspstrconsts:sccsilbtnclear
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -78,6 +94,10 @@ msgstr ""
|
|||||||
msgid "Edit action list..."
|
msgid "Edit action list..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiserror
|
#: objinspstrconsts:oiserror
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -86,6 +106,10 @@ msgstr ""
|
|||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "Events"
|
msgstr "Events"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtimgindexcaption
|
#: objinspstrconsts:sccslvedtimgindexcaption
|
||||||
msgid "Image index"
|
msgid "Image index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -94,6 +118,18 @@ msgstr ""
|
|||||||
msgid "Image list editor"
|
msgid "Image list editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtlabcaption
|
#: objinspstrconsts:sccslvedtlabcaption
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -102,10 +138,18 @@ msgstr ""
|
|||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtbtnadd
|
#: objinspstrconsts:sccslvedtbtnadd
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisobjectinspector
|
#: objinspstrconsts:oisobjectinspector
|
||||||
msgid "Object Inspector"
|
msgid "Object Inspector"
|
||||||
msgstr "Object Inspector"
|
msgstr "Object Inspector"
|
||||||
@ -114,10 +158,18 @@ msgstr "Object Inspector"
|
|||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr "Properties"
|
msgstr "Properties"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisselectafile
|
#: objinspstrconsts:oisselectafile
|
||||||
msgid "Select a file"
|
msgid "Select a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oissettodefaultvalue
|
#: objinspstrconsts:oissettodefaultvalue
|
||||||
msgid "Set to default value"
|
msgid "Set to default value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -126,6 +178,10 @@ msgstr ""
|
|||||||
msgid "Set to default: %s"
|
msgid "Set to default: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:cesstringgrideditor2
|
#: objinspstrconsts:cesstringgrideditor2
|
||||||
msgid "StringGrid Editor"
|
msgid "StringGrid Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,3 +202,11 @@ msgstr ""
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
@ -68,10 +68,26 @@ msgstr "Todo"
|
|||||||
msgid "All files (*.*)|*.*"
|
msgid "All files (*.*)|*.*"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiscategory
|
#: objinspstrconsts:oiscategory
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr "Categoría"
|
msgstr "Categoría"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccsilbtnclear
|
#: objinspstrconsts:sccsilbtnclear
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr "Limpiar"
|
msgstr "Limpiar"
|
||||||
@ -88,6 +104,10 @@ msgstr "Suprimir"
|
|||||||
msgid "Edit action list..."
|
msgid "Edit action list..."
|
||||||
msgstr "Editor de lista de acción..."
|
msgstr "Editor de lista de acción..."
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiserror
|
#: objinspstrconsts:oiserror
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Error"
|
msgstr "Error"
|
||||||
@ -96,6 +116,10 @@ msgstr "Error"
|
|||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "Eventos"
|
msgstr "Eventos"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtimgindexcaption
|
#: objinspstrconsts:sccslvedtimgindexcaption
|
||||||
msgid "Image index"
|
msgid "Image index"
|
||||||
msgstr "Indice de imagen"
|
msgstr "Indice de imagen"
|
||||||
@ -104,6 +128,18 @@ msgstr "Indice de imagen"
|
|||||||
msgid "Image list editor"
|
msgid "Image list editor"
|
||||||
msgstr "Editor de lista de imagen"
|
msgstr "Editor de lista de imagen"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtlabcaption
|
#: objinspstrconsts:sccslvedtlabcaption
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr "Etiqueta"
|
msgstr "Etiqueta"
|
||||||
@ -112,10 +148,18 @@ msgstr "Etiqueta"
|
|||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr "Editor de ListView"
|
msgstr "Editor de ListView"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtbtnadd
|
#: objinspstrconsts:sccslvedtbtnadd
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nuevo"
|
msgstr "Nuevo"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisobjectinspector
|
#: objinspstrconsts:oisobjectinspector
|
||||||
msgid "Object Inspector"
|
msgid "Object Inspector"
|
||||||
msgstr "Inspector de Objetos"
|
msgstr "Inspector de Objetos"
|
||||||
@ -124,10 +168,18 @@ msgstr "Inspector de Objetos"
|
|||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr "Propiedades"
|
msgstr "Propiedades"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisselectafile
|
#: objinspstrconsts:oisselectafile
|
||||||
msgid "Select a file"
|
msgid "Select a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oissettodefaultvalue
|
#: objinspstrconsts:oissettodefaultvalue
|
||||||
msgid "Set to default value"
|
msgid "Set to default value"
|
||||||
msgstr "Establecer valor por defecto"
|
msgstr "Establecer valor por defecto"
|
||||||
@ -136,6 +188,10 @@ msgstr "Establecer valor por defecto"
|
|||||||
msgid "Set to default: %s"
|
msgid "Set to default: %s"
|
||||||
msgstr "Establecer por defecto: %s"
|
msgstr "Establecer por defecto: %s"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:cesstringgrideditor2
|
#: objinspstrconsts:cesstringgrideditor2
|
||||||
msgid "StringGrid Editor"
|
msgid "StringGrid Editor"
|
||||||
msgstr "Editor de StringGrid"
|
msgstr "Editor de StringGrid"
|
||||||
@ -156,3 +212,11 @@ msgstr "Desconocido"
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr "Valor:"
|
msgstr "Valor:"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
@ -58,10 +58,26 @@ msgstr ""
|
|||||||
msgid "All files (*.*)|*.*"
|
msgid "All files (*.*)|*.*"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiscategory
|
#: objinspstrconsts:oiscategory
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccsilbtnclear
|
#: objinspstrconsts:sccsilbtnclear
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -78,6 +94,10 @@ msgstr ""
|
|||||||
msgid "Edit action list..."
|
msgid "Edit action list..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiserror
|
#: objinspstrconsts:oiserror
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -86,6 +106,10 @@ msgstr ""
|
|||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "Tapahtumat"
|
msgstr "Tapahtumat"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtimgindexcaption
|
#: objinspstrconsts:sccslvedtimgindexcaption
|
||||||
msgid "Image index"
|
msgid "Image index"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -94,6 +118,18 @@ msgstr ""
|
|||||||
msgid "Image list editor"
|
msgid "Image list editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtlabcaption
|
#: objinspstrconsts:sccslvedtlabcaption
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -102,10 +138,18 @@ msgstr ""
|
|||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtbtnadd
|
#: objinspstrconsts:sccslvedtbtnadd
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisobjectinspector
|
#: objinspstrconsts:oisobjectinspector
|
||||||
msgid "Object Inspector"
|
msgid "Object Inspector"
|
||||||
msgstr "Komponenttimuokkain"
|
msgstr "Komponenttimuokkain"
|
||||||
@ -114,10 +158,18 @@ msgstr "Komponenttimuokkain"
|
|||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr "Ominaisuudet"
|
msgstr "Ominaisuudet"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisselectafile
|
#: objinspstrconsts:oisselectafile
|
||||||
msgid "Select a file"
|
msgid "Select a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oissettodefaultvalue
|
#: objinspstrconsts:oissettodefaultvalue
|
||||||
msgid "Set to default value"
|
msgid "Set to default value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -126,6 +178,10 @@ msgstr ""
|
|||||||
msgid "Set to default: %s"
|
msgid "Set to default: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:cesstringgrideditor2
|
#: objinspstrconsts:cesstringgrideditor2
|
||||||
msgid "StringGrid Editor"
|
msgid "StringGrid Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,3 +202,11 @@ msgstr ""
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
@ -58,10 +58,26 @@ msgstr ""
|
|||||||
msgid "All files (*.*)|*.*"
|
msgid "All files (*.*)|*.*"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiscategory
|
#: objinspstrconsts:oiscategory
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccsilbtnclear
|
#: objinspstrconsts:sccsilbtnclear
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr "Effacer"
|
msgstr "Effacer"
|
||||||
@ -78,6 +94,10 @@ msgstr "Supprimer"
|
|||||||
msgid "Edit action list..."
|
msgid "Edit action list..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiserror
|
#: objinspstrconsts:oiserror
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -86,6 +106,10 @@ msgstr ""
|
|||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "Evénements"
|
msgstr "Evénements"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtimgindexcaption
|
#: objinspstrconsts:sccslvedtimgindexcaption
|
||||||
msgid "Image index"
|
msgid "Image index"
|
||||||
msgstr "Index d'image"
|
msgstr "Index d'image"
|
||||||
@ -94,6 +118,18 @@ msgstr "Index d'image"
|
|||||||
msgid "Image list editor"
|
msgid "Image list editor"
|
||||||
msgstr "Editeur de liste d'image"
|
msgstr "Editeur de liste d'image"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtlabcaption
|
#: objinspstrconsts:sccslvedtlabcaption
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr "Libellé"
|
msgstr "Libellé"
|
||||||
@ -102,10 +138,18 @@ msgstr "Libell
|
|||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr "Editeur d'élements"
|
msgstr "Editeur d'élements"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtbtnadd
|
#: objinspstrconsts:sccslvedtbtnadd
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nouveau"
|
msgstr "Nouveau"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisobjectinspector
|
#: objinspstrconsts:oisobjectinspector
|
||||||
msgid "Object Inspector"
|
msgid "Object Inspector"
|
||||||
msgstr "Inspecteur d'objet"
|
msgstr "Inspecteur d'objet"
|
||||||
@ -114,10 +158,18 @@ msgstr "Inspecteur d'objet"
|
|||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr "Propriétés"
|
msgstr "Propriétés"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisselectafile
|
#: objinspstrconsts:oisselectafile
|
||||||
msgid "Select a file"
|
msgid "Select a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oissettodefaultvalue
|
#: objinspstrconsts:oissettodefaultvalue
|
||||||
msgid "Set to default value"
|
msgid "Set to default value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -126,6 +178,10 @@ msgstr ""
|
|||||||
msgid "Set to default: %s"
|
msgid "Set to default: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:cesstringgrideditor2
|
#: objinspstrconsts:cesstringgrideditor2
|
||||||
msgid "StringGrid Editor"
|
msgid "StringGrid Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -146,3 +202,11 @@ msgstr ""
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
@ -68,10 +68,26 @@ msgstr ""
|
|||||||
msgid "All files (*.*)|*.*"
|
msgid "All files (*.*)|*.*"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiscategory
|
#: objinspstrconsts:oiscategory
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccsilbtnclear
|
#: objinspstrconsts:sccsilbtnclear
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr "Cancella"
|
msgstr "Cancella"
|
||||||
@ -88,6 +104,10 @@ msgstr "Elimina"
|
|||||||
msgid "Edit action list..."
|
msgid "Edit action list..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiserror
|
#: objinspstrconsts:oiserror
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -96,6 +116,10 @@ msgstr ""
|
|||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "Eventi"
|
msgstr "Eventi"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtimgindexcaption
|
#: objinspstrconsts:sccslvedtimgindexcaption
|
||||||
msgid "Image index"
|
msgid "Image index"
|
||||||
msgstr "Indice immagine"
|
msgstr "Indice immagine"
|
||||||
@ -104,6 +128,18 @@ msgstr "Indice immagine"
|
|||||||
msgid "Image list editor"
|
msgid "Image list editor"
|
||||||
msgstr "Editor elenco immagini"
|
msgstr "Editor elenco immagini"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtlabcaption
|
#: objinspstrconsts:sccslvedtlabcaption
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr "Etichetta"
|
msgstr "Etichetta"
|
||||||
@ -112,10 +148,18 @@ msgstr "Etichetta"
|
|||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr "Editor elenco viste"
|
msgstr "Editor elenco viste"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtbtnadd
|
#: objinspstrconsts:sccslvedtbtnadd
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nuovo"
|
msgstr "Nuovo"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisobjectinspector
|
#: objinspstrconsts:oisobjectinspector
|
||||||
msgid "Object Inspector"
|
msgid "Object Inspector"
|
||||||
msgstr "Ispettore oggetti"
|
msgstr "Ispettore oggetti"
|
||||||
@ -124,10 +168,18 @@ msgstr "Ispettore oggetti"
|
|||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr "Proprietà"
|
msgstr "Proprietà"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisselectafile
|
#: objinspstrconsts:oisselectafile
|
||||||
msgid "Select a file"
|
msgid "Select a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oissettodefaultvalue
|
#: objinspstrconsts:oissettodefaultvalue
|
||||||
msgid "Set to default value"
|
msgid "Set to default value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -136,6 +188,10 @@ msgstr ""
|
|||||||
msgid "Set to default: %s"
|
msgid "Set to default: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:cesstringgrideditor2
|
#: objinspstrconsts:cesstringgrideditor2
|
||||||
msgid "StringGrid Editor"
|
msgid "StringGrid Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -156,3 +212,11 @@ msgstr "Sconosciuto"
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
@ -69,10 +69,26 @@ msgstr "Wszystkie"
|
|||||||
msgid "All files (*.*)|*.*"
|
msgid "All files (*.*)|*.*"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiscategory
|
#: objinspstrconsts:oiscategory
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccsilbtnclear
|
#: objinspstrconsts:sccsilbtnclear
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr "Wyczyść"
|
msgstr "Wyczyść"
|
||||||
@ -89,6 +105,10 @@ msgstr "Usuń"
|
|||||||
msgid "Edit action list..."
|
msgid "Edit action list..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiserror
|
#: objinspstrconsts:oiserror
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Błąd"
|
msgstr "Błąd"
|
||||||
@ -97,6 +117,10 @@ msgstr "Błąd"
|
|||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "Zdarzenia"
|
msgstr "Zdarzenia"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtimgindexcaption
|
#: objinspstrconsts:sccslvedtimgindexcaption
|
||||||
msgid "Image index"
|
msgid "Image index"
|
||||||
msgstr "Indeks obrazka"
|
msgstr "Indeks obrazka"
|
||||||
@ -105,6 +129,18 @@ msgstr "Indeks obrazka"
|
|||||||
msgid "Image list editor"
|
msgid "Image list editor"
|
||||||
msgstr "Edytor listy obrazków"
|
msgstr "Edytor listy obrazków"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtlabcaption
|
#: objinspstrconsts:sccslvedtlabcaption
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr "Napis"
|
msgstr "Napis"
|
||||||
@ -113,10 +149,18 @@ msgstr "Napis"
|
|||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr "Edytor ListView"
|
msgstr "Edytor ListView"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtbtnadd
|
#: objinspstrconsts:sccslvedtbtnadd
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nowy"
|
msgstr "Nowy"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisobjectinspector
|
#: objinspstrconsts:oisobjectinspector
|
||||||
msgid "Object Inspector"
|
msgid "Object Inspector"
|
||||||
msgstr "Inspektor obiektów"
|
msgstr "Inspektor obiektów"
|
||||||
@ -125,10 +169,18 @@ msgstr "Inspektor obiektów"
|
|||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr "Właściwości"
|
msgstr "Właściwości"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisselectafile
|
#: objinspstrconsts:oisselectafile
|
||||||
msgid "Select a file"
|
msgid "Select a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oissettodefaultvalue
|
#: objinspstrconsts:oissettodefaultvalue
|
||||||
msgid "Set to default value"
|
msgid "Set to default value"
|
||||||
msgstr "Ustaw domyślną wartość"
|
msgstr "Ustaw domyślną wartość"
|
||||||
@ -137,6 +189,10 @@ msgstr "Ustaw domyślną wartość"
|
|||||||
msgid "Set to default: %s"
|
msgid "Set to default: %s"
|
||||||
msgstr "Ustaw domyślną wartość: %s"
|
msgstr "Ustaw domyślną wartość: %s"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:cesstringgrideditor2
|
#: objinspstrconsts:cesstringgrideditor2
|
||||||
msgid "StringGrid Editor"
|
msgid "StringGrid Editor"
|
||||||
msgstr "Edytor StringGrid"
|
msgstr "Edytor StringGrid"
|
||||||
@ -157,3 +213,11 @@ msgstr "Nieznany"
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr "Wartość:"
|
msgstr "Wartość:"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
@ -69,10 +69,26 @@ msgstr "Wszystkie"
|
|||||||
msgid "All files (*.*)|*.*"
|
msgid "All files (*.*)|*.*"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiscategory
|
#: objinspstrconsts:oiscategory
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccsilbtnclear
|
#: objinspstrconsts:sccsilbtnclear
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr "Wyczy¶æ"
|
msgstr "Wyczy¶æ"
|
||||||
@ -89,6 +105,10 @@ msgstr "Usu
|
|||||||
msgid "Edit action list..."
|
msgid "Edit action list..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiserror
|
#: objinspstrconsts:oiserror
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "B³±d"
|
msgstr "B³±d"
|
||||||
@ -97,6 +117,10 @@ msgstr "B
|
|||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "Zdarzenia"
|
msgstr "Zdarzenia"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtimgindexcaption
|
#: objinspstrconsts:sccslvedtimgindexcaption
|
||||||
msgid "Image index"
|
msgid "Image index"
|
||||||
msgstr "Indeks obrazka"
|
msgstr "Indeks obrazka"
|
||||||
@ -105,6 +129,18 @@ msgstr "Indeks obrazka"
|
|||||||
msgid "Image list editor"
|
msgid "Image list editor"
|
||||||
msgstr "Edytor listy obrazków"
|
msgstr "Edytor listy obrazków"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtlabcaption
|
#: objinspstrconsts:sccslvedtlabcaption
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr "Napis"
|
msgstr "Napis"
|
||||||
@ -113,10 +149,18 @@ msgstr "Napis"
|
|||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr "Edytor ListView"
|
msgstr "Edytor ListView"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtbtnadd
|
#: objinspstrconsts:sccslvedtbtnadd
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nowy"
|
msgstr "Nowy"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisobjectinspector
|
#: objinspstrconsts:oisobjectinspector
|
||||||
msgid "Object Inspector"
|
msgid "Object Inspector"
|
||||||
msgstr "Inspektor obiektów"
|
msgstr "Inspektor obiektów"
|
||||||
@ -125,10 +169,18 @@ msgstr "Inspektor obiekt
|
|||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr "W³a¶ciwo¶ci"
|
msgstr "W³a¶ciwo¶ci"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisselectafile
|
#: objinspstrconsts:oisselectafile
|
||||||
msgid "Select a file"
|
msgid "Select a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oissettodefaultvalue
|
#: objinspstrconsts:oissettodefaultvalue
|
||||||
msgid "Set to default value"
|
msgid "Set to default value"
|
||||||
msgstr "Ustaw domy¶ln± warto¶æ"
|
msgstr "Ustaw domy¶ln± warto¶æ"
|
||||||
@ -137,6 +189,10 @@ msgstr "Ustaw domy
|
|||||||
msgid "Set to default: %s"
|
msgid "Set to default: %s"
|
||||||
msgstr "Ustaw domy¶ln± warto¶æ: %s"
|
msgstr "Ustaw domy¶ln± warto¶æ: %s"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:cesstringgrideditor2
|
#: objinspstrconsts:cesstringgrideditor2
|
||||||
msgid "StringGrid Editor"
|
msgid "StringGrid Editor"
|
||||||
msgstr "Edytor StringGrid"
|
msgstr "Edytor StringGrid"
|
||||||
@ -157,3 +213,11 @@ msgstr "Nieznany"
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr "Warto¶æ:"
|
msgstr "Warto¶æ:"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
@ -69,10 +69,26 @@ msgstr "Wszystkie"
|
|||||||
msgid "All files (*.*)|*.*"
|
msgid "All files (*.*)|*.*"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiscategory
|
#: objinspstrconsts:oiscategory
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccsilbtnclear
|
#: objinspstrconsts:sccsilbtnclear
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr "WyczyϾ"
|
msgstr "WyczyϾ"
|
||||||
@ -89,6 +105,10 @@ msgstr "Usu
|
|||||||
msgid "Edit action list..."
|
msgid "Edit action list..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiserror
|
#: objinspstrconsts:oiserror
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "B³¹d"
|
msgstr "B³¹d"
|
||||||
@ -97,6 +117,10 @@ msgstr "B
|
|||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "Zdarzenia"
|
msgstr "Zdarzenia"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtimgindexcaption
|
#: objinspstrconsts:sccslvedtimgindexcaption
|
||||||
msgid "Image index"
|
msgid "Image index"
|
||||||
msgstr "Indeks obrazka"
|
msgstr "Indeks obrazka"
|
||||||
@ -105,6 +129,18 @@ msgstr "Indeks obrazka"
|
|||||||
msgid "Image list editor"
|
msgid "Image list editor"
|
||||||
msgstr "Edytor listy obrazków"
|
msgstr "Edytor listy obrazków"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtlabcaption
|
#: objinspstrconsts:sccslvedtlabcaption
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr "Napis"
|
msgstr "Napis"
|
||||||
@ -113,10 +149,18 @@ msgstr "Napis"
|
|||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr "Edytor ListView"
|
msgstr "Edytor ListView"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtbtnadd
|
#: objinspstrconsts:sccslvedtbtnadd
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Nowy"
|
msgstr "Nowy"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisobjectinspector
|
#: objinspstrconsts:oisobjectinspector
|
||||||
msgid "Object Inspector"
|
msgid "Object Inspector"
|
||||||
msgstr "Inspektor obiektów"
|
msgstr "Inspektor obiektów"
|
||||||
@ -125,10 +169,18 @@ msgstr "Inspektor obiekt
|
|||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr "W³aœciwoœci"
|
msgstr "W³aœciwoœci"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisselectafile
|
#: objinspstrconsts:oisselectafile
|
||||||
msgid "Select a file"
|
msgid "Select a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oissettodefaultvalue
|
#: objinspstrconsts:oissettodefaultvalue
|
||||||
msgid "Set to default value"
|
msgid "Set to default value"
|
||||||
msgstr "Ustaw domyœln¹ wartoœæ"
|
msgstr "Ustaw domyœln¹ wartoœæ"
|
||||||
@ -137,6 +189,10 @@ msgstr "Ustaw domy
|
|||||||
msgid "Set to default: %s"
|
msgid "Set to default: %s"
|
||||||
msgstr "Ustaw domyœln¹ wartoœæ: %s"
|
msgstr "Ustaw domyœln¹ wartoœæ: %s"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:cesstringgrideditor2
|
#: objinspstrconsts:cesstringgrideditor2
|
||||||
msgid "StringGrid Editor"
|
msgid "StringGrid Editor"
|
||||||
msgstr "Edytor StringGrid"
|
msgstr "Edytor StringGrid"
|
||||||
@ -157,3 +213,11 @@ msgstr "Nieznany"
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr "WartoϾ:"
|
msgstr "WartoϾ:"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
@ -26,6 +26,50 @@ msgstr ""
|
|||||||
msgid "Unknown"
|
msgid "Unknown"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisproperties
|
#: objinspstrconsts:oisproperties
|
||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -46,6 +90,26 @@ msgstr ""
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtcaption
|
#: objinspstrconsts:sccslvedtcaption
|
||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -68,10 +68,26 @@ msgstr "
|
|||||||
msgid "All files (*.*)|*.*"
|
msgid "All files (*.*)|*.*"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiscategory
|
#: objinspstrconsts:oiscategory
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccsilbtnclear
|
#: objinspstrconsts:sccsilbtnclear
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr "ïÞÉÓÔÉÔØ"
|
msgstr "ïÞÉÓÔÉÔØ"
|
||||||
@ -88,6 +104,10 @@ msgstr "
|
|||||||
msgid "Edit action list..."
|
msgid "Edit action list..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiserror
|
#: objinspstrconsts:oiserror
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "ïÛÉÂËÁ"
|
msgstr "ïÛÉÂËÁ"
|
||||||
@ -96,6 +116,10 @@ msgstr "
|
|||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "óÏÂÙÔÉÑ"
|
msgstr "óÏÂÙÔÉÑ"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtimgindexcaption
|
#: objinspstrconsts:sccslvedtimgindexcaption
|
||||||
msgid "Image index"
|
msgid "Image index"
|
||||||
msgstr "éÎÄÅËÓ ÒÉÓÕÎËÁ"
|
msgstr "éÎÄÅËÓ ÒÉÓÕÎËÁ"
|
||||||
@ -104,6 +128,18 @@ msgstr "
|
|||||||
msgid "Image list editor"
|
msgid "Image list editor"
|
||||||
msgstr "òÅÄÁËÔÏÒ ÓÐÉÓËÁ ÒÉÓÕÎËÏ×"
|
msgstr "òÅÄÁËÔÏÒ ÓÐÉÓËÁ ÒÉÓÕÎËÏ×"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtlabcaption
|
#: objinspstrconsts:sccslvedtlabcaption
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr "íÅÔËÁ"
|
msgstr "íÅÔËÁ"
|
||||||
@ -112,10 +148,18 @@ msgstr "
|
|||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr "òÅÄÁËÔÏÒ ListView"
|
msgstr "òÅÄÁËÔÏÒ ListView"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtbtnadd
|
#: objinspstrconsts:sccslvedtbtnadd
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "óÏÚÄÁÔØ"
|
msgstr "óÏÚÄÁÔØ"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisobjectinspector
|
#: objinspstrconsts:oisobjectinspector
|
||||||
msgid "Object Inspector"
|
msgid "Object Inspector"
|
||||||
msgstr "éÎÓÐÅËÔÏÒ ÏÂßÅËÔÏ×"
|
msgstr "éÎÓÐÅËÔÏÒ ÏÂßÅËÔÏ×"
|
||||||
@ -124,10 +168,18 @@ msgstr "
|
|||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr "ó×ÏÊÓÔ×Á"
|
msgstr "ó×ÏÊÓÔ×Á"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisselectafile
|
#: objinspstrconsts:oisselectafile
|
||||||
msgid "Select a file"
|
msgid "Select a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oissettodefaultvalue
|
#: objinspstrconsts:oissettodefaultvalue
|
||||||
msgid "Set to default value"
|
msgid "Set to default value"
|
||||||
msgstr "õÓÔÁÎÏ×ÉÔØ × ÚÎÁÞÅÎÉÅ ÐÏ ÕÍÏÌÞÁÎÉÀ"
|
msgstr "õÓÔÁÎÏ×ÉÔØ × ÚÎÁÞÅÎÉÅ ÐÏ ÕÍÏÌÞÁÎÉÀ"
|
||||||
@ -136,6 +188,10 @@ msgstr "
|
|||||||
msgid "Set to default: %s"
|
msgid "Set to default: %s"
|
||||||
msgstr "õÓÔÁÎÏ×ÉÔØ ÐÏ ÕÍÏÌÞÁÎÉÀ: %s"
|
msgstr "õÓÔÁÎÏ×ÉÔØ ÐÏ ÕÍÏÌÞÁÎÉÀ: %s"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:cesstringgrideditor2
|
#: objinspstrconsts:cesstringgrideditor2
|
||||||
msgid "StringGrid Editor"
|
msgid "StringGrid Editor"
|
||||||
msgstr "òÅÄÁËÔÏÒ óÅÔËÉ ÓÔÒÏË"
|
msgstr "òÅÄÁËÔÏÒ óÅÔËÉ ÓÔÒÏË"
|
||||||
@ -156,3 +212,11 @@ msgstr "
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr "úÎÁÞÅÎÉÅ:"
|
msgstr "úÎÁÞÅÎÉÅ:"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
@ -68,10 +68,26 @@ msgstr "
|
|||||||
msgid "All files (*.*)|*.*"
|
msgid "All files (*.*)|*.*"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisarray
|
||||||
|
msgid "Array"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisboolean
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiscategory
|
#: objinspstrconsts:oiscategory
|
||||||
msgid "Category"
|
msgid "Category"
|
||||||
msgstr "Êàòåãîðèÿ"
|
msgstr "Êàòåãîðèÿ"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oischar
|
||||||
|
msgid "Char"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisclass
|
||||||
|
msgid "Class"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccsilbtnclear
|
#: objinspstrconsts:sccsilbtnclear
|
||||||
msgid "Clear"
|
msgid "Clear"
|
||||||
msgstr "Î÷èñòèòü"
|
msgstr "Î÷èñòèòü"
|
||||||
@ -88,6 +104,10 @@ msgstr "
|
|||||||
msgid "Edit action list..."
|
msgid "Edit action list..."
|
||||||
msgstr "Ïðàâêà ñïèñêà äåéñòâèé..."
|
msgstr "Ïðàâêà ñïèñêà äåéñòâèé..."
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisenumeration
|
||||||
|
msgid "Enumeration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oiserror
|
#: objinspstrconsts:oiserror
|
||||||
msgid "Error"
|
msgid "Error"
|
||||||
msgstr "Îøèáêà"
|
msgstr "Îøèáêà"
|
||||||
@ -96,6 +116,10 @@ msgstr "
|
|||||||
msgid "Events"
|
msgid "Events"
|
||||||
msgstr "Ñîáûòèÿ"
|
msgstr "Ñîáûòèÿ"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisfloat
|
||||||
|
msgid "Float"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtimgindexcaption
|
#: objinspstrconsts:sccslvedtimgindexcaption
|
||||||
msgid "Image index"
|
msgid "Image index"
|
||||||
msgstr "Èíäåêñ ðèñóíêà"
|
msgstr "Èíäåêñ ðèñóíêà"
|
||||||
@ -104,6 +128,18 @@ msgstr "
|
|||||||
msgid "Image list editor"
|
msgid "Image list editor"
|
||||||
msgstr "Ðåäàêòîð ñïèñêà ðèñóíêîâ"
|
msgstr "Ðåäàêòîð ñïèñêà ðèñóíêîâ"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisint64
|
||||||
|
msgid "Int64"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinteger
|
||||||
|
msgid "Integer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisinterface
|
||||||
|
msgid "Interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtlabcaption
|
#: objinspstrconsts:sccslvedtlabcaption
|
||||||
msgid "Label"
|
msgid "Label"
|
||||||
msgstr "Ìåòêà"
|
msgstr "Ìåòêà"
|
||||||
@ -112,10 +148,18 @@ msgstr "
|
|||||||
msgid "ListView editor"
|
msgid "ListView editor"
|
||||||
msgstr "Ðåäàêòîð ListView"
|
msgstr "Ðåäàêòîð ListView"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oismethod
|
||||||
|
msgid "Method"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:sccslvedtbtnadd
|
#: objinspstrconsts:sccslvedtbtnadd
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr "Ñîçäàòü"
|
msgstr "Ñîçäàòü"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisobject
|
||||||
|
msgid "Object"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisobjectinspector
|
#: objinspstrconsts:oisobjectinspector
|
||||||
msgid "Object Inspector"
|
msgid "Object Inspector"
|
||||||
msgstr "Èíñïåêòîð îáúåêòîâ"
|
msgstr "Èíñïåêòîð îáúåêòîâ"
|
||||||
@ -124,10 +168,18 @@ msgstr "
|
|||||||
msgid "Properties"
|
msgid "Properties"
|
||||||
msgstr "Ñâîéñòâà"
|
msgstr "Ñâîéñòâà"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisrecord
|
||||||
|
msgid "Record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oisselectafile
|
#: objinspstrconsts:oisselectafile
|
||||||
msgid "Select a file"
|
msgid "Select a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisset
|
||||||
|
msgid "Set"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:oissettodefaultvalue
|
#: objinspstrconsts:oissettodefaultvalue
|
||||||
msgid "Set to default value"
|
msgid "Set to default value"
|
||||||
msgstr "Óñòàíîâèòü â çíà÷åíèå ïî óìîë÷àíèþ"
|
msgstr "Óñòàíîâèòü â çíà÷åíèå ïî óìîë÷àíèþ"
|
||||||
@ -136,6 +188,10 @@ msgstr "
|
|||||||
msgid "Set to default: %s"
|
msgid "Set to default: %s"
|
||||||
msgstr "Óñòàíîâèòü ïî óìîë÷àíèþ: %s"
|
msgstr "Óñòàíîâèòü ïî óìîë÷àíèþ: %s"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisstring
|
||||||
|
msgid "String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: objinspstrconsts:cesstringgrideditor2
|
#: objinspstrconsts:cesstringgrideditor2
|
||||||
msgid "StringGrid Editor"
|
msgid "StringGrid Editor"
|
||||||
msgstr "Ðåäàêòîð Ñåòêè ñòðîê"
|
msgstr "Ðåäàêòîð Ñåòêè ñòðîê"
|
||||||
@ -156,3 +212,11 @@ msgstr "
|
|||||||
msgid "Value:"
|
msgid "Value:"
|
||||||
msgstr "Çíà÷åíèå:"
|
msgstr "Çíà÷åíèå:"
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisvariant
|
||||||
|
msgid "Variant"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: objinspstrconsts:oisword
|
||||||
|
msgid "Word"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user