﻿/*
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
 * Polish language.
 */

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

/**
 * Constains the dictionary of language entries.
 * @namespace
 */
CKEDITOR.lang['pl'] =
{
	/**
	 * 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 : 'ltr',
	/*
	 * 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 : 'Nowa strona',
	preview : 'Podgląd',
	save : 'Zapisz',
	// Toolbar buttons without dialogs.
	source : 'Źródło dokumentu',

	// Button Dialog.
	button :
	{
		typeRst : 'Wyzeruj'
	},

	colors :
	{
		'000' : 'Czarny',
		'800000' : 'Rdzawy',
		E6E6FA : 'Lawendowy',
		FFF : 'Biały'
	},

	// Common messages and labels.
	// Inline comment
	// having more than one line.
	common :
	{
		browseServer : 'Przeglądaj',
		confirmCancel : 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
		protocol : 'Protokół',
		url : 'Adres URL'
	},

	// Link dialog.
	link :
	{
		noAnchors : '(W dokumencie nie zdefiniowano żadnych etykiet)',
		noEmail : 'Podaj adres e-mail',
		noUrl : 'Podaj adres URL',
		toolbar : 'Wstaw/edytuj hiperłącze' // 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 : 'Wybierz znak specjalny',
		toolbar : 'Wstaw znak specjalny'
	},

	// Table Dialog
	table :
	{
		toolbar : 'Tabela',

		cell :
		{
			insertBefore : 'Wstaw komórkę z lewej',
			menu : 'Komórka'
		},

		row :
		{
			menu : 'Row' // MISSING
		}
	}
};
