Browse Source

Updated language resources to fix missing strings.

Renamed WixDialog to EmptyWixDialog and WixGraphicalDialog to WixDialog.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3432 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Christian Hornung 17 years ago
parent
commit
5352e87454
  1. BIN
      data/resources/StringResources.cn-gb.resources
  2. BIN
      data/resources/StringResources.cz.resources
  3. BIN
      data/resources/StringResources.de.resources
  4. BIN
      data/resources/StringResources.es-mx.resources
  5. BIN
      data/resources/StringResources.es.resources
  6. BIN
      data/resources/StringResources.fr.resources
  7. BIN
      data/resources/StringResources.hu.resources
  8. BIN
      data/resources/StringResources.it.resources
  9. BIN
      data/resources/StringResources.kr.resources
  10. BIN
      data/resources/StringResources.nl.resources
  11. BIN
      data/resources/StringResources.no.resources
  12. BIN
      data/resources/StringResources.pl.resources
  13. BIN
      data/resources/StringResources.pt-br.resources
  14. BIN
      data/resources/StringResources.pt.resources
  15. BIN
      data/resources/StringResources.ro.resources
  16. BIN
      data/resources/StringResources.se.resources
  17. BIN
      data/resources/StringResources.tr.resources
  18. 24
      src/AddIns/BackendBindings/WixBinding/Project/Templates/EmptyWixDialog.xft
  19. 19
      src/AddIns/BackendBindings/WixBinding/Project/Templates/WixDialog.xft
  20. 41
      src/AddIns/BackendBindings/WixBinding/Project/Templates/WixGraphicalDialog.xft
  21. 4
      src/AddIns/BackendBindings/WixBinding/Project/WixBinding.csproj
  22. BIN
      src/Main/StartUp/Project/Resources/StringResources.resources

BIN
data/resources/StringResources.cn-gb.resources

Binary file not shown.

BIN
data/resources/StringResources.cz.resources

Binary file not shown.

BIN
data/resources/StringResources.de.resources

Binary file not shown.

BIN
data/resources/StringResources.es-mx.resources

Binary file not shown.

BIN
data/resources/StringResources.es.resources

Binary file not shown.

BIN
data/resources/StringResources.fr.resources

Binary file not shown.

BIN
data/resources/StringResources.hu.resources

Binary file not shown.

BIN
data/resources/StringResources.it.resources

Binary file not shown.

BIN
data/resources/StringResources.kr.resources

Binary file not shown.

BIN
data/resources/StringResources.nl.resources

Binary file not shown.

BIN
data/resources/StringResources.no.resources

Binary file not shown.

BIN
data/resources/StringResources.pl.resources

Binary file not shown.

BIN
data/resources/StringResources.pt-br.resources

Binary file not shown.

BIN
data/resources/StringResources.pt.resources

Binary file not shown.

BIN
data/resources/StringResources.ro.resources

Binary file not shown.

BIN
data/resources/StringResources.se.resources

Binary file not shown.

BIN
data/resources/StringResources.tr.resources

Binary file not shown.

24
src/AddIns/BackendBindings/WixBinding/Project/Templates/EmptyWixDialog.xft

@ -0,0 +1,24 @@ @@ -0,0 +1,24 @@
<?xml version="1.0"?>
<Template author="Matt Ward" version="1.0">
<Config name = "${res:Templates.File.Wix.EmptyWixDialog.Name}"
icon = "Icons.32x32.XMLFileIcon"
category = "${res:Templates.File.Categories.Setup}"
defaultname = "Dialog${Number}.wxs"
language = "XML"/>
<Description>${res:Templates.File.Wix.EmptyWixDialog.Description}</Description>
<Files>
<File name="${FullName}" language="XML"><![CDATA[<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<UI>
<Dialog Id="${ClassName}" Width="370" Height="270" Title="${FileNameWithoutExtension}">
</Dialog>
</UI>
</Fragment>
</Wix>]]>
</File>
</Files>
<AdditionalOptions/>
</Template>

19
src/AddIns/BackendBindings/WixBinding/Project/Templates/WixDialog.xft

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
<?xml version="1.0"?>
<Template author="Matt Ward" version="1.0">
<Template author="Justin Dearing" version="1.0">
<Config name = "${res:Templates.File.Wix.WixDialog.Name}"
icon = "Icons.32x32.XMLFileIcon"
category = "${res:Templates.File.Categories.Setup}"
@ -14,6 +14,23 @@ @@ -14,6 +14,23 @@
<Fragment>
<UI>
<Dialog Id="${ClassName}" Width="370" Height="270" Title="${FileNameWithoutExtension}">
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="[Button_Next]">
<!--
<Publish Event="NewDialog" Value="ViewLicenseAgreement">1</Publish>
-->
</Control>
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="[Button_Cancel]">
<Publish Event="SpawnDialog" Value="CancelDialog">1</Publish>
</Control>
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" FixedSize="yes" TabSkip="no" Text="dialog.bmp" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Back]" />
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
<Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="90" Transparent="yes" NoPrefix="yes">
<Text>Your Text Goes Here</Text>
</Control>
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
<Text>${FileNameWithoutExtension}</Text>
</Control>
</Dialog>
</UI>
</Fragment>

41
src/AddIns/BackendBindings/WixBinding/Project/Templates/WixGraphicalDialog.xft

@ -1,41 +0,0 @@ @@ -1,41 +0,0 @@
<?xml version="1.0"?>
<Template author="Justin Dearing" version="1.0">
<Config name = "${res:Templates.File.Wix.WixGraphicalDialog.Name}"
icon = "Icons.32x32.XMLFileIcon"
category = "${res:Templates.File.Categories.Setup}"
defaultname = "Dialog${Number}.wxs"
language = "XML"/>
<Description>${res:Templates.File.Wix.WixGraphicalDialog.Description}</Description>
<Files>
<File name="${FullName}" language="XML"><![CDATA[<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<UI>
<Dialog Id="${ClassName}" Width="370" Height="270" Title="${FileNameWithoutExtension}">
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="[Button_Next]">
<!--
<Publish Event="NewDialog" Value="ViewLicenseAgreement">1</Publish>
-->
</Control>
<Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="[Button_Cancel]">
<Publish Event="SpawnDialog" Value="CancelDialog">1</Publish>
</Control>
<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" FixedSize="yes" TabSkip="no" Text="dialog.bmp" />
<Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Disabled="yes" Text="[Button_Back]" />
<Control Id="BottomLine" Type="Line" X="0" Y="234" Width="370" Height="0" />
<Control Id="Description" Type="Text" X="135" Y="70" Width="220" Height="90" Transparent="yes" NoPrefix="yes">
<Text>Your Text Goes Here</Text>
</Control>
<Control Id="Title" Type="Text" X="135" Y="20" Width="220" Height="60" Transparent="yes" NoPrefix="yes">
<Text>${FileNameWithoutExtension}</Text>
</Control>
</Dialog>
</UI>
</Fragment>
</Wix>]]>
</File>
</Files>
<AdditionalOptions/>
</Template>

4
src/AddIns/BackendBindings/WixBinding/Project/WixBinding.csproj

@ -148,7 +148,7 @@ @@ -148,7 +148,7 @@
<Content Include="Templates\DefaultLicense.rtf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Include="Templates\WixGraphicalDialog.xft">
<None Include="Templates\WixDialog.xft">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Templates\WixUIFeatureTreeProject.xpt">
@ -197,7 +197,7 @@ @@ -197,7 +197,7 @@
<Content Include="Templates\EmptyWixFile.xft">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Templates\WixDialog.xft">
<Content Include="Templates\EmptyWixDialog.xft">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<ProjectReference Include="..\..\..\..\Libraries\NRefactory\Project\NRefactory.csproj">

BIN
src/Main/StartUp/Project/Resources/StringResources.resources

Binary file not shown.
Loading…
Cancel
Save