-
-
Notifications
You must be signed in to change notification settings - Fork 46
Closed
Description
New language relevant PR in upstream repo: joomla/joomla-cms#37346 Here are the upstream changes:
Click to expand the diff!
diff --git a/administrator/language/en-GB/en-GB.plg_system_privacyconsent.ini b/administrator/language/en-GB/en-GB.plg_system_privacyconsent.ini
index 12655683458f..2a69c6b9b487 100644
--- a/administrator/language/en-GB/en-GB.plg_system_privacyconsent.ini
+++ b/administrator/language/en-GB/en-GB.plg_system_privacyconsent.ini
@@ -34,6 +34,7 @@ PLG_SYSTEM_PRIVACYCONSENT_NOTE_FIELD_LABEL="Short Privacy Policy"
PLG_SYSTEM_PRIVACYCONSENT_NOTIFICATION_USER_PRIVACY_EXPIRED_SUBJECT="Privacy Consent Expired"
PLG_SYSTEM_PRIVACYCONSENT_NOTIFICATION_USER_PRIVACY_EXPIRED_MESSAGE="Privacy consent has expired for %1$s."
PLG_SYSTEM_PRIVACYCONSENT_OPTION_AGREE="I agree"
+PLG_SYSTEM_PRIVACYCONSENT_OPTION_DO_NOT_AGREE="I do not agree"
PLG_SYSTEM_PRIVACYCONSENT_REDIRECT_MESSAGE_DEFAULT="Please confirm that you consent to this web site storing your information by agreeing to the privacy policy."
PLG_SYSTEM_PRIVACYCONSENT_REDIRECT_MESSAGE_DESC="Custom message to be displayed on redirect. If left blank then the default message will be used."
PLG_SYSTEM_PRIVACYCONSENT_REDIRECT_MESSAGE_LABEL="Redirect Message"
diff --git a/administrator/language/en-GB/en-GB.plg_user_profile.ini b/administrator/language/en-GB/en-GB.plg_user_profile.ini
index 537bca77e5ec..b914d5d6f641 100644
--- a/administrator/language/en-GB/en-GB.plg_user_profile.ini
+++ b/administrator/language/en-GB/en-GB.plg_user_profile.ini
@@ -39,7 +39,8 @@ PLG_USER_PROFILE_FIELD_TOS_LABEL="Terms of Service"
PLG_USER_PROFILE_FIELD_WEB_SITE_DESC="Choose an option for the field website."
PLG_USER_PROFILE_FIELD_WEB_SITE_LABEL="Website"
PLG_USER_PROFILE_FILL_FIELD_DESC_SITE="If required, please fill this field."
-PLG_USER_PROFILE_OPTION_AGREE="Agree"
+PLG_USER_PROFILE_OPTION_AGREE="I agree"
+PLG_USER_PROFILE_OPTION_DO_NOT_AGREE="I do not agree"
PLG_USER_PROFILE_SLIDER_LABEL="User Profile"
; Adapt the following string to the format you entered in the 'DATE_FORMAT_CALENDAR_DATE'
PLG_USER_PROFILE_SPACER_DOB="The date of birth entered should use the format Year-Month-Day, ie 0000-00-00"
diff --git a/plugins/system/privacyconsent/privacyconsent/privacyconsent.xml b/plugins/system/privacyconsent/privacyconsent/privacyconsent.xml
index b1da176e5e12..7945cfbad097 100644
--- a/plugins/system/privacyconsent/privacyconsent/privacyconsent.xml
+++ b/plugins/system/privacyconsent/privacyconsent/privacyconsent.xml
@@ -15,7 +15,7 @@
required="true"
>
<option value="1">PLG_SYSTEM_PRIVACYCONSENT_OPTION_AGREE</option>
- <option value="0">JNO</option>
+ <option value="0">PLG_SYSTEM_PRIVACYCONSENT_OPTION_DO_NOT_AGREE</option>
</field>
</fieldset>
</fields>
diff --git a/plugins/user/profile/profiles/profile.xml b/plugins/user/profile/profiles/profile.xml
index 1551dc61e46a..0a7c3bd3e523 100644
--- a/plugins/user/profile/profiles/profile.xml
+++ b/plugins/user/profile/profiles/profile.xml
@@ -125,7 +125,7 @@
filter="integer"
>
<option value="1">PLG_USER_PROFILE_OPTION_AGREE</option>
- <option value="0">JNO</option>
+ <option value="0">PLG_USER_PROFILE_OPTION_DO_NOT_AGREE</option>
</field>
</fieldset>
</fields>