diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-01-06 01:04:14 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-01-06 01:04:14 +0100 |
commit | af4f477a1b23775f94c347b668e8d1a095818cd6 (patch) | |
tree | 9e10c36a052e138e2717b56f49283ca0fe65dc1d | |
parent | e0eeea800cb51217e4511c3bcfcba6406d89f314 (diff) | |
download | forums-af4f477a1b23775f94c347b668e8d1a095818cd6.tar forums-af4f477a1b23775f94c347b668e8d1a095818cd6.tar.gz forums-af4f477a1b23775f94c347b668e8d1a095818cd6.tar.bz2 forums-af4f477a1b23775f94c347b668e8d1a095818cd6.tar.xz forums-af4f477a1b23775f94c347b668e8d1a095818cd6.zip |
[ticket/14961] Also translate "learn more" link
PHPBB3-14961
-rw-r--r-- | phpBB/language/en/common.php | 1 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/overall_footer.html | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index 852c997911..a04a06331b 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -178,6 +178,7 @@ $lang = array_merge($lang, array( 'CONTACT' => 'Contact', 'CONTACT_USER' => 'Contact %s', 'CONTACT_US' => 'Contact us', + 'COOKIE_CONSENT_INFO' => 'Learn more', 'COOKIE_CONSENT_MSG' => 'This website uses cookies to ensure you get the best experience on our website.', 'COOKIE_CONSENT_OK' => 'Got it!', 'COOKIES_DELETED' => 'All board cookies successfully deleted.', diff --git a/phpBB/styles/prosilver/template/overall_footer.html b/phpBB/styles/prosilver/template/overall_footer.html index e650d17752..413c93f79a 100644 --- a/phpBB/styles/prosilver/template/overall_footer.html +++ b/phpBB/styles/prosilver/template/overall_footer.html @@ -75,7 +75,8 @@ "theme": "classic", "content": { "message": "{LA_COOKIE_CONSENT_MSG}", - "dismiss": "{LA_COOKIE_CONSENT_OK}" + "dismiss": "{LA_COOKIE_CONSENT_OK}", + "link": "{LA_COOKIE_CONSENT_INFO}" } })}); </script> |