﻿function D_MSG_Plural(n) { return (n==1) ? '' : 's'; }

function D_MSG_NReplies(n) { return (n==1) ? '1 reply' : (n + ' replies'); }
function D_MSG_NCommens(n) { return (n==1) ? '1 comment' : (n + ' comments'); }
function D_MSG_NHiddenCommens(n) { return (n==1) ? '1 hidden comment' : (n + ' hidden comments'); }

function D_MSG_NTimeAgo(n, i)
{
	switch (i)
	{
		case 0:  return n + ' second' + D_MSG_Plural(n) + ' ago';
		case 1:  return n + ' minute' + D_MSG_Plural(n) + ' ago';
		case 2:  return n + ' hour'   + D_MSG_Plural(n) + ' ago';
		case 3:  return n + ' day'    + D_MSG_Plural(n) + ' ago';
		case 4:  return n + ' week'   + D_MSG_Plural(n) + ' ago';
		case 5:  return n + ' month'  + D_MSG_Plural(n) + ' ago';
		default: return n + ' year'   + D_MSG_Plural(n) + ' ago';
	}
}

function D_MSG_NDate(d, m)
{
	switch (m)
	{
		case 0:  return d + ' 一月';
		case 1:  return d + ' 二月';
		case 2:  return d + ' 三月';
		case 3:  return d + ' 四月';
		case 4:  return d + ' 五月';
		case 5:  return d + ' 六月';
		case 6:  return d + ' 七月';
		case 7:  return d + ' 八月';
		case 8:  return d + ' 九月';
		case 9:  return d + ' 十月';
		case 10: return d + ' 十一月';
		default: return d + ' 十二月';
	}
}

var D_MSG_AdminActionHide = '隐藏';
var D_MSG_AdminActionBlock = '屏蔽';
var D_MSG_AdminActionApprove = '批准';
var D_MSG_Reply = '回复';
var D_MSG_PleaseSignIn = '请登录';
var D_MSG_CommentWillAppearAsBlocked = '评论将显示为 \'blocked\'';
var D_MSG_Edit = '编辑';
var D_MSG_ThisCommentHasBeenBlocked = '评论已经被屏蔽';
var D_MSG_lastEdit = '最后编辑:';
var D_MSG_loading = 'loading...';
var D_MSG_NumberOfCommentsPerPage = '每一页的评论数:';
var D_MSG_TimeFormat = '时间格式:';
var D_MSG_relative = '相对';
var D_MSG_absolute = '绝对';
var D_MSG_close = '关闭';
var D_MSG_about = '关于';
var D_MSG_show = '显示';
var D_MSG_hide = '隐藏';
var D_MSG_Options = '选项';
var D_MSG_PostComment = '发表评论';
var D_MSG_ShowAllComments = '显示所有评论';
var D_MSG_RecentComments = '所有评论';
var D_MSG_Previous = '前';
var D_MSG_Next = '后';
var D_MSG_currentTime = '当前时间';
var D_MSG_Submit = '提交';
var D_MSG_Preview = '预览';
var D_MSG_Quote = '引用';
var D_MSG_Cancel = '取消';
var D_MSG_PleaseEnterYourName = '请输入你的名字';
var D_MSG_Name = '名字:';
var D_MSG_CharactersLeft = '剩余字符:';



