﻿/*
Copyright (c) 2003-__CURRENT_YEAR__, 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

	DateAmPm : ['AM', 'PM'], // MISSING

	// Toolbar buttons without dialogs.
	source			: 'المصدر',
	newPage			: 'صفحة جديدة',
	save			: 'حفظ',
	preview			: 'معاينة الصفحة',

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

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

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

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

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

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

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

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