/*
 * @package AJAX_Chat
 * @author Sebastian Tschan
 * @copyright (c) Sebastian Tschan
 * @license GNU Affero General Public License
 * @link https://blueimp.net/ajax/
 */

// Ajax Chat language Object:
var ajaxChatLang = {
	
	login: 'ยินดีต้อนรับ %s เข้าสู่ห้องแชท',
	logout: '%s ออกจากห้องแชท',
	logoutTimeout: '%s ออกจากห้องแชท (Timeout)',
	logoutIP: '%s ออกจากห้องแชท (Invalid IP address).',
	logoutKicked: '%s ถูก(เตะ)ออกจากห้องแชท',
	channelEnter: '%s เข้าสู่ห้องแชท',
	channelLeave: '%s ออกจากห้องแชท',
	privmsg: '(กระซิบกับ)',
	privmsgto: '(คุยส่วนตัวกับ %s)',
	invite: '%s invites you to join %s.',
	inviteto: 'Your invitation to %s to join channel %s has been sent.',
	uninvite: '%s uninvites you from channel %s.',
	uninviteto: 'Your uninvitation to %s for channel %s has been sent.',	
	queryOpen: 'Private channel opened to %s.',
	queryClose: 'Private channel to %s closed.',
	ignoreAdded: 'เพิ่มชื่อ %s เพื่อไม่สนใจข้อความ',
	ignoreRemoved: 'ลบชื่อ %s เพื่อสนใจข้อความ',
	ignoreList: 'ชื่อที่เราไม่สนใจข้อความ:',
	ignoreListEmpty: 'ไม่มีชื่อสมาชิก ที่เราไม่สนใจข้อความ',
	who: 'สมาชิกที่อยู่ในห้องแชท:',
	whoChannel: 'สมาชิกที่อยู่ในห้องแชทนี้ %s:',
	whoEmpty: 'No online users in the given channel.',
	list: 'รายชื่อห้องแชท:',
	bans: 'สมาชิกที่ถูกแบน:',
	bansEmpty: 'ไม่มีสมาชิกที่ถูกแบน',
	unban: 'ถอน %s ออกจากการแบน',
	whois: 'สมาชิก %s - IP address:',
	whereis: 'สมาชิก %s แชทอยู่ในห้อง %s.',
	roll: '%s rolls %s and gets %s.',
	nick: '%s ได้เปลี่ยนชื่อเป็น %s.',
	toggleUserMenu: 'เปิด/ปิด เมนูให้สมาชิก %s',
	userMenuLogout: 'ออกจากห้องแชท',
	userMenuWho: 'รายชื่อผู้ที่กำลังแชท',
	userMenuList: 'รายชื่อห้องแชท',
	userMenuAction: 'ประกาศ/บรรยายพิเศษ',
	userMenuRoll: 'Roll dice',
	userMenuNick: 'เปลี่ยนชื่อฉายา',
	userMenuEnterPrivateRoom: 'เข้าห้องคุยส่วนตัว',
	userMenuSendPrivateMessage: 'ส่งข้อความส่วนตัว',
	userMenuDescribe: 'ส่งข้อความกระซิบ',
	userMenuOpenPrivateChannel: 'เปิดห้องแชทส่วนตัว',
	userMenuClosePrivateChannel: 'ปิดห้องแชทส่วนตัว',
	userMenuInvite: 'เชิญชวน',
	userMenuUninvite: 'ยกเลิกเชิญชวน',
	userMenuIgnore: 'ปฏิเสธ/ยอมรับ',
	userMenuIgnoreList: 'ชื่อที่เราไม่สนใจข้อความ',
	userMenuWhereis: 'ดูรายชื่อห้องแชท',
	userMenuKick: 'แบน/เตะออกจากห้องแชท',
	userMenuBans: 'รายชื่อที่ถูกแบน',
	userMenuWhois: 'ดูหมายเลข IP',
	unbanUser: 'ยกเลิกการแบนสมาชิก %s',
	joinChannel: 'เข้าห้องแชท %s',
	cite: '%s said:',
	urlDialog: 'Please enter the address (URL) of the webpage:',
	deleteMessage: 'ลบข้อความนี้',
	deleteMessageConfirm: 'คุณต้องการลบข้อความนี้ใช่ไหม?',
	errorCookiesRequired: 'Cookies are required for this chat.',
	errorUserNameNotFound: 'Error: ไม่พบชื่อ %s นี้',
	errorMissingText: 'Error: Missing message text.',
	errorMissingUserName: 'Error: ไม่มีฉายานี้',
	errorInvalidUserName: 'Error: ฉายาไม่ถูกต้อง',
	errorUserNameInUse: 'Error: ชื่อนี้มีคนใช้อยู่ในห้องแชทแล้วจ้า',
	errorMissingChannelName: 'Error: ไม่มีห้องแชทนี้',
	errorInvalidChannelName: 'Error: ชื่อห้องแชทไม่ถูกต้อง: %s',
	errorPrivateMessageNotAllowed: 'Error: Private messages are not allowed.',
	errorInviteNotAllowed: 'Error: You are not allowed to invite someone to this channel.',
	errorUninviteNotAllowed: 'Error: You are not allowed to uninvite someone from this channel.',
	errorNoOpenQuery: 'Error: No private channel open.',
	errorKickNotAllowed: 'Error: You are not allowed to kick %s.',
	errorCommandNotAllowed: 'Error: Command not allowed: %s',
	errorUnknownCommand: 'Error: Unknown command: %s',
	errorMaxMessageRate: 'Error: You exceeded the maximum number of messages per minute.',
	errorConnectionTimeout: 'Error: Connection timeout. Please try again.',
	errorConnectionStatus: 'Error: Connection status: %s',
	errorSoundIO: 'Error: Failed to load sound file (Flash IO Error).',
	errorSocketIO: 'Error: Connection to socket server failed (Flash IO Error).',
	errorSocketSecurity: 'Error: Connection to socket server failed (Flash Security Error).',
	errorDOMSyntax: 'Error: Invalid DOM Syntax (DOM ID: %s).'
	
}