-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
26 lines (22 loc) · 1.07 KB
/
plugin.xml
File metadata and controls
26 lines (22 loc) · 1.07 KB
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
<idea-plugin>
<id>com.github.sundramsinghdev007.stringfilelocalization</id>
<name>Android String File Localization</name>
<vendor>Sundram Singh</vendor>
<resource-bundle>messages.MyBundle</resource-bundle>
<depends>com.intellij.modules.platform</depends>
<depends>org.jetbrains.android</depends>
<extensions defaultExtensionNs="com.intellij">
<notificationGroup id="Translation Notifications"
displayType="BALLOON"
key="notification.group.name"/>
</extensions>
<actions resource-bundle="messages.MyBundle">
<action id="com.github.sundramsinghdev007.TranslateStringsAction"
class="com.github.sundramsinghdev007.stringfilelocalization.action.TranslateStringsAction"
icon="AllIcons.Actions.Refresh">
<add-to-group group-id="ToolsMenu" anchor="last"/>
<add-to-group group-id="ProjectViewPopupMenu" anchor="last"/>
<add-to-group group-id="EditorPopupMenu" anchor="last"/>
</action>
</actions>
</idea-plugin>