summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2013-12-09 16:37:19 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2013-12-09 16:37:19 +0000
commitf73390e506d9a67fe4026221816f02fb1bf6234d (patch)
treef0eac5354800759f477d53a3bef3b1b578a9e309 /tools
parentc6e39edfaed2851c43de66f798a13f1eb38e9115 (diff)
LangPackMgr tool and langpacks/belarusian update(by Jebifor)
git-svn-id: http://svn.miranda-ng.org/main/trunk@7109 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools')
-rw-r--r--tools/langpackmgr/LangPackMgr.dpr (renamed from tools/langpackmgr/langpackmgr.dpr)0
-rw-r--r--tools/langpackmgr/LangPackMgr.dproj (renamed from tools/langpackmgr/langpackmgr.dproj)3
-rw-r--r--tools/langpackmgr/Unit1.dfm10
-rw-r--r--tools/langpackmgr/Unit1.pas63
-rw-r--r--tools/langpackmgr/Unit2.dfm79
-rw-r--r--tools/langpackmgr/Unit2.pas89
-rw-r--r--tools/langpackmgr/langpackmgr.icobin5430 -> 0 bytes
-rw-r--r--tools/langpackmgr/lpmanager.dpr21
-rw-r--r--tools/langpackmgr/lpmanager.dproj196
9 files changed, 59 insertions, 402 deletions
diff --git a/tools/langpackmgr/langpackmgr.dpr b/tools/langpackmgr/LangPackMgr.dpr
index 028bee13c4..028bee13c4 100644
--- a/tools/langpackmgr/langpackmgr.dpr
+++ b/tools/langpackmgr/LangPackMgr.dpr
diff --git a/tools/langpackmgr/langpackmgr.dproj b/tools/langpackmgr/LangPackMgr.dproj
index 321e9ce4ed..31b4ad8a33 100644
--- a/tools/langpackmgr/langpackmgr.dproj
+++ b/tools/langpackmgr/LangPackMgr.dproj
@@ -115,12 +115,13 @@
<DCC_DebugInformation>false</DCC_DebugInformation>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
+ <VerInfo_Build>1</VerInfo_Build>
<VerInfo_MajorVer>2</VerInfo_MajorVer>
<VerInfo_AutoIncVersion>true</VerInfo_AutoIncVersion>
<VerInfo_Locale>1059</VerInfo_Locale>
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
- <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=2.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=2.0.0.0;Comments=</VerInfo_Keys>
+ <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=2.0.0.1;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=2.0.0.1;Comments=</VerInfo_Keys>
<Icon_MainIcon>LPmanager_Icon.ico</Icon_MainIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
diff --git a/tools/langpackmgr/Unit1.dfm b/tools/langpackmgr/Unit1.dfm
index de0d0cb7c2..94b856409d 100644
--- a/tools/langpackmgr/Unit1.dfm
+++ b/tools/langpackmgr/Unit1.dfm
@@ -89,4 +89,14 @@ object Form1: TForm1
'All items'
'Untranslated items')
end
+ object Button4: TButton
+ Left = 304
+ Top = 317
+ Width = 75
+ Height = 25
+ Caption = 'Find lines'
+ TabOrder = 7
+ Visible = False
+ OnClick = Button4Click
+ end
end
diff --git a/tools/langpackmgr/Unit1.pas b/tools/langpackmgr/Unit1.pas
index b7b249eea2..978102cfe6 100644
--- a/tools/langpackmgr/Unit1.pas
+++ b/tools/langpackmgr/Unit1.pas
@@ -15,6 +15,7 @@ type
Button2: TButton;
Button3: TButton;
ComboBox1: TComboBox;
+ Button4: TButton;
procedure ListBox12Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure ListBox1Click(Sender: TObject);
@@ -25,6 +26,7 @@ type
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button1Click(Sender: TObject);
+ procedure Button4Click(Sender: TObject);
private
{ Private declarations }
@@ -59,11 +61,11 @@ var str:string; i:integer;
if locale='bulgarian' then str:=str+'bg/';
if locale='chinese' then str:=str+'zh-CN/';
if locale='czech' then str:=str+'cs/';
- if locale='duth' then str:=str+'da/';
+ if locale='dutch' then str:=str+'da/';
if locale='estonian' then str:=str+'et/';
if locale='french' then str:=str+'fr/';
if locale='german' then str:=str+'de/';
- if locale='herbrew' then str:=str+'iw/';
+ if locale='hebrew' then str:=str+'iw/';
if locale='hungarian' then str:=str+'hu/';
if locale='italian' then str:=str+'it/';
if locale='japanese' then str:=str+'ja/';
@@ -99,6 +101,13 @@ var sList:TStringList;
begin
sList.add(s[0,i]);
sList.add(s[1,i]);
+ end
+ else
+ if (copy(s[0,i],1,1)='[')and
+ (fileexists(extractfilePath(application.exename)+'clearstring.ini'))then
+ begin
+ sList.add(s[0,i]);
+ sList.add('');
end;
end;
sList.SavetoFile(extractfilePath(application.exename)
@@ -106,6 +115,23 @@ var sList:TStringList;
sList.free;
end;
+procedure TForm1.Button4Click(Sender: TObject);
+var search:TStringList;
+q:integer;
+begin
+search:=TstringList.Create;
+search.LoadFromFile(extractfilePath(application.exename)+
+'/'+locale+'/'+'Langpack_'+locale+'.txt');
+for q := 1 to listbox1.items.Count-1 do
+for i := 1 to search.count-1 do
+ if (s[0,u[q]]=search[i])and(copy(search[i+1],1,1)<>'[')then
+ begin
+ s[1,u[q]]:=search[i+1];
+ break;
+ end;
+search.free;
+end;
+
procedure tform1.fileslist;
begin
ListBox1.Items.Add('=CORE=');
@@ -199,6 +225,7 @@ procedure TForm1.FormCreate(Sender: TObject);
begin
langlist;
qq:=0;
+
end;
procedure TForm1.ListBox1Click(Sender: TObject);
@@ -215,7 +242,6 @@ procedure TForm1.ListBox1Click(Sender: TObject);
if (qq=2) and (listbox1.itemindex>0)then
begin
savestring;
- {}
memo1.Lines.clear;
memo2.Lines.clear;
stringview;
@@ -232,11 +258,6 @@ case qq of
ListBox1.height:=300;
Combobox1.Visible:=true;
Memo1.Lines.Clear;
- Memo1.Height:=150;
- Memo2.Visible:=true;
- Button1.Visible:=true;
- Button2.Visible:=true;
- Button3.Visible:=true;
locale:=listbox1.items[listbox1.itemindex];
listbox1.items.clear;
form1.Caption:='Miranda NG Langpack Manager: '+locale;
@@ -252,11 +273,6 @@ case qq of
Combobox1.Visible:=false;
ListBox1.Items.clear;
Memo1.Lines.Clear;
- Memo1.Height:=343;
- Memo2.Visible:=false;
- Button1.Visible:=false;
- Button2.Visible:=false;
- Button3.Visible:=false;
langlist;
listbox1.itemindex:=0;
form1.Caption:='Miranda NG Langpack Manager';
@@ -267,6 +283,11 @@ case qq of
for i := 1 to 6000 do
begin s[0,i]:='';s[1,i]:='';end;
j:=0;
+ Memo1.Height:=150;
+ Memo2.Visible:=true;
+ Button1.Visible:=true;
+ Button2.Visible:=true;
+ Button3.Visible:=true;
lList:=TstringList.Create;
lList.LoadFromFile(extractfilePath(application.exename)+'/english/'
+listbox1.items[listbox1.itemindex]+'.txt',TEncoding.UTF8);
@@ -291,11 +312,12 @@ case qq of
+listbox1.items[listbox1.itemindex]+'.txt',TEncoding.UTF8);
for z:= 1 to j do
for i := 1 to lList.count-2 do
- if (copy(s[0,z],1,1)='[')and(s[0,z]=lList[i]) then
+ if (copy(s[0,z],1,1)='[')and(s[0,z]=lList[i])
+ and (copy(lList[i+1],1,1)<>'[')then
s[1,z]:=lList[i+1];
lList.free;
- form1.Caption:='Miranda NG Langpack Manager - '
- +locale+':'+listbox1.items[listbox1.itemindex];
+ form1.Caption:='Miranda NG Langpack Manager: '
+ +locale+'\'+listbox1.items[listbox1.itemindex];
filename:=listbox1.items[listbox1.itemindex];
listbox1.items.Clear;
listbox1.items.add('..');
@@ -307,6 +329,9 @@ case qq of
u[z]:=i;
listbox1.items.add(copy(s[0,i],2,length(s[0,i])-2));
end;
+ if (fileexists(extractfilePath(application.exename)+'/'+locale+'/'
+ +'Langpack_'+locale+'.txt')) and (listbox1.items.Count>1) then
+ button4.Visible:=true;
qq:=2;
end;
@@ -315,6 +340,12 @@ case qq of
2:begin
if listbox1.items[listbox1.itemindex]='..' then
begin
+ Memo1.Height:=343;
+ Memo2.Visible:=false;
+ Button1.Visible:=false;
+ Button2.Visible:=false;
+ Button3.Visible:=false;
+ button4.Visible:=false;
listbox1.Items.Clear;
listbox1.Items.Add('..');
fileslist;
diff --git a/tools/langpackmgr/Unit2.dfm b/tools/langpackmgr/Unit2.dfm
deleted file mode 100644
index 1f6cb2313f..0000000000
--- a/tools/langpackmgr/Unit2.dfm
+++ /dev/null
@@ -1,79 +0,0 @@
-object Form2: TForm2
- Left = 0
- Top = 0
- BorderIcons = []
- Caption = 'Select the language'
- ClientHeight = 151
- ClientWidth = 205
- 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 Label1: TLabel
- Left = 8
- Top = 8
- Width = 89
- Height = 13
- Caption = 'Editable language:'
- end
- object Label2: TLabel
- Left = 8
- Top = 62
- Width = 113
- Height = 13
- Caption = 'Languages to compare:'
- end
- object ComboBox1: TComboBox
- Left = 8
- Top = 27
- Width = 185
- Height = 22
- Style = csOwnerDrawFixed
- TabOrder = 0
- OnChange = ComboBox1Change
- end
- object CheckBox1: TCheckBox
- Left = 137
- Top = 61
- Width = 56
- Height = 17
- Caption = 'english'
- Checked = True
- Enabled = False
- State = cbChecked
- TabOrder = 1
- end
- object Button1: TButton
- Left = 103
- Top = 118
- Width = 89
- Height = 25
- Caption = 'Start'
- Enabled = False
- TabOrder = 2
- OnClick = Button1Click
- end
- object Button2: TButton
- Left = 8
- Top = 118
- Width = 89
- Height = 25
- Caption = 'Cancel'
- TabOrder = 3
- OnClick = Button2Click
- end
- object ComboBox2: TComboBox
- Left = 8
- Top = 84
- Width = 185
- Height = 22
- Style = csOwnerDrawFixed
- TabOrder = 4
- end
-end
diff --git a/tools/langpackmgr/Unit2.pas b/tools/langpackmgr/Unit2.pas
deleted file mode 100644
index b71163e1aa..0000000000
--- a/tools/langpackmgr/Unit2.pas
+++ /dev/null
@@ -1,89 +0,0 @@
-unit Unit2;
-
-interface
-
-uses
- Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
- Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.CheckLst, unit1;
-
-type
- TForm2 = class(TForm)
- ComboBox1: TComboBox;
- CheckBox1: TCheckBox;
- Button1: TButton;
- Label1: TLabel;
- Label2: TLabel;
- Button2: TButton;
- ComboBox2: TComboBox;
- procedure Button1Click(Sender: TObject);
- procedure FormCreate(Sender: TObject);
- procedure ComboBox1Change(Sender: TObject);
- procedure Button2Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
-var
- Form2: TForm2;
- n:integer;
-implementation
-
-{$R *.dfm}
-
-procedure TForm2.Button1Click(Sender: TObject);
-begin
-form1.caption:=ComboBox1.text;
-form1.RadioGroup1.Items.Add('english');
-if combobox2.text<>'' then
-form1.RadioGroup1.Items.Add(combobox2.text);
-form1.RadioGroup1.ItemIndex:=0;
-form1.showmodal;
-form2.Close;
-end;
-
-procedure TForm2.Button2Click(Sender: TObject);
-begin
-form2.Close;
-end;
-
-procedure TForm2.ComboBox1Change(Sender: TObject);
-var i:integer;
-begin
- combobox2.Items.Clear;
- for i :=0 to combobox1.ItemHeight+5 do // не понял зачем +5
- if i<>combobox1.ItemIndex then
- combobox2.Items.Add(combobox1.Items[i]);
- button1.Enabled:=true;
-end;
-
-procedure TForm2.FormCreate(Sender: TObject);
-var
- SR:TSearchRec;
- Res:Integer;
-begin
-
-Res:=FindFirst(ExtractFilePath(Application.ExeName)+'*', faAnyFile, SR);
-while Res = 0 do
-begin
-if ((SR.Attr and faDirectory)=faDirectory) and ((SR.Name='.')or(SR.Name='..')) then
-begin
-Res:=FindNext(SR);
-Continue;
-end;
-if ((SR.Attr and faDirectory)=faDirectory) then
-begin
-if (fileexists(ExtractFilePath(Application.ExeName)+'/'+SR.Name+'/=HEAD=.txt'))
-and (sr.Name<>'english') then
-begin
-Form2.combobox1.Items.Add(SR.Name);
-
-end;
-end;
-Res:=FindNext(SR);
-end;
-FindClose(SR);
-end;
-
-end.
diff --git a/tools/langpackmgr/langpackmgr.ico b/tools/langpackmgr/langpackmgr.ico
deleted file mode 100644
index 297ce84a9f..0000000000
--- a/tools/langpackmgr/langpackmgr.ico
+++ /dev/null
Binary files differ
diff --git a/tools/langpackmgr/lpmanager.dpr b/tools/langpackmgr/lpmanager.dpr
deleted file mode 100644
index 876548f6f7..0000000000
--- a/tools/langpackmgr/lpmanager.dpr
+++ /dev/null
@@ -1,21 +0,0 @@
-program lpmanager;
-
-uses
- Vcl.Forms,
- Unit1 in 'Unit1.pas' {Form1},
- Unit2 in 'Unit2.pas' {Form2};
-
-{ IMAGE_FILE_LINE_NUMS_STRIPPED or IMAGE_FILE_LOCAL_SYMS_STRIPPED or
- IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP or IMAGE_FILE_NET_RUN_FROM_SWAP}
- {$WEAKLINKRTTI ON}
- {$RTTI EXPLICIT METHODS([]) PROPERTIES([]) FIELDS([])}
-{$R *.res}
-
-begin
- Application.Initialize;
- Application.MainFormOnTaskbar := True;
- Application.Title := 'Miranda LangPack Manager';
- Application.CreateForm(TForm2, Form2);
- Application.CreateForm(TForm1, Form1);
- Application.Run;
-end.
diff --git a/tools/langpackmgr/lpmanager.dproj b/tools/langpackmgr/lpmanager.dproj
deleted file mode 100644
index 4125de70fd..0000000000
--- a/tools/langpackmgr/lpmanager.dproj
+++ /dev/null
@@ -1,196 +0,0 @@
-п»ї<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <ProjectGuid>{2DD0A017-C6BD-47BC-89F3-19A1F4372290}</ProjectGuid>
- <ProjectVersion>14.6</ProjectVersion>
- <FrameworkType>VCL</FrameworkType>
- <MainSource>lpmanager.dpr</MainSource>
- <Base>True</Base>
- <Config Condition="'$(Config)'==''">Release</Config>
- <Platform Condition="'$(Platform)'==''">Win32</Platform>
- <TargetedPlatforms>3</TargetedPlatforms>
- <AppType>Application</AppType>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
- <Base>true</Base>
- </PropertyGroup>
- <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
- <Base_Win32>true</Base_Win32>
- <CfgParent>Base</CfgParent>
- <Base>true</Base>
- </PropertyGroup>
- <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
- <Base_Win64>true</Base_Win64>
- <CfgParent>Base</CfgParent>
- <Base>true</Base>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
- <Cfg_1>true</Cfg_1>
- <CfgParent>Base</CfgParent>
- <Base>true</Base>
- </PropertyGroup>
- <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
- <Cfg_1_Win32>true</Cfg_1_Win32>
- <CfgParent>Cfg_1</CfgParent>
- <Cfg_1>true</Cfg_1>
- <Base>true</Base>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
- <Cfg_2>true</Cfg_2>
- <CfgParent>Base</CfgParent>
- <Base>true</Base>
- </PropertyGroup>
- <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
- <Cfg_2_Win32>true</Cfg_2_Win32>
- <CfgParent>Cfg_2</CfgParent>
- <Cfg_2>true</Cfg_2>
- <Base>true</Base>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Base)'!=''">
- <VerInfo_Locale>1049</VerInfo_Locale>
- <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
- <Manifest_File>None</Manifest_File>
- <Icon_MainIcon>$(BDS)\bin\delphi_PROJECTICON.ico</Icon_MainIcon>
- <DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace)</DCC_Namespace>
- <DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
- <DCC_ExeOutput>.\..\..\langpacks</DCC_ExeOutput>
- <DCC_E>false</DCC_E>
- <DCC_N>false</DCC_N>
- <DCC_S>false</DCC_S>
- <DCC_F>false</DCC_F>
- <DCC_K>false</DCC_K>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Base_Win32)'!=''">
- <VerInfo_Locale>1033</VerInfo_Locale>
- <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
- <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
- <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
- <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
- <DCC_UsePackage>bindcompfmx;DBXSqliteDriver;vcldbx;rtl;dbrtl;DbxClientDriver;IndySystem;bindcomp;inetdb;inetdbbde;DBXInterBaseDriver;DataSnapClient;DataSnapCommon;DBXOdbcDriver;DataSnapServer;DataSnapProviderClient;xmlrtl;svnui;DBXSybaseASEDriver;DbxCommonDriver;vclimg;IndyProtocols;dbxcds;DBXMySQLDriver;DatasnapConnectorsFreePascal;MetropolisUILiveTile;bindcompdbx;vclactnband;bindengine;vcldb;soaprtl;vcldsnap;bindcompvcl;vclie;vcltouch;DBXDb2Driver;DBXOracleDriver;CustomIPTransport;VclSmp;dsnap;IndyIPServer;DBXInformixDriver;IndyCore;vcl;DataSnapConnectors;IndyIPCommon;CloudService;DBXMSSQLDriver;dsnapcon;DBXFirebirdDriver;inet;vclx;inetdbxpress;webdsnap;svn;DBXSybaseASADriver;bdertl;dbexpress;adortl;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Base_Win64)'!=''">
- <VerInfo_Locale>1033</VerInfo_Locale>
- <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
- <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
- <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
- <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
- <DCC_UsePackage>bindcompfmx;DBXSqliteDriver;rtl;dbrtl;DbxClientDriver;IndySystem;bindcomp;inetdb;DBXInterBaseDriver;DataSnapClient;DataSnapCommon;DBXOdbcDriver;DataSnapServer;DataSnapProviderClient;xmlrtl;DBXSybaseASEDriver;DbxCommonDriver;vclimg;IndyProtocols;dbxcds;DBXMySQLDriver;DatasnapConnectorsFreePascal;MetropolisUILiveTile;bindcompdbx;vclactnband;bindengine;vcldb;soaprtl;vcldsnap;bindcompvcl;vclie;vcltouch;DBXDb2Driver;DBXOracleDriver;CustomIPTransport;VclSmp;dsnap;IndyIPServer;DBXInformixDriver;IndyCore;vcl;DataSnapConnectors;IndyIPCommon;CloudService;DBXMSSQLDriver;dsnapcon;DBXFirebirdDriver;inet;vclx;inetdbxpress;webdsnap;DBXSybaseASADriver;dbexpress;adortl;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Cfg_1)'!=''">
- <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
- <DCC_DebugDCUs>true</DCC_DebugDCUs>
- <DCC_Optimize>false</DCC_Optimize>
- <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
- <DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
- <DCC_RemoteDebug>true</DCC_RemoteDebug>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
- <VerInfo_Locale>1033</VerInfo_Locale>
- <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
- <DCC_RemoteDebug>false</DCC_RemoteDebug>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Cfg_2)'!=''">
- <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
- <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
- <DCC_DebugInformation>false</DCC_DebugInformation>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
- <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=0.0.1.1;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
- <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
- <VerInfo_PreRelease>true</VerInfo_PreRelease>
- <VerInfo_Build>1</VerInfo_Build>
- <VerInfo_AutoIncVersion>true</VerInfo_AutoIncVersion>
- <VerInfo_Release>1</VerInfo_Release>
- <VerInfo_MajorVer>0</VerInfo_MajorVer>
- <VerInfo_Locale>1059</VerInfo_Locale>
- <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
- <Icon_MainIcon>lpmanager_Icon.ico</Icon_MainIcon>
- </PropertyGroup>
- <ItemGroup>
- <DelphiCompile Include="$(MainSource)">
- <MainSource>MainSource</MainSource>
- </DelphiCompile>
- <DCCReference Include="Unit1.pas">
- <Form>Form1</Form>
- <FormType>dfm</FormType>
- </DCCReference>
- <DCCReference Include="Unit2.pas">
- <Form>Form2</Form>
- <FormType>dfm</FormType>
- </DCCReference>
- <BuildConfiguration Include="Release">
- <Key>Cfg_2</Key>
- <CfgParent>Base</CfgParent>
- </BuildConfiguration>
- <BuildConfiguration Include="Base">
- <Key>Base</Key>
- </BuildConfiguration>
- <BuildConfiguration Include="Debug">
- <Key>Cfg_1</Key>
- <CfgParent>Base</CfgParent>
- </BuildConfiguration>
- </ItemGroup>
- <ProjectExtensions>
- <Borland.Personality>Delphi.Personality.12</Borland.Personality>
- <Borland.ProjectType/>
- <BorlandProject>
- <Delphi.Personality>
- <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">1049</VersionInfo>
- <VersionInfo Name="CodePage">1251</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 Name="CFBundleName"/>
- <VersionInfoKeys Name="CFBundleDisplayName"/>
- <VersionInfoKeys Name="UIDeviceFamily"/>
- <VersionInfoKeys Name="CFBundleIdentifier"/>
- <VersionInfoKeys Name="CFBundleVersion"/>
- <VersionInfoKeys Name="CFBundlePackageType"/>
- <VersionInfoKeys Name="CFBundleSignature"/>
- <VersionInfoKeys Name="CFBundleAllowMixedLocalizations"/>
- <VersionInfoKeys Name="UISupportedInterfaceOrientations"/>
- <VersionInfoKeys Name="CFBundleExecutable"/>
- <VersionInfoKeys Name="CFBundleResourceSpecification"/>
- <VersionInfoKeys Name="LSRequiresIPhoneOS"/>
- <VersionInfoKeys Name="CFBundleInfoDictionaryVersion"/>
- <VersionInfoKeys Name="CFBundleDevelopmentRegion"/>
- </VersionInfoKeys>
- <Source>
- <Source Name="MainSource">lpmanager.dpr</Source>
- </Source>
- <Excluded_Packages>
- <Excluded_Packages Name="$(BDSBIN)\dcloffice2k180.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
- <Excluded_Packages Name="$(BDSBIN)\dclofficexp180.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
- </Excluded_Packages>
- </Delphi.Personality>
- <Deployment/>
- <Platforms>
- <Platform value="Win32">True</Platform>
- <Platform value="Win64">True</Platform>
- </Platforms>
- </BorlandProject>
- <ProjectFileVersion>12</ProjectFileVersion>
- </ProjectExtensions>
- <Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
- <Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
-</Project>