Skip to content

Commit

Permalink
added polish translation
Browse files Browse the repository at this point in the history
  • Loading branch information
w8tcha committed Oct 20, 2013
1 parent e092de7 commit 7c38681
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
14 changes: 14 additions & 0 deletions autosave/lang/pl.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang('autosave', 'pl', {
loadSavedContent: 'Istnieje automatycznie zapisana wersja zawartości (z "{0}"). Otworzyć okno porównawcze, w którym można zadecydować o wczytaniu automatycznie zapisanej zawartości?',
title: 'Porównanie tymczasowo zapisanej zawartości z zawartością wczytaną w witrynie',
loadedContent: 'Zawartość wczytania',
autoSavedContent: 'Zawartość zapisana automatycznie (z: \'',
ok: 'Wczytaj zawartość zapisaną automatycznie',
diffType: 'Widok porównawczy:',
sideBySide: 'Obok siebie',
inline: 'Osadzony'
});
3 changes: 2 additions & 1 deletion autosave/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
}

CKEDITOR.plugins.add("autosave", {
lang: ['de', 'en', 'jp', 'pt-BR', 'zh', 'zh-cn'],
lang: ['de', 'en', 'jp', 'pl', 'pt-BR', 'zh', 'zh-cn'],
version: 0.5,
init: function (editor) {
var autoSaveKey = editor.config.autosave_SaveKey != null ? editor.config.autosave_SaveKey : 'autosave_' + window.location;
var notOlderThan = editor.config.autosave_NotOlderThan != null ? editor.autosave_NotOlderThan : 1440;
Expand Down

0 comments on commit 7c38681

Please sign in to comment.