123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?define ProductName = "eSpeak NG Text-to-Speech" ?>
- <?define ProductVendor = "espeak-ng contributors" ?>
- <?define ProductVersion = "1.51.0" ?>
- <?define CLSID_TtsEngine = "{61D23633-CE59-4101-8158-569FC6B51B49}" ?>
- <?if $(var.Platform) = x64 ?>
- <?define ProductDisplayName = "$(var.ProductName) 64-bit" ?>
- <?define Win64 = "yes" ?>
- <?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>
- <?else ?>
- <?define ProductDisplayName = "$(var.ProductName)" ?>
- <?define Win64 = "no" ?>
- <?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>
- <?endif ?>
- <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
- <Product Id="3DA6DF03-E5CD-4A93-B06F-707484742BAB" Name="$(var.ProductDisplayName)" Language="1033" Version="$(var.ProductVersion)" Manufacturer="eSpeak Community" UpgradeCode="B4F779EB-AC6C-49D2-A12D-4871E4520C0F">
- <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Platform="$(var.Platform)" />
-
- <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
- <MediaTemplate EmbedCab="yes"/>
-
- <UIRef Id="WixUI_FeatureTree"/>
- <WixVariable Id="WixUILicenseRtf" Value="License_GPLv3.rtf"/>
-
- <Feature Id="All" Title="eSpeak NG" Level="1">
- <ComponentGroupRef Id="CoreComponents"/>
- <ComponentGroupRef Id="Data"/>
- </Feature>
- <!--
- <Feature Id="sapi" Title="SAPI Voices">
- <Feature Id="sapi_en" Title="English" Level="1">
- <ComponentGroupRef Id="LangEnglish"/>
- <ComponentGroupRef Id="SapiEnglish"/>
- </Feature>
- </Feature>
- -->
- </Product>
-
- <Fragment>
- <Directory Id="TARGETDIR" Name="SourceDir">
- <Directory Id="$(var.PlatformProgramFilesFolder)">
- <Directory Id="INSTALLDIR" Name="eSpeak NG">
- <Component Id="espeak_ng_EXE" Win64="$(var.Win64)" Guid="220D42BC-89CD-4230-A458-CD31285EB152">
- <File Name="$(var.espeak-ng.TargetFileName)" Source="$(var.espeak-ng.TargetPath)" KeyPath="yes"/>
- </Component>
- <Component Id="libespeak_ng_DLL" Win64="$(var.Win64)" Guid="AFDF57DE-D7E9-4781-BA0F-5D92FD56B045">
- <File Name="$(var.libespeak-ng.TargetFileName)" Source="$(var.libespeak-ng.TargetPath)" KeyPath="yes"/>
- <RegistryKey Root="HKLM" Key="SOFTWARE\eSpeak NG">
- <RegistryValue Name="Path" Type="string" Value="[INSTALLDIR]"/>
- </RegistryKey>
- <RegistryKey Root="HKLM" Key="Software\Classes\CLSID\$(var.CLSID_TtsEngine)">
- <RegistryValue Type="string" Value="eSpeakNG.TtsEngine"/>
- <RegistryKey Key="InprocServer32">
- <RegistryValue Type="string" Value="[INSTALLDIR]$(var.libespeak-ng.TargetFileName)"/>
- <RegistryValue Name="ThreadingModel" Type="string" Value="Both"/>
- </RegistryKey>
- </RegistryKey>
- </Component>
- <Component Id="AddToEnv" Guid="EBBBAC5D-22BA-41EB-A30A-EF1A04FEBA08" KeyPath="yes">
- <Environment Id="PATH" Name="PATH" Value="[INSTALLDIR]" Permanent="yes" Part="last" Action="set" System="yes"/>
- </Component>
- <Directory Id="espeak_ng_data" Name="espeak-ng-data">
- <Component Id="af_dict" Guid="96E3E35D-F41E-4BD7-BEDD-AA063E8CD2D3">
- <File Id="af_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\af_dict " />
- </Component>
- <Component Id="am_dict" Guid="D213585E-DE66-452E-90D6-44B73F7AD2C6">
- <File Id="am_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\am_dict" />
- </Component>
- <Component Id="an_dict" Guid="398D043F-2306-4465-AF86-0E71B8919E82">
- <File Id="an_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\an_dict" />
- </Component>
- <Component Id="ar_dict" Guid="DA018A76-E180-413D-A4FC-DC42822EE9DC">
- <File Id="ar_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ar_dict" />
- </Component>
- <Component Id="as_dict" Guid="F414CBF2-A37F-4B20-8568-E02F0005E5AC">
- <File Id="as_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\as_dict" />
- </Component>
- <Component Id="az_dict" Guid="A926DD44-BDB9-4A53-917D-ECA0293872D7">
- <File Id="az_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\az_dict" />
- </Component>
- <Component Id="ba_dict" Guid="089C7742-4635-4F56-9820-52623C760202">
- <File Id="ba_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ba_dict" />
- </Component>
- <Component Id="be_dict" Guid="C19B5995-7818-4B96-85F6-BBA3DE7AA75A">
- <File Id="be_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\be_dict" />
- </Component>
- <Component Id="bg_dict" Guid="0B2E7774-C8C2-48F2-8D13-95AD69EA4A71">
- <File Id="bg_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\bg_dict" />
- </Component>
- <Component Id="bn_dict" Guid="38C26D99-1922-41A1-A788-A9FAB755AEF4">
- <File Id="bn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\bn_dict" />
- </Component>
- <Component Id="bpy_dict" Guid="B6A11280-D76D-4735-B90E-5B8C595E53DD">
- <File Id="bpy_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\bpy_dict" />
- </Component>
- <Component Id="bs_dict" Guid="BCF82A6D-1F9B-4B15-ADC8-245CEB3BBAEF">
- <File Id="bs_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\bs_dict" />
- </Component>
- <Component Id="ca_dict" Guid="AC6A9AE4-23B3-466E-975C-E7E6FC25D274">
- <File Id="ca_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ca_dict" />
- </Component>
- <Component Id="chr_dict" Guid="70DEE74E-3024-44A4-A009-87D2D1AF6378">
- <File Id="chr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\chr_dict" />
- </Component>
- <Component Id="cmn_dict" Guid="891DC9D9-8F91-4C7F-BCF7-61404FE252D2">
- <File Id="cmn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\cmn_dict" />
- </Component>
- <Component Id="cs_dict" Guid="6241B32C-5008-4B8D-AA40-9191D6DF8433">
- <File Id="cs_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\cs_dict" />
- </Component>
- <Component Id="cv_dict" Guid="7393C1FB-CC90-451D-B5C8-9203F1E6D18E">
- <File Id="cv_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\cv_dict" />
- </Component>
- <Component Id="cy_dict" Guid="B4992394-7591-455A-9A27-35A8FF15F8FC">
- <File Id="cy_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\cy_dict" />
- </Component>
- <Component Id="da_dict" Guid="DCC767A1-1C42-493F-9A70-021027F7B35D">
- <File Id="da_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\da_dict" />
- </Component>
- <Component Id="de_dict" Guid="234BEB24-6700-4B54-A440-04087FF684E0">
- <File Id="de_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\de_dict" />
- </Component>
- <Component Id="el_dict" Guid="6C3D7FE8-6145-45D3-ABAF-2B8F834BC734">
- <File Id="el_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\el_dict" />
- </Component>
- <Component Id="en_dict" Guid="F8F205DE-8EA5-4D9A-9060-1596DE7E4FCF">
- <File Id="en_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\en_dict" />
- </Component>
- <Component Id="eo_dict" Guid="3570C736-2E4F-4D07-B141-B4051B838642">
- <File Id="eo_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\eo_dict" />
- </Component>
- <Component Id="es_dict" Guid="D2DB0675-7B70-4735-AECE-0D0D5FD28C49">
- <File Id="es_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\es_dict" />
- </Component>
- <Component Id="et_dict" Guid="04F68611-1A5C-4A49-B14A-DF1C9C0DA8BB">
- <File Id="et_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\et_dict" />
- </Component>
- <Component Id="eu_dict" Guid="1DBBEECB-5911-48EE-9F97-24C1CD8343A4">
- <File Id="eu_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\eu_dict" />
- </Component>
- <Component Id="fa_dict" Guid="B99ED99B-B7EC-4E2F-AE81-516D62CCA1FE">
- <File Id="fa_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\fa_dict" />
- </Component>
- <Component Id="fi_dict" Guid="A940BAEF-840D-4A76-AF8E-1971E88F9057">
- <File Id="fi_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\fi_dict" />
- </Component>
- <Component Id="fo_dict" Guid="68CBDAF4-8D0E-44CC-8523-3E0CF5343024">
- <File Id="fo_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\fo_dict" />
- </Component>
- <Component Id="fr_dict" Guid="437EC744-1AF9-49CF-8058-BEBDE579EF79">
- <File Id="fr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\fr_dict" />
- </Component>
- <Component Id="ga_dict" Guid="8534BC20-1A67-4441-A5B7-981594B944CA">
- <File Id="ga_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ga_dict" />
- </Component>
- <Component Id="gd_dict" Guid="C2C6B6B6-2B02-4149-A422-49F9F644167B">
- <File Id="gd_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\gd_dict" />
- </Component>
- <Component Id="gn_dict" Guid="FF844F5D-6BF4-4D40-B62B-51EE22099BA4">
- <File Id="gn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\gn_dict" />
- </Component>
- <Component Id="grc_dict" Guid="85E08D93-0165-4428-AECA-A4E56CF86E4B">
- <File Id="grc_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\grc_dict" />
- </Component>
- <Component Id="gu_dict" Guid="4A22E64F-11DC-4E08-8C25-302CC315902A">
- <File Id="gu_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\gu_dict" />
- </Component>
- <Component Id="hak_dict" Guid="2D93A632-B1E5-4B06-B1D6-3319FED6271F">
- <File Id="hak_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\hak_dict" />
- </Component>
- <Component Id="haw_dict" Guid="70502414-E92A-4F26-BEDB-53ADCBDFB3A8">
- <File Id="haw_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\haw_dict" />
- </Component>
- <Component Id="he_dict" Guid="D5DC2F0B-6B51-4DEA-884B-4801A6D14574">
- <File Id="he_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\he_dict" />
- </Component>
- <Component Id="hi_dict" Guid="0E9BC2B4-6970-4CC7-97AD-FDA4675845E9">
- <File Id="hi_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\hi_dict" />
- </Component>
- <Component Id="hr_dict" Guid="136AB162-F5D3-4DDE-9A3B-29D169C03BF9">
- <File Id="hr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\hr_dict" />
- </Component>
- <Component Id="ht_dict" Guid="060C81DC-1FC4-4694-BD1F-53B42F7C06B0">
- <File Id="ht_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ht_dict" />
- </Component>
- <Component Id="hu_dict" Guid="3796AA20-E908-4290-8A39-77274E98B954">
- <File Id="hu_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\hu_dict" />
- </Component>
- <Component Id="hy_dict" Guid="6DB4B241-5CCF-42C3-923F-C476599EDD95">
- <File Id="hy_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\hy_dict" />
- </Component>
- <Component Id="ia_dict" Guid="17EAEDC8-0C87-4773-A82E-6F010F08D05A">
- <File Id="ia_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ia_dict" />
- </Component>
- <Component Id="id_dict" Guid="D2C395C1-6D1A-48D2-A57D-AE1F1DCD5C07">
- <File Id="id_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\id_dict" />
- </Component>
- <Component Id="intonations" Guid="4AFE394B-A81B-497F-A166-DB0CD307586E">
- <File Id="intonations" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\intonations" />
- </Component>
- <Component Id="io_dict" Guid="C5168DAB-D36E-4BEC-AB1E-47B01984C308">
- <File Id="io_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\io_dict" />
- </Component>
- <Component Id="is_dict" Guid="F77A95D1-D8A9-431A-B4B9-C0A87E82B654">
- <File Id="is_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\is_dict" />
- </Component>
- <Component Id="it_dict" Guid="C049B40A-EC5C-4FFF-A2A8-1385DAA36911">
- <File Id="it_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\it_dict" />
- </Component>
- <Component Id="ja_dict" Guid="8E8FBD98-4E18-467A-B314-9E9AB52D3FE1">
- <File Id="ja_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ja_dict" />
- </Component>
- <Component Id="jbo_dict" Guid="AC2FD60E-AED8-4F6C-9D22-1C3D373CC225">
- <File Id="jbo_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\jbo_dict" />
- </Component>
- <Component Id="ka_dict" Guid="BAEF98BA-2780-402B-B952-B5A87DF7AD04">
- <File Id="ka_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ka_dict" />
- </Component>
- <Component Id="kk_dict" Guid="7269A02E-C520-4BDA-B294-7D8FF839459D">
- <File Id="kk_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\kk_dict" />
- </Component>
- <Component Id="kl_dict" Guid="699E632B-F32A-40F1-BDE6-F20ABF868867">
- <File Id="kl_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\kl_dict" />
- </Component>
- <Component Id="kn_dict" Guid="B3767ED6-6E99-493B-9DB2-7053647B5470">
- <File Id="kn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\kn_dict" />
- </Component>
- <Component Id="kok_dict" Guid="F55D68A3-9773-494F-A07B-82BE3FB5FFAB">
- <File Id="kok_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\kok_dict" />
- </Component>
- <Component Id="ko_dict" Guid="C6E554D6-E8D8-47E8-8A37-8E54E25D433F">
- <File Id="ko_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ko_dict" />
- </Component>
- <Component Id="ku_dict" Guid="995C348A-9E93-41FA-9A88-9E8369ED0CD9">
- <File Id="ku_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ku_dict" />
- </Component>
- <Component Id="ky_dict" Guid="8241951E-8B3A-4C2F-BBAF-E7E7B65DA21A">
- <File Id="ky_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ky_dict" />
- </Component>
- <Component Id="la_dict" Guid="B8617ECB-CF84-4871-9DC3-DF4609E7068D">
- <File Id="la_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\la_dict" />
- </Component>
- <Component Id="lb_dict" Guid="A993047D-46B2-47D8-A90B-375CEDA0253E">
- <File Id="lb_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lb_dict" />
- </Component>
- <Component Id="lfn_dict" Guid="749C464E-717E-4A31-8C55-677E4636E4C4">
- <File Id="lfn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lfn_dict" />
- </Component>
- <Component Id="lt_dict" Guid="11903A63-EB24-4408-8716-E639D2B5CBC6">
- <File Id="lt_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lt_dict" />
- </Component>
- <Component Id="lv_dict" Guid="CFF1C80C-D076-493C-9989-A255D1F7DFFE">
- <File Id="lv_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lv_dict" />
- </Component>
- <Component Id="mi_dict" Guid="4E7460AB-A111-4541-B2D7-1F68F377592F">
- <File Id="mi_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\mi_dict" />
- </Component>
- <Component Id="mk_dict" Guid="45BACB16-CA0B-40AE-94ED-A24DC6E2B556">
- <File Id="mk_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\mk_dict" />
- </Component>
- <Component Id="ml_dict" Guid="33F94564-B146-47E3-A089-0D39395AC584">
- <File Id="ml_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ml_dict" />
- </Component>
- <Component Id="mr_dict" Guid="FBFF9BA8-D389-4AEC-8874-75FFA07B9D32">
- <File Id="mr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\mr_dict" />
- </Component>
- <Component Id="ms_dict" Guid="EF7DAE55-A7AA-4509-A6CD-1EE6507DC889">
- <File Id="ms_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ms_dict" />
- </Component>
- <Component Id="mt_dict" Guid="392EDB58-BE84-4802-884B-0CA82A525CE9">
- <File Id="mt_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\mt_dict" />
- </Component>
- <Component Id="my_dict" Guid="E3F14B70-E369-4A25-84C2-66253578B347">
- <File Id="my_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\my_dict" />
- </Component>
- <Component Id="nci_dict" Guid="9D847F10-19CE-489B-B5CE-21F7BFBC7889">
- <File Id="nci_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\nci_dict" />
- </Component>
- <Component Id="ne_dict" Guid="DD2A9DC1-D454-459A-A258-18CB00B5221D">
- <File Id="ne_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ne_dict" />
- </Component>
- <Component Id="nl_dict" Guid="33CFC749-B41C-46E0-90DF-E3D514EAD981">
- <File Id="nl_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\nl_dict" />
- </Component>
- <Component Id="nog_dict" Guid="8FD0D487-A467-44A3-82EF-73A80E9725AE">
- <File Id="nog_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\nog_dict" />
- </Component>
- <Component Id="no_dict" Guid="2FE4CA63-FFC4-4126-B052-EA56C18BC42C">
- <File Id="no_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\no_dict" />
- </Component>
- <Component Id="om_dict" Guid="727B5536-3971-4208-A165-5752D0F341FC">
- <File Id="om_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\om_dict" />
- </Component>
- <Component Id="or_dict" Guid="9A387E1C-C38B-4B45-A113-2E841B46CE2A">
- <File Id="or_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\or_dict" />
- </Component>
- <Component Id="pap_dict" Guid="8BB115DC-8DD5-4416-9AF9-5D7D336BD1BB">
- <File Id="pap_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\pap_dict" />
- </Component>
- <Component Id="pa_dict" Guid="FDA7D6A7-E6A2-4856-AC71-E66BE74F27DC">
- <File Id="pa_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\pa_dict" />
- </Component>
- <Component Id="phondata" Guid="F5C42DBD-4994-4341-B195-9F714AE19EF9">
- <File Id="phondata" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\phondata" />
- </Component>
- <Component Id="phondata_manifest" Guid="251F6F6C-EDE4-4272-BBB6-FACFD8029D62">
- <File Id="phondata_manifest" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\phondata-manifest" />
- </Component>
- <Component Id="phonindex" Guid="0923E3B1-6D4F-4770-817C-55FF0A777ED6">
- <File Id="phonindex" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\phonindex" />
- </Component>
- <Component Id="phontab" Guid="2D398D99-57E2-452C-9F26-A8BCACD9BB0C">
- <File Id="phontab" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\phontab" />
- </Component>
- <Component Id="piqd_dict" Guid="8F96D172-7594-49F3-A398-6775851D9646">
- <File Id="piqd_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\piqd_dict" />
- </Component>
- <Component Id="pl_dict" Guid="A441D588-10F6-473C-862B-9D1713D759B2">
- <File Id="pl_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\pl_dict" />
- </Component>
- <Component Id="pt_dict" Guid="CBE0AC31-DA27-4FDD-8C10-F41C8049542E">
- <File Id="pt_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\pt_dict" />
- </Component>
- <Component Id="py_dict" Guid="4F02880E-B755-4C12-9002-9BAE416ED6E4">
- <File Id="py_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\py_dict" />
- </Component>
- <Component Id="qdb_dict" Guid="B87FBA57-35FA-4309-A7B9-57377DBBCFF6">
- <File Id="qdb_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\qdb_dict" />
- </Component>
- <Component Id="quc_dict" Guid="FEDF70F7-6AB1-4A56-A9BF-C5A25959E620">
- <File Id="quc_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\quc_dict" />
- </Component>
- <Component Id="qu_dict" Guid="73B54531-4334-418D-99F1-8109F0A7A6B2">
- <File Id="qu_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\qu_dict" />
- </Component>
- <Component Id="qya_dict" Guid="575744A7-772E-450F-ACF2-3AA18FF3C8FF">
- <File Id="qya_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\qya_dict" />
- </Component>
- <Component Id="ro_dict" Guid="6E8848A2-2CB1-48E2-9345-23C664A36071">
- <File Id="ro_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ro_dict" />
- </Component>
- <Component Id="ru_dict" Guid="A243A313-6904-4396-B75A-082695CF3990">
- <File Id="ru_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ru_dict" />
- </Component>
- <Component Id="sd_dict" Guid="4DE21FF9-00D6-4897-B92F-D7F77B6B48CB">
- <File Id="sd_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sd_dict" />
- </Component>
- <Component Id="shn_dict" Guid="2719B6AB-2D64-47D6-AA4F-5DDF771CFF35">
- <File Id="shn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\shn_dict" />
- </Component>
- <Component Id="si_dict" Guid="CF87CBF4-33C5-4148-B5D7-267B40E316EC">
- <File Id="si_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\si_dict" />
- </Component>
- <Component Id="sjn_dict" Guid="B0DA5A50-17B2-435E-81D9-391421E8E388">
- <File Id="sjn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sjn_dict" />
- </Component>
- <Component Id="sk_dict" Guid="A8289579-E81A-41C7-912B-8777A92A0E0F">
- <File Id="sk_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sk_dict" />
- </Component>
- <Component Id="sl_dict" Guid="D9AFE76F-5B93-451F-AE07-3D570F31BF49">
- <File Id="sl_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sl_dict" />
- </Component>
- <Component Id="smj_dict" Guid="14DFEC9D-6FC4-4D5B-BEAA-19DBAB09A1C0">
- <File Id="smj_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\smj_dict" />
- </Component>
- <Component Id="sq_dict" Guid="E2BFD167-EA47-4CBD-BD69-3400119A6168">
- <File Id="sq_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sq_dict" />
- </Component>
- <Component Id="sr_dict" Guid="05664320-EA02-4A0D-8557-37C69EDD6E4E">
- <File Id="sr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sr_dict" />
- </Component>
- <Component Id="sv_dict" Guid="88F68D8E-A947-49F0-85AF-B0A0C346441C">
- <File Id="sv_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sv_dict" />
- </Component>
- <Component Id="sw_dict" Guid="261EB115-1E47-4CEC-A55B-C1193ED26092">
- <File Id="sw_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\sw_dict" />
- </Component>
- <Component Id="ta_dict" Guid="9EBC11A7-D7C9-488C-84F8-3DD8701534C8">
- <File Id="ta_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ta_dict" />
- </Component>
- <Component Id="te_dict" Guid="5AF4321F-78F0-4556-A913-2FD7E4AD152F">
- <File Id="te_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\te_dict" />
- </Component>
- <Component Id="th_dict" Guid="8515EA75-0778-4B7A-871C-54FD76A13BA6">
- <File Id="th_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\th_dict" />
- </Component>
- <Component Id="tk_dict" Guid="BD52736C-B58D-4175-BEC2-231367F4FE19">
- <File Id="tk_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\tk_dict" />
- </Component>
- <Component Id="tn_dict" Guid="3FE9487F-A026-47BC-BFD4-6BE7B2D0128D">
- <File Id="tn_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\tn_dict" />
- </Component>
- <Component Id="tr_dict" Guid="AE3F9023-88DB-4C18-877C-03C76EAA37C2">
- <File Id="tr_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\tr_dict" />
- </Component>
- <Component Id="tt_dict" Guid="D596648A-39AB-40C8-BAB0-6EB6782AC12C">
- <File Id="tt_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\tt_dict" />
- </Component>
- <Component Id="ug_dict" Guid="05906E9D-46B5-4048-BC3D-72A412F98A2C">
- <File Id="ug_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ug_dict" />
- </Component>
- <Component Id="uk_dict" Guid="0FD5C9B5-7CFC-46B7-B883-3FF350F0026B">
- <File Id="uk_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\uk_dict" />
- </Component>
- <Component Id="ur_dict" Guid="AA83B417-B7FB-4171-A0CC-001CCF983F3C">
- <File Id="ur_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\ur_dict" />
- </Component>
- <Component Id="uz_dict" Guid="2A819F07-AA5A-4AE1-95EA-E8351F9B0E3B">
- <File Id="uz_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\uz_dict" />
- </Component>
- <Component Id="vi_dict" Guid="46201B14-8E47-479C-BEDC-EE354E9E81C4">
- <File Id="vi_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\vi_dict" />
- </Component>
- <Component Id="yue_dict" Guid="2C041C10-226A-404A-AB22-C771ACB9C00B">
- <File Id="yue_dict" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\yue_dict" />
- </Component>
- <Directory Id="lang" Name="lang">
- <Component Id="eu" Guid="8CF0DE06-B30B-448A-A51A-A6078A0C8687">
- <File Id="eu" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\eu" />
- </Component>
- <Component Id="ko" Guid="A3B2FDDE-20D4-4F8D-BCBF-E665A836DBB5">
- <File Id="ko" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ko" />
- </Component>
- <Component Id="qu" Guid="3AD78EE5-7419-4C9D-B19E-E1FD73805C6B">
- <File Id="qu" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\qu" />
- </Component>
- <Directory Id="aav" Name="aav">
- <Component Id="vi" Guid="3B01BDDB-CBFC-4EDD-BD5F-797E041E8C5D">
- <File Id="vi" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\aav\vi" />
- </Component>
- <Component Id="vi_VN_x_central" Guid="01969BD6-E3A8-488B-9B37-A6120B98E81C">
- <File Id="vi_VN_x_central" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\aav\vi-VN-x-central" />
- </Component>
- <Component Id="vi_VN_x_south" Guid="615728B3-6705-48BF-9F3B-3A71252EDB9E">
- <File Id="vi_VN_x_south" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\aav\vi-VN-x-south" />
- </Component>
- </Directory>
- <Directory Id="art" Name="art">
- <Component Id="eo" Guid="C94420E1-4665-41E7-9DD7-104BDE1BDCB0">
- <File Id="eo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\eo" />
- </Component>
- <Component Id="ia" Guid="163AA4B5-DAFE-4A9B-9EE2-A432D26EAC64">
- <File Id="ia" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\ia" />
- </Component>
- <Component Id="io" Guid="1ECA468A-2A31-4361-AE5D-BE682C643187">
- <File Id="io" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\io" />
- </Component>
- <Component Id="jbo" Guid="3F6D7B56-821B-46AA-8CFD-2991636A568A">
- <File Id="jbo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\jbo" />
- </Component>
- <Component Id="lfn" Guid="7DE77E02-AAAD-4191-853D-AF73942CAE30">
- <File Id="lfn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\lfn" />
- </Component>
- <Component Id="piqd" Guid="C1AB16B4-4D4F-4372-88BF-F60D9899EA72">
- <File Id="piqd" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\piqd" />
- </Component>
- <Component Id="py" Guid="DA8E0699-6A19-4858-B298-4E6ED34F340B">
- <File Id="py" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\py" />
- </Component>
- <Component Id="qdb" Guid="C20B83FB-35BB-488D-A0F3-7CBFB8EC6E8F">
- <File Id="qdb" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\qdb" />
- </Component>
- <Component Id="qya" Guid="4FFFE9FC-8EDC-48BF-867E-127F17229FAB">
- <File Id="qya" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\qya" />
- </Component>
- <Component Id="sjn" Guid="FD9E9053-4FB3-4B44-B914-2BE0F24E15A1">
- <File Id="sjn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\art\sjn" />
- </Component>
- </Directory>
- <Directory Id="azc" Name="azc">
- <Component Id="nci" Guid="52DC9A36-7615-4A11-B0D4-3D7DB7D00635">
- <File Id="nci" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\azc\nci" />
- </Component>
- </Directory>
- <Directory Id="bat" Name="bat">
- <Component Id="lt" Guid="4A03A0CB-E03F-430F-AC0A-F617F73BA54C">
- <File Id="lt" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\bat\lt" />
- </Component>
- <Component Id="ltg" Guid="2DD75859-2F64-4FEC-B2D7-C64475FB3F94">
- <File Id="ltg" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\bat\ltg" />
- </Component>
- <Component Id="lv" Guid="5399C28A-5494-4DF6-935B-1CD74B203896">
- <File Id="lv" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\bat\lv" />
- </Component>
- </Directory>
- <Directory Id="bnt" Name="bnt">
- <Component Id="sw" Guid="C7D2ACE2-1C5B-4790-91F7-D8714DD49F89">
- <File Id="sw" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\bnt\sw" />
- </Component>
- <Component Id="tn" Guid="61A557AB-F0FE-4FB7-B381-54B971F1B947">
- <File Id="tn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\bnt\tn" />
- </Component>
- </Directory>
- <Directory Id="ccs" Name="ccs">
- <Component Id="ka" Guid="4298217B-9E53-4FBD-8472-AB2C51223E73">
- <File Id="ka" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ccs\ka" />
- </Component>
- </Directory>
- <Directory Id="cel" Name="cel">
- <Component Id="cy" Guid="6741BF0A-A24F-4E26-B5F9-77E9B7D190F2">
- <File Id="cy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\cel\cy" />
- </Component>
- <Component Id="ga" Guid="DE1B08AC-D7A3-4D8D-B1D2-3C27297060E2">
- <File Id="ga" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\cel\ga" />
- </Component>
- <Component Id="gd" Guid="F2204BD3-E6FB-4A1B-A3DA-7C199947F884">
- <File Id="gd" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\cel\gd" />
- </Component>
- </Directory>
- <Directory Id="cus" Name="cus">
- <Component Id="om" Guid="1DEFB10B-EA36-4E45-935A-67DE0F273C82">
- <File Id="om" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\cus\om" />
- </Component>
- </Directory>
- <Directory Id="dra" Name="dra">
- <Component Id="kn" Guid="DB5CD707-6BD7-4874-A8EB-F6D09A9EC3C6">
- <File Id="kn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\dra\kn" />
- </Component>
- <Component Id="ml" Guid="2E9A0DEE-46B2-4830-9919-CB33D881B712">
- <File Id="ml" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\dra\ml" />
- </Component>
- <Component Id="ta" Guid="BBBBEF2D-AA4F-4EF3-A659-5FEFC27B0DFA">
- <File Id="ta" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\dra\ta" />
- </Component>
- <Component Id="te" Guid="DBD32203-B0B5-456A-B7BA-A45DECB29B06">
- <File Id="te" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\dra\te" />
- </Component>
- </Directory>
- <Directory Id="esx" Name="esx">
- <Component Id="kl" Guid="013AE1F1-8F25-4029-B901-FEF792C83B39">
- <File Id="kl" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\esx\kl" />
- </Component>
- </Directory>
- <Directory Id="gmq" Name="gmq">
- <Component Id="da" Guid="F2056D5A-95BE-4141-9884-BDECCD20911F">
- <File Id="da" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmq\da" />
- </Component>
- <Component Id="fo" Guid="0786F902-D75C-4A41-956B-A6D2F25180A2">
- <File Id="fo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmq\fo" />
- </Component>
- <Component Id="is" Guid="D77DC66C-17BA-425C-A1E4-18D9CAC03284">
- <File Id="is" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmq\is" />
- </Component>
- <Component Id="nb" Guid="C9D76C5F-E516-4D5E-8781-F5AB32B62266">
- <File Id="nb" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmq\nb" />
- </Component>
- <Component Id="sv" Guid="D62F2BC0-B756-4FF2-80D5-DB08C956F61B">
- <File Id="sv" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmq\sv" />
- </Component>
- </Directory>
- <Directory Id="gmw" Name="gmw">
- <Component Id="af" Guid="3437CBE5-6E0F-4C67-A54F-DC622B6E5B80">
- <File Id="af" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\af" />
- </Component>
- <Component Id="de" Guid="C7325DAB-EEA2-4B0D-B0CD-265EAF3451EA">
- <File Id="de" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\de" />
- </Component>
- <Component Id="en" Guid="B5F3096F-AA8B-4738-9F27-A62059075FAC">
- <File Id="en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en" />
- </Component>
- <Component Id="en_029" Guid="93BBA099-F3A1-4FDA-808D-A01D0810D393">
- <File Id="en_029" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-029" />
- </Component>
- <Component Id="en_GB_scotland" Guid="F1721566-ECF7-4DB9-BC55-13562F7AB0EA">
- <File Id="en_GB_scotland" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-GB-scotland" />
- </Component>
- <Component Id="en_GB_x_gbclan" Guid="4CF60966-0F63-410B-AE90-1416FCC0DEDC">
- <File Id="en_GB_x_gbclan" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-GB-x-gbclan" />
- </Component>
- <Component Id="en_GB_x_gbcwmd" Guid="488FBB43-90E4-4980-B401-885FE1CF94E1">
- <File Id="en_GB_x_gbcwmd" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-GB-x-gbcwmd" />
- </Component>
- <Component Id="en_GB_x_rp" Guid="110A2283-ED67-4E79-9E4C-619668C47003">
- <File Id="en_GB_x_rp" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-GB-x-rp" />
- </Component>
- <Component Id="en_US" Guid="63BD47E1-007B-444D-8905-83CDA350F128">
- <File Id="en_US" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-US" />
- </Component>
- <Component Id="en_US_nyc" Guid="68EFE72E-57F1-410E-BDD9-BF44D2215E14">
- <File Id="en_US_nyc" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\en-US-nyc" />
- </Component>
- <Component Id="lb" Guid="4DD5E812-3CCB-4578-8FBB-37C44E4C4025">
- <File Id="lb" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\lb" />
- </Component>
- <Component Id="nl" Guid="955629E7-5DA1-4EB4-9DC3-E94F6DCB496B">
- <File Id="nl" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\gmw\nl" />
- </Component>
- </Directory>
- <Directory Id="grk" Name="grk">
- <Component Id="el" Guid="2CFBEFD8-C391-4B17-9274-F7AACD3F9FE5">
- <File Id="el" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\grk\el" />
- </Component>
- <Component Id="grc" Guid="F6B10EF2-7FE5-40F9-ACA9-54CD3F6BA05E">
- <File Id="grc" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\grk\grc" />
- </Component>
- </Directory>
- <Directory Id="inc" Name="inc">
- <Component Id="as" Guid="B54C6216-A7F7-45D3-BA4A-4E075CCE39C2">
- <File Id="as" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\as" />
- </Component>
- <Component Id="bn" Guid="5513AA32-3D65-4507-936A-7F691384377A">
- <File Id="bn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\bn" />
- </Component>
- <Component Id="bpy" Guid="7E0F05D8-8450-45D0-8286-618C1F0A47BA">
- <File Id="bpy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\bpy" />
- </Component>
- <Component Id="gu" Guid="84B0100C-7335-43C3-842F-3D719B6F56BB">
- <File Id="gu" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\gu" />
- </Component>
- <Component Id="hi" Guid="4075519D-69C3-42CE-B4B8-0FC92B64940E">
- <File Id="hi" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\hi" />
- </Component>
- <Component Id="kok" Guid="627D0A1E-1B37-4079-89FC-72161F2799F4">
- <File Id="kok" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\kok" />
- </Component>
- <Component Id="mr" Guid="3C69F5F9-5CF0-4854-8180-4BAF2CD41C29">
- <File Id="mr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\mr" />
- </Component>
- <Component Id="ne" Guid="DCD32DD9-92FB-4095-8AAC-332460B9E160">
- <File Id="ne" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\ne" />
- </Component>
- <Component Id="or" Guid="3A276EB0-C831-4053-8EE8-E6B412E3D84F">
- <File Id="or" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\or" />
- </Component>
- <Component Id="pa" Guid="1BB2F249-89F7-4105-AF71-3A2B63ADA9E3">
- <File Id="pa" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\pa" />
- </Component>
- <Component Id="sd" Guid="322BD663-BF22-4878-9C53-4393997994BB">
- <File Id="sd" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\sd" />
- </Component>
- <Component Id="si" Guid="D0874B38-EE58-4622-8F38-F8F3341F82F7">
- <File Id="si" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\si" />
- </Component>
- <Component Id="ur" Guid="870A31A7-166D-4955-89CF-CD9F4B34685A">
- <File Id="ur" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\inc\ur" />
- </Component>
- </Directory>
- <Directory Id="ine" Name="ine">
- <Component Id="hy" Guid="2D8114EA-1C7B-4CF7-98EF-D5CAC50860DE">
- <File Id="hy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ine\hy" />
- </Component>
- <Component Id="hyw" Guid="84E12C8E-6163-4133-B6E1-FA74E13CF4BB">
- <File Id="hyw" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ine\hyw" />
- </Component>
- <Component Id="sq" Guid="53770E4C-20EE-4F2E-A7D5-CD66D8E1DDD3">
- <File Id="sq" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ine\sq" />
- </Component>
- </Directory>
- <Directory Id="ira" Name="ira">
- <Component Id="fa" Guid="D890839B-B666-48FE-B64A-6E823531AB27">
- <File Id="fa" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ira\fa" />
- </Component>
- <Component Id="fa_Latn" Guid="A0AA1BDE-BD6D-4A9F-8C9E-6594D30EC8FC">
- <File Id="fa_Latn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ira\fa-Latn" />
- </Component>
- <Component Id="ku" Guid="39999CF4-FAC1-473F-93D4-E5D6AEE932BC">
- <File Id="ku" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\ira\ku" />
- </Component>
- </Directory>
- <Directory Id="iro" Name="iro">
- <Component Id="chr" Guid="CCBB2BA0-3B31-47A6-B56B-FC4F14FD1D71">
- <File Id="chr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\iro\chr" />
- </Component>
- </Directory>
- <Directory Id="itc" Name="itc">
- <Component Id="la" Guid="10FC0F27-EEBA-4CDE-AAE9-87729D359209">
- <File Id="la" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\itc\la" />
- </Component>
- </Directory>
- <Directory Id="jpx" Name="jpx">
- <Component Id="ja" Guid="7ABA8C52-C0FE-403B-9C12-F13C3E7E0555">
- <File Id="ja" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\jpx\ja" />
- </Component>
- </Directory>
- <Directory Id="map" Name="map">
- <Component Id="haw" Guid="9628A804-89DF-419F-B046-36A6355FF1DF">
- <File Id="haw" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\map\haw" />
- </Component>
- </Directory>
- <Directory Id="myn" Name="myn">
- <Component Id="quc" Guid="B4355970-32BD-4439-9D7C-718FF6C7038C">
- <File Id="quc" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\myn\quc" />
- </Component>
- </Directory>
- <Directory Id="poz" Name="poz">
- <Component Id="id" Guid="7A41E12C-504F-47C8-AD77-8F85637947D1">
- <File Id="id" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\poz\id" />
- </Component>
- <Component Id="mi" Guid="203D2628-983E-49A6-B023-B648809E9757">
- <File Id="mi" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\poz\mi" />
- </Component>
- <Component Id="ms" Guid="80E22B61-F278-44AB-BD66-5013E6568A26">
- <File Id="ms" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\poz\ms" />
- </Component>
- </Directory>
- <Directory Id="roa" Name="roa">
- <Component Id="an" Guid="42AC8747-DD2B-4920-A67E-9DBDA5D2EF33">
- <File Id="an" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\an" />
- </Component>
- <Component Id="ca" Guid="8187F172-4B7A-490D-BA86-BE13DA1E6C65">
- <File Id="ca" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\ca" />
- </Component>
- <Component Id="es" Guid="36C1DADC-170F-4611-AFEC-2E544A8C9F96">
- <File Id="es" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\es" />
- </Component>
- <Component Id="es_419" Guid="17C0944D-7ABF-42B5-85EC-CE2EB91C9AB5">
- <File Id="es_419" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\es-419" />
- </Component>
- <Component Id="fr" Guid="F3824207-52D4-4E51-96AE-A8FFD5CAD1E1">
- <File Id="fr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\fr" />
- </Component>
- <Component Id="fr_BE" Guid="85B6B211-2F7A-4106-BDAB-699117FB4B84">
- <File Id="fr_BE" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\fr-BE" />
- </Component>
- <Component Id="fr_CH" Guid="9A1A4DE6-010C-4259-A697-776B75FCDB40">
- <File Id="fr_CH" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\fr-CH" />
- </Component>
- <Component Id="ht" Guid="FCB5A219-4EE2-41AF-AD85-169C530F5CD9">
- <File Id="ht" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\ht" />
- </Component>
- <Component Id="it" Guid="58A5BA0E-31D4-483F-B831-54B369B9B073">
- <File Id="it" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\it" />
- </Component>
- <Component Id="pap" Guid="749E2C04-3EF0-4A57-AF06-93D660828953">
- <File Id="pap" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\pap" />
- </Component>
- <Component Id="pt" Guid="ECF954E0-CDB3-4373-887C-EFF5B7D21C97">
- <File Id="pt" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\pt" />
- </Component>
- <Component Id="pt_BR" Guid="3E595176-0A9C-4AB3-8497-F84BC343BADF">
- <File Id="pt_BR" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\pt-BR" />
- </Component>
- <Component Id="ro" Guid="F385AB6D-24E9-4227-B316-2FD91A0EA899">
- <File Id="ro" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\roa\ro" />
- </Component>
- </Directory>
- <Directory Id="sai" Name="sai">
- <Component Id="gn" Guid="06220892-0A83-4E69-AD2C-B5D3FBE740BF">
- <File Id="gn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sai\gn" />
- </Component>
- </Directory>
- <Directory Id="sem" Name="sem">
- <Component Id="am" Guid="6DC9AEC3-4C3F-4C46-B10A-765AEDFD95BE">
- <File Id="am" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sem\am" />
- </Component>
- <Component Id="ar" Guid="B7B2CAC1-7B02-4F3D-BA32-D278439278A1">
- <File Id="ar" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sem\ar" />
- </Component>
- <Component Id="he" Guid="40CD0730-60BE-4B57-89B7-AFCF1215D717">
- <File Id="he" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sem\he" />
- </Component>
- <Component Id="mt" Guid="A600B30F-A930-4E33-B390-26D41F220BFE">
- <File Id="mt" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sem\mt" />
- </Component>
- </Directory>
- <Directory Id="sit" Name="sit">
- <Component Id="cmn" Guid="42CF004D-30ED-442B-A6CD-91A1CED79C27">
- <File Id="cmn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\cmn" />
- </Component>
- <Component Id="cmn_Latn_pinyin" Guid="CE5CEAED-BF64-4E18-8539-8EA94A38C3D7">
- <File Id="cmn_Latn_pinyin" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\cmn-Latn-pinyin" />
- </Component>
- <Component Id="hak" Guid="C0DB2AB9-F39F-4A7F-8189-1DF13C0A3A65">
- <File Id="hak" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\hak" />
- </Component>
- <Component Id="my" Guid="901B4428-EC3A-4A98-8C21-F32529EDA2B3">
- <File Id="my" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\my" />
- </Component>
- <Component Id="yue" Guid="9A2C2F50-29EC-4AD9-B736-4505C4D0700F">
- <File Id="yue" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\yue" />
- </Component>
- <Component Id="yue_Latn_jyutping" Guid="DF022D37-B298-43A4-ACEF-70716A15C3FD">
- <File Id="yue_Latn_jyutping" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\sit\yue-Latn-jyutping" />
- </Component>
- </Directory>
- <Directory Id="tai" Name="tai">
- <Component Id="shn" Guid="29EDF1C7-5B78-49E2-8763-FA3354CF47D7">
- <File Id="shn" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\tai\shn" />
- </Component>
- <Component Id="th" Guid="1BB579C1-8FE0-4482-8819-7C284B70950C">
- <File Id="th" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\tai\th" />
- </Component>
- </Directory>
- <Directory Id="trk" Name="trk">
- <Component Id="az" Guid="31AAD787-65CE-478B-B289-5D444E78DC53">
- <File Id="az" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\az" />
- </Component>
- <Component Id="ba" Guid="4A74E02A-0A85-4A38-98B4-F54A827CCA6D">
- <File Id="ba" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\ba" />
- </Component>
- <Component Id="cv" Guid="287D1768-4E9F-4AE6-AB86-510510B65FA4">
- <File Id="cv" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\cv" />
- </Component>
- <Component Id="kk" Guid="41F2F76C-B2EB-49D4-B561-0F41CB08A07A">
- <File Id="kk" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\kk" />
- </Component>
- <Component Id="ky" Guid="88DE7140-43D1-4BB8-978D-EF1543CC69EB">
- <File Id="ky" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\ky" />
- </Component>
- <Component Id="nog" Guid="940334D7-CD9B-4C7F-B0B1-2B671E0DA030">
- <File Id="nog" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\nog" />
- </Component>
- <Component Id="tk" Guid="949D4ECA-DD14-49CC-8E03-46186ECC566A">
- <File Id="tk" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\tk" />
- </Component>
- <Component Id="tr" Guid="1A1BEAC6-2637-42FC-B1FA-786EA70D536F">
- <File Id="tr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\tr" />
- </Component>
- <Component Id="tt" Guid="F4FA3162-C887-41CE-B284-746A3CBBED96">
- <File Id="tt" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\tt" />
- </Component>
- <Component Id="ug" Guid="0B2F17E3-A03B-44F5-94AF-BD0A4A728140">
- <File Id="ug" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\ug" />
- </Component>
- <Component Id="uz" Guid="31D32EAA-D712-452C-A894-81A86B95334D">
- <File Id="uz" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\trk\uz" />
- </Component>
- </Directory>
- <Directory Id="urj" Name="urj">
- <Component Id="et" Guid="0E36F905-5D08-4903-AB2A-9246D7F9F4F7">
- <File Id="et" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\urj\et" />
- </Component>
- <Component Id="fi" Guid="5B3222E3-7A38-4565-9DD5-4DE52CB8FCC2">
- <File Id="fi" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\urj\fi" />
- </Component>
- <Component Id="hu" Guid="82E27CF9-D070-429B-82C3-A10170AEAACC">
- <File Id="hu" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\urj\hu" />
- </Component>
- <Component Id="smj" Guid="A3404020-693F-4FA7-A56D-3493BDA2D6E5">
- <File Id="smj" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\urj\smj" />
- </Component>
- </Directory>
- <Directory Id="zle" Name="zle">
- <Component Id="be" Guid="3C273A69-CE1F-4B41-A3B9-ED0D664C8F8C">
- <File Id="be" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zle\be" />
- </Component>
- <Component Id="ru" Guid="BB9C4BD1-A029-4EF7-83BF-3A1C243E5D67">
- <File Id="ru" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zle\ru" />
- </Component>
- <Component Id="ru_LV" Guid="BD453DF9-EDA5-4521-B764-CDF25F76622D">
- <File Id="ru_LV" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zle\ru-LV" />
- </Component>
- <Component Id="uk" Guid="D99380DF-4E22-4EAD-85F7-72EA0DDA6C1E">
- <File Id="uk" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zle\uk" />
- </Component>
- </Directory>
- <Directory Id="zls" Name="zls">
- <Component Id="bg" Guid="88C38DA6-3839-405F-BC2A-9A78DFE9E778">
- <File Id="bg" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\bg" />
- </Component>
- <Component Id="bs" Guid="E21649A3-2774-454F-A142-37C8F2CC70B8">
- <File Id="bs" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\bs" />
- </Component>
- <Component Id="hr" Guid="9E2D4565-5603-4F3D-9D15-B4D71017CBD5">
- <File Id="hr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\hr" />
- </Component>
- <Component Id="mk" Guid="3643B789-531E-480D-B4F1-FEF070079F56">
- <File Id="mk" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\mk" />
- </Component>
- <Component Id="sl" Guid="EC3A1608-985D-4F7C-B2F0-65946A052E6B">
- <File Id="sl" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\sl" />
- </Component>
- <Component Id="sr" Guid="7545049D-0B01-4974-8BCC-D8FFA683899B">
- <File Id="sr" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zls\sr" />
- </Component>
- </Directory>
- <Directory Id="zlw" Name="zlw">
- <Component Id="cs" Guid="ACE8BA77-C1AB-4188-9D95-E47240C2B8B8">
- <File Id="cs" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zlw\cs" />
- </Component>
- <Component Id="pl" Guid="7BAF92A7-A1A5-4E05-8637-E3E21216093F">
- <File Id="pl" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zlw\pl" />
- </Component>
- <Component Id="sk" Guid="0F177E56-D5E0-4F06-9EEA-605A63995BB1">
- <File Id="sk" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\lang\zlw\sk" />
- </Component>
- </Directory>
- </Directory>
- <Directory Id="voices" Name="voices">
- <Directory Id="__v" Name="!v">
- <Component Id="adam" Guid="5117D3E3-7541-454B-A0BE-34DAF16C35B7">
- <File Id="adam" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\adam" />
- </Component>
- <Component Id="Alex" Guid="E27BF97C-9175-401D-98C9-5E3CA51881FB">
- <File Id="Alex" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Alex" />
- </Component>
- <Component Id="Alicia" Guid="6C6292EF-C70D-4FD4-A1D7-F93B692162B6">
- <File Id="Alicia" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Alicia" />
- </Component>
- <Component Id="Andrea" Guid="A64B61C5-F7E4-42DF-A9CF-39F4102939AF">
- <File Id="Andrea" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Andrea" />
- </Component>
- <Component Id="Andy" Guid="4D05372A-C142-4359-952B-E0E9B8AFB6D9">
- <File Id="Andy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Andy" />
- </Component>
- <Component Id="anika" Guid="F60C321F-7C67-49A4-AA2C-71CDDEFDC088">
- <File Id="anika" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\anika" />
- </Component>
- <Component Id="anikaRobot" Guid="05271529-1D3F-422E-97AD-A0EE2C09BFBC">
- <File Id="anikaRobot" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\anikaRobot" />
- </Component>
- <Component Id="Annie" Guid="811F44B4-D58D-4280-81B6-D84240DD8E8E">
- <File Id="Annie" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Annie" />
- </Component>
- <Component Id="announcer" Guid="73625D88-F812-4420-B86F-911F438C0F5C">
- <File Id="announcer" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\announcer" />
- </Component>
- <Component Id="antonio" Guid="0A4FD36E-BC9D-43E3-A990-B00ABEA83085">
- <File Id="antonio" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\antonio" />
- </Component>
- <Component Id="AnxiousAndy" Guid="E95EAF0D-0D1E-419B-BF09-9CE377025FAB">
- <File Id="AnxiousAndy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\AnxiousAndy" />
- </Component>
- <Component Id="aunty" Guid="63B29AEC-D7FD-4101-8D34-8B69D3995B13">
- <File Id="aunty" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\aunty" />
- </Component>
- <Component Id="belinda" Guid="CFB83283-041A-4FF5-BC66-11D839B88727">
- <File Id="belinda" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\belinda" />
- </Component>
- <Component Id="benjamin" Guid="D07455E0-1B76-42D8-859A-9E22FF7AFAB4">
- <File Id="benjamin" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\benjamin" />
- </Component>
- <Component Id="boris" Guid="63215C0C-A396-4E5A-8953-56DE6B0039B4">
- <File Id="boris" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\boris" />
- </Component>
- <Component Id="caleb" Guid="57A0C5E2-6085-4664-BE72-48AA1349E7EB">
- <File Id="caleb" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\caleb" />
- </Component>
- <Component Id="croak" Guid="5C10754B-E477-4A04-BD68-492395D7D083">
- <File Id="croak" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\croak" />
- </Component>
- <Component Id="david" Guid="DAB51881-C72A-40BF-B156-016D8DE3997F">
- <File Id="david" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\david" />
- </Component>
- <Component Id="Demonic" Guid="145D0A4E-33F4-41B5-8A8A-202CC7C4FB6D">
- <File Id="Demonic" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Demonic" />
- </Component>
- <Component Id="Denis" Guid="FD6BA15B-011F-491E-BDB0-155DE8757287">
- <File Id="Denis" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Denis" />
- </Component>
- <Component Id="Diogo" Guid="D65CFF10-962F-4DDE-839D-17D1F26D089F">
- <File Id="Diogo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Diogo" />
- </Component>
- <Component Id="ed" Guid="D873739E-8F27-493B-9F59-D510E0E6522D">
- <File Id="ed" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\ed" />
- </Component>
- <Component Id="edward" Guid="121C1628-B371-4030-9196-F3D1CBEA88DB">
- <File Id="edward" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\edward" />
- </Component>
- <Component Id="edward2" Guid="B120747C-14BC-4371-9996-D3D1DB6E0F2E">
- <File Id="edward2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\edward2" />
- </Component>
- <Component Id="f1" Guid="945CDA6E-0638-4D9C-810D-8083B4E1BB5B">
- <File Id="f1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\f1" />
- </Component>
- <Component Id="f2" Guid="8D19501F-29A8-4626-A49F-D62D6CD5E6EC">
- <File Id="f2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\f2" />
- </Component>
- <Component Id="f3" Guid="E9E58435-559F-4C41-BC6F-9EC918004186">
- <File Id="f3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\f3" />
- </Component>
- <Component Id="f4" Guid="3593F2AA-A3CC-4A87-BD47-91D62991B4CC">
- <File Id="f4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\f4" />
- </Component>
- <Component Id="f5" Guid="8CC49D75-26D2-4158-94F8-99D48AB3C19A">
- <File Id="f5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\f5" />
- </Component>
- <Component Id="fast" Guid="F228627B-95D7-452C-A044-47AF35D39F76">
- <File Id="fast" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\fast" />
- </Component>
- <Component Id="Gene" Guid="5EA8D917-58EE-48F6-9738-6B23422C68C6">
- <File Id="Gene" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Gene" />
- </Component>
- <Component Id="Gene2" Guid="C5DA3B74-FD6C-4A1E-B9A6-6A5414A711DF">
- <File Id="Gene2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Gene2" />
- </Component>
- <Component Id="grandma" Guid="AED908DD-8763-4B8B-8A3B-215A1586165E">
- <File Id="grandma" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\grandma" />
- </Component>
- <Component Id="grandpa" Guid="941C5745-D8BD-4F7F-B85A-B994B55DAEDB">
- <File Id="grandpa" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\grandpa" />
- </Component>
- <Component Id="gustave" Guid="353CD66B-AA8E-4E79-BB5C-9094FDBE2C72">
- <File Id="gustave" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\gustave" />
- </Component>
- <Component Id="Henrique" Guid="95362E4A-FFE5-4150-90A9-0191B79F58F2">
- <File Id="Henrique" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Henrique" />
- </Component>
- <Component Id="Hugo" Guid="D444D417-6ECF-4B5B-9C01-2BE2E7254F62">
- <File Id="Hugo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Hugo" />
- </Component>
- <Component Id="iven" Guid="1854A0F1-4F93-4296-8143-B2EE911E4937">
- <File Id="iven" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\iven" />
- </Component>
- <Component Id="iven2" Guid="9E31DCC3-600E-4047-BB59-08B0B6263A42">
- <File Id="iven2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\iven2" />
- </Component>
- <Component Id="iven3" Guid="3A349202-F8A1-45AE-9D41-7DAA0AA72E42">
- <File Id="iven3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\iven3" />
- </Component>
- <Component Id="iven4" Guid="44DA7344-4B71-4988-A543-EF36FB217983">
- <File Id="iven4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\iven4" />
- </Component>
- <Component Id="Jacky" Guid="D23756FE-1FC9-4072-81F2-7D56A2BD230B">
- <File Id="Jacky" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Jacky" />
- </Component>
- <Component Id="john" Guid="8971A207-35F8-448B-8C8D-E4625B68474A">
- <File Id="john" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\john" />
- </Component>
- <Component Id="kaukovalta" Guid="4594E94C-8C15-4B5A-85D2-528D87223684">
- <File Id="kaukovalta" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\kaukovalta" />
- </Component>
- <Component Id="klatt" Guid="6CCACDD3-0F8C-44C1-9D6C-DB98FE2BE980">
- <File Id="klatt" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt" />
- </Component>
- <Component Id="klatt2" Guid="EB285946-1F50-4387-A3C3-1FFADF911E38">
- <File Id="klatt2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt2" />
- </Component>
- <Component Id="klatt3" Guid="42B718F8-0ECB-4037-84EB-A7F7052CC32F">
- <File Id="klatt3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt3" />
- </Component>
- <Component Id="klatt4" Guid="5495496A-1BDF-42F9-B60A-60D8A1744E8D">
- <File Id="klatt4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt4" />
- </Component>
- <Component Id="klatt5" Guid="94B7B378-1499-4277-A980-F42F727649AB">
- <File Id="klatt5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt5" />
- </Component>
- <Component Id="klatt6" Guid="7735EC32-5764-41FC-85F5-48EB9D412513">
- <File Id="klatt6" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\klatt6" />
- </Component>
- <Component Id="Lee" Guid="93D3D5E5-F7F7-45F8-AB0A-24B31DE161BC">
- <File Id="Lee" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Lee" />
- </Component>
- <Component Id="linda" Guid="75FD1A45-F1D3-40D5-8B55-346A3D8D239B">
- <File Id="linda" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\linda" />
- </Component>
- <Component Id="m1" Guid="1A5DED95-A4E0-4252-A09E-508C2AB6888D">
- <File Id="m1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m1" />
- </Component>
- <Component Id="m2" Guid="D70FB6F6-4F5D-481B-BFCC-48961CF85E89">
- <File Id="m2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m2" />
- </Component>
- <Component Id="m3" Guid="92921DA4-A1FF-42AC-B401-6C5E54D00983">
- <File Id="m3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m3" />
- </Component>
- <Component Id="m4" Guid="B00DC3E5-A85D-402C-B257-06C8CDF3FD3E">
- <File Id="m4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m4" />
- </Component>
- <Component Id="m5" Guid="E62668C9-8EBA-425A-A5DE-27124607A0F9">
- <File Id="m5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m5" />
- </Component>
- <Component Id="m6" Guid="93A02349-2546-4ED4-A6EB-24ED1CBD6F4C">
- <File Id="m6" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m6" />
- </Component>
- <Component Id="m7" Guid="9EDEF7A1-24DC-4187-85C2-6FE45DF1B397">
- <File Id="m7" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m7" />
- </Component>
- <Component Id="m8" Guid="A739017B-99A4-4B38-AB4A-EEE31836B880">
- <File Id="m8" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\m8" />
- </Component>
- <Component Id="marcelo" Guid="029416F4-3909-4B8C-822D-7F49586CF4D3">
- <File Id="marcelo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\marcelo" />
- </Component>
- <Component Id="Marco" Guid="445EFC56-1890-41B6-84B8-5D6C2F08235D">
- <File Id="Marco" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Marco" />
- </Component>
- <Component Id="Mario" Guid="91863CB3-67AA-4973-9FF7-C2F62C17C5B8">
- <File Id="Mario" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Mario" />
- </Component>
- <Component Id="max" Guid="F9DFE704-D5D9-4ABF-9E43-994C26320AAF">
- <File Id="max" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\max" />
- </Component>
- <Component Id="Michael" Guid="88A39DCF-316D-416E-B3F4-303194583FA7">
- <File Id="Michael" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Michael" />
- </Component>
- <Component Id="michel" Guid="39B3F4ED-E209-466A-AE48-8C834F48FBE3">
- <File Id="michel" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\michel" />
- </Component>
- <Component Id="miguel" Guid="2D4FE98A-C6F4-4A32-B0B5-E85433F5F48C">
- <File Id="miguel" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\miguel" />
- </Component>
- <Component Id="Mike" Guid="FE454A94-AC63-4123-A80D-2A332D61026A">
- <File Id="Mike" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Mike" />
- </Component>
- <Component Id="Mr_serious" Guid="BD47608A-D514-434C-B8CE-AC4331360F67">
- <File Id="Mr_serious" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Mr serious" />
- </Component>
- <Component Id="Nguyen" Guid="4C80ADC6-9CDE-4639-A1DD-D273291388C8">
- <File Id="Nguyen" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Nguyen" />
- </Component>
- <Component Id="norbert" Guid="69584B5B-9090-4B32-858F-6A560F1E1FA6">
- <File Id="norbert" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\norbert" />
- </Component>
- <Component Id="pablo" Guid="5AE5F60A-5863-40EF-8173-A8971A4EA9E5">
- <File Id="pablo" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\pablo" />
- </Component>
- <Component Id="paul" Guid="E6B2D96B-8C63-4161-811E-17910B7C505F">
- <File Id="paul" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\paul" />
- </Component>
- <Component Id="pedro" Guid="D85830B1-38BC-4F81-995A-D94AD39E6D4A">
- <File Id="pedro" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\pedro" />
- </Component>
- <Component Id="quincy" Guid="D4B07758-B80D-47E8-8DE8-E1A0F2372763">
- <File Id="quincy" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\quincy" />
- </Component>
- <Component Id="RicishayMax" Guid="BF7363D7-A93C-4941-B86D-A5918B483638">
- <File Id="RicishayMax" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\RicishayMax" />
- </Component>
- <Component Id="RicishayMax2" Guid="5F4C7FD9-5820-4BF1-A495-44FB9B552FD2">
- <File Id="RicishayMax2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\RicishayMax2" />
- </Component>
- <Component Id="RicishayMax3" Guid="DEAA1819-898F-497E-A6BE-9067A475EDCE">
- <File Id="RicishayMax3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\RicishayMax3" />
- </Component>
- <Component Id="rob" Guid="30242C9F-CD34-4DC7-B357-5ABD3A4B62CC">
- <File Id="rob" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\rob" />
- </Component>
- <Component Id="robert" Guid="FE1D472F-6792-4ED4-9737-296AE01D0B44">
- <File Id="robert" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robert" />
- </Component>
- <Component Id="robosoft" Guid="E4D09087-D768-49FB-9BFB-6EB09DB14D29">
- <File Id="robosoft" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft" />
- </Component>
- <Component Id="robosoft2" Guid="551D291F-BA87-4FD6-B438-3CBC8B8FAD76">
- <File Id="robosoft2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft2" />
- </Component>
- <Component Id="robosoft3" Guid="56C309A1-EF3B-4D8E-B816-850044D0FD5E">
- <File Id="robosoft3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft3" />
- </Component>
- <Component Id="robosoft4" Guid="0F3B7EC5-9000-48BF-9872-FF834BFF56E9">
- <File Id="robosoft4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft4" />
- </Component>
- <Component Id="robosoft5" Guid="3C390381-E733-4972-B56D-F3168F55B358">
- <File Id="robosoft5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft5" />
- </Component>
- <Component Id="robosoft6" Guid="52494AEC-75EF-43D2-A3F6-3D2CCE2F1C39">
- <File Id="robosoft6" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft6" />
- </Component>
- <Component Id="robosoft7" Guid="EDE82C4A-0EAF-400A-8981-2874A685AC38">
- <File Id="robosoft7" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft7" />
- </Component>
- <Component Id="robosoft8" Guid="A8B8DAED-0D81-4133-9D73-F3C3E7D694E5">
- <File Id="robosoft8" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\robosoft8" />
- </Component>
- <Component Id="sandro" Guid="0E98498B-3293-40FD-B3DD-9C5AF03D9B19">
- <File Id="sandro" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\sandro" />
- </Component>
- <Component Id="shelby" Guid="AB269E0E-A3D5-4D14-AB02-245A40BED069">
- <File Id="shelby" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\shelby" />
- </Component>
- <Component Id="steph" Guid="6B0170FC-8A73-4150-94A5-0322D5FEFAB9">
- <File Id="steph" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\steph" />
- </Component>
- <Component Id="steph2" Guid="873EF224-032C-4D8D-AF4D-B522AE81FC56">
- <File Id="steph2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\steph2" />
- </Component>
- <Component Id="steph3" Guid="0B7E9E38-A1A6-4414-A5F3-81E290CB1358">
- <File Id="steph3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\steph3" />
- </Component>
- <Component Id="Storm" Guid="E18071B6-DF8B-4A97-969D-05CB050773BC">
- <File Id="Storm" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Storm" />
- </Component>
- <Component Id="travis" Guid="A29DAC8A-92F8-401D-AB43-6CAA5BD22D4A">
- <File Id="travis" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\travis" />
- </Component>
- <Component Id="Tweaky" Guid="3302CA6A-B5FF-49FA-BFB4-5569AE3BEA34">
- <File Id="Tweaky" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\Tweaky" />
- </Component>
- <Component Id="UniRobot" Guid="9E8589B5-5FFC-486E-8B4E-B9B121F9E44E">
- <File Id="UniRobot" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\UniRobot" />
- </Component>
- <Component Id="victor" Guid="87F8F826-D383-406A-B4B8-37EA5D9A643E">
- <File Id="victor" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\victor" />
- </Component>
- <Component Id="whisper" Guid="38BAB742-9FA9-4340-B7F8-620408FB2483">
- <File Id="whisper" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\whisper" />
- </Component>
- <Component Id="whisperf" Guid="297BF3BB-9679-4213-B420-698796747E21">
- <File Id="whisperf" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\whisperf" />
- </Component>
- <Component Id="zac" Guid="88E07FB1-A753-4090-AB42-2AFAE287E09C">
- <File Id="zac" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\!v\zac" />
- </Component>
- </Directory>
- <Directory Id="mb" Name="mb">
- <Component Id="mb_af1" Guid="EB86CF9F-2704-464A-B3BB-BB25DD3D1E03">
- <File Id="mb_af1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-af1" />
- </Component>
- <Component Id="mb_af1_en" Guid="D547FE70-376B-437D-AF49-ACD813EB07DE">
- <File Id="mb_af1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-af1-en" />
- </Component>
- <Component Id="mb_ar1" Guid="406FD48E-05BA-44DD-AA0E-1403C7B61C61">
- <File Id="mb_ar1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ar1" />
- </Component>
- <Component Id="mb_ar2" Guid="8D612F42-4E20-48EB-8F85-B28287B2D174">
- <File Id="mb_ar2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ar2" />
- </Component>
- <Component Id="mb_br1" Guid="5AED5E11-B4A5-4CBE-8AA6-1EC7869311FD">
- <File Id="mb_br1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-br1" />
- </Component>
- <Component Id="mb_br2" Guid="5B8FA948-9900-4185-9F66-F52C21A53E11">
- <File Id="mb_br2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-br2" />
- </Component>
- <Component Id="mb_br3" Guid="9D006A37-D31A-4555-97A6-1225735BFCF1">
- <File Id="mb_br3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-br3" />
- </Component>
- <Component Id="mb_br4" Guid="FFA44C2A-E102-4411-B9B2-8834A3F859BC">
- <File Id="mb_br4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-br4" />
- </Component>
- <Component Id="mb_ca1" Guid="3800FEBC-5FD6-4379-B4EF-4F5B1A4E624F">
- <File Id="mb_ca1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ca1" />
- </Component>
- <Component Id="mb_ca2" Guid="B89A4307-5C76-4CFD-BFE8-123C8FC7B10F">
- <File Id="mb_ca2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ca2" />
- </Component>
- <Component Id="mb_cn1" Guid="E6AF790B-D09E-445E-B95A-215C7AF4724D">
- <File Id="mb_cn1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-cn1" />
- </Component>
- <Component Id="mb_cr1" Guid="CEB21223-5D2D-42C2-95E4-4D193A5EE452">
- <File Id="mb_cr1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-cr1" />
- </Component>
- <Component Id="mb_cz1" Guid="A107C17E-F57E-468D-A3BD-E90D60B90644">
- <File Id="mb_cz1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-cz1" />
- </Component>
- <Component Id="mb_cz2" Guid="39AF2D37-E735-4DA5-BE63-40DA1D90E557">
- <File Id="mb_cz2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-cz2" />
- </Component>
- <Component Id="mb_de1" Guid="4A777148-E22D-4934-9296-B49C16794DE3">
- <File Id="mb_de1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de1" />
- </Component>
- <Component Id="mb_de1_en" Guid="D855F148-23FC-4236-9C6F-83CD0EC3694D">
- <File Id="mb_de1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de1-en" />
- </Component>
- <Component Id="mb_de2" Guid="32E8B166-4E8E-484A-89D3-B3BA86AFAA81">
- <File Id="mb_de2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de2" />
- </Component>
- <Component Id="mb_de2_en" Guid="60061818-B80E-4DB7-AE25-60E174DEADF8">
- <File Id="mb_de2_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de2-en" />
- </Component>
- <Component Id="mb_de3" Guid="4BD69D28-B565-49CE-AF19-5006BBB2C886">
- <File Id="mb_de3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de3" />
- </Component>
- <Component Id="mb_de3_en" Guid="0661973C-118E-4200-9D23-BC8785468501">
- <File Id="mb_de3_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de3-en" />
- </Component>
- <Component Id="mb_de4" Guid="FBB71B4D-3C4E-41D0-82A4-6D54F4BF74D4">
- <File Id="mb_de4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de4" />
- </Component>
- <Component Id="mb_de4_en" Guid="7076ADF8-7B72-4BC6-B7C9-931209CF4E20">
- <File Id="mb_de4_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de4-en" />
- </Component>
- <Component Id="mb_de5" Guid="EA506D25-2DF5-41A4-9E86-C803E2781884">
- <File Id="mb_de5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de5" />
- </Component>
- <Component Id="mb_de5_en" Guid="BEC8CE07-AC0C-4FCA-A23E-3347D3AD41E1">
- <File Id="mb_de5_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de5-en" />
- </Component>
- <Component Id="mb_de6" Guid="4F3AF058-C07B-49E3-8C43-C2690BD9B0E7">
- <File Id="mb_de6" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de6" />
- </Component>
- <Component Id="mb_de6_en" Guid="902BDAFF-EB53-499E-A8A6-8962BC45FBF8">
- <File Id="mb_de6_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de6-en" />
- </Component>
- <Component Id="mb_de6_grc" Guid="4AD8446A-C7CD-4374-B6E3-9AE3DA70795C">
- <File Id="mb_de6_grc" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de6-grc" />
- </Component>
- <Component Id="mb_de7" Guid="F7ED78EF-6A88-4E5C-89F4-42EEC417F1F7">
- <File Id="mb_de7" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de7" />
- </Component>
- <Component Id="mb_de8" Guid="F8A28E4E-F027-4B0E-9D05-D681AA9D1058">
- <File Id="mb_de8" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-de8" />
- </Component>
- <Component Id="mb_ee1" Guid="ABB12AF4-19CA-43BD-A622-8E6474355818">
- <File Id="mb_ee1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ee1" />
- </Component>
- <Component Id="mb_en1" Guid="F1B622B6-BDEF-48D6-99B5-2F5D564ED93E">
- <File Id="mb_en1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-en1" />
- </Component>
- <Component Id="mb_es1" Guid="527A2630-0B84-4B98-AADF-EE64A4B9C762">
- <File Id="mb_es1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-es1" />
- </Component>
- <Component Id="mb_es2" Guid="A7ABDB54-3F9D-4B5C-93DF-E4BE6DCD0F7D">
- <File Id="mb_es2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-es2" />
- </Component>
- <Component Id="mb_es3" Guid="45915FAB-7C29-475A-AC51-347AB5CBBF0A">
- <File Id="mb_es3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-es3" />
- </Component>
- <Component Id="mb_es4" Guid="2D98798A-F199-44D6-883E-92537B662573">
- <File Id="mb_es4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-es4" />
- </Component>
- <Component Id="mb_fr1" Guid="075D469E-AA7D-40F4-B0A3-212F5351C19D">
- <File Id="mb_fr1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr1" />
- </Component>
- <Component Id="mb_fr1_en" Guid="49C4BD31-0340-484A-ADBF-8E5E70829F22">
- <File Id="mb_fr1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr1-en" />
- </Component>
- <Component Id="mb_fr2" Guid="40DC1AD2-F16C-4E4C-BE95-F2BA2F13B651">
- <File Id="mb_fr2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr2" />
- </Component>
- <Component Id="mb_fr3" Guid="C12DCADB-99A1-4EE0-8D68-46E18A199B9E">
- <File Id="mb_fr3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr3" />
- </Component>
- <Component Id="mb_fr4" Guid="AB6EADDE-6E2C-4930-AF3E-1CAC07158D3F">
- <File Id="mb_fr4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr4" />
- </Component>
- <Component Id="mb_fr4_en" Guid="F8393C3D-7C00-41C8-9E16-2F6D2DC90B5B">
- <File Id="mb_fr4_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr4-en" />
- </Component>
- <Component Id="mb_fr5" Guid="3E32A179-93AE-4746-88B1-AC7B7814A423">
- <File Id="mb_fr5" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr5" />
- </Component>
- <Component Id="mb_fr6" Guid="79034F0B-9388-4595-A4D6-E7E9A4656BB2">
- <File Id="mb_fr6" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr6" />
- </Component>
- <Component Id="mb_fr7" Guid="482B0716-B315-42B0-8376-E1921B02D36F">
- <File Id="mb_fr7" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-fr7" />
- </Component>
- <Component Id="mb_gr1" Guid="759B5105-3860-4FF5-99A7-DF8D60D25F95">
- <File Id="mb_gr1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-gr1" />
- </Component>
- <Component Id="mb_gr2" Guid="DB08AB04-0BAB-43FB-84E2-8AC2A193CA91">
- <File Id="mb_gr2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-gr2" />
- </Component>
- <Component Id="mb_gr2_en" Guid="05CEB19D-04C5-4429-AA74-F664EE95C7D1">
- <File Id="mb_gr2_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-gr2-en" />
- </Component>
- <Component Id="mb_hb1" Guid="9935789E-E1FC-43EB-82A6-85B489786E6B">
- <File Id="mb_hb1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-hb1" />
- </Component>
- <Component Id="mb_hb2" Guid="31E7B8D5-0EA6-473B-8B40-E323B2A0E2C8">
- <File Id="mb_hb2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-hb2" />
- </Component>
- <Component Id="mb_hu1" Guid="E54FCC43-8AF9-4B3C-97A7-A70CE7EFFF89">
- <File Id="mb_hu1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-hu1" />
- </Component>
- <Component Id="mb_hu1_en" Guid="D50F3196-CEF8-4ACB-BFD7-B0A7C1E0D029">
- <File Id="mb_hu1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-hu1-en" />
- </Component>
- <Component Id="mb_ic1" Guid="A649ECCB-7B16-46D5-BC0E-5709E6478ADC">
- <File Id="mb_ic1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ic1" />
- </Component>
- <Component Id="mb_id1" Guid="3208F547-DEA9-4BFB-8885-6DDA8D5F6180">
- <File Id="mb_id1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-id1" />
- </Component>
- <Component Id="mb_in1" Guid="D352FEE6-6E0B-4B4C-86C8-D2B51C2A7E19">
- <File Id="mb_in1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-in1" />
- </Component>
- <Component Id="mb_in2" Guid="E0E162CA-205B-4CD7-8C8E-62B1C4442B1F">
- <File Id="mb_in2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-in2" />
- </Component>
- <Component Id="mb_ir1" Guid="69AEB691-952F-4FA0-87F6-D3DCE64C27F9">
- <File Id="mb_ir1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ir1" />
- </Component>
- <Component Id="mb_it1" Guid="4C559E7F-4140-4275-8C4A-51FF0E134A5A">
- <File Id="mb_it1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-it1" />
- </Component>
- <Component Id="mb_it2" Guid="65093A79-1664-49C4-BF4B-698FEFEA891E">
- <File Id="mb_it2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-it2" />
- </Component>
- <Component Id="mb_it3" Guid="BC95C260-687E-4A75-9D4C-A0B303AEFA1A">
- <File Id="mb_it3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-it3" />
- </Component>
- <Component Id="mb_it4" Guid="327956B4-501E-4EBB-B536-1AF4F58BD481">
- <File Id="mb_it4" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-it4" />
- </Component>
- <Component Id="mb_jp1" Guid="2A330CD8-278B-4BDC-ACE5-9330E9A043E6">
- <File Id="mb_jp1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-jp1" />
- </Component>
- <Component Id="mb_jp2" Guid="A48DF35E-3FCE-4077-B296-F2DD9A0FDD07">
- <File Id="mb_jp2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-jp2" />
- </Component>
- <Component Id="mb_jp3" Guid="F61D2209-2008-4F17-8AD0-713F25600F63">
- <File Id="mb_jp3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-jp3" />
- </Component>
- <Component Id="mb_la1" Guid="326AEF29-06A2-4EFE-AA1D-1ACBBCE185D2">
- <File Id="mb_la1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-la1" />
- </Component>
- <Component Id="mb_lt1" Guid="19835690-A08D-4C00-8644-E1D996EB3093">
- <File Id="mb_lt1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-lt1" />
- </Component>
- <Component Id="mb_lt2" Guid="82C66C2E-620A-4D55-B87A-3A1C0E12C1E2">
- <File Id="mb_lt2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-lt2" />
- </Component>
- <Component Id="mb_ma1" Guid="D70A7558-D24B-4ECF-8240-B131BC5CD6E9">
- <File Id="mb_ma1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ma1" />
- </Component>
- <Component Id="mb_mx1" Guid="5A2ACADB-0684-49FB-9F6F-281A0A7C1223">
- <File Id="mb_mx1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-mx1" />
- </Component>
- <Component Id="mb_mx2" Guid="2A46ABBE-8B1A-4371-9EE6-3731A268440D">
- <File Id="mb_mx2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-mx2" />
- </Component>
- <Component Id="mb_nl1" Guid="4476F97D-1A41-44F4-8AC6-BAD83C42A3B1">
- <File Id="mb_nl1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-nl1" />
- </Component>
- <Component Id="mb_nl2" Guid="F382E3C1-AEE6-4269-A4BA-D7816EDC3ED3">
- <File Id="mb_nl2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-nl2" />
- </Component>
- <Component Id="mb_nl2_en" Guid="EB4F48B1-379C-4DC1-9024-99512A55E1E4">
- <File Id="mb_nl2_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-nl2-en" />
- </Component>
- <Component Id="mb_nl3" Guid="059C8462-8D2E-437B-A174-D41B708E590E">
- <File Id="mb_nl3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-nl3" />
- </Component>
- <Component Id="mb_nz1" Guid="E3C43402-45E9-4DDD-845D-A3E247DF97A8">
- <File Id="mb_nz1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-nz1" />
- </Component>
- <Component Id="mb_pl1" Guid="66A935A4-B295-492F-A7A1-6764731B8DAF">
- <File Id="mb_pl1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-pl1" />
- </Component>
- <Component Id="mb_pl1_en" Guid="A175AB43-133D-4719-BA7E-098717BA6DF0">
- <File Id="mb_pl1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-pl1-en" />
- </Component>
- <Component Id="mb_pt1" Guid="34C67C15-7AFE-40D9-BAB9-A43DE6B8EEE1">
- <File Id="mb_pt1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-pt1" />
- </Component>
- <Component Id="mb_ro1" Guid="1DA58F89-2D7A-47EA-83D4-C9722506D6A1">
- <File Id="mb_ro1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ro1" />
- </Component>
- <Component Id="mb_ro1_en" Guid="7AAD11A5-23FC-427E-B2B2-607BA1380B1C">
- <File Id="mb_ro1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-ro1-en" />
- </Component>
- <Component Id="mb_sw1" Guid="D50D8390-E5A6-487E-804A-15E4C2F30DE2">
- <File Id="mb_sw1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-sw1" />
- </Component>
- <Component Id="mb_sw1_en" Guid="9414F31A-587C-44C8-969B-D58BB9EB03AE">
- <File Id="mb_sw1_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-sw1-en" />
- </Component>
- <Component Id="mb_sw2" Guid="6818448A-0D49-4EFF-BB40-181D984D72A2">
- <File Id="mb_sw2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-sw2" />
- </Component>
- <Component Id="mb_sw2_en" Guid="D2B9D09F-7BD7-4BEE-9C53-318C61D9D07E">
- <File Id="mb_sw2_en" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-sw2-en" />
- </Component>
- <Component Id="mb_tl1" Guid="E092E627-0959-4D12-B727-CC721811A2DB">
- <File Id="mb_tl1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-tl1" />
- </Component>
- <Component Id="mb_tr1" Guid="1F82E2E4-1263-4400-9183-5C000BE2E40A">
- <File Id="mb_tr1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-tr1" />
- </Component>
- <Component Id="mb_tr2" Guid="4F6D54B2-BD66-4480-9CFD-31CB52165CF6">
- <File Id="mb_tr2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-tr2" />
- </Component>
- <Component Id="mb_us1" Guid="F3732A9A-A3F2-44DD-827D-164B79890017">
- <File Id="mb_us1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-us1" />
- </Component>
- <Component Id="mb_us2" Guid="307BBE40-4A01-4F8D-81EE-6C5F218E7386">
- <File Id="mb_us2" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-us2" />
- </Component>
- <Component Id="mb_us3" Guid="E4A5B861-A56D-4C4C-9BA4-F6D4C987001F">
- <File Id="mb_us3" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-us3" />
- </Component>
- <Component Id="mb_vz1" Guid="64E3D67F-A74B-4DA3-A30B-BC7F01490ED8">
- <File Id="mb_vz1" KeyPath="yes" Source="$(var.ProjectDir)\..\..\..\espeak-ng-data\voices\mb\mb-vz1" />
- </Component>
- </Directory>
- </Directory>
- </Directory>
- </Directory>
- </Directory>
- </Directory>
- </Fragment>
-
- <Fragment>
- <ComponentGroup Id="CoreComponents">
- <ComponentRef Id="espeak_ng_EXE"/>
- <ComponentRef Id="libespeak_ng_DLL"/>
- <ComponentRef Id="AddToEnv"/>
- </ComponentGroup>
- <ComponentGroup Id="Data">
- <ComponentRef Id="af_dict" />
- <ComponentRef Id="am_dict" />
- <ComponentRef Id="an_dict" />
- <ComponentRef Id="ar_dict" />
- <ComponentRef Id="as_dict" />
- <ComponentRef Id="az_dict" />
- <ComponentRef Id="ba_dict" />
- <ComponentRef Id="be_dict" />
- <ComponentRef Id="bg_dict" />
- <ComponentRef Id="bn_dict" />
- <ComponentRef Id="bpy_dict" />
- <ComponentRef Id="bs_dict" />
- <ComponentRef Id="ca_dict" />
- <ComponentRef Id="chr_dict" />
- <ComponentRef Id="cmn_dict" />
- <ComponentRef Id="cs_dict" />
- <ComponentRef Id="cv_dict" />
- <ComponentRef Id="cy_dict" />
- <ComponentRef Id="da_dict" />
- <ComponentRef Id="de_dict" />
- <ComponentRef Id="el_dict" />
- <ComponentRef Id="en_dict" />
- <ComponentRef Id="eo_dict" />
- <ComponentRef Id="es_dict" />
- <ComponentRef Id="et_dict" />
- <ComponentRef Id="eu_dict" />
- <ComponentRef Id="fa_dict" />
- <ComponentRef Id="fi_dict" />
- <ComponentRef Id="fo_dict" />
- <ComponentRef Id="fr_dict" />
- <ComponentRef Id="ga_dict" />
- <ComponentRef Id="gd_dict" />
- <ComponentRef Id="gn_dict" />
- <ComponentRef Id="grc_dict" />
- <ComponentRef Id="gu_dict" />
- <ComponentRef Id="hak_dict" />
- <ComponentRef Id="haw_dict" />
- <ComponentRef Id="he_dict" />
- <ComponentRef Id="hi_dict" />
- <ComponentRef Id="hr_dict" />
- <ComponentRef Id="ht_dict" />
- <ComponentRef Id="hu_dict" />
- <ComponentRef Id="hy_dict" />
- <ComponentRef Id="ia_dict" />
- <ComponentRef Id="id_dict" />
- <ComponentRef Id="intonations" />
- <ComponentRef Id="io_dict" />
- <ComponentRef Id="is_dict" />
- <ComponentRef Id="it_dict" />
- <ComponentRef Id="ja_dict" />
- <ComponentRef Id="jbo_dict" />
- <ComponentRef Id="ka_dict" />
- <ComponentRef Id="kk_dict" />
- <ComponentRef Id="kl_dict" />
- <ComponentRef Id="kn_dict" />
- <ComponentRef Id="kok_dict" />
- <ComponentRef Id="ko_dict" />
- <ComponentRef Id="ku_dict" />
- <ComponentRef Id="ky_dict" />
- <ComponentRef Id="la_dict" />
- <ComponentRef Id="lb_dict" />
- <ComponentRef Id="lfn_dict" />
- <ComponentRef Id="lt_dict" />
- <ComponentRef Id="lv_dict" />
- <ComponentRef Id="mi_dict" />
- <ComponentRef Id="mk_dict" />
- <ComponentRef Id="ml_dict" />
- <ComponentRef Id="mr_dict" />
- <ComponentRef Id="ms_dict" />
- <ComponentRef Id="mt_dict" />
- <ComponentRef Id="my_dict" />
- <ComponentRef Id="nci_dict" />
- <ComponentRef Id="ne_dict" />
- <ComponentRef Id="nl_dict" />
- <ComponentRef Id="nog_dict" />
- <ComponentRef Id="no_dict" />
- <ComponentRef Id="om_dict" />
- <ComponentRef Id="or_dict" />
- <ComponentRef Id="pap_dict" />
- <ComponentRef Id="pa_dict" />
- <ComponentRef Id="phondata" />
- <ComponentRef Id="phondata_manifest" />
- <ComponentRef Id="phonindex" />
- <ComponentRef Id="phontab" />
- <ComponentRef Id="piqd_dict" />
- <ComponentRef Id="pl_dict" />
- <ComponentRef Id="pt_dict" />
- <ComponentRef Id="py_dict" />
- <ComponentRef Id="qdb_dict" />
- <ComponentRef Id="quc_dict" />
- <ComponentRef Id="qu_dict" />
- <ComponentRef Id="qya_dict" />
- <ComponentRef Id="ro_dict" />
- <ComponentRef Id="ru_dict" />
- <ComponentRef Id="sd_dict" />
- <ComponentRef Id="shn_dict" />
- <ComponentRef Id="si_dict" />
- <ComponentRef Id="sjn_dict" />
- <ComponentRef Id="sk_dict" />
- <ComponentRef Id="sl_dict" />
- <ComponentRef Id="smj_dict" />
- <ComponentRef Id="sq_dict" />
- <ComponentRef Id="sr_dict" />
- <ComponentRef Id="sv_dict" />
- <ComponentRef Id="sw_dict" />
- <ComponentRef Id="ta_dict" />
- <ComponentRef Id="te_dict" />
- <ComponentRef Id="th_dict" />
- <ComponentRef Id="tk_dict" />
- <ComponentRef Id="tn_dict" />
- <ComponentRef Id="tr_dict" />
- <ComponentRef Id="tt_dict" />
- <ComponentRef Id="ug_dict" />
- <ComponentRef Id="uk_dict" />
- <ComponentRef Id="ur_dict" />
- <ComponentRef Id="uz_dict" />
- <ComponentRef Id="vi_dict" />
- <ComponentRef Id="yue_dict" />
- <ComponentRef Id="eu" />
- <ComponentRef Id="ko" />
- <ComponentRef Id="qu" />
- <ComponentRef Id="vi" />
- <ComponentRef Id="vi_VN_x_central" />
- <ComponentRef Id="vi_VN_x_south" />
- <ComponentRef Id="eo" />
- <ComponentRef Id="ia" />
- <ComponentRef Id="io" />
- <ComponentRef Id="jbo" />
- <ComponentRef Id="lfn" />
- <ComponentRef Id="piqd" />
- <ComponentRef Id="py" />
- <ComponentRef Id="qdb" />
- <ComponentRef Id="qya" />
- <ComponentRef Id="sjn" />
- <ComponentRef Id="nci" />
- <ComponentRef Id="lt" />
- <ComponentRef Id="ltg" />
- <ComponentRef Id="lv" />
- <ComponentRef Id="sw" />
- <ComponentRef Id="tn" />
- <ComponentRef Id="ka" />
- <ComponentRef Id="cy" />
- <ComponentRef Id="ga" />
- <ComponentRef Id="gd" />
- <ComponentRef Id="om" />
- <ComponentRef Id="kn" />
- <ComponentRef Id="ml" />
- <ComponentRef Id="ta" />
- <ComponentRef Id="te" />
- <ComponentRef Id="kl" />
- <ComponentRef Id="da" />
- <ComponentRef Id="is" />
- <ComponentRef Id="nb" />
- <ComponentRef Id="sv" />
- <ComponentRef Id="af" />
- <ComponentRef Id="de" />
- <ComponentRef Id="en" />
- <ComponentRef Id="en_029" />
- <ComponentRef Id="en_GB_scotland" />
- <ComponentRef Id="en_GB_x_gbclan" />
- <ComponentRef Id="en_GB_x_gbcwmd" />
- <ComponentRef Id="en_GB_x_rp" />
- <ComponentRef Id="en_US" />
- <ComponentRef Id="en_US_nyc" />
- <ComponentRef Id="lb" />
- <ComponentRef Id="nl" />
- <ComponentRef Id="el" />
- <ComponentRef Id="grc" />
- <ComponentRef Id="as" />
- <ComponentRef Id="bn" />
- <ComponentRef Id="bpy" />
- <ComponentRef Id="gu" />
- <ComponentRef Id="hi" />
- <ComponentRef Id="kok" />
- <ComponentRef Id="mr" />
- <ComponentRef Id="ne" />
- <ComponentRef Id="or" />
- <ComponentRef Id="pa" />
- <ComponentRef Id="sd" />
- <ComponentRef Id="si" />
- <ComponentRef Id="ur" />
- <ComponentRef Id="hy" />
- <ComponentRef Id="hyw" />
- <ComponentRef Id="sq" />
- <ComponentRef Id="fa" />
- <ComponentRef Id="fa_Latn" />
- <ComponentRef Id="ku" />
- <ComponentRef Id="chr" />
- <ComponentRef Id="la" />
- <ComponentRef Id="ja" />
- <ComponentRef Id="haw" />
- <ComponentRef Id="quc" />
- <ComponentRef Id="id" />
- <ComponentRef Id="mi" />
- <ComponentRef Id="ms" />
- <ComponentRef Id="an" />
- <ComponentRef Id="ca" />
- <ComponentRef Id="es" />
- <ComponentRef Id="es_419" />
- <ComponentRef Id="fr" />
- <ComponentRef Id="fr_BE" />
- <ComponentRef Id="fr_CH" />
- <ComponentRef Id="ht" />
- <ComponentRef Id="it" />
- <ComponentRef Id="pap" />
- <ComponentRef Id="pt" />
- <ComponentRef Id="pt_BR" />
- <ComponentRef Id="ro" />
- <ComponentRef Id="gn" />
- <ComponentRef Id="am" />
- <ComponentRef Id="ar" />
- <ComponentRef Id="he" />
- <ComponentRef Id="mt" />
- <ComponentRef Id="cmn" />
- <ComponentRef Id="cmn_Latn_pinyin" />
- <ComponentRef Id="hak" />
- <ComponentRef Id="my" />
- <ComponentRef Id="yue" />
- <ComponentRef Id="yue_Latn_jyutping" />
- <ComponentRef Id="shn" />
- <ComponentRef Id="th" />
- <ComponentRef Id="az" />
- <ComponentRef Id="ba" />
- <ComponentRef Id="cv" />
- <ComponentRef Id="kk" />
- <ComponentRef Id="ky" />
- <ComponentRef Id="nog" />
- <ComponentRef Id="tk" />
- <ComponentRef Id="tr" />
- <ComponentRef Id="tt" />
- <ComponentRef Id="ug" />
- <ComponentRef Id="uz" />
- <ComponentRef Id="et" />
- <ComponentRef Id="fi" />
- <ComponentRef Id="fo" />
- <ComponentRef Id="hu" />
- <ComponentRef Id="smj" />
- <ComponentRef Id="be" />
- <ComponentRef Id="ru" />
- <ComponentRef Id="ru_LV" />
- <ComponentRef Id="uk" />
- <ComponentRef Id="bg" />
- <ComponentRef Id="bs" />
- <ComponentRef Id="hr" />
- <ComponentRef Id="mk" />
- <ComponentRef Id="sl" />
- <ComponentRef Id="sr" />
- <ComponentRef Id="cs" />
- <ComponentRef Id="pl" />
- <ComponentRef Id="sk" />
- <ComponentRef Id="adam" />
- <ComponentRef Id="Alex" />
- <ComponentRef Id="Alicia" />
- <ComponentRef Id="Andrea" />
- <ComponentRef Id="Andy" />
- <ComponentRef Id="anika" />
- <ComponentRef Id="anikaRobot" />
- <ComponentRef Id="Annie" />
- <ComponentRef Id="announcer" />
- <ComponentRef Id="antonio" />
- <ComponentRef Id="AnxiousAndy" />
- <ComponentRef Id="aunty" />
- <ComponentRef Id="belinda" />
- <ComponentRef Id="benjamin" />
- <ComponentRef Id="boris" />
- <ComponentRef Id="caleb" />
- <ComponentRef Id="croak" />
- <ComponentRef Id="david" />
- <ComponentRef Id="Demonic" />
- <ComponentRef Id="Denis" />
- <ComponentRef Id="Diogo" />
- <ComponentRef Id="ed" />
- <ComponentRef Id="edward" />
- <ComponentRef Id="edward2" />
- <ComponentRef Id="f1" />
- <ComponentRef Id="f2" />
- <ComponentRef Id="f3" />
- <ComponentRef Id="f4" />
- <ComponentRef Id="f5" />
- <ComponentRef Id="fast" />
- <ComponentRef Id="Gene" />
- <ComponentRef Id="Gene2" />
- <ComponentRef Id="grandma" />
- <ComponentRef Id="grandpa" />
- <ComponentRef Id="gustave" />
- <ComponentRef Id="Henrique" />
- <ComponentRef Id="Hugo" />
- <ComponentRef Id="iven" />
- <ComponentRef Id="iven2" />
- <ComponentRef Id="iven3" />
- <ComponentRef Id="iven4" />
- <ComponentRef Id="Jacky" />
- <ComponentRef Id="john" />
- <ComponentRef Id="kaukovalta" />
- <ComponentRef Id="klatt" />
- <ComponentRef Id="klatt2" />
- <ComponentRef Id="klatt3" />
- <ComponentRef Id="klatt4" />
- <ComponentRef Id="klatt5" />
- <ComponentRef Id="klatt6" />
- <ComponentRef Id="Lee" />
- <ComponentRef Id="linda" />
- <ComponentRef Id="m1" />
- <ComponentRef Id="m2" />
- <ComponentRef Id="m3" />
- <ComponentRef Id="m4" />
- <ComponentRef Id="m5" />
- <ComponentRef Id="m6" />
- <ComponentRef Id="m7" />
- <ComponentRef Id="m8" />
- <ComponentRef Id="marcelo" />
- <ComponentRef Id="Marco" />
- <ComponentRef Id="Mario" />
- <ComponentRef Id="max" />
- <ComponentRef Id="Michael" />
- <ComponentRef Id="michel" />
- <ComponentRef Id="miguel" />
- <ComponentRef Id="Mike" />
- <ComponentRef Id="Mr_serious" />
- <ComponentRef Id="Nguyen" />
- <ComponentRef Id="norbert" />
- <ComponentRef Id="pablo" />
- <ComponentRef Id="paul" />
- <ComponentRef Id="pedro" />
- <ComponentRef Id="quincy" />
- <ComponentRef Id="RicishayMax" />
- <ComponentRef Id="RicishayMax2" />
- <ComponentRef Id="RicishayMax3" />
- <ComponentRef Id="rob" />
- <ComponentRef Id="robert" />
- <ComponentRef Id="robosoft" />
- <ComponentRef Id="robosoft2" />
- <ComponentRef Id="robosoft3" />
- <ComponentRef Id="robosoft4" />
- <ComponentRef Id="robosoft5" />
- <ComponentRef Id="robosoft6" />
- <ComponentRef Id="robosoft7" />
- <ComponentRef Id="robosoft8" />
- <ComponentRef Id="sandro" />
- <ComponentRef Id="shelby" />
- <ComponentRef Id="steph" />
- <ComponentRef Id="steph2" />
- <ComponentRef Id="steph3" />
- <ComponentRef Id="Storm" />
- <ComponentRef Id="travis" />
- <ComponentRef Id="Tweaky" />
- <ComponentRef Id="UniRobot" />
- <ComponentRef Id="victor" />
- <ComponentRef Id="whisper" />
- <ComponentRef Id="whisperf" />
- <ComponentRef Id="zac" />
- <ComponentRef Id="mb_af1" />
- <ComponentRef Id="mb_af1_en" />
- <ComponentRef Id="mb_ar1" />
- <ComponentRef Id="mb_ar2" />
- <ComponentRef Id="mb_br1" />
- <ComponentRef Id="mb_br2" />
- <ComponentRef Id="mb_br3" />
- <ComponentRef Id="mb_br4" />
- <ComponentRef Id="mb_ca1" />
- <ComponentRef Id="mb_ca2" />
- <ComponentRef Id="mb_cn1" />
- <ComponentRef Id="mb_cr1" />
- <ComponentRef Id="mb_cz1" />
- <ComponentRef Id="mb_cz2" />
- <ComponentRef Id="mb_de1" />
- <ComponentRef Id="mb_de1_en" />
- <ComponentRef Id="mb_de2" />
- <ComponentRef Id="mb_de2_en" />
- <ComponentRef Id="mb_de3" />
- <ComponentRef Id="mb_de3_en" />
- <ComponentRef Id="mb_de4" />
- <ComponentRef Id="mb_de4_en" />
- <ComponentRef Id="mb_de5" />
- <ComponentRef Id="mb_de5_en" />
- <ComponentRef Id="mb_de6" />
- <ComponentRef Id="mb_de6_en" />
- <ComponentRef Id="mb_de6_grc" />
- <ComponentRef Id="mb_de7" />
- <ComponentRef Id="mb_de8" />
- <ComponentRef Id="mb_ee1" />
- <ComponentRef Id="mb_en1" />
- <ComponentRef Id="mb_es1" />
- <ComponentRef Id="mb_es2" />
- <ComponentRef Id="mb_es3" />
- <ComponentRef Id="mb_es4" />
- <ComponentRef Id="mb_fr1" />
- <ComponentRef Id="mb_fr1_en" />
- <ComponentRef Id="mb_fr2" />
- <ComponentRef Id="mb_fr3" />
- <ComponentRef Id="mb_fr4" />
- <ComponentRef Id="mb_fr4_en" />
- <ComponentRef Id="mb_fr5" />
- <ComponentRef Id="mb_fr6" />
- <ComponentRef Id="mb_fr7" />
- <ComponentRef Id="mb_gr1" />
- <ComponentRef Id="mb_gr2" />
- <ComponentRef Id="mb_gr2_en" />
- <ComponentRef Id="mb_hb1" />
- <ComponentRef Id="mb_hb2" />
- <ComponentRef Id="mb_hu1" />
- <ComponentRef Id="mb_hu1_en" />
- <ComponentRef Id="mb_ic1" />
- <ComponentRef Id="mb_id1" />
- <ComponentRef Id="mb_in1" />
- <ComponentRef Id="mb_in2" />
- <ComponentRef Id="mb_ir1" />
- <ComponentRef Id="mb_it1" />
- <ComponentRef Id="mb_it2" />
- <ComponentRef Id="mb_it3" />
- <ComponentRef Id="mb_it4" />
- <ComponentRef Id="mb_jp1" />
- <ComponentRef Id="mb_jp2" />
- <ComponentRef Id="mb_jp3" />
- <ComponentRef Id="mb_la1" />
- <ComponentRef Id="mb_lt1" />
- <ComponentRef Id="mb_lt2" />
- <ComponentRef Id="mb_ma1" />
- <ComponentRef Id="mb_mx1" />
- <ComponentRef Id="mb_mx2" />
- <ComponentRef Id="mb_nl1" />
- <ComponentRef Id="mb_nl2" />
- <ComponentRef Id="mb_nl2_en" />
- <ComponentRef Id="mb_nl3" />
- <ComponentRef Id="mb_nz1" />
- <ComponentRef Id="mb_pl1" />
- <ComponentRef Id="mb_pl1_en" />
- <ComponentRef Id="mb_pt1" />
- <ComponentRef Id="mb_ro1" />
- <ComponentRef Id="mb_ro1_en" />
- <ComponentRef Id="mb_sw1" />
- <ComponentRef Id="mb_sw1_en" />
- <ComponentRef Id="mb_sw2" />
- <ComponentRef Id="mb_sw2_en" />
- <ComponentRef Id="mb_tl1" />
- <ComponentRef Id="mb_tr1" />
- <ComponentRef Id="mb_tr2" />
- <ComponentRef Id="mb_us1" />
- <ComponentRef Id="mb_us2" />
- <ComponentRef Id="mb_us3" />
- <ComponentRef Id="mb_vz1" />
- </ComponentGroup>
- </Fragment>
- </Wix>
|