EN-GB and EN-US localisation updates to blackout, blockem, langfilter, showmore and xmpp addons

This commit is contained in:
Tobias Diekershoff 2018-04-10 07:37:41 +02:00
parent 0a8a1fadd5
commit 12d3992da9
10 changed files with 317 additions and 17 deletions

View file

@ -0,0 +1,52 @@
# ADDON blackout
# Copyright (C)
# This file is distributed under the same license as the Friendica blackout addon package.
#
#
# Translators:
# Adam Clark <adam@isurf.ca>, 2018
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2018-04-09 21:27+0000\n"
"Last-Translator: Adam Clark <adam@isurf.ca>\n"
"Language-Team: English (United States) (http://www.transifex.com/Friendica/friendica/language/en_US/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: en_US\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: blackout.php:99
msgid "Save Settings"
msgstr "Save Settings"
#: blackout.php:100
msgid "Redirect URL"
msgstr "Redirect URL"
#: blackout.php:100
msgid "all your visitors from the web will be redirected to this URL"
msgstr "All your visitors from the web will be redirected to this URL."
#: blackout.php:101
msgid "Begin of the Blackout"
msgstr "Start time of the Blackout"
#: blackout.php:101
msgid ""
"format is <em>YYYY</em> year, <em>MM</em> month, <em>DD</em> day, "
"<em>hh</em> hour and <em>mm</em> minute"
msgstr "Format is <em>YYYY</em> year, <em>MM</em> month, <em>DD</em> day, <em>hh</em> hour and <em>mm</em> minute"
#: blackout.php:102
msgid "End of the Blackout"
msgstr "End time of the Blackout"
#: blackout.php:108
msgid ""
"The end-date is prior to the start-date of the blackout, you should fix "
"this."
msgstr "The end-date is prior to the start-date of the blackout, you should fix this."

View file

@ -0,0 +1,14 @@
<?php
if(! function_exists("string_plural_select_en_us")) {
function string_plural_select_en_us($n){
return ($n != 1);;
}}
;
$a->strings["Save Settings"] = "Save Settings";
$a->strings["Redirect URL"] = "Redirect URL";
$a->strings["all your visitors from the web will be redirected to this URL"] = "All your visitors from the web will be redirected to this URL.";
$a->strings["Begin of the Blackout"] = "Start time of the Blackout";
$a->strings["format is <em>YYYY</em> year, <em>MM</em> month, <em>DD</em> day, <em>hh</em> hour and <em>mm</em> minute"] = "Format is <em>YYYY</em> year, <em>MM</em> month, <em>DD</em> day, <em>hh</em> hour and <em>mm</em> minute";
$a->strings["End of the Blackout"] = "End time of the Blackout";
$a->strings["The end-date is prior to the start-date of the blackout, you should fix this."] = "The end-date is prior to the start-date of the blackout, you should fix this.";