git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.TB2k-SpTBXLib@6 86f37123-2d26-dd4b-92d5-da14520a7978
This commit is contained in:
parent
eb5a45a9d5
commit
f38522708f
@ -0,0 +1,15 @@
|
|||||||
|
program Customizer;
|
||||||
|
|
||||||
|
uses
|
||||||
|
Forms,
|
||||||
|
Unit1 in 'Unit1.pas' {Form1},
|
||||||
|
Unit2 in 'Unit2.pas' {Form2};
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
|
||||||
|
begin
|
||||||
|
Application.Initialize;
|
||||||
|
Application.CreateForm(TForm1, Form1);
|
||||||
|
Application.CreateForm(TForm2, Form2);
|
||||||
|
Application.Run;
|
||||||
|
end.
|
||||||
1592
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/Unit1.dfm
Normal file
1592
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/Unit1.dfm
Normal file
File diff suppressed because it is too large
Load Diff
350
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/Unit1.pas
Normal file
350
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/Unit1.pas
Normal file
@ -0,0 +1,350 @@
|
|||||||
|
unit Unit1;
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||||||
|
Dialogs, StdCtrls, Menus, ImgList, ActnList, ComCtrls,
|
||||||
|
{$IFNDEF UNICODE}
|
||||||
|
TntActnList, TntDialogs, TntStdCtrls, TntSystem, TntForms,
|
||||||
|
{$ENDIF}
|
||||||
|
{ TB2K }
|
||||||
|
TB2Dock, TB2Toolbar, TB2Item, TB2ExtItems,
|
||||||
|
SpTBXSkins, SpTBXItem, SpTBXControls, SpTBXDkPanels, SpTBXTabs, SpTBXEditors,
|
||||||
|
SpTBXCustomizer,
|
||||||
|
{ gettext }
|
||||||
|
gnugettext;
|
||||||
|
|
||||||
|
type
|
||||||
|
TForm1 = class(TForm)
|
||||||
|
ImageList1: TImageList;
|
||||||
|
SpTBXDock1: TSpTBXDock;
|
||||||
|
SpTBXMultiDock1: TSpTBXMultiDock;
|
||||||
|
SpTBXMultiDock2: TSpTBXMultiDock;
|
||||||
|
SpTBXDock2: TSpTBXDock;
|
||||||
|
dpLog: TSpTBXDockablePanel;
|
||||||
|
dpHelp: TSpTBXDockablePanel;
|
||||||
|
tbStandard: TSpTBXToolbar;
|
||||||
|
tbFormat: TSpTBXToolbar;
|
||||||
|
tbMenuBar: TSpTBXToolbar;
|
||||||
|
tbNavigation: TSpTBXToolbar;
|
||||||
|
mFile: TSpTBXSubmenuItem;
|
||||||
|
mEdit: TSpTBXSubmenuItem;
|
||||||
|
mView: TSpTBXSubmenuItem;
|
||||||
|
mHelp: TSpTBXSubmenuItem;
|
||||||
|
mNew: TSpTBXItem;
|
||||||
|
mOpen: TSpTBXItem;
|
||||||
|
mSave: TSpTBXItem;
|
||||||
|
SpTBXSeparatorItem1: TSpTBXSeparatorItem;
|
||||||
|
mExit: TSpTBXItem;
|
||||||
|
mCut: TSpTBXItem;
|
||||||
|
mCopy: TSpTBXItem;
|
||||||
|
mPaste: TSpTBXItem;
|
||||||
|
SpTBXSeparatorItem2: TSpTBXSeparatorItem;
|
||||||
|
mSelectAll: TSpTBXItem;
|
||||||
|
SpTBXSeparatorItem3: TSpTBXSeparatorItem;
|
||||||
|
mFind: TSpTBXItem;
|
||||||
|
mLeftJustify: TSpTBXItem;
|
||||||
|
mUnderline: TSpTBXItem;
|
||||||
|
mItalic: TSpTBXItem;
|
||||||
|
mBold: TSpTBXItem;
|
||||||
|
SpTBXSeparatorItem5: TSpTBXSeparatorItem;
|
||||||
|
mRightJustify: TSpTBXItem;
|
||||||
|
mCentered: TSpTBXItem;
|
||||||
|
SpTBXSeparatorItem6: TSpTBXSeparatorItem;
|
||||||
|
mBullets: TSpTBXItem;
|
||||||
|
mNumberedBullets: TSpTBXItem;
|
||||||
|
mSidebar: TSpTBXSubmenuItem;
|
||||||
|
mOptions: TSpTBXItem;
|
||||||
|
mmHelp: TSpTBXItem;
|
||||||
|
mToolbars: TSpTBXSubmenuItem;
|
||||||
|
SpTBXPopupMenu1: TSpTBXPopupMenu;
|
||||||
|
mStandardToolbar: TSpTBXItem;
|
||||||
|
mFormattingToolbar: TSpTBXItem;
|
||||||
|
mNavigationToolbar: TSpTBXItem;
|
||||||
|
mCommandsLog: TSpTBXItem;
|
||||||
|
dpOptions: TSpTBXDockablePanel;
|
||||||
|
mmmHelp: TSpTBXItem;
|
||||||
|
mAbout: TSpTBXItem;
|
||||||
|
tNew: TSpTBXItem;
|
||||||
|
tOpen: TSpTBXItem;
|
||||||
|
tSave: TSpTBXItem;
|
||||||
|
tCut: TSpTBXItem;
|
||||||
|
tCopy: TSpTBXItem;
|
||||||
|
tPaste: TSpTBXItem;
|
||||||
|
tBold: TSpTBXItem;
|
||||||
|
SpTBXSeparatorItem8: TSpTBXSeparatorItem;
|
||||||
|
tItalic: TSpTBXItem;
|
||||||
|
tUnderline: TSpTBXItem;
|
||||||
|
mPrint: TSpTBXItem;
|
||||||
|
SpTBXSeparatorItem7: TSpTBXSeparatorItem;
|
||||||
|
SpTBXSeparatorItem9: TSpTBXSeparatorItem;
|
||||||
|
tFind: TSpTBXItem;
|
||||||
|
tStop: TSpTBXItem;
|
||||||
|
tRefresh: TSpTBXItem;
|
||||||
|
tForward: TSpTBXItem;
|
||||||
|
tBack: TSpTBXItem;
|
||||||
|
tSearch: TSpTBXItem;
|
||||||
|
pGroupItem1: TTBGroupItem;
|
||||||
|
SpTBXSeparatorItem10: TSpTBXSeparatorItem;
|
||||||
|
pCustomize: TSpTBXItem;
|
||||||
|
tbLayouts: TSpTBXToolbar;
|
||||||
|
tLayoutSave: TSpTBXItem;
|
||||||
|
SpTBXLabelItem1: TSpTBXLabelItem;
|
||||||
|
tLayoutsToolbar: TSpTBXItem;
|
||||||
|
SpTBXCustomizer1: TSpTBXCustomizer;
|
||||||
|
cPrint: TSpTBXItem;
|
||||||
|
cLeftJustify: TSpTBXItem;
|
||||||
|
cCentered: TSpTBXItem;
|
||||||
|
cNumBullets: TSpTBXItem;
|
||||||
|
cBullets: TSpTBXItem;
|
||||||
|
cRightJustify: TSpTBXItem;
|
||||||
|
cFavs: TSpTBXItem;
|
||||||
|
cExit: TSpTBXItem;
|
||||||
|
cSelectAll: TSpTBXItem;
|
||||||
|
Memo1: TMemo;
|
||||||
|
SpTBXSubmenuItem1: TSpTBXSubmenuItem;
|
||||||
|
SpTBXTabControl1: TSpTBXTabControl;
|
||||||
|
SpTBXTabItem1: TSpTBXTabItem;
|
||||||
|
SpTBXTabSheet1: TSpTBXTabSheet;
|
||||||
|
SpTBXTabItem2: TSpTBXTabItem;
|
||||||
|
SpTBXTabSheet2: TSpTBXTabSheet;
|
||||||
|
Memo2: TMemo;
|
||||||
|
Memo3: TMemo;
|
||||||
|
SpTBXSeparatorItem12: TSpTBXSeparatorItem;
|
||||||
|
tSkins: TSpTBXSubmenuItem;
|
||||||
|
SpTBXSkinGroupItem1: TSpTBXSkinGroupItem;
|
||||||
|
pEmbeddedCustomize: TSpTBXItem;
|
||||||
|
SpTBXLabel1: TSpTBXLabel;
|
||||||
|
SpTBXSeparatorItem13: TSpTBXSeparatorItem;
|
||||||
|
SpTBXTabItem3: TSpTBXTabItem;
|
||||||
|
SpTBXTabSheet3: TSpTBXTabSheet;
|
||||||
|
Memo4: TMemo;
|
||||||
|
SpTBXSplitter1: TSpTBXSplitter;
|
||||||
|
SpTBXSplitter2: TSpTBXSplitter;
|
||||||
|
tLanguages: TSpTBXComboBox;
|
||||||
|
TBControlItem1: TTBControlItem;
|
||||||
|
tFont: TSpTBXComboBox;
|
||||||
|
TBControlItem2: TTBControlItem;
|
||||||
|
tFontSize: TSpTBXComboBox;
|
||||||
|
TBControlItem3: TTBControlItem;
|
||||||
|
tLayouts: TSpTBXComboBox;
|
||||||
|
TBControlItem4: TTBControlItem;
|
||||||
|
SpTBXStatusBar1: TSpTBXStatusBar;
|
||||||
|
procedure ActionsExecute(Sender: TObject);
|
||||||
|
procedure FormShow(Sender: TObject);
|
||||||
|
procedure FormDestroy(Sender: TObject);
|
||||||
|
procedure tLayoutSaveClick(Sender: TObject);
|
||||||
|
procedure tLayoutsItemClick(Sender: TObject);
|
||||||
|
procedure aCustomizeExecute(Sender: TObject);
|
||||||
|
procedure aEmbeddedCustomizeExecute(Sender: TObject);
|
||||||
|
procedure FormCreate(Sender: TObject);
|
||||||
|
procedure tLanguagesItemClick(Sender: TObject);
|
||||||
|
private
|
||||||
|
{ Private declarations }
|
||||||
|
public
|
||||||
|
{ Public declarations }
|
||||||
|
FAppPath: string;
|
||||||
|
FIniPath: string;
|
||||||
|
procedure FillLayoutList(CurrentLayout: string = '');
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
Form1: TForm1;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
uses
|
||||||
|
Unit2;
|
||||||
|
|
||||||
|
{$R *.dfm}
|
||||||
|
|
||||||
|
//WMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWM
|
||||||
|
{ Form }
|
||||||
|
|
||||||
|
procedure TForm1.FormShow(Sender: TObject);
|
||||||
|
begin
|
||||||
|
FAppPath := IncludeTrailingPathDelimiter(ExtractFilePath(Application.ExeName));
|
||||||
|
FIniPath := FAppPath + 'Options.ini';
|
||||||
|
|
||||||
|
// Load the text files
|
||||||
|
Memo2.Lines.LoadFromFile(FAppPath + 'faq.txt');
|
||||||
|
Memo3.Lines.LoadFromFile(FAppPath + 'advanced.txt');
|
||||||
|
Memo4.Lines.LoadFromFile(FAppPath + 'translations.txt');
|
||||||
|
|
||||||
|
// Load the items positions and the last layout from the ini file
|
||||||
|
SpTBXCustomizer1.Load(FIniPath);
|
||||||
|
|
||||||
|
// Load the layout list
|
||||||
|
FillLayoutList('LastLayout');
|
||||||
|
|
||||||
|
SpTBXCustomizer1.MenuBar := tbMenuBar;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.FormDestroy(Sender: TObject);
|
||||||
|
begin
|
||||||
|
// Save the items positions and the current layout to the Ini file
|
||||||
|
SpTBXCustomizer1.Save(FIniPath);
|
||||||
|
end;
|
||||||
|
|
||||||
|
//WMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWM
|
||||||
|
{ Layouts UI }
|
||||||
|
|
||||||
|
procedure TForm1.FillLayoutList(CurrentLayout: string);
|
||||||
|
var
|
||||||
|
I: integer;
|
||||||
|
begin
|
||||||
|
// Fill the tLayouts combobox
|
||||||
|
tLayouts.Items.Clear;
|
||||||
|
for I := 0 to SpTBXCustomizer1.Layouts.Count - 1 do
|
||||||
|
tLayouts.Items.Add(SpTBXCustomizer1.Layouts[I]);
|
||||||
|
I := tLayouts.Items.IndexOf(CurrentLayout);
|
||||||
|
if I > -1 then
|
||||||
|
tLayouts.ItemIndex := I;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.tLayoutsItemClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
if tLayouts.ItemIndex > -1 then
|
||||||
|
SpTBXCustomizer1.LoadLayout(FIniPath, tLayouts.Items[tLayouts.ItemIndex]);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.tLayoutSaveClick(Sender: TObject);
|
||||||
|
var
|
||||||
|
S: string;
|
||||||
|
begin
|
||||||
|
{$IFNDEF UNICODE}
|
||||||
|
S := TntDialogs.WideInputBox(_('Save Layout'), _('Save current layout as:'), '');
|
||||||
|
{$ELSE}
|
||||||
|
S := InputBox(_('Save Layout'), _('Save current layout as:'), '');
|
||||||
|
{$ENDIF}
|
||||||
|
if S <> '' then begin
|
||||||
|
SpTBXCustomizer1.SaveLayout(FIniPath, S);
|
||||||
|
FillLayoutList(S);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
//WMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWM
|
||||||
|
{ Actions }
|
||||||
|
|
||||||
|
procedure TForm1.ActionsExecute(Sender: TObject);
|
||||||
|
begin
|
||||||
|
if Sender is TSpTBXItem then
|
||||||
|
Memo1.Lines.Add(TSpTBXItem(Sender).Caption + ' ' + _('Executed'));
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.aCustomizeExecute(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXCustomizer1.Show;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.aEmbeddedCustomizeExecute(Sender: TObject);
|
||||||
|
begin
|
||||||
|
if not Form2.Visible then begin
|
||||||
|
SpTBXCustomizer1.ShowEmbedded(Form2.ClientPanel);
|
||||||
|
Form2.Show;
|
||||||
|
Form2.tCustomize.Click;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
//WMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWM
|
||||||
|
{ Languages }
|
||||||
|
|
||||||
|
function MyWideCustomLoadResString(ResStringRec: PResStringRec; var Value: WideString): Boolean;
|
||||||
|
begin
|
||||||
|
Result := True;
|
||||||
|
Value := GnuGetText.LoadResStringW(ResStringRec);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure SpDxGetTextInitialize(LanguageCode: string; AComponents: array of TComponent; ShellFont, UnicodeResourceStrings: Boolean);
|
||||||
|
// LanguageCode can be an ISO language code: 'en', 'es', 'ko'
|
||||||
|
// And also can be the ISO code plus a description: '[en] English', '[es] Spanish', '[ko] Korean'
|
||||||
|
var
|
||||||
|
I, L: Integer;
|
||||||
|
begin
|
||||||
|
// Get the ISO language code
|
||||||
|
L := Length(LanguageCode);
|
||||||
|
if (L > 2) and (LanguageCode[1] = '[') then begin
|
||||||
|
I := Pos(']', LanguageCode);
|
||||||
|
if (I > 0) then
|
||||||
|
LanguageCode := Copy(LanguageCode, 2, I - 2);
|
||||||
|
end;
|
||||||
|
|
||||||
|
{$IFNDEF UNICODE}
|
||||||
|
// Override Delphi's automatic ResourceString conversion to Ansi
|
||||||
|
if UnicodeResourceStrings then begin
|
||||||
|
TntSystem.InstallTntSystemUpdates;
|
||||||
|
// Override TNT's LoadResString function
|
||||||
|
// This is necessary because dxGetText uses a different
|
||||||
|
// way to access the translated ResourceStrings.
|
||||||
|
TntSystem.WideCustomLoadResString := MyWideCustomLoadResString;
|
||||||
|
end;
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
|
if ShellFont then begin
|
||||||
|
if (Win32Platform = VER_PLATFORM_WIN32_NT) and (Win32MajorVersion >= 5) then
|
||||||
|
DefFontData.Name := 'MS Shell Dlg 2'
|
||||||
|
else
|
||||||
|
DefFontData.Name := 'MS Shell Dlg';
|
||||||
|
end;
|
||||||
|
|
||||||
|
gnugettext.TP_GlobalIgnoreClassProperty(TAction,'Category');
|
||||||
|
gnugettext.TP_GlobalIgnoreClassProperty(TControl,'HelpKeyword');
|
||||||
|
gnugettext.TP_GlobalIgnoreClassProperty(TControl,'ImeName');
|
||||||
|
gnugettext.TP_GlobalIgnoreClass(Graphics.TFont);
|
||||||
|
gnugettext.TP_GlobalIgnoreClass(TSpTBXTabSheet);
|
||||||
|
|
||||||
|
gnugettext.UseLanguage(LanguageCode);
|
||||||
|
for I := Low(AComponents) to High(AComponents) do
|
||||||
|
gnugettext.TranslateComponent(AComponents[I]);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure SpDxGetTextChangeLanguage(LanguageCode: string; AComponents: array of TComponent);
|
||||||
|
// LanguageCode can be an ISO language code: 'en', 'es', 'ko'
|
||||||
|
// And also can be the ISO code plus a description: '[en] English', '[es] Spanish', '[ko] Korean'
|
||||||
|
var
|
||||||
|
I, L: Integer;
|
||||||
|
C: TComponent;
|
||||||
|
begin
|
||||||
|
// Get the ISO language code
|
||||||
|
L := Length(LanguageCode);
|
||||||
|
if (L > 2) and (LanguageCode[1] = '[') then begin
|
||||||
|
I := Pos(']', LanguageCode);
|
||||||
|
if (I > 0) then
|
||||||
|
LanguageCode := Copy(LanguageCode, 2, I - 2);
|
||||||
|
end;
|
||||||
|
|
||||||
|
if LanguageCode <> gnugettext.GetCurrentLanguage then begin
|
||||||
|
gnugettext.UseLanguage(LanguageCode);
|
||||||
|
for I := Low(AComponents) to High(AComponents) do begin
|
||||||
|
C := AComponents[I];
|
||||||
|
SpBeginUpdateAllToolbars(C);
|
||||||
|
try
|
||||||
|
gnugettext.ReTranslateComponent(C);
|
||||||
|
finally
|
||||||
|
SpEndUpdateAllToolbars(C);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.tLanguagesItemClick(Sender: TObject);
|
||||||
|
var
|
||||||
|
I: integer;
|
||||||
|
begin
|
||||||
|
I := tLanguages.ItemIndex;
|
||||||
|
if I > -1 then begin
|
||||||
|
tLanguages.Text := tLanguages.Items[I];
|
||||||
|
// Change language and retranslate
|
||||||
|
SpDxGetTextChangeLanguage(tLanguages.Text, [Self, Form2]);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.FormCreate(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpDxGetTextInitialize('en', [Self], True, True);
|
||||||
|
tLanguages.Items.LoadFromFile('langcodes.txt');
|
||||||
|
tLanguages.ItemIndex := 1;
|
||||||
|
end;
|
||||||
|
|
||||||
|
end.
|
||||||
1229
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/Unit2.dfm
Normal file
1229
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/Unit2.dfm
Normal file
File diff suppressed because it is too large
Load Diff
78
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/Unit2.pas
Normal file
78
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/Unit2.pas
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
unit Unit2;
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||||||
|
Dialogs, StdCtrls, ImgList, ExtCtrls,
|
||||||
|
{ gettext }
|
||||||
|
gnugettext,
|
||||||
|
{ TB2K }
|
||||||
|
TB2Item, TB2Dock, TB2Toolbar, SpTBXItem, SpTBXControls, SpTBXDkPanels;
|
||||||
|
|
||||||
|
type
|
||||||
|
TForm2 = class(TForm)
|
||||||
|
SpTBXDock1: TSpTBXDock;
|
||||||
|
SpTBXToolbar1: TSpTBXToolbar;
|
||||||
|
SpTBXButton1: TSpTBXButton;
|
||||||
|
SpTBXButton2: TSpTBXButton;
|
||||||
|
SpTBXButton3: TSpTBXButton;
|
||||||
|
ImageList1: TImageList;
|
||||||
|
tProperties: TSpTBXItem;
|
||||||
|
tPageSetup: TSpTBXItem;
|
||||||
|
tHistory: TSpTBXItem;
|
||||||
|
tFavorites: TSpTBXItem;
|
||||||
|
tCustomize: TSpTBXItem;
|
||||||
|
ClientPanel: TPanel;
|
||||||
|
LeftPanel: TPanel;
|
||||||
|
ButtonsPanel: TPanel;
|
||||||
|
TitlePanel: TSpTBXLabel;
|
||||||
|
procedure SideBarClick(Sender: TObject);
|
||||||
|
procedure FormClose(Sender: TObject; var Action: TCloseAction);
|
||||||
|
procedure ButtonClick(Sender: TObject);
|
||||||
|
procedure FormCreate(Sender: TObject);
|
||||||
|
private
|
||||||
|
{ Private declarations }
|
||||||
|
public
|
||||||
|
{ Public declarations }
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
Form2: TForm2;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
uses
|
||||||
|
Unit1;
|
||||||
|
|
||||||
|
{$R *.dfm}
|
||||||
|
|
||||||
|
procedure TForm2.ButtonClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
Close;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm2.SideBarClick(Sender: TObject);
|
||||||
|
var
|
||||||
|
Item: TSpTBXItem;
|
||||||
|
begin
|
||||||
|
if Sender is TSpTBXItem then begin
|
||||||
|
Item := Sender as TSpTBXItem;
|
||||||
|
Item.Checked := True;
|
||||||
|
TitlePanel.Caption := Item.Caption;
|
||||||
|
ClientPanel.Visible := Item = tCustomize;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm2.FormClose(Sender: TObject; var Action: TCloseAction);
|
||||||
|
begin
|
||||||
|
// We need to close the customizer form manually here
|
||||||
|
Form1.SpTBXCustomizer1.Close;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm2.FormCreate(Sender: TObject);
|
||||||
|
begin
|
||||||
|
gnugettext.TranslateComponent(Self);
|
||||||
|
end;
|
||||||
|
|
||||||
|
end.
|
||||||
55
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/advanced.txt
Normal file
55
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/advanced.txt
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
|
||||||
|
Advanced Techniques:
|
||||||
|
|
||||||
|
1) How can I embed the customizer?
|
||||||
|
|
||||||
|
You can embed the customizer to another control, but the form of this control cannot be modal or the drag & drop will not work.
|
||||||
|
You also need to close the customizer explicitly by calling the Close method.
|
||||||
|
|
||||||
|
SpTBXCustomizer1.ShowEmbedded(Panel1);
|
||||||
|
|
||||||
|
2) How can I store more options related to the items customizations?
|
||||||
|
|
||||||
|
To load and store your custom data use the OnLoad and OnSave events:
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXCustomizer1Save(Sender: TObject;
|
||||||
|
LayoutName: String; ExtraOptions: TStringList);
|
||||||
|
begin
|
||||||
|
// Save the Form's font size
|
||||||
|
ExtraOptions.Values['FontSize'] := IntToStr(Font.Size);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXCustomizer1Load(Sender:
|
||||||
|
TObject; LayoutName: String; ExtraOptions: TStringList);
|
||||||
|
var
|
||||||
|
S: string;
|
||||||
|
begin
|
||||||
|
// Restore the Form's font size
|
||||||
|
S := ExtraOptions.Values['FontSize'];
|
||||||
|
if S <> '' then
|
||||||
|
Font.Size := StrToInt(S);
|
||||||
|
end;
|
||||||
|
|
||||||
|
3) How can I store more options related to a specific layout?
|
||||||
|
|
||||||
|
The layout is just the position and visibility of the toolbars and dockable panels, but you can store more options related to a layout.
|
||||||
|
To load and store your custom data use the OnLayoutLoad and OnLayoutSave events:
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXCustomizer1LayoutSave(Sender:
|
||||||
|
TObject;
|
||||||
|
LayoutName: String; ExtraOptions: TStringList);
|
||||||
|
begin
|
||||||
|
// Save the Form's WindowState
|
||||||
|
ExtraOptions.Values['MyOption'] := IntToStr(Ord(WindowState));
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXCustomizer1LayoutLoad(Sender:
|
||||||
|
TObject; LayoutName: String; ExtraOptions: TStringList);
|
||||||
|
var
|
||||||
|
S: string;
|
||||||
|
begin
|
||||||
|
// Restore the Form's WindowState
|
||||||
|
S := ExtraOptions.Values['MyOption'];
|
||||||
|
if S <> '' then
|
||||||
|
WindowState := TWindowState(StrToInt(S));
|
||||||
|
end;
|
||||||
33
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/faq.txt
Normal file
33
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/faq.txt
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
|
||||||
|
TSpTBXCustomizer FAQ:
|
||||||
|
|
||||||
|
1) What is it?
|
||||||
|
|
||||||
|
TSpTBXCustomizer is a SpTBXLib toolbar customization component.
|
||||||
|
It allows you to save the toolbars and dockable panels layout and customize the toolbars items.
|
||||||
|
|
||||||
|
2) How do I start using it?
|
||||||
|
|
||||||
|
Double click the TSpTBXCustomizer or use the Items property to add your custom commands.
|
||||||
|
Use the ImageList property to hook the images to the commands, and the Menubar property to fill the shortcuts list.
|
||||||
|
To show the customizer at runtime use the Show method.
|
||||||
|
|
||||||
|
3) How do I load and save the items customizations?
|
||||||
|
|
||||||
|
You can load and save to the Registry or to an Ini file, call the Load method from the Form.OnShow event, and the Save method from the Form.OnDestroy event:
|
||||||
|
|
||||||
|
SpTBXCustomizer1.Load('C:\Options.ini');
|
||||||
|
|
||||||
|
SpTBXCustomizer1.Save('C:\Options.ini');
|
||||||
|
|
||||||
|
SpTBXCustomizer1.Load(HKEY_CURRENT_USER,
|
||||||
|
'Software\Silverpointdev\CustomizerDemo');
|
||||||
|
|
||||||
|
SpTBXCustomizer1.Save(HKEY_CURRENT_USER,
|
||||||
|
'Software\Silverpointdev\CustomizerDemo');
|
||||||
|
|
||||||
|
4) How do I load a specific layout?
|
||||||
|
|
||||||
|
Once the toolbar layouts are loaded you can access the available layouts through the Layouts property.
|
||||||
|
To load a specific layout use the LoadLayout method.
|
||||||
|
To save the current layout use the SaveLayout method.
|
||||||
3067
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/gnugettext.pas
Normal file
3067
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/gnugettext.pas
Normal file
File diff suppressed because it is too large
Load Diff
15
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/langcodes.txt
Normal file
15
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/langcodes.txt
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
[de] German
|
||||||
|
[en] English
|
||||||
|
[es] Spanish
|
||||||
|
[fi] Finnish
|
||||||
|
[fr] French
|
||||||
|
[ja] Japanese
|
||||||
|
[ko] Korean
|
||||||
|
[nl] Dutch
|
||||||
|
[pt_BR] Brazilian Portuguese
|
||||||
|
[ru] Russian
|
||||||
|
[sr_Cyrillic] Serbian Cyrillic
|
||||||
|
[sr_Latin] Serbian Latin
|
||||||
|
[sv] Swedish
|
||||||
|
[tr] Turkish
|
||||||
|
[zh_CN] Chinese
|
||||||
Binary file not shown.
@ -0,0 +1,498 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2005-12-29 22:43+0100\n"
|
||||||
|
"Last-Translator: Thomas Speck <thomas.speck@tssoft.de>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "Standard"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Neu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "Öffnen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Speichern"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "Ausschneiden"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopieren"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "Einfügen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "Suchen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "Themen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "Format"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "Schriftname"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "Schriftgröße"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "Fett"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "Kursiv"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "Unterstrichen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "Menü"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "&Datei"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "Öffnen..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "Drucken"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "Beenden"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "B&earbeiten"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "Alles markieren"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "&Format"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "Links ausrichten"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "Zentriert"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "Rechts ausrichten"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "Aufzählungszeichen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "Sortierte Aufzählungszeichen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "&Ansicht"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "&Navigationsbereich einrichten"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "&Kommandoprotokoll"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "&Optionen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "&Hilfe"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "&Toolbars"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "&Standardleiste"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "&Layoutleiste"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "&Formatleiste"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "&Navigationsleiste"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "&Info"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "Layouts"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "Kommandoprotokoll"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "Anpassungsoptionen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Hilfe"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "Rechtsklick auf die Leiste, um das Abspielen zu beginnen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "Navigation"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "Zurück"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "Vor"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "Aktualisieren"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Stop"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Suchen"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Dateien"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Bearbeiten"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "Favoriten"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "Anpassung"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "Anpassen..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "Eingebettetes Anpassen..."
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Optionen"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "Eigenschaften"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "Druckereinstellungen"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "Chronik"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "Favoriten"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "Anpassungsprogramm"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "OK"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Abbrechen"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "Übernehmen"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "Speichere Layout"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "Speichere aktuelles Layout als:"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "Ausgeführt"
|
||||||
|
|
||||||
497
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/locale/default.po
Normal file
497
official/2.2.2+2.4.2/SpTBXLib/Demos/Customizer/locale/default.po
Normal file
@ -0,0 +1,497 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2005-08-09 16:55\n"
|
||||||
|
"Last-Translator: Somebody <your.email@address.com>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,498 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2005-08-09 17:23-0300\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "Estándar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Nuevo"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "Abrir"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Guardar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "Cortar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copiar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "Pegar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "Buscar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "Temas"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "Formato"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "Fuente"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "Tamaño"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "Negrita"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "Italica"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "Subrayado"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "Menu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "&Archivo"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "Abrir..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "Imprimir"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "Salir"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "&Editar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "Seleccionar todo"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "&Formato"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "Justificar texto a la izquierda"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "Centrado"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "Justificar texto a la derecha"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "Viñetas"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "Viñetas numeradas"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "&Vista"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "&Barras laterales"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "Registro de &comandos"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "&Opciones"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "A&yuda"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "&Barra de herramientas"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "Barra &estándar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "Barra de &disposición"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "Barra de &formato"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "Barra de &navegación"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "&Acerca de..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "Disposición"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "Registro de comandos"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "Opciones de personalizador"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Ayuda"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "Click derecho en las barras de herramientas para comenzar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "Navegación"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "Atrás"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "Adelante"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "Actualizar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Detener"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Buscar"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Archivos"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Editar"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "Favoritos"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "Personalización de barra de herramientas"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "Personalizar..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "Personalizar incrustado..."
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Opciones"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "Propiedades"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "Configurar página"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "Historial"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "Favoritos"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "Personalizador"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "Aceptar"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Cancelar"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "Aplicar"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "Guardar disposición"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "Guardar disposición como:"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "Ejecutado"
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,497 @@
|
|||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2006-02-03 00:41-0300\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "Vakio"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Uusi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "Avaa"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Tallenna"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "Leikkaa"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopioi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "Liitä"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "Etsi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "Teemat"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "Muotoilu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "Fontin nimi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "Fontin koko"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "Lihavoitu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "Keno"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "Alleviivattu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "Valikko"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "&Tiedosto"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "Avaa..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "Tulosta"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "Poistu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "&Muokkaa"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "Valitse kaikki"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "&Muotoile"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "Tasaa vasemmalle"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "Keskitetty"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "Tasaa oikealle"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "luettelomerkit"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "Numeroidut luettelomerkit"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "&Näytä"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "Sivupalkki"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "&Komentoloki"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "&Asetukset"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "&Ohje"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "&Työkalurivit"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "&Vakio työkalurivi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "&Asettelu työkalurivi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "&Muotoilu työkalurivi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "&Navigointi työkalurivi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "&Tietoja"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "Asettelut"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "Komentoloki"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "Mukautuksen asetukset"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Ohje"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "Aloita pelaaminen oikeaklikkaamalla työkalurivejä"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "Navigointi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "Takaisin"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "Eteenpäin"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "Päivitä"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Lopeta"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Etsi"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Tiedostot"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Muokkaa"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "Kirjanmerkit"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "Mukautus"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "Mukauta..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "Liitetty mukautus"
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Asetukset"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "Ominaisuudet"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "Sivun asetukset"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "Historia"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "Kirjanmerkit"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "Mukauttaja"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "OK"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Peruuta"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "Käytä"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "Tallenna asettelu"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "Tallenna nykyinen asettelu nimellä:"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "Suoritettu"
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,498 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2005-10-06 19:10-0300\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "Standard"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Nouveau"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "Ouvrir"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Enregistrer"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "Couper"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copier"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "Coller"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "Chercher"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "Thèmes"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "Format"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "Nom"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "Taille"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "Gras"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "Italique"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "Souligné"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "Menu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "&Fichier"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "Ouvrir..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "Imprimer"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "Quitter"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "&Édition"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "Tout sélectionner"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "&Format"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "Aligné a gauche"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "Centré"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "Aligné a droite"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "Puces"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "Numérotation"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "&Affichage"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "Barre &latérale"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "Log Commandes"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "&Options"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "&Aide"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "&Barres d'outils"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "Barre d'outil &Standard"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "Barre d'outil &Disposition"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "Barre d'outil &Format"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "Barre d'outil &Navigation"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "À &propos..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "Disposition"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "Log commandes"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "Options de personnalisation"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Aide"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "Cliquer avec le bouton droit sur une barre d'outil pour la personnaliser"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "Navigation"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "Précédent"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "Suivant"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "Rafraîchir"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Arrêter"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Chercher"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Fichiers"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Édition"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "Favoris"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "Personnalisation"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "Personnaliser..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Options"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "Propriétés"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "Configurer l'impression"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "Historique"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "Favoris"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "Personnalisation"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "OK"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Annuler"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "Appliquer"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "Enregistrer disposition"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "Enregistrer disposition sous:"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "Exécuté"
|
||||||
|
|
||||||
@ -0,0 +1,62 @@
|
|||||||
|
#. Form1..SpTBXTabControl1..SpTBXTabItem2..CaptionW
|
||||||
|
#: Unit1.dfm:445
|
||||||
|
#. Form1..SpTBXTabControl1..SpTBXTabSheet2..Caption
|
||||||
|
#: Unit1.dfm:452
|
||||||
|
msgid "Advanced Techniques.txt"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXTabControl1..SpTBXTabItem1..CaptionW
|
||||||
|
#: Unit1.dfm:441
|
||||||
|
#. Form1..SpTBXTabControl1..SpTBXTabSheet1..Caption
|
||||||
|
#: Unit1.dfm:471
|
||||||
|
msgid "FAQ.txt"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# Doesn't look like text
|
||||||
|
#. Form1..Caption
|
||||||
|
#: Unit1.dfm:6
|
||||||
|
msgid "Form1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# Seems like a Font.Name extract
|
||||||
|
#. Form1..Font.Name
|
||||||
|
#: Unit1.dfm:11
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..LinkFont.Name
|
||||||
|
#: Unit1.dfm:387
|
||||||
|
#. Form2..Font.Name
|
||||||
|
#: Unit2.dfm:14
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..LinkFont.Name
|
||||||
|
#: Unit2.dfm:129
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..LinkFont.Name
|
||||||
|
#: Unit2.dfm:144
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..LinkFont.Name
|
||||||
|
#: Unit2.dfm:159
|
||||||
|
#. Form2..LeftPanel..TitlePanel..LinkFont.Name
|
||||||
|
#: Unit2.dfm:182
|
||||||
|
msgid "MS Shell Dlg 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# Doesn't look like text
|
||||||
|
#. Form1..SpTBXTabControl1..SpTBXTabSheet1..TabItem
|
||||||
|
#: Unit1.dfm:473
|
||||||
|
msgid "SpTBXTabItem1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# Doesn't look like text
|
||||||
|
#. Form1..SpTBXTabControl1..SpTBXTabSheet2..TabItem
|
||||||
|
#: Unit1.dfm:454
|
||||||
|
msgid "SpTBXTabItem2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# Doesn't look like text
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..Caption
|
||||||
|
#: Unit2.dfm:32
|
||||||
|
msgid "SpTBXToolbar1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# Seems like a Font.Name extract
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Font.Name
|
||||||
|
#: Unit2.dfm:175
|
||||||
|
msgid "Tahoma"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,498 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2008-09-13 07:16+0900\n"
|
||||||
|
"Last-Translator: TIMEFUL\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "標準"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "新規"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "開く"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "保存"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "切り取り"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "コピー"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "貼り付け"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "検索"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "テーマ"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "書式"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "フォント名"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "フォントサイズ"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "太字"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "斜体"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "下線"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "メニュー"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "ファイル(&F)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "開く..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "印刷"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "終了"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "編集(&E)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "すべて選択"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "書式(&F)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "左寄せ"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "中央"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "右寄せ"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "箇条書き"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "段落番号"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "表示(&V)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "サイドバー(&S)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "コマンドログ(&C)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "オプション(&O)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "ヘルプ(&H)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "ツールバー(&T)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "標準バー(&S)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "レイアウトバー(&L)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "書式バー(&F)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "ナビゲーションバー(&N)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "情報(&A)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "レイアウト"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "コマンド ログ"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "カスタマイザ オプション"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "ヘルプ"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "バーを右クリックで開始します"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "ナビゲーション"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "戻る"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "進む"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "リフレッシュ"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "停止"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "検索"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "ファイル"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "編集"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "お気に入り"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "カスタマイゼーション"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "カスタマイズ..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "カスタマイズ 埋め込み..."
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "オプション"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "プロパティ"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "プリンタの設定"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "履歴"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "お気に入り"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "カスタマイザ"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "OK"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "キャンセル"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "適用"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "レイアウト保存"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "レイアウトに名前を付けて保存"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "実行完了"
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,498 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2005-08-09 17:45-0300\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "새로운"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "열기"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "저장"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "잘라내기"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "복사"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "붙여넣기"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "찾기"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "테마"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "형식"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "글자 크기"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "굵게"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "기울임"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "밑줄"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "파일(&F)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "열기(&O)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "인쇄"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "편집(&E)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "모두 선택(A)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "형식(&F)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "왼쪽으로 정렬"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "오른쪽으로 정렬"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "보기(&V)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "가장자리줄(&S)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "옵션(&O)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "도움말(&H)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "정보(&A)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "도움말"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "뒤로"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "앞으로"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "새로고침"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "멈추기"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "검색"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "파일"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "편집"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "옵션"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "히스토리"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "확인"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "취소"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,498 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2009-04-02 13:16-0300\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "Standaard"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Nieuw"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "Open"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Opslaan"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "Knippen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopiëren"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "Plakken"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "Zoeken"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "Thema's"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "Opmaak"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "Font Naam"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "Font Grootte"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "Vet"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "Cursief"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "Onderstreept"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "Menu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "&Bestand"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "Open..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "Afdrukken"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "Afsluiten"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "Be&werken"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "Alles Selecteren"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "&Opmaak"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "Links Uitlijnen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "Centreren"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "Rechts Uitlijnen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "Opsommingstekens"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "Nummering"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "Beel&d"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "&Zijbalk"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "&Commando's Log"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "&Opties"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "&Help"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "&Werkbalken"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "&Standaard Werkbalk"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "&Weergave Werkbalk"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "&Opmaak Werkbalk"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "&Navigatie Werkbalk"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "&Over"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "Weergaven"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "Opdrachtenlog"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "Opties voor Aanpassingen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Help"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "Rechtsklik op de werkbalk om af te spelen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "Navigatie"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "Terug"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "Vooruit"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "Vernieuwen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Stoppen"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Zoeken"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Bestanden"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Bewerken"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "Favs"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "Aanpassingen"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "Aanpassen..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "Geïntegreerd Aanpassen..."
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Opties"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "Eigenschappen"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "Pagina Instellingen"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "Geschiedenis"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "Favorieten"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "Aanpassen"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "OK"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Annuleren"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "Toepassen"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "Weergave Opslaan"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "Huidige weergave opslaan als:"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "Uitgevoerd"
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,499 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2007-12-27 19:22-0300\n"
|
||||||
|
"Last-Translator: Mauricio Magnani <mauricio@cirrus.com.br>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "Padrão"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Novo"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "Abrir"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Salvar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "Recortar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Copiar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "Colar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "Localizar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "Temas"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "Formatação"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "Fonte"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "Tamanho"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "Negrito"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "Itálico"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "Sublinhado"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "Menu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "&Arquivo"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "Abrir..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "Imprimir"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "Sair"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "&Editar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "Selecionar Tudo"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "&Formatar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "Alinhar à esquerda"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "Centralizar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "Alinhar à direita"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "Marcadores"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "Numeração"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "&Exibir"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "Barra &Lateral"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "Registro de &Comandos"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "&Opções"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "Aj&uda"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "&Barras de Ferramentas"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "Barra &Padrão"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "Barra de &Disposições"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "Barra de &Formatação"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "Barra de &Navegação"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "&Sobre"
|
||||||
|
|
||||||
|
# Though unusual, Disposição is a good translation in this case. Some editors keep the English term, others may prefer Arranjo, Área de Trabalho or even Leiaute (Houaiss, c1965)
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "Disposições"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "Registro de Comandos"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "Opções de Personalização"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Ajuda"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "Clique nas barras com o botão direito para inciar animação"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "Navegação"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "Voltar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "Avançar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "Atualizar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Parar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Pesquisar"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Arquivos"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Editar"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "Favoritos"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "Personalização"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "Personalizar..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "Personalizar encaixado..."
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Opções"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "Propriedades"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "Configurar página"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "Histórico"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "Favoritos"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "Personalização"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "OK"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Cancelar"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "Aplicar"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "Salvar disposição"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "Salvar disposição atual como:"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "Executado"
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,498 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2006-02-13 21:45-0300\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "Стандартное"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Новый"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "Открыть"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Сохранить"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "Вырезать"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Копировать"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "Вставить"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "Поиск"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "Темы"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "Формат"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "Шрифт"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "Размер шрифта"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "Полужирный"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "Курсив"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "Подчёркнутый"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "Меню"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "&Файл"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "Открыть..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "Печать"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "Выйти"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "&Правка"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "Выделить всё"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "&Формат"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "По ширине"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "По центру"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "По ширине"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "Список"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "Нумерованный список"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "&Вид"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "Панель &задач"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "История &команд"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "&Параметры"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "&Справка"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "Панели &инструментов"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "&Стандартная"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "&Расположение"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "&Форматирование"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "&Навигация"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "&О программе"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "Расположения"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "История команд"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "Конфигурация настройки"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Справка"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "Используйте контекстное меню панелей инструментов"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "Навигация"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "Назад"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "Вперёд"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "Обновить"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Стоп"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Поиск"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr " файлы"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Правка"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "Избранное"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "Настройка"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "Настройка..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "Встроенная настройка..."
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Параметры"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "Свойства"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "Параметры страницы"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "История"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "Избранное"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "Настройщик"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "OK"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Отмена"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "Применить"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "Сохранить расположение"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "Сохранить текущее расположение как..."
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "выполнено"
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,498 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2005-08-22 17:41-0300\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "Стандардно"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Ново"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "Отвори"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Сачувај"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "Исеци"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Копирај"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "Налепи"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "Нађи"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "Тема"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "Формат"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "Име фонта"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "Величина фонта"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "Подебљано"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "Косо"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "Подвучено"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "Мени"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "&Фајл"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "Отвори..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "Штампај"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "Изађи"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "Ур&еђивање"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "Селектуј све"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "&Формат"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "Поравнато лево"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "Центрирано"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "Поравнато десно"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "Тачке"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "Бројеви"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "&Изглед"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "&Помоћни панели"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "&Дневник команди"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "&Опције"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "&Помоћ"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "&Палете алата"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "&Стандардна палета"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "Па&лета изгледа"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "Палета за &форматирање"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "&Навигациона палета"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "О прогр&аму"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "Изгледи"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "Дневник команди"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "Опције алата за прилагођавање"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Помоћ"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "Кликните десним тастером на палете алата да бисте почели са игром"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "Навигација"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "Назад"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "Напред"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "Освежи"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Стани"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Тражи"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Фајлови"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Уређивање"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "Омиљено"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "Прилагођавање"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "Прилагоди..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "Прилагоди (угњеждено)..."
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Опције"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "Својства"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "Подешавање стране"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "Историја"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "Омиљено"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "Алат за прилагођавање"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "У реду"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Поништи"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "Примени"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "Сачувај изглед"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "Сачувај тренутни изглед као:"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "Извршено"
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,498 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2005-08-19 11:44+0100\n"
|
||||||
|
"Last-Translator: Marko Binic <marko_binic@yahoo.com>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "Standardno"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Novo"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "Otvori"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Sačuvaj"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "Iseci"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopiraj"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "Nalepi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "Nađi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "Teme"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "Format"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "Ime fonta"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "Veličina fonta"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "Podebljano"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "Koso"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "Podvučeno"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "Meni"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "&Fajl"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "Otvori..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "Štampaj"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "Izađi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "Ur&eđivanje"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "Selektuj sve"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "&Format"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "Poravnato levo"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "Centrirano"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "Poravnato Desno"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "Tačke"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "Brojevi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "&Izgled"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "&Pomoćni paneli"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "&Dnevnik komandi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "&Opcije"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "&Pomoć"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "&Palete alata"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "&Standardna paleta"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "Pa&leta izgleda"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "Paleta za &formatiranje"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "&Navigaciona paleta"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "O progr&amu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "Izgledi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "Dnevnik komandi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "Opcije alata za prilagođavanje"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Pomoć"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "Kliknite desnim tasterom na palete alata da biste počeli sa igrom"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "Navigacija"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "Nazad"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "Napred"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "Osveži"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Stani"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Traži"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Fajlovi"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Uređivanje"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "Omiljeno"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "Prilagođavanje"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "Prilagodi..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "Prilagodi (ugnježdeno)..."
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Opcije"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "Svojstva"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "Podešavanje strane"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "Istorija"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "Omiljeno"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "Alat za prilagođavanje"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "U redu"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Poništi"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "Primeni"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "Sačuvaj izgled"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "Sačuvaj trenutni izgled kao:"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "Izvršeno"
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,498 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2008-04-17 15:20+0100\n"
|
||||||
|
"Last-Translator: Mattias Andersson <mattias@centaurix.com>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "Standard"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Nytt"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "Öppna"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Spara"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "Klipp ut"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopiera"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "Klistra in"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "Sök"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "Teman"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "Formatera"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "Teckensnitt"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "Storlek"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "Fet"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "Kursiv"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "Understreck"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "Meny"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "&Arkiv"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "Öppna..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "Skriv ut"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "Avsluta"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "&Redigera"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "Markera allt"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "&Formatera"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "Vänsterjustera"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "Centrera"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "Högerjustera"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "Punktlista"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "Numrerad lista"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "&Visa"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "&Sidpanel"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "&Kommandohistorik"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "&Alternativ"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "&Hjälp"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "&Verktygsfält"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "&Standardfält"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "&Layoutfält"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "&Anpassa Verktygsfält"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "&Navigationsfält"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "&Om"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "Layouter"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "Kommandohistorik"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "Alternativ"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Hjälp"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "Högerklicka på verktygsfälten för att komma igång"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "Navigation"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "Tillbaka"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "Framåt"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "Uppdatera"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Avbryt"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Sök"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Arkiv"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Redigera"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "Favoriter"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "Anpassning"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "Anpassa..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "Inbyggd Anpassning..."
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Alternativ"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "Egenskaper"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "Sidlayout"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "Historik"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "Favoriter"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "Anpassa"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "OK"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Avbryt"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "Verkställ"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "Spara Layout"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "Spara nuvarande layout som:"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "Exekverat"
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,498 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2008-05-07 18:01+0200\n"
|
||||||
|
"Last-Translator: Zylar <eaxmc@hotmail.com>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "Standart"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mNew..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNew..Caption
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Yeni"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "Aç"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mSave..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayoutSave..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSave..Caption
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Kaydet"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCut..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCut..Caption
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "Kes"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mCopy..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCopy..Caption
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "Kopyala"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mPaste..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPaste..Caption
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "Yapıştır"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mFind..CaptionW
|
||||||
|
#. Form1..TntActionList1..aFind..Caption
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "Ara"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "Temalar"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aBold..Category
|
||||||
|
#. Form1..TntActionList1..aItalic..Category
|
||||||
|
#. Form1..TntActionList1..aUnderline..Category
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Category
|
||||||
|
#. Form1..TntActionList1..aCentered..Category
|
||||||
|
#. Form1..TntActionList1..aBullets..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "Biçim"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "Yazı Tipi Adı"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "Yazı Tipi Boyutu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBold..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBold..Caption
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "Kalın"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mItalic..CaptionW
|
||||||
|
#. Form1..TntActionList1..aItalic..Caption
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "İtalik"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mUnderline..CaptionW
|
||||||
|
#. Form1..TntActionList1..aUnderline..Caption
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "Altı Çizgili"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "Menü"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "&Dosya"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#. Form1..TntActionList1..aOpen..Caption
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "Aç..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#. Form1..TntActionList1..aPrint..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "Yazdır"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#. Form1..TntActionList1..aExit..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "Çıkış"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "&Düzelt"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "Hepsini Seç"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "&Biçim"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "Sola Dayalı"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#. Form1..TntActionList1..aCentered..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "Ortalanmış"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRightJustify..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "Sağa Dayalı"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "Simgeler"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cNumBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "Numaralandırılmış Simgeler"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "&Görünüm"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "&Kenar Paneli"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "&Komut Günlüğü"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "&Seçenekler"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mmmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "&Yardım"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "&Araç Çubukları"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "&Standart Araç Çubuğu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "&Araç Çubuğu Düzeni"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "&Araç Çubuğu Biçimlendiriliyor"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "&Gezinim Araç Çubuğu"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "&Hakkında"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..SpTBXLabelItem1..CaptionW
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Layouts..tLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "Düzenler"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "Komut Günlüğü"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "Seçenek Düzenleyicisi"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Yardım"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to start playing"
|
||||||
|
msgstr "Çalmaya başlamak için araç çubuğuna mouse ile sağ tıklayın"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aBack..Category
|
||||||
|
#. Form1..TntActionList1..aForward..Category
|
||||||
|
#. Form1..TntActionList1..aStop..Category
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#. Form1..TntActionList1..aSearch..Category
|
||||||
|
#. Form1..TntActionList1..aFavs..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "Gezinim"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#. Form1..TntActionList1..aBack..Caption
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "Geri"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#. Form1..TntActionList1..aForward..Caption
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "İleri"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#. Form1..TntActionList1..aRefresh..Caption
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "Yenile"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#. Form1..TntActionList1..aStop..Caption
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "Dur"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#. Form1..TntActionList1..aSearch..Caption
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Ara"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aOpen..Category
|
||||||
|
#. Form1..TntActionList1..aSave..Category
|
||||||
|
#. Form1..TntActionList1..aExit..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr "Dosyalar"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aCopy..Category
|
||||||
|
#. Form1..TntActionList1..aPaste..Category
|
||||||
|
#. Form1..TntActionList1..aSelectAll..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Düzelt"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#. Form1..SpTBXCustomizer1..cFavs..CaptionW
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "Favs"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "Özelleştirmek"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "Özelleştir..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#. Form1..SpTBXPopupMenu1..pEmbeddedCustomize..CaptionW
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "Gömülü Bileşenleri Özelleştir"
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "Seçenekler"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "Özellikler"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "Sayfa Düzeni"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "Geçmiş"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "Favoriler"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#. Form2..LeftPanel..TitlePanel..Caption
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "Özelleştir"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "Tamam"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "Vazgeç"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "Uygula"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "Düzeni Kaydet"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "Geçerli düzeni kaydet:"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "Çalıştırıldı"
|
||||||
|
|
||||||
Binary file not shown.
@ -0,0 +1,431 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: Customizer Demo\n"
|
||||||
|
"POT-Creation-Date: 2005-08-09 16:55\n"
|
||||||
|
"PO-Revision-Date: 2007-02-08 15:00-0300\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: dxgettext 1.2\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..Caption
|
||||||
|
#: Unit1.dfm:29
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "标准"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tNew..CaptionW
|
||||||
|
#: Unit1.dfm:37
|
||||||
|
#: Unit1.dfm:159
|
||||||
|
#: Unit1.dfm:1559
|
||||||
|
msgid "New"
|
||||||
|
msgstr "新建"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tOpen..CaptionW
|
||||||
|
#: Unit1.dfm:41
|
||||||
|
msgid "Open"
|
||||||
|
msgstr "打开"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tSave..CaptionW
|
||||||
|
#: Unit1.dfm:45
|
||||||
|
#: Unit1.dfm:167
|
||||||
|
#: Unit1.dfm:318
|
||||||
|
#: Unit1.dfm:1573
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "保存"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCut..CaptionW
|
||||||
|
#: Unit1.dfm:51
|
||||||
|
#: Unit1.dfm:184
|
||||||
|
#: Unit1.dfm:1585
|
||||||
|
msgid "Cut"
|
||||||
|
msgstr "剪切"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tCopy..CaptionW
|
||||||
|
#: Unit1.dfm:55
|
||||||
|
#: Unit1.dfm:188
|
||||||
|
#: Unit1.dfm:1592
|
||||||
|
msgid "Copy"
|
||||||
|
msgstr "复制"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tPaste..CaptionW
|
||||||
|
#: Unit1.dfm:60
|
||||||
|
#: Unit1.dfm:192
|
||||||
|
#: Unit1.dfm:1599
|
||||||
|
msgid "Paste"
|
||||||
|
msgstr "粘贴"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tFind..CaptionW
|
||||||
|
#: Unit1.dfm:67
|
||||||
|
#: Unit1.dfm:206
|
||||||
|
#: Unit1.dfm:1612
|
||||||
|
msgid "Find"
|
||||||
|
msgstr "查找"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbStandard..tThemes..CaptionW
|
||||||
|
#: Unit1.dfm:73
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "主题"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..Caption
|
||||||
|
#. Form1..TntActionList1..aLeftJustify..Category
|
||||||
|
#. Form1..TntActionList1..aNumberedBullets..Category
|
||||||
|
#: Unit1.dfm:99
|
||||||
|
#: Unit1.dfm:1618
|
||||||
|
#: Unit1.dfm:1625
|
||||||
|
#: Unit1.dfm:1632
|
||||||
|
#: Unit1.dfm:1639
|
||||||
|
#: Unit1.dfm:1645
|
||||||
|
#: Unit1.dfm:1651
|
||||||
|
#: Unit1.dfm:1657
|
||||||
|
#: Unit1.dfm:1663
|
||||||
|
msgid "Format"
|
||||||
|
msgstr "格式"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFont..Caption
|
||||||
|
#: Unit1.dfm:106
|
||||||
|
msgid "Font Name"
|
||||||
|
msgstr "字体"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tFontSize..Caption
|
||||||
|
#: Unit1.dfm:116
|
||||||
|
msgid "Font Size"
|
||||||
|
msgstr "字体大小"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tBold..CaptionW
|
||||||
|
#: Unit1.dfm:132
|
||||||
|
#: Unit1.dfm:213
|
||||||
|
#: Unit1.dfm:1619
|
||||||
|
msgid "Bold"
|
||||||
|
msgstr "粗体"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tItalic..CaptionW
|
||||||
|
#: Unit1.dfm:136
|
||||||
|
#: Unit1.dfm:217
|
||||||
|
#: Unit1.dfm:1626
|
||||||
|
msgid "Italic"
|
||||||
|
msgstr "斜体"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbFormat..tUnderline..CaptionW
|
||||||
|
#: Unit1.dfm:140
|
||||||
|
#: Unit1.dfm:221
|
||||||
|
#: Unit1.dfm:1633
|
||||||
|
msgid "Underline"
|
||||||
|
msgstr "下划线"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..Caption
|
||||||
|
#: Unit1.dfm:146
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "菜单"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..CaptionW
|
||||||
|
#: Unit1.dfm:156
|
||||||
|
msgid "&File"
|
||||||
|
msgstr "文件(&F)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mOpen..CaptionW
|
||||||
|
#: Unit1.dfm:163
|
||||||
|
#: Unit1.dfm:1566
|
||||||
|
msgid "Open..."
|
||||||
|
msgstr "打开..."
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mPrint..CaptionW
|
||||||
|
#: Unit1.dfm:171
|
||||||
|
#: Unit1.dfm:1670
|
||||||
|
#: Unit1.dfm:1744
|
||||||
|
msgid "Print"
|
||||||
|
msgstr "打印"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mFile..mExit..CaptionW
|
||||||
|
#: Unit1.dfm:177
|
||||||
|
#: Unit1.dfm:1580
|
||||||
|
#: Unit1.dfm:1776
|
||||||
|
msgid "Exit"
|
||||||
|
msgstr "退出"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..CaptionW
|
||||||
|
#: Unit1.dfm:181
|
||||||
|
msgid "&Edit"
|
||||||
|
msgstr "编辑(&E)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mEdit..mSelectAll..CaptionW
|
||||||
|
#: Unit1.dfm:198
|
||||||
|
#: Unit1.dfm:1606
|
||||||
|
#: Unit1.dfm:1772
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "全选"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..CaptionW
|
||||||
|
#: Unit1.dfm:210
|
||||||
|
msgid "&Format"
|
||||||
|
msgstr "格式(&F)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mLeftJustify..CaptionW
|
||||||
|
#: Unit1.dfm:227
|
||||||
|
#: Unit1.dfm:1640
|
||||||
|
#: Unit1.dfm:1748
|
||||||
|
msgid "Left Justify"
|
||||||
|
msgstr "文本两端对齐"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mCentered..CaptionW
|
||||||
|
#: Unit1.dfm:231
|
||||||
|
#: Unit1.dfm:1652
|
||||||
|
#: Unit1.dfm:1752
|
||||||
|
msgid "Centered"
|
||||||
|
msgstr "居中"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mRightJustify..CaptionW
|
||||||
|
#: Unit1.dfm:235
|
||||||
|
#: Unit1.dfm:1646
|
||||||
|
#: Unit1.dfm:1756
|
||||||
|
msgid "Right Justify"
|
||||||
|
msgstr "文本两端对齐"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mBullets..CaptionW
|
||||||
|
#: Unit1.dfm:241
|
||||||
|
#: Unit1.dfm:1658
|
||||||
|
#: Unit1.dfm:1760
|
||||||
|
msgid "Bullets"
|
||||||
|
msgstr "项目符号"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..SpTBXSubmenuItem1..mNumberedBullets..CaptionW
|
||||||
|
#: Unit1.dfm:245
|
||||||
|
#: Unit1.dfm:1664
|
||||||
|
#: Unit1.dfm:1764
|
||||||
|
msgid "Numbered Bullets"
|
||||||
|
msgstr "数字编号"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..CaptionW
|
||||||
|
#: Unit1.dfm:249
|
||||||
|
msgid "&View"
|
||||||
|
msgstr "查看(&V)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..CaptionW
|
||||||
|
#: Unit1.dfm:251
|
||||||
|
msgid "&Sidebar"
|
||||||
|
msgstr "侧边栏(&S)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mCommandsLog..CaptionW
|
||||||
|
#: Unit1.dfm:254
|
||||||
|
msgid "&Commands Log"
|
||||||
|
msgstr "命令日志(&C)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mOptions..CaptionW
|
||||||
|
#: Unit1.dfm:258
|
||||||
|
msgid "&Options"
|
||||||
|
msgstr "选项(&O)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mSidebar..mmHelp..CaptionW
|
||||||
|
#: Unit1.dfm:262
|
||||||
|
#: Unit1.dfm:286
|
||||||
|
#: Unit1.dfm:288
|
||||||
|
msgid "&Help"
|
||||||
|
msgstr "帮助(&H)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..CaptionW
|
||||||
|
#: Unit1.dfm:266
|
||||||
|
msgid "&Toolbars"
|
||||||
|
msgstr "工具栏(&T)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mStandardToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:269
|
||||||
|
msgid "&Standard Toolbar"
|
||||||
|
msgstr "标准工具栏(&S)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..tLayoutsToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:273
|
||||||
|
msgid "&Layouts Toolbar"
|
||||||
|
msgstr "布局工具栏(&L)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mFormattingToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:277
|
||||||
|
msgid "&Formatting Toolbar"
|
||||||
|
msgstr "格式工具栏(&F)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mView..mToolbars..mNavigationToolbar..CaptionW
|
||||||
|
#: Unit1.dfm:281
|
||||||
|
msgid "&Navigation Toolbar"
|
||||||
|
msgstr "导航工具栏(&N)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbMenuBar..mHelp..mAbout..CaptionW
|
||||||
|
#: Unit1.dfm:291
|
||||||
|
msgid "&About"
|
||||||
|
msgstr "关于(&A)"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock1..tbLayouts..Caption
|
||||||
|
#: Unit1.dfm:298
|
||||||
|
#: Unit1.dfm:305
|
||||||
|
#: Unit1.dfm:308
|
||||||
|
msgid "Layouts"
|
||||||
|
msgstr "布局"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpLog..Caption
|
||||||
|
#: Unit1.dfm:332
|
||||||
|
msgid "Commands Log"
|
||||||
|
msgstr "命令日志"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock1..dpOptions..Caption
|
||||||
|
#: Unit1.dfm:352
|
||||||
|
msgid "Customizer Options"
|
||||||
|
msgstr "自定义选项"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..Caption
|
||||||
|
#: Unit1.dfm:368
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "帮助"
|
||||||
|
|
||||||
|
#. Form1..SpTBXMultiDock2..dpHelp..SpTBXLabel1..Caption
|
||||||
|
#: Unit1.dfm:380
|
||||||
|
msgid "Right click the toolbars to customize them"
|
||||||
|
msgstr "在工具栏上单击右键进行自定义"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..Caption
|
||||||
|
#. Form1..TntActionList1..aRefresh..Category
|
||||||
|
#: Unit1.dfm:402
|
||||||
|
#: Unit1.dfm:1675
|
||||||
|
#: Unit1.dfm:1681
|
||||||
|
#: Unit1.dfm:1687
|
||||||
|
#: Unit1.dfm:1693
|
||||||
|
#: Unit1.dfm:1699
|
||||||
|
#: Unit1.dfm:1705
|
||||||
|
msgid "Navigation"
|
||||||
|
msgstr "导航"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tBack..CaptionW
|
||||||
|
#: Unit1.dfm:409
|
||||||
|
#: Unit1.dfm:1676
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "后退"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tForward..CaptionW
|
||||||
|
#: Unit1.dfm:413
|
||||||
|
#: Unit1.dfm:1682
|
||||||
|
msgid "Forward"
|
||||||
|
msgstr "前进"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tRefresh..CaptionW
|
||||||
|
#: Unit1.dfm:417
|
||||||
|
#: Unit1.dfm:1694
|
||||||
|
msgid "Refresh"
|
||||||
|
msgstr "刷新"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tStop..CaptionW
|
||||||
|
#: Unit1.dfm:421
|
||||||
|
#: Unit1.dfm:1688
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr "停止"
|
||||||
|
|
||||||
|
#. Form1..SpTBXDock2..tbNavigation..tSearch..CaptionW
|
||||||
|
#: Unit1.dfm:425
|
||||||
|
#: Unit1.dfm:1700
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "搜索"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aNew..Category
|
||||||
|
#. Form1..TntActionList1..aPrint..Category
|
||||||
|
#: Unit1.dfm:1558
|
||||||
|
#: Unit1.dfm:1565
|
||||||
|
#: Unit1.dfm:1572
|
||||||
|
#: Unit1.dfm:1579
|
||||||
|
#: Unit1.dfm:1669
|
||||||
|
msgid "Files"
|
||||||
|
msgstr " 文件"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCut..Category
|
||||||
|
#. Form1..TntActionList1..aFind..Category
|
||||||
|
#: Unit1.dfm:1584
|
||||||
|
#: Unit1.dfm:1591
|
||||||
|
#: Unit1.dfm:1598
|
||||||
|
#: Unit1.dfm:1605
|
||||||
|
#: Unit1.dfm:1611
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "编辑"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aFavs..Caption
|
||||||
|
#: Unit1.dfm:1706
|
||||||
|
#: Unit1.dfm:1768
|
||||||
|
msgid "Favs"
|
||||||
|
msgstr "收藏"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Category
|
||||||
|
#: Unit1.dfm:1711
|
||||||
|
#: Unit1.dfm:1716
|
||||||
|
msgid "Customization"
|
||||||
|
msgstr "自定义"
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aCustomize..Caption
|
||||||
|
#: Unit1.dfm:1712
|
||||||
|
#: Unit1.dfm:1731
|
||||||
|
msgid "Customize..."
|
||||||
|
msgstr "自定义..."
|
||||||
|
|
||||||
|
#. Form1..TntActionList1..aEmbeddedCustomize..Caption
|
||||||
|
#: Unit1.dfm:1717
|
||||||
|
#: Unit1.dfm:1735
|
||||||
|
msgid "Embedded Customize..."
|
||||||
|
msgstr "嵌入式自定义..."
|
||||||
|
|
||||||
|
#. Form2..Caption
|
||||||
|
#: Unit2.dfm:7
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "选项"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tProperties..CaptionW
|
||||||
|
#: Unit2.dfm:49
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr "属性"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tPageSetup..CaptionW
|
||||||
|
#: Unit2.dfm:58
|
||||||
|
msgid "Page Setup"
|
||||||
|
msgstr "页面设置"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tHistory..CaptionW
|
||||||
|
#: Unit2.dfm:67
|
||||||
|
msgid "History"
|
||||||
|
msgstr "历史"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tFavorites..CaptionW
|
||||||
|
#: Unit2.dfm:76
|
||||||
|
msgid "Favorites"
|
||||||
|
msgstr "收藏"
|
||||||
|
|
||||||
|
#. Form2..SpTBXDock1..SpTBXToolbar1..tCustomize..CaptionW
|
||||||
|
#: Unit2.dfm:85
|
||||||
|
#: Unit2.dfm:168
|
||||||
|
msgid "Customizer"
|
||||||
|
msgstr "自定义"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton1..Caption
|
||||||
|
#: Unit2.dfm:122
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "确定"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton2..Caption
|
||||||
|
#: Unit2.dfm:137
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "取消"
|
||||||
|
|
||||||
|
#. Form2..LeftPanel..ButtonsPanel..SpTBXButton3..Caption
|
||||||
|
#: Unit2.dfm:152
|
||||||
|
msgid "Apply"
|
||||||
|
msgstr "应用"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save Layout"
|
||||||
|
msgstr "保存布局"
|
||||||
|
|
||||||
|
#: Unit1.pas:235
|
||||||
|
msgid "Save current layout as:"
|
||||||
|
msgstr "将当前布局保存为:"
|
||||||
|
|
||||||
|
#: Unit1.pas:248
|
||||||
|
msgid "Executed"
|
||||||
|
msgstr "被执行"
|
||||||
|
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
|
||||||
|
The Customizer Demo uses dxgettext (http://dybdahl.dk/dxgettext/) to translate the strings to various languages.
|
||||||
|
Unfortunately the translations are not complete:
|
||||||
|
|
||||||
|
de (German): 100% translated (Thomas Speck)
|
||||||
|
es (Spanish): 100% translated (Robert Lee)
|
||||||
|
fi (Finnish): 100% translated (Tapio Saarikumpu)
|
||||||
|
fr (French): 100% translated (Bob Baudewyns)
|
||||||
|
ja (Japanese): 100% translated (Minoru Yoshida)
|
||||||
|
ko (Korean): 60% translated
|
||||||
|
nl (Dutch): 100% translated (Alfred Vink)
|
||||||
|
pt_BR (Brazilian): 100% translated (Mauricio Magnani)
|
||||||
|
ru (Russian): 100% translated (Alexey Naumov)
|
||||||
|
sr_Cyrillic (Serbian): 100% translated (Marko Binic)
|
||||||
|
sr_Latin (Serbian): 100% translated (Marko Binic)
|
||||||
|
sv (Swedish): 100% translated (Mattias Andersson)
|
||||||
|
tr (Turkish): 100% translated (Zylar)
|
||||||
|
zh_CN (Chinese): 100% translated (Beta Xiong)
|
||||||
|
|
||||||
|
You can edit the translations with Notepad, just open the corresponding po file of the language.
|
||||||
|
For example to edit the Chinese translation open the \locale\zh_CN\LC_MESSAGES\default.po file with Notepad and edit the msgstr entries.
|
||||||
|
You can also use a PoEdit (http://poedit.sourceforge.net) to edit the files.
|
||||||
|
|
||||||
|
To create a new translation for a different language use the default.po file template located in the locale directory.
|
||||||
|
|
||||||
|
If you improve one of the translations please send it to me, my mail address is on:
|
||||||
|
http://www.silverpointdevelopment.com/sptbxlib/support.htm
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
program FormPopupMenu;
|
||||||
|
|
||||||
|
uses
|
||||||
|
Forms,
|
||||||
|
Unit1 in 'Unit1.pas' {Form1},
|
||||||
|
Unit2 in 'Unit2.pas' {Form2},
|
||||||
|
Unit3 in 'Unit3.pas' {Form3};
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
|
||||||
|
begin
|
||||||
|
Application.Initialize;
|
||||||
|
Application.CreateForm(TForm1, Form1);
|
||||||
|
Application.CreateForm(TForm2, Form2);
|
||||||
|
Application.CreateForm(TForm3, Form3);
|
||||||
|
Application.Run;
|
||||||
|
end.
|
||||||
200
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit1.dfm
Normal file
200
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit1.dfm
Normal file
@ -0,0 +1,200 @@
|
|||||||
|
object Form1: TForm1
|
||||||
|
Left = 312
|
||||||
|
Top = 215
|
||||||
|
Caption = 'Form1'
|
||||||
|
ClientHeight = 387
|
||||||
|
ClientWidth = 531
|
||||||
|
Color = clBtnFace
|
||||||
|
Font.Charset = DEFAULT_CHARSET
|
||||||
|
Font.Color = clWindowText
|
||||||
|
Font.Height = -11
|
||||||
|
Font.Name = 'MS Shell Dlg 2'
|
||||||
|
Font.Style = []
|
||||||
|
OldCreateOrder = False
|
||||||
|
OnShow = FormShow
|
||||||
|
PixelsPerInch = 96
|
||||||
|
TextHeight = 13
|
||||||
|
object SpTBXTitleBar1: TSpTBXTitleBar
|
||||||
|
Left = 0
|
||||||
|
Top = 0
|
||||||
|
Width = 531
|
||||||
|
Height = 387
|
||||||
|
Caption = 'Form1'
|
||||||
|
DesignSize = (
|
||||||
|
531
|
||||||
|
387)
|
||||||
|
object SpTBXSubmenuItem2: TSpTBXSubmenuItem
|
||||||
|
Caption = 'Skins'
|
||||||
|
Options = [tboDropdownArrow]
|
||||||
|
OnDrawItem = SpTBXSubmenuItem2DrawItem
|
||||||
|
LinkSubitems = SpTBXSubmenuItem3
|
||||||
|
end
|
||||||
|
object SpTBXStatusBar1: TSpTBXStatusBar
|
||||||
|
Left = 4
|
||||||
|
Top = 360
|
||||||
|
Width = 523
|
||||||
|
Height = 23
|
||||||
|
object SpTBXLabelItem1: TSpTBXLabelItem
|
||||||
|
Caption = 'Panel 1'
|
||||||
|
end
|
||||||
|
object SpTBXSeparatorItem2: TSpTBXSeparatorItem
|
||||||
|
end
|
||||||
|
object SpTBXLabelItem2: TSpTBXLabelItem
|
||||||
|
Caption = 'Panel 2'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
object SpTBXDock2: TSpTBXDock
|
||||||
|
Left = 4
|
||||||
|
Top = 26
|
||||||
|
Width = 523
|
||||||
|
Height = 23
|
||||||
|
object SpTBXToolbar2: TSpTBXToolbar
|
||||||
|
Left = 0
|
||||||
|
Top = 0
|
||||||
|
CloseButton = False
|
||||||
|
DockPos = -8
|
||||||
|
FullSize = True
|
||||||
|
MenuBar = True
|
||||||
|
ProcessShortCuts = True
|
||||||
|
ShrinkMode = tbsmWrap
|
||||||
|
Stretch = True
|
||||||
|
TabOrder = 0
|
||||||
|
Caption = 'SpTBXToolbar2'
|
||||||
|
object SpTBXSubmenuItem1: TSpTBXSubmenuItem
|
||||||
|
Tag = 100
|
||||||
|
Caption = '&File'
|
||||||
|
object SpTBXItem1: TSpTBXItem
|
||||||
|
Caption = '&New'
|
||||||
|
end
|
||||||
|
object SpTBXItem2: TSpTBXItem
|
||||||
|
Caption = '&Open'
|
||||||
|
end
|
||||||
|
object SpTBXSeparatorItem1: TSpTBXSeparatorItem
|
||||||
|
end
|
||||||
|
object SpTBXItem3: TSpTBXItem
|
||||||
|
Caption = '&Exit'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
object SpTBXSubmenuItem3: TSpTBXSubmenuItem
|
||||||
|
Caption = '&Skins'
|
||||||
|
object SpTBXSkinGroupItem1: TSpTBXSkinGroupItem
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
object SpTBXMultiDock1: TSpTBXMultiDock
|
||||||
|
Left = 4
|
||||||
|
Top = 49
|
||||||
|
Width = 178
|
||||||
|
Height = 311
|
||||||
|
object SpTBXDockablePanel1: TSpTBXDockablePanel
|
||||||
|
Left = 0
|
||||||
|
Top = 0
|
||||||
|
Width = 178
|
||||||
|
Height = 311
|
||||||
|
Caption = 'Form Popup Options'
|
||||||
|
DockPos = 0
|
||||||
|
TabOrder = 0
|
||||||
|
Options.Close = False
|
||||||
|
object SpTBXRadioGroup1: TSpTBXRadioGroup
|
||||||
|
Left = 7
|
||||||
|
Top = 56
|
||||||
|
Width = 161
|
||||||
|
Height = 97
|
||||||
|
Caption = 'BorderStyle'
|
||||||
|
TabOrder = 1
|
||||||
|
OnClick = SpTBXRadioGroup1Click
|
||||||
|
ItemIndex = 3
|
||||||
|
Items.Strings = (
|
||||||
|
'pbsFrame'
|
||||||
|
'pbsSizeable'
|
||||||
|
'pbsSizeableBottom'
|
||||||
|
'pbsSizeableRightBottom')
|
||||||
|
end
|
||||||
|
object SpTBXCheckBox1: TSpTBXCheckBox
|
||||||
|
Left = 11
|
||||||
|
Top = 32
|
||||||
|
Width = 69
|
||||||
|
Height = 21
|
||||||
|
Caption = 'Set focus'
|
||||||
|
TabOrder = 2
|
||||||
|
OnClick = SpTBXCheckBox1Click
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
object SpTBXGroupBox1: TSpTBXGroupBox
|
||||||
|
Left = 192
|
||||||
|
Top = 64
|
||||||
|
Width = 329
|
||||||
|
Height = 73
|
||||||
|
Caption = 'Calendar Popup'
|
||||||
|
Anchors = [akLeft, akTop, akRight]
|
||||||
|
TabOrder = 4
|
||||||
|
object SpTBXButtonEdit1: TSpTBXButtonEdit
|
||||||
|
Left = 16
|
||||||
|
Top = 33
|
||||||
|
Width = 121
|
||||||
|
Height = 21
|
||||||
|
TabOrder = 0
|
||||||
|
EditButton.Left = 97
|
||||||
|
EditButton.Top = 0
|
||||||
|
EditButton.Width = 20
|
||||||
|
EditButton.Height = 17
|
||||||
|
EditButton.Align = alRight
|
||||||
|
EditButton.DropDownMenu = SpTBXFormPopupMenu1
|
||||||
|
end
|
||||||
|
object SpTBXButton1: TSpTBXButton
|
||||||
|
Left = 184
|
||||||
|
Top = 32
|
||||||
|
Width = 121
|
||||||
|
Height = 25
|
||||||
|
Caption = 'Date'
|
||||||
|
TabOrder = 1
|
||||||
|
DropDownMenu = SpTBXFormPopupMenu1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
object SpTBXGroupBox2: TSpTBXGroupBox
|
||||||
|
Left = 192
|
||||||
|
Top = 168
|
||||||
|
Width = 329
|
||||||
|
Height = 81
|
||||||
|
Caption = 'Treeview Popup'
|
||||||
|
Anchors = [akLeft, akTop, akRight]
|
||||||
|
TabOrder = 5
|
||||||
|
object SpTBXButtonEdit2: TSpTBXButtonEdit
|
||||||
|
Left = 16
|
||||||
|
Top = 33
|
||||||
|
Width = 121
|
||||||
|
Height = 21
|
||||||
|
TabOrder = 0
|
||||||
|
EditButton.Left = 97
|
||||||
|
EditButton.Top = 0
|
||||||
|
EditButton.Width = 20
|
||||||
|
EditButton.Height = 17
|
||||||
|
EditButton.Align = alRight
|
||||||
|
EditButton.DropDownMenu = SpTBXFormPopupMenu2
|
||||||
|
end
|
||||||
|
object SpTBXButton2: TSpTBXButton
|
||||||
|
Left = 184
|
||||||
|
Top = 32
|
||||||
|
Width = 121
|
||||||
|
Height = 25
|
||||||
|
Caption = 'Colors'
|
||||||
|
TabOrder = 1
|
||||||
|
DropDownMenu = SpTBXFormPopupMenu2
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
object SpTBXFormPopupMenu1: TSpTBXFormPopupMenu
|
||||||
|
BorderStyle = pbsSizeableRightBottom
|
||||||
|
OnBeforeClosePopup = SpTBXFormPopupMenu1BeforeClosePopup
|
||||||
|
Left = 200
|
||||||
|
Top = 304
|
||||||
|
end
|
||||||
|
object SpTBXFormPopupMenu2: TSpTBXFormPopupMenu
|
||||||
|
BorderStyle = pbsSizeableRightBottom
|
||||||
|
OnBeforeClosePopup = SpTBXFormPopupMenu2BeforeClosePopup
|
||||||
|
Left = 240
|
||||||
|
Top = 304
|
||||||
|
end
|
||||||
|
end
|
||||||
123
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit1.pas
Normal file
123
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit1.pas
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
unit Unit1;
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||||||
|
Dialogs, StdCtrls, ExtCtrls, ImgList, Menus, ComCtrls,
|
||||||
|
TB2Dock, TB2Toolbar, TB2Item, TB2ExtItems,
|
||||||
|
SpTBXSkins, SpTBXItem, SpTBXControls, SpTBXEditors, SpTBXFormPopupMenu,
|
||||||
|
SpTBXDkPanels;
|
||||||
|
|
||||||
|
type
|
||||||
|
TForm1 = class(TForm)
|
||||||
|
SpTBXDock2: TSpTBXDock;
|
||||||
|
SpTBXToolbar2: TSpTBXToolbar;
|
||||||
|
SpTBXSubmenuItem1: TSpTBXSubmenuItem;
|
||||||
|
SpTBXStatusBar1: TSpTBXStatusBar;
|
||||||
|
SpTBXTitleBar1: TSpTBXTitleBar;
|
||||||
|
SpTBXSubmenuItem2: TSpTBXSubmenuItem;
|
||||||
|
SpTBXItem1: TSpTBXItem;
|
||||||
|
SpTBXItem2: TSpTBXItem;
|
||||||
|
SpTBXSeparatorItem1: TSpTBXSeparatorItem;
|
||||||
|
SpTBXItem3: TSpTBXItem;
|
||||||
|
SpTBXMultiDock1: TSpTBXMultiDock;
|
||||||
|
SpTBXDockablePanel1: TSpTBXDockablePanel;
|
||||||
|
SpTBXRadioGroup1: TSpTBXRadioGroup;
|
||||||
|
SpTBXCheckBox1: TSpTBXCheckBox;
|
||||||
|
SpTBXGroupBox1: TSpTBXGroupBox;
|
||||||
|
SpTBXGroupBox2: TSpTBXGroupBox;
|
||||||
|
SpTBXButtonEdit1: TSpTBXButtonEdit;
|
||||||
|
SpTBXButton1: TSpTBXButton;
|
||||||
|
SpTBXButtonEdit2: TSpTBXButtonEdit;
|
||||||
|
SpTBXButton2: TSpTBXButton;
|
||||||
|
SpTBXFormPopupMenu1: TSpTBXFormPopupMenu;
|
||||||
|
SpTBXFormPopupMenu2: TSpTBXFormPopupMenu;
|
||||||
|
SpTBXSubmenuItem3: TSpTBXSubmenuItem;
|
||||||
|
SpTBXSkinGroupItem1: TSpTBXSkinGroupItem;
|
||||||
|
SpTBXLabelItem1: TSpTBXLabelItem;
|
||||||
|
SpTBXSeparatorItem2: TSpTBXSeparatorItem;
|
||||||
|
SpTBXLabelItem2: TSpTBXLabelItem;
|
||||||
|
procedure SpTBXSubmenuItem2DrawItem(Sender: TObject; ACanvas: TCanvas;
|
||||||
|
ARect: TRect; ItemInfo: TSpTBXMenuItemInfo;
|
||||||
|
const PaintStage: TSpTBXPaintStage; var PaintDefault: Boolean);
|
||||||
|
procedure SpTBXCheckBox1Click(Sender: TObject);
|
||||||
|
procedure SpTBXRadioGroup1Click(Sender: TObject);
|
||||||
|
procedure FormShow(Sender: TObject);
|
||||||
|
procedure SpTBXFormPopupMenu1BeforeClosePopup(Sender: TObject;
|
||||||
|
Selected: Boolean);
|
||||||
|
procedure SpTBXFormPopupMenu2BeforeClosePopup(Sender: TObject;
|
||||||
|
Selected: Boolean);
|
||||||
|
private
|
||||||
|
{ Private declarations }
|
||||||
|
public
|
||||||
|
{ Public declarations }
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
Form1: TForm1;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
{$R *.dfm}
|
||||||
|
|
||||||
|
uses
|
||||||
|
Unit2, Unit3;
|
||||||
|
|
||||||
|
{ TForm1 }
|
||||||
|
|
||||||
|
procedure TForm1.FormShow(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXFormPopupMenu1.PopupForm := Form2;
|
||||||
|
SpTBXFormPopupMenu2.PopupForm := Form3;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXCheckBox1Click(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXFormPopupMenu1.PopupFocus := SpTBXCheckBox1.Checked;
|
||||||
|
SpTBXFormPopupMenu2.PopupFocus := SpTBXCheckBox1.Checked;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXRadioGroup1Click(Sender: TObject);
|
||||||
|
var
|
||||||
|
I: Integer;
|
||||||
|
begin
|
||||||
|
I := SpTBXRadioGroup1.ItemIndex;
|
||||||
|
if I > -1 then begin
|
||||||
|
SpTBXFormPopupMenu1.BorderStyle := TSpTBXPopupBorderStyleType(I);
|
||||||
|
SpTBXFormPopupMenu2.BorderStyle := TSpTBXPopupBorderStyleType(I);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXSubmenuItem2DrawItem(Sender: TObject;
|
||||||
|
ACanvas: TCanvas; ARect: TRect; ItemInfo: TSpTBXMenuItemInfo;
|
||||||
|
const PaintStage: TSpTBXPaintStage; var PaintDefault: Boolean);
|
||||||
|
begin
|
||||||
|
// Don't draw the items background
|
||||||
|
if (PaintStage = pstPrePaint) and (CurrentSkin.SkinName = 'Default') then
|
||||||
|
PaintDefault := False;
|
||||||
|
end;
|
||||||
|
|
||||||
|
//WMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWM
|
||||||
|
{ Popups }
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXFormPopupMenu1BeforeClosePopup(Sender: TObject;
|
||||||
|
Selected: Boolean);
|
||||||
|
begin
|
||||||
|
if Selected then begin
|
||||||
|
SpTBXButton1.Caption := DateTimeToStr(Form2.MonthCalendar1.Date);
|
||||||
|
SpTBXButtonEdit1.Text := DateTimeToStr(Form2.MonthCalendar1.Date);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXFormPopupMenu2BeforeClosePopup(Sender: TObject;
|
||||||
|
Selected: Boolean);
|
||||||
|
begin
|
||||||
|
if Selected then begin
|
||||||
|
SpTBXButton2.Caption := Form3.TreeView1.Selected.Text;
|
||||||
|
SpTBXButtonEdit2.Text := Form3.TreeView1.Selected.Text;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
end.
|
||||||
|
|
||||||
27
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit2.dfm
Normal file
27
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit2.dfm
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
object Form2: TForm2
|
||||||
|
Left = 0
|
||||||
|
Top = 0
|
||||||
|
Caption = 'Form2'
|
||||||
|
ClientHeight = 166
|
||||||
|
ClientWidth = 180
|
||||||
|
Color = clBtnFace
|
||||||
|
Font.Charset = DEFAULT_CHARSET
|
||||||
|
Font.Color = clWindowText
|
||||||
|
Font.Height = -11
|
||||||
|
Font.Name = 'Tahoma'
|
||||||
|
Font.Style = []
|
||||||
|
OldCreateOrder = False
|
||||||
|
OnCreate = FormCreate
|
||||||
|
PixelsPerInch = 96
|
||||||
|
TextHeight = 13
|
||||||
|
object MonthCalendar1: TMonthCalendar
|
||||||
|
Left = 0
|
||||||
|
Top = 0
|
||||||
|
Width = 180
|
||||||
|
Height = 166
|
||||||
|
Align = alClient
|
||||||
|
AutoSize = True
|
||||||
|
Date = 38924.819285115740000000
|
||||||
|
TabOrder = 0
|
||||||
|
end
|
||||||
|
end
|
||||||
50
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit2.pas
Normal file
50
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit2.pas
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
unit Unit2;
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||||||
|
Dialogs, ComCtrls, CommCtrl, ExtCtrls, SpTBXFormPopupMenu;
|
||||||
|
|
||||||
|
type
|
||||||
|
TForm2 = class(TForm)
|
||||||
|
MonthCalendar1: TMonthCalendar;
|
||||||
|
procedure FormCreate(Sender: TObject);
|
||||||
|
private
|
||||||
|
{ Private declarations }
|
||||||
|
FOldWndProc: TWndMethod;
|
||||||
|
procedure NewWndProc(var Message: TMessage);
|
||||||
|
public
|
||||||
|
{ Public declarations }
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
Form2: TForm2;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
{$R *.dfm}
|
||||||
|
|
||||||
|
procedure TForm2.FormCreate(Sender: TObject);
|
||||||
|
begin
|
||||||
|
// We can't use the MonthCalendar.OnClick event because
|
||||||
|
// it gets fired even when clicking on the Prev/Next month
|
||||||
|
// buttons. We have to subclass it and handle the
|
||||||
|
// MCN_SELECT notification
|
||||||
|
MonthCalendar1.DoubleBuffered := True;
|
||||||
|
FOldWndProc := MonthCalendar1.WindowProc;
|
||||||
|
MonthCalendar1.WindowProc := NewWndProc;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm2.NewWndProc(var Message: TMessage);
|
||||||
|
begin
|
||||||
|
FOldWndProc(Message); // default WndProc
|
||||||
|
if Message.Msg = CN_NOTIFY then
|
||||||
|
if TWMNotify(Message).NMHdr^.code = MCN_SELECT then begin
|
||||||
|
// Inform the ActiveFormPopupMenu that a selection was made.
|
||||||
|
if Assigned(ActiveFormPopupMenu) then
|
||||||
|
ActiveFormPopupMenu.ClosePopup(True);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
end.
|
||||||
36
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit3.dfm
Normal file
36
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit3.dfm
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
object Form3: TForm3
|
||||||
|
Left = 0
|
||||||
|
Top = 0
|
||||||
|
Caption = 'Form3'
|
||||||
|
ClientHeight = 105
|
||||||
|
ClientWidth = 174
|
||||||
|
Color = clBtnFace
|
||||||
|
Font.Charset = DEFAULT_CHARSET
|
||||||
|
Font.Color = clWindowText
|
||||||
|
Font.Height = -11
|
||||||
|
Font.Name = 'Tahoma'
|
||||||
|
Font.Style = []
|
||||||
|
OldCreateOrder = False
|
||||||
|
OnCreate = FormCreate
|
||||||
|
PixelsPerInch = 96
|
||||||
|
TextHeight = 13
|
||||||
|
object TreeView1: TTreeView
|
||||||
|
Left = 0
|
||||||
|
Top = 0
|
||||||
|
Width = 174
|
||||||
|
Height = 105
|
||||||
|
Align = alClient
|
||||||
|
BorderStyle = bsNone
|
||||||
|
HideSelection = False
|
||||||
|
HotTrack = True
|
||||||
|
Images = ImageList1
|
||||||
|
Indent = 19
|
||||||
|
StateImages = ImageList1
|
||||||
|
TabOrder = 0
|
||||||
|
OnMouseUp = TreeView1MouseUp
|
||||||
|
end
|
||||||
|
object ImageList1: TImageList
|
||||||
|
Left = 48
|
||||||
|
Top = 64
|
||||||
|
end
|
||||||
|
end
|
||||||
102
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit3.pas
Normal file
102
official/2.2.2+2.4.2/SpTBXLib/Demos/FormPopupMenu/Unit3.pas
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
unit Unit3;
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||||||
|
Dialogs, StdCtrls, ComCtrls, ImgList, SpTBXFormPopupMenu;
|
||||||
|
|
||||||
|
type
|
||||||
|
TForm3 = class(TForm)
|
||||||
|
TreeView1: TTreeView;
|
||||||
|
ImageList1: TImageList;
|
||||||
|
procedure FormCreate(Sender: TObject);
|
||||||
|
procedure TreeView1MouseUp(Sender: TObject; Button: TMouseButton;
|
||||||
|
Shift: TShiftState; X, Y: Integer);
|
||||||
|
private
|
||||||
|
{ Private declarations }
|
||||||
|
public
|
||||||
|
{ Public declarations }
|
||||||
|
function AddIcon(Fill: TColor; Circular: Boolean = False): Integer;
|
||||||
|
procedure CreateNodesProc(const S: string);
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
Form3: TForm3;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
{$R *.dfm}
|
||||||
|
|
||||||
|
function TForm3.AddIcon(Fill: TColor; Circular: Boolean = False): Integer;
|
||||||
|
var
|
||||||
|
B: TBitmap;
|
||||||
|
R: TRect;
|
||||||
|
begin
|
||||||
|
B := TBitmap.Create;
|
||||||
|
try
|
||||||
|
B.Width := 16;
|
||||||
|
B.Height := 16;
|
||||||
|
B.Canvas.Brush.Color := Fill;
|
||||||
|
R := Rect(0, 0, B.Width, B.Height);
|
||||||
|
InflateRect(R, -1, -1);
|
||||||
|
if Circular then
|
||||||
|
B.Canvas.Ellipse(R)
|
||||||
|
else
|
||||||
|
B.Canvas.Rectangle(R);
|
||||||
|
Result := ImageList1.Add(B, nil);
|
||||||
|
finally
|
||||||
|
B.Free;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm3.CreateNodesProc(const S: string);
|
||||||
|
var
|
||||||
|
ParentNode: TTreeNode;
|
||||||
|
C: TColor;
|
||||||
|
begin
|
||||||
|
// Add the color node
|
||||||
|
C := StringToColor(S);
|
||||||
|
ParentNode := TreeView1.Items.GetFirstNode;
|
||||||
|
if C < 0 then
|
||||||
|
ParentNode := ParentNode.getNextSibling;
|
||||||
|
with TreeView1.Items.AddChildObject(ParentNode, S, Pointer(C)) do begin
|
||||||
|
ImageIndex := AddIcon(C);
|
||||||
|
SelectedIndex := ImageIndex;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm3.FormCreate(Sender: TObject);
|
||||||
|
var
|
||||||
|
I: Integer;
|
||||||
|
begin
|
||||||
|
I := AddIcon(clWhite, True);
|
||||||
|
// Add the parent nodes to the TreeView
|
||||||
|
with TreeView1.Items.Add(nil, 'Standard Colors') do begin
|
||||||
|
ImageIndex := I;
|
||||||
|
SelectedIndex := ImageIndex;
|
||||||
|
end;
|
||||||
|
with TreeView1.Items.Add(nil, 'System Colors') do begin
|
||||||
|
ImageIndex := I;
|
||||||
|
SelectedIndex := ImageIndex;
|
||||||
|
end;
|
||||||
|
// Add the color nodes
|
||||||
|
GetColorValues(CreateNodesProc);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm3.TreeView1MouseUp(Sender: TObject; Button: TMouseButton;
|
||||||
|
Shift: TShiftState; X, Y: Integer);
|
||||||
|
var
|
||||||
|
Node: TTreeNode;
|
||||||
|
begin
|
||||||
|
if Button = mbLeft then begin
|
||||||
|
Node := TreeView1.GetNodeAt(X, Y);
|
||||||
|
if Assigned(Node) and Node.Selected and (Node.Level > 0) then begin
|
||||||
|
// Inform the ActiveFormPopupMenu that a selection was made.
|
||||||
|
if Assigned(ActiveFormPopupMenu) then
|
||||||
|
ActiveFormPopupMenu.ClosePopup(True);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
end.
|
||||||
13
official/2.2.2+2.4.2/SpTBXLib/Demos/Overview/Overview.dpr
Normal file
13
official/2.2.2+2.4.2/SpTBXLib/Demos/Overview/Overview.dpr
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
program Overview;
|
||||||
|
|
||||||
|
uses
|
||||||
|
Forms,
|
||||||
|
Unit1 in 'Unit1.pas' {Form1};
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
|
||||||
|
begin
|
||||||
|
Application.Initialize;
|
||||||
|
Application.CreateForm(TForm1, Form1);
|
||||||
|
Application.Run;
|
||||||
|
end.
|
||||||
380
official/2.2.2+2.4.2/SpTBXLib/Demos/Overview/Skins/WMP11.skn
Normal file
380
official/2.2.2+2.4.2/SpTBXLib/Demos/Overview/Skins/WMP11.skn
Normal file
@ -0,0 +1,380 @@
|
|||||||
|
; ===============================================================================================================
|
||||||
|
;
|
||||||
|
; Syntax:
|
||||||
|
; [Component]
|
||||||
|
; State.Part = Value
|
||||||
|
;
|
||||||
|
; Component can be:
|
||||||
|
; Single state components: Dock, DockablePanel, DockablePanelTitleBar, Gutter, MenuBar, OpenToolbarItem,
|
||||||
|
; Panel, Popup, Separator, Splitter, StatusBar, StatusBarGrip, TabBackground,
|
||||||
|
; TabToolbar, Toolbar, ToolbarGrip, Window, WindowTitleBar
|
||||||
|
; Multiple state componentes: MenuBarItem, MenuItem, ToolbarItem, Button, CheckBox, EditButton, EditFrame,
|
||||||
|
; Header, Label, ListItem, ProgressBar, RadioButton, Tab, TrackBar, TrackBarButton
|
||||||
|
;
|
||||||
|
; State can be: Normal, Disabled, HotTrack, Pushed, Checked, CheckedAndHotTrack
|
||||||
|
;
|
||||||
|
; Part can be: Body, Borders, TextColor
|
||||||
|
;
|
||||||
|
; ===============================================================================================================
|
||||||
|
;
|
||||||
|
; Value syntax:
|
||||||
|
;
|
||||||
|
; Body = GradientType, GradientColor1, GradientColor2, GradientColor3, GradientColor4
|
||||||
|
; Body represents the controls client area, GradientType can be one of the
|
||||||
|
; following values:
|
||||||
|
; 0 (Solid, uses Color1)
|
||||||
|
; 1 (Vertical Gradient, uses 2 colors)
|
||||||
|
; 2 (Horizontal Gradient, uses 2 colors)
|
||||||
|
; 3 (Vertical Glass Gradient, uses 4 colors)
|
||||||
|
; 4 (Horizontal Glass Gradient, uses 4 colors)
|
||||||
|
; 5 (Vertical Mirror Gradient, uses 4 colors)
|
||||||
|
; 6 (Horizontal Mirror Gradient, uses 4 colors)
|
||||||
|
; 7 (Vertical Top Mirror Gradient, uses 4 colors)
|
||||||
|
; 8 (Horizontal Top Mirror Gradient, uses 4 colors)
|
||||||
|
; 9 (Vertical 9 Pixel Mirror Gradient, uses 4 colors)
|
||||||
|
; 10 (Horizontal 9 Pixel Mirror Gradient, uses 4 colors)
|
||||||
|
;
|
||||||
|
; Example, this will draw a white/gray vertical gradient on the buttons normal state:
|
||||||
|
; [Button]
|
||||||
|
; Normal.Body = 1, clWhite, $DCD8D0
|
||||||
|
;
|
||||||
|
;
|
||||||
|
; Borders = BorderType, TopLeftColor, BottomRightColor, Internal TopLeftColor, Internal BottomRightColor
|
||||||
|
; Borders represents the controls borders, BorderType can be one of the
|
||||||
|
; following values:
|
||||||
|
; 0 (Rectangle border)
|
||||||
|
; 1 (Rounded border)
|
||||||
|
; 2 (Double rounded)
|
||||||
|
;
|
||||||
|
; Example, this will draw a white/black rounded beveled border on the buttons normal state:
|
||||||
|
; [Button]
|
||||||
|
; Normal.Borders = 1, clWhite, clBlack
|
||||||
|
;
|
||||||
|
; ===============================================================================================================
|
||||||
|
;
|
||||||
|
; Notes:
|
||||||
|
;
|
||||||
|
; 1) Colors must be in Delphi notation, for example: clWhite or $FFFFFF are valid
|
||||||
|
; 2) clNone is used as the empty fill color
|
||||||
|
; 3) Non used colors can be omited
|
||||||
|
|
||||||
|
|
||||||
|
[Skin]
|
||||||
|
Name=WMP11
|
||||||
|
Author = Ricardo Cardona
|
||||||
|
ColorBtnFace=clSilver
|
||||||
|
OfficeStatusBar=0
|
||||||
|
OfficeIcons=0
|
||||||
|
TitleBarBorderSize=4
|
||||||
|
|
||||||
|
[Dock]
|
||||||
|
Normal.Body=0, clBlack, clNone, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[DockablePanel]
|
||||||
|
Normal.Body=1, $007F665C, $007F665C, clNone, clNone
|
||||||
|
Normal.Borders=0, clBlack, clBlack, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[DockablePanelTitleBar]
|
||||||
|
Normal.Body=3, $00130F0D, $00080606, $00423630, $0082695F
|
||||||
|
Normal.Borders=1, $00765E56, clBlack, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[MenuBar]
|
||||||
|
Normal.Body=1, clSilver, $000E0B0A, clNone, clNone
|
||||||
|
Normal.Borders=2, $00B0B0B0, $00B0B0B0, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[Panel]
|
||||||
|
Normal.Body=0, $007F665C, clBlack, clNone, clNone
|
||||||
|
Normal.Borders=2, clGray, clGray, $00ADA492, clGray
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[Popup]
|
||||||
|
Normal.Body=0, $007F665C, clNone, clNone, clNone
|
||||||
|
Normal.Borders=0, clSilver, clSilver, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[Separator]
|
||||||
|
Normal.Body=0, clBlack, $007F665C, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clNone
|
||||||
|
|
||||||
|
[Splitter]
|
||||||
|
Normal.Body=2, $007F665C, $007F665C, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clNone
|
||||||
|
|
||||||
|
[StatusBar]
|
||||||
|
Normal.Body=1, $00131211, $00744C42, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[StatusBarGrip]
|
||||||
|
Normal.Body=1, clBlack, $007F665C, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[TabBackground]
|
||||||
|
Normal.Body=3, clBlack, clBlack, clBlack, $007F665C
|
||||||
|
Normal.Borders=0, clGray, clGray, clNone, clNone
|
||||||
|
Normal.TextColor=clNone
|
||||||
|
|
||||||
|
[Toolbar]
|
||||||
|
Normal.Body=1, clBlack, $007F665C, clNone, clNone
|
||||||
|
Normal.Borders=2, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[ToolbarGrip]
|
||||||
|
Normal.Body=1, clBlack, $007F665C, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[Window]
|
||||||
|
Normal.Body=1, clBlack, $007F665C, clNone, clNone
|
||||||
|
Normal.Borders=0, clGray, clGray, clSilver, $007F665C
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[WindowTitleBar]
|
||||||
|
Normal.Body=1, clBlack, $007F665C, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
|
||||||
|
[MenuBarItem]
|
||||||
|
Normal.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
Disabled.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Disabled.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Disabled.TextColor=clSilver
|
||||||
|
HotTrack.Body=5, $00D1D1D1, $00ADA492, $00603518, clBlack
|
||||||
|
HotTrack.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
HotTrack.TextColor=clWhite
|
||||||
|
Pushed.Body=1, clBlack, $00603518, clNone, clNone
|
||||||
|
Pushed.Borders=1, clGray, clGray, $00ADA492, $00E8E19D
|
||||||
|
Pushed.TextColor=clWhite
|
||||||
|
Checked.Body=3, clWhite, clBlack, clBlack, $00765F55
|
||||||
|
Checked.Borders=1, clGray, clGray, $00B0D4DF, clSilver
|
||||||
|
Checked.TextColor=clWhite
|
||||||
|
CheckedAndHotTrack.Body=3, clBlack, $00603518, $00ADA492, clWhite
|
||||||
|
CheckedAndHotTrack.Borders=1, clGray, clGray, $00ADA492, $00E8E19D
|
||||||
|
CheckedAndHotTrack.TextColor=clWhite
|
||||||
|
|
||||||
|
[MenuItem]
|
||||||
|
Normal.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
Disabled.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Disabled.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Disabled.TextColor=clSilver
|
||||||
|
HotTrack.Body=5, clWhite, $00ADA492, $00603518, clBlack
|
||||||
|
HotTrack.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
HotTrack.TextColor=clWhite
|
||||||
|
Pushed.Body=1, clSilver, clWhite, clNone, clNone
|
||||||
|
Pushed.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
Pushed.TextColor=clWhite
|
||||||
|
Checked.Body=5, clBlack, $00765F55, $00765F55, clBlack
|
||||||
|
Checked.Borders=1, clGray, clGray, $00B0D4DF, $00F0FDFF
|
||||||
|
Checked.TextColor=clWhite
|
||||||
|
CheckedAndHotTrack.Body=5, clBlack, $00603518, $00ADA492, clWhite
|
||||||
|
CheckedAndHotTrack.Borders=1, clGray, clGray, $00ADA492, $00E8E19D
|
||||||
|
CheckedAndHotTrack.TextColor=clWhite
|
||||||
|
|
||||||
|
[ToolbarItem]
|
||||||
|
Normal.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
Disabled.Body=0, clNone, $00392E2B, $005A4A44, $00866E65
|
||||||
|
Disabled.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Disabled.TextColor=clSilver
|
||||||
|
HotTrack.Body=5, clWhite, $00ADA492, $00603518, clBlack
|
||||||
|
HotTrack.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
HotTrack.TextColor=clWhite
|
||||||
|
Pushed.Body=5, clGray, clBlack, clBlack, clGray
|
||||||
|
Pushed.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
Pushed.TextColor=clWhite
|
||||||
|
Checked.Body=5, clGray, clBlack, clBlack, clGray
|
||||||
|
Checked.Borders=1, clGray, clGray, $00B0D4DF, $00F0FDFF
|
||||||
|
Checked.TextColor=clWhite
|
||||||
|
CheckedAndHotTrack.Body=5, clBlack, $00603518, $00ADA492, clWhite
|
||||||
|
CheckedAndHotTrack.Borders=1, clGray, clGray, $00ADA492, $00E8E19D
|
||||||
|
CheckedAndHotTrack.TextColor=clWhite
|
||||||
|
|
||||||
|
[Button]
|
||||||
|
Normal.Body=3, clWhite, clBlack, clBlack, $00765F55
|
||||||
|
Normal.Borders=1, $00909090, $00909090, $00909090, $00909090
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
Disabled.Body=1, clBlack, $009E9E9E, clNone, clNone
|
||||||
|
Disabled.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
Disabled.TextColor=clSilver
|
||||||
|
HotTrack.Body=5, clWhite, $00ADA492, $00603518, clBlack
|
||||||
|
HotTrack.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
HotTrack.TextColor=clWhite
|
||||||
|
Pushed.Body=5, clBlack, $00603518, $00ADA492, clWhite
|
||||||
|
Pushed.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
Pushed.TextColor=clWhite
|
||||||
|
Checked.Body=5, $00765F55, clBlack, clBlack, $00765F55
|
||||||
|
Checked.Borders=1, clGray, clGray, $00B0D4DF, $00F0FDFF
|
||||||
|
Checked.TextColor=clWhite
|
||||||
|
CheckedAndHotTrack.Body=5, clBlack, $00550000, $007B7B7B, clWhite
|
||||||
|
CheckedAndHotTrack.Borders=1, clGray, clGray, $00ADA492, $00E8E19D
|
||||||
|
CheckedAndHotTrack.TextColor=clWhite
|
||||||
|
|
||||||
|
[CheckBox]
|
||||||
|
Normal.Body=0, clBlack, clNone, clNone, clNone
|
||||||
|
Normal.Borders=0, clGray, clGray, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
Disabled.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Disabled.Borders=0, $0099A8AC, $0099A8AC, clNone, clNone
|
||||||
|
Disabled.TextColor=clSilver
|
||||||
|
HotTrack.Body=5, clWhite, $00ADA492, $00603518, clBlack
|
||||||
|
HotTrack.Borders=1, $00909090, $00909090, $000E0B0A, $00090706
|
||||||
|
HotTrack.TextColor=clWhite
|
||||||
|
Pushed.Body=5, $00E8E19D, $00603518, $00ADA492, clWhite
|
||||||
|
Pushed.Borders=1, $00E8E19D, $00603518, $00ADA492, clWhite
|
||||||
|
Pushed.TextColor=clWhite
|
||||||
|
Checked.Body=0, $00010101, $00F0FDFF, clNone, clNone
|
||||||
|
Checked.Borders=1, clGray, clGray, clBlack, clBlack
|
||||||
|
Checked.TextColor=clWhite
|
||||||
|
CheckedAndHotTrack.Body=5, clWhite, $00ADA492, $00603518, clBlack
|
||||||
|
CheckedAndHotTrack.Borders=0, clGray, clGray, $00ADA492, $00E8E19D
|
||||||
|
CheckedAndHotTrack.TextColor=clWhite
|
||||||
|
|
||||||
|
[EditButton]
|
||||||
|
Normal.Body=5, clWhite, clBlack, clBlack, $00765F55
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
HotTrack.Body=5, clWhite, $00ADA492, $00603518, clBlack
|
||||||
|
HotTrack.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
HotTrack.TextColor=clWhite
|
||||||
|
Pushed.Body=5, $00E8E19D, $00603518, $00ADA492, clWhite
|
||||||
|
Pushed.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
Pushed.TextColor=clNone
|
||||||
|
Checked.Body=5, $00D2F9FF, $00F0FDFF, clNone, clNone
|
||||||
|
Checked.Borders=1, clGray, clGray, $00B0D4DF, $00F0FDFF
|
||||||
|
Checked.TextColor=clNone
|
||||||
|
CheckedAndHotTrack.Body=5, clWhite, $00E8E19D, clNone, clNone
|
||||||
|
CheckedAndHotTrack.Borders=1, clGray, clGray, $00ADA492, $00E8E19D
|
||||||
|
CheckedAndHotTrack.TextColor=clNone
|
||||||
|
|
||||||
|
[EditFrame]
|
||||||
|
Normal.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.Borders=1, clNone, clNone, $00D0D0D0, $00D0D0D0
|
||||||
|
Normal.TextColor=clNone
|
||||||
|
Disabled.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Disabled.Borders=1, clNone, clNone, $0099A8AC, $0099A8AC
|
||||||
|
Disabled.TextColor=clNone
|
||||||
|
HotTrack.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
HotTrack.Borders=1, clNone, clNone, $00909090, $00909090
|
||||||
|
HotTrack.TextColor=clNone
|
||||||
|
|
||||||
|
[Label]
|
||||||
|
Normal.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
Disabled.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Disabled.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Disabled.TextColor=clSilver
|
||||||
|
HotTrack.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
HotTrack.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
HotTrack.TextColor=clWhite
|
||||||
|
Pushed.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Pushed.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Pushed.TextColor=clWhite
|
||||||
|
|
||||||
|
[ListItem]
|
||||||
|
Normal.Body=0, $00765F55, clNone, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clNone
|
||||||
|
Disabled.Body=0, $00765F55, clNone, clNone, clNone
|
||||||
|
Disabled.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Disabled.TextColor=clSilver
|
||||||
|
HotTrack.Body=0, $00765F55, $00E5E2DB, clNone, clNone
|
||||||
|
HotTrack.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
HotTrack.TextColor=clWhite
|
||||||
|
Pushed.Body=0, $00765F55, clWhite, clNone, clNone
|
||||||
|
Pushed.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
Pushed.TextColor=clNone
|
||||||
|
Checked.Body=0, $00765F55, $00F0FDFF, clNone, clNone
|
||||||
|
Checked.Borders=1, clGray, clGray, $00B0D4DF, $00F0FDFF
|
||||||
|
Checked.TextColor=clNone
|
||||||
|
CheckedAndHotTrack.Body=0, $00765F55, $00E8E19D, clNone, clNone
|
||||||
|
CheckedAndHotTrack.Borders=1, clGray, clGray, $00ADA492, $00E8E19D
|
||||||
|
CheckedAndHotTrack.TextColor=clNone
|
||||||
|
|
||||||
|
[ProgressBar]
|
||||||
|
Normal.Body=2, $007F665C, $007F665C, clNone, clNone
|
||||||
|
Normal.Borders=2, $005E4B44, $00765F55, clNone, clNone
|
||||||
|
Normal.TextColor=clNone
|
||||||
|
HotTrack.Body=3, $00FFC584, $00CD410F, $00FF966E, $00866E65
|
||||||
|
HotTrack.Borders=2, $005E4B44, $00765F55, clNone, clNone
|
||||||
|
HotTrack.TextColor=clNone
|
||||||
|
|
||||||
|
[RadioButton]
|
||||||
|
Normal.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.Borders=0, clGray, clGray, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
Disabled.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Disabled.Borders=0, $0099A8AC, $0099A8AC, clNone, clNone
|
||||||
|
Disabled.TextColor=clSilver
|
||||||
|
HotTrack.Body=5, clWhite, $00ADA492, $00603518, clBlack
|
||||||
|
HotTrack.Borders=1, clWhite, clWhite, clWhite, clWhite
|
||||||
|
HotTrack.TextColor=clWhite
|
||||||
|
Pushed.Body=0, clNone, clWhite, clNone, clNone
|
||||||
|
Pushed.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
Pushed.TextColor=clWhite
|
||||||
|
Checked.Body=0, clNone, $00F0FDFF, clNone, clNone
|
||||||
|
Checked.Borders=1, clGray, clGray, $00B0D4DF, $00F0FDFF
|
||||||
|
Checked.TextColor=clWhite
|
||||||
|
CheckedAndHotTrack.Body=5, $00E8E19D, $00603518, $00ADA492, clBlack
|
||||||
|
CheckedAndHotTrack.Borders=1, clWhite, clWhite, clWhite, clWhite
|
||||||
|
CheckedAndHotTrack.TextColor=clWhite
|
||||||
|
|
||||||
|
[Tab]
|
||||||
|
Normal.Body=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
Normal.TextColor=clSilver
|
||||||
|
HotTrack.Body=5, clWhite, $00ADA492, $00603518, clBlack
|
||||||
|
HotTrack.Borders=1, $00A0A0A0, $00A0A0A0, clNone, clNone
|
||||||
|
HotTrack.TextColor=clWhite
|
||||||
|
Pushed.Body=0, clNone, clWhite, clNone, clNone
|
||||||
|
Pushed.Borders=1, $00909090, $00909090, clNone, clNone
|
||||||
|
Pushed.TextColor=clWhite
|
||||||
|
Checked.Body=3, clWhite, clBlack, clBlack, clBlack
|
||||||
|
Checked.Borders=1, $00ADA492, $00ADA492, $00603518, clBlack
|
||||||
|
Checked.TextColor=clWhite
|
||||||
|
CheckedAndHotTrack.Body=5, clWhite, $00ADA492, $00603518, clBlack
|
||||||
|
CheckedAndHotTrack.Borders=1, clGray, clGray, $00ADA492, $00E8E19D
|
||||||
|
CheckedAndHotTrack.TextColor=clWhite
|
||||||
|
|
||||||
|
[TrackBar]
|
||||||
|
Normal.Body=3, $00FFC584, $00CD410F, $00FF966E, $00866E65
|
||||||
|
Normal.Borders=2, $005E4B44, $00765F55, clNone, clNone
|
||||||
|
Normal.TextColor=clNone
|
||||||
|
HotTrack.Body=1, clWhite, clBlack, clNone, clNone
|
||||||
|
HotTrack.Borders=2, clNone, clNone, clNone, clNone
|
||||||
|
HotTrack.TextColor=clNone
|
||||||
|
|
||||||
|
[TrackBarButton]
|
||||||
|
Normal.Body=3, clWhite, clBlack, clBlack, $00765F55
|
||||||
|
Normal.Borders=2, $00909090, $00909090, clNone, clNone
|
||||||
|
Normal.TextColor=clNone
|
||||||
|
HotTrack.Body=5, clWhite, $00ADA492, $00603518, $00E8E19D
|
||||||
|
HotTrack.Borders=0, clNone, clNone, clNone, clNone
|
||||||
|
HotTrack.TextColor=clNone
|
||||||
|
Pushed.Body=5, $00765F55, clBlack, clBlack, clWhite
|
||||||
|
Pushed.Borders=2, clGray, clGray, $00F0D4DF, clNone
|
||||||
|
Pushed.TextColor=clNone
|
||||||
|
|
||||||
|
[Header]
|
||||||
|
Normal.Body=3, clWhite, clBlack, clBlack, $00765F55
|
||||||
|
Normal.Borders=0, $00D0D0D0, $00909090, clNone, clNone
|
||||||
|
Normal.TextColor=clWhite
|
||||||
|
HotTrack.Body=5, clWhite, $00ADA492, $00603518, clBlack
|
||||||
|
HotTrack.Borders=0, $00909090, $00909090, clNone, clNone
|
||||||
|
HotTrack.TextColor=clWhite
|
||||||
|
Pushed.Body=5, $00E8E19D, $00603518, $00ADA492, clWhite
|
||||||
|
Pushed.Borders=0, $00909090, $00909090, clNone, clNone
|
||||||
|
Pushed.TextColor=clWhite
|
||||||
1901
official/2.2.2+2.4.2/SpTBXLib/Demos/Overview/Unit1.dfm
Normal file
1901
official/2.2.2+2.4.2/SpTBXLib/Demos/Overview/Unit1.dfm
Normal file
File diff suppressed because it is too large
Load Diff
431
official/2.2.2+2.4.2/SpTBXLib/Demos/Overview/Unit1.pas
Normal file
431
official/2.2.2+2.4.2/SpTBXLib/Demos/Overview/Unit1.pas
Normal file
@ -0,0 +1,431 @@
|
|||||||
|
unit Unit1;
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
|
||||||
|
Dialogs, ExtCtrls, StdCtrls, ActnList, ImgList, ExtDlgs, ComCtrls,
|
||||||
|
// TB2K
|
||||||
|
TB2Item, TB2Toolbar, TB2Dock, TB2ExtItems,
|
||||||
|
// SpTBXLib
|
||||||
|
SpTBXSkins, SpTBXItem, SpTBXDkPanels, SpTBXTabs, SpTBXEditors, SpTBXControls,
|
||||||
|
SpTBXExtEditors;
|
||||||
|
|
||||||
|
type
|
||||||
|
TForm1 = class(TForm)
|
||||||
|
SpTBXDock1: TSpTBXDock;
|
||||||
|
SpTBXMultiDock1: TSpTBXMultiDock;
|
||||||
|
SpTBXMultiDock3: TSpTBXMultiDock;
|
||||||
|
SpTBXDockablePanel1: TSpTBXDockablePanel;
|
||||||
|
SpTBXToolbar1: TSpTBXToolbar;
|
||||||
|
Panel1: TPanel;
|
||||||
|
SpTBXTabControl1: TSpTBXTabControl;
|
||||||
|
SpTBXRightAlignSpacerItem1: TSpTBXRightAlignSpacerItem;
|
||||||
|
tabClose: TSpTBXItem;
|
||||||
|
SpTBXSubmenuItem1: TSpTBXSubmenuItem;
|
||||||
|
SpTBXSubmenuItem2: TSpTBXSubmenuItem;
|
||||||
|
SpTBXItem2: TSpTBXItem;
|
||||||
|
tabRight: TSpTBXItem;
|
||||||
|
tabLeft: TSpTBXItem;
|
||||||
|
SpTBXToolbar3: TSpTBXToolbar;
|
||||||
|
SpTBXLabelItem3: TSpTBXLabelItem;
|
||||||
|
SpTBXItem7: TSpTBXItem;
|
||||||
|
subColor: TSpTBXSubmenuItem;
|
||||||
|
SpTBXLabelItem4: TSpTBXLabelItem;
|
||||||
|
subLang: TSpTBXSubmenuItem;
|
||||||
|
subSkins: TSpTBXSubmenuItem;
|
||||||
|
SpTBXSkinGroupItem1: TSpTBXSkinGroupItem;
|
||||||
|
SpTBXTabControl2: TSpTBXTabControl;
|
||||||
|
SpTBXTabItem1: TSpTBXTabItem;
|
||||||
|
SpTBXTabSheet1: TSpTBXTabSheet;
|
||||||
|
ActionList1: TActionList;
|
||||||
|
Action1: TAction;
|
||||||
|
Action2: TAction;
|
||||||
|
SpTBXButton1: TSpTBXButton;
|
||||||
|
SpTBXStatusBar1: TSpTBXStatusBar;
|
||||||
|
SpTBXSeparatorItem2: TSpTBXSeparatorItem;
|
||||||
|
hintLabel: TSpTBXLabelItem;
|
||||||
|
SpTBXSeparatorItem3: TSpTBXSeparatorItem;
|
||||||
|
ImageList1: TImageList;
|
||||||
|
SpTBXLabelItem6: TSpTBXLabelItem;
|
||||||
|
SpTBXSeparatorItem4: TSpTBXSeparatorItem;
|
||||||
|
subLang2: TSpTBXSubmenuItem;
|
||||||
|
Image1: TImage;
|
||||||
|
SpTBXSeparatorItem5: TSpTBXSeparatorItem;
|
||||||
|
SpTBXSeparatorItem8: TSpTBXSeparatorItem;
|
||||||
|
SpTBXTabItem3: TSpTBXTabItem;
|
||||||
|
SpTBXTabSheet3: TSpTBXTabSheet;
|
||||||
|
SpTBXGroupBox5: TSpTBXGroupBox;
|
||||||
|
SpTBXLabel2: TSpTBXLabel;
|
||||||
|
SpTBXLabel3: TSpTBXLabel;
|
||||||
|
SpTBXLabel4: TSpTBXLabel;
|
||||||
|
SpTBXLabel7: TSpTBXLabel;
|
||||||
|
SpTBXLabel5: TSpTBXLabel;
|
||||||
|
SpTBXToolbar2: TSpTBXToolbar;
|
||||||
|
SpTBXItem1: TSpTBXItem;
|
||||||
|
SpTBXSeparatorItem6: TSpTBXSeparatorItem;
|
||||||
|
SpTBXItem3: TSpTBXItem;
|
||||||
|
SpTBXItem4: TSpTBXItem;
|
||||||
|
SpTBXSeparatorItem7: TSpTBXSeparatorItem;
|
||||||
|
SpTBXLabel6: TSpTBXLabel;
|
||||||
|
DP1: TSpTBXDockablePanel;
|
||||||
|
DP2: TSpTBXDockablePanel;
|
||||||
|
DP3: TSpTBXDockablePanel;
|
||||||
|
SpTBXLabel1: TSpTBXLabel;
|
||||||
|
SpTBXLabel8: TSpTBXLabel;
|
||||||
|
SpTBXLabel9: TSpTBXLabel;
|
||||||
|
SpTBXLabel10: TSpTBXLabel;
|
||||||
|
SpTBXLabel11: TSpTBXLabel;
|
||||||
|
SpTBXLabel12: TSpTBXLabel;
|
||||||
|
SpTBXLabel13: TSpTBXLabel;
|
||||||
|
SpTBXLabel15: TSpTBXLabel;
|
||||||
|
SpTBXLabel16: TSpTBXLabel;
|
||||||
|
SpTBXLabel17: TSpTBXLabel;
|
||||||
|
Timer1: TTimer;
|
||||||
|
SpTBXGroupBox6: TSpTBXGroupBox;
|
||||||
|
progressDec: TSpTBXButton;
|
||||||
|
progressInc: TSpTBXButton;
|
||||||
|
progressAnimate: TSpTBXButton;
|
||||||
|
SpTBXProgressBar1: TSpTBXProgressBar;
|
||||||
|
progressFiles: TSpTBXCheckBox;
|
||||||
|
SpTBXProgressBar2: TSpTBXProgressBar;
|
||||||
|
TBControlItem2: TTBControlItem;
|
||||||
|
SpTBXTrackBar1: TSpTBXTrackBar;
|
||||||
|
SpTBXComboBox1: TSpTBXComboBox;
|
||||||
|
TBControlItem3: TTBControlItem;
|
||||||
|
SpTBXPanel2: TSpTBXPanel;
|
||||||
|
Memo2: TMemo;
|
||||||
|
SpTBXSplitter1: TSpTBXSplitter;
|
||||||
|
SpTBXSplitter2: TSpTBXSplitter;
|
||||||
|
SpTBXTabItem6: TSpTBXTabItem;
|
||||||
|
SpTBXTabSheet6: TSpTBXTabSheet;
|
||||||
|
SpTBXButtonEdit1: TSpTBXButtonEdit;
|
||||||
|
SpTBXComboBox2: TSpTBXComboBox;
|
||||||
|
SpTBXEdit1: TSpTBXEdit;
|
||||||
|
SpTBXSpinEdit1: TSpTBXSpinEdit;
|
||||||
|
LangListBox: TSpTBXListBox;
|
||||||
|
rgSkinType: TSpTBXRadioGroup;
|
||||||
|
SpTBXGroupBox1: TSpTBXGroupBox;
|
||||||
|
SpTBXGroupBox2: TSpTBXGroupBox;
|
||||||
|
trackTickmarks: TSpTBXRadioGroup;
|
||||||
|
skinButton: TSpTBXSpeedButton;
|
||||||
|
SpTBXDockablePanel2: TSpTBXDockablePanel;
|
||||||
|
OpenDialog1: TOpenDialog;
|
||||||
|
SpTBXSeparatorItem1: TSpTBXSeparatorItem;
|
||||||
|
SpTBXColorPalette1: TSpTBXColorPalette;
|
||||||
|
SpTBXItem5: TSpTBXItem;
|
||||||
|
SpTBXSpinEditItem1: TSpTBXSpinEditItem;
|
||||||
|
Panel2: TPanel;
|
||||||
|
SpTBXSpeedButton1: TSpTBXSpeedButton;
|
||||||
|
SpTBXSpeedButton2: TSpTBXSpeedButton;
|
||||||
|
SpTBXSpeedButton3: TSpTBXSpeedButton;
|
||||||
|
SpTBXColorEdit1: TSpTBXColorEdit;
|
||||||
|
SpTBXFontComboBox1: TSpTBXFontComboBox;
|
||||||
|
procedure FormShow(Sender: TObject);
|
||||||
|
procedure tabCloseClick(Sender: TObject);
|
||||||
|
procedure ActionList1Update(Action: TBasicAction;
|
||||||
|
var Handled: Boolean);
|
||||||
|
procedure Action1Execute(Sender: TObject);
|
||||||
|
procedure Action2Execute(Sender: TObject);
|
||||||
|
procedure SpTBXTabControl2Resize(Sender: TObject);
|
||||||
|
procedure rgSkinTypeClick(Sender: TObject);
|
||||||
|
procedure hintLabelDrawHint(Sender: TObject;
|
||||||
|
AHintBitmap: TBitmap; var AHint: WideString;
|
||||||
|
var PaintDefault: Boolean);
|
||||||
|
procedure progressDecClick(Sender: TObject);
|
||||||
|
procedure progressIncClick(Sender: TObject);
|
||||||
|
procedure progressAnimateClick(Sender: TObject);
|
||||||
|
procedure Timer1Timer(Sender: TObject);
|
||||||
|
procedure SpTBXProgressBar1ProgressChange(Sender: TObject;
|
||||||
|
NewPosition: Integer);
|
||||||
|
procedure progressFilesClick(Sender: TObject);
|
||||||
|
procedure TrackbarTickMarksRadioClick(Sender: TObject);
|
||||||
|
procedure skinButtonClick(Sender: TObject);
|
||||||
|
procedure SpTBXSpeedButton1Draw(Sender: TObject; ACanvas: TCanvas;
|
||||||
|
ARect: TRect; const PaintStage: TSpTBXPaintStage;
|
||||||
|
var PaintDefault: Boolean);
|
||||||
|
private
|
||||||
|
{ Private declarations }
|
||||||
|
procedure LangClick(Sender: TObject);
|
||||||
|
public
|
||||||
|
AppPath: String;
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
Form1: TForm1;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
uses
|
||||||
|
Registry;
|
||||||
|
|
||||||
|
{$R *.dfm}
|
||||||
|
|
||||||
|
//WMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWM
|
||||||
|
{ Utility functions }
|
||||||
|
|
||||||
|
function SpGetWindowsDir: String;
|
||||||
|
var
|
||||||
|
Z: Cardinal;
|
||||||
|
begin
|
||||||
|
Z := GetWindowsDirectory(nil, 0);
|
||||||
|
if Z > 0 then begin
|
||||||
|
SetLength(Result, Z);
|
||||||
|
GetWindowsDirectory(PChar(Result), Z);
|
||||||
|
Result := IncludeTrailingPathDelimiter(Result);
|
||||||
|
end
|
||||||
|
else
|
||||||
|
Result := '';
|
||||||
|
end;
|
||||||
|
|
||||||
|
function SpGetWinAmpDir: String;
|
||||||
|
var
|
||||||
|
Registry: TRegistry;
|
||||||
|
begin
|
||||||
|
Registry := TRegistry.Create;
|
||||||
|
try
|
||||||
|
Registry.RootKey := HKEY_CURRENT_USER;
|
||||||
|
// False because we do not want to create it if it doesn't exist
|
||||||
|
Registry.OpenKey('\Software\Winamp', False);
|
||||||
|
Result := Registry.ReadString('');
|
||||||
|
if Length(Result) > 0 then
|
||||||
|
Result := IncludeTrailingPathDelimiter(Result);
|
||||||
|
finally
|
||||||
|
Registry.Free;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
//WMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWM
|
||||||
|
{ Form }
|
||||||
|
|
||||||
|
procedure TForm1.FormShow(Sender: TObject);
|
||||||
|
var
|
||||||
|
A: TSpTBXItem;
|
||||||
|
D: String;
|
||||||
|
I: Integer;
|
||||||
|
begin
|
||||||
|
// Set skin type to sknTBX
|
||||||
|
SkinManager.ChangeControlSkinType(Self, sknSkin);
|
||||||
|
|
||||||
|
// Add the Languages to the Languages menu item and TabControl
|
||||||
|
for I := 0 to LangListBox.Items.Count - 1 do begin
|
||||||
|
A := TSpTBXItem.Create(nil);
|
||||||
|
try
|
||||||
|
A.Caption := LangListBox.Items[I];
|
||||||
|
A.GroupIndex := 100;
|
||||||
|
A.AutoCheck := True;
|
||||||
|
A.Tag := I;
|
||||||
|
A.OnClick := LangClick;
|
||||||
|
subLang.Add(A);
|
||||||
|
with SpTBXTabControl1.Add(LangListBox.Items[I]) do
|
||||||
|
Tag := I;
|
||||||
|
except
|
||||||
|
A.Free;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
// Select the first Language
|
||||||
|
subLang.Items[0].Click;
|
||||||
|
SpTBXTabControl1.ActiveTabIndex := 0;
|
||||||
|
SpTBXTabControl2.ActiveTabIndex := 0;
|
||||||
|
|
||||||
|
// Load default button Skin
|
||||||
|
AppPath := IncludeTrailingPathDelimiter(ExtractFilePath(Application.ExeName));
|
||||||
|
|
||||||
|
// Initialize the link labels
|
||||||
|
D := SpGetWindowsDir;
|
||||||
|
if Length(D) > 0 then begin
|
||||||
|
SpTBXLabel4.LinkText := D;
|
||||||
|
SpTBXLabel5.LinkText := 'explorer.exe';
|
||||||
|
SpTBXLabel5.LinkTextParams := '/e, ' + D;
|
||||||
|
end;
|
||||||
|
D := SpGetWinAmpDir;
|
||||||
|
if Length(D) > 0 then
|
||||||
|
SpTBXLabel6.LinkText := D + 'winamp.exe';
|
||||||
|
if FileExists(AppPath + 'unit1.pas') then
|
||||||
|
SpTBXLabel7.LinkTextParams := '"' + AppPath + 'unit1.pas' + '"';
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.LangClick(Sender: TObject);
|
||||||
|
var
|
||||||
|
A: TSpTBXItem;
|
||||||
|
begin
|
||||||
|
A := Sender as TSpTBXItem;
|
||||||
|
subLang.Caption := A.Caption;
|
||||||
|
subLang2.Caption := A.Caption;
|
||||||
|
SpTBXTabControl1.ActiveTabIndex := subLang.IndexOf(A);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.tabCloseClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXTabControl1.Visible := False;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.ActionList1Update(Action: TBasicAction; var Handled: Boolean);
|
||||||
|
var
|
||||||
|
L, R: Boolean;
|
||||||
|
begin
|
||||||
|
SpTBXTabControl1.ScrollState(L, R);
|
||||||
|
Action1.Enabled := L;
|
||||||
|
Action2.Enabled := R;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.Action1Execute(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXTabControl1.ScrollLeft;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.Action2Execute(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXTabControl1.ScrollRight;
|
||||||
|
end;
|
||||||
|
|
||||||
|
//WMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWM
|
||||||
|
{ Options Panel }
|
||||||
|
|
||||||
|
procedure TForm1.rgSkinTypeClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SkinManager.ChangeControlSkinType(Self, TSpTBXSkinType(rgSkinType.ItemIndex));
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.skinButtonClick(Sender: TObject);
|
||||||
|
var
|
||||||
|
S: string;
|
||||||
|
I: Integer;
|
||||||
|
begin
|
||||||
|
S := AppPath + 'Skins';
|
||||||
|
if DirectoryExists(S) then
|
||||||
|
OpenDialog1.InitialDir := S;
|
||||||
|
|
||||||
|
if OpenDialog1.Execute then
|
||||||
|
if FileExists(OpenDialog1.FileName) then begin
|
||||||
|
// Load the skin file and add it to the SkinList
|
||||||
|
I := SkinManager.SkinsList.AddSkinFromFile(OpenDialog1.FileName);
|
||||||
|
if I > -1 then begin
|
||||||
|
// Set the new skin
|
||||||
|
SkinManager.SetSkin(SkinManager.SkinsList[I]);
|
||||||
|
// Recreate the SkinGroupItem
|
||||||
|
SpTBXSkinGroupItem1.Recreate;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXTabControl2Resize(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXButton1.Left := (SpTBXTabControl2.Width - SpTBXButton1.Width) div 2;
|
||||||
|
SpTBXProgressBar1.Left := (SpTBXTabControl2.Width - SpTBXProgressBar1.Width) div 2;
|
||||||
|
SpTBXTrackBar1.Left := (SpTBXTabControl2.Width - SpTBXTrackBar1.Width) div 2;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXSpeedButton1Draw(Sender: TObject; ACanvas: TCanvas;
|
||||||
|
ARect: TRect; const PaintStage: TSpTBXPaintStage; var PaintDefault: Boolean);
|
||||||
|
var
|
||||||
|
SB: TSpTBXSpeedButton;
|
||||||
|
begin
|
||||||
|
if PaintStage = pstPrePaint then begin
|
||||||
|
PaintDefault := False;
|
||||||
|
SB := TSpTBXSpeedButton(Sender);
|
||||||
|
SpDrawXPHeader(ACanvas, ARect, SB.MouseInControl, SB.Pushed, sknSkin);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
//WMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWM
|
||||||
|
{ StatusBar }
|
||||||
|
|
||||||
|
procedure TForm1.hintLabelDrawHint(Sender: TObject;
|
||||||
|
AHintBitmap: TBitmap; var AHint: WideString; var PaintDefault: Boolean);
|
||||||
|
var
|
||||||
|
R, GR, TR: TRect;
|
||||||
|
WS: WideString;
|
||||||
|
begin
|
||||||
|
PaintDefault := False;
|
||||||
|
AHintBitmap.Width := Image1.Picture.Bitmap.Width + 115;
|
||||||
|
AHintBitmap.Height := Image1.Picture.Bitmap.Height + 30;
|
||||||
|
with AHintBitmap.Canvas do begin
|
||||||
|
Brush.Color := clInfoBk;
|
||||||
|
Font.Color := clInfoText;
|
||||||
|
R := Rect(0, 0, AHintBitmap.Width, AHintBitmap.Height);
|
||||||
|
FillRect(R);
|
||||||
|
|
||||||
|
GR := Bounds(5, 5, Image1.Picture.Bitmap.Width, Image1.Picture.Bitmap.Height);
|
||||||
|
Draw(GR.Left, GR.Top, Image1.Picture.Bitmap);
|
||||||
|
|
||||||
|
WS := 'Language: ' + subLang.Caption + #13#10 +
|
||||||
|
'Skin: ' + SkinManager.CurrentSkinName + #13#10 +
|
||||||
|
'Time: ' + TimeToStr(Now);
|
||||||
|
TR := Rect(GR.Right + 5, 10, R.Right, R.Bottom);
|
||||||
|
SpDrawXPText(AHintBitmap.Canvas, WS, TR, DT_WORDBREAK);
|
||||||
|
|
||||||
|
Font.Color := clBlue;
|
||||||
|
Font.Style := [fsUnderline];
|
||||||
|
TR := Rect(GR.Left, GR.Bottom + 5, R.Right, R.Bottom);
|
||||||
|
WS := 'http://www.silverpointdevelopment.com';
|
||||||
|
SpDrawXPText(AHintBitmap.Canvas, WS, TR, DT_WORDBREAK);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
//WMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWM
|
||||||
|
{ ProgressBar }
|
||||||
|
|
||||||
|
procedure TForm1.progressDecClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXProgressBar1.StepIt(-10);
|
||||||
|
SpTBXProgressBar2.StepIt(-10);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.progressIncClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXProgressBar1.StepIt(10);
|
||||||
|
SpTBXProgressBar2.StepIt(10);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.progressAnimateClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXProgressBar1.Position := 0;
|
||||||
|
SpTBXProgressBar2.Position := 0;
|
||||||
|
Timer1.Enabled := True;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.Timer1Timer(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXProgressBar1.StepIt;
|
||||||
|
SpTBXProgressBar2.StepIt;
|
||||||
|
if SpTBXProgressBar1.Position >= SpTBXProgressBar1.Max then
|
||||||
|
Timer1.Enabled := False;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.SpTBXProgressBar1ProgressChange(Sender: TObject;
|
||||||
|
NewPosition: Integer);
|
||||||
|
var
|
||||||
|
I: Integer;
|
||||||
|
WS: WideString;
|
||||||
|
begin
|
||||||
|
if progressFiles.Checked then begin
|
||||||
|
I := (NewPosition div 10) - 1;
|
||||||
|
if I < 0 then I := 0;
|
||||||
|
if I > LangListBox.Items.Count - 1 then I := LangListBox.Items.Count - 1;
|
||||||
|
WS := 'C:\Lang\' + LangListBox.Items[I] + '.txt';
|
||||||
|
SpTBXProgressBar1.Caption := WS;
|
||||||
|
SpTBXProgressBar2.Caption := WS;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TForm1.ProgressFilesClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
if progressFiles.Checked then
|
||||||
|
SpTBXProgressBar1.CaptionType := pctDefault
|
||||||
|
else
|
||||||
|
SpTBXProgressBar1.CaptionType := pctPercentage;
|
||||||
|
SpTBXProgressBar2.CaptionType := SpTBXProgressBar1.CaptionType;
|
||||||
|
SpTBXProgressBar1ProgressChange(SpTBXProgressBar1, SpTBXProgressBar1.Position);
|
||||||
|
end;
|
||||||
|
|
||||||
|
//WMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWMWM
|
||||||
|
{ TrackBar }
|
||||||
|
|
||||||
|
procedure TForm1.TrackbarTickMarksRadioClick(Sender: TObject);
|
||||||
|
begin
|
||||||
|
SpTBXTrackBar1.TickMarks := TSpTBXTickMark(trackTickmarks.ItemIndex);
|
||||||
|
end;
|
||||||
|
|
||||||
|
end.
|
||||||
BIN
official/2.2.2+2.4.2/SpTBXLib/Demos/Overview/hint.bmp
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Demos/Overview/hint.bmp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
9
official/2.2.2+2.4.2/SpTBXLib/LICENSE.txt
Normal file
9
official/2.2.2+2.4.2/SpTBXLib/LICENSE.txt
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
Use and/or distribution of the files requires compliance with the
|
||||||
|
SpTBXLib License, found in SpTBXLib-LICENSE.txt or at:
|
||||||
|
|
||||||
|
http://www.silverpointdevelopment.com/sptbxlib/SpTBXLib-LICENSE.htm
|
||||||
|
|
||||||
|
Alternatively, at your option, the files may be used and/or distributed under
|
||||||
|
the terms of the Mozilla Public License Version 1.1, found in MPL-LICENSE.txt or at:
|
||||||
|
|
||||||
|
http://www.mozilla.org/MPL
|
||||||
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXColorPickerForm.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXColorPickerForm.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXControls.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXControls.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXCustomizer.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXCustomizer.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXCustomizerForm.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXCustomizerForm.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXDefaultSkins.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXDefaultSkins.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXDkPanels.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXDkPanels.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXEditors.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXEditors.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXExtEditors.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXExtEditors.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXFormPopupMenu.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXFormPopupMenu.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXItem.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXItem.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLibDsgn_d12.bpl
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLibDsgn_d12.bpl
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLibDsgn_d12.dcp
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLibDsgn_d12.dcp
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLibDsgn_d12.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLibDsgn_d12.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLib_d12.bpl
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLib_d12.bpl
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLib_d12.dcp
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLib_d12.dcp
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLib_d12.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXLib_d12.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXMDIMRU.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXMDIMRU.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXReg.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXReg.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXSkins.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXSkins.dcu
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXTabs.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Lib/D12/SpTBXTabs.dcu
Normal file
Binary file not shown.
469
official/2.2.2+2.4.2/SpTBXLib/MPL-LICENSE.txt
Normal file
469
official/2.2.2+2.4.2/SpTBXLib/MPL-LICENSE.txt
Normal file
@ -0,0 +1,469 @@
|
|||||||
|
MOZILLA PUBLIC LICENSE
|
||||||
|
Version 1.1
|
||||||
|
|
||||||
|
---------------
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
1.0.1. "Commercial Use" means distribution or otherwise making the
|
||||||
|
Covered Code available to a third party.
|
||||||
|
|
||||||
|
1.1. "Contributor" means each entity that creates or contributes to
|
||||||
|
the creation of Modifications.
|
||||||
|
|
||||||
|
1.2. "Contributor Version" means the combination of the Original
|
||||||
|
Code, prior Modifications used by a Contributor, and the Modifications
|
||||||
|
made by that particular Contributor.
|
||||||
|
|
||||||
|
1.3. "Covered Code" means the Original Code or Modifications or the
|
||||||
|
combination of the Original Code and Modifications, in each case
|
||||||
|
including portions thereof.
|
||||||
|
|
||||||
|
1.4. "Electronic Distribution Mechanism" means a mechanism generally
|
||||||
|
accepted in the software development community for the electronic
|
||||||
|
transfer of data.
|
||||||
|
|
||||||
|
1.5. "Executable" means Covered Code in any form other than Source
|
||||||
|
Code.
|
||||||
|
|
||||||
|
1.6. "Initial Developer" means the individual or entity identified
|
||||||
|
as the Initial Developer in the Source Code notice required by Exhibit
|
||||||
|
A.
|
||||||
|
|
||||||
|
1.7. "Larger Work" means a work which combines Covered Code or
|
||||||
|
portions thereof with code not governed by the terms of this License.
|
||||||
|
|
||||||
|
1.8. "License" means this document.
|
||||||
|
|
||||||
|
1.8.1. "Licensable" means having the right to grant, to the maximum
|
||||||
|
extent possible, whether at the time of the initial grant or
|
||||||
|
subsequently acquired, any and all of the rights conveyed herein.
|
||||||
|
|
||||||
|
1.9. "Modifications" means any addition to or deletion from the
|
||||||
|
substance or structure of either the Original Code or any previous
|
||||||
|
Modifications. When Covered Code is released as a series of files, a
|
||||||
|
Modification is:
|
||||||
|
A. Any addition to or deletion from the contents of a file
|
||||||
|
containing Original Code or previous Modifications.
|
||||||
|
|
||||||
|
B. Any new file that contains any part of the Original Code or
|
||||||
|
previous Modifications.
|
||||||
|
|
||||||
|
1.10. "Original Code" means Source Code of computer software code
|
||||||
|
which is described in the Source Code notice required by Exhibit A as
|
||||||
|
Original Code, and which, at the time of its release under this
|
||||||
|
License is not already Covered Code governed by this License.
|
||||||
|
|
||||||
|
1.10.1. "Patent Claims" means any patent claim(s), now owned or
|
||||||
|
hereafter acquired, including without limitation, method, process,
|
||||||
|
and apparatus claims, in any patent Licensable by grantor.
|
||||||
|
|
||||||
|
1.11. "Source Code" means the preferred form of the Covered Code for
|
||||||
|
making modifications to it, including all modules it contains, plus
|
||||||
|
any associated interface definition files, scripts used to control
|
||||||
|
compilation and installation of an Executable, or source code
|
||||||
|
differential comparisons against either the Original Code or another
|
||||||
|
well known, available Covered Code of the Contributor's choice. The
|
||||||
|
Source Code can be in a compressed or archival form, provided the
|
||||||
|
appropriate decompression or de-archiving software is widely available
|
||||||
|
for no charge.
|
||||||
|
|
||||||
|
1.12. "You" (or "Your") means an individual or a legal entity
|
||||||
|
exercising rights under, and complying with all of the terms of, this
|
||||||
|
License or a future version of this License issued under Section 6.1.
|
||||||
|
For legal entities, "You" includes any entity which controls, is
|
||||||
|
controlled by, or is under common control with You. For purposes of
|
||||||
|
this definition, "control" means (a) the power, direct or indirect,
|
||||||
|
to cause the direction or management of such entity, whether by
|
||||||
|
contract or otherwise, or (b) ownership of more than fifty percent
|
||||||
|
(50%) of the outstanding shares or beneficial ownership of such
|
||||||
|
entity.
|
||||||
|
|
||||||
|
2. Source Code License.
|
||||||
|
|
||||||
|
2.1. The Initial Developer Grant.
|
||||||
|
The Initial Developer hereby grants You a world-wide, royalty-free,
|
||||||
|
non-exclusive license, subject to third party intellectual property
|
||||||
|
claims:
|
||||||
|
(a) under intellectual property rights (other than patent or
|
||||||
|
trademark) Licensable by Initial Developer to use, reproduce,
|
||||||
|
modify, display, perform, sublicense and distribute the Original
|
||||||
|
Code (or portions thereof) with or without Modifications, and/or
|
||||||
|
as part of a Larger Work; and
|
||||||
|
|
||||||
|
(b) under Patents Claims infringed by the making, using or
|
||||||
|
selling of Original Code, to make, have made, use, practice,
|
||||||
|
sell, and offer for sale, and/or otherwise dispose of the
|
||||||
|
Original Code (or portions thereof).
|
||||||
|
|
||||||
|
(c) the licenses granted in this Section 2.1(a) and (b) are
|
||||||
|
effective on the date Initial Developer first distributes
|
||||||
|
Original Code under the terms of this License.
|
||||||
|
|
||||||
|
(d) Notwithstanding Section 2.1(b) above, no patent license is
|
||||||
|
granted: 1) for code that You delete from the Original Code; 2)
|
||||||
|
separate from the Original Code; or 3) for infringements caused
|
||||||
|
by: i) the modification of the Original Code or ii) the
|
||||||
|
combination of the Original Code with other software or devices.
|
||||||
|
|
||||||
|
2.2. Contributor Grant.
|
||||||
|
Subject to third party intellectual property claims, each Contributor
|
||||||
|
hereby grants You a world-wide, royalty-free, non-exclusive license
|
||||||
|
|
||||||
|
(a) under intellectual property rights (other than patent or
|
||||||
|
trademark) Licensable by Contributor, to use, reproduce, modify,
|
||||||
|
display, perform, sublicense and distribute the Modifications
|
||||||
|
created by such Contributor (or portions thereof) either on an
|
||||||
|
unmodified basis, with other Modifications, as Covered Code
|
||||||
|
and/or as part of a Larger Work; and
|
||||||
|
|
||||||
|
(b) under Patent Claims infringed by the making, using, or
|
||||||
|
selling of Modifications made by that Contributor either alone
|
||||||
|
and/or in combination with its Contributor Version (or portions
|
||||||
|
of such combination), to make, use, sell, offer for sale, have
|
||||||
|
made, and/or otherwise dispose of: 1) Modifications made by that
|
||||||
|
Contributor (or portions thereof); and 2) the combination of
|
||||||
|
Modifications made by that Contributor with its Contributor
|
||||||
|
Version (or portions of such combination).
|
||||||
|
|
||||||
|
(c) the licenses granted in Sections 2.2(a) and 2.2(b) are
|
||||||
|
effective on the date Contributor first makes Commercial Use of
|
||||||
|
the Covered Code.
|
||||||
|
|
||||||
|
(d) Notwithstanding Section 2.2(b) above, no patent license is
|
||||||
|
granted: 1) for any code that Contributor has deleted from the
|
||||||
|
Contributor Version; 2) separate from the Contributor Version;
|
||||||
|
3) for infringements caused by: i) third party modifications of
|
||||||
|
Contributor Version or ii) the combination of Modifications made
|
||||||
|
by that Contributor with other software (except as part of the
|
||||||
|
Contributor Version) or other devices; or 4) under Patent Claims
|
||||||
|
infringed by Covered Code in the absence of Modifications made by
|
||||||
|
that Contributor.
|
||||||
|
|
||||||
|
3. Distribution Obligations.
|
||||||
|
|
||||||
|
3.1. Application of License.
|
||||||
|
The Modifications which You create or to which You contribute are
|
||||||
|
governed by the terms of this License, including without limitation
|
||||||
|
Section 2.2. The Source Code version of Covered Code may be
|
||||||
|
distributed only under the terms of this License or a future version
|
||||||
|
of this License released under Section 6.1, and You must include a
|
||||||
|
copy of this License with every copy of the Source Code You
|
||||||
|
distribute. You may not offer or impose any terms on any Source Code
|
||||||
|
version that alters or restricts the applicable version of this
|
||||||
|
License or the recipients' rights hereunder. However, You may include
|
||||||
|
an additional document offering the additional rights described in
|
||||||
|
Section 3.5.
|
||||||
|
|
||||||
|
3.2. Availability of Source Code.
|
||||||
|
Any Modification which You create or to which You contribute must be
|
||||||
|
made available in Source Code form under the terms of this License
|
||||||
|
either on the same media as an Executable version or via an accepted
|
||||||
|
Electronic Distribution Mechanism to anyone to whom you made an
|
||||||
|
Executable version available; and if made available via Electronic
|
||||||
|
Distribution Mechanism, must remain available for at least twelve (12)
|
||||||
|
months after the date it initially became available, or at least six
|
||||||
|
(6) months after a subsequent version of that particular Modification
|
||||||
|
has been made available to such recipients. You are responsible for
|
||||||
|
ensuring that the Source Code version remains available even if the
|
||||||
|
Electronic Distribution Mechanism is maintained by a third party.
|
||||||
|
|
||||||
|
3.3. Description of Modifications.
|
||||||
|
You must cause all Covered Code to which You contribute to contain a
|
||||||
|
file documenting the changes You made to create that Covered Code and
|
||||||
|
the date of any change. You must include a prominent statement that
|
||||||
|
the Modification is derived, directly or indirectly, from Original
|
||||||
|
Code provided by the Initial Developer and including the name of the
|
||||||
|
Initial Developer in (a) the Source Code, and (b) in any notice in an
|
||||||
|
Executable version or related documentation in which You describe the
|
||||||
|
origin or ownership of the Covered Code.
|
||||||
|
|
||||||
|
3.4. Intellectual Property Matters
|
||||||
|
(a) Third Party Claims.
|
||||||
|
If Contributor has knowledge that a license under a third party's
|
||||||
|
intellectual property rights is required to exercise the rights
|
||||||
|
granted by such Contributor under Sections 2.1 or 2.2,
|
||||||
|
Contributor must include a text file with the Source Code
|
||||||
|
distribution titled "LEGAL" which describes the claim and the
|
||||||
|
party making the claim in sufficient detail that a recipient will
|
||||||
|
know whom to contact. If Contributor obtains such knowledge after
|
||||||
|
the Modification is made available as described in Section 3.2,
|
||||||
|
Contributor shall promptly modify the LEGAL file in all copies
|
||||||
|
Contributor makes available thereafter and shall take other steps
|
||||||
|
(such as notifying appropriate mailing lists or newsgroups)
|
||||||
|
reasonably calculated to inform those who received the Covered
|
||||||
|
Code that new knowledge has been obtained.
|
||||||
|
|
||||||
|
(b) Contributor APIs.
|
||||||
|
If Contributor's Modifications include an application programming
|
||||||
|
interface and Contributor has knowledge of patent licenses which
|
||||||
|
are reasonably necessary to implement that API, Contributor must
|
||||||
|
also include this information in the LEGAL file.
|
||||||
|
|
||||||
|
(c) Representations.
|
||||||
|
Contributor represents that, except as disclosed pursuant to
|
||||||
|
Section 3.4(a) above, Contributor believes that Contributor's
|
||||||
|
Modifications are Contributor's original creation(s) and/or
|
||||||
|
Contributor has sufficient rights to grant the rights conveyed by
|
||||||
|
this License.
|
||||||
|
|
||||||
|
3.5. Required Notices.
|
||||||
|
You must duplicate the notice in Exhibit A in each file of the Source
|
||||||
|
Code. If it is not possible to put such notice in a particular Source
|
||||||
|
Code file due to its structure, then You must include such notice in a
|
||||||
|
location (such as a relevant directory) where a user would be likely
|
||||||
|
to look for such a notice. If You created one or more Modification(s)
|
||||||
|
You may add your name as a Contributor to the notice described in
|
||||||
|
Exhibit A. You must also duplicate this License in any documentation
|
||||||
|
for the Source Code where You describe recipients' rights or ownership
|
||||||
|
rights relating to Covered Code. You may choose to offer, and to
|
||||||
|
charge a fee for, warranty, support, indemnity or liability
|
||||||
|
obligations to one or more recipients of Covered Code. However, You
|
||||||
|
may do so only on Your own behalf, and not on behalf of the Initial
|
||||||
|
Developer or any Contributor. You must make it absolutely clear than
|
||||||
|
any such warranty, support, indemnity or liability obligation is
|
||||||
|
offered by You alone, and You hereby agree to indemnify the Initial
|
||||||
|
Developer and every Contributor for any liability incurred by the
|
||||||
|
Initial Developer or such Contributor as a result of warranty,
|
||||||
|
support, indemnity or liability terms You offer.
|
||||||
|
|
||||||
|
3.6. Distribution of Executable Versions.
|
||||||
|
You may distribute Covered Code in Executable form only if the
|
||||||
|
requirements of Section 3.1-3.5 have been met for that Covered Code,
|
||||||
|
and if You include a notice stating that the Source Code version of
|
||||||
|
the Covered Code is available under the terms of this License,
|
||||||
|
including a description of how and where You have fulfilled the
|
||||||
|
obligations of Section 3.2. The notice must be conspicuously included
|
||||||
|
in any notice in an Executable version, related documentation or
|
||||||
|
collateral in which You describe recipients' rights relating to the
|
||||||
|
Covered Code. You may distribute the Executable version of Covered
|
||||||
|
Code or ownership rights under a license of Your choice, which may
|
||||||
|
contain terms different from this License, provided that You are in
|
||||||
|
compliance with the terms of this License and that the license for the
|
||||||
|
Executable version does not attempt to limit or alter the recipient's
|
||||||
|
rights in the Source Code version from the rights set forth in this
|
||||||
|
License. If You distribute the Executable version under a different
|
||||||
|
license You must make it absolutely clear that any terms which differ
|
||||||
|
from this License are offered by You alone, not by the Initial
|
||||||
|
Developer or any Contributor. You hereby agree to indemnify the
|
||||||
|
Initial Developer and every Contributor for any liability incurred by
|
||||||
|
the Initial Developer or such Contributor as a result of any such
|
||||||
|
terms You offer.
|
||||||
|
|
||||||
|
3.7. Larger Works.
|
||||||
|
You may create a Larger Work by combining Covered Code with other code
|
||||||
|
not governed by the terms of this License and distribute the Larger
|
||||||
|
Work as a single product. In such a case, You must make sure the
|
||||||
|
requirements of this License are fulfilled for the Covered Code.
|
||||||
|
|
||||||
|
4. Inability to Comply Due to Statute or Regulation.
|
||||||
|
|
||||||
|
If it is impossible for You to comply with any of the terms of this
|
||||||
|
License with respect to some or all of the Covered Code due to
|
||||||
|
statute, judicial order, or regulation then You must: (a) comply with
|
||||||
|
the terms of this License to the maximum extent possible; and (b)
|
||||||
|
describe the limitations and the code they affect. Such description
|
||||||
|
must be included in the LEGAL file described in Section 3.4 and must
|
||||||
|
be included with all distributions of the Source Code. Except to the
|
||||||
|
extent prohibited by statute or regulation, such description must be
|
||||||
|
sufficiently detailed for a recipient of ordinary skill to be able to
|
||||||
|
understand it.
|
||||||
|
|
||||||
|
5. Application of this License.
|
||||||
|
|
||||||
|
This License applies to code to which the Initial Developer has
|
||||||
|
attached the notice in Exhibit A and to related Covered Code.
|
||||||
|
|
||||||
|
6. Versions of the License.
|
||||||
|
|
||||||
|
6.1. New Versions.
|
||||||
|
Netscape Communications Corporation ("Netscape") may publish revised
|
||||||
|
and/or new versions of the License from time to time. Each version
|
||||||
|
will be given a distinguishing version number.
|
||||||
|
|
||||||
|
6.2. Effect of New Versions.
|
||||||
|
Once Covered Code has been published under a particular version of the
|
||||||
|
License, You may always continue to use it under the terms of that
|
||||||
|
version. You may also choose to use such Covered Code under the terms
|
||||||
|
of any subsequent version of the License published by Netscape. No one
|
||||||
|
other than Netscape has the right to modify the terms applicable to
|
||||||
|
Covered Code created under this License.
|
||||||
|
|
||||||
|
6.3. Derivative Works.
|
||||||
|
If You create or use a modified version of this License (which you may
|
||||||
|
only do in order to apply it to code which is not already Covered Code
|
||||||
|
governed by this License), You must (a) rename Your license so that
|
||||||
|
the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",
|
||||||
|
"MPL", "NPL" or any confusingly similar phrase do not appear in your
|
||||||
|
license (except to note that your license differs from this License)
|
||||||
|
and (b) otherwise make it clear that Your version of the license
|
||||||
|
contains terms which differ from the Mozilla Public License and
|
||||||
|
Netscape Public License. (Filling in the name of the Initial
|
||||||
|
Developer, Original Code or Contributor in the notice described in
|
||||||
|
Exhibit A shall not of themselves be deemed to be modifications of
|
||||||
|
this License.)
|
||||||
|
|
||||||
|
7. DISCLAIMER OF WARRANTY.
|
||||||
|
|
||||||
|
COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
||||||
|
WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF
|
||||||
|
DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
|
||||||
|
THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE
|
||||||
|
IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
|
||||||
|
YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
|
||||||
|
COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
|
||||||
|
OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
|
||||||
|
ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
|
||||||
|
|
||||||
|
8. TERMINATION.
|
||||||
|
|
||||||
|
8.1. This License and the rights granted hereunder will terminate
|
||||||
|
automatically if You fail to comply with terms herein and fail to cure
|
||||||
|
such breach within 30 days of becoming aware of the breach. All
|
||||||
|
sublicenses to the Covered Code which are properly granted shall
|
||||||
|
survive any termination of this License. Provisions which, by their
|
||||||
|
nature, must remain in effect beyond the termination of this License
|
||||||
|
shall survive.
|
||||||
|
|
||||||
|
8.2. If You initiate litigation by asserting a patent infringement
|
||||||
|
claim (excluding declatory judgment actions) against Initial Developer
|
||||||
|
or a Contributor (the Initial Developer or Contributor against whom
|
||||||
|
You file such action is referred to as "Participant") alleging that:
|
||||||
|
|
||||||
|
(a) such Participant's Contributor Version directly or indirectly
|
||||||
|
infringes any patent, then any and all rights granted by such
|
||||||
|
Participant to You under Sections 2.1 and/or 2.2 of this License
|
||||||
|
shall, upon 60 days notice from Participant terminate prospectively,
|
||||||
|
unless if within 60 days after receipt of notice You either: (i)
|
||||||
|
agree in writing to pay Participant a mutually agreeable reasonable
|
||||||
|
royalty for Your past and future use of Modifications made by such
|
||||||
|
Participant, or (ii) withdraw Your litigation claim with respect to
|
||||||
|
the Contributor Version against such Participant. If within 60 days
|
||||||
|
of notice, a reasonable royalty and payment arrangement are not
|
||||||
|
mutually agreed upon in writing by the parties or the litigation claim
|
||||||
|
is not withdrawn, the rights granted by Participant to You under
|
||||||
|
Sections 2.1 and/or 2.2 automatically terminate at the expiration of
|
||||||
|
the 60 day notice period specified above.
|
||||||
|
|
||||||
|
(b) any software, hardware, or device, other than such Participant's
|
||||||
|
Contributor Version, directly or indirectly infringes any patent, then
|
||||||
|
any rights granted to You by such Participant under Sections 2.1(b)
|
||||||
|
and 2.2(b) are revoked effective as of the date You first made, used,
|
||||||
|
sold, distributed, or had made, Modifications made by that
|
||||||
|
Participant.
|
||||||
|
|
||||||
|
8.3. If You assert a patent infringement claim against Participant
|
||||||
|
alleging that such Participant's Contributor Version directly or
|
||||||
|
indirectly infringes any patent where such claim is resolved (such as
|
||||||
|
by license or settlement) prior to the initiation of patent
|
||||||
|
infringement litigation, then the reasonable value of the licenses
|
||||||
|
granted by such Participant under Sections 2.1 or 2.2 shall be taken
|
||||||
|
into account in determining the amount or value of any payment or
|
||||||
|
license.
|
||||||
|
|
||||||
|
8.4. In the event of termination under Sections 8.1 or 8.2 above,
|
||||||
|
all end user license agreements (excluding distributors and resellers)
|
||||||
|
which have been validly granted by You or any distributor hereunder
|
||||||
|
prior to termination shall survive termination.
|
||||||
|
|
||||||
|
9. LIMITATION OF LIABILITY.
|
||||||
|
|
||||||
|
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
|
||||||
|
(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
|
||||||
|
DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,
|
||||||
|
OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR
|
||||||
|
ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
|
||||||
|
CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
|
||||||
|
WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
|
||||||
|
COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
|
||||||
|
INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
|
||||||
|
LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
|
||||||
|
RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
|
||||||
|
PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
|
||||||
|
EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
|
||||||
|
THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
|
||||||
|
|
||||||
|
10. U.S. GOVERNMENT END USERS.
|
||||||
|
|
||||||
|
The Covered Code is a "commercial item," as that term is defined in
|
||||||
|
48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
|
||||||
|
software" and "commercial computer software documentation," as such
|
||||||
|
terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
|
||||||
|
C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
|
||||||
|
all U.S. Government End Users acquire Covered Code with only those
|
||||||
|
rights set forth herein.
|
||||||
|
|
||||||
|
11. MISCELLANEOUS.
|
||||||
|
|
||||||
|
This License represents the complete agreement concerning subject
|
||||||
|
matter hereof. If any provision of this License is held to be
|
||||||
|
unenforceable, such provision shall be reformed only to the extent
|
||||||
|
necessary to make it enforceable. This License shall be governed by
|
||||||
|
California law provisions (except to the extent applicable law, if
|
||||||
|
any, provides otherwise), excluding its conflict-of-law provisions.
|
||||||
|
With respect to disputes in which at least one party is a citizen of,
|
||||||
|
or an entity chartered or registered to do business in the United
|
||||||
|
States of America, any litigation relating to this License shall be
|
||||||
|
subject to the jurisdiction of the Federal Courts of the Northern
|
||||||
|
District of California, with venue lying in Santa Clara County,
|
||||||
|
California, with the losing party responsible for costs, including
|
||||||
|
without limitation, court costs and reasonable attorneys' fees and
|
||||||
|
expenses. The application of the United Nations Convention on
|
||||||
|
Contracts for the International Sale of Goods is expressly excluded.
|
||||||
|
Any law or regulation which provides that the language of a contract
|
||||||
|
shall be construed against the drafter shall not apply to this
|
||||||
|
License.
|
||||||
|
|
||||||
|
12. RESPONSIBILITY FOR CLAIMS.
|
||||||
|
|
||||||
|
As between Initial Developer and the Contributors, each party is
|
||||||
|
responsible for claims and damages arising, directly or indirectly,
|
||||||
|
out of its utilization of rights under this License and You agree to
|
||||||
|
work with Initial Developer and Contributors to distribute such
|
||||||
|
responsibility on an equitable basis. Nothing herein is intended or
|
||||||
|
shall be deemed to constitute any admission of liability.
|
||||||
|
|
||||||
|
13. MULTIPLE-LICENSED CODE.
|
||||||
|
|
||||||
|
Initial Developer may designate portions of the Covered Code as
|
||||||
|
"Multiple-Licensed". "Multiple-Licensed" means that the Initial
|
||||||
|
Developer permits you to utilize portions of the Covered Code under
|
||||||
|
Your choice of the NPL or the alternative licenses, if any, specified
|
||||||
|
by the Initial Developer in the file described in Exhibit A.
|
||||||
|
|
||||||
|
EXHIBIT A -Mozilla Public License.
|
||||||
|
|
||||||
|
``The contents of this file are subject to the Mozilla Public License
|
||||||
|
Version 1.1 (the "License"); you may not use this file except in
|
||||||
|
compliance with the License. You may obtain a copy of the License at
|
||||||
|
http://www.mozilla.org/MPL/
|
||||||
|
|
||||||
|
Software distributed under the License is distributed on an "AS IS"
|
||||||
|
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
||||||
|
License for the specific language governing rights and limitations
|
||||||
|
under the License.
|
||||||
|
|
||||||
|
The Original Code is ______________________________________.
|
||||||
|
|
||||||
|
The Initial Developer of the Original Code is ________________________.
|
||||||
|
Portions created by ______________________ are Copyright (C) ______
|
||||||
|
_______________________. All Rights Reserved.
|
||||||
|
|
||||||
|
Contributor(s): ______________________________________.
|
||||||
|
|
||||||
|
Alternatively, the contents of this file may be used under the terms
|
||||||
|
of the _____ license (the "[___] License"), in which case the
|
||||||
|
provisions of [______] License are applicable instead of those
|
||||||
|
above. If you wish to allow use of your version of this file only
|
||||||
|
under the terms of the [____] License and not to allow others to use
|
||||||
|
your version of this file under the MPL, indicate your decision by
|
||||||
|
deleting the provisions above and replace them with the notice and
|
||||||
|
other provisions required by the [___] License. If you do not delete
|
||||||
|
the provisions above, a recipient may use your version of this file
|
||||||
|
under either the MPL or the [___] License."
|
||||||
|
|
||||||
|
[NOTE: The text of this Exhibit A may differ slightly from the text of
|
||||||
|
the notices in the Source Code files of the Original Code. You should
|
||||||
|
use the text of this Exhibit A rather than the text found in the
|
||||||
|
Original Code Source Code for Your Modifications.]
|
||||||
@ -0,0 +1,48 @@
|
|||||||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ProjectGuid>{AC99A436-DF99-402F-B9A7-1589C5A8F86D}</ProjectGuid>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Projects Include="SpTBXLib_d12.dproj">
|
||||||
|
<Dependencies/>
|
||||||
|
</Projects>
|
||||||
|
<Projects Include="SpTBXLibDsgn_d12.dproj">
|
||||||
|
<Dependencies/>
|
||||||
|
</Projects>
|
||||||
|
</ItemGroup>
|
||||||
|
<ProjectExtensions>
|
||||||
|
<Borland.Personality>Default.Personality.12</Borland.Personality>
|
||||||
|
<Borland.ProjectType/>
|
||||||
|
<BorlandProject>
|
||||||
|
<Default.Personality/>
|
||||||
|
</BorlandProject>
|
||||||
|
</ProjectExtensions>
|
||||||
|
<Target Name="SpTBXLib_d12">
|
||||||
|
<MSBuild Projects="SpTBXLib_d12.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="SpTBXLib_d12:Clean">
|
||||||
|
<MSBuild Targets="Clean" Projects="SpTBXLib_d12.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="SpTBXLib_d12:Make">
|
||||||
|
<MSBuild Targets="Make" Projects="SpTBXLib_d12.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="SpTBXLibDsgn_d12">
|
||||||
|
<MSBuild Projects="SpTBXLibDsgn_d12.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="SpTBXLibDsgn_d12:Clean">
|
||||||
|
<MSBuild Targets="Clean" Projects="SpTBXLibDsgn_d12.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="SpTBXLibDsgn_d12:Make">
|
||||||
|
<MSBuild Targets="Make" Projects="SpTBXLibDsgn_d12.dproj"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="Build">
|
||||||
|
<CallTarget Targets="SpTBXLib_d12;SpTBXLibDsgn_d12"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="Clean">
|
||||||
|
<CallTarget Targets="SpTBXLib_d12:Clean;SpTBXLibDsgn_d12:Clean"/>
|
||||||
|
</Target>
|
||||||
|
<Target Name="Make">
|
||||||
|
<CallTarget Targets="SpTBXLib_d12:Make;SpTBXLibDsgn_d12:Make"/>
|
||||||
|
</Target>
|
||||||
|
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
|
||||||
|
</Project>
|
||||||
175
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d10.bdsproj
Normal file
175
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d10.bdsproj
Normal file
@ -0,0 +1,175 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<BorlandProject>
|
||||||
|
<PersonalityInfo>
|
||||||
|
<Option>
|
||||||
|
<Option Name="Personality">Delphi.Personality</Option>
|
||||||
|
<Option Name="ProjectType">VCLApplication</Option>
|
||||||
|
<Option Name="Version">1.0</Option>
|
||||||
|
<Option Name="GUID">{0CD140C3-3ADC-4BF2-8A9C-6B5FAA587036}</Option>
|
||||||
|
</Option>
|
||||||
|
</PersonalityInfo>
|
||||||
|
<Delphi.Personality>
|
||||||
|
<Source>
|
||||||
|
<Source Name="MainSource">SpTBXLibDsgn_d10.dpk</Source>
|
||||||
|
</Source>
|
||||||
|
<FileVersion>
|
||||||
|
<FileVersion Name="Version">7.0</FileVersion>
|
||||||
|
</FileVersion>
|
||||||
|
<Compiler>
|
||||||
|
<Compiler Name="A">8</Compiler>
|
||||||
|
<Compiler Name="B">0</Compiler>
|
||||||
|
<Compiler Name="C">1</Compiler>
|
||||||
|
<Compiler Name="D">1</Compiler>
|
||||||
|
<Compiler Name="E">0</Compiler>
|
||||||
|
<Compiler Name="F">0</Compiler>
|
||||||
|
<Compiler Name="G">1</Compiler>
|
||||||
|
<Compiler Name="H">1</Compiler>
|
||||||
|
<Compiler Name="I">1</Compiler>
|
||||||
|
<Compiler Name="J">0</Compiler>
|
||||||
|
<Compiler Name="K">0</Compiler>
|
||||||
|
<Compiler Name="L">1</Compiler>
|
||||||
|
<Compiler Name="M">0</Compiler>
|
||||||
|
<Compiler Name="N">1</Compiler>
|
||||||
|
<Compiler Name="O">1</Compiler>
|
||||||
|
<Compiler Name="P">1</Compiler>
|
||||||
|
<Compiler Name="Q">0</Compiler>
|
||||||
|
<Compiler Name="R">0</Compiler>
|
||||||
|
<Compiler Name="S">0</Compiler>
|
||||||
|
<Compiler Name="T">0</Compiler>
|
||||||
|
<Compiler Name="U">0</Compiler>
|
||||||
|
<Compiler Name="V">1</Compiler>
|
||||||
|
<Compiler Name="W">0</Compiler>
|
||||||
|
<Compiler Name="X">1</Compiler>
|
||||||
|
<Compiler Name="Y">1</Compiler>
|
||||||
|
<Compiler Name="Z">1</Compiler>
|
||||||
|
<Compiler Name="ShowHints">True</Compiler>
|
||||||
|
<Compiler Name="ShowWarnings">True</Compiler>
|
||||||
|
<Compiler Name="UnitAliases">WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;</Compiler>
|
||||||
|
<Compiler Name="NamespacePrefix"></Compiler>
|
||||||
|
<Compiler Name="GenerateDocumentation">False</Compiler>
|
||||||
|
<Compiler Name="DefaultNamespace"></Compiler>
|
||||||
|
<Compiler Name="SymbolDeprecated">True</Compiler>
|
||||||
|
<Compiler Name="SymbolLibrary">True</Compiler>
|
||||||
|
<Compiler Name="SymbolPlatform">True</Compiler>
|
||||||
|
<Compiler Name="SymbolExperimental">True</Compiler>
|
||||||
|
<Compiler Name="UnitLibrary">True</Compiler>
|
||||||
|
<Compiler Name="UnitPlatform">True</Compiler>
|
||||||
|
<Compiler Name="UnitDeprecated">True</Compiler>
|
||||||
|
<Compiler Name="UnitExperimental">True</Compiler>
|
||||||
|
<Compiler Name="HResultCompat">True</Compiler>
|
||||||
|
<Compiler Name="HidingMember">True</Compiler>
|
||||||
|
<Compiler Name="HiddenVirtual">True</Compiler>
|
||||||
|
<Compiler Name="Garbage">True</Compiler>
|
||||||
|
<Compiler Name="BoundsError">True</Compiler>
|
||||||
|
<Compiler Name="ZeroNilCompat">True</Compiler>
|
||||||
|
<Compiler Name="StringConstTruncated">True</Compiler>
|
||||||
|
<Compiler Name="ForLoopVarVarPar">True</Compiler>
|
||||||
|
<Compiler Name="TypedConstVarPar">True</Compiler>
|
||||||
|
<Compiler Name="AsgToTypedConst">True</Compiler>
|
||||||
|
<Compiler Name="CaseLabelRange">True</Compiler>
|
||||||
|
<Compiler Name="ForVariable">True</Compiler>
|
||||||
|
<Compiler Name="ConstructingAbstract">True</Compiler>
|
||||||
|
<Compiler Name="ComparisonFalse">True</Compiler>
|
||||||
|
<Compiler Name="ComparisonTrue">True</Compiler>
|
||||||
|
<Compiler Name="ComparingSignedUnsigned">True</Compiler>
|
||||||
|
<Compiler Name="CombiningSignedUnsigned">True</Compiler>
|
||||||
|
<Compiler Name="UnsupportedConstruct">True</Compiler>
|
||||||
|
<Compiler Name="FileOpen">True</Compiler>
|
||||||
|
<Compiler Name="FileOpenUnitSrc">True</Compiler>
|
||||||
|
<Compiler Name="BadGlobalSymbol">True</Compiler>
|
||||||
|
<Compiler Name="DuplicateConstructorDestructor">True</Compiler>
|
||||||
|
<Compiler Name="InvalidDirective">True</Compiler>
|
||||||
|
<Compiler Name="PackageNoLink">True</Compiler>
|
||||||
|
<Compiler Name="PackageThreadVar">True</Compiler>
|
||||||
|
<Compiler Name="ImplicitImport">True</Compiler>
|
||||||
|
<Compiler Name="HPPEMITIgnored">True</Compiler>
|
||||||
|
<Compiler Name="NoRetVal">True</Compiler>
|
||||||
|
<Compiler Name="UseBeforeDef">True</Compiler>
|
||||||
|
<Compiler Name="ForLoopVarUndef">True</Compiler>
|
||||||
|
<Compiler Name="UnitNameMismatch">True</Compiler>
|
||||||
|
<Compiler Name="NoCFGFileFound">True</Compiler>
|
||||||
|
<Compiler Name="ImplicitVariants">True</Compiler>
|
||||||
|
<Compiler Name="UnicodeToLocale">True</Compiler>
|
||||||
|
<Compiler Name="LocaleToUnicode">True</Compiler>
|
||||||
|
<Compiler Name="ImagebaseMultiple">True</Compiler>
|
||||||
|
<Compiler Name="SuspiciousTypecast">True</Compiler>
|
||||||
|
<Compiler Name="PrivatePropAccessor">True</Compiler>
|
||||||
|
<Compiler Name="UnsafeType">False</Compiler>
|
||||||
|
<Compiler Name="UnsafeCode">False</Compiler>
|
||||||
|
<Compiler Name="UnsafeCast">False</Compiler>
|
||||||
|
<Compiler Name="OptionTruncated">True</Compiler>
|
||||||
|
<Compiler Name="WideCharReduced">True</Compiler>
|
||||||
|
<Compiler Name="DuplicatesIgnored">True</Compiler>
|
||||||
|
<Compiler Name="UnitInitSeq">True</Compiler>
|
||||||
|
<Compiler Name="LocalPInvoke">True</Compiler>
|
||||||
|
<Compiler Name="MessageDirective">True</Compiler>
|
||||||
|
<Compiler Name="CodePage"></Compiler>
|
||||||
|
</Compiler>
|
||||||
|
<Linker>
|
||||||
|
<Linker Name="MapFile">0</Linker>
|
||||||
|
<Linker Name="OutputObjs">0</Linker>
|
||||||
|
<Linker Name="GenerateHpps">False</Linker>
|
||||||
|
<Linker Name="ConsoleApp">1</Linker>
|
||||||
|
<Linker Name="DebugInfo">False</Linker>
|
||||||
|
<Linker Name="RemoteSymbols">False</Linker>
|
||||||
|
<Linker Name="GenerateDRC">False</Linker>
|
||||||
|
<Linker Name="MinStackSize">16384</Linker>
|
||||||
|
<Linker Name="MaxStackSize">1048576</Linker>
|
||||||
|
<Linker Name="ImageBase">1333788672</Linker>
|
||||||
|
<Linker Name="ExeDescription">Toolbar2000 -- SpTBXLib Design Package</Linker>
|
||||||
|
</Linker>
|
||||||
|
<Directories>
|
||||||
|
<Directories Name="OutputDir"></Directories>
|
||||||
|
<Directories Name="UnitOutputDir"></Directories>
|
||||||
|
<Directories Name="PackageDLLOutputDir"></Directories>
|
||||||
|
<Directories Name="PackageDCPOutputDir"></Directories>
|
||||||
|
<Directories Name="SearchPath"></Directories>
|
||||||
|
<Directories Name="Packages"></Directories>
|
||||||
|
<Directories Name="Conditionals"></Directories>
|
||||||
|
<Directories Name="DebugSourceDirs"></Directories>
|
||||||
|
<Directories Name="UsePackages">False</Directories>
|
||||||
|
</Directories>
|
||||||
|
<Parameters>
|
||||||
|
<Parameters Name="RunParams"></Parameters>
|
||||||
|
<Parameters Name="HostApplication"></Parameters>
|
||||||
|
<Parameters Name="Launcher"></Parameters>
|
||||||
|
<Parameters Name="UseLauncher">False</Parameters>
|
||||||
|
<Parameters Name="DebugCWD"></Parameters>
|
||||||
|
<Parameters Name="Debug Symbols Search Path"></Parameters>
|
||||||
|
<Parameters Name="LoadAllSymbols">True</Parameters>
|
||||||
|
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
|
||||||
|
</Parameters>
|
||||||
|
<Language>
|
||||||
|
<Language Name="ActiveLang"></Language>
|
||||||
|
<Language Name="ProjectLang">$00000000</Language>
|
||||||
|
<Language Name="RootDir"></Language>
|
||||||
|
</Language>
|
||||||
|
<VersionInfo>
|
||||||
|
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
|
||||||
|
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||||
|
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||||
|
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Release">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Build">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Debug">False</VersionInfo>
|
||||||
|
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Special">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Private">False</VersionInfo>
|
||||||
|
<VersionInfo Name="DLL">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Locale">1033</VersionInfo>
|
||||||
|
<VersionInfo Name="CodePage">1252</VersionInfo>
|
||||||
|
</VersionInfo>
|
||||||
|
<VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="CompanyName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="FileDescription"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="InternalName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="LegalCopyright"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="LegalTrademarks"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="OriginalFilename"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="ProductName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="Comments"></VersionInfoKeys>
|
||||||
|
</VersionInfoKeys>
|
||||||
|
</Delphi.Personality>
|
||||||
|
</BorlandProject>
|
||||||
42
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d10.dpk
Normal file
42
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d10.dpk
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
package SpTBXLibDsgn_d10;
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
{$R '..\Source\SpTBXReg.dcr'}
|
||||||
|
{$ALIGN 8}
|
||||||
|
{$ASSERTIONS ON}
|
||||||
|
{$BOOLEVAL OFF}
|
||||||
|
{$DEBUGINFO ON}
|
||||||
|
{$EXTENDEDSYNTAX ON}
|
||||||
|
{$IMPORTEDDATA ON}
|
||||||
|
{$IOCHECKS ON}
|
||||||
|
{$LOCALSYMBOLS ON}
|
||||||
|
{$LONGSTRINGS ON}
|
||||||
|
{$OPENSTRINGS ON}
|
||||||
|
{$OPTIMIZATION ON}
|
||||||
|
{$OVERFLOWCHECKS OFF}
|
||||||
|
{$RANGECHECKS OFF}
|
||||||
|
{$REFERENCEINFO ON}
|
||||||
|
{$SAFEDIVIDE OFF}
|
||||||
|
{$STACKFRAMES OFF}
|
||||||
|
{$TYPEDADDRESS OFF}
|
||||||
|
{$VARSTRINGCHECKS ON}
|
||||||
|
{$WRITEABLECONST OFF}
|
||||||
|
{$MINENUMSIZE 1}
|
||||||
|
{$IMAGEBASE $4F800000}
|
||||||
|
{$DESCRIPTION 'Toolbar2000 -- SpTBXLib Design Package'}
|
||||||
|
{$DESIGNONLY}
|
||||||
|
{$IMPLICITBUILD ON}
|
||||||
|
|
||||||
|
requires
|
||||||
|
TntUnicodeVcl,
|
||||||
|
TntUnicodeVcl_Design,
|
||||||
|
tb2k_d10,
|
||||||
|
tb2kdsgn_d10,
|
||||||
|
SpTBXLib_d10,
|
||||||
|
dclstd,
|
||||||
|
vcl;
|
||||||
|
|
||||||
|
contains
|
||||||
|
SpTBXReg in '..\Source\SpTBXReg.pas';
|
||||||
|
|
||||||
|
end.
|
||||||
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d10.res
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d10.res
Normal file
Binary file not shown.
175
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d11.bdsproj
Normal file
175
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d11.bdsproj
Normal file
@ -0,0 +1,175 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<BorlandProject>
|
||||||
|
<PersonalityInfo>
|
||||||
|
<Option>
|
||||||
|
<Option Name="Personality">Delphi.Personality</Option>
|
||||||
|
<Option Name="ProjectType">VCLApplication</Option>
|
||||||
|
<Option Name="Version">1.0</Option>
|
||||||
|
<Option Name="GUID">{0CD140C3-3ADC-4BF2-8A9C-6B5FAA587036}</Option>
|
||||||
|
</Option>
|
||||||
|
</PersonalityInfo>
|
||||||
|
<Delphi.Personality>
|
||||||
|
<Source>
|
||||||
|
<Source Name="MainSource">SpTBXLibDsgn_d11.dpk</Source>
|
||||||
|
</Source>
|
||||||
|
<FileVersion>
|
||||||
|
<FileVersion Name="Version">7.0</FileVersion>
|
||||||
|
</FileVersion>
|
||||||
|
<Compiler>
|
||||||
|
<Compiler Name="A">8</Compiler>
|
||||||
|
<Compiler Name="B">0</Compiler>
|
||||||
|
<Compiler Name="C">1</Compiler>
|
||||||
|
<Compiler Name="D">1</Compiler>
|
||||||
|
<Compiler Name="E">0</Compiler>
|
||||||
|
<Compiler Name="F">0</Compiler>
|
||||||
|
<Compiler Name="G">1</Compiler>
|
||||||
|
<Compiler Name="H">1</Compiler>
|
||||||
|
<Compiler Name="I">1</Compiler>
|
||||||
|
<Compiler Name="J">0</Compiler>
|
||||||
|
<Compiler Name="K">0</Compiler>
|
||||||
|
<Compiler Name="L">1</Compiler>
|
||||||
|
<Compiler Name="M">0</Compiler>
|
||||||
|
<Compiler Name="N">1</Compiler>
|
||||||
|
<Compiler Name="O">1</Compiler>
|
||||||
|
<Compiler Name="P">1</Compiler>
|
||||||
|
<Compiler Name="Q">0</Compiler>
|
||||||
|
<Compiler Name="R">0</Compiler>
|
||||||
|
<Compiler Name="S">0</Compiler>
|
||||||
|
<Compiler Name="T">0</Compiler>
|
||||||
|
<Compiler Name="U">0</Compiler>
|
||||||
|
<Compiler Name="V">1</Compiler>
|
||||||
|
<Compiler Name="W">0</Compiler>
|
||||||
|
<Compiler Name="X">1</Compiler>
|
||||||
|
<Compiler Name="Y">1</Compiler>
|
||||||
|
<Compiler Name="Z">1</Compiler>
|
||||||
|
<Compiler Name="ShowHints">True</Compiler>
|
||||||
|
<Compiler Name="ShowWarnings">True</Compiler>
|
||||||
|
<Compiler Name="UnitAliases">WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;</Compiler>
|
||||||
|
<Compiler Name="NamespacePrefix"></Compiler>
|
||||||
|
<Compiler Name="GenerateDocumentation">False</Compiler>
|
||||||
|
<Compiler Name="DefaultNamespace"></Compiler>
|
||||||
|
<Compiler Name="SymbolDeprecated">True</Compiler>
|
||||||
|
<Compiler Name="SymbolLibrary">True</Compiler>
|
||||||
|
<Compiler Name="SymbolPlatform">True</Compiler>
|
||||||
|
<Compiler Name="SymbolExperimental">True</Compiler>
|
||||||
|
<Compiler Name="UnitLibrary">True</Compiler>
|
||||||
|
<Compiler Name="UnitPlatform">True</Compiler>
|
||||||
|
<Compiler Name="UnitDeprecated">True</Compiler>
|
||||||
|
<Compiler Name="UnitExperimental">True</Compiler>
|
||||||
|
<Compiler Name="HResultCompat">True</Compiler>
|
||||||
|
<Compiler Name="HidingMember">True</Compiler>
|
||||||
|
<Compiler Name="HiddenVirtual">True</Compiler>
|
||||||
|
<Compiler Name="Garbage">True</Compiler>
|
||||||
|
<Compiler Name="BoundsError">True</Compiler>
|
||||||
|
<Compiler Name="ZeroNilCompat">True</Compiler>
|
||||||
|
<Compiler Name="StringConstTruncated">True</Compiler>
|
||||||
|
<Compiler Name="ForLoopVarVarPar">True</Compiler>
|
||||||
|
<Compiler Name="TypedConstVarPar">True</Compiler>
|
||||||
|
<Compiler Name="AsgToTypedConst">True</Compiler>
|
||||||
|
<Compiler Name="CaseLabelRange">True</Compiler>
|
||||||
|
<Compiler Name="ForVariable">True</Compiler>
|
||||||
|
<Compiler Name="ConstructingAbstract">True</Compiler>
|
||||||
|
<Compiler Name="ComparisonFalse">True</Compiler>
|
||||||
|
<Compiler Name="ComparisonTrue">True</Compiler>
|
||||||
|
<Compiler Name="ComparingSignedUnsigned">True</Compiler>
|
||||||
|
<Compiler Name="CombiningSignedUnsigned">True</Compiler>
|
||||||
|
<Compiler Name="UnsupportedConstruct">True</Compiler>
|
||||||
|
<Compiler Name="FileOpen">True</Compiler>
|
||||||
|
<Compiler Name="FileOpenUnitSrc">True</Compiler>
|
||||||
|
<Compiler Name="BadGlobalSymbol">True</Compiler>
|
||||||
|
<Compiler Name="DuplicateConstructorDestructor">True</Compiler>
|
||||||
|
<Compiler Name="InvalidDirective">True</Compiler>
|
||||||
|
<Compiler Name="PackageNoLink">True</Compiler>
|
||||||
|
<Compiler Name="PackageThreadVar">True</Compiler>
|
||||||
|
<Compiler Name="ImplicitImport">True</Compiler>
|
||||||
|
<Compiler Name="HPPEMITIgnored">True</Compiler>
|
||||||
|
<Compiler Name="NoRetVal">True</Compiler>
|
||||||
|
<Compiler Name="UseBeforeDef">True</Compiler>
|
||||||
|
<Compiler Name="ForLoopVarUndef">True</Compiler>
|
||||||
|
<Compiler Name="UnitNameMismatch">True</Compiler>
|
||||||
|
<Compiler Name="NoCFGFileFound">True</Compiler>
|
||||||
|
<Compiler Name="ImplicitVariants">True</Compiler>
|
||||||
|
<Compiler Name="UnicodeToLocale">True</Compiler>
|
||||||
|
<Compiler Name="LocaleToUnicode">True</Compiler>
|
||||||
|
<Compiler Name="ImagebaseMultiple">True</Compiler>
|
||||||
|
<Compiler Name="SuspiciousTypecast">True</Compiler>
|
||||||
|
<Compiler Name="PrivatePropAccessor">True</Compiler>
|
||||||
|
<Compiler Name="UnsafeType">False</Compiler>
|
||||||
|
<Compiler Name="UnsafeCode">False</Compiler>
|
||||||
|
<Compiler Name="UnsafeCast">False</Compiler>
|
||||||
|
<Compiler Name="OptionTruncated">True</Compiler>
|
||||||
|
<Compiler Name="WideCharReduced">True</Compiler>
|
||||||
|
<Compiler Name="DuplicatesIgnored">True</Compiler>
|
||||||
|
<Compiler Name="UnitInitSeq">True</Compiler>
|
||||||
|
<Compiler Name="LocalPInvoke">True</Compiler>
|
||||||
|
<Compiler Name="MessageDirective">True</Compiler>
|
||||||
|
<Compiler Name="CodePage"></Compiler>
|
||||||
|
</Compiler>
|
||||||
|
<Linker>
|
||||||
|
<Linker Name="MapFile">0</Linker>
|
||||||
|
<Linker Name="OutputObjs">0</Linker>
|
||||||
|
<Linker Name="GenerateHpps">False</Linker>
|
||||||
|
<Linker Name="ConsoleApp">1</Linker>
|
||||||
|
<Linker Name="DebugInfo">False</Linker>
|
||||||
|
<Linker Name="RemoteSymbols">False</Linker>
|
||||||
|
<Linker Name="GenerateDRC">False</Linker>
|
||||||
|
<Linker Name="MinStackSize">16384</Linker>
|
||||||
|
<Linker Name="MaxStackSize">1048576</Linker>
|
||||||
|
<Linker Name="ImageBase">1333788672</Linker>
|
||||||
|
<Linker Name="ExeDescription">Toolbar2000 -- SpTBXLib Design Package</Linker>
|
||||||
|
</Linker>
|
||||||
|
<Directories>
|
||||||
|
<Directories Name="OutputDir"></Directories>
|
||||||
|
<Directories Name="UnitOutputDir"></Directories>
|
||||||
|
<Directories Name="PackageDLLOutputDir"></Directories>
|
||||||
|
<Directories Name="PackageDCPOutputDir"></Directories>
|
||||||
|
<Directories Name="SearchPath"></Directories>
|
||||||
|
<Directories Name="Packages"></Directories>
|
||||||
|
<Directories Name="Conditionals"></Directories>
|
||||||
|
<Directories Name="DebugSourceDirs"></Directories>
|
||||||
|
<Directories Name="UsePackages">False</Directories>
|
||||||
|
</Directories>
|
||||||
|
<Parameters>
|
||||||
|
<Parameters Name="RunParams"></Parameters>
|
||||||
|
<Parameters Name="HostApplication"></Parameters>
|
||||||
|
<Parameters Name="Launcher"></Parameters>
|
||||||
|
<Parameters Name="UseLauncher">False</Parameters>
|
||||||
|
<Parameters Name="DebugCWD"></Parameters>
|
||||||
|
<Parameters Name="Debug Symbols Search Path"></Parameters>
|
||||||
|
<Parameters Name="LoadAllSymbols">True</Parameters>
|
||||||
|
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
|
||||||
|
</Parameters>
|
||||||
|
<Language>
|
||||||
|
<Language Name="ActiveLang"></Language>
|
||||||
|
<Language Name="ProjectLang">$00000000</Language>
|
||||||
|
<Language Name="RootDir"></Language>
|
||||||
|
</Language>
|
||||||
|
<VersionInfo>
|
||||||
|
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
|
||||||
|
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||||
|
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||||
|
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Release">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Build">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Debug">False</VersionInfo>
|
||||||
|
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Special">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Private">False</VersionInfo>
|
||||||
|
<VersionInfo Name="DLL">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Locale">1033</VersionInfo>
|
||||||
|
<VersionInfo Name="CodePage">1252</VersionInfo>
|
||||||
|
</VersionInfo>
|
||||||
|
<VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="CompanyName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="FileDescription"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="InternalName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="LegalCopyright"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="LegalTrademarks"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="OriginalFilename"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="ProductName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="Comments"></VersionInfoKeys>
|
||||||
|
</VersionInfoKeys>
|
||||||
|
</Delphi.Personality>
|
||||||
|
</BorlandProject>
|
||||||
42
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d11.dpk
Normal file
42
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d11.dpk
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
package SpTBXLibDsgn_d11;
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
{$R '..\Source\SpTBXReg.dcr'}
|
||||||
|
{$ALIGN 8}
|
||||||
|
{$ASSERTIONS ON}
|
||||||
|
{$BOOLEVAL OFF}
|
||||||
|
{$DEBUGINFO ON}
|
||||||
|
{$EXTENDEDSYNTAX ON}
|
||||||
|
{$IMPORTEDDATA ON}
|
||||||
|
{$IOCHECKS ON}
|
||||||
|
{$LOCALSYMBOLS ON}
|
||||||
|
{$LONGSTRINGS ON}
|
||||||
|
{$OPENSTRINGS ON}
|
||||||
|
{$OPTIMIZATION ON}
|
||||||
|
{$OVERFLOWCHECKS OFF}
|
||||||
|
{$RANGECHECKS OFF}
|
||||||
|
{$REFERENCEINFO ON}
|
||||||
|
{$SAFEDIVIDE OFF}
|
||||||
|
{$STACKFRAMES OFF}
|
||||||
|
{$TYPEDADDRESS OFF}
|
||||||
|
{$VARSTRINGCHECKS ON}
|
||||||
|
{$WRITEABLECONST OFF}
|
||||||
|
{$MINENUMSIZE 1}
|
||||||
|
{$IMAGEBASE $4F800000}
|
||||||
|
{$DESCRIPTION 'Toolbar2000 -- SpTBXLib Design Package'}
|
||||||
|
{$DESIGNONLY}
|
||||||
|
{$IMPLICITBUILD ON}
|
||||||
|
|
||||||
|
requires
|
||||||
|
TntUnicodeVcl,
|
||||||
|
TntUnicodeVcl_Design,
|
||||||
|
tb2k_d11,
|
||||||
|
tb2kdsgn_d11,
|
||||||
|
SpTBXLib_d11,
|
||||||
|
dclstd,
|
||||||
|
vcl;
|
||||||
|
|
||||||
|
contains
|
||||||
|
SpTBXReg in '..\Source\SpTBXReg.pas';
|
||||||
|
|
||||||
|
end.
|
||||||
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d11.res
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d11.res
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.bpi
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.bpi
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.dcu
Normal file
Binary file not shown.
40
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.dpk
Normal file
40
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.dpk
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
package SpTBXLibDsgn_d12;
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
{$R '..\Source\SpTBXReg.dcr'}
|
||||||
|
{$ALIGN 8}
|
||||||
|
{$ASSERTIONS ON}
|
||||||
|
{$BOOLEVAL OFF}
|
||||||
|
{$DEBUGINFO ON}
|
||||||
|
{$EXTENDEDSYNTAX ON}
|
||||||
|
{$IMPORTEDDATA ON}
|
||||||
|
{$IOCHECKS ON}
|
||||||
|
{$LOCALSYMBOLS ON}
|
||||||
|
{$LONGSTRINGS ON}
|
||||||
|
{$OPENSTRINGS ON}
|
||||||
|
{$OPTIMIZATION ON}
|
||||||
|
{$OVERFLOWCHECKS OFF}
|
||||||
|
{$RANGECHECKS OFF}
|
||||||
|
{$REFERENCEINFO ON}
|
||||||
|
{$SAFEDIVIDE OFF}
|
||||||
|
{$STACKFRAMES OFF}
|
||||||
|
{$TYPEDADDRESS OFF}
|
||||||
|
{$VARSTRINGCHECKS ON}
|
||||||
|
{$WRITEABLECONST OFF}
|
||||||
|
{$MINENUMSIZE 1}
|
||||||
|
{$IMAGEBASE $4F800000}
|
||||||
|
{$DESCRIPTION 'Toolbar2000 -- SpTBXLib Design Package'}
|
||||||
|
{$DESIGNONLY}
|
||||||
|
{$IMPLICITBUILD ON}
|
||||||
|
|
||||||
|
requires
|
||||||
|
tb2k_d12,
|
||||||
|
tb2kdsgn_d12,
|
||||||
|
SpTBXLib_d12,
|
||||||
|
dclstd,
|
||||||
|
vcl;
|
||||||
|
|
||||||
|
contains
|
||||||
|
SpTBXReg in '..\Source\SpTBXReg.pas';
|
||||||
|
|
||||||
|
end.
|
||||||
116
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.dproj
Normal file
116
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.dproj
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ProjectGuid>{0CD140C3-3ADC-4BF2-8A9C-6B5FAA587036}</ProjectGuid>
|
||||||
|
<MainSource>SpTBXLibDsgn_d12.dpk</MainSource>
|
||||||
|
<Config Condition="'$(Config)'==''">Debug</Config>
|
||||||
|
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
|
||||||
|
<ProjectVersion>12.0</ProjectVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
||||||
|
<Base>true</Base>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
|
||||||
|
<Cfg_1>true</Cfg_1>
|
||||||
|
<CfgParent>Base</CfgParent>
|
||||||
|
<Base>true</Base>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
|
||||||
|
<Cfg_2>true</Cfg_2>
|
||||||
|
<CfgParent>Base</CfgParent>
|
||||||
|
<Base>true</Base>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Base)'!=''">
|
||||||
|
<DesignOnlyPackage>true</DesignOnlyPackage>
|
||||||
|
<DCC_CBuilderOutput>All</DCC_CBuilderOutput>
|
||||||
|
<DCC_ImageBase>4F800000</DCC_ImageBase>
|
||||||
|
<DCC_SymbolReferenceInfo>1</DCC_SymbolReferenceInfo>
|
||||||
|
<DCC_DependencyCheckOutputName>SpTBXLibDsgn_d12.bpl</DCC_DependencyCheckOutputName>
|
||||||
|
<DCC_UnitAlias>WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;$(DCC_UnitAlias)</DCC_UnitAlias>
|
||||||
|
<DCC_Platform>x86</DCC_Platform>
|
||||||
|
<DCC_Description>Toolbar2000 -- SpTBXLib Design Package</DCC_Description>
|
||||||
|
<DCC_N>true</DCC_N>
|
||||||
|
<DCC_S>false</DCC_S>
|
||||||
|
<GenDll>true</GenDll>
|
||||||
|
<DCC_K>false</DCC_K>
|
||||||
|
<GenPackage>true</GenPackage>
|
||||||
|
<DCC_E>false</DCC_E>
|
||||||
|
<DCC_F>false</DCC_F>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Cfg_1)'!=''">
|
||||||
|
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
|
||||||
|
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
|
||||||
|
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
||||||
|
<DCC_DebugInformation>false</DCC_DebugInformation>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Cfg_2)'!=''">
|
||||||
|
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<DelphiCompile Include="SpTBXLibDsgn_d12.dpk">
|
||||||
|
<MainSource>MainSource</MainSource>
|
||||||
|
</DelphiCompile>
|
||||||
|
<DCCReference Include="..\Source\SpTBXReg.dcr"/>
|
||||||
|
<DCCReference Include="tb2k_d12.dcp"/>
|
||||||
|
<DCCReference Include="tb2kdsgn_d12.dcp"/>
|
||||||
|
<DCCReference Include="SpTBXLib_d12.dcp"/>
|
||||||
|
<DCCReference Include="dclstd.dcp"/>
|
||||||
|
<DCCReference Include="vcl.dcp"/>
|
||||||
|
<DCCReference Include="..\Source\SpTBXReg.pas"/>
|
||||||
|
<BuildConfiguration Include="Base">
|
||||||
|
<Key>Base</Key>
|
||||||
|
</BuildConfiguration>
|
||||||
|
<BuildConfiguration Include="Debug">
|
||||||
|
<Key>Cfg_2</Key>
|
||||||
|
<CfgParent>Base</CfgParent>
|
||||||
|
</BuildConfiguration>
|
||||||
|
<BuildConfiguration Include="Release">
|
||||||
|
<Key>Cfg_1</Key>
|
||||||
|
<CfgParent>Base</CfgParent>
|
||||||
|
</BuildConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
|
||||||
|
<ProjectExtensions>
|
||||||
|
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
||||||
|
<Borland.ProjectType>Package</Borland.ProjectType>
|
||||||
|
<BorlandProject>
|
||||||
|
<Delphi.Personality>
|
||||||
|
<Source>
|
||||||
|
<Source Name="MainSource">SpTBXLibDsgn_d12.dpk</Source>
|
||||||
|
</Source>
|
||||||
|
<Parameters>
|
||||||
|
<Parameters Name="UseLauncher">False</Parameters>
|
||||||
|
<Parameters Name="LoadAllSymbols">True</Parameters>
|
||||||
|
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
|
||||||
|
</Parameters>
|
||||||
|
<VersionInfo>
|
||||||
|
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
|
||||||
|
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||||
|
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||||
|
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Release">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Build">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Debug">False</VersionInfo>
|
||||||
|
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Special">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Private">False</VersionInfo>
|
||||||
|
<VersionInfo Name="DLL">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Locale">1033</VersionInfo>
|
||||||
|
<VersionInfo Name="CodePage">1252</VersionInfo>
|
||||||
|
</VersionInfo>
|
||||||
|
<VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="CompanyName"/>
|
||||||
|
<VersionInfoKeys Name="FileDescription"/>
|
||||||
|
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="InternalName"/>
|
||||||
|
<VersionInfoKeys Name="LegalCopyright"/>
|
||||||
|
<VersionInfoKeys Name="LegalTrademarks"/>
|
||||||
|
<VersionInfoKeys Name="OriginalFilename"/>
|
||||||
|
<VersionInfoKeys Name="ProductName"/>
|
||||||
|
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="Comments"/>
|
||||||
|
</VersionInfoKeys>
|
||||||
|
</Delphi.Personality>
|
||||||
|
</BorlandProject>
|
||||||
|
<ProjectFileVersion>12</ProjectFileVersion>
|
||||||
|
</ProjectExtensions>
|
||||||
|
</Project>
|
||||||
106
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.hpp
Normal file
106
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.hpp
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
// CodeGear C++Builder
|
||||||
|
// Copyright (c) 1995, 2008 by CodeGear
|
||||||
|
// All rights reserved
|
||||||
|
|
||||||
|
// (DO NOT EDIT: machine generated header) 'Sptbxlibdsgn_d12.pas' rev: 20.00
|
||||||
|
|
||||||
|
#ifndef Sptbxlibdsgn_d12HPP
|
||||||
|
#define Sptbxlibdsgn_d12HPP
|
||||||
|
|
||||||
|
#pragma delphiheader begin
|
||||||
|
#pragma option push
|
||||||
|
#pragma option -w- // All warnings off
|
||||||
|
#pragma option -Vx // Zero-length empty class member functions
|
||||||
|
#pragma pack(push,8)
|
||||||
|
#include <System.hpp> // Pascal unit
|
||||||
|
#include <Sysinit.hpp> // Pascal unit
|
||||||
|
#include <Sptbxreg.hpp> // Pascal unit
|
||||||
|
#include <Windows.hpp> // Pascal unit
|
||||||
|
#include <Sysutils.hpp> // Pascal unit
|
||||||
|
#include <Varutils.hpp> // Pascal unit
|
||||||
|
#include <Variants.hpp> // Pascal unit
|
||||||
|
#include <Typinfo.hpp> // Pascal unit
|
||||||
|
#include <Classes.hpp> // Pascal unit
|
||||||
|
#include <Multimon.hpp> // Pascal unit
|
||||||
|
#include <Inifiles.hpp> // Pascal unit
|
||||||
|
#include <Registry.hpp> // Pascal unit
|
||||||
|
#include <Graphics.hpp> // Pascal unit
|
||||||
|
#include <Actnlist.hpp> // Pascal unit
|
||||||
|
#include <Helpintfs.hpp> // Pascal unit
|
||||||
|
#include <Flatsb.hpp> // Pascal unit
|
||||||
|
#include <Printers.hpp> // Pascal unit
|
||||||
|
#include <Syncobjs.hpp> // Pascal unit
|
||||||
|
#include <Uxtheme.hpp> // Pascal unit
|
||||||
|
#include <Themes.hpp> // Pascal unit
|
||||||
|
#include <Dwmapi.hpp> // Pascal unit
|
||||||
|
#include <Graphutil.hpp> // Pascal unit
|
||||||
|
#include <Extctrls.hpp> // Pascal unit
|
||||||
|
#include <Buttons.hpp> // Pascal unit
|
||||||
|
#include <Extdlgs.hpp> // Pascal unit
|
||||||
|
#include <Mapi.hpp> // Pascal unit
|
||||||
|
#include <Extactns.hpp> // Pascal unit
|
||||||
|
#include <Comctrls.hpp> // Pascal unit
|
||||||
|
#include <Dialogs.hpp> // Pascal unit
|
||||||
|
#include <Clipbrd.hpp> // Pascal unit
|
||||||
|
#include <Forms.hpp> // Pascal unit
|
||||||
|
#include <Menus.hpp> // Pascal unit
|
||||||
|
#include <Controls.hpp> // Pascal unit
|
||||||
|
#include <Proxies.hpp> // Pascal unit
|
||||||
|
#include <Idemessages.hpp> // Pascal unit
|
||||||
|
#include <Captioneddocktree.hpp> // Pascal unit
|
||||||
|
#include <Tabs.hpp> // Pascal unit
|
||||||
|
#include <Docktabset.hpp> // Pascal unit
|
||||||
|
#include <Percentagedocktree.hpp> // Pascal unit
|
||||||
|
#include <Comobj.hpp> // Pascal unit
|
||||||
|
#include <Actnmenus.hpp> // Pascal unit
|
||||||
|
#include <Actnman.hpp> // Pascal unit
|
||||||
|
#include <Platformdefaultstyleactnctrls.hpp> // Pascal unit
|
||||||
|
#include <Tabdock.hpp> // Pascal unit
|
||||||
|
#include <Basedock.hpp> // Pascal unit
|
||||||
|
#include <Deskutil.hpp> // Pascal unit
|
||||||
|
#include <Deskform.hpp> // Pascal unit
|
||||||
|
#include <Dockform.hpp> // Pascal unit
|
||||||
|
#include <Msxmldom.hpp> // Pascal unit
|
||||||
|
#include <Xmldom.hpp> // Pascal unit
|
||||||
|
#include <Xmlintf.hpp> // Pascal unit
|
||||||
|
#include <Toolsapi.hpp> // Pascal unit
|
||||||
|
#include <Designeditors.hpp> // Pascal unit
|
||||||
|
#include <Vcleditors.hpp> // Pascal unit
|
||||||
|
#include <Tb2version.hpp> // Pascal unit
|
||||||
|
#include <Tb2common.hpp> // Pascal unit
|
||||||
|
#include <Tb2anim.hpp> // Pascal unit
|
||||||
|
#include <Tb2acc.hpp> // Pascal unit
|
||||||
|
#include <Tb2item.hpp> // Pascal unit
|
||||||
|
#include <Tb2hook.hpp> // Pascal unit
|
||||||
|
#include <Axctrls.hpp> // Pascal unit
|
||||||
|
#include <Appevnts.hpp> // Pascal unit
|
||||||
|
#include <Treeintf.hpp> // Pascal unit
|
||||||
|
#include <Toplevels.hpp> // Pascal unit
|
||||||
|
#include <Widestrings.hpp> // Pascal unit
|
||||||
|
#include <Stfilsys.hpp> // Pascal unit
|
||||||
|
#include <Idehelp.hpp> // Pascal unit
|
||||||
|
#include <Componentdesigner.hpp> // Pascal unit
|
||||||
|
#include <Tb2dsgnconverter.hpp> // Pascal unit
|
||||||
|
#include <Tb2dsgnitemeditor.hpp> // Pascal unit
|
||||||
|
#include <Sptbxdefaultskins.hpp> // Pascal unit
|
||||||
|
#include <Sptbxskins.hpp> // Pascal unit
|
||||||
|
#include <Sptbxitem.hpp> // Pascal unit
|
||||||
|
#include <Checklst.hpp> // Pascal unit
|
||||||
|
#include <Sptbxexteditors.hpp> // Pascal unit
|
||||||
|
#include <Sptbxcustomizer.hpp> // Pascal unit
|
||||||
|
|
||||||
|
//-- user supplied -----------------------------------------------------------
|
||||||
|
|
||||||
|
namespace Sptbxlibdsgn_d12
|
||||||
|
{
|
||||||
|
//-- type declarations -------------------------------------------------------
|
||||||
|
//-- var, const, procedure ---------------------------------------------------
|
||||||
|
|
||||||
|
} /* namespace Sptbxlibdsgn_d12 */
|
||||||
|
using namespace Sptbxlibdsgn_d12;
|
||||||
|
#pragma pack(pop)
|
||||||
|
#pragma option pop
|
||||||
|
|
||||||
|
#pragma delphiheader end.
|
||||||
|
//-- end unit ----------------------------------------------------------------
|
||||||
|
#endif // Sptbxlibdsgn_d12HPP
|
||||||
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.lib
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.lib
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.res
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d12.res
Normal file
Binary file not shown.
42
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d7.dpk
Normal file
42
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d7.dpk
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
package SpTBXLibDsgn_d7;
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
{$R '..\Source\SpTBXReg.dcr'}
|
||||||
|
{$ALIGN 8}
|
||||||
|
{$ASSERTIONS ON}
|
||||||
|
{$BOOLEVAL OFF}
|
||||||
|
{$DEBUGINFO ON}
|
||||||
|
{$EXTENDEDSYNTAX ON}
|
||||||
|
{$IMPORTEDDATA ON}
|
||||||
|
{$IOCHECKS ON}
|
||||||
|
{$LOCALSYMBOLS ON}
|
||||||
|
{$LONGSTRINGS ON}
|
||||||
|
{$OPENSTRINGS ON}
|
||||||
|
{$OPTIMIZATION ON}
|
||||||
|
{$OVERFLOWCHECKS OFF}
|
||||||
|
{$RANGECHECKS OFF}
|
||||||
|
{$REFERENCEINFO ON}
|
||||||
|
{$SAFEDIVIDE OFF}
|
||||||
|
{$STACKFRAMES OFF}
|
||||||
|
{$TYPEDADDRESS OFF}
|
||||||
|
{$VARSTRINGCHECKS ON}
|
||||||
|
{$WRITEABLECONST OFF}
|
||||||
|
{$MINENUMSIZE 1}
|
||||||
|
{$IMAGEBASE $4F800000}
|
||||||
|
{$DESCRIPTION 'Toolbar2000 -- SpTBXLib Design Package'}
|
||||||
|
{$DESIGNONLY}
|
||||||
|
{$IMPLICITBUILD ON}
|
||||||
|
|
||||||
|
requires
|
||||||
|
TntUnicodeVcl_R70,
|
||||||
|
TntUnicodeVcl_D70,
|
||||||
|
tb2k_d7,
|
||||||
|
tb2kdsgn_d7,
|
||||||
|
SpTBXLib_d7,
|
||||||
|
dclstd,
|
||||||
|
vcl;
|
||||||
|
|
||||||
|
contains
|
||||||
|
SpTBXReg in '..\Source\SpTBXReg.pas';
|
||||||
|
|
||||||
|
end.
|
||||||
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d7.res
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d7.res
Normal file
Binary file not shown.
42
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d9.dpk
Normal file
42
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d9.dpk
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
package SpTBXLibDsgn_d9;
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
{$R '..\Source\SpTBXReg.dcr'}
|
||||||
|
{$ALIGN 8}
|
||||||
|
{$ASSERTIONS ON}
|
||||||
|
{$BOOLEVAL OFF}
|
||||||
|
{$DEBUGINFO ON}
|
||||||
|
{$EXTENDEDSYNTAX ON}
|
||||||
|
{$IMPORTEDDATA ON}
|
||||||
|
{$IOCHECKS ON}
|
||||||
|
{$LOCALSYMBOLS ON}
|
||||||
|
{$LONGSTRINGS ON}
|
||||||
|
{$OPENSTRINGS ON}
|
||||||
|
{$OPTIMIZATION ON}
|
||||||
|
{$OVERFLOWCHECKS OFF}
|
||||||
|
{$RANGECHECKS OFF}
|
||||||
|
{$REFERENCEINFO ON}
|
||||||
|
{$SAFEDIVIDE OFF}
|
||||||
|
{$STACKFRAMES OFF}
|
||||||
|
{$TYPEDADDRESS OFF}
|
||||||
|
{$VARSTRINGCHECKS ON}
|
||||||
|
{$WRITEABLECONST OFF}
|
||||||
|
{$MINENUMSIZE 1}
|
||||||
|
{$IMAGEBASE $4F800000}
|
||||||
|
{$DESCRIPTION 'Toolbar2000 -- SpTBXLib Design Package'}
|
||||||
|
{$DESIGNONLY}
|
||||||
|
{$IMPLICITBUILD ON}
|
||||||
|
|
||||||
|
requires
|
||||||
|
TntUnicodeVcl_R90,
|
||||||
|
TntUnicodeVcl_D90,
|
||||||
|
tb2k_d9,
|
||||||
|
tb2kdsgn_d9,
|
||||||
|
SpTBXLib_d9,
|
||||||
|
dclstd,
|
||||||
|
vcl;
|
||||||
|
|
||||||
|
contains
|
||||||
|
SpTBXReg in '..\Source\SpTBXReg.pas';
|
||||||
|
|
||||||
|
end.
|
||||||
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d9.res
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLibDsgn_d9.res
Normal file
Binary file not shown.
175
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d10.bdsproj
Normal file
175
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d10.bdsproj
Normal file
@ -0,0 +1,175 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<BorlandProject>
|
||||||
|
<PersonalityInfo>
|
||||||
|
<Option>
|
||||||
|
<Option Name="Personality">Delphi.Personality</Option>
|
||||||
|
<Option Name="ProjectType">VCLApplication</Option>
|
||||||
|
<Option Name="Version">1.0</Option>
|
||||||
|
<Option Name="GUID">{1EB74E79-E290-4976-B63E-8E6B50611D5F}</Option>
|
||||||
|
</Option>
|
||||||
|
</PersonalityInfo>
|
||||||
|
<Delphi.Personality>
|
||||||
|
<Source>
|
||||||
|
<Source Name="MainSource">SpTBXLib_d10.dpk</Source>
|
||||||
|
</Source>
|
||||||
|
<FileVersion>
|
||||||
|
<FileVersion Name="Version">7.0</FileVersion>
|
||||||
|
</FileVersion>
|
||||||
|
<Compiler>
|
||||||
|
<Compiler Name="A">8</Compiler>
|
||||||
|
<Compiler Name="B">0</Compiler>
|
||||||
|
<Compiler Name="C">1</Compiler>
|
||||||
|
<Compiler Name="D">1</Compiler>
|
||||||
|
<Compiler Name="E">0</Compiler>
|
||||||
|
<Compiler Name="F">0</Compiler>
|
||||||
|
<Compiler Name="G">1</Compiler>
|
||||||
|
<Compiler Name="H">1</Compiler>
|
||||||
|
<Compiler Name="I">1</Compiler>
|
||||||
|
<Compiler Name="J">0</Compiler>
|
||||||
|
<Compiler Name="K">0</Compiler>
|
||||||
|
<Compiler Name="L">1</Compiler>
|
||||||
|
<Compiler Name="M">0</Compiler>
|
||||||
|
<Compiler Name="N">1</Compiler>
|
||||||
|
<Compiler Name="O">1</Compiler>
|
||||||
|
<Compiler Name="P">1</Compiler>
|
||||||
|
<Compiler Name="Q">0</Compiler>
|
||||||
|
<Compiler Name="R">0</Compiler>
|
||||||
|
<Compiler Name="S">0</Compiler>
|
||||||
|
<Compiler Name="T">0</Compiler>
|
||||||
|
<Compiler Name="U">0</Compiler>
|
||||||
|
<Compiler Name="V">1</Compiler>
|
||||||
|
<Compiler Name="W">0</Compiler>
|
||||||
|
<Compiler Name="X">1</Compiler>
|
||||||
|
<Compiler Name="Y">1</Compiler>
|
||||||
|
<Compiler Name="Z">1</Compiler>
|
||||||
|
<Compiler Name="ShowHints">True</Compiler>
|
||||||
|
<Compiler Name="ShowWarnings">True</Compiler>
|
||||||
|
<Compiler Name="UnitAliases">WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;</Compiler>
|
||||||
|
<Compiler Name="NamespacePrefix"></Compiler>
|
||||||
|
<Compiler Name="GenerateDocumentation">False</Compiler>
|
||||||
|
<Compiler Name="DefaultNamespace"></Compiler>
|
||||||
|
<Compiler Name="SymbolDeprecated">True</Compiler>
|
||||||
|
<Compiler Name="SymbolLibrary">True</Compiler>
|
||||||
|
<Compiler Name="SymbolPlatform">True</Compiler>
|
||||||
|
<Compiler Name="SymbolExperimental">True</Compiler>
|
||||||
|
<Compiler Name="UnitLibrary">True</Compiler>
|
||||||
|
<Compiler Name="UnitPlatform">True</Compiler>
|
||||||
|
<Compiler Name="UnitDeprecated">True</Compiler>
|
||||||
|
<Compiler Name="UnitExperimental">True</Compiler>
|
||||||
|
<Compiler Name="HResultCompat">True</Compiler>
|
||||||
|
<Compiler Name="HidingMember">True</Compiler>
|
||||||
|
<Compiler Name="HiddenVirtual">True</Compiler>
|
||||||
|
<Compiler Name="Garbage">True</Compiler>
|
||||||
|
<Compiler Name="BoundsError">True</Compiler>
|
||||||
|
<Compiler Name="ZeroNilCompat">True</Compiler>
|
||||||
|
<Compiler Name="StringConstTruncated">True</Compiler>
|
||||||
|
<Compiler Name="ForLoopVarVarPar">True</Compiler>
|
||||||
|
<Compiler Name="TypedConstVarPar">True</Compiler>
|
||||||
|
<Compiler Name="AsgToTypedConst">True</Compiler>
|
||||||
|
<Compiler Name="CaseLabelRange">True</Compiler>
|
||||||
|
<Compiler Name="ForVariable">True</Compiler>
|
||||||
|
<Compiler Name="ConstructingAbstract">True</Compiler>
|
||||||
|
<Compiler Name="ComparisonFalse">True</Compiler>
|
||||||
|
<Compiler Name="ComparisonTrue">True</Compiler>
|
||||||
|
<Compiler Name="ComparingSignedUnsigned">True</Compiler>
|
||||||
|
<Compiler Name="CombiningSignedUnsigned">True</Compiler>
|
||||||
|
<Compiler Name="UnsupportedConstruct">True</Compiler>
|
||||||
|
<Compiler Name="FileOpen">True</Compiler>
|
||||||
|
<Compiler Name="FileOpenUnitSrc">True</Compiler>
|
||||||
|
<Compiler Name="BadGlobalSymbol">True</Compiler>
|
||||||
|
<Compiler Name="DuplicateConstructorDestructor">True</Compiler>
|
||||||
|
<Compiler Name="InvalidDirective">True</Compiler>
|
||||||
|
<Compiler Name="PackageNoLink">True</Compiler>
|
||||||
|
<Compiler Name="PackageThreadVar">True</Compiler>
|
||||||
|
<Compiler Name="ImplicitImport">True</Compiler>
|
||||||
|
<Compiler Name="HPPEMITIgnored">True</Compiler>
|
||||||
|
<Compiler Name="NoRetVal">True</Compiler>
|
||||||
|
<Compiler Name="UseBeforeDef">True</Compiler>
|
||||||
|
<Compiler Name="ForLoopVarUndef">True</Compiler>
|
||||||
|
<Compiler Name="UnitNameMismatch">True</Compiler>
|
||||||
|
<Compiler Name="NoCFGFileFound">True</Compiler>
|
||||||
|
<Compiler Name="ImplicitVariants">True</Compiler>
|
||||||
|
<Compiler Name="UnicodeToLocale">True</Compiler>
|
||||||
|
<Compiler Name="LocaleToUnicode">True</Compiler>
|
||||||
|
<Compiler Name="ImagebaseMultiple">True</Compiler>
|
||||||
|
<Compiler Name="SuspiciousTypecast">True</Compiler>
|
||||||
|
<Compiler Name="PrivatePropAccessor">True</Compiler>
|
||||||
|
<Compiler Name="UnsafeType">False</Compiler>
|
||||||
|
<Compiler Name="UnsafeCode">False</Compiler>
|
||||||
|
<Compiler Name="UnsafeCast">False</Compiler>
|
||||||
|
<Compiler Name="OptionTruncated">True</Compiler>
|
||||||
|
<Compiler Name="WideCharReduced">True</Compiler>
|
||||||
|
<Compiler Name="DuplicatesIgnored">True</Compiler>
|
||||||
|
<Compiler Name="UnitInitSeq">True</Compiler>
|
||||||
|
<Compiler Name="LocalPInvoke">True</Compiler>
|
||||||
|
<Compiler Name="MessageDirective">True</Compiler>
|
||||||
|
<Compiler Name="CodePage"></Compiler>
|
||||||
|
</Compiler>
|
||||||
|
<Linker>
|
||||||
|
<Linker Name="MapFile">0</Linker>
|
||||||
|
<Linker Name="OutputObjs">0</Linker>
|
||||||
|
<Linker Name="GenerateHpps">False</Linker>
|
||||||
|
<Linker Name="ConsoleApp">1</Linker>
|
||||||
|
<Linker Name="DebugInfo">False</Linker>
|
||||||
|
<Linker Name="RemoteSymbols">False</Linker>
|
||||||
|
<Linker Name="GenerateDRC">False</Linker>
|
||||||
|
<Linker Name="MinStackSize">16384</Linker>
|
||||||
|
<Linker Name="MaxStackSize">1048576</Linker>
|
||||||
|
<Linker Name="ImageBase">1337982976</Linker>
|
||||||
|
<Linker Name="ExeDescription">Toolbar2000 -- SpTBXLib</Linker>
|
||||||
|
</Linker>
|
||||||
|
<Directories>
|
||||||
|
<Directories Name="OutputDir"></Directories>
|
||||||
|
<Directories Name="UnitOutputDir"></Directories>
|
||||||
|
<Directories Name="PackageDLLOutputDir"></Directories>
|
||||||
|
<Directories Name="PackageDCPOutputDir"></Directories>
|
||||||
|
<Directories Name="SearchPath"></Directories>
|
||||||
|
<Directories Name="Packages"></Directories>
|
||||||
|
<Directories Name="Conditionals"></Directories>
|
||||||
|
<Directories Name="DebugSourceDirs"></Directories>
|
||||||
|
<Directories Name="UsePackages">False</Directories>
|
||||||
|
</Directories>
|
||||||
|
<Parameters>
|
||||||
|
<Parameters Name="RunParams"></Parameters>
|
||||||
|
<Parameters Name="HostApplication"></Parameters>
|
||||||
|
<Parameters Name="Launcher"></Parameters>
|
||||||
|
<Parameters Name="UseLauncher">False</Parameters>
|
||||||
|
<Parameters Name="DebugCWD"></Parameters>
|
||||||
|
<Parameters Name="Debug Symbols Search Path"></Parameters>
|
||||||
|
<Parameters Name="LoadAllSymbols">True</Parameters>
|
||||||
|
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
|
||||||
|
</Parameters>
|
||||||
|
<Language>
|
||||||
|
<Language Name="ActiveLang"></Language>
|
||||||
|
<Language Name="ProjectLang">$00000000</Language>
|
||||||
|
<Language Name="RootDir"></Language>
|
||||||
|
</Language>
|
||||||
|
<VersionInfo>
|
||||||
|
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
|
||||||
|
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||||
|
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||||
|
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Release">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Build">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Debug">False</VersionInfo>
|
||||||
|
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Special">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Private">False</VersionInfo>
|
||||||
|
<VersionInfo Name="DLL">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Locale">1033</VersionInfo>
|
||||||
|
<VersionInfo Name="CodePage">1252</VersionInfo>
|
||||||
|
</VersionInfo>
|
||||||
|
<VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="CompanyName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="FileDescription"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="InternalName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="LegalCopyright"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="LegalTrademarks"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="OriginalFilename"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="ProductName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="Comments"></VersionInfoKeys>
|
||||||
|
</VersionInfoKeys>
|
||||||
|
</Delphi.Personality>
|
||||||
|
</BorlandProject>
|
||||||
50
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d10.dpk
Normal file
50
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d10.dpk
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
package SpTBXLib_d10;
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
{$ALIGN 8}
|
||||||
|
{$ASSERTIONS ON}
|
||||||
|
{$BOOLEVAL OFF}
|
||||||
|
{$DEBUGINFO ON}
|
||||||
|
{$EXTENDEDSYNTAX ON}
|
||||||
|
{$IMPORTEDDATA ON}
|
||||||
|
{$IOCHECKS ON}
|
||||||
|
{$LOCALSYMBOLS ON}
|
||||||
|
{$LONGSTRINGS ON}
|
||||||
|
{$OPENSTRINGS ON}
|
||||||
|
{$OPTIMIZATION ON}
|
||||||
|
{$OVERFLOWCHECKS OFF}
|
||||||
|
{$RANGECHECKS OFF}
|
||||||
|
{$REFERENCEINFO ON}
|
||||||
|
{$SAFEDIVIDE OFF}
|
||||||
|
{$STACKFRAMES OFF}
|
||||||
|
{$TYPEDADDRESS OFF}
|
||||||
|
{$VARSTRINGCHECKS ON}
|
||||||
|
{$WRITEABLECONST OFF}
|
||||||
|
{$MINENUMSIZE 1}
|
||||||
|
{$IMAGEBASE $4FC00000}
|
||||||
|
{$DESCRIPTION 'Toolbar2000 -- SpTBXLib'}
|
||||||
|
{$RUNONLY}
|
||||||
|
{$IMPLICITBUILD ON}
|
||||||
|
|
||||||
|
requires
|
||||||
|
vcl,
|
||||||
|
tb2k_d10,
|
||||||
|
TntUnicodeVcl,
|
||||||
|
rtl;
|
||||||
|
|
||||||
|
contains
|
||||||
|
SpTBXItem in '..\Source\SpTBXItem.pas',
|
||||||
|
SpTBXControls in '..\Source\SpTBXControls.pas',
|
||||||
|
SpTBXTabs in '..\Source\SpTBXTabs.pas',
|
||||||
|
SpTBXDkPanels in '..\Source\SpTBXDkPanels.pas',
|
||||||
|
SpTBXEditors in '..\Source\SpTBXEditors.pas',
|
||||||
|
SpTBXExtEditors in '..\Source\SpTBXExtEditors.pas',
|
||||||
|
SpTBXColorPickerForm in '..\Source\SpTBXColorPickerForm.pas',
|
||||||
|
SpTBXMDIMRU in '..\Source\SpTBXMDIMRU.pas',
|
||||||
|
SpTBXFormPopupMenu in '..\Source\SpTBXFormPopupMenu.pas',
|
||||||
|
SpTBXCustomizer in '..\Source\SpTBXCustomizer.pas',
|
||||||
|
SpTBXCustomizerForm in '..\Source\SpTBXCustomizerForm.pas',
|
||||||
|
SpTBXSkins in '..\Source\SpTBXSkins.pas',
|
||||||
|
SpTBXDefaultSkins in '..\Source\SpTBXDefaultSkins.pas';
|
||||||
|
|
||||||
|
end.
|
||||||
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d10.res
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d10.res
Normal file
Binary file not shown.
175
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d11.bdsproj
Normal file
175
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d11.bdsproj
Normal file
@ -0,0 +1,175 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<BorlandProject>
|
||||||
|
<PersonalityInfo>
|
||||||
|
<Option>
|
||||||
|
<Option Name="Personality">Delphi.Personality</Option>
|
||||||
|
<Option Name="ProjectType">VCLApplication</Option>
|
||||||
|
<Option Name="Version">1.0</Option>
|
||||||
|
<Option Name="GUID">{1EB74E79-E290-4976-B63E-8E6B50611D5F}</Option>
|
||||||
|
</Option>
|
||||||
|
</PersonalityInfo>
|
||||||
|
<Delphi.Personality>
|
||||||
|
<Source>
|
||||||
|
<Source Name="MainSource">SpTBXLib_d11.dpk</Source>
|
||||||
|
</Source>
|
||||||
|
<FileVersion>
|
||||||
|
<FileVersion Name="Version">7.0</FileVersion>
|
||||||
|
</FileVersion>
|
||||||
|
<Compiler>
|
||||||
|
<Compiler Name="A">8</Compiler>
|
||||||
|
<Compiler Name="B">0</Compiler>
|
||||||
|
<Compiler Name="C">1</Compiler>
|
||||||
|
<Compiler Name="D">1</Compiler>
|
||||||
|
<Compiler Name="E">0</Compiler>
|
||||||
|
<Compiler Name="F">0</Compiler>
|
||||||
|
<Compiler Name="G">1</Compiler>
|
||||||
|
<Compiler Name="H">1</Compiler>
|
||||||
|
<Compiler Name="I">1</Compiler>
|
||||||
|
<Compiler Name="J">0</Compiler>
|
||||||
|
<Compiler Name="K">0</Compiler>
|
||||||
|
<Compiler Name="L">1</Compiler>
|
||||||
|
<Compiler Name="M">0</Compiler>
|
||||||
|
<Compiler Name="N">1</Compiler>
|
||||||
|
<Compiler Name="O">1</Compiler>
|
||||||
|
<Compiler Name="P">1</Compiler>
|
||||||
|
<Compiler Name="Q">0</Compiler>
|
||||||
|
<Compiler Name="R">0</Compiler>
|
||||||
|
<Compiler Name="S">0</Compiler>
|
||||||
|
<Compiler Name="T">0</Compiler>
|
||||||
|
<Compiler Name="U">0</Compiler>
|
||||||
|
<Compiler Name="V">1</Compiler>
|
||||||
|
<Compiler Name="W">0</Compiler>
|
||||||
|
<Compiler Name="X">1</Compiler>
|
||||||
|
<Compiler Name="Y">1</Compiler>
|
||||||
|
<Compiler Name="Z">1</Compiler>
|
||||||
|
<Compiler Name="ShowHints">True</Compiler>
|
||||||
|
<Compiler Name="ShowWarnings">True</Compiler>
|
||||||
|
<Compiler Name="UnitAliases">WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;</Compiler>
|
||||||
|
<Compiler Name="NamespacePrefix"></Compiler>
|
||||||
|
<Compiler Name="GenerateDocumentation">False</Compiler>
|
||||||
|
<Compiler Name="DefaultNamespace"></Compiler>
|
||||||
|
<Compiler Name="SymbolDeprecated">True</Compiler>
|
||||||
|
<Compiler Name="SymbolLibrary">True</Compiler>
|
||||||
|
<Compiler Name="SymbolPlatform">True</Compiler>
|
||||||
|
<Compiler Name="SymbolExperimental">True</Compiler>
|
||||||
|
<Compiler Name="UnitLibrary">True</Compiler>
|
||||||
|
<Compiler Name="UnitPlatform">True</Compiler>
|
||||||
|
<Compiler Name="UnitDeprecated">True</Compiler>
|
||||||
|
<Compiler Name="UnitExperimental">True</Compiler>
|
||||||
|
<Compiler Name="HResultCompat">True</Compiler>
|
||||||
|
<Compiler Name="HidingMember">True</Compiler>
|
||||||
|
<Compiler Name="HiddenVirtual">True</Compiler>
|
||||||
|
<Compiler Name="Garbage">True</Compiler>
|
||||||
|
<Compiler Name="BoundsError">True</Compiler>
|
||||||
|
<Compiler Name="ZeroNilCompat">True</Compiler>
|
||||||
|
<Compiler Name="StringConstTruncated">True</Compiler>
|
||||||
|
<Compiler Name="ForLoopVarVarPar">True</Compiler>
|
||||||
|
<Compiler Name="TypedConstVarPar">True</Compiler>
|
||||||
|
<Compiler Name="AsgToTypedConst">True</Compiler>
|
||||||
|
<Compiler Name="CaseLabelRange">True</Compiler>
|
||||||
|
<Compiler Name="ForVariable">True</Compiler>
|
||||||
|
<Compiler Name="ConstructingAbstract">True</Compiler>
|
||||||
|
<Compiler Name="ComparisonFalse">True</Compiler>
|
||||||
|
<Compiler Name="ComparisonTrue">True</Compiler>
|
||||||
|
<Compiler Name="ComparingSignedUnsigned">True</Compiler>
|
||||||
|
<Compiler Name="CombiningSignedUnsigned">True</Compiler>
|
||||||
|
<Compiler Name="UnsupportedConstruct">True</Compiler>
|
||||||
|
<Compiler Name="FileOpen">True</Compiler>
|
||||||
|
<Compiler Name="FileOpenUnitSrc">True</Compiler>
|
||||||
|
<Compiler Name="BadGlobalSymbol">True</Compiler>
|
||||||
|
<Compiler Name="DuplicateConstructorDestructor">True</Compiler>
|
||||||
|
<Compiler Name="InvalidDirective">True</Compiler>
|
||||||
|
<Compiler Name="PackageNoLink">True</Compiler>
|
||||||
|
<Compiler Name="PackageThreadVar">True</Compiler>
|
||||||
|
<Compiler Name="ImplicitImport">True</Compiler>
|
||||||
|
<Compiler Name="HPPEMITIgnored">True</Compiler>
|
||||||
|
<Compiler Name="NoRetVal">True</Compiler>
|
||||||
|
<Compiler Name="UseBeforeDef">True</Compiler>
|
||||||
|
<Compiler Name="ForLoopVarUndef">True</Compiler>
|
||||||
|
<Compiler Name="UnitNameMismatch">True</Compiler>
|
||||||
|
<Compiler Name="NoCFGFileFound">True</Compiler>
|
||||||
|
<Compiler Name="ImplicitVariants">True</Compiler>
|
||||||
|
<Compiler Name="UnicodeToLocale">True</Compiler>
|
||||||
|
<Compiler Name="LocaleToUnicode">True</Compiler>
|
||||||
|
<Compiler Name="ImagebaseMultiple">True</Compiler>
|
||||||
|
<Compiler Name="SuspiciousTypecast">True</Compiler>
|
||||||
|
<Compiler Name="PrivatePropAccessor">True</Compiler>
|
||||||
|
<Compiler Name="UnsafeType">False</Compiler>
|
||||||
|
<Compiler Name="UnsafeCode">False</Compiler>
|
||||||
|
<Compiler Name="UnsafeCast">False</Compiler>
|
||||||
|
<Compiler Name="OptionTruncated">True</Compiler>
|
||||||
|
<Compiler Name="WideCharReduced">True</Compiler>
|
||||||
|
<Compiler Name="DuplicatesIgnored">True</Compiler>
|
||||||
|
<Compiler Name="UnitInitSeq">True</Compiler>
|
||||||
|
<Compiler Name="LocalPInvoke">True</Compiler>
|
||||||
|
<Compiler Name="MessageDirective">True</Compiler>
|
||||||
|
<Compiler Name="CodePage"></Compiler>
|
||||||
|
</Compiler>
|
||||||
|
<Linker>
|
||||||
|
<Linker Name="MapFile">0</Linker>
|
||||||
|
<Linker Name="OutputObjs">0</Linker>
|
||||||
|
<Linker Name="GenerateHpps">False</Linker>
|
||||||
|
<Linker Name="ConsoleApp">1</Linker>
|
||||||
|
<Linker Name="DebugInfo">False</Linker>
|
||||||
|
<Linker Name="RemoteSymbols">False</Linker>
|
||||||
|
<Linker Name="GenerateDRC">False</Linker>
|
||||||
|
<Linker Name="MinStackSize">16384</Linker>
|
||||||
|
<Linker Name="MaxStackSize">1048576</Linker>
|
||||||
|
<Linker Name="ImageBase">1337982976</Linker>
|
||||||
|
<Linker Name="ExeDescription">Toolbar2000 -- SpTBXLib</Linker>
|
||||||
|
</Linker>
|
||||||
|
<Directories>
|
||||||
|
<Directories Name="OutputDir"></Directories>
|
||||||
|
<Directories Name="UnitOutputDir"></Directories>
|
||||||
|
<Directories Name="PackageDLLOutputDir"></Directories>
|
||||||
|
<Directories Name="PackageDCPOutputDir"></Directories>
|
||||||
|
<Directories Name="SearchPath"></Directories>
|
||||||
|
<Directories Name="Packages"></Directories>
|
||||||
|
<Directories Name="Conditionals"></Directories>
|
||||||
|
<Directories Name="DebugSourceDirs"></Directories>
|
||||||
|
<Directories Name="UsePackages">False</Directories>
|
||||||
|
</Directories>
|
||||||
|
<Parameters>
|
||||||
|
<Parameters Name="RunParams"></Parameters>
|
||||||
|
<Parameters Name="HostApplication"></Parameters>
|
||||||
|
<Parameters Name="Launcher"></Parameters>
|
||||||
|
<Parameters Name="UseLauncher">False</Parameters>
|
||||||
|
<Parameters Name="DebugCWD"></Parameters>
|
||||||
|
<Parameters Name="Debug Symbols Search Path"></Parameters>
|
||||||
|
<Parameters Name="LoadAllSymbols">True</Parameters>
|
||||||
|
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
|
||||||
|
</Parameters>
|
||||||
|
<Language>
|
||||||
|
<Language Name="ActiveLang"></Language>
|
||||||
|
<Language Name="ProjectLang">$00000000</Language>
|
||||||
|
<Language Name="RootDir"></Language>
|
||||||
|
</Language>
|
||||||
|
<VersionInfo>
|
||||||
|
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
|
||||||
|
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
||||||
|
<VersionInfo Name="MajorVer">1</VersionInfo>
|
||||||
|
<VersionInfo Name="MinorVer">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Release">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Build">0</VersionInfo>
|
||||||
|
<VersionInfo Name="Debug">False</VersionInfo>
|
||||||
|
<VersionInfo Name="PreRelease">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Special">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Private">False</VersionInfo>
|
||||||
|
<VersionInfo Name="DLL">False</VersionInfo>
|
||||||
|
<VersionInfo Name="Locale">1033</VersionInfo>
|
||||||
|
<VersionInfo Name="CodePage">1252</VersionInfo>
|
||||||
|
</VersionInfo>
|
||||||
|
<VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="CompanyName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="FileDescription"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="InternalName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="LegalCopyright"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="LegalTrademarks"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="OriginalFilename"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="ProductName"></VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
||||||
|
<VersionInfoKeys Name="Comments"></VersionInfoKeys>
|
||||||
|
</VersionInfoKeys>
|
||||||
|
</Delphi.Personality>
|
||||||
|
</BorlandProject>
|
||||||
50
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d11.dpk
Normal file
50
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d11.dpk
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
package SpTBXLib_d11;
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
{$ALIGN 8}
|
||||||
|
{$ASSERTIONS ON}
|
||||||
|
{$BOOLEVAL OFF}
|
||||||
|
{$DEBUGINFO ON}
|
||||||
|
{$EXTENDEDSYNTAX ON}
|
||||||
|
{$IMPORTEDDATA ON}
|
||||||
|
{$IOCHECKS ON}
|
||||||
|
{$LOCALSYMBOLS ON}
|
||||||
|
{$LONGSTRINGS ON}
|
||||||
|
{$OPENSTRINGS ON}
|
||||||
|
{$OPTIMIZATION ON}
|
||||||
|
{$OVERFLOWCHECKS OFF}
|
||||||
|
{$RANGECHECKS OFF}
|
||||||
|
{$REFERENCEINFO ON}
|
||||||
|
{$SAFEDIVIDE OFF}
|
||||||
|
{$STACKFRAMES OFF}
|
||||||
|
{$TYPEDADDRESS OFF}
|
||||||
|
{$VARSTRINGCHECKS ON}
|
||||||
|
{$WRITEABLECONST OFF}
|
||||||
|
{$MINENUMSIZE 1}
|
||||||
|
{$IMAGEBASE $4FC00000}
|
||||||
|
{$DESCRIPTION 'Toolbar2000 -- SpTBXLib'}
|
||||||
|
{$RUNONLY}
|
||||||
|
{$IMPLICITBUILD ON}
|
||||||
|
|
||||||
|
requires
|
||||||
|
vcl,
|
||||||
|
tb2k_d11,
|
||||||
|
TntUnicodeVcl,
|
||||||
|
rtl;
|
||||||
|
|
||||||
|
contains
|
||||||
|
SpTBXItem in '..\Source\SpTBXItem.pas',
|
||||||
|
SpTBXControls in '..\Source\SpTBXControls.pas',
|
||||||
|
SpTBXTabs in '..\Source\SpTBXTabs.pas',
|
||||||
|
SpTBXDkPanels in '..\Source\SpTBXDkPanels.pas',
|
||||||
|
SpTBXEditors in '..\Source\SpTBXEditors.pas',
|
||||||
|
SpTBXExtEditors in '..\Source\SpTBXExtEditors.pas',
|
||||||
|
SpTBXColorPickerForm in '..\Source\SpTBXColorPickerForm.pas',
|
||||||
|
SpTBXMDIMRU in '..\Source\SpTBXMDIMRU.pas',
|
||||||
|
SpTBXFormPopupMenu in '..\Source\SpTBXFormPopupMenu.pas',
|
||||||
|
SpTBXCustomizer in '..\Source\SpTBXCustomizer.pas',
|
||||||
|
SpTBXCustomizerForm in '..\Source\SpTBXCustomizerForm.pas',
|
||||||
|
SpTBXSkins in '..\Source\SpTBXSkins.pas',
|
||||||
|
SpTBXDefaultSkins in '..\Source\SpTBXDefaultSkins.pas';
|
||||||
|
|
||||||
|
end.
|
||||||
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d11.res
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d11.res
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d12.bpi
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d12.bpi
Normal file
Binary file not shown.
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d12.dcu
Normal file
BIN
official/2.2.2+2.4.2/SpTBXLib/Packages/SpTBXLib_d12.dcu
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user