forked from halfbaked/grails-localizations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
39 lines (36 loc) · 1.79 KB
/
Copy pathplugin.xml
File metadata and controls
39 lines (36 loc) · 1.79 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
27
28
29
30
31
32
33
34
35
36
37
38
39
<plugin name='localizations' version='1.4.4.7' grailsVersion='2.0 > *'>
<author>Paul Fernley</author>
<authorEmail>paul@pfernley.orangehome.co.uk</authorEmail>
<title>Localizations (messages) plugin</title>
<description>This plugin will pull i18n definitions from the database rather than from the standard properties files in the i18n folder.
It will do the following:
* Create a domain class and corresponding table called Localization
* Prepopulate the table with all the message properties it finds in the i18n folder
* Ensure Grails writes i18n messages based on what it finds in the database rather than the 118n folder
In addtion the plugin also has these added features to help you:
* A CRUD UI to add, delete, and update i18n messages
* A cache for increased speed
* A JSONP action which can be useful in client-side templating.
Asumptions:
* Your database supports unicode
* Your application has a layout called main
</description>
<documentation>https://github.com/halfbaked/grails-localizations</documentation>
<type>LocalizationsGrailsPlugin</type>
<resources>
<resource>LocalizationsBootStrap</resource>
<resource>org.grails.plugins.localization.LocalizationController</resource>
<resource>org.grails.plugins.localization.Localization</resource>
<resource>org.grails.plugins.localization.LocalizationService</resource>
<resource>org.grails.plugins.localization.LocalizationTagLib</resource>
</resources>
<repositories>
<repository name='grailsCentral' url='http://grails.org/plugins' />
<repository name='http://repo.grails.org/grails/core' url='http://repo.grails.org/grails/core/' />
<repository name='mavenCentral' url='http://repo1.maven.org/maven2/' />
</repositories>
<dependencies />
<plugins />
<runtimePluginRequirements />
<behavior />
</plugin>