Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.2] Custom Reply description #3241

Closed
jgerman-bot opened this issue Aug 16, 2024 · 0 comments · Fixed by #3244
Closed

[5.2] Custom Reply description #3241

jgerman-bot opened this issue Aug 16, 2024 · 0 comments · Fixed by #3244

Comments

@jgerman-bot
Copy link

New language relevant PR in upstream repo: joomla/joomla-cms#43870 Here are the upstream changes:

Click to expand the 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 @@
 		<field
 			name="custom_reply"
 			type="radio"
-			layout="joomla.form.field.radio.switcher"
 			label="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_LABEL"
+			description="COM_CONTACT_FIELD_CONFIG_CUSTOM_REPLY_DESC"
+			layout="joomla.form.field.radio.switcher"
 			default="0"
 			showon="show_email_form:1"
 			>
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"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging a pull request may close this issue.

4 participants