Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2010-07-25 11:50:43 +0400
committerMichael Hutchinson <mhutchinson@novell.com>2010-07-25 20:53:49 +0400
commitf8031425f9aeec07c64a84713b8da384094ecd00 (patch)
tree0de3e962982acd7ffe927f8662d51e9fd0749e31 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml
parent96278ba42b5e304a0749430cc9810f02abfc8141 (diff)
Rename Preferences to Options in Windows.
Rename Preferences to Options on Windows for consistency with other apps. Also, ellipsize the commands, as they open dialogs.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml24
1 files changed, 17 insertions, 7 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml
index 62f8cdb025..1003a19568 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.addin.xml
@@ -763,15 +763,25 @@
<Command id = "MonoDevelop.Ide.Commands.EditCommands.WordCount"
_label = "_Word Count..."
description = "Count words in a text file"/>
- <Command id = "MonoDevelop.Ide.Commands.EditCommands.MonodevelopPreferences"
- defaultHandler = "MonoDevelop.Ide.Commands.MonodevelopPreferencesHandler"
- _label = "Pr_eferences"
- icon = "gtk-preferences"
- macShortcut = "Meta|,"
- _description = "Show MonoDevelop preferences window" />
+ <Condition id="Platform" value="windows">
+ <Command id = "MonoDevelop.Ide.Commands.EditCommands.MonodevelopPreferences"
+ defaultHandler = "MonoDevelop.Ide.Commands.MonodevelopPreferencesHandler"
+ _label = "_Options..."
+ icon = "gtk-preferences"
+ macShortcut = "Meta|,"
+ _description = "Show MonoDevelop options window" />
+ </Condition>
+ <Condition id="Platform" value="!windows">
+ <Command id = "MonoDevelop.Ide.Commands.EditCommands.MonodevelopPreferences"
+ defaultHandler = "MonoDevelop.Ide.Commands.MonodevelopPreferencesHandler"
+ _label = "Pr_eferences..."
+ icon = "gtk-preferences"
+ macShortcut = "Meta|,"
+ _description = "Show MonoDevelop preferences window" />
+ </Condition>
<Command id = "MonoDevelop.Ide.Commands.EditCommands.DefaultPolicies"
defaultHandler = "MonoDevelop.Ide.Commands.DefaultPoliciesHandler"
- _label = "Default Po_licies"
+ _label = "Default Po_licies..."
_description = "Edit the default policies that are applied to new projects" />
<Command id = "MonoDevelop.Ide.Commands.EditCommands.InsertStandardHeader"
_label = "_Insert Standard Header"