~bratsche/ubuntu/maverick/monodevelop/disable-appmenu

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.GuiBuilder/ToolboxProvider.cs

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2009-03-17 17:55:55 UTC
  • mfrom: (1.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20090317175555-2w5qbmu0l5maq6fq
Tags: 1.9.3+dfsg-1ubuntu1
* FFe for Monodevelop 2 granted by motu-release team :)
* Merge from Debian Unstable , remaining Ubuntu changes:
  + debian/control:
    - Update for Gnome# 2.24

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
using System;
 
3
using System.ComponentModel;
3
4
using System.Collections;
4
 
using System.ComponentModel;
5
5
using System.Collections.Generic;
 
6
 
6
7
using MonoDevelop.DesignerSupport.Toolbox;
7
8
using MonoDevelop.Projects;
8
9
using MonoDevelop.Core.Serialization;
139
140
                }
140
141
                
141
142
                [ReadOnly (true)]
142
 
                [DisplayName ("Reference Type")]
143
 
                [DescriptionAttribute ("The type of the project or assembly from which this component originates.")]
 
143
                [LocalizedCategory ("Misc")]
 
144
                [LocalizedDisplayName ("Reference Type")]
 
145
                [LocalizedDescription ("The type of the project or assembly from which this component originates.")]
144
146
                public ReferenceType ReferenceType {
145
147
                        get {
146
148
                                return refType;
151
153
                }
152
154
                
153
155
                [ReadOnly (true)]
154
 
                [DisplayName ("Reference Path")]
155
 
                [DescriptionAttribute ("The project or assembly from which this component originates.")]
 
156
                [LocalizedCategory ("Misc")]
 
157
                [LocalizedDisplayName ("Reference Path")]
 
158
                [LocalizedDescription ("The project or assembly from which this component originates.")]
156
159
                public string Reference {
157
160
                        get {
158
161
                                return reference;
162
165
                        }
163
166
                }
164
167
                
165
 
                [DisplayName ("Class Name")]
166
 
                [DescriptionAttribute ("The name of the component class.")]
 
168
                [LocalizedCategory ("Misc")]
 
169
                [LocalizedDisplayName ("Class Name")]
 
170
                [LocalizedDescription ("The name of the component class.")]
167
171
                public string ClassName {
168
172
                        get {
169
173
                                return className;
170
174
                        }
171
175
                }
172
176
                
173
 
                [DisplayName ("GTK# Version")]
174
 
                [DescriptionAttribute ("The minimum GTK# version required to use this component.")]
 
177
                [LocalizedCategory ("Misc")]
 
178
                [LocalizedDisplayName ("GTK# Version")]
 
179
                [LocalizedDescription ("The minimum GTK# version required to use this component.")]
175
180
                public string GtkVersion {
176
181
                        get {
177
182
                                return gtkVersion;