Browse Source

Changed some little translation issues. Re-Arranged tools menu.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@379 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Mike Krüger 20 years ago
parent
commit
dc57d76362
  1. BIN
      data/resources/StringResources.ar.resources
  2. BIN
      data/resources/StringResources.bg.resources
  3. BIN
      data/resources/StringResources.cn-big.resources
  4. BIN
      data/resources/StringResources.cn-gb.resources
  5. BIN
      data/resources/StringResources.cz.resources
  6. BIN
      data/resources/StringResources.dk.resources
  7. BIN
      data/resources/StringResources.es-mx.resources
  8. BIN
      data/resources/StringResources.es.resources
  9. BIN
      data/resources/StringResources.fi.resources
  10. BIN
      data/resources/StringResources.fr.resources
  11. BIN
      data/resources/StringResources.hu.resources
  12. BIN
      data/resources/StringResources.it.resources
  13. BIN
      data/resources/StringResources.jp.resources
  14. BIN
      data/resources/StringResources.kr.resources
  15. BIN
      data/resources/StringResources.lt.resources
  16. BIN
      data/resources/StringResources.nl.resources
  17. BIN
      data/resources/StringResources.pl.resources
  18. BIN
      data/resources/StringResources.pt-br.resources
  19. BIN
      data/resources/StringResources.pt.resources
  20. BIN
      data/resources/StringResources.ro.resources
  21. BIN
      data/resources/StringResources.ru.resources
  22. BIN
      data/resources/StringResources.se.resources
  23. BIN
      data/resources/StringResources.sl.resources
  24. BIN
      data/resources/StringResources.sr.resources
  25. BIN
      data/resources/StringResources.tr.resources
  26. 4
      src/AddIns/BackendBindings/VBNetBinding/Project/VBNetBinding.csproj
  27. 5
      src/AddIns/DisplayBindings/FormDesigner/Project/Src/FormDesigner/FormDesignerSecondaryDisplayBinding.cs
  28. 4
      src/AddIns/Misc/HtmlHelp2/Project/HtmlHelp2.csproj
  29. 20
      src/AddIns/Misc/SubversionAddIn/Project/ICSharpCode.Svn.addin
  30. 1
      src/Libraries/NRefactory/Project/Src/Main.cs
  31. BIN
      src/Main/StartUp/Project/Resources/StringResources.resources

BIN
data/resources/StringResources.ar.resources

Binary file not shown.

BIN
data/resources/StringResources.bg.resources

Binary file not shown.

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

Binary file not shown.

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.dk.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.fi.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.jp.resources

Binary file not shown.

BIN
data/resources/StringResources.kr.resources

Binary file not shown.

BIN
data/resources/StringResources.lt.resources

Binary file not shown.

BIN
data/resources/StringResources.nl.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.ru.resources

Binary file not shown.

BIN
data/resources/StringResources.se.resources

Binary file not shown.

BIN
data/resources/StringResources.sl.resources

Binary file not shown.

BIN
data/resources/StringResources.sr.resources

Binary file not shown.

BIN
data/resources/StringResources.tr.resources

Binary file not shown.

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

@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50215</ProductVersion>
<ProductVersion>8.0.50630</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{BF38FB72-B380-4196-AF8C-95749D726C61}</ProjectGuid>
<AssemblyName>VBNetBinding</AssemblyName>
@ -43,7 +43,7 @@ @@ -43,7 +43,7 @@
<Compile Include="Src\VBNetLanguageBinding.cs" />
<Compile Include="Src\FormattingStrategy\VBNetFormattingStrategy.cs" />
<Compile Include="Src\OptionPanels\BuildOptions.cs">
<SubType>UserControl</SubType>
<SubType>Form</SubType>
</Compile>
<Compile Include="Src\Parser\ExpressionFinder.cs" />
<Compile Include="Src\Parser\Parser.cs" />

5
src/AddIns/DisplayBindings/FormDesigner/Project/Src/FormDesigner/FormDesignerSecondaryDisplayBinding.cs

@ -66,8 +66,7 @@ namespace ICSharpCode.FormDesigner @@ -66,8 +66,7 @@ namespace ICSharpCode.FormDesigner
}
// Test for real base type (does not work while solution load thread is still running)
IProjectContent pc = ProjectContentRegistry.WinForms;
return c.IsTypeInInheritanceTree(pc.GetClass("System.Windows.Forms.Form")) ||
c.IsTypeInInheritanceTree(pc.GetClass("System.Windows.Forms.UserControl"));
return c.IsTypeInInheritanceTree(pc.GetClass("System.Windows.Forms.Form")) || c.IsTypeInInheritanceTree(pc.GetClass("System.Windows.Forms.UserControl"));
}
public bool CanAttachTo(IViewContent viewContent)
@ -92,6 +91,8 @@ namespace ICSharpCode.FormDesigner @@ -92,6 +91,8 @@ namespace ICSharpCode.FormDesigner
if (method == null) {
continue;
}
Console.WriteLine("TRUE "+ info);
return true;
}
}

4
src/AddIns/Misc/HtmlHelp2/Project/HtmlHelp2.csproj

@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{918487B7-2153-4618-BBB3-344DBDDF2A2A}</ProjectGuid>
<ProductVersion>8.0.50215</ProductVersion>
<ProductVersion>8.0.50630</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@ -56,7 +56,7 @@ @@ -56,7 +56,7 @@
</None>
<Compile Include="src\Service\Help2RegistryWalker.cs" />
<Compile Include="src\Service\HtmlHelp2Dialog.cs">
<SubType>Component</SubType>
<SubType>Form</SubType>
</Compile>
<Compile Include="src\Service\HtmlHelp2Service.cs" />
<Compile Include="src\Service\ResourcesHelper.cs" />

20
src/AddIns/Misc/SubversionAddIn/Project/ICSharpCode.Svn.addin

@ -65,13 +65,19 @@ @@ -65,13 +65,19 @@
<Path name = "/SharpDevelop/Workbench/MainMenu/Tools">
<MenuItem id = "SvnExport"
label = "Export"
icon = "Svn.Export"
class = "ICSharpCode.Svn.Commands.ExportCommand"/>
<MenuItem id = "SvnCheckout"
label = "Checkout"
icon = "Svn.Checkout"
class = "ICSharpCode.Svn.Commands.CheckoutCommand"/>
label = "Subversion"
insertbefore = "LastSeparator"
type="Menu">
<MenuItem id = "SvnExport"
label = "Export"
icon = "Svn.Export"
class = "ICSharpCode.Svn.Commands.ExportCommand"/>
<MenuItem id = "SvnCheckout"
label = "Checkout"
icon = "Svn.Checkout"
class = "ICSharpCode.Svn.Commands.CheckoutCommand"/>
</MenuItem>
</Path>
</AddIn>

1
src/Libraries/NRefactory/Project/Src/Main.cs

@ -6,7 +6,6 @@ @@ -6,7 +6,6 @@
// </file>
using System;
using System.Windows.Forms;
using System.IO;
using System.Collections;
using System.Collections.Specialized;

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

Binary file not shown.
Loading…
Cancel
Save