/*
Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

/**
 * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
 * Arabic language.
 */

/**#@+
   @type String
   @example
*/

/**
 * Constains the dictionary of language entries.
 * @namespace
 */
CKEDITOR.lang['ar'] =
{
	/**
	 * The language reading direction. Possible values are "rtl" for
	 * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
	 * languages (like English).
	 * @default 'ltr'
	 */
	dir : 'rtl',
	/*
	 * Screenreader titles. Please note that screenreaders are not always capable
	 * of reading non-English words. So be careful while translating it.
	 */
	editorTitle : 'Rich text editor, %1', // MISSING
	newPage : 'صفحة جديدة',
	preview : 'معاينة الصفحة',
	save : 'حفظ',
	// Toolbar buttons without dialogs.
	source : 'المصدر',

	// Button Dialog.
	button :
	{
		typeRst : 'إعادة تعيين'
	},

	colors :
	{
		'000' : 'أسود',
		'800000' : 'كستنائي',
		E6E6FA : 'أرجواني',
		FFF : 'أبيض'
	},

	// Common messages and labels.
	// Inline comment
	// having more than one line.
	common :
	{
		browseServer : 'تصفح',
		confirmCancel : 'بعض الخيارات قد تغيرت. هل أنت متأكد من إغلاق مربع النص؟',
		protocol : 'البروتوكول',
		url : 'الرابط'
	},

	// Link dialog.
	link :
	{
		noAnchors : '(لا توجد علامات مرجعية في هذا المستند)',
		noEmail : 'من فضلك أدخل عنوان البريد الإلكتروني',
		noUrl : 'من فضلك أدخل عنوان الموقع الذي يشير إليه الرابط',
		toolbar : 'رابط' // IE6 BUG: A title called "Link" in an <A> tag would invalidate its padding!!
	},

	// Special char dialog.
	specialChar : // Inline comment for special char dialog.
	{
		title : 'اختر الخواص',
		toolbar : 'إدراج  خاص.ِ'
	},

	// Table Dialog
	table :
	{
		toolbar : 'جدول',

		cell :
		{
			insertBefore : 'إدراج خلية قبل',
			menu : 'خلية'
		},

		row :
		{
			menu : 'صف'
		}
	}
};
