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 + ' January';
		case 1:  return d + ' February';
		case 2:  return d + ' March';
		case 3:  return d + ' April';
		case 4:  return d + ' May';
		case 5:  return d + ' June';
		case 6:  return d + ' July';
		case 7:  return d + ' August';
		case 8:  return d + ' September';
		case 9:  return d + ' October';
		case 10: return d + ' November';
		default: return d + ' December';
	}
}

var D_MSG_AdminActionHide = 'Hide';
var D_MSG_AdminActionBlock = 'Block';
var D_MSG_AdminActionApprove = 'Approve';
var D_MSG_Reply = 'Reply';
var D_MSG_PleaseSignIn = 'Please sign in';
var D_MSG_CommentWillAppearAsBlocked = 'Comment will appear as \'blocked\'';
var D_MSG_Edit = 'Edit';
var D_MSG_ThisCommentHasBeenBlocked = 'This comment has been blocked';
var D_MSG_lastEdit = 'last edit:';
var D_MSG_loading = 'loading...';
var D_MSG_NumberOfCommentsPerPage = 'Number of comments per page:';
var D_MSG_TimeFormat = 'Time format:';
var D_MSG_relative = 'relative';
var D_MSG_absolute = 'absolute';
var D_MSG_close = 'close';
var D_MSG_about = 'about';
var D_MSG_show = 'show';
var D_MSG_hide = 'hide';
var D_MSG_Options = 'Options';
var D_MSG_PostComment = 'Post comment';
var D_MSG_ShowAllComments = 'Show all comments';
var D_MSG_RecentComments = 'Recent comments';
var D_MSG_Previous = 'Previous';
var D_MSG_Next = 'Next';
var D_MSG_currentTime = 'current time';
var D_MSG_Submit = 'Submit';
var D_MSG_Preview = 'Preview';
var D_MSG_Quote = 'Quote';
var D_MSG_Cancel = 'Cancel';
var D_MSG_PleaseEnterYourName = 'Please enter your name';
var D_MSG_Name = 'Name:';
var D_MSG_CharactersLeft = 'Characters left:';


