Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9aa048672fde13cb1c3eea181f6db7665ead6a70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?><!--
    Copyright (c) 2009 Tasktop Technologies and others.
    All rights reserved. This program and the accompanying materials
    are made available under the terms of the Eclipse Public License v1.0
    which accompanies this distribution, and is available at
    http://www.eclipse.org/legal/epl-v10.html
   
    Contributors:
         Tasktop Technologies - initial API and implementation
 -->

<plugin>
      
   <extension
         id="org.eclipse.mylyn.bugzilla.repository" 
         name="%bugzilla.repository.name"
         point="org.eclipse.mylyn.tasks.ui.repositories">

      <connectorCore
            id="bugzilla"
            class="org.eclipse.mylyn.internal.bugzilla.core.BugzillaRepositoryConnector"
            name="%BugzillaRepositoryConnector.name"/> 
            
      <connectorUi
            brandingIcon="icons/eview16/bugzilla-logo.gif"
            class="org.eclipse.mylyn.internal.bugzilla.ui.tasklist.BugzillaConnectorUi"
            name="%tasklist.BugzillaConnectorUi.name"
            overlayIcon="icons/eview16/overlay-bugzilla.gif"/>
              
	  <taskListMigrator 
            class="org.eclipse.mylyn.internal.bugzilla.ui.tasklist.BugzillaTaskListMigrator"/>
   </extension> 
    <extension 
         point="org.eclipse.mylyn.bugzilla.core.languages"> 
      <!-- <language 
            name="en"> 
            <languageAttribute command="error_login" 				response="Login"/> 
            <languageAttribute command="error_login" 				response="log in"/> 
            <languageAttribute command="error_login" 				response="check e-mail"/> 
            <languageAttribute command="error_login" 				response="Invalid Username Or Password"/> 
            <languageAttribute command="error_collision" 			response="Mid-air collision!"/> 
            <languageAttribute command="error_comment_required" 	response="Comment Required"/> 
            <languageAttribute command="error_logged_out" 			response="logged out"/> 
            <languageAttribute command="bad_login" 					response="Login"/> 
            <languageAttribute command="bad_login" 					response="log in"/> 
            <languageAttribute command="bad_login" 					response="check e-mail"/> 
            <languageAttribute command="bad_login" 					response="Invalid Username Or Password"/> 
            <languageAttribute command="bad_login" 					response="error"/> 
            <languageAttribute command="processed" 					response="processed"/> 
            <languageAttribute command="changes_submitted" 			response="Changes submitted"/> 
            <languageAttribute command="changes_submitted" 			response="added to Bug"/>
      </language> 
      -->
      <language 
            name="de"> 
            <languageAttribute command="error_login" 				response="Anmeldename erforderlich"/> 
            <languageAttribute command="error_login" 				response="check e-mail"/> 
            <languageAttribute command="error_login" 				response="Ungültiger Benutzername oder ungültiges Passwort"/> 
            <languageAttribute command="error_collision" 			response="Kollision!"/> 
            <languageAttribute command="error_comment_required" 	response="Kommentar erforderlich"/> 
            <languageAttribute command="error_logged_out" 			response="Abgemeldet"/> 
            <languageAttribute command="bad_login" 					response="Anmeldename erforderlich"/> 
            <languageAttribute command="bad_login" 					response="check e-mail"/> 
            <languageAttribute command="bad_login" 					response="Ungültiger Benutzername oder ungültiges Passwort"/> 
            <languageAttribute command="bad_login" 					response="error"/> 
            <languageAttribute command="processed" 					response="processed"/> 
            <languageAttribute command="changes_submitted" 			response="Changes submitted"/> 
            <languageAttribute command="changes_submitted" 			response="added to Bug"/>
            <languageAttribute command="bug" 						response="Bug"/>
            <languageAttribute command="bug" 						response="Issue"/>
			<languageAttribute command="submitted" 					response="Submitted"/>
			<languageAttribute command="submitted" 					response="posted"/>
	     	<languageAttribute command="suspicious_action"			response="Suspicious action"/> 
       </language> 
   </extension>    
  
     <extension
         point="org.eclipse.mylyn.tasks.ui.editors">
      <pageFactory
            class="org.eclipse.mylyn.internal.bugzilla.ui.editor.BugzillaTaskEditorPageFactory"
            id="org.eclipse.mylyn.bugzilla.ui.pageFactory">
      </pageFactory>            
   </extension>
  
   <extension point = "org.eclipse.ui.popupMenus">
      <objectContribution
            adaptable="false"
            id="org.eclipse.mylyn.bugzilla.ui.contribution.attachment"
            objectClass="org.eclipse.mylyn.tasks.core.ITaskAttachment">
         <action
               class="org.eclipse.mylyn.internal.bugzilla.ui.action.BugzillaNotObsoleteAttachmentAction"
               enablesFor="*"
               id="org.eclipse.mylyn.bugzilla.ui.contribution.attachment.notobsolete"
               label="Mark not obsolete"
               menubarPath="org.eclipse.mylyn.bugzilla.ui.attachments.mark/markadditions"
               tooltip="Mark attachment as not obsolete">
         </action>
          <action
               class="org.eclipse.mylyn.internal.bugzilla.ui.action.BugzillaObsoleteAttachmentAction"
               enablesFor="*"
               id="org.eclipse.mylyn.bugzilla.ui.contribution.attachment.obsolete"
               label="Mark obsolete"
               menubarPath="org.eclipse.mylyn.bugzilla.ui.attachments.mark/markadditions"
               tooltip="Mark attachment as obsolete">
         </action>
          <menu
                id="org.eclipse.mylyn.bugzilla.ui.attachments.mark"
                label="Mark as"
                path="markadditions">
          </menu>
      </objectContribution>
   </extension>

   
</plugin>

Back to the top