|
@ -34,8 +34,9 @@ define('PATH_ABSTRACT', PATH_KERNEL.'abstract'.DS);
|
|||
define('DOMAIN', $_SERVER['HTTP_HOST']);
|
||||
|
||||
// HTML PATHs
|
||||
$base = empty( $_SERVER['SCRIPT_NAME'] ) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
|
||||
$base = dirname($base);
|
||||
//$base = empty( $_SERVER['SCRIPT_NAME'] ) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
|
||||
//$base = dirname($base);
|
||||
$base = empty($_SERVER['REQUEST_URI']) ? dirname($_SERVER['SCRIPT_NAME']) : dirname($_SERVER['REQUEST_URI']);
|
||||
|
||||
if($base!=DS) {
|
||||
$base = $base.'/';
|
||||
|
@ -414,8 +415,8 @@ function install($adminPassword, $email, $timezoneOffset)
|
|||
$dataHead.json_encode(
|
||||
array(
|
||||
'position'=>0,
|
||||
'plugins'=>'autoresize, fullscreen, pagebreak, link, textcolor, code, image',
|
||||
'toolbar'=>'bold italic underline strikethrough | alignleft aligncenter alignright | bullist numlist | styleselect | link forecolor backcolor removeformat image | pagebreak code fullscreen'
|
||||
'plugins'=>'autoresize, fullscreen, pagebreak, link, textcolor, code',
|
||||
'toolbar'=>'bold italic underline strikethrough | alignleft aligncenter alignright | bullist numlist | styleselect | link forecolor backcolor removeformat | pagebreak code fullscreen'
|
||||
),
|
||||
JSON_PRETTY_PRINT),
|
||||
LOCK_EX
|
||||
|
|
|
@ -63,6 +63,11 @@ class Plugin {
|
|||
return HTML_PATH_PLUGINS.$this->directoryName.'/';
|
||||
}
|
||||
|
||||
public function phpPath()
|
||||
{
|
||||
return PATH_PLUGINS.$this->directoryName.DS;
|
||||
}
|
||||
|
||||
// Returns the item from plugin-data.
|
||||
public function getData($key)
|
||||
{
|
||||
|
|
0
kernel/admin/themes/default/css/uikit/form-file.almost-flat.min.css
vendored
Executable file → Normal file
0
kernel/admin/themes/default/css/uikit/placeholder.almost-flat.min.css
vendored
Executable file → Normal file
0
kernel/admin/themes/default/css/uikit/progress.almost-flat.min.css
vendored
Executable file → Normal file
0
kernel/admin/themes/default/css/uikit/uikit.almost-flat.min.css
vendored
Executable file → Normal file
0
kernel/admin/themes/default/css/uikit/upload.almost-flat.min.css
vendored
Executable file → Normal file
|
@ -251,7 +251,7 @@ class HTML {
|
|||
allcomplete: function(response) {
|
||||
bar.css("width", "100%").text("100%");
|
||||
progressbar.addClass("uk-hidden");
|
||||
$("#jsprofilePicture").attr("src", "'.HTML_PATH_UPLOADS_PROFILES.$username.'.jpg?"+new Date().getTime());
|
||||
$("#jsprofilePicture").html("<img class=\"uk-border-rounded\" src=\"'.HTML_PATH_UPLOADS_PROFILES.$username.'.jpg\">");
|
||||
},
|
||||
|
||||
notallowed: function(file, settings) {
|
||||
|
|
|
@ -97,8 +97,18 @@ HTML::formClose();
|
|||
|
||||
echo '</div>';
|
||||
echo '<div class="uk-width-3-10" style="margin-top: 50px; text-align: center;">';
|
||||
echo '<img id="jsprofilePicture" class="uk-border-rounded" src="'.HTML_PATH_UPLOADS_PROFILES.$_user['username'].'.jpg" alt="'.$L->g('Profile picture').'">';
|
||||
|
||||
echo '<div id="jsprofilePicture">';
|
||||
if(file_exists(PATH_UPLOADS_PROFILES.$_user['username'].'.jpg')) {
|
||||
echo '<img class="uk-border-rounded" src="'.HTML_PATH_UPLOADS_PROFILES.$_user['username'].'.jpg" alt="">';
|
||||
}
|
||||
else {
|
||||
echo '<div class="uk-block uk-border-rounded uk-block-muted uk-block-large">'.$L->g('Profile picture').'</div>';
|
||||
}
|
||||
echo '</div>';
|
||||
|
||||
HTML::profileUploader($_user['username']);
|
||||
|
||||
echo '</div>';
|
||||
echo '</div>';
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ define('JSON', function_exists('json_encode'));
|
|||
define('CLI_STATUS', 'published');
|
||||
|
||||
// Database format date
|
||||
define('DB_DATE_FORMAT', 'Y-m-d H:i');
|
||||
define('DB_DATE_FORMAT', 'Y-m-d H:i:s');
|
||||
|
||||
// Date format for Dashboard schedule posts
|
||||
define('SCHEDULED_DATE_FORMAT', 'd M - h:i a');
|
||||
|
@ -153,12 +153,23 @@ $Url = new Url();
|
|||
$Parsedown = new ParsedownExtra();
|
||||
$Security = new Security();
|
||||
|
||||
// HTML PATHs
|
||||
$base = empty( $_SERVER['SCRIPT_NAME'] ) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
|
||||
$base = dirname($base);
|
||||
// HTML PATHS
|
||||
// The user can define the base URL.
|
||||
// Left empty if you want to Bludit try to detect the base URL.
|
||||
$base = '';
|
||||
|
||||
if( !empty($_SERVER['DOCUMENT_ROOT']) && !empty($_SERVER['SCRIPT_NAME']) && empty($base) ) {
|
||||
$base = str_replace($_SERVER['DOCUMENT_ROOT'], '', $_SERVER['SCRIPT_NAME']);
|
||||
$base = dirname($base);
|
||||
}
|
||||
elseif( empty($base) ) {
|
||||
$base = empty( $_SERVER['SCRIPT_NAME'] ) ? $_SERVER['PHP_SELF'] : $_SERVER['SCRIPT_NAME'];
|
||||
$base = dirname($base);
|
||||
}
|
||||
|
||||
if($base!=DS) {
|
||||
$base = $base.'/';
|
||||
$base = trim($base, '/');
|
||||
$base = '/'.$base.'/';
|
||||
}
|
||||
else {
|
||||
// Workaround for Windows Web Servers
|
||||
|
|
|
@ -12,7 +12,11 @@ class dbUsers extends dbJSON
|
|||
'email'=> array('inFile'=>false, 'value'=>''),
|
||||
'registered'=> array('inFile'=>false, 'value'=>'1985-03-15 10:00'),
|
||||
'tokenEmail'=> array('inFile'=>false, 'value'=>''),
|
||||
'tokenEmailTTL'=> array('inFile'=>false, 'value'=>'2009-03-15 14:00')
|
||||
'tokenEmailTTL'=> array('inFile'=>false, 'value'=>'2009-03-15 14:00'),
|
||||
'twitterUsername'=> array('inFile'=>false, 'value'=>''),
|
||||
'facebookUsername'=> array('inFile'=>false, 'value'=>''),
|
||||
'googleUsername'=> array('inFile'=>false, 'value'=>''),
|
||||
'instagramUsername'=> array('inFile'=>false, 'value'=>'')
|
||||
);
|
||||
|
||||
function __construct()
|
||||
|
|
|
@ -148,7 +148,7 @@
|
|||
"error": "Грешна",
|
||||
"bludit-installer": "Bludit Инстлатор",
|
||||
"welcome-to-the-bludit-installer": "Добре дошли в Bludit инсталатор",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Попълнете формуляра, или парола за потребителското име « admin »",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Попълнете формуляра, или задайте парола за потребителското име « admin »",
|
||||
"password-visible-field": "Парола във видимото поле!",
|
||||
"install": "Инсталиране",
|
||||
"choose-your-language": "Изберете вашият език",
|
||||
|
@ -184,12 +184,12 @@
|
|||
"sender-email": "Имейл на изпращача",
|
||||
"emails-will-be-sent-from-this-address":"Имейлите ще бъдат изпратени от този адрес.",
|
||||
"bludit-login-access-code": "BLUDIT - Код за достъп",
|
||||
"check-your-inbox-for-your-login-access-code":"Проверете вашата пощенска кутия за вашия код за достъп",
|
||||
"check-your-inbox-for-your-login-access-code":":Моля, проверете вашата пощенска кутия за вашият код!",
|
||||
"there-was-a-problem-sending-the-email":"Възникна проблем при изпращането на имейла",
|
||||
"back-to-login-form": "Връщане към входяща форма",
|
||||
"send-me-a-login-access-code": "Изпрати код за достъп",
|
||||
"get-login-access-code": "Вземете код за достъп",
|
||||
"email-notification-login-access-code": "<p>Това е уведомление от вашия сайт {{WEBSITE_NAME}}</p><p>Вашият код за достъп , последвайте следващата връзката:</p><p>{{LINK}}</p>",
|
||||
"get-login-access-code": "Изпрати код за достъп",
|
||||
"email-notification-login-access-code": "<p>Това е уведомление от {{WEBSITE_NAME}}.</p><p>Вашият код за достъп, моля последвайте следващата връзка!</p><p>{{LINK}}</p>",
|
||||
"there-are-no-scheduled-posts": "Не са открити планирани публикации.",
|
||||
"show-password": "Покажи паролата",
|
||||
"edit-or-remove-your=pages": "Промяна или премахване на страници.",
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
"native": "English (United States)",
|
||||
"english-name": "English",
|
||||
"last-update": "2015-10-02",
|
||||
"last-update": "2015-12-01",
|
||||
"author": "Diego",
|
||||
"email": "",
|
||||
"website": ""
|
||||
|
|
|
@ -1,22 +1,22 @@
|
|||
{
|
||||
"language-data":
|
||||
{
|
||||
"native": "Polski (Polska)",
|
||||
"native": "Polish - Polski",
|
||||
"english-name": "Polish",
|
||||
"last-update": "2015-11-01",
|
||||
"author": "Dave",
|
||||
"email": "dawid.stawicki@windowslive.com",
|
||||
"website": ""
|
||||
"last-update": "2015-12-03",
|
||||
"author": "tom-asz",
|
||||
"email": "",
|
||||
"website": "tomektutoria.eu"
|
||||
},
|
||||
|
||||
"username": "Użytkownik",
|
||||
"password": "Hasło",
|
||||
"confirm-password": "Potwierdzenie hasła",
|
||||
"editor": "Redaktor",
|
||||
"dashboard": "Kokpit",
|
||||
"confirm-password": "Potwierdź hasło",
|
||||
"editor": "Edytor",
|
||||
"dashboard": "Pulpit nawigacyjny",
|
||||
"role": "Rola",
|
||||
"post": "Wpis",
|
||||
"posts": "Wpisy",
|
||||
"post": "Post",
|
||||
"posts": "Posty",
|
||||
"users": "Użytkownicy",
|
||||
"administrator": "Administrator",
|
||||
"add": "Dodaj",
|
||||
|
@ -25,55 +25,55 @@
|
|||
"title": "Tytuł",
|
||||
"no-parent": "Bez rodzica",
|
||||
"edit-page": "Edytuj stronę",
|
||||
"edit-post": "Edytuj wpis",
|
||||
"add-a-new-user": "Nowy użytkownik",
|
||||
"edit-post": "Edytuj post",
|
||||
"add-a-new-user": "Dodaj nowego użytkownika",
|
||||
"parent": "Rodzic",
|
||||
"friendly-url": "Przyjazny odnośnik URL",
|
||||
"friendly-url": "Przyjazny URL",
|
||||
"description": "Opis",
|
||||
"posted-by": "Napisał(a)",
|
||||
"posted-by": "Napisane przez",
|
||||
"tags": "Tagi",
|
||||
"position": "Pozycja",
|
||||
"save": "Zapisz",
|
||||
"draft": "Szkic",
|
||||
"draft": "Projekt",
|
||||
"delete": "Usuń",
|
||||
"registered": "Data rejestracji",
|
||||
"registered": "Zarejestrowany",
|
||||
"Notifications": "Powiadomienia",
|
||||
"profile": "Profil",
|
||||
"email": "Email",
|
||||
"settings": "Ustawienia",
|
||||
"general": "Ogólne",
|
||||
"advanced": "Zaawansowane",
|
||||
"regional": "Region",
|
||||
"regional": "Regionalne",
|
||||
"about": "O nas",
|
||||
"login": "Zaloguj",
|
||||
"logout": "Wyloguj",
|
||||
"manage": "Zarządzanie",
|
||||
"manage": "Zarządzaj",
|
||||
"themes": "Motywy",
|
||||
"prev-page": "Poprzednia strona",
|
||||
"next-page": "Następna strona",
|
||||
"configure-plugin": "Konfiguracja wtyczki",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Potwierdzenie usunięcia. Ta operacja jest nieodwracalna.",
|
||||
"configure-plugin": "Skonfiguruj plugin",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Potwierdź usunięcie, czynność ta nie może być cofnięta.",
|
||||
"site-title": "Nazwa strony",
|
||||
"site-slogan": "Slogan strony",
|
||||
"site-description": "Opis strony",
|
||||
"footer-text": "Tekst w stopce",
|
||||
"posts-per-page": "Liczba wpisów na stronę",
|
||||
"site-url": "Adres URL strony",
|
||||
"writting-settings": "Ustawienia pisania",
|
||||
"url-filters": "Filtry URL",
|
||||
"posts-per-page": "Posty na stronie:",
|
||||
"site-url": "Adres strony",
|
||||
"writting-settings": "Ustawienie pisania",
|
||||
"url-filters": "Filtr URL",
|
||||
"page": "Strona",
|
||||
"pages": "Strony",
|
||||
"home": "Strona główna",
|
||||
"welcome-back": "Cześć, ",
|
||||
"home": "Home",
|
||||
"welcome-back": "Witaj ponownie",
|
||||
"language": "Język",
|
||||
"website": "Powrót do strony",
|
||||
"website": "Strona WWW",
|
||||
"timezone": "Strefa czasowa",
|
||||
"locale": "Lokalizacja",
|
||||
"new-post": "Nowy wpis",
|
||||
"locale": "Ustawienia regionalne",
|
||||
"new-post": "Nowy post",
|
||||
"new-page": "Nowa strona",
|
||||
"html-and-markdown-code-supported": "Znaczniki HTML i Markdown są wspierane",
|
||||
"manage-posts": "Zarządzanie wpisami",
|
||||
"published-date": "Data publikacji",
|
||||
"html-and-markdown-code-supported": "Kod HTML i Markdown obsługiwany",
|
||||
"manage-posts": "Zarządzaj postami",
|
||||
"published-date": "Data opublikowania",
|
||||
"modified-date": "Data modyfikacji",
|
||||
"empty-title": "Brak tytułu",
|
||||
"plugins": "Wtyczki",
|
||||
|
@ -85,119 +85,138 @@
|
|||
"first-name": "Imię",
|
||||
"last-name": "Nazwisko",
|
||||
"bludit-version": "Wersja Bludit",
|
||||
"powered-by": "Napędza",
|
||||
"recent-posts": "Ostatnie wpisy",
|
||||
"manage-pages": "Zarządzanie stronami",
|
||||
"advanced-options": "Zaawansowane",
|
||||
"user-deleted": "Użytkownik został usunięty",
|
||||
"page-added-successfully": "Strona została pomyślnie dodana",
|
||||
"post-added-successfully": "Wpis został pomyślnie dodany",
|
||||
"the-post-has-been-deleted-successfully": "Wpis został pomyślnie usunięty",
|
||||
"powered-by": "Silnik",
|
||||
"recent-posts": "Najnowsze posty",
|
||||
"manage-pages": "Zarządzaj stronami",
|
||||
"advanced-options": "Zaawansowane opcje",
|
||||
"user-deleted": "Użytkownik usunięty",
|
||||
"page-added-successfully": "Strona dodany pomyślnie",
|
||||
"post-added-successfully": "Post dodany pomyślnie",
|
||||
"the-post-has-been-deleted-successfully": "Post został pomyślnie usunięty",
|
||||
"the-page-has-been-deleted-successfully": "Strona została pomyślnie usunięta",
|
||||
"username-or-password-incorrect": "Nazwa użytkownika lub hasło jest nieprawidłowe",
|
||||
"database-regenerated": "Baza danych została naprawiona",
|
||||
"username-or-password-incorrect": "Nazwa użytkownika lub hasło nieprawidłowe",
|
||||
"database-regenerated": "Baza danych regenerowana",
|
||||
"the-changes-have-been-saved": "Zmiany zostały zapisane",
|
||||
"enable-more-features-at": "Włącz więcej możliwości w",
|
||||
"enable-more-features-at": "Włącz więcej funkcji w",
|
||||
"username-already-exists": "Nazwa użytkownika już istnieje",
|
||||
"username-field-is-empty": "Nazwa użytkownika nie może być pusta",
|
||||
"the-password-and-confirmation-password-do-not-match":"Wprowadzone hasła nie pasują do siebie",
|
||||
"user-has-been-added-successfully": "Użytkownik został pomyślnie dodany",
|
||||
"you-do-not-have-sufficient-permissions": "Nie masz dostępu do tego. Prosimy o kontakt z administratorem strony.",
|
||||
"username-field-is-empty": "Pole nazwa użytkownika jest puste",
|
||||
"the-password-and-confirmation-password-do-not-match":"Hasło i potwierdzenie hasła nie pasują do siebie",
|
||||
"user-has-been-added-successfully": "Użytkownik został dodany pomyślnie",
|
||||
"you-do-not-have-sufficient-permissions": "Nie masz wystarczających uprawnień dostępu do tej strony, skontaktuj się z administratorem.",
|
||||
"settings-advanced-writting-settings": "Ustawienia->Zaawansowane->Ustawienia pisania",
|
||||
"new-posts-and-pages-synchronized": "Nowe wpisy i strony zostały zsynchronizowane.",
|
||||
"you-can-choose-the-users-privilege": "Wybierz przywileje tego użytkownika. Rola redaktora zezwala wyłącznie na tworzenie nowych wpisów i stron.",
|
||||
"email-will-not-be-publicly-displayed": "Adres email nie zostanie opublikowany, jednak zaleca się jego wprowadzenie w celu odzyskania utraconego hasła oraz powiadomień dostarczanych ze strony.",
|
||||
"use-this-field-to-name-your-site": "Nazwa strony zostanie wyświetlona na każdej podstronie Twojej witryny.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Krótki i chwytliwy slogan Twojej strony.",
|
||||
"you-can-add-a-site-description-to-provide": "Wprowadź opis strony, aby wyjaśnić jej przeznaczenie.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Krótka informacja wyświetlająca się na każdej podstronie. Dla przykładu: prawa autorskie, właściciel, data, etc.",
|
||||
"number-of-posts-to-show-per-page": "Liczba wpisów wyświetlanych na jednej stronie.",
|
||||
"the-url-of-your-site": "Adres URL Twojej strony.",
|
||||
"add-or-edit-description-tags-or": "Dodaj lub edytuj opis, tagi oraz zmodyfikuj przyjazne adresy URL.",
|
||||
"select-your-sites-language": "Wybierz język strony",
|
||||
"select-a-timezone-for-a-correct": "Wybierz strefę czasową by prawidłowo wyświetlać datę/czas na Twojej stronie.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Możesz użyć to pole, aby zdefiniować parametry związane z językiem, krajem i innymi ustawieniami.",
|
||||
"you-can-modify-the-url-which-identifies":"Możesz zmieniń adres URL wpisu lub strony, aby wyglądał bardziej czytelnie dla człowieka. Nie więcej niż 150 znaków.",
|
||||
"this-field-can-help-describe-the-content": "To pole pomoże krótko opisać Twój wpis w kilku słowach. Nie więcej niż 150 znaków.",
|
||||
"new-posts-and-pages-synchronized": "Nowe posty i strony zsynchronizowane.",
|
||||
"you-can-choose-the-users-privilege": "Możesz wybrać przywilej użytkownika. Edytor może tylko pisać strony i posty.",
|
||||
"email-will-not-be-publicly-displayed": "E-mail nie będzie wyświetlany publicznie. Zalecany dla odzyskiwania hasła i powiadomień.",
|
||||
"use-this-field-to-name-your-site": "Pole to służy do nazwy witryny, pojawi się na górze każdej stronie.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Pole to służy do dodawania chwytliwego tytułu na swojej stronie.",
|
||||
"you-can-add-a-site-description-to-provide": "Możesz dodać opis witryny, aby zapewnić krótki życiorys lub opis swojej strony.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Możesz dodać mały tekst na dole każdej strony. np: prawo autorskie, właściciel, daty, itp",
|
||||
"number-of-posts-to-show-per-page": "Wyświetlana iczba postów na stronie.",
|
||||
"the-url-of-your-site": "Adres URL witryny.",
|
||||
"add-or-edit-description-tags-or": "Dodać lub edytować opis, tagi lub zmodyfikować przyjazne URL.",
|
||||
"select-your-sites-language": "Wybierz język witryny.",
|
||||
"select-a-timezone-for-a-correct": "Wybierz strefę czasową, dla prawidłowego wyświetlania data / czas na swojej stronie.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Możesz użyć tego pola, aby zdefiniować zestaw parametrów związanych z językiem, kraju i szczególnych preferencji.",
|
||||
"you-can-modify-the-url-which-identifies":"Możesz zmienić adres URL, który identyfikuje stronę lub pisać przy użyciu słów kluczowych w postaci czytelnej dla człowieka. Nie więcej niż 150 znaków.",
|
||||
"this-field-can-help-describe-the-content": "To pole może pomóc opisać zawartość w kilku słowach. Nie więcej niż 150 znaków.",
|
||||
|
||||
"delete-the-user-and-all-its-posts":"Usuń tego użytkownika i wszystkie jego wpisy",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Usuń tego użytkownika a wszystkie jego wpisy przypisz administratorowi",
|
||||
"read-more": "Czytaj więcej",
|
||||
"show-blog": "Blog z wpisami",
|
||||
"delete-the-user-and-all-its-posts":"Usuń użytkownika i wszystkich jego posty",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Usuń użytkownika i powiązać jego posty do użytkownika administratora",
|
||||
"read-more": "Więcej",
|
||||
"show-blog": "Zobacz blog",
|
||||
"default-home-page": "Domyślna strona główna",
|
||||
"version": "Wersja",
|
||||
"there-are-no-drafts": "Brak szkiców.",
|
||||
"create-a-new-article-for-your-blog":"Utwórz nowy wpis na Twoim blogu.",
|
||||
"create-a-new-page-for-your-website":"Utwórz nową stronę na Twoim blogu.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Zaproś przyjaciela do współpracy",
|
||||
"change-your-language-and-region-settings":"Zmień język i ustawienia regionu strony.",
|
||||
"language-and-timezone":"Język i czas",
|
||||
"there-are-no-drafts": "Brak projektów.",
|
||||
"create-a-new-article-for-your-blog":"Utwórz nowy artykuł na swoim blogu.",
|
||||
"create-a-new-page-for-your-website":"Tworzenie nowej strony na swojej stronie internetowej.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Zaproś przyjaciół do współpracy na swojej stronie internetowej.",
|
||||
"change-your-language-and-region-settings":"Zmień ustawienia języka i regionu.",
|
||||
"language-and-timezone":"Język i strefa czasowa",
|
||||
"author": "Autor",
|
||||
"start-here": "Start",
|
||||
"start-here": "Zacznij tutaj",
|
||||
"install-theme": "Zainstaluj motyw",
|
||||
"first-post": "Pierwszy wpis ",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Gratulację, Twój **Bludit** został zainstalowany pomyślnie.",
|
||||
"whats-next": "Co teraz?",
|
||||
"manage-your-bludit-from-the-admin-panel": "Zarządzaj blogiem z poziomu [kokpitu](./admin/)",
|
||||
"follow-bludit-on": "Obserwuj Bludit w serwisach",
|
||||
"visit-the-support-forum": "•Zajrzyj na [forum wsparcia](http://forum.bludit.com) for support",
|
||||
"read-the-documentation-for-more-information": "•Przeczytaj [dokumentacje](http://docs.bludit.com) by dowiedzieć się więcej informacji",
|
||||
"share-with-your-friends-and-enjoy": "•udostępnij tę stronę swoim znajomym i baw się dobrze",
|
||||
"first-post": "Pierwszy post",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Gratulacje pomyślnie zainstalowano **Bludit**",
|
||||
"whats-next": "Co dalej",
|
||||
"manage-your-bludit-from-the-admin-panel": "Zarządzaj Bludit z [obszaru administracyjnego](./admin/)",
|
||||
"follow-bludit-on": "Śledź Bludit na",
|
||||
"visit-the-support-forum": "Odwiedź [forum](http://forum.bludit.com) wsparcia",
|
||||
"read-the-documentation-for-more-information": "Przeczytaj [dokumentację](http://docs.bludit.com) po więcej informacji",
|
||||
"share-with-your-friends-and-enjoy": "Podziel się z przyjaciółmi i ciesz się z Bludit",
|
||||
"the-page-has-not-been-found": "Strona nie została odnaleziona.",
|
||||
"error": "Błąd",
|
||||
"bludit-installer": "Instalator Bludit",
|
||||
"welcome-to-the-bludit-installer": "Witamy w instalatorze Bludit",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Uzupełnij formularz, wybierz hasło dla użytkownika « admin »",
|
||||
"password-visible-field": "Password, visible field!",
|
||||
"install": "Zainlstauj",
|
||||
"choose-your-language": "Wybierz swój język",
|
||||
"bludit-installer": "Bludit Instalator",
|
||||
"welcome-to-the-bludit-installer": "Zapraszamy do instalatora Bludit",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Wpisz hasło dla użytkownika « admin »",
|
||||
"password-visible-field": "Hasło, widoczne pola!",
|
||||
"install": "Instaluj",
|
||||
"choose-your-language": "Wybierz język",
|
||||
"next": "Dalej",
|
||||
"the-password-field-is-empty": "Proszę wprowadzić hasło",
|
||||
"your-email-address-is-invalid":"Wprowadzony adres email jest nieprawidłowy.",
|
||||
"proceed-anyway": "Kontynnuj mimo to!",
|
||||
"drafts":"Szkice",
|
||||
"the-password-field-is-empty": "Pole hasło jest puste",
|
||||
"your-email-address-is-invalid":"Twój adres e-mail jest nieprawidłowy.",
|
||||
"proceed-anyway": "Kontynuuj mimo to!",
|
||||
"drafts":"Projekt",
|
||||
"ip-address-has-been-blocked": "Adres IP został zablokowany.",
|
||||
"try-again-in-a-few-minutes": "Spróbuj ponownie za kilka minut.",
|
||||
"date": "Data",
|
||||
|
||||
"scheduled": "Zaplanowany",
|
||||
"scheduled": "Zaplanowane",
|
||||
"publish": "Opublikuj",
|
||||
"please-check-your-theme-configuration": "Proszę sprawdzić ustawienia motywu.",
|
||||
"plugin-label": "Etykieta wtyczki",
|
||||
"please-check-your-theme-configuration": "Proszę sprawdzić konfigurację szablonu.",
|
||||
"plugin-label": "Etykieta pluginu",
|
||||
"enabled": "Włączony",
|
||||
"disabled": "Wyłączony",
|
||||
"cli-mode": "Tryb Cli",
|
||||
"command-line-mode": "Wiersz poleceń",
|
||||
"enable-the-command-line-mode-if-you-add-edit": "Włącz wiersz poleceń, kiedy dodajesz, edytujesz lub usuwasz wpisy oraz strony poprzez system plików.",
|
||||
"command-line-mode": "Tryb wiersza poleceń",
|
||||
"enable-the-command-line-mode-if-you-add-edit": "Włącz tryb linii poleceń, jeśli dodajesz, edytujesz lub usuwasz posty i strony z systemu plików",
|
||||
|
||||
"configure": "Konfiguruj",
|
||||
"uninstall": "Odinstaluj",
|
||||
"change-password": "Zmień hasło",
|
||||
"to-schedule-the-post-just-select-the-date-and-time": "Aby zaplanować wpis, po prostu wybierz datę i czas.",
|
||||
"write-the-tags-separated-by-commas": "Wprowadź tagi oddzielone przecinkiem.",
|
||||
"to-schedule-the-post-just-select-the-date-and-time": "Aby zaplanować post, po prostu wybierz date i czas.",
|
||||
"write-the-tags-separated-by-commas": "Dodaj tagi oddzielając je przecinkami.",
|
||||
"status": "Status",
|
||||
"published": "Opublikowany",
|
||||
"scheduled-posts": "Zaplanowane wpisy",
|
||||
"statistics": "Statystyki",
|
||||
"published": "Opublikowane",
|
||||
"scheduled-posts": "Zaplanowane posty",
|
||||
"statics": "Statyki",
|
||||
"name": "Nazwa",
|
||||
"email-account-settings":"Ustawienia konta email",
|
||||
"sender-email": "Adres nadawcy",
|
||||
"emails-will-be-sent-from-this-address":"Wszystkie wiadomości email będą wysyłane z tego adresu.",
|
||||
"bludit-login-access-code": "BLUDIT - kod dostępu logowania",
|
||||
"check-your-inbox-for-your-login-access-code":"Sprawdź swoją skrzynkę odbiorczą",
|
||||
"there-was-a-problem-sending-the-email":"Wystąpił problem z wysłaniem wiadomości",
|
||||
"back-to-login-form": "Powrót do logowania",
|
||||
"send-me-a-login-access-code": "Wyślij kod dostępu do logowania",
|
||||
"get-login-access-code": "Otrzymaj kod dostępu logowania",
|
||||
"email-notification-login-access-code": "<p>Powiadomienie ze strony {{WEBSITE_NAME}}</p><p>Jeśli zarządałeś kodu dostępu do logowania, zajrzyj na stronę:</p><p>{{LINK}}</p>",
|
||||
"there-are-no-scheduled-posts": "Brak zaplanowanych wpisów.",
|
||||
"show-password": "Pokaż hasło",
|
||||
"edit-or-remove-your=pages": "Edytuj lub usuń strony na Twoim blogu.",
|
||||
"edit-or-remove-your-blogs-posts": "Edytuj lub usuń wpisy na Twoim blogu.",
|
||||
"general-settings": "Ustawienia",
|
||||
"advanced-settings": "Zaawansowane",
|
||||
"manage-users": "Zarządzanie użytkownikami",
|
||||
"view-and-edit-your-profile": "Zobacz i edytuj swój profil.",
|
||||
"email-account-settings":"Ustawienia konta e-mail",
|
||||
"sender-email": "E-mail nadawcy",
|
||||
"emails-will-be-sent-from-this-address":"Wiadomości e-mail będą wysyłane z tego adresu.",
|
||||
"bludit-login-access-code": "BLUDIT - Logowanie do kodu dostępu",
|
||||
"check-your-inbox-for-your-login-access-code":"Sprawdź swoją skrzynkę odbiorczą dla kodu dostępu do logowania",
|
||||
"there-was-a-problem-sending-the-email":"Wystąpił problem podczas wysyłania wiadomości e-mail",
|
||||
"back-to-login-form": "Powrót do formularza logowania",
|
||||
"send-me-a-login-access-code": "Wyślij mi kod dostępu do logowania",
|
||||
"get-login-access-code": "Pobierz kod dostępu do logowania",
|
||||
"email-notification-login-access-code": "<p>To jest powiadomienie z twojej strony {{WEBSITE_NAME}}</p><p>Poprosiłeś o kod dostępu do logowania, należy do kliknąć w link:</p><p>{{LINK}}</p>",
|
||||
"there-are-no-scheduled-posts": "Nie ma zaplanowanych postów.",
|
||||
"show-password": "Pokaż Hasło",
|
||||
"edit-or-remove-your=pages": "Edytuj lub usuń swoje strony.",
|
||||
"edit-or-remove-your-blogs-posts": "Edytuj lub usuń posty bloga.",
|
||||
"general-settings": "Ustawienia ogólne",
|
||||
"advanced-settings": "Ustawienia zaawansowane",
|
||||
"manage-users": "Zarządzaj użytkownikami",
|
||||
"view-and-edit-your-profile": "Przeglądać i edytować swój profil.",
|
||||
|
||||
"password-must-be-at-least-6-characters-long": "Hasło musi zawierać przynajmniej 6 znaków"
|
||||
"password-must-be-at-least-6-characters-long": "Hasło musi mieć co najmniej 6 znaków",
|
||||
"images": "Obrazy",
|
||||
"upload-image": "Wgraj obraz",
|
||||
"drag-and-drop-or-click-here": "Przeciągnij i upuść lub kliknij tutaj",
|
||||
"insert-image": "Wstaw obraz",
|
||||
"supported-image-file-types": "Obsługiwane typy plików graficznych",
|
||||
"date-format": "Format daty",
|
||||
"time-format": "Format czasu",
|
||||
"chat-with-developers-and-users-on-gitter":"Czat z programistami i użytkownikami [Gitter](https://gitter.im/dignajar/bludit)",
|
||||
"this-is-a-brief-description-of-yourself-our-your-site":"To jest krótki opis siebie lub swojej strony, by zmienić ten tekst przejdż do panelu administratora, ustawienia, wtyczki i skonfigurować wtyczkę O nas.",
|
||||
"profile-picture": "Zdjęcie profilowe",
|
||||
"the-about-page-is-very-important": "Strona O nas jest ważnym narzędziem dla potencjalnych klientów i partnerów. Dla tych, którzy się zastanawiają, kto jest na stronie internetowej, twoja informacja o stronie jest pierwszym źródłem informacji.",
|
||||
"change-this-pages-content-on-the-admin-panel": "Zmień zawartość tej strony w panelu administratora, zarządzanie, strony i kliknij na stronę opisującą.",
|
||||
"about-your-site-or-yourself": "Informacje o stronie lub o sobie",
|
||||
"welcome-to-bludit": "Witamy w Bludit",
|
||||
|
||||
"site-information": "Informacje o witrynie",
|
||||
"date-and-time-formats": "Format daty i czasu",
|
||||
"activate": "Aktywuj",
|
||||
"deactivate": "Dezaktywuj"
|
||||
}
|
|
@ -213,5 +213,10 @@
|
|||
"the-about-page-is-very-important": "Страница о нас является важным и мощным инструментом для потенциальных клиентов и партнеров. Для тех, кто пришел, кому интересен ваш сайт, страница О нас является первым источником информации.",
|
||||
"change-this-pages-content-on-the-admin-panel": "Измените содержимое этой страницы в панели управления, Управление, Страницы и нажмите на страницу about.",
|
||||
"about-your-site-or-yourself": "О Вашем сайте или о вас",
|
||||
"welcome-to-bludit": "Добро пожаловать в Bludit"
|
||||
"welcome-to-bludit": "Добро пожаловать в Bludit",
|
||||
|
||||
"site-information": "Информация о сайте",
|
||||
"date-and-time-formats": "Форматы даты и времени",
|
||||
"activate": "Активировать",
|
||||
"deactivate": "Деактивировать"
|
||||
}
|
||||
|
|
|
@ -0,0 +1,217 @@
|
|||
{
|
||||
"language-data":
|
||||
{
|
||||
"native": "Türkçe (Türkiye)",
|
||||
"english-name": "Turkish",
|
||||
"last-update": "2015-12-02",
|
||||
"author": "ffahri",
|
||||
"email": "",
|
||||
"website": "github.com/ffahri"
|
||||
},
|
||||
|
||||
"username": "Kullanıcı Adı",
|
||||
"password": "Şifre",
|
||||
"confirm-password": "Şifreyi Doğrula",
|
||||
"editor": "Editör",
|
||||
"dashboard": "Pano",
|
||||
"role": "Grup",
|
||||
"post": "Yazı",
|
||||
"posts": "Yazılar",
|
||||
"users": "Kullanıcılar",
|
||||
"administrator": "Yönetici",
|
||||
"add": "Ekle",
|
||||
"cancel": "İptal",
|
||||
"content": "İçerik",
|
||||
"title": "Başlık",
|
||||
"no-parent": "No parent",
|
||||
"edit-page": "Sayfayı düzenle",
|
||||
"edit-post": "Yazıyı düzenle",
|
||||
"add-a-new-user": "Kullanıcı ekle",
|
||||
"parent": "Ana",
|
||||
"friendly-url": "Friendly URL",
|
||||
"description": "Tanım",
|
||||
"posted-by": "Tarafından",
|
||||
"tags": "Taglar",
|
||||
"position": "Konum",
|
||||
"save": "Kaydet",
|
||||
"draft": "Taslak",
|
||||
"delete": "Sil",
|
||||
"registered": "Kayıt Tarihi",
|
||||
"Notifications": "Bildirimler",
|
||||
"profile": "Profil",
|
||||
"email": "Email",
|
||||
"settings": "Ayarlar",
|
||||
"general": "Genel",
|
||||
"advanced": "Gelişmiş",
|
||||
"regional": "Bölgesel",
|
||||
"about": "Hakkında",
|
||||
"login": "Giriş",
|
||||
"logout": "Çıkış",
|
||||
"manage": "Yönet",
|
||||
"themes": "Temalar",
|
||||
"prev-page": "Önceki Sayfa",
|
||||
"next-page": "Sonraki Sayfa",
|
||||
"configure-plugin": "Eklentiyi yapılandır",
|
||||
"confirm-delete-this-action-cannot-be-undone": "Silmeyi onaylayın,bu işlem geri alınamaz!",
|
||||
"site-title": "Site Başlığı",
|
||||
"site-slogan": "Site sloganı",
|
||||
"site-description": "Bu alana site tanımı",
|
||||
"footer-text": "Altbilgi metni",
|
||||
"posts-per-page": "Sayfa başına yazı",
|
||||
"site-url": "Site adresi",
|
||||
"writting-settings": "Yazım ayarları",
|
||||
"url-filters": "URL filtreleri",
|
||||
"page": "Sayfa",
|
||||
"pages": "Sayfalar",
|
||||
"home": "Anasayfa",
|
||||
"welcome-back": "Tekrar Hoşgeldin",
|
||||
"language": "Dil",
|
||||
"website": "Site",
|
||||
"timezone": "Saat Dilimi",
|
||||
"locale": "Yerel",
|
||||
"new-post": "Yeni yazı",
|
||||
"new-page": "Yeni sayfa",
|
||||
"html-and-markdown-code-supported": "HTML ve Markdown kodlarını destekler",
|
||||
"manage-posts": "Yazıları yönet",
|
||||
"published-date": "Yayınlanma tarihi",
|
||||
"modified-date": "Düzenlenme tarihi",
|
||||
"empty-title": "Başlıksız",
|
||||
"plugins": "Eklentiler",
|
||||
"install-plugin": "Eklenti yönet",
|
||||
"uninstall-plugin": "Eklenti kaldır",
|
||||
"new-password": "Yeni şifre",
|
||||
"edit-user": "Kullanıcıyı düzenle",
|
||||
"publish-now": "Şimdi yayınla",
|
||||
"first-name": "Ad",
|
||||
"last-name": "Soyad",
|
||||
"bludit-version": "Bludit versiyon",
|
||||
"powered-by": "Powered by",
|
||||
"recent-posts": "Son yazılar",
|
||||
"manage-pages": "Sayfaları yönet",
|
||||
"advanced-options": "Gelişmiş seçenekler",
|
||||
"user-deleted": "Kullanıcı silindi",
|
||||
"page-added-successfully": "Sayfa başarıyla eklendi.",
|
||||
"post-added-successfully": "Yazı başarıyla eklendi.",
|
||||
"the-post-has-been-deleted-successfully": "Yazı başarıyla silindi",
|
||||
"the-page-has-been-deleted-successfully": "Sayfa başarıyla silindi",
|
||||
"username-or-password-incorrect": "Kullanıcı adı veya şifre yanlış",
|
||||
"database-regenerated": "Veritabanı rejenere oldu",
|
||||
"the-changes-have-been-saved": "Değişiklikler kaydedildi.",
|
||||
"enable-more-features-at": "Daha çok özelliği şuradan etkinleştir",
|
||||
"username-already-exists": "Bu kullanıcı adı kullanılıyor",
|
||||
"username-field-is-empty": "Kullanıcı adı boş bırakılamaz",
|
||||
"the-password-and-confirmation-password-do-not-match":"Şifreler uyuşmuyor.",
|
||||
"user-has-been-added-successfully": "Kullanıcı başarıyla eklendi.",
|
||||
"you-do-not-have-sufficient-permissions": "Bu sayfaya erişmek için gerekli izinlere sahip değilsiniz, Yönetici ile irtibata geçin.",
|
||||
"settings-advanced-writting-settings": "Ayarlar->Gelişmiş->Yazım Ayarları",
|
||||
"new-posts-and-pages-synchronized": "Yeni sayfalar ve yazılar senkronize edildi.",
|
||||
"you-can-choose-the-users-privilege": "Kullanıcının izinlerini seçebilirsiniz. Editör sadece sayfa ve yazılar yazabilir.",
|
||||
"email-will-not-be-publicly-displayed": "Mail adresi gizlenecektir. Bildirimler ve şifre kurtarma seçenekleri için önerilir.",
|
||||
"use-this-field-to-name-your-site": "Bu alanı sitenize ad vermek için kullanın,Sitenizdeki her sayfanın üstünde görünecektir.",
|
||||
"use-this-field-to-add-a-catchy-phrase": "Bu alanı sitenize akılda kalıcı bir cümle seçmek için kullanın.",
|
||||
"you-can-add-a-site-description-to-provide": "Site tanımı ekleyebilirsiniz.",
|
||||
"you-can-add-a-small-text-on-the-bottom": "Sitenizdeki her sayfanın sonuna kısa bir yazı ekleyebilirsiniz. Örn: Copyright, sahibi, tarih, vs.",
|
||||
"number-of-posts-to-show-per-page": "Sayfa başına gösterilecek yazı sayısı",
|
||||
"the-url-of-your-site": "Sitenizin URL'si.",
|
||||
"add-or-edit-description-tags-or": "Kardeş URL'lere tanım,tag ekleyip düzenleyebilirsiniz.",
|
||||
"select-your-sites-language": "Sitenizin dilini seçin.",
|
||||
"select-a-timezone-for-a-correct": "Tarih ve saatin doğru olabilmesi için bulunduğunuz saat dilimini seçin.",
|
||||
"you-can-use-this-field-to-define-a-set-of": "Bu alanı kullanarak belli dil,ülke veya özel seçenekler hakkında parametreler girebilirsiniz.",
|
||||
"you-can-modify-the-url-which-identifies":"150 Karakteri geçmeyecek şekilde URL'leri düzenleyerek veya okunabilir keywordlar kullanabilirsiniz.",
|
||||
"this-field-can-help-describe-the-content": "Bu alan içerisine 150 karakteri geçmeyecek şekilde içeriğe tanım yapabilirsiniz.",
|
||||
|
||||
"delete-the-user-and-all-its-posts":"Bu kullanıcıyı ve tüm yazılarını sil",
|
||||
"delete-the-user-and-associate-its-posts-to-admin-user": "Bu kullanıcıyı ve yöneticiyle ilişkili olan yazılarını sil",
|
||||
"read-more": "Devamını oku",
|
||||
"show-blog": "Blogu göster",
|
||||
"default-home-page": "Geçerli Anasayfa",
|
||||
"version": "Versiyon",
|
||||
"there-are-no-drafts": "Taslak yok.",
|
||||
"create-a-new-article-for-your-blog":"Blogun için bir makale oluştur.",
|
||||
"create-a-new-page-for-your-website":"Site için bir sayfa oluştur.",
|
||||
"invite-a-friend-to-collaborate-on-your-website":"Arkadaşını davet ederek birlikte çalış.",
|
||||
"change-your-language-and-region-settings":"Dil ve saat ayarlarını değiştir.",
|
||||
"language-and-timezone":"Dil ve saat dilimi",
|
||||
"author": "Yazar",
|
||||
"start-here": "Buradan başla",
|
||||
"install-theme": "Tema yükle",
|
||||
"first-post": "İlk yazı",
|
||||
"congratulations-you-have-successfully-installed-your-bludit": "Tebrikler başarılı bir şekilde kendi **Bludit'ini** yükledin",
|
||||
"whats-next": "Sırada Ne Var",
|
||||
"manage-your-bludit-from-the-admin-panel": "Bluditini buradan yönet [yönetici alanı](./admin/)",
|
||||
"follow-bludit-on": "Follow Bludit on",
|
||||
"visit-the-support-forum": "Destek için [forum](http://forum.bludit.com) forumu ziyaret edin",
|
||||
"read-the-documentation-for-more-information": "Daha fazla bilgi için [documentation](http://docs.bludit.com) dökümanları okuyun",
|
||||
"share-with-your-friends-and-enjoy": "Arkadaşlarına paylaş ve eğlen",
|
||||
"the-page-has-not-been-found": "Sayfa bulunamadı.",
|
||||
"error": "Hata",
|
||||
"bludit-installer": "Bludit Yükleyici",
|
||||
"welcome-to-the-bludit-installer": "Bludit Yükleyiciye Hoş Geldiniz",
|
||||
"complete-the-form-choose-a-password-for-the-username-admin": "Bu formu doldurarak, « admin » kullanıcısı için bir şifre belirleyin",
|
||||
"password-visible-field": "Şifre, görülebilir alanda!",
|
||||
"install": "Yükle",
|
||||
"choose-your-language": "Dili seçin",
|
||||
"next": "İleri",
|
||||
"the-password-field-is-empty": "Şifre boş bırakılamaz",
|
||||
"your-email-address-is-invalid":"Girdiğiniz email adresi geçersiz.",
|
||||
"proceed-anyway": "Yinede ilerle!",
|
||||
"drafts":"Taslaklar",
|
||||
"ip-address-has-been-blocked": "IP adresi bloklandı.",
|
||||
"try-again-in-a-few-minutes": "Birkaç dakika içinde tekrar deneyin.",
|
||||
"date": "Tarih",
|
||||
|
||||
"scheduled": "Ayarlandı",
|
||||
"publish": "Yayınla",
|
||||
"please-check-your-theme-configuration": "Lütfen tema ayarlarını kontrol edin.",
|
||||
"plugin-label": "Eklentinin görünecek adı",
|
||||
"enabled": "Etkinleştirildi",
|
||||
"disabled": "Devre dışı bırakıldı",
|
||||
"cli-mode": "Komut istemcisi modu",
|
||||
"command-line-mode": "Komut istemcisi modu",
|
||||
"enable-the-command-line-mode-if-you-add-edit": "Kendi sisteminizi kullanarak, yazı veya sayfa ekleyip düzenlemek istiyorsanız komut istemcisi modunu etkinleştirin.",
|
||||
|
||||
"configure": "Yapılandır",
|
||||
"uninstall": "Kaldır",
|
||||
"change-password": "Şifre değiştir",
|
||||
"to-schedule-the-post-just-select-the-date-and-time": "İleri bir tarihte yayınlamak için tarih ve saati seçin.",
|
||||
"write-the-tags-separated-by-commas": "Tagları virgül ile ayırarak yazın.",
|
||||
"status": "Durum",
|
||||
"published": "Yayınla",
|
||||
"scheduled-posts": "İleri tarihli yazılar",
|
||||
"statistics": "İstatistikler",
|
||||
"name": "Ad",
|
||||
"email-account-settings":"Posta ayarları",
|
||||
"sender-email": "Gönderen",
|
||||
"emails-will-be-sent-from-this-address":"Postalar bu adresten gönderilecektir.",
|
||||
"bludit-login-access-code": "BLUDIT - Giriş kodunuz",
|
||||
"check-your-inbox-for-your-login-access-code":"Giriş kodu için gelen kutusuna bakın",
|
||||
"there-was-a-problem-sending-the-email":"Email gönderirken bir problem oluştu",
|
||||
"back-to-login-form": "Giriş formuna geri dön",
|
||||
"send-me-a-login-access-code": "Giriş kodu gönder",
|
||||
"get-login-access-code": "Giriş kodu al",
|
||||
"email-notification-login-access-code": "<p>{{WEBSITE_NAME}} adlı sitenizden gönderildi </p><p>Giriş kodu isteğinde bulundunuz.Yandaki linke tıklayın:</p><p>{{LINK}}</p>",
|
||||
"there-are-no-scheduled-posts": "İleri tarihli yazı bulunmamaktadır.",
|
||||
"show-password": "Şifreyi göster",
|
||||
"edit-or-remove-your=pages": "Sayfalarını düzenle veya sil.",
|
||||
"edit-or-remove-your-blogs-posts": "Yazılarını sil veya düzenle.",
|
||||
"general-settings": "Genel ayarlar",
|
||||
"advanced-settings": "Gelişmiş ayarlar",
|
||||
"manage-users": "Kullanıcıları yönet",
|
||||
"view-and-edit-your-profile": "Profilini görüntüle ve düzelt.",
|
||||
|
||||
"password-must-be-at-least-6-characters-long": "Şifre en az 6 karakter uzunluğunda olmalıdır",
|
||||
"images": "Resimler",
|
||||
"upload-image": "Resim yükle",
|
||||
"drag-and-drop-or-click-here": "Sürükle bırak veya buraya tıkla",
|
||||
"insert-image": "Resim ekle",
|
||||
"supported-image-file-types": "Desteklenen resim formatları",
|
||||
"date-format": "Tarih formatı",
|
||||
"time-format": "Saat formatı",
|
||||
"chat-with-developers-and-users-on-gitter":"Geliştiriciler ve kullanıcılarla konuşmak için [Gitter](https://gitter.im/dignajar/bludit) adresini ziyaret et",
|
||||
"this-is-a-brief-description-of-yourself-our-your-site":"Bu kısım siten hakkında bilgi verir.Burayı değiştirmek ve düzenlemek için admin->eklentiler->tanımı düzenle",
|
||||
"profile-picture": "Profil resmi",
|
||||
"the-about-page-is-very-important": "Bu sayfa potansiyel müşteriler ve ortaklar için oldukça önemli ve güçlü bir araçtır. Bu siteyi kimin yaptığını merak edenler ilk olarak hakkında kısmına bakarlar.",
|
||||
"change-this-pages-content-on-the-admin-panel": "Bu sayfanın içeriğini düzenlemek için admin paneli -> yönet -> sayfalar -> hakkında sayfası .",
|
||||
"about-your-site-or-yourself": "Site veya senin hakkında",
|
||||
"welcome-to-bludit": "Bludit'e Hoşgeldiniz"
|
||||
}
|
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
"native": "Українська (Україна)",
|
||||
"english-name": "Ukrainian",
|
||||
"last-update": "2015-11-19",
|
||||
"last-update": "2015-12-02",
|
||||
"author": "Allec Bernz",
|
||||
"email": "admin@allec.info",
|
||||
"website": "allec.info"
|
||||
|
@ -213,5 +213,10 @@
|
|||
"the-about-page-is-very-important": "Сторінка про сайт є важливим і потужним інструментом для потенційних клієнтів і партнерів. Для тих, кому цікаво, хто стоїть за сайтом, ваша сторінка про сайт є першим джерелом інформації.",
|
||||
"change-this-pages-content-on-the-admin-panel": "Щоб змінити зміст цієї сторінки зайдіть в панель адміністратора, керування, сторінки та натисніть кнопку Про сайт.",
|
||||
"about-your-site-or-yourself": "Про Ваш сайт або про Вас",
|
||||
"welcome-to-bludit": "Ласкаво просимо до Bludit"
|
||||
"welcome-to-bludit": "Ласкаво просимо до Bludit",
|
||||
|
||||
"site-information": "Інформація про сайт",
|
||||
"date-and-time-formats": "Формати дати й часу",
|
||||
"activate": "Активувати",
|
||||
"deactivate": "Деактивувати"
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
"native": "Traditional Chinese (Taiwan)",
|
||||
"english-name": "Traditional Chinese",
|
||||
"last-update": "2015-11-21",
|
||||
"last-update": "2015-12-10",
|
||||
"author": "Ethan Chen",
|
||||
"email": "ethan42411@gmail.com",
|
||||
"website": "http://single4.ml"
|
||||
|
@ -212,5 +212,10 @@
|
|||
"the-about-page-is-very-important": "這個關於頁面是對於使用者與合作夥伴非常重要、非常有用的工具。對於那些不了解您網站內容的人,您的關於頁面將會是他們第一個閱讀的頁面。",
|
||||
"change-this-pages-content-on-the-admin-panel": "在管理介面中更改此頁面的內容,管理/頁面,接著點選關於頁面。",
|
||||
"about-your-site-or-yourself": "關於您的網站或是您自己",
|
||||
"welcome-to-bludit": "歡迎使用Bludit"
|
||||
"welcome-to-bludit": "歡迎使用Bludit",
|
||||
|
||||
"site-information": "網站資訊",
|
||||
"date-and-time-formats": "日期與時間格式",
|
||||
"activate": "啟用",
|
||||
"deactivate": "關閉"
|
||||
}
|
||||
|
|
|
@ -2,11 +2,6 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "За мен",
|
||||
"description": "Кратко описание за вашия сайт или за себе си.",
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.6",
|
||||
"releaseDate": "2015-11-13"
|
||||
"description": "Кратко описание за вашия сайт или за себе си."
|
||||
}
|
||||
}
|
|
@ -2,11 +2,6 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "Über",
|
||||
"description": "Kurzer Text über die Website oder zu dir.",
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.6",
|
||||
"releaseDate": "2015-11-13"
|
||||
"description": "Kurzer Text über die Website oder zu dir."
|
||||
}
|
||||
}
|
|
@ -6,7 +6,7 @@
|
|||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.6",
|
||||
"releaseDate": "2015-11-13"
|
||||
"version": "0.7",
|
||||
"releaseDate": "2015-12-01"
|
||||
}
|
||||
}
|
|
@ -2,6 +2,6 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "Acerca de",
|
||||
"description": "Pequeña descripcion sobre tu mismo o sobre tu sitio."
|
||||
"description": "Breve descripción de ti mismo o sobre tu sitio."
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Hakkında",
|
||||
"description": "Senin veya siten hakkında kısa bilgiler",
|
||||
}
|
||||
}
|
|
@ -29,8 +29,6 @@ class pluginAbout extends Plugin {
|
|||
|
||||
public function siteSidebar()
|
||||
{
|
||||
global $Language;
|
||||
global $dbTags;
|
||||
global $Url;
|
||||
|
||||
$filter = $Url->filters('tag');
|
||||
|
@ -38,7 +36,7 @@ class pluginAbout extends Plugin {
|
|||
$html = '<div class="plugin plugin-about">';
|
||||
$html .= '<h2>'.$this->getDbField('label').'</h2>';
|
||||
$html .= '<div class="plugin-content">';
|
||||
$html .= $this->getDbField('text');
|
||||
$html .= nl2br($this->getDbField('text'));
|
||||
$html .= '</div>';
|
||||
$html .= '</div>';
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.7",
|
||||
"releaseDate": "2015-11-28"
|
||||
"releaseDate": "2015-12-01"
|
||||
},
|
||||
"disqus-shortname": "Disqus shortname",
|
||||
"enable-disqus-on-pages": "Enable Disqus on pages",
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Disqus yorum sistemi",
|
||||
"description": "Diqus siteler için yorum hostingi yapan bir hostingdir.Eklentiyi kullanmadan önce Disqus.com adresine kayıt olmanız gerekmektedir.",
|
||||
},
|
||||
"disqus-shortname": "Disqus",
|
||||
"enable-disqus-on-pages": "Sayfalar için Disqus'ı etkinleştir.",
|
||||
"enable-disqus-on-posts": "Yazılar için Disqus'ı etkinleştir.",
|
||||
"enable-disqus-on-default-home-page": "Geçerli anasayfa için Disqus'ı etkinleştir."
|
||||
}
|
|
@ -6,8 +6,8 @@
|
|||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.6",
|
||||
"releaseDate": "2015-11-13"
|
||||
"version": "0.7",
|
||||
"releaseDate": "2015-12-01"
|
||||
},
|
||||
"google-webmasters-tools": "Google Webmasters tools",
|
||||
"google-analytics-tracking-id": "Google Analytics Tracking ID",
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Google Araçları",
|
||||
"description": "Bu eklenti Google Webmaster Araçlarını kullanabilmeniz ve sitenizin Google Analytics tarafından incelenebilmesi için geçerli bir meta tag ve Javascript kodu oluşturur.",
|
||||
},
|
||||
"google-webmasters-tools": "Google Webmaster Araçları",
|
||||
"google-analytics-tracking-id": "Google Analytics İzleme No",
|
||||
"complete-this-field-with-the-google-site-verification": "Google Site Doğrulama ile bu alanı doldurarak sitenizi doğrulayın",
|
||||
"complete-this-field-with-the-tracking-id": "Bu alanı İzleme No ile doldurarak Google Analytics için Javascript kodu oluşturun."
|
||||
}
|
|
@ -2,12 +2,7 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "Режим на поддръжка",
|
||||
"description": "Поставете вашия сайт на режим на поддръжка.",
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.6",
|
||||
"releaseDate": "2015-11-13"
|
||||
"description": "Поставете вашия сайт на режим на поддръжка."
|
||||
},
|
||||
|
||||
"enable-maintence-mode": "Активиране режим на поддръжка ",
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.6",
|
||||
"releaseDate": "2015-11-13"
|
||||
"version": "0.7",
|
||||
"releaseDate": "2015-12-01"
|
||||
},
|
||||
|
||||
"enable-maintence-mode": "Enable maintence mode",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "Modo mantenimiento",
|
||||
"description": "Configurar el sitio en modo mantenimiento, se puede acceder al panel de administración mientras tanto."
|
||||
"description": "Configura el sitio en modo mantenimiento, se puede acceder al panel de administración mientras tanto."
|
||||
},
|
||||
|
||||
"enable-maintence-mode": "Habilitar modo mantenimiento",
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Bakım Modu",
|
||||
"description": "Sitenizi bakım moduna alın, admin paneline erişmeye devam edebilirsiniz.",
|
||||
},
|
||||
|
||||
"enable-maintence-mode": "Bakım modunu etkinleştir.",
|
||||
"message": "Mesaj"
|
||||
}
|
|
@ -2,11 +2,6 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "Open Graph",
|
||||
"description": "Open Graph ви позволява да свържете вашето съдържание със социални мрежи.",
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.6",
|
||||
"releaseDate": "2015-11-13"
|
||||
"description": "Open Graph ви позволява да свържете вашето съдържание със социални мрежи."
|
||||
}
|
||||
}
|
|
@ -7,6 +7,6 @@
|
|||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.7",
|
||||
"releaseDate": "2015-11-28"
|
||||
"releaseDate": "2015-12-01"
|
||||
}
|
||||
}
|
|
@ -2,6 +2,6 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "Open Graph",
|
||||
"description": "Utiliza este plugin para mejorar las publicaciones en las redes sociales."
|
||||
"description": "Mejora las publicaciones en las redes sociales con este plugin."
|
||||
}
|
||||
}
|
|
@ -2,12 +2,7 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "Страници списък",
|
||||
"description": "Показва списък на страниците.",
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.6",
|
||||
"releaseDate": "2015-11-13"
|
||||
"description": "Показва списък на страниците."
|
||||
},
|
||||
|
||||
"home": "Начало",
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.6",
|
||||
"releaseDate": "2015-11-13"
|
||||
"version": "0.7",
|
||||
"releaseDate": "2015-12-01"
|
||||
},
|
||||
|
||||
"home": "Home",
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Sayfa listesi",
|
||||
"description": "Sayfaları listeler.",
|
||||
},
|
||||
|
||||
"home": "Anasayfa",
|
||||
"show-home-link": "Anasayfa linkini göster"
|
||||
}
|
|
@ -2,12 +2,7 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "SimpleMDE",
|
||||
"description": "Един прост и красив редактор с поддръжка на JavaScript и Мarkdown от WesCossick. Адаптиран от Diego Najar за Bludit. ",
|
||||
"author": "NextStepWebs",
|
||||
"email": "",
|
||||
"website": "https://github.com/NextStepWebs/simplemde-markdown-editor",
|
||||
"version": "1.8.1",
|
||||
"releaseDate": "2015-11-13"
|
||||
"description": "Един прост и красив редактор с поддръжка на JavaScript и Мarkdown от WesCossick. Адаптиран от Diego Najar за Bludit. "
|
||||
},
|
||||
"toolbar": "Панел с инструменти",
|
||||
"tab-size": "Размер на панела"
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "SimpleMDE",
|
||||
"description": "Basit, güzel ve gömülü bir Javascript editörü ,@WesCossick tarafından yapılmıştır. Bludit için uyarlayan Diego Najar.",
|
||||
},
|
||||
"toolbar": "Araçlar",
|
||||
"tab-size": "Boşluk boyutu"
|
||||
}
|
|
@ -2,11 +2,6 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "Етикети",
|
||||
"description": "Покажи всички етикети.",
|
||||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.6",
|
||||
"releaseDate": "2015-11-13"
|
||||
"description": "Покажи всички етикети."
|
||||
}
|
||||
}
|
|
@ -6,7 +6,7 @@
|
|||
"author": "Bludit",
|
||||
"email": "",
|
||||
"website": "https://github.com/dignajar/bludit-plugins",
|
||||
"version": "0.6",
|
||||
"releaseDate": "2015-11-13"
|
||||
"version": "0.7",
|
||||
"releaseDate": "2015-12-01"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Tag listesi",
|
||||
"description": "Bütün tagları gösterir.",
|
||||
}
|
||||
}
|
|
@ -2,11 +2,6 @@
|
|||
"plugin-data":
|
||||
{
|
||||
"name": "TinyMCE",
|
||||
"description": "TinyMCE ist ein einfacher HTML-Editor mit zahlreichen Plugins Und Anpassungsmöglichkeiten.",
|
||||
"author": "TinyMCE",
|
||||
"email": "",
|
||||
"website": "http://www.tinymce.com",
|
||||
"version": "4.3",
|
||||
"releaseDate": "2015-11-29"
|
||||
"description": "TinyMCE ist ein einfacher HTML-Editor mit zahlreichen Plugins Und Anpassungsmöglichkeiten."
|
||||
}
|
||||
}
|
|
@ -6,7 +6,7 @@
|
|||
"author": "TinyMCE",
|
||||
"email": "",
|
||||
"website": "http://www.tinymce.com",
|
||||
"version": "4.3",
|
||||
"releaseDate": "2015-11-29"
|
||||
"version": "4.3.1",
|
||||
"releaseDate": "2015-12-08"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "TinyMCE",
|
||||
"description": "Tinymce birden çok eklentisi ve kişiselleştirilmesiyle oldukça basit bir HTML editörüdür.",
|
||||
}
|
||||
}
|
|
@ -12,7 +12,7 @@ class pluginTinymce extends Plugin {
|
|||
public function init()
|
||||
{
|
||||
$this->dbFields = array(
|
||||
'plugins'=>'autoresize, fullscreen, pagebreak, link, textcolor, code, image',
|
||||
'plugins'=>'autoresize, fullscreen, pagebreak, link, textcolor, code, image, paste',
|
||||
'toolbar'=>'bold italic underline strikethrough | alignleft aligncenter alignright | bullist numlist | styleselect | link forecolor backcolor removeformat image | pagebreak code fullscreen'
|
||||
);
|
||||
}
|
||||
|
@ -65,20 +65,32 @@ class pluginTinymce extends Plugin {
|
|||
// Load CSS and JS only on Controllers in array.
|
||||
if(in_array($layout['controller'], $this->loadWhenController))
|
||||
{
|
||||
$language = $Site->shortLanguage();
|
||||
$pluginPath = $this->htmlPath();
|
||||
|
||||
$language = '';
|
||||
if($Site->shortLanguage()!=='en') {
|
||||
if(file_exists($this->phpPath().'tinymce/langs/'.$Site->shortLanguage().'.js')) {
|
||||
$language = 'language_url:"'.$pluginPath.'tinymce/langs/'.$Site->shortLanguage().'.js",';
|
||||
}
|
||||
}
|
||||
|
||||
$html = '<script>$(document).ready(function() { ';
|
||||
$html .= 'tinymce.init({
|
||||
selector: "#jscontent",
|
||||
cache_suffix: "?v='.$this->version().'",
|
||||
element_format : "html",
|
||||
entity_encoding : "raw",
|
||||
schema: "html5",
|
||||
extended_valid_elements : "a[class|name|href|target|title|onclick|rel],script[type|src],iframe[src|style|width|height|scrolling|marginwidth|marginheight|frameborder],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name]",
|
||||
plugins: "'.$this->getDbField('plugins').'",
|
||||
toolbar: "'.$this->getDbField('toolbar').'",
|
||||
content_css: "'.$pluginPath.'css/editor.css?version='.$this->version().'",
|
||||
content_css: "'.$pluginPath.'css/editor.css",
|
||||
theme: "modern",
|
||||
height:"400px",
|
||||
width:"100%",
|
||||
statusbar: false,
|
||||
menubar:false,
|
||||
'.$language.'
|
||||
browser_spellcheck: true,
|
||||
autoresize_bottom_margin: "50",
|
||||
pagebreak_separator: "'.PAGE_BREAK.'",
|
||||
|
|
|
@ -0,0 +1,219 @@
|
|||
tinymce.addI18n('bg_BG',{
|
||||
"Cut": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435",
|
||||
"Heading 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5",
|
||||
"Header 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448\u0438\u044f\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u043a\u043b\u0438\u043f\u0431\u043e\u0440\u0434\u0430. \u0412\u043c\u0435\u0441\u0442\u043e \u0442\u043e\u0432\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u043a\u043b\u0430\u0432\u0438\u0448\u043d\u0438\u0442\u0435 \u043a\u043e\u043c\u0431\u0438\u043d\u0430\u0446\u0438\u0438 Ctrl+X (\u0437\u0430 \u0438\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435), Ctrl+C (\u0437\u0430 \u043a\u043e\u043f\u0438\u0440\u0430\u043d\u0435) \u0438 Ctrl+V (\u0437\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435).",
|
||||
"Heading 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4",
|
||||
"Div": "\u0411\u043b\u043e\u043a",
|
||||
"Heading 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2",
|
||||
"Paste": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435",
|
||||
"Close": "\u0417\u0430\u0442\u0432\u0430\u0440\u044f\u043d\u0435",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
||||
"Pre": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u043d\u043e \u043e\u0444\u043e\u0440\u043c\u0435\u043d \u0442\u0435\u043a\u0441\u0442",
|
||||
"Align right": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u0434\u044f\u0441\u043d\u043e",
|
||||
"New document": "\u041d\u043e\u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442",
|
||||
"Numbered list": "\u041d\u043e\u043c\u0435\u0440\u0438\u0440\u0430\u043d \u0441\u043f\u0438\u0441\u044a\u043a",
|
||||
"Heading 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1",
|
||||
"Headings": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
|
||||
"Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435",
|
||||
"Headers": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
|
||||
"Select all": "\u041c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0446\u044f\u043b\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||
"Header 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3",
|
||||
"Blocks": "\u0411\u043b\u043e\u043a\u043e\u0432\u0435",
|
||||
"Undo": "\u0412\u044a\u0440\u043d\u0438",
|
||||
"Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u0442\u0430\u0432\u0430\u043d\u0435",
|
||||
"Bullet list": "\u0421\u043f\u0438\u0441\u044a\u043a \u0441 \u0432\u043e\u0434\u0430\u0447\u0438",
|
||||
"Header 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1",
|
||||
"Superscript": "\u0413\u043e\u0440\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Clear formatting": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e",
|
||||
"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||
"Subscript": "\u0414\u043e\u043b\u0435\u043d \u0438\u043d\u0434\u0435\u043a\u0441",
|
||||
"Header 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6",
|
||||
"Redo": "\u041e\u0442\u043c\u0435\u043d\u0438",
|
||||
"Paragraph": "\u041f\u0430\u0440\u0430\u0433\u0440\u0430\u0444",
|
||||
"Ok": "\u0414\u043e\u0431\u0440\u0435",
|
||||
"Bold": "\u0423\u0434\u0435\u0431\u0435\u043b\u0435\u043d (\u043f\u043e\u043b\u0443\u0447\u0435\u0440)",
|
||||
"Code": "\u041a\u043e\u0434",
|
||||
"Italic": "\u041d\u0430\u043a\u043b\u043e\u043d\u0435\u043d (\u043a\u0443\u0440\u0441\u0438\u0432)",
|
||||
"Align center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e",
|
||||
"Header 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5",
|
||||
"Heading 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6",
|
||||
"Heading 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3",
|
||||
"Decrease indent": "\u041d\u0430\u043c\u0430\u043b\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0441\u0442\u044a\u043f\u0430",
|
||||
"Header 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435\u0442\u043e \u0432 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0435 \u0432 \u043e\u0431\u0438\u043a\u043d\u043e\u0432\u0435\u043d \u0440\u0435\u0436\u0438\u043c. \u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e \u0449\u0435 \u0431\u044a\u0434\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d\u043e \u043a\u0430\u0442\u043e \u043d\u0435\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442, \u0434\u043e\u043a\u0430\u0442\u043e \u0438\u0437\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0442\u0430\u0437\u0438 \u043e\u043f\u0446\u0438\u044f.",
|
||||
"Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u0442\u0430\u043d",
|
||||
"Cancel": "\u041e\u0442\u043a\u0430\u0437",
|
||||
"Justify": "\u0414\u0432\u0443\u0441\u0442\u0440\u0430\u043d\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Inline": "\u041d\u0430 \u0435\u0434\u0438\u043d \u0440\u0435\u0434",
|
||||
"Copy": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435",
|
||||
"Align left": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435 \u043e\u0442\u043b\u044f\u0432\u043e",
|
||||
"Visual aids": "\u0412\u0438\u0437\u0443\u0430\u043b\u043d\u043e \u043e\u0442\u043a\u0440\u043e\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0438 \u0431\u0435\u0437 \u043a\u0430\u043d\u0442\u043e\u0432\u0435 (\u0440\u0430\u043c\u043a\u0438)",
|
||||
"Lower Greek": "\u041c\u0430\u043b\u043a\u0438 \u0433\u0440\u044a\u0446\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Square": "\u0417\u0430\u043f\u044a\u043b\u043d\u0435\u043d\u0438 \u043a\u0432\u0430\u0434\u0440\u0430\u0442\u0438",
|
||||
"Default": "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435",
|
||||
"Lower Alpha": "\u041c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Circle": "\u041e\u043a\u0440\u044a\u0436\u043d\u043e\u0441\u0442\u0438",
|
||||
"Disc": "\u041a\u0440\u044a\u0433\u0447\u0435\u0442\u0430",
|
||||
"Upper Alpha": "\u0413\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Upper Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Lower Roman": "\u0420\u0438\u043c\u0441\u043a\u0438 \u0447\u0438\u0441\u043b\u0430 \u0441 \u043c\u0430\u043b\u043a\u0438 \u0431\u0443\u043a\u0432\u0438",
|
||||
"Name": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
"Anchor": "\u041a\u043e\u0442\u0432\u0430 (\u0432\u0440\u044a\u0437\u043a\u0430 \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430)",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0412 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0438\u043c\u0430 \u043d\u0435\u0437\u0430\u043f\u0430\u0437\u0435\u043d\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438. \u0429\u0435 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435 \u043b\u0438?",
|
||||
"Restore last draft": "\u0412\u044a\u0437\u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u0447\u0435\u0440\u043d\u043e\u0432\u0430",
|
||||
"Special character": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u0435\u043d \u0437\u043d\u0430\u043a",
|
||||
"Source code": "\u0418\u0437\u0445\u043e\u0434\u0435\u043d \u043a\u043e\u0434 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430 \u0432 HTML",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u0426\u0432\u044f\u0442",
|
||||
"Right to left": "\u041e\u0442\u0434\u044f\u0441\u043d\u043e \u043d\u0430\u043b\u044f\u0432\u043e",
|
||||
"Left to right": "\u041e\u0442\u043b\u044f\u0432\u043e \u043d\u0430\u0434\u044f\u0441\u043d\u043e",
|
||||
"Emoticons": "\u0415\u043c\u043e\u0442\u0438\u043a\u043e\u043d\u0438",
|
||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438 \u043d\u0430 \u0443\u0435\u0431 \u0442\u044a\u0440\u0441\u0430\u0447\u043a\u0438",
|
||||
"Document properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||
"Title": "\u041d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0438 \u0434\u0443\u043c\u0438",
|
||||
"Encoding": "\u041a\u043e\u0434\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0437\u043d\u0430\u0446\u0438\u0442\u0435",
|
||||
"Description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
|
||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||
"Fullscreen": "\u041d\u0430 \u0446\u044f\u043b \u0435\u043a\u0440\u0430\u043d",
|
||||
"Horizontal line": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u0430 \u0447\u0435\u0440\u0442\u0430",
|
||||
"Horizontal space": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e",
|
||||
"Insert\/edit image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430",
|
||||
"General": "\u041e\u0431\u0449\u043e",
|
||||
"Advanced": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e",
|
||||
"Source": "\u0410\u0434\u0440\u0435\u0441",
|
||||
"Border": "\u041a\u0430\u043d\u0442 (\u0440\u0430\u043c\u043a\u0430)",
|
||||
"Constrain proportions": "\u0417\u0430\u0432\u0430\u0437\u043d\u0430\u0432\u0435 \u043d\u0430 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0438\u0438\u0442\u0435",
|
||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e",
|
||||
"Image description": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0430\u0442\u0430",
|
||||
"Style": "\u0421\u0442\u0438\u043b",
|
||||
"Dimensions": "\u0420\u0430\u0437\u043c\u0435\u0440",
|
||||
"Insert image": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
|
||||
"Zoom in": "\u041f\u0440\u0438\u0431\u043b\u0438\u0436\u0438",
|
||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Back": "\u041d\u0430\u0437\u0430\u0434",
|
||||
"Gamma": "\u0413\u0430\u043c\u0430",
|
||||
"Flip horizontally": "\u041e\u0431\u044a\u0440\u043d\u0438 \u0445\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e",
|
||||
"Resize": "\u041f\u0440\u0435\u043e\u0440\u0430\u0437\u043c\u0435\u0440\u044f\u0432\u0430\u043d\u0435",
|
||||
"Sharpen": "\u0418\u0437\u043e\u0441\u0442\u0440\u044f\u043d\u0435",
|
||||
"Zoom out": "\u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0438",
|
||||
"Image options": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
|
||||
"Apply": "\u041f\u0440\u0438\u043b\u043e\u0436\u0438",
|
||||
"Brightness": "\u042f\u0440\u043a\u043e\u0441\u0442",
|
||||
"Rotate clockwise": "\u0417\u0430\u0432\u044a\u0440\u0442\u0430\u043d\u0435 \u043f\u043e \u0447\u0430\u0441\u043e\u0432\u043d\u0438\u043a\u0430",
|
||||
"Rotate counterclockwise": "\u0417\u0430\u0432\u044a\u0440\u0442\u0430\u043d\u0435 \u043e\u0431\u0440\u0430\u0442\u043d\u043e \u043d\u0430 \u0447\u0430\u0441\u043e\u0432\u043d\u0438\u043a\u0430",
|
||||
"Edit image": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
|
||||
"Color levels": "\u0426\u0432\u0435\u0442\u043d\u0438 \u043d\u0438\u0432\u0430",
|
||||
"Crop": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435",
|
||||
"Orientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
|
||||
"Flip vertically": "\u041e\u0431\u044a\u0440\u043d\u0438 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e",
|
||||
"Invert": "\u0418\u043d\u0432\u0435\u0440\u0441\u0438\u044f",
|
||||
"Insert date\/time": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0434\u0430\u0442\u0430\/\u0447\u0430\u0441",
|
||||
"Remove link": "\u041f\u0440\u0435\u043c\u0430\u0445\u0432\u0430\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430",
|
||||
"Url": "\u0410\u0434\u0440\u0435\u0441 (URL)",
|
||||
"Text to display": "\u0422\u0435\u043a\u0441\u0442",
|
||||
"Anchors": "\u041a\u043e\u0442\u0432\u0438",
|
||||
"Insert link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)",
|
||||
"New window": "\u0412 \u043d\u043e\u0432 \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446 (\u043f\u043e\u0434\u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446)",
|
||||
"None": "\u0411\u0435\u0437",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u0432\u044a\u043d\u0448\u0435\u043d \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f http:\/\/ \u043f\u0440\u0435\u0444\u0438\u043a\u0441?",
|
||||
"Target": "\u0426\u0435\u043b \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL \u0430\u0434\u0440\u0435\u0441\u044a\u0442, \u043a\u043e\u0439\u0442\u043e \u0432\u044a\u0432\u0434\u043e\u0445\u0442\u0435 \u043f\u0440\u0438\u043b\u0438\u0447\u0430 \u043d\u0430 \u0435-\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441. \u0418\u0441\u043a\u0430\u0442\u0435 \u043b\u0438 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438\u044f mailto: \u043f\u0440\u0435\u0444\u0438\u043a\u0441?",
|
||||
"Insert\/edit link": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0445\u0438\u043f\u0435\u0440\u0432\u0440\u044a\u0437\u043a\u0430 (\u043b\u0438\u043d\u043a)",
|
||||
"Insert\/edit video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435\/\u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u0432\u0438\u0434\u0435\u043e",
|
||||
"Poster": "\u041f\u043e\u0441\u0442\u0435\u0440",
|
||||
"Alternative source": "\u0410\u043b\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u0435\u043d \u0430\u0434\u0440\u0435\u0441",
|
||||
"Paste your embed code below:": "\u041f\u043e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043a\u043e\u0434\u0430 \u0437\u0430 \u0432\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 \u0432 \u043f\u043e\u043b\u0435\u0442\u043e \u043f\u043e-\u0434\u043e\u043b\u0443:",
|
||||
"Insert video": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0432\u0438\u0434\u0435\u043e",
|
||||
"Embed": "\u0412\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435",
|
||||
"Nonbreaking space": "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b",
|
||||
"Page break": "\u041d\u043e\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430",
|
||||
"Paste as text": "\u041f\u043e\u0441\u0442\u0430\u0432\u0438 \u043a\u0430\u0442\u043e \u0442\u0435\u043a\u0441\u0442",
|
||||
"Preview": "\u041f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u0435\u043d \u0438\u0437\u0433\u043b\u0435\u0434",
|
||||
"Print": "\u041f\u0435\u0447\u0430\u0442",
|
||||
"Save": "\u0421\u044a\u0445\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Could not find the specified string.": "\u0422\u044a\u0440\u0441\u0435\u043d\u0438\u044f\u0442 \u0442\u0435\u043a\u0441\u0442 \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d.",
|
||||
"Replace": "\u0417\u0430\u043c\u044f\u043d\u0430",
|
||||
"Next": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449",
|
||||
"Whole words": "\u0421\u0430\u043c\u043e \u0446\u0435\u043b\u0438 \u0434\u0443\u043c\u0438",
|
||||
"Find and replace": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0438 \u0437\u0430\u043c\u044f\u043d\u0430",
|
||||
"Replace with": "\u0417\u0430\u043c\u044f\u043d\u0430 \u0441",
|
||||
"Find": "\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0437\u0430",
|
||||
"Replace all": "\u0417\u0430\u043c\u044f\u043d\u0430 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u0438 \u0441\u0440\u0435\u0449\u0430\u043d\u0438\u044f",
|
||||
"Match case": "\u0421\u044a\u0432\u043f\u0430\u0434\u0435\u043d\u0438\u0435 \u043d\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u044a\u0440\u0430 (\u043c\u0430\u043b\u043a\u0438\/\u0433\u043b\u0430\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438)",
|
||||
"Prev": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d",
|
||||
"Spellcheck": "\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043d\u0430 \u043f\u0440\u0430\u0432\u043e\u043f\u0438\u0441\u0430",
|
||||
"Finish": "\u041a\u0440\u0430\u0439",
|
||||
"Ignore all": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u043e",
|
||||
"Ignore": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043d\u0435",
|
||||
"Add to Dictionary": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u0440\u0435\u0447\u043d\u0438\u043a\u0430",
|
||||
"Insert row before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438",
|
||||
"Rows": "\u0420\u0435\u0434\u043e\u0432\u0435",
|
||||
"Height": "\u0412\u0438\u0441\u043e\u0447\u0438\u043d\u0430",
|
||||
"Paste row after": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434",
|
||||
"Alignment": "\u041f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Border color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0440\u0430\u043c\u043a\u0430\u0442\u0430",
|
||||
"Column group": "Column group",
|
||||
"Row": "\u0420\u0435\u0434",
|
||||
"Insert column before": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u043f\u0440\u0435\u0434\u0438",
|
||||
"Split cell": "\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430",
|
||||
"Cell padding": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u0434\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e",
|
||||
"Cell spacing": "\u0420\u0430\u0437\u0441\u0442\u043e\u044f\u043d\u0438\u0435 \u043c\u0435\u0436\u0434\u0443 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435",
|
||||
"Row type": "\u0422\u0438\u043f \u043d\u0430 \u0440\u0435\u0434\u0430",
|
||||
"Insert table": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430",
|
||||
"Body": "\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 (body)",
|
||||
"Caption": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u0435 \u043f\u0440\u0435\u0434\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
||||
"Footer": "\u0414\u043e\u043b\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (footer)",
|
||||
"Delete row": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434\u0430",
|
||||
"Paste row before": "\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u043f\u0440\u0435\u0434\u0438",
|
||||
"Scope": "\u041e\u0431\u0445\u0432\u0430\u0442",
|
||||
"Delete table": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
||||
"H Align": "\u0425\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Top": "\u0413\u043e\u0440\u0435",
|
||||
"Header cell": "\u0417\u0430\u0433\u043b\u0430\u0432\u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430 (\u0430\u043d\u0442\u0435\u0442\u043a\u0430)",
|
||||
"Column": "\u041a\u043e\u043b\u043e\u043d\u0430",
|
||||
"Row group": "Row group",
|
||||
"Cell": "\u041a\u043b\u0435\u0442\u043a\u0430",
|
||||
"Middle": "\u041f\u043e \u0441\u0440\u0435\u0434\u0430\u0442\u0430",
|
||||
"Cell type": "\u0422\u0438\u043f \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430",
|
||||
"Copy row": "\u041a\u043e\u043f\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434",
|
||||
"Row properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0440\u0435\u0434\u0430",
|
||||
"Table properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0430\u0442\u0430",
|
||||
"Bottom": "\u0414\u043e\u043b\u0443",
|
||||
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u043d\u043e \u043f\u043e\u0434\u0440\u0430\u0432\u043d\u044f\u0432\u0430\u043d\u0435",
|
||||
"Header": "\u0413\u043e\u0440\u0435\u043d \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b (header)",
|
||||
"Right": "\u0414\u044f\u0441\u043d\u043e",
|
||||
"Insert column after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430 \u0441\u043b\u0435\u0434",
|
||||
"Cols": "\u041a\u043e\u043b\u043e\u043d\u0438",
|
||||
"Insert row after": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434 \u0441\u043b\u0435\u0434",
|
||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
||||
"Cell properties": "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u0430 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0430\u0442\u0430",
|
||||
"Left": "\u041b\u044f\u0432\u043e",
|
||||
"Cut row": "\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0440\u0435\u0434",
|
||||
"Delete column": "\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u043b\u043e\u043d\u0430\u0442\u0430",
|
||||
"Center": "\u0426\u0435\u043d\u0442\u0440\u0438\u0440\u0430\u043d\u043e",
|
||||
"Merge cells": "\u0421\u043b\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043b\u0435\u0442\u043a\u0438\u0442\u0435",
|
||||
"Insert template": "\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438",
|
||||
"Background color": "\u0424\u043e\u043d\u043e\u0432 \u0446\u0432\u044f\u0442",
|
||||
"Custom...": "\u0418\u0437\u0431\u0440\u0430\u043d...",
|
||||
"Custom color": "\u0426\u0432\u044f\u0442 \u043f\u043e \u0438\u0437\u0431\u043e\u0440",
|
||||
"No color": "\u0411\u0435\u0437 \u0446\u0432\u044f\u0442",
|
||||
"Text color": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u0431\u043b\u043e\u043a\u043e\u0432\u0435\u0442\u0435",
|
||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u0435\u043f\u0435\u0447\u0430\u0442\u0430\u0435\u043c\u0438 \u0437\u043d\u0430\u0446\u0438",
|
||||
"Words: {0}": "\u0411\u0440\u043e\u0439 \u0434\u0443\u043c\u0438: {0}",
|
||||
"Insert": "\u0412\u043c\u044a\u043a\u0432\u0430\u043d\u0435",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041f\u043e\u043b\u0435 \u0437\u0430 \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d \u0442\u0435\u043a\u0441\u0442. \u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 Alt+F9 \u0437\u0430 \u043c\u0435\u043d\u044e; Alt+F10 \u0437\u0430 \u043b\u0435\u043d\u0442\u0430 \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438; Alt+0 \u0437\u0430 \u043f\u043e\u043c\u043e\u0449.",
|
||||
"Tools": "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438",
|
||||
"View": "\u0418\u0437\u0433\u043b\u0435\u0434",
|
||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u0430",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435"
|
||||
});
|
|
@ -0,0 +1,213 @@
|
|||
tinymce.addI18n('cs_CZ',{
|
||||
"Cut": "Vyjmout",
|
||||
"Heading 5": "Nadpis 5",
|
||||
"Header 2": "Nadpis 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "V\u00e1\u0161 prohl\u00ed\u017ee\u010d nepodporuje p\u0159\u00edm\u00fd p\u0159\u00edstup do schr\u00e1nky. Pou\u017eijte pros\u00edm kl\u00e1vesov\u00e9 zkratky Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Nadpis 4",
|
||||
"Div": "Div (blok)",
|
||||
"Heading 2": "Nadpis 2",
|
||||
"Paste": "Vlo\u017eit",
|
||||
"Close": "Zav\u0159\u00edt",
|
||||
"Font Family": "Rodina p\u00edsma",
|
||||
"Pre": "Pre (p\u0159edform\u00e1tov\u00e1no)",
|
||||
"Align right": "Vpravo",
|
||||
"New document": "Nov\u00fd dokument",
|
||||
"Blockquote": "Citace",
|
||||
"Numbered list": "\u010c\u00edslov\u00e1n\u00ed",
|
||||
"Heading 1": "Nadpis 1",
|
||||
"Headings": "Nadpisy",
|
||||
"Increase indent": "Zv\u011b\u0161it odsazen\u00ed",
|
||||
"Formats": "Form\u00e1ty",
|
||||
"Headers": "Nadpisy",
|
||||
"Select all": "Vybrat v\u0161e",
|
||||
"Header 3": "Nadpis 3",
|
||||
"Blocks": "Blokov\u00e9 zobrazen\u00ed (block)",
|
||||
"Undo": "Zp\u011bt",
|
||||
"Strikethrough": "P\u0159e\u0161krtnut\u00e9",
|
||||
"Bullet list": "Odr\u00e1\u017eky",
|
||||
"Header 1": "Nadpis 1",
|
||||
"Superscript": "Horn\u00ed index",
|
||||
"Clear formatting": "Vymazat form\u00e1tov\u00e1n\u00ed",
|
||||
"Font Sizes": "Velikost p\u00edsma",
|
||||
"Subscript": "Doln\u00ed index",
|
||||
"Header 6": "Nadpis 6",
|
||||
"Redo": "Znovu",
|
||||
"Paragraph": "Odstavec",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Tu\u010dn\u011b",
|
||||
"Code": "Code (k\u00f3d)",
|
||||
"Italic": "Kurz\u00edva",
|
||||
"Align center": "Na st\u0159ed",
|
||||
"Header 5": "Nadpis 5",
|
||||
"Heading 6": "Nadpis 6",
|
||||
"Heading 3": "Nadpis 3",
|
||||
"Decrease indent": "Zmen\u0161it odsazen\u00ed",
|
||||
"Header 4": "Nadpis 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Je zapnuto vkl\u00e1d\u00e1n\u00ed \u010dist\u00e9ho textu. Dokud nebude tato volba vypnuta, bude ve\u0161ker\u00fd obsah vlo\u017een jako \u010dist\u00fd text.",
|
||||
"Underline": "Podtr\u017een\u00e9",
|
||||
"Cancel": "Zru\u0161it",
|
||||
"Justify": "Zarovnat do bloku",
|
||||
"Inline": "\u0158\u00e1dkov\u00e9 zobrazen\u00ed (inline)",
|
||||
"Copy": "Kop\u00edrovat",
|
||||
"Align left": "Vlevo",
|
||||
"Visual aids": "Vizu\u00e1ln\u00ed pom\u016fcky",
|
||||
"Lower Greek": "\u0158eck\u00e1 p\u00edsmena",
|
||||
"Square": "\u010ctvere\u010dek",
|
||||
"Default": "V\u00fdchoz\u00ed",
|
||||
"Lower Alpha": "Mal\u00e1 p\u00edsmena",
|
||||
"Circle": "Kole\u010dko",
|
||||
"Disc": "Punt\u00edk",
|
||||
"Upper Alpha": "Velk\u00e1 p\u00edsmena",
|
||||
"Upper Roman": "\u0158\u00edmsk\u00e9 \u010d\u00edslice",
|
||||
"Lower Roman": "Mal\u00e9 \u0159\u00edmsl\u00e9 \u010d\u00edslice",
|
||||
"Name": "N\u00e1zev",
|
||||
"Anchor": "Kotva",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "M\u00e1te neulo\u017een\u00e9 zm\u011bny. Opravdu chcete opustit str\u00e1nku?",
|
||||
"Restore last draft": "Obnovit posledn\u00ed koncept.",
|
||||
"Special character": "Speci\u00e1ln\u00ed znak",
|
||||
"Source code": "Zdrojov\u00fd k\u00f3d",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Barva",
|
||||
"Right to left": "Zprava doleva",
|
||||
"Left to right": "Zleva doprava",
|
||||
"Emoticons": "Emotikony",
|
||||
"Robots": "Roboti",
|
||||
"Document properties": "Vlastnosti dokumentu",
|
||||
"Title": "Titulek",
|
||||
"Keywords": "Kl\u00ed\u010dov\u00e1 slova",
|
||||
"Encoding": "K\u00f3dov\u00e1n\u00ed",
|
||||
"Description": "Popis",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Celk\u00e1 obrazovka",
|
||||
"Horizontal line": "Vodorovn\u00e1 linka",
|
||||
"Horizontal space": "Horizont\u00e1ln\u00ed mezera",
|
||||
"Insert\/edit image": "Vlo\u017eit \/ upravit obr\u00e1zek",
|
||||
"General": "Obecn\u00e9",
|
||||
"Advanced": "Pokro\u010dil\u00e9",
|
||||
"Source": "URL",
|
||||
"Border": "R\u00e1me\u010dek",
|
||||
"Constrain proportions": "Zachovat proporce",
|
||||
"Vertical space": "Vertik\u00e1ln\u00ed mezera",
|
||||
"Image description": "Popis obr\u00e1zku",
|
||||
"Style": "Styl",
|
||||
"Dimensions": "Rozm\u011bry",
|
||||
"Insert image": "Vlo\u017eit obr\u00e1zek",
|
||||
"Zoom in": "P\u0159ibl\u00ed\u017eit",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Zp\u011bt",
|
||||
"Gamma": "Gama",
|
||||
"Flip horizontally": "P\u0159evr\u00e1tit vodorovn\u011b",
|
||||
"Resize": "Zm\u011bnit velikost",
|
||||
"Sharpen": "Ostrost",
|
||||
"Zoom out": "Odd\u00e1lit",
|
||||
"Image options": "Vlastnosti obr\u00e1zku",
|
||||
"Apply": "Pou\u017e\u00edt",
|
||||
"Brightness": "Jas",
|
||||
"Rotate clockwise": "Oto\u010dit doprava",
|
||||
"Rotate counterclockwise": "Oto\u010dit doleva",
|
||||
"Edit image": "Upravit obr\u00e1zek",
|
||||
"Color levels": "\u00darovn\u011b barev",
|
||||
"Crop": "O\u0159\u00edznout",
|
||||
"Orientation": "Orientace",
|
||||
"Flip vertically": "P\u0159evr\u00e1tit svisle",
|
||||
"Invert": "Invertovat",
|
||||
"Insert date\/time": "Vlo\u017eit datum \/ \u010das",
|
||||
"Remove link": "Odstranit odkaz",
|
||||
"Url": "URL",
|
||||
"Text to display": "Text odkazu",
|
||||
"Anchors": "Kotvy",
|
||||
"Insert link": "Vlo\u017eit odkaz",
|
||||
"New window": "Nov\u00e9 okno",
|
||||
"None": "\u017d\u00e1dn\u00fd",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Zadan\u00e9 URL vypad\u00e1 jako odkaz na jin\u00fd web. Chcete doplnit povinn\u00fd prefix http:\/\/?",
|
||||
"Target": "C\u00edl",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Zadan\u00e9 URL vypad\u00e1 jako e-mailov\u00e1 adresa. Chcete doplnit povinn\u00fd prefix mailto:?",
|
||||
"Insert\/edit link": "Vlo\u017eit \/ upravit odkaz",
|
||||
"Nonbreaking space": "Pevn\u00e1 mezera",
|
||||
"Page break": "Konec str\u00e1nky",
|
||||
"Paste as text": "Vlo\u017eit jako \u010dist\u00fd text",
|
||||
"Preview": "N\u00e1hled",
|
||||
"Print": "Tisk",
|
||||
"Save": "Ulo\u017eit",
|
||||
"Could not find the specified string.": "Zadan\u00fd \u0159et\u011bzec nebyl nalezen.",
|
||||
"Replace": "Nahradit",
|
||||
"Next": "Dal\u0161\u00ed",
|
||||
"Whole words": "Pouze cel\u00e1 slova",
|
||||
"Find and replace": "Naj\u00edt a nahradit",
|
||||
"Replace with": "Nahradit za",
|
||||
"Find": "Naj\u00edt",
|
||||
"Replace all": "Nahradit v\u0161e",
|
||||
"Match case": "Rozli\u0161ovat mal\u00e1 a velk\u00e1 p\u00edsmena",
|
||||
"Prev": "P\u0159edchoz\u00ed",
|
||||
"Spellcheck": "Kontrola pravopisu",
|
||||
"Finish": "Dokon\u010dit",
|
||||
"Ignore all": "Ignorovat v\u0161e",
|
||||
"Ignore": "Ignorovat",
|
||||
"Add to Dictionary": "P\u0159idat do slovn\u00edku",
|
||||
"Insert row before": "Vlo\u017eit \u0159\u00e1dek p\u0159ed",
|
||||
"Rows": "\u0158\u00e1dky",
|
||||
"Height": "V\u00fd\u0161ka",
|
||||
"Paste row after": "Vlo\u017eit \u0159\u00e1dek pod",
|
||||
"Alignment": "Zarovn\u00e1n\u00ed",
|
||||
"Border color": "Barva r\u00e1me\u010dku",
|
||||
"Column group": "Skupina sloupc\u016f",
|
||||
"Row": "\u0158\u00e1dek",
|
||||
"Insert column before": "Vlo\u017eit sloupec vlevo",
|
||||
"Split cell": "Rozd\u011blit bu\u0148ku",
|
||||
"Cell padding": "Vnit\u0159n\u00ed okraj bun\u011bk",
|
||||
"Cell spacing": "Vn\u011bj\u0161\u00ed okraj bun\u011bk",
|
||||
"Row type": "Typ \u0159\u00e1dku",
|
||||
"Insert table": "Vlo\u017eit tabulku",
|
||||
"Body": "T\u011blo",
|
||||
"Caption": "Titulek",
|
||||
"Footer": "Pati\u010dka",
|
||||
"Delete row": "Smazat \u0159\u00e1dek",
|
||||
"Paste row before": "Vlo\u017eit \u0159\u00e1dek nad",
|
||||
"Scope": "Rozsah",
|
||||
"Delete table": "Smazat tabulku",
|
||||
"H Align": "Horizont\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
||||
"Top": "Nahoru",
|
||||
"Header cell": "Hlavi\u010dkov\u00e1 bu\u0148ka",
|
||||
"Column": "Sloupec",
|
||||
"Row group": "Skupina \u0159\u00e1dk\u016f",
|
||||
"Cell": "Bu\u0148ka",
|
||||
"Middle": "Na st\u0159ed",
|
||||
"Cell type": "Typ bu\u0148ky",
|
||||
"Copy row": "Kop\u00edrovat \u0159\u00e1dek",
|
||||
"Row properties": "Vlastnosti \u0159\u00e1dku",
|
||||
"Table properties": "Vlastnosti tabulky",
|
||||
"Bottom": "Dol\u016f",
|
||||
"V Align": "Vertik\u00e1ln\u00ed zarovn\u00e1n\u00ed",
|
||||
"Header": "Hlavi\u010dka",
|
||||
"Right": "Vpravo",
|
||||
"Insert column after": "Vlo\u017eit sloupec vpravo",
|
||||
"Cols": "Sloupce",
|
||||
"Insert row after": "Vlo\u017eit \u0159\u00e1dek za",
|
||||
"Width": "\u0160\u00ed\u0159ka",
|
||||
"Cell properties": "Vlastnosti bu\u0148ky",
|
||||
"Left": "Vlevo",
|
||||
"Cut row": "Vyjmout \u0159\u00e1dek",
|
||||
"Delete column": "Smazat sloupec",
|
||||
"Center": "Na st\u0159ed",
|
||||
"Merge cells": "Slou\u010dit bu\u0148ky",
|
||||
"Insert template": "Vlo\u017eit ze \u0161ablony",
|
||||
"Templates": "\u0160ablony",
|
||||
"Background color": "Barva pozad\u00ed",
|
||||
"Custom...": "Vlastn\u00ed",
|
||||
"Custom color": "Vlastn\u00ed barva",
|
||||
"No color": "Bez barvy",
|
||||
"Text color": "Barva p\u00edsma",
|
||||
"Show blocks": "Uk\u00e1zat bloky",
|
||||
"Show invisible characters": "Uk\u00e1zat skryt\u00e9 znaky",
|
||||
"Words: {0}": "Slova: {0}",
|
||||
"Insert": "Vlo\u017eit",
|
||||
"File": "Soubor",
|
||||
"Edit": "\u00dapravy",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "RTF dokument. Stikn\u011bte ALT-F pro zobrazen\u00ed menu, ALT-F10 pro zobrazen\u00ed n\u00e1strojov\u00e9 li\u0161ty, ALT-0 pro n\u00e1pov\u011bdu.",
|
||||
"Tools": "N\u00e1stroje",
|
||||
"View": "Zobrazit",
|
||||
"Table": "Tabulka",
|
||||
"Format": "Form\u00e1t"
|
||||
});
|
|
@ -0,0 +1,219 @@
|
|||
tinymce.addI18n('de',{
|
||||
"Cut": "Ausschneiden",
|
||||
"Heading 5": "\u00dcberschrift 5",
|
||||
"Header 2": "\u00dcberschrift 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Ihr Browser unterst\u00fctzt leider keinen direkten Zugriff auf die Zwischenablage. Bitte benutzen Sie die Strg + X \/ C \/ V Tastenkombinationen.",
|
||||
"Heading 4": "\u00dcberschrift 4",
|
||||
"Div": "Textblock",
|
||||
"Heading 2": "\u00dcberschrift 2",
|
||||
"Paste": "Einf\u00fcgen",
|
||||
"Close": "Schlie\u00dfen",
|
||||
"Font Family": "Schriftart",
|
||||
"Pre": "Vorformatierter Text",
|
||||
"Align right": "Rechtsb\u00fcndig ausrichten",
|
||||
"New document": "Neues Dokument",
|
||||
"Blockquote": "Zitat",
|
||||
"Numbered list": "Nummerierte Liste",
|
||||
"Heading 1": "\u00dcberschrift 1",
|
||||
"Headings": "\u00dcberschriften",
|
||||
"Increase indent": "Einzug vergr\u00f6\u00dfern",
|
||||
"Formats": "Formate",
|
||||
"Headers": "\u00dcberschriften",
|
||||
"Select all": "Alles ausw\u00e4hlen",
|
||||
"Header 3": "\u00dcberschrift 3",
|
||||
"Blocks": "Absatzformate",
|
||||
"Undo": "R\u00fcckg\u00e4ngig",
|
||||
"Strikethrough": "Durchgestrichen",
|
||||
"Bullet list": "Aufz\u00e4hlung",
|
||||
"Header 1": "\u00dcberschrift 1",
|
||||
"Superscript": "Hochgestellt",
|
||||
"Clear formatting": "Formatierung entfernen",
|
||||
"Font Sizes": "Schriftgr\u00f6\u00dfe",
|
||||
"Subscript": "Tiefgestellt",
|
||||
"Header 6": "\u00dcberschrift 6",
|
||||
"Redo": "Wiederholen",
|
||||
"Paragraph": "Absatz",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Fett",
|
||||
"Code": "Quelltext",
|
||||
"Italic": "Kursiv",
|
||||
"Align center": "Zentriert ausrichten",
|
||||
"Header 5": "\u00dcberschrift 5",
|
||||
"Heading 6": "\u00dcberschrift 6",
|
||||
"Heading 3": "\u00dcberschrift 3",
|
||||
"Decrease indent": "Einzug verkleinern",
|
||||
"Header 4": "\u00dcberschrift 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Einf\u00fcgen ist nun im einfachen Textmodus. Inhalte werden ab jetzt als unformatierter Text eingef\u00fcgt, bis Sie diese Einstellung wieder ausschalten!",
|
||||
"Underline": "Unterstrichen",
|
||||
"Cancel": "Abbrechen",
|
||||
"Justify": "Blocksatz",
|
||||
"Inline": "Zeichenformate",
|
||||
"Copy": "Kopieren",
|
||||
"Align left": "Linksb\u00fcndig ausrichten",
|
||||
"Visual aids": "Visuelle Hilfen",
|
||||
"Lower Greek": "Griechische Kleinbuchstaben",
|
||||
"Square": "Quadrat",
|
||||
"Default": "Standard",
|
||||
"Lower Alpha": "Kleinbuchstaben",
|
||||
"Circle": "Kreis",
|
||||
"Disc": "Punkt",
|
||||
"Upper Alpha": "Gro\u00dfbuchstaben",
|
||||
"Upper Roman": "R\u00f6mische Zahlen (Gro\u00dfbuchstaben)",
|
||||
"Lower Roman": "R\u00f6mische Zahlen (Kleinbuchstaben)",
|
||||
"Name": "Name",
|
||||
"Anchor": "Textmarke",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Die \u00c4nderungen wurden noch nicht gespeichert, sind Sie sicher, dass Sie diese Seite verlassen wollen?",
|
||||
"Restore last draft": "Letzten Entwurf wiederherstellen",
|
||||
"Special character": "Sonderzeichen",
|
||||
"Source code": "Quelltext",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Farbe",
|
||||
"Right to left": "Von rechts nach links",
|
||||
"Left to right": "Von links nach rechts",
|
||||
"Emoticons": "Emoticons",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Dokumenteigenschaften",
|
||||
"Title": "Titel",
|
||||
"Keywords": "Sch\u00fcsselw\u00f6rter",
|
||||
"Encoding": "Zeichenkodierung",
|
||||
"Description": "Beschreibung",
|
||||
"Author": "Verfasser",
|
||||
"Fullscreen": "Vollbild",
|
||||
"Horizontal line": "Horizontale Linie",
|
||||
"Horizontal space": "Horizontaler Abstand",
|
||||
"Insert\/edit image": "Bild einf\u00fcgen\/bearbeiten",
|
||||
"General": "Allgemein",
|
||||
"Advanced": "Erweitert",
|
||||
"Source": "Quelle",
|
||||
"Border": "Rahmen",
|
||||
"Constrain proportions": "Seitenverh\u00e4ltnis beibehalten",
|
||||
"Vertical space": "Vertikaler Abstand",
|
||||
"Image description": "Bildbeschreibung",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Abmessungen",
|
||||
"Insert image": "Bild einf\u00fcgen",
|
||||
"Zoom in": "Ansicht vergr\u00f6\u00dfern",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Zur\u00fcck",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Horizontal spiegeln",
|
||||
"Resize": "Skalieren",
|
||||
"Sharpen": "Sch\u00e4rfen",
|
||||
"Zoom out": "Ansicht verkleinern",
|
||||
"Image options": "Bildeigenschaften",
|
||||
"Apply": "Anwenden",
|
||||
"Brightness": "Helligkeit",
|
||||
"Rotate clockwise": "Im Uhrzeigersinn drehen",
|
||||
"Rotate counterclockwise": "Gegen den Uhrzeigersinn drehen",
|
||||
"Edit image": "Bild bearbeiten",
|
||||
"Color levels": "Farbwerte",
|
||||
"Crop": "Bescheiden",
|
||||
"Orientation": "Ausrichtung",
|
||||
"Flip vertically": "Vertikal spiegeln",
|
||||
"Invert": "Invertieren",
|
||||
"Insert date\/time": "Datum\/Uhrzeit einf\u00fcgen ",
|
||||
"Remove link": "Link entfernen",
|
||||
"Url": "URL",
|
||||
"Text to display": "Anzuzeigender Text",
|
||||
"Anchors": "Textmarken",
|
||||
"Insert link": "Link einf\u00fcgen",
|
||||
"New window": "Neues Fenster",
|
||||
"None": "Keine",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Diese Adresse scheint ein externer Link zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"http:\/\/\" voranstellen?",
|
||||
"Target": "Ziel",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00f6chten Sie das dazu ben\u00f6tigte \"mailto:\" voranstellen?",
|
||||
"Insert\/edit link": "Link einf\u00fcgen\/bearbeiten",
|
||||
"Insert\/edit video": "Video einf\u00fcgen\/bearbeiten",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternative Quelle",
|
||||
"Paste your embed code below:": "F\u00fcgen Sie Ihren Einbettungscode hier ein:",
|
||||
"Insert video": "Video einf\u00fcgen",
|
||||
"Embed": "Einbetten",
|
||||
"Nonbreaking space": "Gesch\u00fctztes Leerzeichen",
|
||||
"Page break": "Seitenumbruch",
|
||||
"Paste as text": "Als Text einf\u00fcgen",
|
||||
"Preview": "Vorschau",
|
||||
"Print": "Drucken",
|
||||
"Save": "Speichern",
|
||||
"Could not find the specified string.": "Die Zeichenfolge wurde nicht gefunden.",
|
||||
"Replace": "Ersetzen",
|
||||
"Next": "Weiter",
|
||||
"Whole words": "Nur ganze W\u00f6rter",
|
||||
"Find and replace": "Suchen und ersetzen",
|
||||
"Replace with": "Ersetzen durch",
|
||||
"Find": "Suchen",
|
||||
"Replace all": "Alles ersetzen",
|
||||
"Match case": "Gro\u00df-\/Kleinschreibung beachten",
|
||||
"Prev": "Zur\u00fcck",
|
||||
"Spellcheck": "Rechtschreibpr\u00fcfung",
|
||||
"Finish": "Ende",
|
||||
"Ignore all": "Alles Ignorieren",
|
||||
"Ignore": "Ignorieren",
|
||||
"Add to Dictionary": "Zum W\u00f6rterbuch hinzuf\u00fcgen",
|
||||
"Insert row before": "Neue Zeile davor einf\u00fcgen ",
|
||||
"Rows": "Zeilen",
|
||||
"Height": "H\u00f6he",
|
||||
"Paste row after": "Zeile danach einf\u00fcgen",
|
||||
"Alignment": "Ausrichtung",
|
||||
"Border color": "Rahmenfarbe",
|
||||
"Column group": "Spaltengruppe",
|
||||
"Row": "Zeile",
|
||||
"Insert column before": "Neue Spalte davor einf\u00fcgen",
|
||||
"Split cell": "Zelle aufteilen",
|
||||
"Cell padding": "Zelleninnenabstand",
|
||||
"Cell spacing": "Zellenabstand",
|
||||
"Row type": "Zeilentyp",
|
||||
"Insert table": "Tabelle einf\u00fcgen",
|
||||
"Body": "Inhalt",
|
||||
"Caption": "Beschriftung",
|
||||
"Footer": "Fu\u00dfzeile",
|
||||
"Delete row": "Zeile l\u00f6schen",
|
||||
"Paste row before": "Zeile davor einf\u00fcgen",
|
||||
"Scope": "G\u00fcltigkeitsbereich",
|
||||
"Delete table": "Tabelle l\u00f6schen",
|
||||
"H Align": "Horizontale Ausrichtung",
|
||||
"Top": "Oben",
|
||||
"Header cell": "Kopfzelle",
|
||||
"Column": "Spalte",
|
||||
"Row group": "Zeilengruppe",
|
||||
"Cell": "Zelle",
|
||||
"Middle": "Mitte",
|
||||
"Cell type": "Zellentyp",
|
||||
"Copy row": "Zeile kopieren",
|
||||
"Row properties": "Zeileneigenschaften",
|
||||
"Table properties": "Tabelleneigenschaften",
|
||||
"Bottom": "Unten",
|
||||
"V Align": "Vertikale Ausrichtung",
|
||||
"Header": "Kopfzeile",
|
||||
"Right": "Rechtsb\u00fcndig",
|
||||
"Insert column after": "Neue Spalte danach einf\u00fcgen",
|
||||
"Cols": "Spalten",
|
||||
"Insert row after": "Neue Zeile danach einf\u00fcgen",
|
||||
"Width": "Breite",
|
||||
"Cell properties": "Zelleneigenschaften",
|
||||
"Left": "Linksb\u00fcndig",
|
||||
"Cut row": "Zeile ausschneiden",
|
||||
"Delete column": "Spalte l\u00f6schen",
|
||||
"Center": "Zentriert",
|
||||
"Merge cells": "Zellen verbinden",
|
||||
"Insert template": "Vorlage einf\u00fcgen ",
|
||||
"Templates": "Vorlagen",
|
||||
"Background color": "Hintergrundfarbe",
|
||||
"Custom...": "Benutzerdefiniert...",
|
||||
"Custom color": "Benutzerdefinierte Farbe",
|
||||
"No color": "Keine Farbe",
|
||||
"Text color": "Textfarbe",
|
||||
"Show blocks": " Bl\u00f6cke anzeigen",
|
||||
"Show invisible characters": "Unsichtbare Zeichen anzeigen",
|
||||
"Words: {0}": "W\u00f6rter: {0}",
|
||||
"Insert": "Einf\u00fcgen",
|
||||
"File": "Datei",
|
||||
"Edit": "Bearbeiten",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich-Text- Area. Dr\u00fccken Sie ALT-F9 f\u00fcr das Men\u00fc. Dr\u00fccken Sie ALT-F10 f\u00fcr Symbolleiste. Dr\u00fccken Sie ALT-0 f\u00fcr Hilfe",
|
||||
"Tools": "Werkzeuge",
|
||||
"View": "Ansicht",
|
||||
"Table": "Tabelle",
|
||||
"Format": "Format"
|
||||
});
|
|
@ -0,0 +1,200 @@
|
|||
tinymce.addI18n('es_MX',{
|
||||
"Cut": "Cortar",
|
||||
"Heading 5": "Encabezados 5",
|
||||
"Header 2": "Encabezado 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Su navegador no soporta acceso directo al portapapeles. Por favor haga uso de la combinaci\u00f3n de teclas Ctrl+X para cortar, Ctrl+C para copiar y Ctrl+V para pegar con el teclado. ",
|
||||
"Heading 4": "Encabezados 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Encabezados 2",
|
||||
"Paste": "Pegar",
|
||||
"Close": "Cerrar",
|
||||
"Font Family": "Tipo de letra",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Alinear a la derecha",
|
||||
"New document": "Nuevo documento",
|
||||
"Blockquote": "Blockquote",
|
||||
"Numbered list": "Lista numerada",
|
||||
"Heading 1": "Encabezados 1",
|
||||
"Headings": "Encabezados",
|
||||
"Increase indent": "Incrementar identado",
|
||||
"Formats": "Formato",
|
||||
"Headers": "Encabezado",
|
||||
"Select all": "Seleccionar todo",
|
||||
"Header 3": "Encabezado 3",
|
||||
"Blocks": "Bloque",
|
||||
"Undo": "Rehacer",
|
||||
"Strikethrough": "Tachado",
|
||||
"Bullet list": "Lista de vi\u00f1eta",
|
||||
"Header 1": "Encabezado 1",
|
||||
"Superscript": "\u00cdndice",
|
||||
"Clear formatting": "Limpiar formato",
|
||||
"Font Sizes": "Tama\u00f1o de letra",
|
||||
"Subscript": "Sub\u00edndice",
|
||||
"Header 6": "Encabezado 6",
|
||||
"Redo": "Deshacer",
|
||||
"Paragraph": "P\u00e1rrafo",
|
||||
"Ok": "Aceptar",
|
||||
"Bold": "Negrita",
|
||||
"Code": "C\u00f3digo",
|
||||
"Italic": "Cursiva",
|
||||
"Align center": "Centrar",
|
||||
"Header 5": "Encabezado 5",
|
||||
"Heading 6": "Encabezados 6",
|
||||
"Heading 3": "Encabezados 3",
|
||||
"Decrease indent": "Decrementar identado",
|
||||
"Header 4": "Encabezado 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Se pegar\u00e1 en texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.",
|
||||
"Underline": "Subrayado",
|
||||
"Cancel": "Cancelar",
|
||||
"Justify": "Justificar",
|
||||
"Inline": "En l\u00ednea",
|
||||
"Copy": "Copiar",
|
||||
"Align left": "Alinear a la izquierda",
|
||||
"Visual aids": "Ayuda visual",
|
||||
"Lower Greek": "Griega min\u00fascula",
|
||||
"Square": "Cuadro",
|
||||
"Default": "Por defecto",
|
||||
"Lower Alpha": "Alfa min\u00fascula",
|
||||
"Circle": "Circulo",
|
||||
"Disc": "Disco",
|
||||
"Upper Alpha": "Alfa may\u00fascula",
|
||||
"Upper Roman": "Mayuscula Romana",
|
||||
"Lower Roman": "Romano min\u00fascula",
|
||||
"Name": "Nombre",
|
||||
"Anchor": "Anclar",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "No se han guardado los cambios. \u00bfSeguro que desea abandonar la pagina?",
|
||||
"Restore last draft": "Restaurar el ultimo borrador",
|
||||
"Special character": "Caracter especial",
|
||||
"Source code": "C\u00f3digo fuente",
|
||||
"Color": "Color",
|
||||
"Right to left": "Derecha a Izquierda",
|
||||
"Left to right": "Izquierda a derecha",
|
||||
"Emoticons": "Emoticones",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Propiedades del documento",
|
||||
"Title": "T\u00edtulo",
|
||||
"Keywords": "Palabras clave",
|
||||
"Encoding": "Codificacion",
|
||||
"Description": "Descripci\u00f3n ",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Pantalla completa",
|
||||
"Horizontal line": "L\u00ednea Horizontal",
|
||||
"Horizontal space": "Espacio horizontal",
|
||||
"B": "B",
|
||||
"Insert\/edit image": "Insertar\/editar imagen",
|
||||
"General": "General",
|
||||
"Advanced": "Avanzado",
|
||||
"G": "G",
|
||||
"R": "R",
|
||||
"Source": "Origen",
|
||||
"Border": "Borde",
|
||||
"Constrain proportions": "Restringir proporciones",
|
||||
"Vertical space": "Espacio vertical",
|
||||
"Image description": "Descripci\u00f3n de imagen",
|
||||
"Style": "Estilo",
|
||||
"Dimensions": "Dimensiones",
|
||||
"Insert image": "Insertar imagen",
|
||||
"Insert date\/time": "Insertar fecha\/hora",
|
||||
"Remove link": "Eliminar elnace",
|
||||
"Url": "Url",
|
||||
"Text to display": "Texto a mostrar",
|
||||
"Anchors": "Anclas",
|
||||
"Insert link": "Insertar enlace",
|
||||
"New window": "Nueva ventana",
|
||||
"None": "Ninguno",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "El URL que ha ingresado es un enlace externo, desea agregar el prefijo http:\/\/",
|
||||
"Target": "Objetivo",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "El URL que ha insertado tiene formato de correo electr\u00f3nico. Desea agregar con prefijo responder a.",
|
||||
"Insert\/edit link": "Inserta\/editar enlace",
|
||||
"Insert\/edit video": "Insertar\/editar video",
|
||||
"Poster": "Cartel",
|
||||
"Alternative source": "Fuente alternativa",
|
||||
"Paste your embed code below:": "Pegue su c\u00f3digo de inserci\u00f3n abajo:",
|
||||
"Insert video": "Insertar video",
|
||||
"Embed": "Incrustar",
|
||||
"Nonbreaking space": "Espacio de no separaci\u00f3n",
|
||||
"Page break": "Salto de pagina ",
|
||||
"Paste as text": "Copiar como texto",
|
||||
"Preview": "Vista previa ",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Guardar",
|
||||
"Could not find the specified string.": "No se ha encontrado la cadena especificada.",
|
||||
"Replace": "Remplazar",
|
||||
"Next": "Siguiente",
|
||||
"Whole words": "Palabras completas",
|
||||
"Find and replace": "Buscar y reemplazar",
|
||||
"Replace with": "Remplazar con",
|
||||
"Find": "Buscar",
|
||||
"Replace all": "Reemplazar todo",
|
||||
"Match case": "Coincidencia",
|
||||
"Prev": "Anterior",
|
||||
"Spellcheck": "Revisi\u00f3n ortogr\u00e1fica",
|
||||
"Finish": "Terminar",
|
||||
"Ignore all": "Ignorar todo",
|
||||
"Ignore": "Ignorar",
|
||||
"Add to Dictionary": "Agregar al diccionario ",
|
||||
"Insert row before": "Insertar rengl\u00f3n antes de",
|
||||
"Rows": "Renglones ",
|
||||
"Height": "Alto",
|
||||
"Paste row after": "Pegar rengl\u00f3n despu\u00e9s de",
|
||||
"Alignment": "Alineaci\u00f3n ",
|
||||
"Border color": "Color del borde",
|
||||
"Column group": "Grupo de columnas",
|
||||
"Row": "Rengl\u00f3n ",
|
||||
"Insert column before": "Insertar columna antes de",
|
||||
"Split cell": "Dividir celdas",
|
||||
"Cell padding": "Relleno de la celda",
|
||||
"Cell spacing": "Espacio entre celdas",
|
||||
"Row type": "Tipo de rengl\u00f3n ",
|
||||
"Insert table": "Insertar tabla",
|
||||
"Body": "Cuerpo",
|
||||
"Caption": "Subtitulo",
|
||||
"Footer": "Pie",
|
||||
"Delete row": "Eliminar rengl\u00f3n ",
|
||||
"Paste row before": "Pegar rengl\u00f3n antes de",
|
||||
"Scope": "Alcance",
|
||||
"Delete table": "Eliminar tabla",
|
||||
"H Align": "Alineaci\u00f3n Horizontal",
|
||||
"Top": "Arriba",
|
||||
"Header cell": "Celda de encabezado",
|
||||
"Column": "Columna",
|
||||
"Row group": "Grupo de renglones",
|
||||
"Cell": "Celda",
|
||||
"Middle": "Centrado",
|
||||
"Cell type": "Tipo de celda",
|
||||
"Copy row": "Copiar rengl\u00f3n ",
|
||||
"Row properties": "Propiedades del rengl\u00f3n ",
|
||||
"Table properties": "Propiedades de tabla",
|
||||
"Bottom": "Abajo",
|
||||
"V Align": "Alineaci\u00f3n Vertical",
|
||||
"Header": "Encabezado",
|
||||
"Right": "Derecha",
|
||||
"Insert column after": "Insertar columna despu\u00e9s de",
|
||||
"Cols": "Columnas",
|
||||
"Insert row after": "Insertar rengl\u00f3n despu\u00e9s de",
|
||||
"Width": "Ancho",
|
||||
"Cell properties": "Propiedades de celda",
|
||||
"Left": "Izquierda",
|
||||
"Cut row": "Cortar renglon",
|
||||
"Delete column": "Eliminar Columna",
|
||||
"Center": "Centro",
|
||||
"Merge cells": "Unir celdas",
|
||||
"Insert template": "Insertar plantilla",
|
||||
"Templates": "Plantilla",
|
||||
"Background color": "Color de fondo",
|
||||
"Custom...": "Personalizar",
|
||||
"Custom color": "Perzonalizar color",
|
||||
"No color": "Sin color",
|
||||
"Text color": "Color de letra",
|
||||
"Show blocks": "Mostrar bloques",
|
||||
"Show invisible characters": "Mostrar caracteres invisibles",
|
||||
"Words: {0}": "Palabras:{0}",
|
||||
"Insert": "Insertar",
|
||||
"File": "Archivo",
|
||||
"Edit": "Editar",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Presione dentro del \u00e1rea de texto ALT-F9 para invocar el men\u00fa, ALT-F10 para la barra de herramientas y ALT-0 para la ayuda.",
|
||||
"Tools": "Herramientas",
|
||||
"View": "Vistas",
|
||||
"Table": "Tabla",
|
||||
"Format": "Formato"
|
||||
});
|
|
@ -0,0 +1,219 @@
|
|||
tinymce.addI18n('fr_FR',{
|
||||
"Cut": "Couper",
|
||||
"Heading 5": "En-t\u00eate 5",
|
||||
"Header 2": "Titre 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Votre navigateur ne supporte pas la copie directe. Merci d'utiliser les touches Ctrl+X\/C\/V.",
|
||||
"Heading 4": "En-t\u00eate 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "En-t\u00eate 2",
|
||||
"Paste": "Coller",
|
||||
"Close": "Fermer",
|
||||
"Font Family": "Police",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Aligner \u00e0 droite",
|
||||
"New document": "Nouveau document",
|
||||
"Blockquote": "Citation",
|
||||
"Numbered list": "Num\u00e9rotation",
|
||||
"Heading 1": "En-t\u00eate 1",
|
||||
"Headings": "En-t\u00eates",
|
||||
"Increase indent": "Augmenter le retrait",
|
||||
"Formats": "Formats",
|
||||
"Headers": "Titres",
|
||||
"Select all": "Tout s\u00e9lectionner",
|
||||
"Header 3": "Titre 3",
|
||||
"Blocks": "Blocs",
|
||||
"Undo": "Annuler",
|
||||
"Strikethrough": "Barr\u00e9",
|
||||
"Bullet list": "Puces",
|
||||
"Header 1": "Titre 1",
|
||||
"Superscript": "Exposant",
|
||||
"Clear formatting": "Effacer la mise en forme",
|
||||
"Font Sizes": "Taille de police",
|
||||
"Subscript": "Indice",
|
||||
"Header 6": "Titre 6",
|
||||
"Redo": "R\u00e9tablir",
|
||||
"Paragraph": "Paragraphe",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Gras",
|
||||
"Code": "Code",
|
||||
"Italic": "Italique",
|
||||
"Align center": "Centrer",
|
||||
"Header 5": "Titre 5",
|
||||
"Heading 6": "En-t\u00eate 6",
|
||||
"Heading 3": "En-t\u00eate 3",
|
||||
"Decrease indent": "Diminuer le retrait",
|
||||
"Header 4": "Titre 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Le presse-papiers est maintenant en mode \"texte plein\". Les contenus seront coll\u00e9s sans retenir les formatages jusqu'\u00e0 ce que vous d\u00e9sactiviez cette option.",
|
||||
"Underline": "Soulign\u00e9",
|
||||
"Cancel": "Annuler",
|
||||
"Justify": "Justifier",
|
||||
"Inline": "En ligne",
|
||||
"Copy": "Copier",
|
||||
"Align left": "Aligner \u00e0 gauche",
|
||||
"Visual aids": "Aides visuelle",
|
||||
"Lower Greek": "Grec minuscule",
|
||||
"Square": "Carr\u00e9",
|
||||
"Default": "Par d\u00e9faut",
|
||||
"Lower Alpha": "Alpha minuscule",
|
||||
"Circle": "Cercle",
|
||||
"Disc": "Disque",
|
||||
"Upper Alpha": "Alpha majuscule",
|
||||
"Upper Roman": "Romain majuscule",
|
||||
"Lower Roman": "Romain minuscule",
|
||||
"Name": "Nom",
|
||||
"Anchor": "Ancre",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Vous avez des modifications non enregistr\u00e9es, \u00eates-vous s\u00fbr de quitter la page?",
|
||||
"Restore last draft": "Restaurer le dernier brouillon",
|
||||
"Special character": "Caract\u00e8res sp\u00e9ciaux",
|
||||
"Source code": "Code source",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "V",
|
||||
"Color": "Couleur",
|
||||
"Right to left": "Droite \u00e0 gauche",
|
||||
"Left to right": "Gauche \u00e0 droite",
|
||||
"Emoticons": "Emotic\u00f4nes",
|
||||
"Robots": "Robots",
|
||||
"Document properties": "Propri\u00e9t\u00e9 du document",
|
||||
"Title": "Titre",
|
||||
"Keywords": "Mots-cl\u00e9s",
|
||||
"Encoding": "Encodage",
|
||||
"Description": "Description",
|
||||
"Author": "Auteur",
|
||||
"Fullscreen": "Plein \u00e9cran",
|
||||
"Horizontal line": "Ligne horizontale",
|
||||
"Horizontal space": "Espacement horizontal",
|
||||
"Insert\/edit image": "Ins\u00e9rer\/modifier une image",
|
||||
"General": "G\u00e9n\u00e9ral",
|
||||
"Advanced": "Avanc\u00e9",
|
||||
"Source": "Source",
|
||||
"Border": "Bordure",
|
||||
"Constrain proportions": "Conserver les proportions",
|
||||
"Vertical space": "Espacement vertical",
|
||||
"Image description": "Description de l'image",
|
||||
"Style": "Style",
|
||||
"Dimensions": "Dimensions",
|
||||
"Insert image": "Ins\u00e9rer une image",
|
||||
"Zoom in": "Zoomer",
|
||||
"Contrast": "Contraste",
|
||||
"Back": "Retour",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Retournement horizontal",
|
||||
"Resize": "Redimensionner",
|
||||
"Sharpen": "Affiner",
|
||||
"Zoom out": "D\u00e9zoomer",
|
||||
"Image options": "Options de l'image",
|
||||
"Apply": "Appliquer",
|
||||
"Brightness": "Luminosit\u00e9",
|
||||
"Rotate clockwise": "Rotation horaire",
|
||||
"Rotate counterclockwise": "Rotation anti-horaire",
|
||||
"Edit image": "Modifier l'image",
|
||||
"Color levels": "Niveaux de couleur",
|
||||
"Crop": "Rogner",
|
||||
"Orientation": "Orientation",
|
||||
"Flip vertically": "Retournement vertical",
|
||||
"Invert": "Inverser",
|
||||
"Insert date\/time": "Ins\u00e9rer date\/heure",
|
||||
"Remove link": "Enlever le lien",
|
||||
"Url": "Url",
|
||||
"Text to display": "Texte \u00e0 afficher",
|
||||
"Anchors": "Ancres",
|
||||
"Insert link": "Ins\u00e9rer un lien",
|
||||
"New window": "Nouvelle fen\u00eatre",
|
||||
"None": "n\/a",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre un lien externe. Voulez-vous ajouter le pr\u00e9fixe http:\/\/ n\u00e9cessaire?",
|
||||
"Target": "Cible",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL que vous avez entr\u00e9e semble \u00eatre une adresse e-mail. Voulez-vous ajouter le pr\u00e9fixe mailto: n\u00e9cessaire?",
|
||||
"Insert\/edit link": "Ins\u00e9rer\/modifier un lien",
|
||||
"Insert\/edit video": "Ins\u00e9rer\/modifier une vid\u00e9o",
|
||||
"Poster": "Publier",
|
||||
"Alternative source": "Source alternative",
|
||||
"Paste your embed code below:": "Collez votre code d'int\u00e9gration ci-dessous :",
|
||||
"Insert video": "Ins\u00e9rer une vid\u00e9o",
|
||||
"Embed": "Int\u00e9grer",
|
||||
"Nonbreaking space": "Espace ins\u00e9cable",
|
||||
"Page break": "Saut de page",
|
||||
"Paste as text": "Coller comme texte",
|
||||
"Preview": "Pr\u00e9visualiser",
|
||||
"Print": "Imprimer",
|
||||
"Save": "Enregistrer",
|
||||
"Could not find the specified string.": "Impossible de trouver la cha\u00eene sp\u00e9cifi\u00e9e.",
|
||||
"Replace": "Remplacer",
|
||||
"Next": "Suiv",
|
||||
"Whole words": "Mots entiers",
|
||||
"Find and replace": "Trouver et remplacer",
|
||||
"Replace with": "Remplacer par",
|
||||
"Find": "Chercher",
|
||||
"Replace all": "Tout remplacer",
|
||||
"Match case": "Respecter la casse",
|
||||
"Prev": "Pr\u00e9c ",
|
||||
"Spellcheck": "V\u00e9rification orthographique",
|
||||
"Finish": "Finie",
|
||||
"Ignore all": "Tout ignorer",
|
||||
"Ignore": "Ignorer",
|
||||
"Add to Dictionary": "Ajouter au dictionnaire",
|
||||
"Insert row before": "Ins\u00e9rer une ligne avant",
|
||||
"Rows": "Lignes",
|
||||
"Height": "Hauteur",
|
||||
"Paste row after": "Coller la ligne apr\u00e8s",
|
||||
"Alignment": "Alignement",
|
||||
"Border color": "Couleur de la bordure",
|
||||
"Column group": "Groupe de colonnes",
|
||||
"Row": "Ligne",
|
||||
"Insert column before": "Ins\u00e9rer une colonne avant",
|
||||
"Split cell": "Diviser la cellule",
|
||||
"Cell padding": "Espacement interne cellule",
|
||||
"Cell spacing": "Espacement inter-cellulles",
|
||||
"Row type": "Type de ligne",
|
||||
"Insert table": "Ins\u00e9rer un tableau",
|
||||
"Body": "Corps",
|
||||
"Caption": "Titre",
|
||||
"Footer": "Pied",
|
||||
"Delete row": "Effacer la ligne",
|
||||
"Paste row before": "Coller la ligne avant",
|
||||
"Scope": "Etendue",
|
||||
"Delete table": "Supprimer le tableau",
|
||||
"H Align": "Alignement H",
|
||||
"Top": "Haut",
|
||||
"Header cell": "Cellule d'en-t\u00eate",
|
||||
"Column": "Colonne",
|
||||
"Row group": "Groupe de lignes",
|
||||
"Cell": "Cellule",
|
||||
"Middle": "Milieu",
|
||||
"Cell type": "Type de cellule",
|
||||
"Copy row": "Copier la ligne",
|
||||
"Row properties": "Propri\u00e9t\u00e9s de la ligne",
|
||||
"Table properties": "Propri\u00e9t\u00e9s du tableau",
|
||||
"Bottom": "Bas",
|
||||
"V Align": "Alignement V",
|
||||
"Header": "En-t\u00eate",
|
||||
"Right": "Droite",
|
||||
"Insert column after": "Ins\u00e9rer une colonne apr\u00e8s",
|
||||
"Cols": "Colonnes",
|
||||
"Insert row after": "Ins\u00e9rer une ligne apr\u00e8s",
|
||||
"Width": "Largeur",
|
||||
"Cell properties": "Propri\u00e9t\u00e9s de la cellule",
|
||||
"Left": "Gauche",
|
||||
"Cut row": "Couper la ligne",
|
||||
"Delete column": "Effacer la colonne",
|
||||
"Center": "Centr\u00e9",
|
||||
"Merge cells": "Fusionner les cellules",
|
||||
"Insert template": "Ajouter un th\u00e8me",
|
||||
"Templates": "Th\u00e8mes",
|
||||
"Background color": "Couleur d'arri\u00e8re-plan",
|
||||
"Custom...": "Personnalis\u00e9...",
|
||||
"Custom color": "Couleur personnalis\u00e9e",
|
||||
"No color": "Aucune couleur",
|
||||
"Text color": "Couleur du texte",
|
||||
"Show blocks": "Afficher les blocs",
|
||||
"Show invisible characters": "Afficher les caract\u00e8res invisibles",
|
||||
"Words: {0}": "Mots : {0}",
|
||||
"Insert": "Ins\u00e9rer",
|
||||
"File": "Fichier",
|
||||
"Edit": "Editer",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zone Texte Riche. Appuyer sur ALT-F9 pour le menu. Appuyer sur ALT-F10 pour la barre d'outils. Appuyer sur ALT-0 pour de l'aide.",
|
||||
"Tools": "Outils",
|
||||
"View": "Voir",
|
||||
"Table": "Tableau",
|
||||
"Format": "Format"
|
||||
});
|
|
@ -0,0 +1,198 @@
|
|||
tinymce.addI18n('he_IL',{
|
||||
"Cut": "\u05d2\u05d6\u05d5\u05e8",
|
||||
"Heading 5": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 5",
|
||||
"Header 2": "\u05db\u05d5\u05ea\u05e8\u05ea 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u05d4\u05d3\u05e4\u05d3\u05e4\u05df \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05d5 \u05de\u05d0\u05e4\u05e9\u05e8 \u05d2\u05d9\u05e9\u05d4 \u05d9\u05e9\u05d9\u05e8\u05d4 \u05dc\u05dc\u05d5\u05d7. \u05d0\u05e0\u05d0 \u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e7\u05d9\u05e6\u05d5\u05e8\u05d9 \u05d4\u05de\u05e7\u05dc\u05d3\u05ea Ctrl+X\/C\/V \u05d1\u05de\u05e7\u05d5\u05dd.",
|
||||
"Heading 4": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 4",
|
||||
"Div": "\u05de\u05e7\u05d8\u05e2 \u05e7\u05d5\u05d3 Div",
|
||||
"Heading 2": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 2",
|
||||
"Paste": "\u05d4\u05d3\u05d1\u05e7",
|
||||
"Close": "\u05e1\u05d2\u05d5\u05e8",
|
||||
"Font Family": "\u05e1\u05d5\u05d2 \u05d2\u05d5\u05e4\u05df",
|
||||
"Pre": "\u05e7\u05d8\u05e2 \u05de\u05e7\u05d3\u05d9\u05dd Pre",
|
||||
"Align right": "\u05d9\u05d9\u05e9\u05e8 \u05dc\u05e9\u05de\u05d0\u05dc",
|
||||
"New document": "\u05de\u05e1\u05de\u05da \u05d7\u05d3\u05e9",
|
||||
"Blockquote": "\u05de\u05e7\u05d8\u05e2 \u05e6\u05d9\u05d8\u05d5\u05d8",
|
||||
"Numbered list": "\u05e8\u05e9\u05d9\u05de\u05d4 \u05de\u05de\u05d5\u05e1\u05e4\u05e8\u05ea",
|
||||
"Heading 1": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 1",
|
||||
"Headings": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea",
|
||||
"Increase indent": "\u05d4\u05d2\u05d3\u05dc \u05d4\u05d6\u05d7\u05d4",
|
||||
"Formats": "\u05e4\u05d5\u05e8\u05de\u05d8\u05d9\u05dd",
|
||||
"Headers": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea",
|
||||
"Select all": "\u05d1\u05d7\u05e8 \u05d4\u05db\u05dc",
|
||||
"Header 3": "\u05db\u05d5\u05ea\u05e8\u05ea 3",
|
||||
"Blocks": "\u05de\u05d1\u05e0\u05d9\u05dd",
|
||||
"Undo": "\u05d1\u05d8\u05dc \u05e4\u05e2\u05d5\u05dc\u05d4",
|
||||
"Strikethrough": "\u05e7\u05d5 \u05d7\u05d5\u05e6\u05d4",
|
||||
"Bullet list": "\u05e8\u05e9\u05d9\u05de\u05ea \u05ea\u05d1\u05dc\u05d9\u05d8\u05d9\u05dd",
|
||||
"Header 1": "\u05db\u05d5\u05ea\u05e8\u05ea 1",
|
||||
"Superscript": "\u05db\u05ea\u05d1 \u05e2\u05d9\u05dc\u05d9",
|
||||
"Clear formatting": "\u05e0\u05e7\u05d4 \u05e2\u05d9\u05e6\u05d5\u05d1",
|
||||
"Font Sizes": "\u05d2\u05d5\u05d3\u05dc \u05d2\u05d5\u05e4\u05df",
|
||||
"Subscript": "\u05db\u05ea\u05d1 \u05ea\u05d7\u05ea\u05d9",
|
||||
"Header 6": "\u05db\u05d5\u05ea\u05e8\u05ea 6",
|
||||
"Redo": "\u05d1\u05e6\u05e2 \u05e9\u05d5\u05d1",
|
||||
"Paragraph": "\u05e4\u05d9\u05e1\u05e7\u05d4",
|
||||
"Ok": "\u05d0\u05d9\u05e9\u05d5\u05e8",
|
||||
"Bold": "\u05de\u05d5\u05d3\u05d2\u05e9",
|
||||
"Code": "\u05e7\u05d5\u05d3",
|
||||
"Italic": "\u05e0\u05d8\u05d5\u05d9",
|
||||
"Align center": "\u05de\u05e8\u05db\u05d6",
|
||||
"Header 5": "\u05db\u05d5\u05ea\u05e8\u05ea 5",
|
||||
"Heading 6": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 6",
|
||||
"Heading 3": "\u05db\u05d5\u05ea\u05e8\u05d5\u05ea 3",
|
||||
"Decrease indent": "\u05d4\u05e7\u05d8\u05df \u05d4\u05d6\u05d7\u05d4",
|
||||
"Header 4": "\u05db\u05d5\u05ea\u05e8\u05ea 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u05d4\u05d3\u05d1\u05e7\u05d4 \u05d1\u05de\u05e6\u05d1 \u05d8\u05e7\u05e1\u05d8 \u05e8\u05d2\u05d9\u05dc. \u05ea\u05db\u05e0\u05d9\u05dd \u05d9\u05d5\u05d3\u05d1\u05e7\u05d5 \u05de\u05e2\u05ea\u05d4 \u05db\u05d8\u05e7\u05e1\u05d8 \u05e8\u05d2\u05d9\u05dc \u05e2\u05d3 \u05e9\u05ea\u05db\u05d1\u05d4 \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5.",
|
||||
"Underline": "\u05e7\u05d5 \u05ea\u05d7\u05ea\u05d9",
|
||||
"Cancel": "\u05d1\u05d8\u05dc",
|
||||
"Justify": "\u05de\u05ea\u05d7 \u05dc\u05e6\u05d3\u05d3\u05d9\u05dd",
|
||||
"Inline": "\u05d1\u05d2\u05d5\u05e3 \u05d4\u05d8\u05e7\u05e1\u05d8",
|
||||
"Copy": "\u05d4\u05e2\u05ea\u05e7",
|
||||
"Align left": "\u05d9\u05d9\u05e9\u05e8 \u05dc\u05e9\u05de\u05d0\u05dc",
|
||||
"Visual aids": "\u05e2\u05d6\u05e8\u05d9\u05dd \u05d7\u05d6\u05d5\u05ea\u05d9\u05d9\u05dd",
|
||||
"Lower Greek": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d9\u05d5\u05d5\u05e0\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea",
|
||||
"Square": "\u05e8\u05d9\u05d1\u05d5\u05e2",
|
||||
"Default": "\u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc",
|
||||
"Lower Alpha": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d0\u05e0\u05d2\u05dc\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea",
|
||||
"Circle": "\u05e2\u05d9\u05d2\u05d5\u05dc",
|
||||
"Disc": "\u05d7\u05d9\u05e9\u05d5\u05e7",
|
||||
"Upper Alpha": "\u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05d0\u05e0\u05d2\u05dc\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc\u05d5\u05ea",
|
||||
"Upper Roman": "\u05e1\u05e4\u05e8\u05d5\u05ea \u05e8\u05d5\u05de\u05d9\u05d5\u05ea \u05d2\u05d3\u05d5\u05dc\u05d5\u05ea",
|
||||
"Lower Roman": "\u05e1\u05e4\u05e8\u05d5\u05ea \u05e8\u05d5\u05de\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea",
|
||||
"Name": "\u05e9\u05dd",
|
||||
"Anchor": "\u05de\u05e7\u05d5\u05dd \u05e2\u05d9\u05d2\u05d5\u05df",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05dc\u05d0 \u05e0\u05e9\u05de\u05e8\u05d5. \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05e6\u05d0\u05ea \u05de\u05d4\u05d3\u05e3?",
|
||||
"Restore last draft": "\u05e9\u05d7\u05d6\u05e8 \u05d8\u05d9\u05d5\u05d8\u05d4 \u05d0\u05d7\u05e8\u05d5\u05e0\u05d4",
|
||||
"Special character": "\u05ea\u05d5\u05d5\u05d9\u05dd \u05de\u05d9\u05d5\u05d7\u05d3\u05d9\u05dd",
|
||||
"Source code": "\u05e7\u05d5\u05d3 \u05de\u05e7\u05d5\u05e8",
|
||||
"Color": "\u05e6\u05d1\u05e2",
|
||||
"Right to left": "\u05de\u05d9\u05de\u05d9\u05df \u05dc\u05e9\u05de\u05d0\u05dc",
|
||||
"Left to right": "\u05de\u05e9\u05de\u05d0\u05dc \u05dc\u05d9\u05de\u05d9\u05df",
|
||||
"Emoticons": "\u05de\u05d7\u05d5\u05d5\u05ea",
|
||||
"Robots": "\u05e8\u05d5\u05d1\u05d5\u05d8\u05d9\u05dd",
|
||||
"Document properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05de\u05e1\u05de\u05da",
|
||||
"Title": "\u05db\u05d5\u05ea\u05e8\u05ea",
|
||||
"Keywords": "\u05de\u05d9\u05dc\u05d5\u05ea \u05de\u05e4\u05ea\u05d7",
|
||||
"Encoding": "\u05e7\u05d9\u05d3\u05d5\u05d3",
|
||||
"Description": "\u05ea\u05d9\u05d0\u05d5\u05e8",
|
||||
"Author": "\u05de\u05d7\u05d1\u05e8",
|
||||
"Fullscreen": "\u05de\u05e1\u05da \u05de\u05dc\u05d0",
|
||||
"Horizontal line": "\u05e7\u05d5 \u05d0\u05d5\u05e4\u05e7\u05d9",
|
||||
"Horizontal space": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05d0\u05d5\u05e4\u05e7\u05d9",
|
||||
"Insert\/edit image": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05ea\u05de\u05d5\u05e0\u05d4",
|
||||
"General": "\u05db\u05dc\u05dc\u05d9",
|
||||
"Advanced": "\u05de\u05ea\u05e7\u05d3\u05dd",
|
||||
"Source": "\u05de\u05e7\u05d5\u05e8",
|
||||
"Border": "\u05de\u05e1\u05d2\u05e8\u05ea",
|
||||
"Constrain proportions": "\u05d4\u05d2\u05d1\u05dc\u05ea \u05e4\u05e8\u05d5\u05e4\u05d5\u05e8\u05e6\u05d9\u05d5\u05ea",
|
||||
"Vertical space": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05d0\u05e0\u05db\u05d9",
|
||||
"Image description": "\u05ea\u05d9\u05d0\u05d5\u05e8 \u05d4\u05ea\u05de\u05d5\u05e0\u05d4",
|
||||
"Style": "\u05e1\u05d2\u05e0\u05d5\u05df",
|
||||
"Dimensions": "\u05de\u05d9\u05de\u05d3\u05d9\u05dd",
|
||||
"Insert image": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05de\u05d5\u05e0\u05d4",
|
||||
"Insert date\/time": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d0\u05e8\u05d9\u05da\/\u05e9\u05e2\u05d4",
|
||||
"Remove link": "\u05de\u05d7\u05e7 \u05e7\u05d9\u05e9\u05d5\u05e8",
|
||||
"Url": "\u05db\u05ea\u05d5\u05d1\u05ea \u05e7\u05d9\u05e9\u05d5\u05e8",
|
||||
"Text to display": "\u05d8\u05e7\u05e1\u05d8 \u05dc\u05d4\u05e6\u05d2\u05d4",
|
||||
"Anchors": "\u05e2\u05d5\u05d2\u05e0\u05d9\u05dd",
|
||||
"Insert link": "\u05d4\u05db\u05e0\u05e1 \u05e7\u05d9\u05e9\u05d5\u05e8",
|
||||
"New window": "\u05d7\u05dc\u05d5\u05df \u05d7\u05d3\u05e9",
|
||||
"None": "\u05dc\u05dc\u05d0",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u05e0\u05e8\u05d0\u05d4 \u05e9\u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05e9\u05d4\u05db\u05e0\u05e1\u05ea \u05d4\u05d9\u05d0 \u05e7\u05d9\u05e9\u05d5\u05e8 \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9 \u05d4\u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05e7\u05d9\u05d3\u05d5\u05de\u05ea http:\/\/?",
|
||||
"Target": "\u05de\u05d8\u05e8\u05d4",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u05e0\u05e8\u05d0\u05d4 \u05e9\u05d4\u05db\u05ea\u05d5\u05d1\u05ea \u05e9\u05d4\u05db\u05e0\u05e1\u05ea \u05d4\u05d9\u05d0 \u05db\u05ea\u05d5\u05d1\u05ea \u05d0\u05d9\u05de\u05d9\u05d9\u05dc. \u05d4\u05d0\u05dd \u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d0\u05ea \u05d4\u05e7\u05d9\u05d3\u05d5\u05de\u05ea :mailto?",
|
||||
"Insert\/edit link": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e7\u05d9\u05e9\u05d5\u05e8",
|
||||
"Insert\/edit video": "\u05d4\u05db\u05e0\u05e1\/\u05e2\u05e8\u05d5\u05da \u05e1\u05e8\u05d8\u05d5\u05df",
|
||||
"Poster": "\u05e4\u05d5\u05e1\u05d8\u05e8",
|
||||
"Alternative source": "\u05de\u05e7\u05d5\u05e8 \u05de\u05e9\u05e0\u05d9",
|
||||
"Paste your embed code below:": "\u05d4\u05d3\u05d1\u05e7 \u05e7\u05d5\u05d3 \u05d4\u05d8\u05de\u05e2\u05d4 \u05de\u05ea\u05d7\u05ea:",
|
||||
"Insert video": "\u05d4\u05db\u05e0\u05e1 \u05e1\u05e8\u05d8\u05d5\u05df",
|
||||
"Embed": "\u05d4\u05d8\u05de\u05e2",
|
||||
"Nonbreaking space": "\u05e8\u05d5\u05d5\u05d7 (\u05dc\u05dc\u05d0 \u05e9\u05d1\u05d9\u05e8\u05ea \u05e9\u05d5\u05e8\u05d4)",
|
||||
"Page break": "\u05d3\u05e3 \u05d7\u05d3\u05e9",
|
||||
"Paste as text": "\u05d4\u05d3\u05d1\u05e7 \u05db\u05d8\u05e7\u05e1\u05d8",
|
||||
"Preview": "\u05ea\u05e6\u05d5\u05d2\u05d4 \u05de\u05e7\u05d3\u05d9\u05de\u05d4",
|
||||
"Print": "\u05d4\u05d3\u05e4\u05e1",
|
||||
"Save": "\u05e9\u05de\u05d9\u05e8\u05d4",
|
||||
"Could not find the specified string.": "\u05de\u05d7\u05e8\u05d5\u05d6\u05ea \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d4",
|
||||
"Replace": "\u05d4\u05d7\u05dc\u05e3",
|
||||
"Next": "\u05d4\u05d1\u05d0",
|
||||
"Whole words": "\u05de\u05d9\u05dc\u05d4 \u05e9\u05dc\u05de\u05d4",
|
||||
"Find and replace": "\u05d7\u05e4\u05e9 \u05d5\u05d4\u05d7\u05dc\u05e3",
|
||||
"Replace with": "\u05d4\u05d7\u05dc\u05e3 \u05d1",
|
||||
"Find": "\u05d7\u05e4\u05e9",
|
||||
"Replace all": "\u05d4\u05d7\u05dc\u05e3 \u05d4\u05db\u05dc",
|
||||
"Match case": "\u05d4\u05d1\u05d7\u05df \u05d1\u05d9\u05df \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea \u05e7\u05d8\u05e0\u05d5\u05ea \u05dc\u05d2\u05d3\u05d5\u05dc\u05d5\u05ea",
|
||||
"Prev": "\u05e7\u05d5\u05d3\u05dd",
|
||||
"Spellcheck": "\u05d1\u05d5\u05d3\u05e7 \u05d0\u05d9\u05d5\u05ea",
|
||||
"Finish": "\u05e1\u05d9\u05d9\u05dd",
|
||||
"Ignore all": "\u05d4\u05ea\u05e2\u05dc\u05dd \u05de\u05d4\u05db\u05dc",
|
||||
"Ignore": "\u05d4\u05ea\u05e2\u05dc\u05dd",
|
||||
"Add to Dictionary": "\u05d4\u05d5\u05e1\u05e3 \u05dc\u05de\u05d9\u05dc\u05d5\u05df",
|
||||
"Insert row before": "\u05d4\u05d5\u05e1\u05e3 \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9",
|
||||
"Rows": "\u05e9\u05d5\u05e8\u05d5\u05ea",
|
||||
"Height": "\u05d2\u05d5\u05d1\u05d4",
|
||||
"Paste row after": "\u05d4\u05e2\u05ea\u05e7 \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9",
|
||||
"Alignment": "\u05d9\u05d9\u05e9\u05d5\u05e8",
|
||||
"Border color": "\u05e6\u05d1\u05e2 \u05d2\u05d1\u05d5\u05dc",
|
||||
"Column group": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05e2\u05de\u05d5\u05d3\u05d5\u05ea",
|
||||
"Row": "\u05e9\u05d5\u05e8\u05d4",
|
||||
"Insert column before": "\u05d4\u05e2\u05ea\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4 \u05dc\u05e4\u05e0\u05d9",
|
||||
"Split cell": "\u05e4\u05e6\u05dc \u05ea\u05d0",
|
||||
"Cell padding": "\u05e9\u05d5\u05dc\u05d9\u05d9\u05dd \u05e4\u05e0\u05d9\u05de\u05d9\u05d9\u05dd \u05dc\u05ea\u05d0",
|
||||
"Cell spacing": "\u05e9\u05d5\u05dc\u05d9\u05d9\u05dd \u05d7\u05d9\u05e6\u05d5\u05e0\u05d9\u05dd \u05dc\u05ea\u05d0",
|
||||
"Row type": "\u05e1\u05d5\u05d2 \u05e9\u05d5\u05e8\u05d4",
|
||||
"Insert table": "\u05d4\u05db\u05e0\u05e1 \u05d8\u05d1\u05dc\u05d4",
|
||||
"Body": "\u05d2\u05d5\u05e3 \u05d4\u05d8\u05d1\u05dc\u05d0",
|
||||
"Caption": "\u05db\u05d9\u05ea\u05d5\u05d1",
|
||||
"Footer": "\u05db\u05d5\u05ea\u05e8\u05ea \u05ea\u05d7\u05ea\u05d5\u05e0\u05d4",
|
||||
"Delete row": "\u05de\u05d7\u05e7 \u05e9\u05d5\u05e8\u05d4",
|
||||
"Paste row before": "\u05d4\u05d3\u05d1\u05e7 \u05e9\u05d5\u05e8\u05d4 \u05dc\u05e4\u05e0\u05d9",
|
||||
"Scope": "\u05d4\u05d9\u05e7\u05e3",
|
||||
"Delete table": "\u05de\u05d7\u05e7 \u05d8\u05d1\u05dc\u05d4",
|
||||
"H Align": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05d0\u05d5\u05e4\u05e7\u05d9",
|
||||
"Top": "\u05e2\u05dc\u05d9\u05d5\u05df",
|
||||
"Header cell": "\u05db\u05d5\u05ea\u05e8\u05ea \u05dc\u05ea\u05d0",
|
||||
"Column": "\u05e2\u05de\u05d5\u05d3\u05d4",
|
||||
"Row group": "\u05e7\u05d9\u05d1\u05d5\u05e5 \u05e9\u05d5\u05e8\u05d5\u05ea",
|
||||
"Cell": "\u05ea\u05d0",
|
||||
"Middle": "\u05d0\u05de\u05e6\u05e2",
|
||||
"Cell type": "\u05e1\u05d5\u05d2 \u05ea\u05d0",
|
||||
"Copy row": "\u05d4\u05e2\u05ea\u05e7 \u05e9\u05d5\u05e8\u05d4",
|
||||
"Row properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05e9\u05d5\u05e8\u05d4",
|
||||
"Table properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05d8\u05d1\u05dc\u05d4",
|
||||
"Bottom": "\u05ea\u05d7\u05ea\u05d9\u05ea",
|
||||
"V Align": "\u05d9\u05d9\u05e9\u05d5\u05e8 \u05d0\u05e0\u05db\u05d9",
|
||||
"Header": "\u05db\u05d5\u05ea\u05e8\u05ea",
|
||||
"Right": "\u05d9\u05de\u05d9\u05df",
|
||||
"Insert column after": "\u05d4\u05e2\u05ea\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4 \u05d0\u05d7\u05e8\u05d9",
|
||||
"Cols": "\u05e2\u05de\u05d5\u05d3\u05d5\u05ea",
|
||||
"Insert row after": "\u05d4\u05d5\u05e1\u05e3 \u05e9\u05d5\u05e8\u05d4 \u05d0\u05d7\u05e8\u05d9",
|
||||
"Width": "\u05e8\u05d5\u05d7\u05d1",
|
||||
"Cell properties": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9 \u05ea\u05d0",
|
||||
"Left": "\u05e9\u05de\u05d0\u05dc",
|
||||
"Cut row": "\u05d2\u05d6\u05d5\u05e8 \u05e9\u05d5\u05e8\u05d4",
|
||||
"Delete column": "\u05de\u05d7\u05e7 \u05e2\u05de\u05d5\u05d3\u05d4",
|
||||
"Center": "\u05de\u05e8\u05db\u05d6",
|
||||
"Merge cells": "\u05de\u05d6\u05d2 \u05ea\u05d0\u05d9\u05dd",
|
||||
"Insert template": "\u05d4\u05db\u05e0\u05e1 \u05ea\u05d1\u05e0\u05d9\u05ea",
|
||||
"Templates": "\u05ea\u05d1\u05e0\u05d9\u05d5\u05ea",
|
||||
"Background color": "\u05e6\u05d1\u05e2 \u05e8\u05e7\u05e2",
|
||||
"Custom...": "\u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea...",
|
||||
"Custom color": "\u05e6\u05d1\u05e2 \u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea",
|
||||
"No color": "\u05dc\u05dc\u05d0 \u05e6\u05d1\u05e2",
|
||||
"Text color": "\u05e6\u05d1\u05e2 \u05d4\u05db\u05ea\u05d1",
|
||||
"Show blocks": "\u05d4\u05e6\u05d2 \u05ea\u05d9\u05d1\u05d5\u05ea",
|
||||
"Show invisible characters": "\u05d4\u05e6\u05d2 \u05ea\u05d5\u05d5\u05d9\u05dd \u05dc\u05d0 \u05e0\u05e8\u05d0\u05d9\u05dd",
|
||||
"Words: {0}": "\u05de\u05d9\u05dc\u05d9\u05dd: {0}",
|
||||
"Insert": "\u05d4\u05d5\u05e1\u05e4\u05d4",
|
||||
"File": "\u05e7\u05d5\u05d1\u05e5",
|
||||
"Edit": "\u05e2\u05e8\u05d9\u05db\u05d4",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u05ea\u05d9\u05d1\u05ea \u05e2\u05e8\u05d9\u05db\u05d4 \u05d7\u05db\u05de\u05d4. \u05dc\u05d7\u05e5 Alt-F9 \u05dc\u05ea\u05e4\u05e8\u05d9\u05d8. Alt-F10 \u05dc\u05ea\u05e6\u05d5\u05d2\u05ea \u05db\u05e4\u05ea\u05d5\u05e8\u05d9\u05dd, Alt-0 \u05dc\u05e2\u05d6\u05e8\u05d4",
|
||||
"Tools": "\u05db\u05dc\u05d9\u05dd",
|
||||
"View": "\u05ea\u05e6\u05d5\u05d2\u05d4",
|
||||
"Table": "\u05d8\u05d1\u05dc\u05d4",
|
||||
"Format": "\u05e4\u05d5\u05e8\u05de\u05d8",
|
||||
"_dir": "rtl"
|
||||
});
|
|
@ -0,0 +1,219 @@
|
|||
tinymce.addI18n('id',{
|
||||
"Cut": "Penggal",
|
||||
"Heading 5": "Judul 5",
|
||||
"Header 2": "Judul 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Browser anda tidak mendukung akses langsung ke clipboard. Silahkan gunakan Ctrl+X\/C\/V dari keyboard.",
|
||||
"Heading 4": "Judul 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Judul 2",
|
||||
"Paste": "Tempel",
|
||||
"Close": "Tutup",
|
||||
"Font Family": "Jenis Huruf",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Rata kanan",
|
||||
"New document": "Dokumen baru",
|
||||
"Blockquote": "Kutipan",
|
||||
"Numbered list": "Daftar bernomor",
|
||||
"Heading 1": "Judul 1",
|
||||
"Headings": "Judul",
|
||||
"Increase indent": "Tambah inden",
|
||||
"Formats": "Format",
|
||||
"Headers": "Judul",
|
||||
"Select all": "Pilih semua",
|
||||
"Header 3": "Judul 3",
|
||||
"Blocks": "Blok",
|
||||
"Undo": "Batal",
|
||||
"Strikethrough": "Coret",
|
||||
"Bullet list": "Daftar bersimbol",
|
||||
"Header 1": "Judul 1",
|
||||
"Superscript": "Superskrip",
|
||||
"Clear formatting": "Hapus format",
|
||||
"Font Sizes": "Ukuran Huruf",
|
||||
"Subscript": "Subskrip",
|
||||
"Header 6": "Judul 6",
|
||||
"Redo": "Ulang",
|
||||
"Paragraph": "Paragraf",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Tebal",
|
||||
"Code": "Kode",
|
||||
"Italic": "Miring",
|
||||
"Align center": "Rata tengah",
|
||||
"Header 5": "Judul 5",
|
||||
"Heading 6": "Judul 6",
|
||||
"Heading 3": "Judul 3",
|
||||
"Decrease indent": "Turunkan inden",
|
||||
"Header 4": "Judul 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Penempelan sekarang dalam modus teks biasa. Konten sekarang akan disisipkan sebagai teks biasa sampai Anda memadamkan pilihan ini.",
|
||||
"Underline": "Garis bawah",
|
||||
"Cancel": "Batal",
|
||||
"Justify": "Penuh",
|
||||
"Inline": "Baris",
|
||||
"Copy": "Salin",
|
||||
"Align left": "Rata kiri",
|
||||
"Visual aids": "Alat bantu visual",
|
||||
"Lower Greek": "Huruf Kecil Yunani",
|
||||
"Square": "Kotak",
|
||||
"Default": "Bawaan",
|
||||
"Lower Alpha": "Huruf Kecil",
|
||||
"Circle": "Lingkaran",
|
||||
"Disc": "Cakram",
|
||||
"Upper Alpha": "Huruf Besar",
|
||||
"Upper Roman": "Huruf Besar Romawi",
|
||||
"Lower Roman": "Huruf Kecil Romawi",
|
||||
"Name": "Nama",
|
||||
"Anchor": "Jangkar",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Anda memiliki perubahan yang belum disimpan, yakin ingin beralih ?",
|
||||
"Restore last draft": "Muat kembali draft sebelumnya",
|
||||
"Special character": "Spesial karakter",
|
||||
"Source code": "Kode sumber",
|
||||
"B": "B",
|
||||
"R": "M",
|
||||
"G": "H",
|
||||
"Color": "Warna",
|
||||
"Right to left": "Kanan ke kiri",
|
||||
"Left to right": "Kiri ke kanan",
|
||||
"Emoticons": "Emotikon",
|
||||
"Robots": "Robot",
|
||||
"Document properties": "Properti dokumwn",
|
||||
"Title": "Judul",
|
||||
"Keywords": "Kata kunci",
|
||||
"Encoding": "Enkoding",
|
||||
"Description": "Deskripsi",
|
||||
"Author": "Penulis",
|
||||
"Fullscreen": "Layar penuh",
|
||||
"Horizontal line": "Garis horisontal",
|
||||
"Horizontal space": "Spasi horisontal",
|
||||
"Insert\/edit image": "Sisip\/sunting gambar",
|
||||
"General": "Umum",
|
||||
"Advanced": "Lanjutan",
|
||||
"Source": "Sumber",
|
||||
"Border": "Batas",
|
||||
"Constrain proportions": "Samakan proporsi",
|
||||
"Vertical space": "Spasi vertikal",
|
||||
"Image description": "Deskripsi gambar",
|
||||
"Style": "Gaya",
|
||||
"Dimensions": "Dimensi",
|
||||
"Insert image": "Sisipkan gambar",
|
||||
"Zoom in": "Perbesar",
|
||||
"Contrast": "Kontras",
|
||||
"Back": "Kembali",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Balik horisontal",
|
||||
"Resize": "Ubah ukuran",
|
||||
"Sharpen": "Ketajaman",
|
||||
"Zoom out": "Perkecil",
|
||||
"Image options": "Opsi gambar",
|
||||
"Apply": "Terapkan",
|
||||
"Brightness": "Kecerahan",
|
||||
"Rotate clockwise": "Putar searahjarumjam",
|
||||
"Rotate counterclockwise": "Putar berlawananjarumjam",
|
||||
"Edit image": "Sunting gambar",
|
||||
"Color levels": "Tingakt warna",
|
||||
"Crop": "Krop",
|
||||
"Orientation": "Orientasi",
|
||||
"Flip vertically": "Balik vertikal",
|
||||
"Invert": "Kebalikan",
|
||||
"Insert date\/time": "Sisipkan tanggal\/waktu",
|
||||
"Remove link": "Buang tautan",
|
||||
"Url": "Tautan",
|
||||
"Text to display": "Teks yang ditampilkan",
|
||||
"Anchors": "Jangkar",
|
||||
"Insert link": "Sisipkan tautan",
|
||||
"New window": "Jendela baru",
|
||||
"None": "Tidak ada",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Tautan yang anda masukkan sepertinya adalah tautan eksternal. Apakah Anda ingin menambahkan prefiks http:\/\/ yang dibutuhkan?",
|
||||
"Target": "Jendela tujuan",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Tautan yang anda masukkan sepertinya adalah alamat email. Apakah Anda ingin menambahkan prefiks mailto: yang dibutuhkan?",
|
||||
"Insert\/edit link": "Sisip\/sunting tautan",
|
||||
"Insert\/edit video": "Sisip\/sunting video",
|
||||
"Poster": "Penulis",
|
||||
"Alternative source": "Sumber alternatif",
|
||||
"Paste your embed code below:": "Tempel kode yang diembed dibawah ini:",
|
||||
"Insert video": "Sisipkan video",
|
||||
"Embed": "Embed",
|
||||
"Nonbreaking space": "Spasi",
|
||||
"Page break": "Baris baru",
|
||||
"Paste as text": "Tempel sebagai teks biasa",
|
||||
"Preview": "Pratinjau",
|
||||
"Print": "Cetak",
|
||||
"Save": "Simpan",
|
||||
"Could not find the specified string.": "Tidak dapat menemukan string yang dimaksud.",
|
||||
"Replace": "Ganti",
|
||||
"Next": "Berikutnya",
|
||||
"Whole words": "Semua kata",
|
||||
"Find and replace": "Cari dan ganti",
|
||||
"Replace with": "Ganti dengan",
|
||||
"Find": "Cari",
|
||||
"Replace all": "Ganti semua",
|
||||
"Match case": "Samakan besar kecil huruf",
|
||||
"Prev": "Sebelumnya",
|
||||
"Spellcheck": "Periksa ejaan",
|
||||
"Finish": "Selesai",
|
||||
"Ignore all": "Abaikan semua",
|
||||
"Ignore": "Abaikan",
|
||||
"Add to Dictionary": "Tambahkan ke kamus",
|
||||
"Insert row before": "Sisipkan baris sebelum",
|
||||
"Rows": "Baris",
|
||||
"Height": "Tinggi",
|
||||
"Paste row after": "Tempel baris setelah",
|
||||
"Alignment": "Penjajaran",
|
||||
"Border color": "Warna batas",
|
||||
"Column group": "Kelompok kolom",
|
||||
"Row": "Baris",
|
||||
"Insert column before": "Sisipkan kolom sebelum",
|
||||
"Split cell": "Bagi sel",
|
||||
"Cell padding": "Lapisan sel",
|
||||
"Cell spacing": "Spasi sel ",
|
||||
"Row type": "Tipe baris",
|
||||
"Insert table": "Sisipkan tabel",
|
||||
"Body": "Body",
|
||||
"Caption": "Caption",
|
||||
"Footer": "Footer",
|
||||
"Delete row": "Hapus baris",
|
||||
"Paste row before": "Tempel baris sebelum",
|
||||
"Scope": "Skup",
|
||||
"Delete table": "Hapus tabel",
|
||||
"H Align": "Rata Samping",
|
||||
"Top": "Atas",
|
||||
"Header cell": "Judul sel",
|
||||
"Column": "Kolom",
|
||||
"Row group": "Kelompok baris",
|
||||
"Cell": "Sel",
|
||||
"Middle": "Tengah",
|
||||
"Cell type": "Tipe sel",
|
||||
"Copy row": "Salin baris",
|
||||
"Row properties": "Properti baris",
|
||||
"Table properties": "Properti tabel",
|
||||
"Bottom": "Bawah",
|
||||
"V Align": "Rata Atas",
|
||||
"Header": "Judul",
|
||||
"Right": "Kanan",
|
||||
"Insert column after": "Sisipkan kolom setelah",
|
||||
"Cols": "Kolom",
|
||||
"Insert row after": "Sisipkan baris setelah",
|
||||
"Width": "Lebar",
|
||||
"Cell properties": "Properti sel",
|
||||
"Left": "Kiri",
|
||||
"Cut row": "Penggal baris",
|
||||
"Delete column": "Hapus kolom",
|
||||
"Center": "Tengah",
|
||||
"Merge cells": "Gabung sel",
|
||||
"Insert template": "Sisipkan templat",
|
||||
"Templates": "Templat",
|
||||
"Background color": "Warna latar",
|
||||
"Custom...": "Atur sendiri...",
|
||||
"Custom color": "Warna sendiri",
|
||||
"No color": "Tidak berwarna",
|
||||
"Text color": "Warna teks",
|
||||
"Show blocks": "Tampilkan blok",
|
||||
"Show invisible characters": "Tampilkan karakter tak tampak",
|
||||
"Words: {0}": "Kata: {0}",
|
||||
"Insert": "Sisip",
|
||||
"File": "Berkas",
|
||||
"Edit": "Sunting",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Area teks kaya. Tekan ALT-F9 untuk menu. Tekan ALT-F10 untuk toolbar. Tekan ALT-0 untuk bantuan",
|
||||
"Tools": "Alat",
|
||||
"View": "Tampilan",
|
||||
"Table": "Tabel",
|
||||
"Format": "Format"
|
||||
});
|
|
@ -0,0 +1,219 @@
|
|||
tinymce.addI18n('it',{
|
||||
"Cut": "Taglia",
|
||||
"Heading 5": "Intestazione 5",
|
||||
"Header 2": "Header 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Il tuo browser non supporta l'accesso diretto negli Appunti. Per favore usa i tasti di scelta rapida Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Intestazione 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Intestazione 2",
|
||||
"Paste": "Incolla",
|
||||
"Close": "Chiudi",
|
||||
"Font Family": "Famiglia font",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Allinea a Destra",
|
||||
"New document": "Nuovo Documento",
|
||||
"Blockquote": "Blockquote",
|
||||
"Numbered list": "Elenchi Numerati",
|
||||
"Heading 1": "Intestazione 1",
|
||||
"Headings": "Intestazioni",
|
||||
"Increase indent": "Aumenta Rientro",
|
||||
"Formats": "Formattazioni",
|
||||
"Headers": "Intestazioni",
|
||||
"Select all": "Seleziona Tutto",
|
||||
"Header 3": "Intestazione 3",
|
||||
"Blocks": "Blocchi",
|
||||
"Undo": "Indietro",
|
||||
"Strikethrough": "Barrato",
|
||||
"Bullet list": "Elenchi Puntati",
|
||||
"Header 1": "Intestazione 1",
|
||||
"Superscript": "Apice",
|
||||
"Clear formatting": "Cancella Formattazione",
|
||||
"Font Sizes": "Dimensioni font",
|
||||
"Subscript": "Pedice",
|
||||
"Header 6": "Intestazione 6",
|
||||
"Redo": "Ripeti",
|
||||
"Paragraph": "Paragrafo",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Grassetto",
|
||||
"Code": "Codice",
|
||||
"Italic": "Corsivo",
|
||||
"Align center": "Allinea al Cento",
|
||||
"Header 5": "Intestazione 5",
|
||||
"Heading 6": "Intestazione 6",
|
||||
"Heading 3": "Intestazione 3",
|
||||
"Decrease indent": "Riduci Rientro",
|
||||
"Header 4": "Intestazione 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Incolla \u00e8 in modalit\u00e0 testo normale. I contenuti sono incollati come testo normale se non disattivi l'opzione.",
|
||||
"Underline": "Sottolineato",
|
||||
"Cancel": "Cancella",
|
||||
"Justify": "Giustifica",
|
||||
"Inline": "Inlinea",
|
||||
"Copy": "Copia",
|
||||
"Align left": "Allinea a Sinistra",
|
||||
"Visual aids": "Elementi Visivi",
|
||||
"Lower Greek": "Greek Minore",
|
||||
"Square": "Quadrato",
|
||||
"Default": "Default",
|
||||
"Lower Alpha": "Alpha Minore",
|
||||
"Circle": "Cerchio",
|
||||
"Disc": "Disco",
|
||||
"Upper Alpha": "Alpha Superiore",
|
||||
"Upper Roman": "Roman Superiore",
|
||||
"Lower Roman": "Roman Minore",
|
||||
"Name": "Nome",
|
||||
"Anchor": "Fissa",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Non hai salvato delle modifiche, sei sicuro di andartene?",
|
||||
"Restore last draft": "Ripristina l'ultima bozza.",
|
||||
"Special character": "Carattere Speciale",
|
||||
"Source code": "Codice Sorgente",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Colore",
|
||||
"Right to left": "Da Destra a Sinistra",
|
||||
"Left to right": "Da Sinistra a Destra",
|
||||
"Emoticons": "Emoction",
|
||||
"Robots": "Robot",
|
||||
"Document properties": "Propriet\u00e0 Documento",
|
||||
"Title": "Titolo",
|
||||
"Keywords": "Parola Chiave",
|
||||
"Encoding": "Codifica",
|
||||
"Description": "Descrizione",
|
||||
"Author": "Autore",
|
||||
"Fullscreen": "Schermo Intero",
|
||||
"Horizontal line": "Linea Orizzontale",
|
||||
"Horizontal space": "Spazio Orizzontale",
|
||||
"Insert\/edit image": "Aggiungi\/Modifica Immagine",
|
||||
"General": "Generale",
|
||||
"Advanced": "Avanzato",
|
||||
"Source": "Fonte",
|
||||
"Border": "Bordo",
|
||||
"Constrain proportions": "Mantieni Proporzioni",
|
||||
"Vertical space": "Spazio Verticale",
|
||||
"Image description": "Descrizione Immagine",
|
||||
"Style": "Stile",
|
||||
"Dimensions": "Dimenzioni",
|
||||
"Insert image": "Inserisci immagine",
|
||||
"Zoom in": "Ingrandisci",
|
||||
"Contrast": "Contrasto",
|
||||
"Back": "Indietro",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Rifletti orizzontalmente",
|
||||
"Resize": "Ridimensiona",
|
||||
"Sharpen": "Contrasta",
|
||||
"Zoom out": "Rimpicciolisci",
|
||||
"Image options": "Opzioni immagine",
|
||||
"Apply": "Applica",
|
||||
"Brightness": "Luminosit\u00e0",
|
||||
"Rotate clockwise": "Ruota in senso orario",
|
||||
"Rotate counterclockwise": "Ruota in senso antiorario",
|
||||
"Edit image": "Modifica immagine",
|
||||
"Color levels": "Livelli colore",
|
||||
"Crop": "Taglia",
|
||||
"Orientation": "Orientamento",
|
||||
"Flip vertically": "Rifletti verticalmente",
|
||||
"Invert": "Inverti",
|
||||
"Insert date\/time": "Inserisci Data\/Ora",
|
||||
"Remove link": "Rimuovi link",
|
||||
"Url": "Url",
|
||||
"Text to display": "Testo da Visualizzare",
|
||||
"Anchors": "Anchors",
|
||||
"Insert link": "Inserisci il Link",
|
||||
"New window": "Nuova Finestra",
|
||||
"None": "No",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "L'URL inserito sembra essere un collegamento esterno. Vuoi aggiungere il prefisso necessario http:\/\/?",
|
||||
"Target": "Target",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "L'URL inserito sembra essere un indirizzo email. Vuoi aggiungere il prefisso necessario mailto:?",
|
||||
"Insert\/edit link": "Inserisci\/Modifica Link",
|
||||
"Insert\/edit video": "Inserisci\/Modifica Video",
|
||||
"Poster": "Anteprima",
|
||||
"Alternative source": "Alternativo",
|
||||
"Paste your embed code below:": "Incolla il codice d'incorporamento qui:",
|
||||
"Insert video": "Inserisci Video",
|
||||
"Embed": "Incorporare",
|
||||
"Nonbreaking space": "Spazio unificatore",
|
||||
"Page break": "Interruzione di pagina",
|
||||
"Paste as text": "incolla come testo",
|
||||
"Preview": "Anteprima",
|
||||
"Print": "Stampa",
|
||||
"Save": "Salva",
|
||||
"Could not find the specified string.": "Impossibile trovare la parola specifica.",
|
||||
"Replace": "Sostituisci",
|
||||
"Next": "Successivo",
|
||||
"Whole words": "Parole Sbagliate",
|
||||
"Find and replace": "Trova e Sostituisci",
|
||||
"Replace with": "Sostituisci Con",
|
||||
"Find": "Trova",
|
||||
"Replace all": "Sostituisci Tutto",
|
||||
"Match case": "Maiuscole\/Minuscole ",
|
||||
"Prev": "Precedente",
|
||||
"Spellcheck": "Controllo ortografico",
|
||||
"Finish": "Termina",
|
||||
"Ignore all": "Ignora Tutto",
|
||||
"Ignore": "Ignora",
|
||||
"Add to Dictionary": "Aggiungi al Dizionario",
|
||||
"Insert row before": "Inserisci una Riga Prima",
|
||||
"Rows": "Righe",
|
||||
"Height": "Altezza",
|
||||
"Paste row after": "Incolla una Riga Dopo",
|
||||
"Alignment": "Allineamento",
|
||||
"Border color": "Colore bordo",
|
||||
"Column group": "Gruppo di Colonne",
|
||||
"Row": "Riga",
|
||||
"Insert column before": "Inserisci una Colonna Prima",
|
||||
"Split cell": "Dividi Cella",
|
||||
"Cell padding": "Padding della Cella",
|
||||
"Cell spacing": "Spaziatura della Cella",
|
||||
"Row type": "Tipo di Riga",
|
||||
"Insert table": "Inserisci Tabella",
|
||||
"Body": "Body",
|
||||
"Caption": "Didascalia",
|
||||
"Footer": "Footer",
|
||||
"Delete row": "Cancella Riga",
|
||||
"Paste row before": "Incolla una Riga Prima",
|
||||
"Scope": "Campo",
|
||||
"Delete table": "Cancella Tabella",
|
||||
"H Align": "Allineamento H",
|
||||
"Top": "In alto",
|
||||
"Header cell": "cella d'intestazione",
|
||||
"Column": "Colonna",
|
||||
"Row group": "Gruppo di Righe",
|
||||
"Cell": "Cella",
|
||||
"Middle": "In mezzo",
|
||||
"Cell type": "Tipo di Cella",
|
||||
"Copy row": "Copia Riga",
|
||||
"Row properties": "Propriet\u00e0 della Riga",
|
||||
"Table properties": "Propiet\u00e0 della Tabella",
|
||||
"Bottom": "In fondo",
|
||||
"V Align": "Allineamento V",
|
||||
"Header": "Header",
|
||||
"Right": "Destra",
|
||||
"Insert column after": "Inserisci una Colonna Dopo",
|
||||
"Cols": "Colonne",
|
||||
"Insert row after": "Inserisci una Riga Dopo",
|
||||
"Width": "Larghezza",
|
||||
"Cell properties": "Propiet\u00e0 della Cella",
|
||||
"Left": "Sinistra",
|
||||
"Cut row": "Taglia Riga",
|
||||
"Delete column": "Cancella Colonna",
|
||||
"Center": "Centro",
|
||||
"Merge cells": "Unisci Cella",
|
||||
"Insert template": "Inserisci Template",
|
||||
"Templates": "Template",
|
||||
"Background color": "Colore Background",
|
||||
"Custom...": "Personalizzato...",
|
||||
"Custom color": "Colore personalizzato",
|
||||
"No color": "Nessun colore",
|
||||
"Text color": "Colore Testo",
|
||||
"Show blocks": "Mostra Blocchi",
|
||||
"Show invisible characters": "Mostra Caratteri Invisibili",
|
||||
"Words: {0}": "Parole: {0}",
|
||||
"Insert": "Inserisci",
|
||||
"File": "File",
|
||||
"Edit": "Modifica",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Premi ALT-F9 per il men\u00f9. Premi ALT-F10 per la barra degli strumenti. Premi ALT-0 per l'aiuto.",
|
||||
"Tools": "Strumenti",
|
||||
"View": "Visualiza",
|
||||
"Table": "Tabella",
|
||||
"Format": "Formato"
|
||||
});
|
|
@ -0,0 +1,219 @@
|
|||
tinymce.addI18n('ja',{
|
||||
"Cut": "\u5207\u308a\u53d6\u308a",
|
||||
"Heading 5": "\u898b\u51fa\u3057 5",
|
||||
"Header 2": "\u30d8\u30c3\u30c0\u30fc 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u304a\u4f7f\u3044\u306e\u30d6\u30e9\u30a6\u30b6\u3067\u306f\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u6a5f\u80fd\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u30ad\u30fc\u30dc\u30fc\u30c9\u306e\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\uff08Ctrl+X, Ctrl+C, Ctrl+V\uff09\u3092\u304a\u4f7f\u3044\u4e0b\u3055\u3044\u3002",
|
||||
"Heading 4": "\u898b\u51fa\u3057 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u898b\u51fa\u3057 2",
|
||||
"Paste": "\u8cbc\u308a\u4ed8\u3051",
|
||||
"Close": "\u9589\u3058\u308b",
|
||||
"Font Family": "\u30d5\u30a9\u30f3\u30c8\u30d5\u30a1\u30df\u30ea\u30fc",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u53f3\u5bc4\u305b",
|
||||
"New document": "\u65b0\u898f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8",
|
||||
"Blockquote": "\u5f15\u7528",
|
||||
"Numbered list": "\u756a\u53f7\u4ed8\u304d\u7b87\u6761\u66f8\u304d",
|
||||
"Heading 1": "\u898b\u51fa\u3057 1",
|
||||
"Headings": "\u898b\u51fa\u3057",
|
||||
"Increase indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u5897\u3084\u3059",
|
||||
"Formats": "\u66f8\u5f0f",
|
||||
"Headers": "\u30d8\u30c3\u30c0\u30fc",
|
||||
"Select all": "\u5168\u3066\u3092\u9078\u629e",
|
||||
"Header 3": "\u30d8\u30c3\u30c0\u30fc 3",
|
||||
"Blocks": "\u30d6\u30ed\u30c3\u30af",
|
||||
"Undo": "\u5143\u306b\u623b\u3059",
|
||||
"Strikethrough": "\u53d6\u308a\u6d88\u3057\u7dda",
|
||||
"Bullet list": "\u7b87\u6761\u66f8\u304d",
|
||||
"Header 1": "\u30d8\u30c3\u30c0\u30fc 1",
|
||||
"Superscript": "\u4e0a\u4ed8\u304d\u6587\u5b57",
|
||||
"Clear formatting": "\u66f8\u5f0f\u3092\u30af\u30ea\u30a2",
|
||||
"Font Sizes": "\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba",
|
||||
"Subscript": "\u4e0b\u4ed8\u304d\u6587\u5b57",
|
||||
"Header 6": "\u30d8\u30c3\u30c0\u30fc 6",
|
||||
"Redo": "\u3084\u308a\u76f4\u3059",
|
||||
"Paragraph": "\u6bb5\u843d",
|
||||
"Ok": "OK",
|
||||
"Bold": "\u592a\u5b57",
|
||||
"Code": "\u30b3\u30fc\u30c9",
|
||||
"Italic": "\u659c\u4f53",
|
||||
"Align center": "\u4e2d\u592e\u63c3\u3048",
|
||||
"Header 5": "\u30d8\u30c3\u30c0\u30fc 5",
|
||||
"Heading 6": "\u898b\u51fa\u3057 6",
|
||||
"Heading 3": "\u898b\u51fa\u3057 3",
|
||||
"Decrease indent": "\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059",
|
||||
"Header 4": "\u30d8\u30c3\u30c0\u30fc 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u8cbc\u308a\u4ed8\u3051\u306f\u73fe\u5728\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30e2\u30fc\u30c9\u3067\u3059\u3002\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u306b\u3057\u306a\u3044\u9650\u308a\u5185\u5bb9\u306f\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051\u3089\u308c\u307e\u3059\u3002",
|
||||
"Underline": "\u4e0b\u7dda",
|
||||
"Cancel": "\u30ad\u30e3\u30f3\u30bb\u30eb",
|
||||
"Justify": "\u4e21\u7aef\u63c3\u3048",
|
||||
"Inline": "\u30a4\u30f3\u30e9\u30a4\u30f3",
|
||||
"Copy": "\u30b3\u30d4\u30fc",
|
||||
"Align left": "\u5de6\u5bc4\u305b",
|
||||
"Visual aids": "\u8868\u306e\u67a0\u7dda\u3092\u70b9\u7dda\u3067\u8868\u793a",
|
||||
"Lower Greek": "\u5c0f\u6587\u5b57\u306e\u30ae\u30ea\u30b7\u30e3\u6587\u5b57",
|
||||
"Square": "\u56db\u89d2",
|
||||
"Default": "\u30c7\u30d5\u30a9\u30eb\u30c8",
|
||||
"Lower Alpha": "\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8",
|
||||
"Circle": "\u5186",
|
||||
"Disc": "\u70b9",
|
||||
"Upper Alpha": "\u5927\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8",
|
||||
"Upper Roman": "\u5927\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
|
||||
"Lower Roman": "\u5c0f\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57",
|
||||
"Name": "\u30a2\u30f3\u30ab\u30fc\u540d",
|
||||
"Anchor": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u307e\u3060\u4fdd\u5b58\u3057\u3066\u3044\u306a\u3044\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u672c\u5f53\u306b\u3053\u306e\u30da\u30fc\u30b8\u3092\u96e2\u308c\u307e\u3059\u304b\uff1f",
|
||||
"Restore last draft": "\u524d\u56de\u306e\u4e0b\u66f8\u304d\u3092\u5fa9\u6d3b\u3055\u305b\u308b",
|
||||
"Special character": "\u7279\u6b8a\u6587\u5b57",
|
||||
"Source code": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u30ab\u30e9\u30fc",
|
||||
"Right to left": "\u53f3\u304b\u3089\u5de6",
|
||||
"Left to right": "\u5de6\u304b\u3089\u53f3",
|
||||
"Emoticons": "\u7d75\u6587\u5b57",
|
||||
"Robots": "\u30ed\u30dc\u30c3\u30c4",
|
||||
"Document properties": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d7\u30ed\u30d1\u30c6\u30a3",
|
||||
"Title": "\u30bf\u30a4\u30c8\u30eb",
|
||||
"Keywords": "\u30ad\u30fc\u30ef\u30fc\u30c9",
|
||||
"Encoding": "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0",
|
||||
"Description": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5185\u5bb9",
|
||||
"Author": "\u8457\u8005",
|
||||
"Fullscreen": "\u5168\u753b\u9762\u8868\u793a",
|
||||
"Horizontal line": "\u6c34\u5e73\u7f6b\u7dda",
|
||||
"Horizontal space": "\u6a2a\u65b9\u5411\u306e\u4f59\u767d",
|
||||
"Insert\/edit image": "\u753b\u50cf\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||
"General": "\u4e00\u822c",
|
||||
"Advanced": "\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Source": "\u753b\u50cf\u306e\u30bd\u30fc\u30b9",
|
||||
"Border": "\u67a0\u7dda",
|
||||
"Constrain proportions": "\u7e26\u6a2a\u6bd4\u3092\u4fdd\u6301\u3059\u308b",
|
||||
"Vertical space": "\u7e26\u65b9\u5411\u306e\u4f59\u767d",
|
||||
"Image description": "\u753b\u50cf\u306e\u8aac\u660e\u6587",
|
||||
"Style": "\u30b9\u30bf\u30a4\u30eb",
|
||||
"Dimensions": "\u753b\u50cf\u30b5\u30a4\u30ba\uff08\u6a2a\u30fb\u7e26\uff09",
|
||||
"Insert image": "\u753b\u50cf\u306e\u633f\u5165",
|
||||
"Zoom in": "\u30ba\u30fc\u30e0\u30a4\u30f3",
|
||||
"Contrast": "\u30b3\u30f3\u30c8\u30e9\u30b9\u30c8",
|
||||
"Back": "\u623b\u308b",
|
||||
"Gamma": "\u30ac\u30f3\u30de",
|
||||
"Flip horizontally": "\u6c34\u5e73\u306b\u53cd\u8ee2",
|
||||
"Resize": "\u30ea\u30b5\u30a4\u30ba",
|
||||
"Sharpen": "\u30b7\u30e3\u30fc\u30d7\u5316",
|
||||
"Zoom out": "\u30ba\u30fc\u30e0\u30a2\u30a6\u30c8",
|
||||
"Image options": "\u753b\u50cf\u30aa\u30d7\u30b7\u30e7\u30f3",
|
||||
"Apply": "\u9069\u7528",
|
||||
"Brightness": "\u660e\u308b\u3055",
|
||||
"Rotate clockwise": "\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2",
|
||||
"Rotate counterclockwise": "\u53cd\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2",
|
||||
"Edit image": "\u753b\u50cf\u306e\u7de8\u96c6",
|
||||
"Color levels": "\u30ab\u30e9\u30fc\u30ec\u30d9\u30eb",
|
||||
"Crop": "\u30af\u30ed\u30c3\u30d7",
|
||||
"Orientation": "\u5411\u304d",
|
||||
"Flip vertically": "\u4e0a\u4e0b\u306b\u53cd\u8ee2",
|
||||
"Invert": "\u53cd\u8ee2",
|
||||
"Insert date\/time": "\u65e5\u4ed8\u30fb\u6642\u523b",
|
||||
"Remove link": "\u30ea\u30f3\u30af\u306e\u524a\u9664",
|
||||
"Url": "\u30ea\u30f3\u30af\u5148URL",
|
||||
"Text to display": "\u30ea\u30f3\u30af\u5143\u30c6\u30ad\u30b9\u30c8",
|
||||
"Anchors": "\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09",
|
||||
"Insert link": "\u30ea\u30f3\u30af",
|
||||
"New window": "\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6",
|
||||
"None": "\u306a\u3057",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u300chttp:\/\/\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
|
||||
"Target": "\u30bf\u30fc\u30b2\u30c3\u30c8\u5c5e\u6027",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u5165\u529b\u3055\u308c\u305fURL\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f",
|
||||
"Insert\/edit link": "\u30ea\u30f3\u30af\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||
"Insert\/edit video": "\u52d5\u753b\u306e\u633f\u5165\u30fb\u7de8\u96c6",
|
||||
"Poster": "\u4ee3\u66ff\u753b\u50cf\u306e\u5834\u6240",
|
||||
"Alternative source": "\u4ee3\u66ff\u52d5\u753b\u306e\u5834\u6240",
|
||||
"Paste your embed code below:": "\u57cb\u3081\u8fbc\u307f\u7528\u30b3\u30fc\u30c9\u3092\u4e0b\u8a18\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002",
|
||||
"Insert video": "\u52d5\u753b",
|
||||
"Embed": "\u57cb\u3081\u8fbc\u307f",
|
||||
"Nonbreaking space": "\u56fa\u5b9a\u30b9\u30da\u30fc\u30b9\uff08 \uff09",
|
||||
"Page break": "\u30da\u30fc\u30b8\u533a\u5207\u308a",
|
||||
"Paste as text": "\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051",
|
||||
"Preview": "\u30d7\u30ec\u30d3\u30e5\u30fc",
|
||||
"Print": "\u5370\u5237",
|
||||
"Save": "\u4fdd\u5b58",
|
||||
"Could not find the specified string.": "\u304a\u63a2\u3057\u306e\u6587\u5b57\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002",
|
||||
"Replace": "\u7f6e\u304d\u63db\u3048",
|
||||
"Next": "\u6b21",
|
||||
"Whole words": "\u5358\u8a9e\u5358\u4f4d\u3067\u691c\u7d22\u3059\u308b",
|
||||
"Find and replace": "\u691c\u7d22\u3068\u7f6e\u304d\u63db\u3048",
|
||||
"Replace with": "\u7f6e\u304d\u63db\u3048\u308b\u6587\u5b57",
|
||||
"Find": "\u691c\u7d22",
|
||||
"Replace all": "\u5168\u3066\u3092\u7f6e\u304d\u63db\u3048\u308b",
|
||||
"Match case": "\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3059\u308b",
|
||||
"Prev": "\u524d",
|
||||
"Spellcheck": "\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af",
|
||||
"Finish": "\u7d42\u4e86",
|
||||
"Ignore all": "\u5168\u3066\u3092\u7121\u8996",
|
||||
"Ignore": "\u7121\u8996",
|
||||
"Add to Dictionary": "\u8f9e\u66f8\u306b\u8ffd\u52a0",
|
||||
"Insert row before": "\u4e0a\u5074\u306b\u884c\u3092\u633f\u5165",
|
||||
"Rows": "\u884c\u6570",
|
||||
"Height": "\u9ad8\u3055",
|
||||
"Paste row after": "\u4e0b\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051",
|
||||
"Alignment": "\u914d\u7f6e",
|
||||
"Border color": "\u67a0\u7dda\u306e\u8272",
|
||||
"Column group": "\u5217\u30b0\u30eb\u30fc\u30d7",
|
||||
"Row": "\u884c",
|
||||
"Insert column before": "\u5de6\u5074\u306b\u5217\u3092\u633f\u5165",
|
||||
"Split cell": "\u30bb\u30eb\u306e\u5206\u5272",
|
||||
"Cell padding": "\u30bb\u30eb\u5185\u4f59\u767d\uff08\u30d1\u30c7\u30a3\u30f3\u30b0\uff09",
|
||||
"Cell spacing": "\u30bb\u30eb\u306e\u9593\u9694",
|
||||
"Row type": "\u884c\u30bf\u30a4\u30d7",
|
||||
"Insert table": "\u8868\u306e\u633f\u5165",
|
||||
"Body": "\u30dc\u30c7\u30a3\u30fc",
|
||||
"Caption": "\u8868\u984c",
|
||||
"Footer": "\u30d5\u30c3\u30bf\u30fc",
|
||||
"Delete row": "\u884c\u306e\u524a\u9664",
|
||||
"Paste row before": "\u4e0a\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051",
|
||||
"Scope": "\u30b9\u30b3\u30fc\u30d7",
|
||||
"Delete table": "\u8868\u306e\u524a\u9664",
|
||||
"H Align": "\u6c34\u5e73\u65b9\u5411\u306e\u914d\u7f6e",
|
||||
"Top": "\u4e0a",
|
||||
"Header cell": "\u30d8\u30c3\u30c0\u30fc\u30bb\u30eb",
|
||||
"Column": "\u5217",
|
||||
"Row group": "\u884c\u30b0\u30eb\u30fc\u30d7",
|
||||
"Cell": "\u30bb\u30eb",
|
||||
"Middle": "\u4e2d\u592e",
|
||||
"Cell type": "\u30bb\u30eb\u30bf\u30a4\u30d7",
|
||||
"Copy row": "\u884c\u306e\u30b3\u30d4\u30fc",
|
||||
"Row properties": "\u884c\u306e\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Table properties": "\u8868\u306e\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Bottom": "\u4e0b",
|
||||
"V Align": "\u5782\u76f4\u65b9\u5411\u306e\u914d\u7f6e",
|
||||
"Header": "\u30d8\u30c3\u30c0\u30fc",
|
||||
"Right": "\u53f3\u5bc4\u305b",
|
||||
"Insert column after": "\u53f3\u5074\u306b\u5217\u3092\u633f\u5165",
|
||||
"Cols": "\u5217\u6570",
|
||||
"Insert row after": "\u4e0b\u5074\u306b\u884c\u3092\u633f\u5165",
|
||||
"Width": "\u5e45",
|
||||
"Cell properties": "\u30bb\u30eb\u306e\u8a73\u7d30\u8a2d\u5b9a",
|
||||
"Left": "\u5de6\u5bc4\u305b",
|
||||
"Cut row": "\u884c\u306e\u5207\u308a\u53d6\u308a",
|
||||
"Delete column": "\u5217\u306e\u524a\u9664",
|
||||
"Center": "\u4e2d\u592e\u63c3\u3048",
|
||||
"Merge cells": "\u30bb\u30eb\u306e\u7d50\u5408",
|
||||
"Insert template": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165",
|
||||
"Templates": "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u540d",
|
||||
"Background color": "\u80cc\u666f\u8272",
|
||||
"Custom...": "\u30ab\u30b9\u30bf\u30e0...",
|
||||
"Custom color": "\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc",
|
||||
"No color": "\u30ab\u30e9\u30fc\u306a\u3057",
|
||||
"Text color": "\u30c6\u30ad\u30b9\u30c8\u306e\u8272",
|
||||
"Show blocks": "\u6587\u7ae0\u306e\u533a\u5207\u308a\u3092\u70b9\u7dda\u3067\u8868\u793a",
|
||||
"Show invisible characters": "\u4e0d\u53ef\u8996\u6587\u5b57\u3092\u8868\u793a",
|
||||
"Words: {0}": "\u5358\u8a9e\u6570: {0}",
|
||||
"Insert": "\u633f\u5165",
|
||||
"File": "\u30d5\u30a1\u30a4\u30eb",
|
||||
"Edit": "\u7de8\u96c6",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u66f8\u5f0f\u4ed8\u304d\u30c6\u30ad\u30b9\u30c8\u306e\u7de8\u96c6\u753b\u9762\u3002ALT-F9\u3067\u30e1\u30cb\u30e5\u30fc\u3001ALT-F10\u3067\u30c4\u30fc\u30eb\u30d0\u30fc\u3001ALT-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002",
|
||||
"Tools": "\u30c4\u30fc\u30eb",
|
||||
"View": "\u8868\u793a",
|
||||
"Table": "\u8868",
|
||||
"Format": "\u66f8\u5f0f"
|
||||
});
|
|
@ -0,0 +1,219 @@
|
|||
tinymce.addI18n('pl',{
|
||||
"Cut": "Wytnij",
|
||||
"Heading 5": "Nag\u0142\u00f3wek 5",
|
||||
"Header 2": "Nag\u0142\u00f3wek 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Twoja przegl\u0105darka nie obs\u0142uguje bezpo\u015bredniego dost\u0119pu do schowka. U\u017cyj zamiast tego kombinacji klawiszy Ctrl+X\/C\/V.",
|
||||
"Heading 4": "Nag\u0142\u00f3wek 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Nag\u0142\u00f3wek 2",
|
||||
"Paste": "Wklej",
|
||||
"Close": "Zamknij",
|
||||
"Font Family": "Kr\u00f3j czcionki",
|
||||
"Pre": "Sformatowany tekst",
|
||||
"Align right": "Wyr\u00f3wnaj do prawej",
|
||||
"New document": "Nowy dokument",
|
||||
"Blockquote": "Blok cytatu",
|
||||
"Numbered list": "Lista numerowana",
|
||||
"Heading 1": "Nag\u0142\u00f3wek 1",
|
||||
"Headings": "Nag\u0142\u00f3wki",
|
||||
"Increase indent": "Zwi\u0119ksz wci\u0119cie",
|
||||
"Formats": "Formaty",
|
||||
"Headers": "Nag\u0142\u00f3wki",
|
||||
"Select all": "Zaznacz wszystko",
|
||||
"Header 3": "Nag\u0142\u00f3wek 3",
|
||||
"Blocks": "Bloki",
|
||||
"Undo": "Cofnij",
|
||||
"Strikethrough": "Przekre\u015blenie",
|
||||
"Bullet list": "Lista wypunktowana",
|
||||
"Header 1": "Nag\u0142\u00f3wek 1",
|
||||
"Superscript": "Indeks g\u00f3rny",
|
||||
"Clear formatting": "Wyczy\u015b\u0107 formatowanie",
|
||||
"Font Sizes": "Rozmiar czcionki",
|
||||
"Subscript": "Indeks dolny",
|
||||
"Header 6": "Nag\u0142\u00f3wek 6",
|
||||
"Redo": "Pon\u00f3w",
|
||||
"Paragraph": "Akapit",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Pogrubienie",
|
||||
"Code": "Kod \u017ar\u00f3d\u0142owy",
|
||||
"Italic": "Kursywa",
|
||||
"Align center": "Wyr\u00f3wnaj do \u015brodka",
|
||||
"Header 5": "Nag\u0142\u00f3wek 5",
|
||||
"Heading 6": "Nag\u0142\u00f3wek 6",
|
||||
"Heading 3": "Nag\u0142\u00f3wek 3",
|
||||
"Decrease indent": "Zmniejsz wci\u0119cie",
|
||||
"Header 4": "Nag\u0142\u00f3wek 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Wklejanie jest w trybie tekstowym. Zawarto\u015b\u0107 zostanie wklejona jako zwyk\u0142y tekst dop\u00f3ki nie wy\u0142\u0105czysz tej opcji.",
|
||||
"Underline": "Podkre\u015blenie",
|
||||
"Cancel": "Anuluj",
|
||||
"Justify": "Do lewej i prawej",
|
||||
"Inline": "W tek\u015bcie",
|
||||
"Copy": "Kopiuj",
|
||||
"Align left": "Wyr\u00f3wnaj do lewej",
|
||||
"Visual aids": "Pomoce wizualne",
|
||||
"Lower Greek": "Ma\u0142e greckie",
|
||||
"Square": "Kwadrat",
|
||||
"Default": "Domy\u015blne",
|
||||
"Lower Alpha": "Ma\u0142e litery",
|
||||
"Circle": "K\u00f3\u0142ko",
|
||||
"Disc": "Dysk",
|
||||
"Upper Alpha": "Wielkie litery",
|
||||
"Upper Roman": "Wielkie rzymskie",
|
||||
"Lower Roman": "Ma\u0142e rzymskie",
|
||||
"Name": "Nazwa",
|
||||
"Anchor": "Kotwica",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Masz niezapisane zmiany. Czy na pewno chcesz opu\u015bci\u0107 stron\u0119?",
|
||||
"Restore last draft": "Przywr\u00f3\u0107 ostatni szkic",
|
||||
"Special character": "Znak specjalny",
|
||||
"Source code": "Kod \u017ar\u00f3d\u0142owy",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Kolor",
|
||||
"Right to left": "Od prawej do lewej",
|
||||
"Left to right": "Od lewej do prawej",
|
||||
"Emoticons": "Ikony emocji",
|
||||
"Robots": "Roboty",
|
||||
"Document properties": "W\u0142a\u015bciwo\u015bci dokumentu",
|
||||
"Title": "Tytu\u0142",
|
||||
"Keywords": "S\u0142owa kluczowe",
|
||||
"Encoding": "Kodowanie",
|
||||
"Description": "Opis",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Pe\u0142ny ekran",
|
||||
"Horizontal line": "Pozioma linia",
|
||||
"Horizontal space": "Odst\u0119p poziomy",
|
||||
"Insert\/edit image": "Wstaw\/edytuj obrazek",
|
||||
"General": "Og\u00f3lne",
|
||||
"Advanced": "Zaawansowane",
|
||||
"Source": "\u0179r\u00f3d\u0142o",
|
||||
"Border": "Ramka",
|
||||
"Constrain proportions": "Zachowaj proporcje",
|
||||
"Vertical space": "Odst\u0119p pionowy",
|
||||
"Image description": "Opis obrazka",
|
||||
"Style": "Styl",
|
||||
"Dimensions": "Wymiary",
|
||||
"Insert image": "Wstaw obrazek",
|
||||
"Zoom in": "Powi\u0119ksz",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Cofnij",
|
||||
"Gamma": "Gamma",
|
||||
"Flip horizontally": "Przerzu\u0107 w poziomie",
|
||||
"Resize": "Zmiana rozmiaru",
|
||||
"Sharpen": "Wyostrz",
|
||||
"Zoom out": "Pomniejsz",
|
||||
"Image options": "Opcje obrazu",
|
||||
"Apply": "Zaakceptuj",
|
||||
"Brightness": "Jasno\u015b\u0107",
|
||||
"Rotate clockwise": "Obr\u00f3\u0107 w prawo",
|
||||
"Rotate counterclockwise": "Obr\u00f3\u0107 w lewo",
|
||||
"Edit image": "Edytuj obrazek",
|
||||
"Color levels": "Poziom koloru",
|
||||
"Crop": "Przytnij",
|
||||
"Orientation": "Orientacja",
|
||||
"Flip vertically": "Przerzu\u0107 w pionie",
|
||||
"Invert": "Odwr\u00f3\u0107",
|
||||
"Insert date\/time": "Wstaw dat\u0119\/czas",
|
||||
"Remove link": "Usu\u0144 link",
|
||||
"Url": "Url",
|
||||
"Text to display": "Tekst do wy\u015bwietlenia",
|
||||
"Anchors": "Kotwice",
|
||||
"Insert link": "Wstaw \u0142\u0105cze",
|
||||
"New window": "Nowe okno",
|
||||
"None": "\u017baden",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na link zewn\u0119trzny. Czy chcesz doda\u0107 http:\/\/ jako prefiks?",
|
||||
"Target": "Cel",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL, kt\u00f3ry wprowadzi\u0142e\u015b wygl\u0105da na adres e-mail. Czy chcesz doda\u0107 mailto: jako prefiks?",
|
||||
"Insert\/edit link": "Wstaw\/edytuj link",
|
||||
"Insert\/edit video": "Wstaw\/edytuj wideo",
|
||||
"Poster": "Plakat",
|
||||
"Alternative source": "Alternatywne \u017ar\u00f3d\u0142o",
|
||||
"Paste your embed code below:": "Wklej tutaj kod do osadzenia:",
|
||||
"Insert video": "Wstaw wideo",
|
||||
"Embed": "Osad\u017a",
|
||||
"Nonbreaking space": "Nie\u0142amliwa spacja",
|
||||
"Page break": "Podzia\u0142 strony",
|
||||
"Paste as text": "Wklej jako zwyk\u0142y tekst",
|
||||
"Preview": "Podgl\u0105d",
|
||||
"Print": "Drukuj",
|
||||
"Save": "Zapisz",
|
||||
"Could not find the specified string.": "Nie znaleziono szukanego tekstu.",
|
||||
"Replace": "Zamie\u0144",
|
||||
"Next": "Nast.",
|
||||
"Whole words": "Ca\u0142e s\u0142owa",
|
||||
"Find and replace": "Znajd\u017a i zamie\u0144",
|
||||
"Replace with": "Zamie\u0144 na",
|
||||
"Find": "Znajd\u017a",
|
||||
"Replace all": "Zamie\u0144 wszystko",
|
||||
"Match case": "Dopasuj wielko\u015b\u0107 liter",
|
||||
"Prev": "Poprz.",
|
||||
"Spellcheck": "Sprawdzanie pisowni",
|
||||
"Finish": "Zako\u0144cz",
|
||||
"Ignore all": "Ignoruj wszystko",
|
||||
"Ignore": "Ignoruj",
|
||||
"Add to Dictionary": "Dodaj do s\u0142ownika",
|
||||
"Insert row before": "Wstaw wiersz przed",
|
||||
"Rows": "Wiersz.",
|
||||
"Height": "Wysoko\u015b\u0107",
|
||||
"Paste row after": "Wklej wiersz po",
|
||||
"Alignment": "Wyr\u00f3wnanie",
|
||||
"Border color": "Kolor ramki",
|
||||
"Column group": "Grupa kolumn",
|
||||
"Row": "Wiersz",
|
||||
"Insert column before": "Wstaw kolumn\u0119 przed",
|
||||
"Split cell": "Podziel kom\u00f3rk\u0119",
|
||||
"Cell padding": "Dope\u0142nienie kom\u00f3rki",
|
||||
"Cell spacing": "Odst\u0119py kom\u00f3rek",
|
||||
"Row type": "Typ wiersza",
|
||||
"Insert table": "Wstaw tabel\u0119",
|
||||
"Body": "Tre\u015b\u0107",
|
||||
"Caption": "Tytu\u0142",
|
||||
"Footer": "Stopka",
|
||||
"Delete row": "Usu\u0144 wiersz",
|
||||
"Paste row before": "Wklej wiersz przed",
|
||||
"Scope": "Kontekst",
|
||||
"Delete table": "Usu\u0144 tabel\u0119",
|
||||
"H Align": "Wyr\u00f3wnanie w pionie",
|
||||
"Top": "G\u00f3ra",
|
||||
"Header cell": "Kom\u00f3rka nag\u0142\u00f3wka",
|
||||
"Column": "Kolumna",
|
||||
"Row group": "Grupa wierszy",
|
||||
"Cell": "Kom\u00f3rka",
|
||||
"Middle": "\u015arodek",
|
||||
"Cell type": "Typ kom\u00f3rki",
|
||||
"Copy row": "Kopiuj wiersz",
|
||||
"Row properties": "W\u0142a\u015bciwo\u015bci wiersza",
|
||||
"Table properties": "W\u0142a\u015bciwo\u015bci tabeli",
|
||||
"Bottom": "D\u00f3\u0142",
|
||||
"V Align": "Wyr\u00f3wnanie w poziomie",
|
||||
"Header": "Nag\u0142\u00f3wek",
|
||||
"Right": "Prawo",
|
||||
"Insert column after": "Wstaw kolumn\u0119 po",
|
||||
"Cols": "Kol.",
|
||||
"Insert row after": "Wstaw wiersz po",
|
||||
"Width": "Szeroko\u015b\u0107",
|
||||
"Cell properties": "W\u0142a\u015bciwo\u015bci kom\u00f3rki",
|
||||
"Left": "Lewo",
|
||||
"Cut row": "Wytnij wiersz",
|
||||
"Delete column": "Usu\u0144 kolumn\u0119",
|
||||
"Center": "\u015arodek",
|
||||
"Merge cells": "\u0141\u0105cz kom\u00f3rki",
|
||||
"Insert template": "Wstaw szablon",
|
||||
"Templates": "Szablony",
|
||||
"Background color": "Kolor t\u0142a",
|
||||
"Custom...": "Niestandardowy...",
|
||||
"Custom color": "Kolor niestandardowy",
|
||||
"No color": "Bez koloru",
|
||||
"Text color": "Kolor tekstu",
|
||||
"Show blocks": "Poka\u017c bloki",
|
||||
"Show invisible characters": "Poka\u017c niewidoczne znaki",
|
||||
"Words: {0}": "S\u0142\u00f3w: {0}",
|
||||
"Insert": "Wstaw",
|
||||
"File": "Plik",
|
||||
"Edit": "Edycja",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Obszar Edycji. ALT-F9 - menu. ALT-F10 - pasek narz\u0119dzi. ALT-0 - pomoc",
|
||||
"Tools": "Narz\u0119dzia",
|
||||
"View": "Widok",
|
||||
"Table": "Tabela",
|
||||
"Format": "Format"
|
||||
});
|
|
@ -0,0 +1,219 @@
|
|||
tinymce.addI18n('pt_BR',{
|
||||
"Cut": "Recortar",
|
||||
"Heading 5": "Cabe\u00e7alho 5",
|
||||
"Header 2": "Cabe\u00e7alho 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Seu navegador n\u00e3o suporta acesso direto \u00e0 \u00e1rea de transfer\u00eancia. Por favor use os atalhos Ctrl+X - C - V do teclado",
|
||||
"Heading 4": "Cabe\u00e7alho 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Cabe\u00e7alho 2",
|
||||
"Paste": "Colar",
|
||||
"Close": "Fechar",
|
||||
"Font Family": "Fonte",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Alinhar \u00e0 direita",
|
||||
"New document": "Novo documento",
|
||||
"Blockquote": "Aspas",
|
||||
"Numbered list": "Lista ordenada",
|
||||
"Heading 1": "Cabe\u00e7alho 1",
|
||||
"Headings": "Cabe\u00e7alhos",
|
||||
"Increase indent": "Aumentar recuo",
|
||||
"Formats": "Formatos",
|
||||
"Headers": "Cabe\u00e7alhos",
|
||||
"Select all": "Selecionar tudo",
|
||||
"Header 3": "Cabe\u00e7alho 3",
|
||||
"Blocks": "Blocos",
|
||||
"Undo": "Desfazer",
|
||||
"Strikethrough": "Riscar",
|
||||
"Bullet list": "Lista n\u00e3o ordenada",
|
||||
"Header 1": "Cabe\u00e7alho 1",
|
||||
"Superscript": "Sobrescrito",
|
||||
"Clear formatting": "Limpar formata\u00e7\u00e3o",
|
||||
"Font Sizes": "Tamanho",
|
||||
"Subscript": "Subscrever",
|
||||
"Header 6": "Cabe\u00e7alho 6",
|
||||
"Redo": "Refazer",
|
||||
"Paragraph": "Par\u00e1grafo",
|
||||
"Ok": "Ok",
|
||||
"Bold": "Negrito",
|
||||
"Code": "C\u00f3digo",
|
||||
"Italic": "It\u00e1lico",
|
||||
"Align center": "Centralizar",
|
||||
"Header 5": "Cabe\u00e7alho 5",
|
||||
"Heading 6": "Cabe\u00e7alho 6",
|
||||
"Heading 3": "Cabe\u00e7alho 3",
|
||||
"Decrease indent": "Diminuir recuo",
|
||||
"Header 4": "Cabe\u00e7alho 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "O comando colar est\u00e1 agora em modo texto plano. O conte\u00fado ser\u00e1 colado como texto plano at\u00e9 voc\u00ea desligar esta op\u00e7\u00e3o.",
|
||||
"Underline": "Sublinhar",
|
||||
"Cancel": "Cancelar",
|
||||
"Justify": "Justificar",
|
||||
"Inline": "Em linha",
|
||||
"Copy": "Copiar",
|
||||
"Align left": "Alinhar \u00e0 esquerda",
|
||||
"Visual aids": "Ajuda visual",
|
||||
"Lower Greek": "\u03b1. \u03b2. \u03b3. ...",
|
||||
"Square": "Quadrado",
|
||||
"Default": "Padr\u00e3o",
|
||||
"Lower Alpha": "a. b. c. ...",
|
||||
"Circle": "C\u00edrculo",
|
||||
"Disc": "Disco",
|
||||
"Upper Alpha": "A. B. C. ...",
|
||||
"Upper Roman": "I. II. III. ...",
|
||||
"Lower Roman": "i. ii. iii. ...",
|
||||
"Name": "Nome",
|
||||
"Anchor": "\u00c2ncora",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Voc\u00ea tem mudan\u00e7as n\u00e3o salvas. Voc\u00ea tem certeza que deseja sair?",
|
||||
"Restore last draft": "Restaurar \u00faltimo rascunho",
|
||||
"Special character": "Caracteres especiais",
|
||||
"Source code": "C\u00f3digo fonte",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Cor",
|
||||
"Right to left": "Da direita para a esquerda",
|
||||
"Left to right": "Da esquerda para a direita",
|
||||
"Emoticons": "Emoticons",
|
||||
"Robots": "Rob\u00f4s",
|
||||
"Document properties": "Propriedades do documento",
|
||||
"Title": "T\u00edtulo",
|
||||
"Keywords": "Palavras-chave",
|
||||
"Encoding": "Codifica\u00e7\u00e3o",
|
||||
"Description": "Descri\u00e7\u00e3o",
|
||||
"Author": "Autor",
|
||||
"Fullscreen": "Tela cheia",
|
||||
"Horizontal line": "Linha horizontal",
|
||||
"Horizontal space": "Espa\u00e7amento horizontal",
|
||||
"Insert\/edit image": "Inserir\/editar imagem",
|
||||
"General": "Geral",
|
||||
"Advanced": "Avan\u00e7ado",
|
||||
"Source": "Endere\u00e7o da imagem",
|
||||
"Border": "Borda",
|
||||
"Constrain proportions": "Manter propor\u00e7\u00f5es",
|
||||
"Vertical space": "Espa\u00e7amento vertical",
|
||||
"Image description": "Inserir descri\u00e7\u00e3o",
|
||||
"Style": "Estilo",
|
||||
"Dimensions": "Dimens\u00f5es",
|
||||
"Insert image": "Inserir imagem",
|
||||
"Zoom in": "Aumentar zoom",
|
||||
"Contrast": "Contraste",
|
||||
"Back": "Voltar",
|
||||
"Gamma": "Gama",
|
||||
"Flip horizontally": "Virar horizontalmente",
|
||||
"Resize": "Redimensionar",
|
||||
"Sharpen": "Aumentar nitidez",
|
||||
"Zoom out": "Diminuir zoom",
|
||||
"Image options": "Op\u00e7\u00f5es de Imagem",
|
||||
"Apply": "Aplicar",
|
||||
"Brightness": "Brilho",
|
||||
"Rotate clockwise": "Girar em sentido anti-hor\u00e1rio",
|
||||
"Rotate counterclockwise": "Girar em sentido hor\u00e1rio",
|
||||
"Edit image": "Editar imagem",
|
||||
"Color levels": "N\u00edveis de cor",
|
||||
"Crop": "Cortar",
|
||||
"Orientation": "Orienta\u00e7\u00e3o",
|
||||
"Flip vertically": "Virar verticalmente",
|
||||
"Invert": "Inverter",
|
||||
"Insert date\/time": "Inserir data\/hora",
|
||||
"Remove link": "Remover link",
|
||||
"Url": "Url",
|
||||
"Text to display": "Texto para mostrar",
|
||||
"Anchors": "\u00c2ncoras",
|
||||
"Insert link": "Inserir link",
|
||||
"New window": "Nova janela",
|
||||
"None": "Nenhum",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "A URL que voc\u00ea informou parece ser um link externo. Deseja incluir o prefixo http:\/\/?",
|
||||
"Target": "Alvo",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
|
||||
"Insert\/edit link": "Inserir\/editar link",
|
||||
"Insert\/edit video": "Inserir\/editar v\u00eddeo",
|
||||
"Poster": "Autor",
|
||||
"Alternative source": "Fonte alternativa",
|
||||
"Paste your embed code below:": "Insira o c\u00f3digo de incorpora\u00e7\u00e3o abaixo:",
|
||||
"Insert video": "Inserir v\u00eddeo",
|
||||
"Embed": "Incorporar",
|
||||
"Nonbreaking space": "Espa\u00e7o n\u00e3o separ\u00e1vel",
|
||||
"Page break": "Quebra de p\u00e1gina",
|
||||
"Paste as text": "Colar como texto",
|
||||
"Preview": "Pr\u00e9-visualizar",
|
||||
"Print": "Imprimir",
|
||||
"Save": "Salvar",
|
||||
"Could not find the specified string.": "N\u00e3o foi poss\u00edvel encontrar o termo especificado",
|
||||
"Replace": "Substituir",
|
||||
"Next": "Pr\u00f3ximo",
|
||||
"Whole words": "Palavras inteiras",
|
||||
"Find and replace": "Localizar e substituir",
|
||||
"Replace with": "Substituir por",
|
||||
"Find": "Localizar",
|
||||
"Replace all": "Substituir tudo",
|
||||
"Match case": "Diferenciar mai\u00fasculas e min\u00fasculas",
|
||||
"Prev": "Anterior",
|
||||
"Spellcheck": "Corretor ortogr\u00e1fico",
|
||||
"Finish": "Finalizar",
|
||||
"Ignore all": "Ignorar tudo",
|
||||
"Ignore": "Ignorar",
|
||||
"Add to Dictionary": "Adicionar ao Dicion\u00e1rio",
|
||||
"Insert row before": "Inserir linha antes",
|
||||
"Rows": "Linhas",
|
||||
"Height": "Altura",
|
||||
"Paste row after": "Colar linha depois",
|
||||
"Alignment": "Alinhamento",
|
||||
"Border color": "Cor da borda",
|
||||
"Column group": "Agrupar coluna",
|
||||
"Row": "Linha",
|
||||
"Insert column before": "Inserir coluna antes",
|
||||
"Split cell": "Dividir c\u00e9lula",
|
||||
"Cell padding": "Espa\u00e7amento interno da c\u00e9lula",
|
||||
"Cell spacing": "Espa\u00e7amento da c\u00e9lula",
|
||||
"Row type": "Tipo de linha",
|
||||
"Insert table": "Inserir tabela",
|
||||
"Body": "Corpo",
|
||||
"Caption": "Legenda",
|
||||
"Footer": "Rodap\u00e9",
|
||||
"Delete row": "Excluir linha",
|
||||
"Paste row before": "Colar linha antes",
|
||||
"Scope": "Escopo",
|
||||
"Delete table": "Excluir tabela",
|
||||
"H Align": "Alinhamento H",
|
||||
"Top": "Superior",
|
||||
"Header cell": "C\u00e9lula cabe\u00e7alho",
|
||||
"Column": "Coluna",
|
||||
"Row group": "Agrupar linha",
|
||||
"Cell": "C\u00e9lula",
|
||||
"Middle": "Meio",
|
||||
"Cell type": "Tipo de c\u00e9lula",
|
||||
"Copy row": "Copiar linha",
|
||||
"Row properties": "Propriedades da linha",
|
||||
"Table properties": "Propriedades da tabela",
|
||||
"Bottom": "Inferior",
|
||||
"V Align": "Alinhamento V",
|
||||
"Header": "Cabe\u00e7alho",
|
||||
"Right": "Direita",
|
||||
"Insert column after": "Inserir coluna depois",
|
||||
"Cols": "Colunas",
|
||||
"Insert row after": "Inserir linha depois",
|
||||
"Width": "Largura",
|
||||
"Cell properties": "Propriedades da c\u00e9lula",
|
||||
"Left": "Esquerdo",
|
||||
"Cut row": "Recortar linha",
|
||||
"Delete column": "Excluir coluna",
|
||||
"Center": "Centro",
|
||||
"Merge cells": "Agrupar c\u00e9lulas",
|
||||
"Insert template": "Inserir modelo",
|
||||
"Templates": "Modelos",
|
||||
"Background color": "Cor do fundo",
|
||||
"Custom...": "Personalizado...",
|
||||
"Custom color": "Cor personalizada",
|
||||
"No color": "Nenhuma cor",
|
||||
"Text color": "Cor do texto",
|
||||
"Show blocks": "Mostrar blocos",
|
||||
"Show invisible characters": "Exibir caracteres invis\u00edveis",
|
||||
"Words: {0}": "Palavras: {0}",
|
||||
"Insert": "Inserir",
|
||||
"File": "Arquivo",
|
||||
"Edit": "Editar",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u00c1rea de texto formatado. Pressione ALT-F9 para exibir o menu, ALT-F10 para exibir a barra de ferramentas ou ALT-0 para exibir a ajuda",
|
||||
"Tools": "Ferramentas",
|
||||
"View": "Visualizar",
|
||||
"Table": "Tabela",
|
||||
"Format": "Formatar"
|
||||
});
|
|
@ -1,3 +0,0 @@
|
|||
This is where language files should be placed.
|
||||
|
||||
Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/
|
|
@ -0,0 +1,54 @@
|
|||
tinymce.addI18n('ru_RU',{
|
||||
"Cut": "\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c",
|
||||
"Heading 5": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 5",
|
||||
"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u043f\u0440\u044f\u043c\u043e\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0431\u0443\u0444\u0435\u0440\u0443 \u043e\u0431\u043c\u0435\u043d\u0430. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, Ctrl+X\/C\/V \u043d\u0430 \u043a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u0435.",
|
||||
"Heading 4": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 2",
|
||||
"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c",
|
||||
"Close": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0441\u043f\u0440\u0430\u0432\u0430",
|
||||
"New document": "\u041d\u043e\u0432\u044b\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Blockquote": "Blockquote",
|
||||
"Numbered list": "\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Heading 1": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 1",
|
||||
"Headings": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435",
|
||||
"Increase indent": "\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u044b",
|
||||
"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"Select all": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0432\u0441\u0451",
|
||||
"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Blocks": "Blocks",
|
||||
"Undo": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Strikethrough": "\u0417\u0430\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439",
|
||||
"Bullet list": "\u041c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Superscript": "\u0421\u0443\u043f\u0435\u0440\u0441\u043a\u0440\u0438\u043f\u0442",
|
||||
"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
"Font Sizes": "\u0420\u0430\u0437\u043c\u0435\u0440\u044b \u0448\u0440\u0438\u0444\u0442\u043e\u0432",
|
||||
"Subscript": "\u041f\u043e\u0434\u0441\u043a\u0440\u0438\u043f\u0442",
|
||||
"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Redo": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c",
|
||||
"Paragraph": "Paragraph",
|
||||
"Ok": "\u043e\u043a",
|
||||
"Bold": "\u0416\u0438\u0440\u043d\u044b\u0439",
|
||||
"Code": "Code",
|
||||
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
||||
"Align center": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u043f\u043e-\u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Heading 6": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 6",
|
||||
"Heading 3": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u0435 3",
|
||||
"Decrease indent": "\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f",
|
||||
"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043a\u0430\u043a \u0447\u0438\u0441\u0442\u044b\u0439 \u0442\u0435\u043a\u0441\u0442. \u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 \u0432\u0441\u0442\u0430\u0432\u0438\u0442\u0441\u044f \u043a\u0430\u043a \u0442\u0435\u043a\u0441\u0442, \u0434\u043e \u0442\u0435\u0445 \u043f\u043e\u0440, \u043f\u043e\u043a\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430 \u044d\u0442\u0430 \u043e\u043f\u0446\u0438\u044f",
|
||||
"Underline": "\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439",
|
||||
"Cancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||
"Justify": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u043f\u043e \u0448\u0438\u0440\u0438\u043d\u0435",
|
||||
"Inline": "Inline",
|
||||
"Copy": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c",
|
||||
"Align left": "\u0412\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u0435 \u0441\u043b\u0435\u0432\u0430",
|
||||
"Visual aids": "\u0412\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b"
|
||||
});
|
|
@ -0,0 +1,219 @@
|
|||
tinymce.addI18n('tr',{
|
||||
"Cut": "Kes",
|
||||
"Heading 5": "Ba\u015fl\u0131k 5",
|
||||
"Header 2": "Ba\u015fl\u0131k 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "Taray\u0131c\u0131n\u0131z panoya do\u011frudan eri\u015fimi desteklemiyor. L\u00fctfen Ctrl+X\\\/C\\\/V klavye k\u0131sayollar\u0131n\u0131 kullan\u0131n\u0131z.",
|
||||
"Heading 4": "Ba\u015fl\u0131k 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "Ba\u015fl\u0131k 2",
|
||||
"Paste": "Yap\u0131\u015ft\u0131r",
|
||||
"Close": "Kapat",
|
||||
"Font Family": "Yaz\u0131 Tipleri",
|
||||
"Pre": "Pre",
|
||||
"Align right": "Sa\u011fa hizala",
|
||||
"New document": "Yeni dok\u00fcman",
|
||||
"Blockquote": "Al\u0131nt\u0131",
|
||||
"Numbered list": "Numaral\u0131 liste ",
|
||||
"Heading 1": "Ba\u015fl\u0131k 1",
|
||||
"Headings": "Ba\u015fl\u0131klar",
|
||||
"Increase indent": "Girintiyi art\u0131r",
|
||||
"Formats": "Bi\u00e7imler",
|
||||
"Headers": "Ba\u015fl\u0131klar",
|
||||
"Select all": "T\u00fcm\u00fcn\u00fc se\u00e7",
|
||||
"Header 3": "Ba\u015fl\u0131k 3",
|
||||
"Blocks": "Bloklar",
|
||||
"Undo": "Geri al",
|
||||
"Strikethrough": "\u00dcst\u00fc \u00e7izili",
|
||||
"Bullet list": "\u0130\u015faretli liste",
|
||||
"Header 1": "Ba\u015fl\u0131k 1",
|
||||
"Superscript": "\u00dcst simge",
|
||||
"Clear formatting": "Bi\u00e7imi temizle",
|
||||
"Font Sizes": "Yaz\u0131 Boyutlar\u0131",
|
||||
"Subscript": "Alt simge",
|
||||
"Header 6": "Ba\u015fl\u0131k 6",
|
||||
"Redo": "Yinele",
|
||||
"Paragraph": "Paragraf",
|
||||
"Ok": "Tamam",
|
||||
"Bold": "Kal\u0131n",
|
||||
"Code": "Kod",
|
||||
"Italic": "\u0130talik",
|
||||
"Align center": "Ortala",
|
||||
"Header 5": "Ba\u015fl\u0131k 5",
|
||||
"Heading 6": "Ba\u015fl\u0131k 6",
|
||||
"Heading 3": "Ba\u015fl\u0131k 3",
|
||||
"Decrease indent": "Girintiyi azalt",
|
||||
"Header 4": "Ba\u015fl\u0131k 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "D\u00fcz metin modunda yap\u0131\u015ft\u0131r. Bu se\u00e7ene\u011fi kapatana kadar i\u00e7erikler d\u00fcz metin olarak yap\u0131\u015ft\u0131r\u0131l\u0131r.",
|
||||
"Underline": "Alt\u0131 \u00e7izili",
|
||||
"Cancel": "\u0130ptal",
|
||||
"Justify": "\u0130ki yana yasla",
|
||||
"Inline": "Sat\u0131r i\u00e7i",
|
||||
"Copy": "Kopyala",
|
||||
"Align left": "Sola hizala",
|
||||
"Visual aids": "G\u00f6rsel ara\u00e7lar",
|
||||
"Lower Greek": "K\u00fc\u00e7\u00fck Yunan Harfleri",
|
||||
"Square": "Kare",
|
||||
"Default": "Varsay\u0131lan",
|
||||
"Lower Alpha": "K\u00fc\u00e7\u00fck Harf",
|
||||
"Circle": "Daire",
|
||||
"Disc": "Disk",
|
||||
"Upper Alpha": "B\u00fcy\u00fck Harf",
|
||||
"Upper Roman": "B\u00fcy\u00fck Roman Harfleri ",
|
||||
"Lower Roman": "K\u00fc\u00e7\u00fck Roman Harfleri ",
|
||||
"Name": "\u0130sim",
|
||||
"Anchor": "\u00c7apa",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "Kaydedilmemi\u015f de\u011fi\u015fiklikler var, sayfadan ayr\u0131lmak istedi\u011finize emin misiniz?",
|
||||
"Restore last draft": "Son tasla\u011f\u0131 geri y\u00fckle",
|
||||
"Special character": "\u00d6zel karakter",
|
||||
"Source code": "Kaynak kodu",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "Renk",
|
||||
"Right to left": "Sa\u011fdan sola",
|
||||
"Left to right": "Soldan sa\u011fa",
|
||||
"Emoticons": "\u0130fadeler",
|
||||
"Robots": "Robotlar",
|
||||
"Document properties": "Dok\u00fcman \u00f6zellikleri",
|
||||
"Title": "Ba\u015fl\u0131k",
|
||||
"Keywords": "Anahtar kelimeler",
|
||||
"Encoding": "Kodlama",
|
||||
"Description": "A\u00e7\u0131klama",
|
||||
"Author": "Yazar",
|
||||
"Fullscreen": "Tam ekran",
|
||||
"Horizontal line": "Yatay \u00e7izgi",
|
||||
"Horizontal space": "Yatay bo\u015fluk",
|
||||
"Insert\/edit image": "Resim ekle\/d\u00fczenle",
|
||||
"General": "Genel",
|
||||
"Advanced": "Geli\u015fmi\u015f",
|
||||
"Source": "Kaynak",
|
||||
"Border": "Kenarl\u0131k",
|
||||
"Constrain proportions": "Oranlar\u0131 koru",
|
||||
"Vertical space": "Dikey bo\u015fluk",
|
||||
"Image description": "Resim a\u00e7\u0131klamas\u0131",
|
||||
"Style": "Stil",
|
||||
"Dimensions": "Boyutlar",
|
||||
"Insert image": "Resim ekle",
|
||||
"Zoom in": "Yak\u0131nla\u015ft\u0131r",
|
||||
"Contrast": "Kontrast",
|
||||
"Back": "Geri",
|
||||
"Gamma": "Gama",
|
||||
"Flip horizontally": "Enine \u00e7evir",
|
||||
"Resize": "Yeniden Boyutland\u0131r",
|
||||
"Sharpen": "Keskinle\u015ftir",
|
||||
"Zoom out": "Uzakla\u015ft\u0131r",
|
||||
"Image options": "Resim ayarlar\u0131",
|
||||
"Apply": "Uygula",
|
||||
"Brightness": "Parlakl\u0131k",
|
||||
"Rotate clockwise": "Saat y\u00f6n\u00fcnde d\u00f6nd\u00fcr",
|
||||
"Rotate counterclockwise": "Saatin tersi y\u00f6n\u00fcnde d\u00f6nd\u00fcr",
|
||||
"Edit image": "Resmi d\u00fczenle",
|
||||
"Color levels": "Renk d\u00fczeyleri",
|
||||
"Crop": "K\u0131rp",
|
||||
"Orientation": "Oryantasyon",
|
||||
"Flip vertically": "Dikine \u00e7evir",
|
||||
"Invert": "Ters \u00c7evir",
|
||||
"Insert date\/time": "Tarih\/saat ekle",
|
||||
"Remove link": "Ba\u011flant\u0131y\u0131 kald\u0131r",
|
||||
"Url": "Url",
|
||||
"Text to display": "Yaz\u0131y\u0131 g\u00f6r\u00fcnt\u00fcle",
|
||||
"Anchors": "\u00c7apalar",
|
||||
"Insert link": "Ba\u011flant\u0131 ekle",
|
||||
"New window": "Yeni pencere",
|
||||
"None": "Hi\u00e7biri",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "Girdi\u011finiz URL bir d\u0131\u015f ba\u011flant\u0131 gibi g\u00f6r\u00fcn\u00fcyor. Gerekli olan http:\/\/ \u00f6nekini eklemek ister misiniz?",
|
||||
"Target": "Hedef",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Girdi\u011finiz URL bir e-posta adresi gibi g\u00f6r\u00fcn\u00fcyor. Gerekli olan mailto: \u00f6nekini eklemek ister misiniz?",
|
||||
"Insert\/edit link": "Ba\u011flant\u0131 ekle\/d\u00fczenle",
|
||||
"Insert\/edit video": "Video ekle\/d\u00fczenle",
|
||||
"Poster": "Poster",
|
||||
"Alternative source": "Alternatif kaynak",
|
||||
"Paste your embed code below:": "Video g\u00f6mme kodunu a\u015fa\u011f\u0131ya yap\u0131\u015ft\u0131r\u0131n\u0131z:",
|
||||
"Insert video": "Video ekle",
|
||||
"Embed": "G\u00f6mme",
|
||||
"Nonbreaking space": "B\u00f6l\u00fcnemez bo\u015fluk",
|
||||
"Page break": "Sayfa sonu",
|
||||
"Paste as text": "Metin olarak yap\u0131\u015ft\u0131r",
|
||||
"Preview": "\u00d6nizleme",
|
||||
"Print": "Yazd\u0131r",
|
||||
"Save": "Kaydet",
|
||||
"Could not find the specified string.": "Herhangi bir sonu\u00e7 bulunamad\u0131.",
|
||||
"Replace": "De\u011fi\u015ftir",
|
||||
"Next": "Sonraki",
|
||||
"Whole words": "Tam kelimeler",
|
||||
"Find and replace": "Bul ve de\u011fi\u015ftir",
|
||||
"Replace with": "Bununla de\u011fi\u015ftir",
|
||||
"Find": "Bul",
|
||||
"Replace all": "T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir",
|
||||
"Match case": "B\u00fcy\u00fck\/k\u00fc\u00e7\u00fck harf duyarl\u0131",
|
||||
"Prev": "\u00d6nceki",
|
||||
"Spellcheck": "Yaz\u0131m denetimi",
|
||||
"Finish": "Bitir",
|
||||
"Ignore all": "T\u00fcm\u00fcn\u00fc yoksay",
|
||||
"Ignore": "Yoksay",
|
||||
"Add to Dictionary": "S\u00f6zl\u00fc\u011fe Ekle",
|
||||
"Insert row before": "\u00dcste sat\u0131r ekle",
|
||||
"Rows": "Sat\u0131rlar",
|
||||
"Height": "Y\u00fckseklik",
|
||||
"Paste row after": "Alta sat\u0131r yap\u0131\u015ft\u0131r",
|
||||
"Alignment": "Hizalama",
|
||||
"Border color": "Kenarl\u0131k rengi",
|
||||
"Column group": "S\u00fctun grubu",
|
||||
"Row": "Sat\u0131r",
|
||||
"Insert column before": "Sola s\u00fctun ekle",
|
||||
"Split cell": "H\u00fccre b\u00f6l",
|
||||
"Cell padding": "H\u00fccre dolgusu",
|
||||
"Cell spacing": "H\u00fccre aral\u0131\u011f\u0131",
|
||||
"Row type": "Sat\u0131r tipi",
|
||||
"Insert table": "Tablo ekle",
|
||||
"Body": "G\u00f6vde",
|
||||
"Caption": "Ba\u015fl\u0131k",
|
||||
"Footer": "Alt",
|
||||
"Delete row": "Sat\u0131r sil",
|
||||
"Paste row before": "\u00dcste sat\u0131r yap\u0131\u015ft\u0131r",
|
||||
"Scope": "Kapsam",
|
||||
"Delete table": "Tablo sil",
|
||||
"H Align": "Yatay Hizalama",
|
||||
"Top": "\u00dcst",
|
||||
"Header cell": "Ba\u015fl\u0131k h\u00fccresi",
|
||||
"Column": "S\u00fctun",
|
||||
"Row group": "Sat\u0131r grubu",
|
||||
"Cell": "H\u00fccre",
|
||||
"Middle": "Orta",
|
||||
"Cell type": "H\u00fccre tipi",
|
||||
"Copy row": "Sat\u0131r\u0131 kopyala",
|
||||
"Row properties": "Sat\u0131r \u00f6zellikleri",
|
||||
"Table properties": "Tablo \u00f6zellikleri",
|
||||
"Bottom": "Alt",
|
||||
"V Align": "Dikey Hizalama",
|
||||
"Header": "Ba\u015fl\u0131k",
|
||||
"Right": "Sa\u011f",
|
||||
"Insert column after": "Sa\u011fa s\u00fctun ekle",
|
||||
"Cols": "S\u00fctunlar",
|
||||
"Insert row after": "Alta sat\u0131r ekle ",
|
||||
"Width": "Geni\u015flik",
|
||||
"Cell properties": "H\u00fccre \u00f6zellikleri",
|
||||
"Left": "Sol",
|
||||
"Cut row": "Sat\u0131r\u0131 kes",
|
||||
"Delete column": "S\u00fctun sil",
|
||||
"Center": "Orta",
|
||||
"Merge cells": "H\u00fccreleri birle\u015ftir",
|
||||
"Insert template": "\u015eablon ekle",
|
||||
"Templates": "\u015eablonlar",
|
||||
"Background color": "Arka plan rengi",
|
||||
"Custom...": "\u00d6zel...",
|
||||
"Custom color": "\u00d6zel renk",
|
||||
"No color": "Renk yok",
|
||||
"Text color": "Yaz\u0131 rengi",
|
||||
"Show blocks": "Bloklar\u0131 g\u00f6ster",
|
||||
"Show invisible characters": "G\u00f6r\u00fcnmez karakterleri g\u00f6ster",
|
||||
"Words: {0}": "Kelime: {0}",
|
||||
"Insert": "Ekle",
|
||||
"File": "Dosya",
|
||||
"Edit": "D\u00fczenle",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zengin Metin Alan\u0131. Men\u00fc i\u00e7in ALT-F9 tu\u015funa bas\u0131n\u0131z. Ara\u00e7 \u00e7ubu\u011fu i\u00e7in ALT-F10 tu\u015funa bas\u0131n\u0131z. Yard\u0131m i\u00e7in ALT-0 tu\u015funa bas\u0131n\u0131z.",
|
||||
"Tools": "Ara\u00e7lar",
|
||||
"View": "G\u00f6r\u00fcn\u00fcm",
|
||||
"Table": "Tablo",
|
||||
"Format": "Bi\u00e7im"
|
||||
});
|
|
@ -0,0 +1,219 @@
|
|||
tinymce.addI18n('uk_UA',{
|
||||
"Cut": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438",
|
||||
"Heading 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Header 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u0412\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454 \u043f\u0440\u044f\u043c\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0431\u0443\u0444\u0435\u0440\u0430 \u043e\u0431\u043c\u0456\u043d\u0443. \u0417\u0430\u043c\u0456\u0441\u0442\u044c \u0446\u044c\u043e\u0433\u043e \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u043f\u043e\u0454\u0434\u043d\u0430\u043d\u043d\u044f \u043a\u043b\u0430\u0432\u0456\u0448 Ctrl + X\/C\/V.",
|
||||
"Heading 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 2",
|
||||
"Paste": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
||||
"Close": "\u0417\u0430\u043a\u0440\u0438\u0442\u0438",
|
||||
"Font Family": "\u0428\u0440\u0438\u0444\u0442",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u041f\u0440\u0430\u0432\u043e\u0440\u0443\u0447",
|
||||
"New document": "\u041d\u043e\u0432\u0438\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442",
|
||||
"Blockquote": "\u0426\u0438\u0442\u0430\u0442\u0430",
|
||||
"Numbered list": "\u041f\u0440\u043e\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Heading 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Headings": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"Increase indent": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
||||
"Formats": "\u0424\u043e\u0440\u043c\u0430\u0442\u0438",
|
||||
"Headers": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
|
||||
"Select all": "\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0443\u0441\u0435",
|
||||
"Header 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Blocks": "\u0411\u043b\u043e\u043a\u0438",
|
||||
"Undo": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Strikethrough": "\u041f\u0435\u0440\u0435\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
||||
"Bullet list": "\u041c\u0430\u0440\u043a\u0456\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
|
||||
"Header 1": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 1",
|
||||
"Superscript": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0456\u043d\u0434\u0435\u043a\u0441",
|
||||
"Clear formatting": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||
"Font Sizes": "\u0420\u043e\u0437\u043c\u0456\u0440 \u0448\u0440\u0438\u0444\u0442\u0430",
|
||||
"Subscript": "\u0406\u043d\u0434\u0435\u043a\u0441",
|
||||
"Header 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Redo": "\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438",
|
||||
"Paragraph": "\u0410\u0431\u0437\u0430\u0446",
|
||||
"Ok": "Ok",
|
||||
"Bold": "\u0416\u0438\u0440\u043d\u0438\u0439",
|
||||
"Code": "\u041a\u043e\u0434",
|
||||
"Italic": "\u041a\u0443\u0440\u0441\u0438\u0432",
|
||||
"Align center": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Header 5": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 5",
|
||||
"Heading 6": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 6",
|
||||
"Heading 3": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 3",
|
||||
"Decrease indent": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f",
|
||||
"Header 4": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u0412\u0441\u0442\u0430\u0432\u043a\u0430 \u0437\u0430\u0440\u0430\u0437 \u0432 \u0440\u0435\u0436\u0438\u043c\u0456 \u0437\u0432\u0438\u0447\u0430\u0439\u043d\u043e\u0433\u043e \u0442\u0435\u043a\u0441\u0442\u0443. \u0417\u043c\u0456\u0441\u0442 \u0431\u0443\u0434\u0435 \u0432\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0439 \u044f\u043a \u043f\u0440\u043e\u0441\u0442\u0438\u0439 \u0442\u0435\u043a\u0441\u0442, \u043f\u043e\u043a\u0438 \u0412\u0438 \u043d\u0435 \u0432\u0438\u043c\u043a\u043d\u0435\u0442\u0435 \u0446\u044e \u043e\u043f\u0446\u0456\u044e.",
|
||||
"Underline": "\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439",
|
||||
"Cancel": "\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Justify": "\u0412\u0438\u0440\u0456\u0432\u043d\u044f\u0442\u0438",
|
||||
"Inline": "\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0438\u0439",
|
||||
"Copy": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438",
|
||||
"Align left": "\u041b\u0456\u0432\u043e\u0440\u0443\u0447",
|
||||
"Visual aids": "\u0412\u0456\u0437\u0443\u0430\u043b\u044c\u043d\u0456 \u0437\u0430\u0441\u043e\u0431\u0438",
|
||||
"Lower Greek": "\u041c\u0430\u043b\u0456 \u0433\u0440\u0435\u0446\u044c\u043a\u0456 \u043b\u0456\u0442\u0435\u0440\u0438",
|
||||
"Square": "\u041a\u0432\u0430\u0434\u0440\u0430\u0442",
|
||||
"Default": "\u0423\u043c\u043e\u0432\u0447\u0430\u043d\u043d\u044f",
|
||||
"Lower Alpha": "\u041d\u0438\u0436\u043d\u0456\u0439 \u0440\u0435\u0433\u0456\u0441\u0442\u0440",
|
||||
"Circle": "\u041a\u043e\u043b\u043e",
|
||||
"Disc": "\u0414\u0438\u0441\u043a",
|
||||
"Upper Alpha": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u0440\u0435\u0433\u0456\u0441\u0442\u0440",
|
||||
"Upper Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438 \u0443 \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0456",
|
||||
"Lower Roman": "\u0420\u0438\u043c\u0441\u044c\u043a\u0456 \u0446\u0438\u0444\u0440\u0438 \u0443 \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0456",
|
||||
"Name": "\u0406\u043c'\u044f",
|
||||
"Anchor": "\u041f\u0440\u0438\u0432'\u044f\u0437\u043a\u0430",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u0423 \u0432\u0430\u0441 \u0454 \u043d\u0435\u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u0456 \u0437\u043c\u0456\u043d\u0438. \u0412\u0438 \u0432\u043f\u0435\u0432\u043d\u0435\u043d\u0456, \u0449\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u043f\u0456\u0442\u0438 ?",
|
||||
"Restore last draft": "\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438 \u043e\u0441\u0442\u0430\u043d\u043d\u0456\u0439 \u043f\u0440\u043e\u0435\u043a\u0442",
|
||||
"Special character": "\u0421\u043f\u0435\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0439 \u0441\u0438\u043c\u0432\u043e\u043b",
|
||||
"Source code": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||
"B": "B",
|
||||
"R": "R",
|
||||
"G": "G",
|
||||
"Color": "\u041a\u043e\u043b\u0456\u0440",
|
||||
"Right to left": "\u0421\u043f\u0440\u0430\u0432\u0430 \u043d\u0430\u043b\u0456\u0432\u043e",
|
||||
"Left to right": "\u0417\u043b\u0456\u0432\u0430 \u043d\u0430\u043f\u0440\u0430\u0432\u043e",
|
||||
"Emoticons": "\u0421\u043c\u0430\u0439\u043b\u0438",
|
||||
"Robots": "\u0420\u043e\u0431\u043e\u0442\u0438",
|
||||
"Document properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443",
|
||||
"Title": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Keywords": "\u041a\u043b\u044e\u0447\u043e\u0432\u0456 \u0441\u043b\u043e\u0432\u0430",
|
||||
"Encoding": "\u041a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f",
|
||||
"Description": "\u041e\u043f\u0438\u0441",
|
||||
"Author": "\u0410\u0432\u0442\u043e\u0440",
|
||||
"Fullscreen": "\u041d\u0430 \u0432\u0435\u0441\u044c \u0435\u043a\u0440\u0430\u043d",
|
||||
"Horizontal line": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0430 \u043b\u0456\u043d\u0456\u044f",
|
||||
"Horizontal space": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
||||
"Insert\/edit image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"General": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0435",
|
||||
"Advanced": "\u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u043e",
|
||||
"Source": "\u0414\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||
"Border": "\u041c\u0435\u0436\u0430",
|
||||
"Constrain proportions": "\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043f\u0440\u043e\u043f\u043e\u0440\u0446\u0456\u0457",
|
||||
"Vertical space": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
||||
"Image description": "\u041e\u043f\u0438\u0441 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Style": "\u0421\u0442\u0438\u043b\u044c",
|
||||
"Dimensions": "\u0420\u043e\u0437\u043c\u0456\u0440",
|
||||
"Insert image": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Zoom in": "\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438",
|
||||
"Contrast": "\u041a\u043e\u043d\u0442\u0440\u0430\u0441\u0442",
|
||||
"Back": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438\u0441\u044f",
|
||||
"Gamma": "\u0413\u0430\u043c\u043c\u0430",
|
||||
"Flip horizontally": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u0456",
|
||||
"Resize": "\u0417\u043c\u0456\u043d\u0438\u0442\u0438 \u0440\u043e\u0437\u043c\u0456\u0440",
|
||||
"Sharpen": "\u0427\u0456\u0442\u043a\u0456\u0441\u0442\u044c",
|
||||
"Zoom out": "\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438",
|
||||
"Image options": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Apply": "\u0417\u0430\u0441\u0442\u043e\u0441\u0443\u0432\u0430\u0442\u0438",
|
||||
"Brightness": "\u042f\u0441\u043a\u0440\u0430\u0432\u0456\u0441\u0442\u044c",
|
||||
"Rotate clockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u0437\u0430 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u044e \u0441\u0442\u0440\u0456\u043b\u043a\u043e\u044e",
|
||||
"Rotate counterclockwise": "\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 \u043f\u0440\u043e\u0442\u0438 \u0433\u043e\u0434\u0438\u043d\u043d\u0438\u043a\u043e\u0432\u043e\u0457 \u0441\u0442\u0440\u0456\u043b\u043a\u0438",
|
||||
"Edit image": "\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Color levels": "\u0420\u0456\u0432\u043d\u0456 \u043a\u043e\u043b\u044c\u043e\u0440\u0456\u0432",
|
||||
"Crop": "\u041e\u0431\u0440\u0456\u0437\u0430\u0442\u0438",
|
||||
"Orientation": "\u041e\u0440\u0456\u0454\u043d\u0442\u0430\u0446\u0456\u044f",
|
||||
"Flip vertically": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u043f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u0456",
|
||||
"Invert": "\u0406\u043d\u0432\u0435\u0440\u0441\u0456\u044f",
|
||||
"Insert date\/time": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0434\u0430\u0442\u0443\/\u0447\u0430\u0441",
|
||||
"Remove link": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"Url": "URL",
|
||||
"Text to display": "\u0422\u0435\u043a\u0441\u0442 \u0434\u043b\u044f \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
|
||||
"Anchors": "\u042f\u043a\u043e\u0440\u044f",
|
||||
"Insert link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"New window": "\u041d\u043e\u0432\u0435 \u0432\u0456\u043a\u043d\u043e",
|
||||
"None": "\u041d\u0456",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 http:\/\/ \u043f\u0440\u0435\u0444\u0456\u043a\u0441?",
|
||||
"Target": "\u041c\u0435\u0442\u0430",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0432\u0435\u043b\u0438 \u0430\u0434\u0440\u0435\u0441\u0443 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438. \u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 \u043f\u0440\u0435\u0444\u0456\u043a\u0441 mailto:?",
|
||||
"Insert\/edit link": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f",
|
||||
"Insert\/edit video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438\/\u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
||||
"Poster": "\u041f\u043b\u0430\u043a\u0430\u0442",
|
||||
"Alternative source": "\u0410\u043b\u044c\u0442\u0435\u0440\u043d\u0430\u0442\u0438\u0432\u043d\u0435 \u0434\u0436\u0435\u0440\u0435\u043b\u043e",
|
||||
"Paste your embed code below:": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0432\u0430\u0448 \u043a\u043e\u0434 \u043d\u0438\u0436\u0447\u0435:",
|
||||
"Insert video": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0432\u0456\u0434\u0435\u043e",
|
||||
"Embed": "\u0412\u043f\u0440\u043e\u0432\u0430\u0434\u0438\u0442\u0438",
|
||||
"Nonbreaking space": "\u041d\u0435\u0440\u043e\u0437\u0440\u0438\u0432\u043d\u0438\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a",
|
||||
"Page break": "\u0420\u043e\u0437\u0440\u0438\u0432 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438",
|
||||
"Paste as text": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u044f\u043a \u0442\u0435\u043a\u0441\u0442",
|
||||
"Preview": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u0434",
|
||||
"Print": "\u0414\u0440\u0443\u043a",
|
||||
"Save": "\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438",
|
||||
"Could not find the specified string.": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u043d\u0430\u0439\u0442\u0438 \u0437\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0440\u044f\u0434\u043e\u043a.",
|
||||
"Replace": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Next": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0439",
|
||||
"Whole words": "\u0426\u0456\u043b\u0456 \u0441\u043b\u043e\u0432\u0430",
|
||||
"Find and replace": "\u0417\u043d\u0430\u0439\u0442\u0438 \u0456 \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438",
|
||||
"Replace with": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u043d\u0430",
|
||||
"Find": "\u0417\u043d\u0430\u0439\u0442\u0438",
|
||||
"Replace all": "\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0441\u0435",
|
||||
"Match case": "\u0417 \u0443\u0440\u0430\u0445\u0443\u0432\u0430\u043d\u043d\u044f\u043c \u0440\u0435\u0433\u0456\u0441\u0442\u0440\u0443",
|
||||
"Prev": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439",
|
||||
"Spellcheck": "\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043e\u0440\u0444\u043e\u0433\u0440\u0430\u0444\u0456\u0457",
|
||||
"Finish": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0438",
|
||||
"Ignore all": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0441\u0435",
|
||||
"Ignore": "\u0406\u0433\u043d\u043e\u0440\u0443\u0432\u0430\u0442\u0438",
|
||||
"Add to Dictionary": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0432 \u0441\u043b\u043e\u0432\u043d\u0438\u043a",
|
||||
"Insert row before": "\u0412\u0441\u0442\u0430\u0432\u0442\u0435 \u0440\u044f\u0434\u043e\u043a \u043f\u0435\u0440\u0435\u0434",
|
||||
"Rows": "\u0420\u044f\u0434\u043a\u0438",
|
||||
"Height": "\u0412\u0438\u0441\u043e\u0442\u0430",
|
||||
"Paste row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0456\u0441\u043b\u044f",
|
||||
"Alignment": "\u0412\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Border color": "\u041a\u043e\u043b\u0456\u0440 \u043c\u0435\u0436\u0456",
|
||||
"Column group": "\u0413\u0440\u0443\u043f\u0430 \u0441\u0442\u043e\u0432\u043f\u0446\u0456\u0432",
|
||||
"Row": "\u0420\u044f\u0434\u043e\u043a",
|
||||
"Insert column before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0435\u0440\u0435\u0434",
|
||||
"Split cell": "\u0420\u043e\u0437\u0431\u0438\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0443",
|
||||
"Cell padding": "\u0417\u0430\u043f\u043e\u0432\u043d\u0435\u043d\u043d\u044f \u043a\u043e\u043c\u0456\u0440\u043e\u043a",
|
||||
"Cell spacing": "\u0406\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u043c\u0456\u0436 \u043a\u043e\u043c\u0456\u0440\u043a\u0430\u043c\u0438",
|
||||
"Row type": "\u0422\u0438\u043f \u0440\u044f\u0434\u043a\u0430",
|
||||
"Insert table": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
||||
"Body": "\u0422\u0456\u043b\u043e",
|
||||
"Caption": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a",
|
||||
"Footer": "\u041d\u0438\u0436\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
||||
"Delete row": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Paste row before": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0435\u0440\u0435\u0434",
|
||||
"Scope": "\u0423 \u043c\u0435\u0436\u0430\u0445",
|
||||
"Delete table": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0442\u0430\u0431\u043b\u0438\u0446\u044e",
|
||||
"H Align": "\u0413\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Top": "\u041f\u043e \u0432\u0435\u0440\u0445\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"Header cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0443",
|
||||
"Column": "\u0421\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
||||
"Row group": "\u0413\u0440\u0443\u043f\u0430 \u0440\u044f\u0434\u043a\u0456\u0432",
|
||||
"Cell": "\u041a\u043e\u043c\u0456\u0440\u043a\u0430",
|
||||
"Middle": "\u041f\u043e \u0446\u0435\u043d\u0442\u0440\u0443",
|
||||
"Cell type": "\u0422\u0438\u043f \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Copy row": "\u041a\u043e\u043f\u0456\u044e\u0432\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Row properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0440\u044f\u0434\u043a\u0430",
|
||||
"Table properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u0442\u0430\u0431\u043b\u0438\u0446\u0456",
|
||||
"Bottom": "\u041f\u043e \u043d\u0438\u0436\u043d\u044c\u043e\u043c\u0443 \u043a\u0440\u0430\u044e",
|
||||
"V Align": "\u0412\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0435 \u0432\u0438\u0440\u0456\u0432\u043d\u044e\u0432\u0430\u043d\u043d\u044f",
|
||||
"Header": "\u0412\u0435\u0440\u0445\u043d\u0456\u0439 \u043a\u043e\u043b\u043e\u043d\u0442\u0438\u0442\u0443\u043b",
|
||||
"Right": "\u041f\u0440\u0430\u0432\u043e\u0440\u0443\u0447",
|
||||
"Insert column after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c \u043f\u0456\u0441\u043b\u044f",
|
||||
"Cols": "\u0421\u0442\u043e\u0432\u043f\u0446\u0456",
|
||||
"Insert row after": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044f\u0434\u043e\u043a \u043f\u0456\u0441\u043b\u044f",
|
||||
"Width": "\u0428\u0438\u0440\u0438\u043d\u0430",
|
||||
"Cell properties": "\u0412\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0456 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Left": "\u041b\u0456\u0432\u043e\u0440\u0443\u0447",
|
||||
"Cut row": "\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 \u0440\u044f\u0434\u043e\u043a",
|
||||
"Delete column": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u043e\u0432\u043f\u0435\u0446\u044c",
|
||||
"Center": "\u0426\u0435\u043d\u0442\u0440",
|
||||
"Merge cells": "\u041e\u0431'\u0454\u0434\u043d\u0430\u0442\u0438 \u043a\u043e\u043c\u0456\u0440\u043a\u0438",
|
||||
"Insert template": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043b\u043e\u043d",
|
||||
"Templates": "\u0428\u0430\u0431\u043b\u043e\u043d\u0438",
|
||||
"Background color": "\u041a\u043e\u043b\u0456\u0440 \u0444\u043e\u043d\u0443",
|
||||
"Custom...": "\u0406\u043d\u0448\u0438\u0439...",
|
||||
"Custom color": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044c\u043a\u0438\u0439 \u043a\u043e\u043b\u0456\u0440",
|
||||
"No color": "\u0411\u0435\u0437 \u043a\u043e\u043b\u044c\u043e\u0440\u0443",
|
||||
"Text color": "\u041a\u043e\u043b\u0456\u0440 \u0442\u0435\u043a\u0441\u0442\u0443",
|
||||
"Show blocks": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u0431\u043b\u043e\u043a\u0438",
|
||||
"Show invisible characters": "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u0438 \u043d\u0435\u0432\u0438\u0434\u0438\u043c\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438",
|
||||
"Words: {0}": "\u0421\u043b\u043e\u0432\u0430: {0}",
|
||||
"Insert": "\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
||||
"File": "\u0424\u0430\u0439\u043b",
|
||||
"Edit": "\u041f\u0440\u0430\u0432\u043a\u0430",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u041e\u0431\u043b\u0430\u0441\u0442\u044c Rich \u0442\u0435\u043a\u0441\u0442\u0443. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F9 - \u043c\u0435\u043d\u044e. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-F10 - \u043f\u0430\u043d\u0435\u043b\u044c \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432. \u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c ALT-0 - \u0434\u043e\u0432\u0456\u0434\u043a\u0430",
|
||||
"Tools": "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438",
|
||||
"View": "\u0412\u0438\u0434",
|
||||
"Table": "\u0422\u0430\u0431\u043b\u0438\u0446\u044f",
|
||||
"Format": "\u0424\u043e\u0440\u043c\u0430\u0442"
|
||||
});
|
|
@ -0,0 +1,219 @@
|
|||
tinymce.addI18n('zh_TW',{
|
||||
"Cut": "\u526a\u4e0b",
|
||||
"Heading 5": "\u6a19\u984c 5",
|
||||
"Header 2": "\u6a19\u984c 2",
|
||||
"Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X\/C\/V keyboard shortcuts instead.": "\u60a8\u7684\u700f\u89bd\u5668\u4e0d\u652f\u63f4\u5b58\u53d6\u526a\u8cbc\u7c3f\uff0c\u53ef\u4ee5\u4f7f\u7528\u5feb\u901f\u9375 Ctrl + X\/C\/V \u4ee3\u66ff\u526a\u4e0b\u3001\u8907\u88fd\u8207\u8cbc\u4e0a\u3002",
|
||||
"Heading 4": "\u6a19\u984c 4",
|
||||
"Div": "Div",
|
||||
"Heading 2": "\u6a19\u984c 2",
|
||||
"Paste": "\u8cbc\u4e0a",
|
||||
"Close": "\u95dc\u9589",
|
||||
"Font Family": "\u5b57\u9ad4",
|
||||
"Pre": "Pre",
|
||||
"Align right": "\u7f6e\u53f3\u5c0d\u9f4a",
|
||||
"New document": "\u65b0\u6587\u4ef6",
|
||||
"Blockquote": "\u5f15\u7528",
|
||||
"Numbered list": "\u6578\u5b57\u6e05\u55ae",
|
||||
"Heading 1": "\u6a19\u984c 1",
|
||||
"Headings": "\u6a19\u984c",
|
||||
"Increase indent": "\u589e\u52a0\u7e2e\u6392",
|
||||
"Formats": "\u683c\u5f0f",
|
||||
"Headers": "\u6a19\u984c",
|
||||
"Select all": "\u5168\u9078",
|
||||
"Header 3": "\u6a19\u984c 3",
|
||||
"Blocks": "\u5340\u584a",
|
||||
"Undo": "\u5fa9\u539f",
|
||||
"Strikethrough": "\u522a\u9664\u7dda",
|
||||
"Bullet list": "\u9805\u76ee\u6e05\u55ae",
|
||||
"Header 1": "\u6a19\u984c 1",
|
||||
"Superscript": "\u4e0a\u6a19",
|
||||
"Clear formatting": "\u6e05\u9664\u683c\u5f0f",
|
||||
"Font Sizes": "\u5b57\u578b\u5927\u5c0f",
|
||||
"Subscript": "\u4e0b\u6a19",
|
||||
"Header 6": "\u6a19\u984c 6",
|
||||
"Redo": "\u53d6\u6d88\u5fa9\u539f",
|
||||
"Paragraph": "\u6bb5\u843d",
|
||||
"Ok": "\u78ba\u5b9a",
|
||||
"Bold": "\u7c97\u9ad4",
|
||||
"Code": "\u7a0b\u5f0f\u78bc",
|
||||
"Italic": "\u659c\u9ad4",
|
||||
"Align center": "\u7f6e\u4e2d\u5c0d\u9f4a",
|
||||
"Header 5": "\u6a19\u984c 5",
|
||||
"Heading 6": "\u6a19\u984c 6",
|
||||
"Heading 3": "\u6a19\u984c 3",
|
||||
"Decrease indent": "\u6e1b\u5c11\u7e2e\u6392",
|
||||
"Header 4": "\u6a19\u984c 4",
|
||||
"Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "\u76ee\u524d\u5c07\u4ee5\u7d14\u6587\u5b57\u7684\u6a21\u5f0f\u8cbc\u4e0a\uff0c\u60a8\u53ef\u4ee5\u518d\u9ede\u9078\u4e00\u6b21\u53d6\u6d88\u3002",
|
||||
"Underline": "\u5e95\u7dda",
|
||||
"Cancel": "\u53d6\u6d88",
|
||||
"Justify": "\u5de6\u53f3\u5c0d\u9f4a",
|
||||
"Inline": "Inline",
|
||||
"Copy": "\u8907\u88fd",
|
||||
"Align left": "\u7f6e\u5de6\u5c0d\u9f4a",
|
||||
"Visual aids": "\u5c0f\u5e6b\u624b",
|
||||
"Lower Greek": "\u5e0c\u81d8\u5b57\u6bcd",
|
||||
"Square": "\u6b63\u65b9\u5f62",
|
||||
"Default": "\u9810\u8a2d",
|
||||
"Lower Alpha": "\u5c0f\u5beb\u82f1\u6587\u5b57\u6bcd",
|
||||
"Circle": "\u7a7a\u5fc3\u5713",
|
||||
"Disc": "\u5be6\u5fc3\u5713",
|
||||
"Upper Alpha": "\u5927\u5beb\u82f1\u6587\u5b57\u6bcd",
|
||||
"Upper Roman": "\u5927\u5beb\u7f85\u99ac\u6578\u5b57",
|
||||
"Lower Roman": "\u5c0f\u5beb\u7f85\u99ac\u6578\u5b57",
|
||||
"Name": "\u540d\u7a31",
|
||||
"Anchor": "\u52a0\u5165\u9328\u9ede",
|
||||
"You have unsaved changes are you sure you want to navigate away?": "\u7de8\u8f2f\u5c1a\u672a\u88ab\u5132\u5b58\uff0c\u4f60\u78ba\u5b9a\u8981\u96e2\u958b\uff1f",
|
||||
"Restore last draft": "\u8f09\u5165\u4e0a\u4e00\u6b21\u7de8\u8f2f\u7684\u8349\u7a3f",
|
||||
"Special character": "\u7279\u6b8a\u5b57\u5143",
|
||||
"Source code": "\u539f\u59cb\u78bc",
|
||||
"B": "\u85cd",
|
||||
"R": "\u7d05",
|
||||
"G": "\u7da0",
|
||||
"Color": "\u984f\u8272",
|
||||
"Right to left": "\u5f9e\u53f3\u5230\u5de6",
|
||||
"Left to right": "\u5f9e\u5de6\u5230\u53f3",
|
||||
"Emoticons": "\u8868\u60c5",
|
||||
"Robots": "\u6a5f\u5668\u4eba",
|
||||
"Document properties": "\u6587\u4ef6\u7684\u5c6c\u6027",
|
||||
"Title": "\u6a19\u984c",
|
||||
"Keywords": "\u95dc\u9375\u5b57",
|
||||
"Encoding": "\u7de8\u78bc",
|
||||
"Description": "\u63cf\u8ff0",
|
||||
"Author": "\u4f5c\u8005",
|
||||
"Fullscreen": "\u5168\u87a2\u5e55",
|
||||
"Horizontal line": "\u6c34\u5e73\u7dda",
|
||||
"Horizontal space": "\u5bec\u5ea6",
|
||||
"Insert\/edit image": "\u63d2\u5165\/\u7de8\u8f2f \u5716\u7247",
|
||||
"General": "\u4e00\u822c",
|
||||
"Advanced": "\u9032\u968e",
|
||||
"Source": "\u5716\u7247\u7db2\u5740",
|
||||
"Border": "\u908a\u6846",
|
||||
"Constrain proportions": "\u7b49\u6bd4\u4f8b\u7e2e\u653e",
|
||||
"Vertical space": "\u9ad8\u5ea6",
|
||||
"Image description": "\u5716\u7247\u63cf\u8ff0",
|
||||
"Style": "\u6a23\u5f0f",
|
||||
"Dimensions": "\u5c3a\u5bf8",
|
||||
"Insert image": "\u63d2\u5165\u5716\u7247",
|
||||
"Zoom in": "\u653e\u5927",
|
||||
"Contrast": "\u5c0d\u6bd4",
|
||||
"Back": "\u5f8c\u9000",
|
||||
"Gamma": "\u4f3d\u99ac\u503c",
|
||||
"Flip horizontally": "\u6c34\u5e73\u7ffb\u8f49",
|
||||
"Resize": "\u8abf\u6574\u5927\u5c0f",
|
||||
"Sharpen": "\u92b3\u5316",
|
||||
"Zoom out": "\u7e2e\u5c0f",
|
||||
"Image options": "\u5716\u7247\u9078\u9805",
|
||||
"Apply": "\u61c9\u7528",
|
||||
"Brightness": "\u4eae\u5ea6",
|
||||
"Rotate clockwise": "\u9806\u6642\u91dd\u65cb\u8f49",
|
||||
"Rotate counterclockwise": "\u9006\u6642\u91dd\u65cb\u8f49",
|
||||
"Edit image": "\u7de8\u8f2f\u5716\u7247",
|
||||
"Color levels": "\u984f\u8272\u5c64\u6b21",
|
||||
"Crop": "\u88c1\u526a",
|
||||
"Orientation": "\u65b9\u5411",
|
||||
"Flip vertically": "\u5782\u76f4\u7ffb\u8f49",
|
||||
"Invert": "\u53cd\u8f49",
|
||||
"Insert date\/time": "\u63d2\u5165 \u65e5\u671f\/\u6642\u9593",
|
||||
"Remove link": "\u79fb\u9664\u9023\u7d50",
|
||||
"Url": "\u7db2\u5740",
|
||||
"Text to display": "\u986f\u793a\u6587\u5b57",
|
||||
"Anchors": "\u52a0\u5165\u9328\u9ede",
|
||||
"Insert link": "\u63d2\u5165\u9023\u7d50",
|
||||
"New window": "\u53e6\u958b\u8996\u7a97",
|
||||
"None": "\u7121",
|
||||
"The URL you entered seems to be an external link. Do you want to add the required http:\/\/ prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u5c6c\u65bc\u5916\u90e8\u93c8\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp:\/\/:\u524d\u7db4\u55ce\uff1f",
|
||||
"Target": "\u958b\u555f\u65b9\u5f0f",
|
||||
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "\u4f60\u6240\u586b\u5beb\u7684URL\u70ba\u96fb\u5b50\u90f5\u4ef6\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7db4\u55ce\uff1f",
|
||||
"Insert\/edit link": "\u63d2\u5165\/\u7de8\u8f2f\u9023\u7d50",
|
||||
"Insert\/edit video": "\u63d2\u4ef6\/\u7de8\u8f2f \u5f71\u97f3",
|
||||
"Poster": "\u9810\u89bd\u5716\u7247",
|
||||
"Alternative source": "\u66ff\u4ee3\u5f71\u97f3",
|
||||
"Paste your embed code below:": "\u8acb\u5c07\u60a8\u7684\u5d4c\u5165\u5f0f\u7a0b\u5f0f\u78bc\u8cbc\u5728\u4e0b\u9762:",
|
||||
"Insert video": "\u63d2\u5165\u5f71\u97f3",
|
||||
"Embed": "\u5d4c\u5165\u78bc",
|
||||
"Nonbreaking space": "\u4e0d\u5206\u884c\u7684\u7a7a\u683c",
|
||||
"Page break": "\u5206\u9801",
|
||||
"Paste as text": "\u4ee5\u7d14\u6587\u5b57\u8cbc\u4e0a",
|
||||
"Preview": "\u9810\u89bd",
|
||||
"Print": "\u5217\u5370",
|
||||
"Save": "\u5132\u5b58",
|
||||
"Could not find the specified string.": "\u7121\u6cd5\u67e5\u8a62\u5230\u6b64\u7279\u5b9a\u5b57\u4e32",
|
||||
"Replace": "\u66ff\u63db",
|
||||
"Next": "\u4e0b\u4e00\u500b",
|
||||
"Whole words": "\u6574\u500b\u55ae\u5b57",
|
||||
"Find and replace": "\u5c0b\u627e\u53ca\u53d6\u4ee3",
|
||||
"Replace with": "\u66f4\u63db",
|
||||
"Find": "\u641c\u5c0b",
|
||||
"Replace all": "\u66ff\u63db\u5168\u90e8",
|
||||
"Match case": "\u76f8\u5339\u914d\u6848\u4ef6",
|
||||
"Prev": "\u4e0a\u4e00\u500b",
|
||||
"Spellcheck": "\u62fc\u5b57\u6aa2\u67e5",
|
||||
"Finish": "\u5b8c\u6210",
|
||||
"Ignore all": "\u5ffd\u7565\u6240\u6709",
|
||||
"Ignore": "\u5ffd\u7565",
|
||||
"Add to Dictionary": "\u52a0\u5165\u5b57\u5178\u4e2d",
|
||||
"Insert row before": "\u63d2\u5165\u5217\u5728...\u4e4b\u524d",
|
||||
"Rows": "\u5217",
|
||||
"Height": "\u9ad8\u5ea6",
|
||||
"Paste row after": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u5f8c",
|
||||
"Alignment": "\u5c0d\u9f4a",
|
||||
"Border color": "\u908a\u6846\u984f\u8272",
|
||||
"Column group": "\u6b04\u4f4d\u7fa4\u7d44",
|
||||
"Row": "\u5217",
|
||||
"Insert column before": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u524d",
|
||||
"Split cell": "\u5206\u5272\u5132\u5b58\u683c",
|
||||
"Cell padding": "\u5132\u5b58\u683c\u7684\u908a\u8ddd",
|
||||
"Cell spacing": "\u5132\u5b58\u683c\u5f97\u9593\u8ddd",
|
||||
"Row type": "\u884c\u7684\u985e\u578b",
|
||||
"Insert table": "\u63d2\u5165\u8868\u683c",
|
||||
"Body": "\u4e3b\u9ad4",
|
||||
"Caption": "\u8868\u683c\u6a19\u984c",
|
||||
"Footer": "\u9801\u5c3e",
|
||||
"Delete row": "\u522a\u9664\u5217",
|
||||
"Paste row before": "\u8cbc\u4e0a\u5217\u5728...\u4e4b\u524d",
|
||||
"Scope": "\u7bc4\u570d",
|
||||
"Delete table": "\u522a\u9664\u8868\u683c",
|
||||
"H Align": "\u6c34\u5e73\u4f4d\u7f6e",
|
||||
"Top": "\u7f6e\u9802",
|
||||
"Header cell": "\u6a19\u982d\u5132\u5b58\u683c",
|
||||
"Column": "\u884c",
|
||||
"Row group": "\u5217\u7fa4\u7d44",
|
||||
"Cell": "\u5132\u5b58\u683c",
|
||||
"Middle": "\u7f6e\u4e2d",
|
||||
"Cell type": "\u5132\u5b58\u683c\u7684\u985e\u578b",
|
||||
"Copy row": "\u8907\u88fd\u5217",
|
||||
"Row properties": "\u5217\u5c6c\u6027",
|
||||
"Table properties": "\u8868\u683c\u5c6c\u6027",
|
||||
"Bottom": "\u7f6e\u5e95",
|
||||
"V Align": "\u5782\u76f4\u4f4d\u7f6e",
|
||||
"Header": "\u6a19\u982d",
|
||||
"Right": "\u53f3\u908a",
|
||||
"Insert column after": "\u63d2\u5165\u6b04\u4f4d\u5728...\u4e4b\u5f8c",
|
||||
"Cols": "\u6b04\u4f4d\u6bb5",
|
||||
"Insert row after": "\u63d2\u5165\u5217\u5728...\u4e4b\u5f8c",
|
||||
"Width": "\u5bec\u5ea6",
|
||||
"Cell properties": "\u5132\u5b58\u683c\u5c6c\u6027",
|
||||
"Left": "\u5de6\u908a",
|
||||
"Cut row": "\u526a\u4e0b\u5217",
|
||||
"Delete column": "\u522a\u9664\u884c",
|
||||
"Center": "\u4e2d\u9593",
|
||||
"Merge cells": "\u5408\u4f75\u5132\u5b58\u683c",
|
||||
"Insert template": "\u63d2\u5165\u6a23\u7248",
|
||||
"Templates": "\u6a23\u7248",
|
||||
"Background color": "\u80cc\u666f\u984f\u8272",
|
||||
"Custom...": "\u81ea\u8a02",
|
||||
"Custom color": "\u81ea\u8a02\u984f\u8272",
|
||||
"No color": "No color",
|
||||
"Text color": "\u6587\u5b57\u984f\u8272",
|
||||
"Show blocks": "\u986f\u793a\u5340\u584a\u8cc7\u8a0a",
|
||||
"Show invisible characters": "\u986f\u793a\u96b1\u85cf\u5b57\u5143",
|
||||
"Words: {0}": "\u5b57\u6578\uff1a{0}",
|
||||
"Insert": "\u63d2\u5165",
|
||||
"File": "\u6a94\u6848",
|
||||
"Edit": "\u7de8\u8f2f",
|
||||
"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\u8c50\u5bcc\u7684\u6587\u672c\u5340\u57df\u3002\u6309ALT-F9\u524d\u5f80\u4e3b\u9078\u55ae\u3002\u6309ALT-F10\u547c\u53eb\u5de5\u5177\u6b04\u3002\u6309ALT-0\u5c0b\u6c42\u5e6b\u52a9",
|
||||
"Tools": "\u5de5\u5177",
|
||||
"View": "\u6aa2\u8996",
|
||||
"Table": "\u8868\u683c",
|
||||
"Format": "\u683c\u5f0f"
|
||||
});
|
|
@ -1,504 +0,0 @@
|
|||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it becomes
|
||||
a de-facto standard. To achieve this, non-free programs must be
|
||||
allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control compilation
|
||||
and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at
|
||||
least three years, to give the same user the materials
|
||||
specified in Subsection 6a, above, for a charge no more
|
||||
than the cost of performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License may add
|
||||
an explicit geographical distribution limitation excluding those countries,
|
||||
so that distribution is permitted only in or among countries not thus
|
||||
excluded. In such case, this License incorporates the limitation as if
|
||||
written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest
|
||||
possible use to the public, we recommend making it free software that
|
||||
everyone can redistribute and change. You can do so by permitting
|
||||
redistribution under these terms (or, alternatively, under the terms of the
|
||||
ordinary General Public License).
|
||||
|
||||
To apply these terms, attach the following notices to the library. It is
|
||||
safest to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least the
|
||||
"copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the library's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the library, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
||||
|
||||
|
0
plugins/tinymce/tinymce/plugins/directionality/plugin.min.js
vendored
Executable file → Normal file
Before Width: | Height: | Size: 354 B After Width: | Height: | Size: 354 B |
Before Width: | Height: | Size: 329 B After Width: | Height: | Size: 329 B |
Before Width: | Height: | Size: 331 B After Width: | Height: | Size: 331 B |
0
plugins/tinymce/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif
Executable file → Normal file
Before Width: | Height: | Size: 342 B After Width: | Height: | Size: 342 B |
Before Width: | Height: | Size: 340 B After Width: | Height: | Size: 340 B |
Before Width: | Height: | Size: 336 B After Width: | Height: | Size: 336 B |
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 343 B After Width: | Height: | Size: 343 B |
0
plugins/tinymce/tinymce/plugins/emoticons/img/smiley-money-mouth.gif
Executable file → Normal file
Before Width: | Height: | Size: 321 B After Width: | Height: | Size: 321 B |
Before Width: | Height: | Size: 323 B After Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 328 B After Width: | Height: | Size: 328 B |
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 337 B |
Before Width: | Height: | Size: 350 B After Width: | Height: | Size: 350 B |
Before Width: | Height: | Size: 336 B After Width: | Height: | Size: 336 B |