CS, EN US localization superblock addon

This commit is contained in:
Tobias Diekershoff 2018-06-18 11:37:59 +02:00
parent 14996bd9b0
commit befc6eeb58
4 changed files with 85 additions and 24 deletions

View file

@ -0,0 +1,44 @@
# ADDON superblock
# Copyright (C)
# This file is distributed under the same license as the Friendica superblock addon package.
#
#
# Translators:
# R C <miqrogroove@gmail.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 08:45+0200\n"
"PO-Revision-Date: 2018-06-13 02:39+0000\n"
"Last-Translator: R C <miqrogroove@gmail.com>\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"
#: superblock.php:53 superblock.php:57
msgid "\"Superblock\""
msgstr ""
#: superblock.php:60
msgid "Comma separated profile URLS to block"
msgstr "Comma-separated profile URLs to block"
#: superblock.php:64
msgid "Save Settings"
msgstr ""
#: superblock.php:76
msgid "SUPERBLOCK Settings saved."
msgstr ""
#: superblock.php:148
msgid "Block Completely"
msgstr ""
#: superblock.php:168
msgid "superblock settings updated"
msgstr ""

View file

@ -0,0 +1,14 @@
<?php
if(! function_exists("string_plural_select_en_us")) {
function string_plural_select_en_us($n){
$n = intval($n);
return ($n != 1);;
}}
;
$a->strings["\"Superblock\""] = "";
$a->strings["Comma separated profile URLS to block"] = "Comma-separated profile URLs to block";
$a->strings["Save Settings"] = "";
$a->strings["SUPERBLOCK Settings saved."] = "";
$a->strings["Block Completely"] = "";
$a->strings["superblock settings updated"] = "";