ZH CN translation of several addons THX 朱陈锬

This commit is contained in:
Tobias Diekershoff 2018-08-17 11:32:24 +02:00
parent f489ee7911
commit b7717db8ea
14 changed files with 380 additions and 39 deletions

View file

@ -0,0 +1,62 @@
# ADDON nsfw
# Copyright (C)
# This file is distributed under the same license as the Friendica nsfw addon package.
#
#
# Translators:
# 朱陈锬 <tangenters@outlook.com>, 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-08-14 08:40+0000\n"
"Last-Translator: 朱陈锬 <tangenters@outlook.com>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/Friendica/friendica/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: nsfw.php:77 nsfw.php:81
msgid "Content Filter (NSFW and more)"
msgstr "内容过滤 ( NSFW 及其他更多)"
#: nsfw.php:85
msgid ""
"This addon searches for specified words/text in posts and collapses them. It"
" can be used to filter content tagged with for instance #NSFW that may be "
"deemed inappropriate at certain times or places, such as being at work. It "
"is also useful for hiding irrelevant or annoying content from direct view."
msgstr ""
#: nsfw.php:86
msgid "Enable Content filter"
msgstr "启用内容过滤"
#: nsfw.php:89
msgid "Comma separated list of keywords to hide"
msgstr "以逗号分隔需隐藏关键字列表"
#: nsfw.php:93
msgid "Save Settings"
msgstr "保存设置"
#: nsfw.php:94
msgid "Use /expression/ to provide regular expressions"
msgstr "使用 /expression/ 以提供正则表达式"
#: nsfw.php:109
msgid "NSFW Settings saved."
msgstr "NSFW 设置已保存"
#: nsfw.php:162
#, php-format
msgid "Filtered tag: %s"
msgstr "已过滤标签:%s"
#: nsfw.php:164
#, php-format
msgid "Filtered word: %s"
msgstr "已过滤字词:%s"

View file

@ -1,10 +1,17 @@
<?php
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "工作不安全(通用内容过滤)设置";
$a->strings["This addon looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "这个插件找您下面输入的词在所有的文章里,和把包括那些词的内容隐藏,省得不妥当的时候表示,比如性的影射在办公室里。是礼貌和建议的把什么包括裸体的内容跟#NSFW标签。这个过滤也会符合设么别的您输入的词从而能当通用内容过滤有用的。";
$a->strings["Enable Content filter"] = "使内容过滤可用";
$a->strings["Comma separated list of keywords to hide"] = "逗号分隔单词要隐藏";
$a->strings["Submit"] = "提交";
$a->strings["Use /expression/ to provide regular expressions"] = "用/<i>表达式</i>/为输入正则表达式";
$a->strings["NSFW Settings saved."] = "NSFW设置保持了。";
$a->strings["%s - Click to open/close"] = "%s - 点击为打开/关闭";
<?php
if(! function_exists("string_plural_select_zh_cn")) {
function string_plural_select_zh_cn($n){
$n = intval($n);
return 0;;
}}
;
$a->strings["Content Filter (NSFW and more)"] = "内容过滤 ( NSFW 及其他更多)";
$a->strings["This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view."] = "";
$a->strings["Enable Content filter"] = "启用内容过滤";
$a->strings["Comma separated list of keywords to hide"] = "以逗号分隔需隐藏关键字列表";
$a->strings["Save Settings"] = "保存设置";
$a->strings["Use /expression/ to provide regular expressions"] = "使用 /expression/ 以提供正则表达式";
$a->strings["NSFW Settings saved."] = "NSFW 设置已保存";
$a->strings["Filtered tag: %s"] = "已过滤标签:%s";
$a->strings["Filtered word: %s"] = "已过滤字词:%s";