Skip to main content
summaryrefslogtreecommitdiffstats
blob: 949236c24633ae25f6fb9590a7c0c928ddb8bc4d (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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
      
   <extension
         id="org.eclipse.mylyn.bugzilla.repository" 
         name="Bugzilla Repository"
         point="org.eclipse.mylyn.tasks.ui.repositories">

      <connectorCore
            class="org.eclipse.mylyn.internal.bugzilla.core.BugzillaRepositoryConnector"
            id="org.eclipse.mylyn.bugzilla.tasklist.repositories"
            name="Bugzilla Repository Connector"
            type="bugzilla"/>
            
      <connectorUi
            brandingIcon="icons/eview16/bugzilla-logo.gif"
            class="org.eclipse.mylyn.internal.bugzilla.ui.tasklist.BugzillaConnectorUi"
            name="Bugzilla Repository Ui"
            overlayIcon="icons/eview16/overlay-bugzilla.gif"/>
              
	  <taskListFactory 
            class="org.eclipse.mylyn.internal.bugzilla.ui.tasklist.BugzillaTaskListFactory"
            id="org.eclipse.mylyn.bugzilla.tasklist.factory"/>
   </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"/> 
      </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"/> 
      </language> 
   </extension>    
  
   <extension
         point="org.eclipse.mylyn.tasks.ui.editors">
      <editorFactory class="org.eclipse.mylyn.internal.bugzilla.ui.tasklist.BugzillaTaskEditorFactory"/>
   </extension>
   
   <extension 
   		point="org.eclipse.ui.perspectiveExtensions">
          <perspectiveExtension targetID="org.eclipse.jdt.ui.JavaPerspective">
               <newWizardShortcut id="org.eclipse.mylyn.bugzilla.bugWizard"/>
          </perspectiveExtension>
	</extension>
   
</plugin>

Back to the top