Fixed i18n domain in GenericSetup profiles to be `plone
`. Other values aren't supported for GS profiles.
svn path=/plone.app.discussion/trunk/; revision=33492
This commit is contained in:
parent
c27d1b5cc1
commit
29a81f0717
@ -4,6 +4,7 @@ Changelog
|
|||||||
1.0b3 (XXXX-XX-XX)
|
1.0b3 (XXXX-XX-XX)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
* Fixed i18n domain in GenericSetup profiles to be ``plone``. Other values aren't supported for GS profiles. [hannosch]
|
||||||
* Provide our own copy of the default one state workflow. Not all Plone sites have this workflow installed. [hannosch]
|
* Provide our own copy of the default one state workflow. Not all Plone sites have this workflow installed. [hannosch]
|
||||||
* Register the event subscribers for the correct interfaces in Plone 3. [hannosch]
|
* Register the event subscribers for the correct interfaces in Plone 3. [hannosch]
|
||||||
* Factored out subscriber declarations into its own ZCML file. [hannosch]
|
* Factored out subscriber declarations into its own ZCML file. [hannosch]
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<object name="portal_actions" xmlns:i18n="http://xml.zope.org/namespaces/i18n">
|
<object name="portal_actions" xmlns:i18n="http://xml.zope.org/namespaces/i18n">
|
||||||
<object name="site_actions">
|
<object name="site_actions">
|
||||||
<object name="review-comments" meta_type="CMF Action" i18n:domain="plone.app.discussion">
|
<object name="review-comments" meta_type="CMF Action" i18n:domain="plone">
|
||||||
<property name="title" i18n:translate="">Moderate comments</property>
|
<property name="title" i18n:translate="">Moderate comments</property>
|
||||||
<property name="description" i18n:translate=""></property>
|
<property name="description" i18n:translate=""></property>
|
||||||
<property name="url_expr">string:$portal_url/@@moderate-comments</property>
|
<property name="url_expr">string:$portal_url/@@moderate-comments</property>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<object
|
<object
|
||||||
name="portal_controlpanel"
|
name="portal_controlpanel"
|
||||||
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
|
||||||
i18n:domain="plone.app.discussion"
|
i18n:domain="plone"
|
||||||
purge="False">
|
purge="False">
|
||||||
|
|
||||||
<configlet
|
<configlet
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<atcttool xmlns:i18n="http://xml.zope.org/namespaces/i18n">
|
<atcttool xmlns:i18n="http://xml.zope.org/namespaces/i18n">
|
||||||
<topic_indexes i18n:domain="plone.app.discussion">
|
<topic_indexes i18n:domain="plone">
|
||||||
|
|
||||||
<index name="commentators" friendlyName="Commentators"
|
<index name="commentators" friendlyName="Commentators"
|
||||||
description="Users who have commented on the item"
|
description="Users who have commented on the item"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<object name="Discussion Item" meta_type="Factory-based Type Information"
|
<object name="Discussion Item" meta_type="Factory-based Type Information"
|
||||||
i18n:domain="plone.app.discussion" xmlns:i18n="http://xml.zope.org/namespaces/i18n">
|
i18n:domain="plone" xmlns:i18n="http://xml.zope.org/namespaces/i18n">
|
||||||
<property name="title" i18n:translate="">Comment</property>
|
<property name="title" i18n:translate="">Comment</property>
|
||||||
<property name="description" i18n:translate="">Comments added to a content item.</property>
|
<property name="description" i18n:translate="">Comments added to a content item.</property>
|
||||||
<property name="content_icon">discussionitem_icon.gif</property>
|
<property name="content_icon">discussionitem_icon.gif</property>
|
||||||
|
Loading…
Reference in New Issue
Block a user