ZH CN notimeline addon
parent
2f853c2612
commit
3e8eb868a6
|
@ -0,0 +1,36 @@
|
||||||
|
# ADDON notimeline
|
||||||
|
# Copyright (C)
|
||||||
|
# This file is distributed under the same license as the Friendica notimeline addon package.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# 朱陈锬 <tangenters@outlook.com>, 2018
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: friendica\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||||
|
"PO-Revision-Date: 2018-06-16 09:44+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"
|
||||||
|
|
||||||
|
#: notimeline.php:32
|
||||||
|
msgid "No Timeline settings updated."
|
||||||
|
msgstr "时间轴设置未更新。"
|
||||||
|
|
||||||
|
#: notimeline.php:56
|
||||||
|
msgid "No Timeline Settings"
|
||||||
|
msgstr "无时间轴设置"
|
||||||
|
|
||||||
|
#: notimeline.php:58
|
||||||
|
msgid "Disable Archive selector on profile wall"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: notimeline.php:64
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "提交"
|
|
@ -1,6 +1,12 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$a->strings["No Timeline settings updated."] = "没有时间链设置更新";
|
if(! function_exists("string_plural_select_zh_cn")) {
|
||||||
$a->strings["No Timeline Settings"] = "没有时间链设置";
|
function string_plural_select_zh_cn($n){
|
||||||
$a->strings["Disable Archive selector on profile wall"] = "使在简介墙上档案选择器不能用";
|
$n = intval($n);
|
||||||
$a->strings["Submit"] = "提交";
|
return 0;;
|
||||||
|
}}
|
||||||
|
;
|
||||||
|
$a->strings["No Timeline settings updated."] = "时间轴设置未更新。";
|
||||||
|
$a->strings["No Timeline Settings"] = "无时间轴设置";
|
||||||
|
$a->strings["Disable Archive selector on profile wall"] = "";
|
||||||
|
$a->strings["Submit"] = "提交";
|
||||||
|
|
Loading…
Reference in New Issue