mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-06-07 18:04:26 +02:00
EN-GB and EN-US localisation updates to blackout, blockem, langfilter, showmore and xmpp addons
This commit is contained in:
parent
0a8a1fadd5
commit
12d3992da9
10 changed files with 317 additions and 17 deletions
80
langfilter/lang/en-us/messages.po
Normal file
80
langfilter/lang/en-us/messages.po
Normal file
|
@ -0,0 +1,80 @@
|
|||
# ADDON langfilter
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica langfilter addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Adam Clark <adam@isurf.ca>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-04-01 11:11-0400\n"
|
||||
"PO-Revision-Date: 2018-04-09 21:21+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"
|
||||
|
||||
#: langfilter.php:58
|
||||
msgid "Language Filter"
|
||||
msgstr "Language Filter"
|
||||
|
||||
#: langfilter.php:59
|
||||
msgid ""
|
||||
"This addon tries to identify the language posts are writen in. If it does "
|
||||
"not match any language specifed below, posts will be hidden by collapsing "
|
||||
"them."
|
||||
msgstr "This addon tries to identify the language posts are written in. If it does not match any language specifed below, posts will be hidden by collapsing them."
|
||||
|
||||
#: langfilter.php:60
|
||||
msgid "Use the language filter"
|
||||
msgstr "Use the language filter"
|
||||
|
||||
#: langfilter.php:61
|
||||
msgid "Able to read"
|
||||
msgstr "Able to read"
|
||||
|
||||
#: langfilter.php:61
|
||||
msgid ""
|
||||
"List of abbreviations (iso2 codes) for languages you speak, comma separated."
|
||||
" For example \"de,it\"."
|
||||
msgstr "List of abbreviations (iso2 codes) for languages you speak, comma separated. For example \"de,it\"."
|
||||
|
||||
#: langfilter.php:62
|
||||
msgid "Minimum confidence in language detection"
|
||||
msgstr "Minimum confidence in language detection"
|
||||
|
||||
#: langfilter.php:62
|
||||
msgid ""
|
||||
"Minimum confidence in language detection being correct, from 0 to 100. Posts"
|
||||
" will not be filtered when the confidence of language detection is below "
|
||||
"this percent value."
|
||||
msgstr "Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value."
|
||||
|
||||
#: langfilter.php:63
|
||||
msgid "Minimum length of message body"
|
||||
msgstr "Minimum length of message body"
|
||||
|
||||
#: langfilter.php:63
|
||||
msgid ""
|
||||
"Minimum number of characters in message body for filter to be used. Posts "
|
||||
"shorter than this will not be filtered. Note: Language detection is "
|
||||
"unreliable for short content (<200 characters)."
|
||||
msgstr "Minimum number of characters in message body for filter to be used. Posts shorter than this will not be filtered. Note: Language detection is unreliable for short content (<200 characters)."
|
||||
|
||||
#: langfilter.php:64
|
||||
msgid "Save Settings"
|
||||
msgstr "Save Settings"
|
||||
|
||||
#: langfilter.php:105
|
||||
msgid "Language Filter Settings saved."
|
||||
msgstr "Language Filter Settings saved."
|
||||
|
||||
#: langfilter.php:182
|
||||
#, php-format
|
||||
msgid "Filtered language: %s"
|
||||
msgstr "Filtered language: %s"
|
19
langfilter/lang/en-us/strings.php
Normal file
19
langfilter/lang/en-us/strings.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_en_us")) {
|
||||
function string_plural_select_en_us($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Language Filter"] = "Language Filter";
|
||||
$a->strings["This addon tries to identify the language posts are writen in. If it does not match any language specifed below, posts will be hidden by collapsing them."] = "This addon tries to identify the language posts are written in. If it does not match any language specifed below, posts will be hidden by collapsing them.";
|
||||
$a->strings["Use the language filter"] = "Use the language filter";
|
||||
$a->strings["Able to read"] = "Able to read";
|
||||
$a->strings["List of abbreviations (iso2 codes) for languages you speak, comma separated. For example \"de,it\"."] = "List of abbreviations (iso2 codes) for languages you speak, comma separated. For example \"de,it\".";
|
||||
$a->strings["Minimum confidence in language detection"] = "Minimum confidence in language detection";
|
||||
$a->strings["Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value."] = "Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value.";
|
||||
$a->strings["Minimum length of message body"] = "Minimum length of message body";
|
||||
$a->strings["Minimum number of characters in message body for filter to be used. Posts shorter than this will not be filtered. Note: Language detection is unreliable for short content (<200 characters)."] = "Minimum number of characters in message body for filter to be used. Posts shorter than this will not be filtered. Note: Language detection is unreliable for short content (<200 characters).";
|
||||
$a->strings["Save Settings"] = "Save Settings";
|
||||
$a->strings["Language Filter Settings saved."] = "Language Filter Settings saved.";
|
||||
$a->strings["Filtered language: %s"] = "Filtered language: %s";
|
Loading…
Add table
Add a link
Reference in a new issue