joomlagerman / joomla

The J!German translation team provides German translation for Joomla!
https://www.jgerman.de
GNU General Public License v2.0
25 stars 46 forks source link

[5.2] Custom Reply description #3241

Closed jgerman-bot closed 1 month ago

jgerman-bot commented 1 month ago

New language relevant PR in upstream repo: https://github.com/joomla/joomla-cms/pull/43870 Here are the upstream changes:

Click to expand the diff! ```diff diff --git a/administrator/components/com_contact/config.xml b/administrator/components/com_contact/config.xml index 58171c31bfe59..85608932e1eec 100644 --- a/administrator/components/com_contact/config.xml +++ b/administrator/components/com_contact/config.xml @@ -980,8 +980,9 @@ diff --git a/administrator/components/com_contact/forms/contact.xml b/administrator/components/com_contact/forms/contact.xml index 7b8aa7b404f06..6e4754dd826dd 100644 --- a/administrator/components/com_contact/forms/contact.xml +++ b/administrator/components/com_contact/forms/contact.xml @@ -742,6 +742,7 @@ name="custom_reply" type="list" label="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL" + description="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC" useglobal="true" validate="options" > diff --git a/administrator/language/en-GB/com_contact.ini b/administrator/language/en-GB/com_contact.ini index 0233246a96443..daf6f4fea04de 100644 --- a/administrator/language/en-GB/com_contact.ini +++ b/administrator/language/en-GB/com_contact.ini @@ -36,6 +36,7 @@ COM_CONTACT_FIELD_CONFIG_CATEGORIES_DESC="These settings apply for Contact Categ COM_CONTACT_FIELD_CONFIG_CATEGORY_DESC="These settings apply for Contact Category Options unless they are changed for a specific menu item." COM_CONTACT_FIELD_CONFIG_CONTACT_FORM="Form" COM_CONTACT_FIELD_CONFIG_COUNTRY_LABEL="Country" +COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC="Stops Joomla from sending the email, allowing for Plugins to handle integration with other systems." COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL="Custom Reply" COM_CONTACT_FIELD_CONFIG_FAX_LABEL="Fax" COM_CONTACT_FIELD_CONFIG_INDIVIDUAL_CONTACT_DESC="These settings apply for a single Contact unless they are changed for a specific menu item or Contact." diff --git a/components/com_contact/tmpl/categories/default.xml b/components/com_contact/tmpl/categories/default.xml index 1c004137d0d6e..cee70d405d4e9 100644 --- a/components/com_contact/tmpl/categories/default.xml +++ b/components/com_contact/tmpl/categories/default.xml @@ -740,6 +740,7 @@ name="custom_reply" type="list" label="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL" + description="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC" useglobal="true" class="form-select-color-state" validate="options" diff --git a/components/com_contact/tmpl/category/default.xml b/components/com_contact/tmpl/category/default.xml index 51b20453e8105..c80d904e96a95 100644 --- a/components/com_contact/tmpl/category/default.xml +++ b/components/com_contact/tmpl/category/default.xml @@ -757,6 +757,7 @@ name="custom_reply" type="list" label="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL" + description="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC" useglobal="true" class="form-select-color-state" validate="options" diff --git a/components/com_contact/tmpl/contact/default.xml b/components/com_contact/tmpl/contact/default.xml index dd29a57ec63e4..9115a4873c347 100644 --- a/components/com_contact/tmpl/contact/default.xml +++ b/components/com_contact/tmpl/contact/default.xml @@ -444,6 +444,7 @@ name="custom_reply" type="list" label="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL" + description="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC" useglobal="true" class="form-select-color-state" validate="options" diff --git a/components/com_contact/tmpl/featured/default.xml b/components/com_contact/tmpl/featured/default.xml index 574336beb32c2..770fcbf92e63c 100644 --- a/components/com_contact/tmpl/featured/default.xml +++ b/components/com_contact/tmpl/featured/default.xml @@ -530,6 +530,7 @@ name="custom_reply" type="list" label="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL" + description="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC" useglobal="true" class="form-select-color-state" validate="options" ```