cookienotice addon EN GB translation THX Andy H3

This commit is contained in:
Tobias Diekershoff 2019-03-11 18:08:10 +01:00
parent 9b77fcf80b
commit b1efac7321
2 changed files with 97 additions and 0 deletions

View File

@ -0,0 +1,78 @@
# ADDON cookienotice
# Copyright (C)
# This file is distributed under the same license as the Friendica cookienotice addon package.
#
#
# Translators:
# Andy H3 <andy@hubup.pro>, 2019
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-30 10:48+0100\n"
"PO-Revision-Date: 2019-01-23 16:01+0000\n"
"Last-Translator: Andy H3 <andy@hubup.pro>, 2019\n"
"Language-Team: English (United Kingdom) (https://www.transifex.com/Friendica/teams/12172/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: cookienotice.php:63
msgid ""
"This website uses cookies. If you continue browsing this website, you agree "
"to the usage of cookies."
msgstr ""
"This website uses cookies. If you continue browsing this website, you agree "
"to the usage of cookies."
#: cookienotice.php:64 cookienotice.php:133
msgid "OK"
msgstr "OK"
#: cookienotice.php:68
msgid "\"cookienotice\" Settings"
msgstr "\"cookienotice\" settings"
#: cookienotice.php:69
msgid ""
"<b>Configure your cookie usage notice.</b> It should just be a notice, "
"saying that the website uses cookies. It is shown as long as a user didnt "
"confirm clicking the OK button."
msgstr ""
"<b>Configure your cookie usage notice.</b> It should just be a notice, "
"saying that the website uses cookies. It is shown as long as a user didnt "
"confirm clicking the OK button."
#: cookienotice.php:70
msgid "Cookie Usage Notice"
msgstr "Cookie Usage Notice"
#: cookienotice.php:70
msgid "The cookie usage notice"
msgstr "The cookie usage notice"
#: cookienotice.php:71
msgid "OK Button Text"
msgstr ""
#: cookienotice.php:71
msgid "The OK Button text"
msgstr ""
#: cookienotice.php:72
msgid "Save Settings"
msgstr ""
#: cookienotice.php:97
msgid "cookienotice Settings saved."
msgstr ""
#: cookienotice.php:132
msgid ""
"This website uses cookies to recognize revisiting and logged in users. You "
"accept the usage of these cookies by continue browsing this website."
msgstr ""

View File

@ -0,0 +1,19 @@
<?php
if(! function_exists("string_plural_select_en_gb")) {
function string_plural_select_en_gb($n){
$n = intval($n);
return ($n != 1);;
}}
;
$a->strings["This website uses cookies. If you continue browsing this website, you agree to the usage of cookies."] = "This website uses cookies. If you continue browsing this website, you agree to the usage of cookies.";
$a->strings["OK"] = "OK";
$a->strings["\"cookienotice\" Settings"] = "\"cookienotice\" settings";
$a->strings["<b>Configure your cookie usage notice.</b> It should just be a notice, saying that the website uses cookies. It is shown as long as a user didnt confirm clicking the OK button."] = "<b>Configure your cookie usage notice.</b> It should just be a notice, saying that the website uses cookies. It is shown as long as a user didnt confirm clicking the OK button.";
$a->strings["Cookie Usage Notice"] = "Cookie Usage Notice";
$a->strings["The cookie usage notice"] = "The cookie usage notice";
$a->strings["OK Button Text"] = "";
$a->strings["The OK Button text"] = "";
$a->strings["Save Settings"] = "";
$a->strings["cookienotice Settings saved."] = "";
$a->strings["This website uses cookies to recognize revisiting and logged in users. You accept the usage of these cookies by continue browsing this website."] = "";