diff options
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/l10n/zh_CN.js | 10 | ||||
-rw-r--r-- | apps/dav/l10n/zh_CN.json | 10 | ||||
-rw-r--r-- | apps/dav/lib/CalDAV/Plugin.php | 2 |
3 files changed, 18 insertions, 4 deletions
diff --git a/apps/dav/l10n/zh_CN.js b/apps/dav/l10n/zh_CN.js index e0ee9015402..2e03a120e60 100644 --- a/apps/dav/l10n/zh_CN.js +++ b/apps/dav/l10n/zh_CN.js @@ -41,9 +41,17 @@ OC.L10N.register( "A calendar <strong>event</strong> was modified" : "日历中<strong>事件</strong>已经修改", "A calendar <strong>todo</strong> was modified" : "列表中<strong>待办事项</strong>已经修改", "Contact birthdays" : "联系人生日", + "Hello %s," : "%s你好,", + "When:" : "时间:", + "Where:" : "地点:", + "Description:" : "描述:", + "Link:" : "链接:", "Contacts" : "联系人", "Technical details" : "技术细节", "Remote Address: %s" : "远程地址: %s", - "Request ID: %s" : "请求 ID: %s" + "Request ID: %s" : "请求 ID: %s", + "CalDAV server" : "日历服务", + "Automatically generate a birthday calendar" : "自动生成生日日历", + "Birthday calendars will be generated by a background job." : "生日日历将由后台作业生成。" }, "nplurals=1; plural=0;"); diff --git a/apps/dav/l10n/zh_CN.json b/apps/dav/l10n/zh_CN.json index 30419409556..60ea656ff51 100644 --- a/apps/dav/l10n/zh_CN.json +++ b/apps/dav/l10n/zh_CN.json @@ -39,9 +39,17 @@ "A calendar <strong>event</strong> was modified" : "日历中<strong>事件</strong>已经修改", "A calendar <strong>todo</strong> was modified" : "列表中<strong>待办事项</strong>已经修改", "Contact birthdays" : "联系人生日", + "Hello %s," : "%s你好,", + "When:" : "时间:", + "Where:" : "地点:", + "Description:" : "描述:", + "Link:" : "链接:", "Contacts" : "联系人", "Technical details" : "技术细节", "Remote Address: %s" : "远程地址: %s", - "Request ID: %s" : "请求 ID: %s" + "Request ID: %s" : "请求 ID: %s", + "CalDAV server" : "日历服务", + "Automatically generate a birthday calendar" : "自动生成生日日历", + "Birthday calendars will be generated by a background job." : "生日日历将由后台作业生成。" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/dav/lib/CalDAV/Plugin.php b/apps/dav/lib/CalDAV/Plugin.php index 167ea4ffd69..0d793f929b3 100644 --- a/apps/dav/lib/CalDAV/Plugin.php +++ b/apps/dav/lib/CalDAV/Plugin.php @@ -36,8 +36,6 @@ class Plugin extends \Sabre\CalDAV\Plugin { list(, $principalId) = \Sabre\Uri\split($principalUrl); return self::CALENDAR_ROOT .'/' . $principalId; } - - return; } } |