Browse Source

Add some strings to translation database.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1742 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 19 years ago
parent
commit
e2f4e6b86e
  1. 4
      AddIns/ICSharpCode.SharpDevelop.addin
  2. BIN
      data/resources/StringResources.es-mx.resources
  3. BIN
      data/resources/StringResources.es.resources
  4. BIN
      data/resources/StringResources.nl.resources
  5. 2
      src/AddIns/Misc/CodeAnalysis/Src/FxCopLogger.cs
  6. 10
      src/AddIns/Misc/CodeCoverage/Project/CodeCoverage.addin
  7. 2
      src/AddIns/Misc/CodeCoverage/Project/Resources/CodeCoverageProjectOptionsPanel.xfrm
  8. 10
      src/AddIns/Misc/Debugger/Debugger.BooInterpreter/Project/Src/DebugeeInterpreterContext.cs
  9. 2
      src/Main/Base/Project/Src/Commands/MenuItemBuilders.cs
  10. 2
      src/Main/Base/Project/Src/Gui/Components/StringListEditor.cs
  11. BIN
      src/Main/StartUp/Project/Resources/StringResources.resources

4
AddIns/ICSharpCode.SharpDevelop.addin

@ -920,7 +920,7 @@ @@ -920,7 +920,7 @@
<ToolbarItem id="NavigateBack"
type="SplitButton"
icon="Icons.16x16.NavigateBack"
tooltip="Navigate Back"
tooltip="${res:XML.MainMenu.Navigation.Back}"
disabledIcon="Icons.16x16.NavigateBack"
loadclasslazy="false"
class="ICSharpCode.SharpDevelop.Commands.NavigateBack"
@ -933,7 +933,7 @@ @@ -933,7 +933,7 @@
<Condition name="CanNavigateForward" action="Disable">
<ToolbarItem id="NavigateForward"
icon="Icons.16x16.NavigateForward"
tooltip="Navigate Forward"
tooltip="${res:XML.MainMenu.Navigation.Forward}"
loadclasslazy="false"
class="ICSharpCode.SharpDevelop.Commands.NavigateForward"/>
</Condition>

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.nl.resources

Binary file not shown.

2
src/AddIns/Misc/CodeAnalysis/Src/FxCopLogger.cs

@ -53,7 +53,7 @@ namespace ICSharpCode.CodeAnalysis @@ -53,7 +53,7 @@ namespace ICSharpCode.CodeAnalysis
public void Initialize(IEventSource eventSource)
{
this.eventSource = eventSource;
engine.MessageView.AppendText("Running FxCop on " + Path.GetFileNameWithoutExtension(engine.CurrentProjectFile) + "\r\n");
engine.MessageView.AppendText("${res:ICSharpCode.CodeAnalysis.RunningFxCopOn} " + Path.GetFileNameWithoutExtension(engine.CurrentProjectFile) + "\r\n");
eventSource.ErrorRaised += OnError;
eventSource.WarningRaised += OnWarning;
}

10
src/AddIns/Misc/CodeCoverage/Project/CodeCoverage.addin

@ -37,15 +37,15 @@ @@ -37,15 +37,15 @@
<ToolbarItem id = "CodeCoveragePadDisplayOptions"
type = "DropDownButton"
icon = "Icons.16x16.Options"
tooltip = "Display Options"
tooltip = "${res:ICSharpCode.CodeCoverage.DisplayOptions}"
class = "ICSharpCode.CodeCoverage.ShowDisplayOptionsDropDown">
<MenuItem id = "ShowVisitCountOption"
type = "CheckBox"
label = "Show Visit Count"
label = "${res:ICSharpCode.CodeCoverage.ShowVisitCount}"
class = "ICSharpCode.CodeCoverage.ShowVisitCountCommand"/>
<MenuItem id = "ShowSourceCodeOption"
type = "CheckBox"
label = "Show Source Code"
label = "${res:ICSharpCode.CodeCoverage.ShowSourceCode}"
class = "ICSharpCode.CodeCoverage.ShowSourceCodeCommand"/>
</ToolbarItem>
</Path>
@ -76,7 +76,7 @@ @@ -76,7 +76,7 @@
<Path name = "/SharpDevelop/Workbench/MainMenu/Edit/Format">
<MenuItem id = "ShowCodeCoverage"
insertafter = "Indent"
label = "Show Code Co&amp;verage"
label = "${res:ICSharpCode.CodeCoverage.ShowCoverage}"
type = "CheckBox"
class = "ICSharpCode.CodeCoverage.ToggleCodeCoverageCommand"/>
</Path>
@ -85,7 +85,7 @@ @@ -85,7 +85,7 @@
<MenuItem id = "ShowCodeCoverage"
insertafter = "Indent"
insertbefore = "FileMode"
label = "Show Code Co&amp;verage"
label = "${res:ICSharpCode.CodeCoverage.ShowCoverage}"
type = "CheckBox"
class = "ICSharpCode.CodeCoverage.ToggleCodeCoverageCommand"/>
</Path>

2
src/AddIns/Misc/CodeCoverage/Project/Resources/CodeCoverageProjectOptionsPanel.xfrm

@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@
<System.Windows.Forms.Label>
<Name value="excludedAttributesListLabel" />
<Location value="{X=12,Y=69}" />
<Text value="Excluded Attributes:" />
<Text value="${res:ICSharpCode.CodeCoverage.ProjectOptionsPanel.ExcludeAttributes}:" />
<Anchor value="Top, Left, Right" />
<Size value="{Width=317, Height=20}" />
<TabIndex value="2" />

10
src/AddIns/Misc/Debugger/Debugger.BooInterpreter/Project/Src/DebugeeInterpreterContext.cs

@ -28,8 +28,8 @@ namespace Debugger @@ -28,8 +28,8 @@ namespace Debugger
public DebugeeInterpreterContext()
{
this.Title = "Debuggee";
this.ToolTipText = "Runs commands in the debugged progam";
this.Title = "${res:ICSharpCode.BooInterpreter.Debuggee.Title}";
this.ToolTipText = "${res:ICSharpCode.BooInterpreter.Debuggee.ToolTip}";
this.Image = ICSharpCode.Core.ResourceService.GetBitmap("Boo.ProjectIcon");
}
@ -42,16 +42,16 @@ namespace Debugger @@ -42,16 +42,16 @@ namespace Debugger
bool InjectInterpreter()
{
if (!DebuggerService.IsDebuggerLoaded) {
PrintLine("Error: 'Debugger is not loaded'");
PrintLine("${res:ICSharpCode.BooInterpreter.Debuggee.ErrorDebuggerNotLoaded}");
return false;
}
WindowsDebugger winDebugger = DebuggerService.CurrentDebugger as WindowsDebugger;
if (winDebugger == null) {
PrintLine("Error: 'Incompatible debugger'");
PrintLine("${res:ICSharpCode.BooInterpreter.Debuggee.ErrorIncompatibleDebugger}");
return false;
}
if (winDebugger.DebuggedProcess == null) {
PrintLine("Error: 'No program is debugged'");
PrintLine("${res:ICSharpCode.BooInterpreter.Debuggee.ErrorNoProgramDebugged}");
return false;
}
process = winDebugger.DebuggedProcess;

2
src/Main/Base/Project/Src/Commands/MenuItemBuilders.cs

@ -119,7 +119,7 @@ namespace ICSharpCode.SharpDevelop.Commands @@ -119,7 +119,7 @@ namespace ICSharpCode.SharpDevelop.Commands
items[i++] = new ToolStripSeparator();
// additional item 2
cmd = new MenuCommand("Clear Navigation History", new EventHandler(ClearHistory));
cmd = new MenuCommand("${res:XML.MainMenu.Navigation.ClearHistory}", new EventHandler(ClearHistory));
items[i++] = cmd;
return items;

2
src/Main/Base/Project/Src/Gui/Components/StringListEditor.cs

@ -283,7 +283,7 @@ namespace ICSharpCode.SharpDevelop.Gui @@ -283,7 +283,7 @@ namespace ICSharpCode.SharpDevelop.Gui
void BrowseButtonClick(object sender, EventArgs e)
{
FolderDialog fdiag = new FolderDialog();
if (fdiag.DisplayDialog("Select folder") == DialogResult.OK) {
if (fdiag.DisplayDialog("${res:Dialog.ProjectOptions.SelectFolderTitle}") == DialogResult.OK) {
string path = fdiag.Path;
if (!path.EndsWith("\\") && !path.EndsWith("/"))
path += "\\";

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

Binary file not shown.
Loading…
Cancel
Save