diff --git a/engine/Monstra.php b/engine/Monstra.php
index 77c756c..a1eac0f 100644
--- a/engine/Monstra.php
+++ b/engine/Monstra.php
@@ -184,6 +184,7 @@ class Monstra
ORM::configure(MONSTRA_DB_DSN);
ORM::configure('username', MONSTRA_DB_USER);
ORM::configure('password', MONSTRA_DB_PASSWORD);
+ ORM::configure('driver_options', array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'));
}
/**
diff --git a/engine/Plugin/Stylesheet.php b/engine/Plugin/Stylesheet.php
index 328f1fb..beacfa2 100644
--- a/engine/Plugin/Stylesheet.php
+++ b/engine/Plugin/Stylesheet.php
@@ -130,7 +130,7 @@ class Stylesheet
if (BACKEND) {
echo '';
} else {
- echo '';
+ echo ''."\n";
}
}
}
diff --git a/index.php b/index.php
index baa02e0..0a87401 100644
--- a/index.php
+++ b/index.php
@@ -45,6 +45,9 @@ if (file_exists('install.php')) {
if ((Session::exists('user_role')) and (Session::get('user_role') == 'admin' or Session::get('user_role') == 'editor')) {
// Monstra show this page :)
} else {
+ header('HTTP/1.1 503 Service Temporarily Unavailable');
+ header('Status: 503 Service Temporarily Unavailable');
+ header('Retry-After: 600');
die (Text::toHtml(Option::get('maintenance_message')));
}
}
diff --git a/install.php b/install.php
index 17b98ec..e5976c0 100644
--- a/install.php
+++ b/install.php
@@ -29,7 +29,7 @@
$dir_array = array('public', 'storage', 'backups', 'tmp');
// Languages array
- $languages_array = array('en', 'fr', 'de', 'it', 'es', 'lt', 'pt-br', 'ru', 'uk', 'hu', 'fa' , 'sk', 'sr-yu');
+ $languages_array = array('en', 'fr', 'de', 'it', 'es', 'lt', 'pl', 'pt-br', 'ru', 'uk', 'hu', 'fa' , 'sk', 'sr-yu');
// Select Monstra language
if (Request::get('language')) {
diff --git a/libraries/Gelato/Image/Image.php b/libraries/Gelato/Image/Image.php
index b4e5faf..07abc38 100644
--- a/libraries/Gelato/Image/Image.php
+++ b/libraries/Gelato/Image/Image.php
@@ -218,6 +218,8 @@ class Image
// Create a new true color image width new width and height
$resized = imagecreatetruecolor($new_width, $new_height);
+ $transPng = imagecolorallocatealpha($resized, 0, 0, 0, 127);
+ imagefill($resized, 0, 0, $transPng);
// Copy and resize part of an image with resampling
imagecopyresampled($resized, $this->image, 0, 0, 0, 0, $new_width, $new_height, $this->width, $this->height);
@@ -227,6 +229,8 @@ class Image
// Create a new true color image width new width and height
$this->image = imagecreatetruecolor($new_width, $new_height);
+ $transPng = imagecolorallocatealpha($this->image, 0, 0, 0, 127);
+ imagefill($this->image, 0, 0, $transPng);
// Copy and resize part of an image with resampling
imagecopyresampled($this->image, $resized, 0, 0, 0, 0, $new_width, $new_height, $new_width, $new_height);
@@ -269,6 +273,8 @@ class Image
// Create a new true color image
$crop = imagecreatetruecolor($width, $height);
+ $transPng = imagecolorallocatealpha($crop, 0, 0, 0, 127);
+ imagefill($crop, 0, 0, $transPng);
// Copy and resize part of an image with resampling
imagecopyresampled($crop, $this->image, 0, 0, $x, $y, $this->width, $this->height, $this->width, $this->height);
@@ -278,6 +284,8 @@ class Image
// Create a new true color image
$this->image = imagecreatetruecolor($width, $height);
+ $transPng = imagecolorallocatealpha($this->image, 0, 0, 0, 127);
+ imagefill($this->image, 0, 0, $transPng);
// Copy and resize part of an image with resampling
imagecopyresampled($this->image, $crop, 0, 0, 0, 0, $width, $height, $width, $height);
diff --git a/plugins/box/backup/languages/nl.lang.php b/plugins/box/backup/languages/nl.lang.php
new file mode 100644
index 0000000..0f0aa4c
--- /dev/null
+++ b/plugins/box/backup/languages/nl.lang.php
@@ -0,0 +1,17 @@
+ array(
+ 'Backups' => 'Backups',
+ 'Backup' => 'Backup',
+ 'Create Backup' => 'Maak backup',
+ 'Delete' => 'Verwijderen',
+ 'storage' => 'Opslag',
+ 'public' => 'Publiek',
+ 'plugins' => 'Plugins',
+ 'Size' => 'Grootte',
+ 'Actions' => 'Acties',
+ 'Delete backup: :backup' => 'Verwijder backup: :backup',
+ 'Creating...' => 'Backup wordt gemaakt...',
+ )
+ );
diff --git a/plugins/box/backup/languages/pl.lang.php b/plugins/box/backup/languages/pl.lang.php
new file mode 100644
index 0000000..e5b968f
--- /dev/null
+++ b/plugins/box/backup/languages/pl.lang.php
@@ -0,0 +1,17 @@
+ array(
+ 'Backups' => 'Kopie zapasowe',
+ 'Backup Date' => 'Data kopii zapasowej',
+ 'Create Backup' => 'Utwórz kopię zapasową',
+ 'Delete' => 'Usuń',
+ 'storage' => 'magazyn',
+ 'public' => 'publiczny',
+ 'plugins' => 'wtyczki',
+ 'Size' => 'Rozmiar',
+ 'Actions' => 'Akcje',
+ 'Delete backup: :backup' => 'Czy napewno usunąć kopię zapasową: :backup',
+ 'Creating...' => 'Tworzenie kopii zapasowej...',
+ )
+ );
diff --git a/plugins/box/blocks/languages/nl.lang.php b/plugins/box/blocks/languages/nl.lang.php
new file mode 100644
index 0000000..ed2272d
--- /dev/null
+++ b/plugins/box/blocks/languages/nl.lang.php
@@ -0,0 +1,29 @@
+ array(
+ 'Blocks' => 'Blokken',
+ 'Blocks manager' => 'Blokken beheer',
+ 'Delete' => 'Verwijderen',
+ 'Edit' => 'Bewerken',
+ 'Name' => 'Naam',
+ 'Create New Block' => 'Nieuw blok',
+ 'New Block' => 'Nieuw blok',
+ 'Edit Block' => 'Bewerk blok',
+ 'Save' => 'Opslaan',
+ 'Save and Exit' => 'Opslaan en Terug',
+ 'Actions' => 'Acties',
+ 'Required field' => 'Vereist veld',
+ 'This block already exists' => 'Dit blok bestaat al',
+ 'This block does not exist' => 'Dit blok bestaat niet',
+ 'Delete block: :block' => 'Verwijder blok: :block',
+ 'Block content' => 'Inhoud blok',
+ 'Block :name deleted' => 'Blok :name verwijderd',
+ 'Your changes to the block :name have been saved.' => 'De aanpassingen aan blok :name zijn opgeslagen.',
+ 'Delete block: :block' => 'Verwijder blok: :block',
+ 'View Embed Code' => 'Bekijk insluitcode',
+ 'Embed Code' => 'Insluitcode',
+ 'Shortcode' => 'Verkorte code',
+ 'PHP Code' => 'PHP Code',
+ )
+ );
diff --git a/plugins/box/blocks/languages/pl.lang.php b/plugins/box/blocks/languages/pl.lang.php
new file mode 100644
index 0000000..97a8d09
--- /dev/null
+++ b/plugins/box/blocks/languages/pl.lang.php
@@ -0,0 +1,29 @@
+ array(
+ 'Blocks' => 'Bloki',
+ 'Blocks manager' => 'Zarządzaj blokami',
+ 'Delete' => 'Usuń',
+ 'Edit' => 'Edytuj',
+ 'Name' => 'Nazwa',
+ 'Create New Block' => 'Utwórz nowy blok',
+ 'New Block' => 'Nowy blok',
+ 'Edit Block' => 'Edytuj blok',
+ 'Save' => 'Zapisz',
+ 'Save and Exit' => 'Zapisz i wyjdź',
+ 'Actions' => 'Akcje',
+ 'Required field' => 'Pole wymagane',
+ 'This block already exists' => 'Ten blok już istnieje',
+ 'This block does not exist' => 'Ten blok nie istnieje',
+ 'Delete block: :block' => 'Czy napewno usunąć blok: :block',
+ 'Block content' => 'Zawartość bloku',
+ 'Block :name deleted' => 'Blok :name został usunięty',
+ 'Your changes to the block :name have been saved.' => 'Twoje zmiany dla bloku :name zostały zapisane.',
+ 'Delete block: :block' => 'Czy napewno usunąć blok: :block',
+ 'View Embed Code' => 'Pokaż osadzony kod',
+ 'Embed Code' => 'Osadzony kod',
+ 'Shortcode' => 'Krótki kod (shortcode)',
+ 'PHP Code' => 'Kod PHP',
+ )
+ );
diff --git a/plugins/box/editor/languages/nl.lang.php b/plugins/box/editor/languages/nl.lang.php
new file mode 100644
index 0000000..30794e7
--- /dev/null
+++ b/plugins/box/editor/languages/nl.lang.php
@@ -0,0 +1,8 @@
+ array(
+ 'Editor' => 'Editor',
+ 'Editor plugin' => 'Editor Plugin',
+ )
+ );
diff --git a/plugins/box/editor/languages/pl.lang.php b/plugins/box/editor/languages/pl.lang.php
new file mode 100644
index 0000000..471cd42
--- /dev/null
+++ b/plugins/box/editor/languages/pl.lang.php
@@ -0,0 +1,8 @@
+ array(
+ 'Editor' => 'Edytor',
+ 'Editor plugin' => 'Wtyczka edytora',
+ )
+ );
diff --git a/plugins/box/filesmanager/languages/nl.lang.php b/plugins/box/filesmanager/languages/nl.lang.php
new file mode 100644
index 0000000..65b0e5a
--- /dev/null
+++ b/plugins/box/filesmanager/languages/nl.lang.php
@@ -0,0 +1,17 @@
+ array(
+ 'Files' => 'Bestanden',
+ 'Files manager' => 'Bestandsbeheer',
+ 'Name' => 'Naam',
+ 'Actions' => 'Acties',
+ 'Delete' => 'Verwijderen',
+ 'Upload' => 'Uploaden',
+ 'directory' => 'Map',
+ 'Delete directory: :dir' => 'Verwijder map: :dir',
+ 'Delete file: :file' => 'Verwijder bestand: :file',
+ 'Extension' => 'Type',
+ 'Size' => 'Grootte',
+ )
+ );
diff --git a/plugins/box/filesmanager/languages/pl.lang.php b/plugins/box/filesmanager/languages/pl.lang.php
new file mode 100644
index 0000000..702f152
--- /dev/null
+++ b/plugins/box/filesmanager/languages/pl.lang.php
@@ -0,0 +1,17 @@
+ array(
+ 'Files' => 'Pliki',
+ 'Files manager' => 'Zarządzaj plikami',
+ 'Name' => 'Nazwa',
+ 'Actions' => 'Akcje',
+ 'Delete' => 'Usuń',
+ 'Upload' => 'Prześlij',
+ 'directory' => 'katalog',
+ 'Delete directory: :dir' => 'Czy napewno usunąć katalog: :dir',
+ 'Delete file: :file' => 'Czy napewno usunąć plik :file',
+ 'Extension' => 'Rozszerzenie',
+ 'Size' => 'Rozmiar',
+ )
+ );
diff --git a/plugins/box/information/languages/de.lang.php b/plugins/box/information/languages/de.lang.php
index e5035ef..b1c1305 100644
--- a/plugins/box/information/languages/de.lang.php
+++ b/plugins/box/information/languages/de.lang.php
@@ -28,7 +28,7 @@
'Monstra version' => 'Monstra version',
'Directory Permissions' => 'Directory Berechtigungen',
'Directory' => 'Verzeichnis',
- 'Writable' => 'Writable',
+ 'Writable' => 'Beschreibbar',
'Unwritable' => 'Nicht beschreibbar',
'Status' => 'Status',
'PHP Built On' => 'PHP Built On',
diff --git a/plugins/box/information/languages/nl.lang.php b/plugins/box/information/languages/nl.lang.php
new file mode 100644
index 0000000..0e1f845
--- /dev/null
+++ b/plugins/box/information/languages/nl.lang.php
@@ -0,0 +1,38 @@
+ array(
+ 'Information' => 'Informatie',
+ 'Debuging' => 'Debuggen',
+ 'Name' => 'Naam',
+ 'Value' => 'Waarde',
+ 'Security' => 'Beveiliging',
+ 'System' => 'Systeem',
+ 'on' => 'Aan',
+ 'off'=> 'Uit',
+ 'Server' => 'Server',
+ 'PHP version' => 'PHP Versie',
+ 'SimpleXML module' => 'SimpleXML Module',
+ 'DOM module' => 'DOM Module',
+ 'Installed' => 'Geinstalleerd',
+ 'Not Installed' => 'Niet geinstalleerd',
+ 'Security check results' => 'Resultaten beveiligings-check',
+ 'The configuration file has been found to be writable. We would advise you to remove all write permissions on defines.php on production systems.' =>
+ 'Het configuratiebestand is schrijfbaar. We adviseren u om alle schrijfrechten op defines.php te verwijderen op productiewebsites.',
+ 'The Monstra .htaccess file has been found to be writable. We would advise you to remove all write permissions.
You can do this on unix systems with: chmod a-w :path
' =>
+ 'Het Monstra .htaccess bestand is schrijfbaar. We adviseren u om alle schrijfrechten voor dit bestand te verwijderen.
Op unix-systemen doet u dit als volgt: chmod a-w :path
.',
+ 'The Monstra index.php file has been found to be writable. We would advise you to remove all write permissions.
You can do this on unix systems with: chmod a-w :path
' =>
+ 'Het Monstra index.php bestand is schrijfbaar. We adviseren u alle schrijfrechten voor dit bestand te verwijderen.
Op Unix-systemen doet u dit als volgt: chmod a-w :path
.',
+ 'Due to the type and amount of information an error might give intruders when Monstra::$environment = Monstra::DEVELOPMENT, we strongly advise setting Monstra::PRODUCTION in production systems.' =>
+ 'Door het type en de hoeveelheid informatie die foutmeldingen kunnen geven aan indringers wanneer Monstra::$environment = Monstra::DEVELOPMENT, raden we u ten zeerste aan om de instelling op Monstra::PRODUCTION te zetten, wanneer u met een productiewebsite werkt.',
+ 'Monstra version' => 'Monstra versie',
+ 'Directory Permissions' => 'Map-rechten',
+ 'Directory' => 'Map',
+ 'Writable' => 'Schrijfbaar',
+ 'Unwritable' => 'Niet schrijfbaar',
+ 'Status' => 'Status',
+ 'PHP Built On' => 'Systeem',
+ 'Web Server' => 'Web Server',
+ 'WebServer to PHP Interface' => 'WebServer PHP Interface',
+ )
+ );
diff --git a/plugins/box/information/languages/pl.lang.php b/plugins/box/information/languages/pl.lang.php
new file mode 100644
index 0000000..8108112
--- /dev/null
+++ b/plugins/box/information/languages/pl.lang.php
@@ -0,0 +1,40 @@
+ array(
+ 'Information' => 'Informacja',
+ 'Debugging' => 'Odpluskwianie',
+ 'Name' => 'Nazwa',
+ 'Value' => 'Wartość',
+ 'Security' => 'Bezpieczeństwo',
+ 'System' => 'System',
+ 'on' => 'włączone',
+ 'off'=> 'wyłączone',
+ 'Server' => 'Serwer',
+ 'PHP version' => 'Wersja PHP',
+ 'SimpleXML module' => 'Moduł SimpleXML',
+ 'DOM module' => 'Moduł DOM',
+ 'Installed' => 'Zainstalowane',
+ 'Not Installed' => 'Nie zainstalowane',
+ 'Security check results' => 'Wyniki sprawdzenia bezpieczeństwa',
+ 'The configuration file has been found to be writable. We would advise you to remove all write permissions on defines.php on production systems.' =>
+ 'Plik konfiguracyjny ma możliwość zapisu. Radzimy, aby w systemach produkcyjnych usunąć wszystkie uprawnienia zapisu dla pliku defines.php.',
+ 'The Monstra core directory (":path") and/or files underneath it has been found to be writable. We would advise you to remove all write permissions.
You can do this on unix systems with: chmod -R a-w :path
' =>
+ 'Katalog główny systemu Monstra (":path") i/lub pliki w nim zawarte mają możliwość zapisu. Radzimy, aby usunąć wszystkie uprawnienia zapisu.
Na systemach UNIX możesz to zrobić za pomocą: chmod -R a-w :path
',
+ 'The Monstra .htaccess file has been found to be writable. We would advise you to remove all write permissions.
You can do this on unix systems with: chmod a-w :path
' =>
+ 'Plik .htaccess systemu Monstra ma możliwość zapisu. Radzimy, aby usunąć wszystkie uprawnienia zapisu.
Na systemach UNIX możesz to zrobić za pomocą: chmod a-w :path
',
+ 'The Monstra index.php file has been found to be writable. We would advise you to remove all write permissions.
You can do this on unix systems with: chmod a-w :path
' =>
+ 'Plik index.php systemu Monstra ma możliwość zapisu. Radzimy, aby usunąć wszystkie uprawnienia zapisu.
Na systemach UNIX możesz to zrobić za pomocą: chmod a-w :path
',
+ 'Due to the type and amount of information an error might give intruders when Monstra::$environment = Monstra::DEVELOPMENT, we strongly advise setting Monstra::PRODUCTION in production systems.' =>
+ 'Ze względu na rodzaj i ilość informacji o błędach, które mogą dostać się w niepowołane ręce, gdy Monstra::$environment = Monstra::DEVELOPMENT, zdecydowanie zalecamy ustawienie Monstra::PRODUCTION w systemach produkcyjnych.',
+ 'Monstra version' => 'Wersja systemu Monstra',
+ 'Directory Permissions' => 'Uprawnienia katalogu',
+ 'Directory' => 'Katalog',
+ 'Writable' => 'Możliwość zapisu',
+ 'Unwritable' => 'Brak możliwości zapisu',
+ 'Status' => 'Status',
+ 'PHP Built On' => 'Oparty na systemie',
+ 'Web Server' => 'Serwer WWW',
+ 'WebServer to PHP Interface' => 'Serwerowy interfejs PHP',
+ )
+ );
diff --git a/plugins/box/menu/languages/de.lang.php b/plugins/box/menu/languages/de.lang.php
index 6c2bff7..f97789c 100644
--- a/plugins/box/menu/languages/de.lang.php
+++ b/plugins/box/menu/languages/de.lang.php
@@ -9,7 +9,7 @@
'Delete' => 'Löschen',
'Order' => 'Reihenfolge',
'Actions' => 'Aktionen',
- 'Create New Item' => 'Erstellen neuen Eintrag',
+ 'Create New Item' => 'Erstelle neuen Eintrag',
'New item' => 'Neuer Eintrag',
'Item name' => 'Eintrags Name',
'Item order' => 'Eintrags Reihenfolge',
diff --git a/plugins/box/menu/languages/nl.lang.php b/plugins/box/menu/languages/nl.lang.php
new file mode 100644
index 0000000..79b6a4f
--- /dev/null
+++ b/plugins/box/menu/languages/nl.lang.php
@@ -0,0 +1,27 @@
+ array(
+ 'Menu' => 'Menu',
+ 'Menu manager' => 'Menu beheer',
+ 'Edit' => 'Bewerken',
+ 'Name' => 'Naam',
+ 'Delete' => 'Verwijderen',
+ 'Order' => 'Volgorde',
+ 'Actions' => 'Acties',
+ 'Create New Item' => 'Nieuw menu',
+ 'New item' => 'Nieuw menu',
+ 'Item name' => 'Menu naam',
+ 'Item order' => 'Menu volgorde',
+ 'Item target' => 'Menu doel',
+ 'Item link' => 'Menu link',
+ 'Item category' => 'Menu categorie',
+ 'Save' => 'Opslaan',
+ 'Edit item' => 'Bewerk menu',
+ 'Delete item :name' => 'Verwijder menu: :name',
+ 'Select page' => 'Selecteer pagina',
+ 'Category' => 'Categorie',
+ 'Select category' => 'Selecteer categorie',
+ 'Required field' => 'Vereist veld',
+ )
+ );
diff --git a/plugins/box/menu/languages/pl.lang.php b/plugins/box/menu/languages/pl.lang.php
new file mode 100644
index 0000000..b8ec9d5
--- /dev/null
+++ b/plugins/box/menu/languages/pl.lang.php
@@ -0,0 +1,27 @@
+ array(
+ 'Menu' => 'Menu',
+ 'Menu manager' => 'Zarządzaj menu',
+ 'Edit' => 'Edytuj',
+ 'Name' => 'Nazwa',
+ 'Delete' => 'Usuń',
+ 'Order' => 'Kolejność',
+ 'Actions' => 'Akcje',
+ 'Create New Item' => 'Utwórz nową pozycję',
+ 'New item' => 'Nowa pozycja',
+ 'Item name' => 'Nazwa pozycji',
+ 'Item order' => 'Kolejność pozycji',
+ 'Item target' => 'Cel pozycji',
+ 'Item link' => 'Łącze pozycji',
+ 'Item category' => 'Kategoria pozycji',
+ 'Save' => 'Zapisz',
+ 'Edit item' => 'Edytuj pozycję',
+ 'Delete item :name' => 'Czy napewno usunąć pozycję :name',
+ 'Select page' => 'Wybierz stronę',
+ 'Category' => 'Kategoria',
+ 'Select category' => 'Wybierz kategorię',
+ 'Required field' => 'Pole wymagane',
+ )
+ );
diff --git a/plugins/box/pages/languages/de.lang.php b/plugins/box/pages/languages/de.lang.php
index 41a1e7e..b20841b 100644
--- a/plugins/box/pages/languages/de.lang.php
+++ b/plugins/box/pages/languages/de.lang.php
@@ -48,7 +48,7 @@
'Settings' => 'Einstellungen',
'Required field' => 'Pflichtfeld',
'Access' => 'Zugriff',
- 'Public' => 'Öffentlichkeit',
- 'Registered' => 'Eingetragen',
+ 'Public' => 'Öffentlich',
+ 'Registered' => 'Angemeldet',
)
);
diff --git a/plugins/box/pages/languages/nl.lang.php b/plugins/box/pages/languages/nl.lang.php
new file mode 100644
index 0000000..5560853
--- /dev/null
+++ b/plugins/box/pages/languages/nl.lang.php
@@ -0,0 +1,54 @@
+ array(
+ 'Pages' => 'Pagina\'s',
+ 'Pages manager' => 'Pagina beheer',
+ 'Content' => 'Inhoud',
+ 'Create New Page' => 'Nieuwe pagina',
+ 'New Page' => 'Nieuwe pagina',
+ 'Edit Page' => 'Bewerk pagina',
+ 'Date' => 'Datum',
+ 'Clone' => 'Kopieren',
+ 'Edit' => 'Bewerken',
+ 'Delete' => 'Verwijderen',
+ 'Delete page: :page' => 'Verwijder pagina: :page',
+ 'Title' => 'Titel',
+ 'Name' => 'Naam',
+ 'Author' => 'Auteur',
+ 'Name (slug)' => 'Naam (alias)',
+ 'Description' => 'Beschrijving',
+ 'Keywords' => 'Trefwoorden',
+ 'Parent' => 'Root',
+ 'Template' => 'Template',
+ 'Year' => 'Jaar',
+ 'Day' => 'Dag',
+ 'Month' => 'Maand',
+ 'Hour' => 'Uur',
+ 'Minute' => 'Minuut',
+ 'Second' => 'Seconde',
+ 'This field should not be empty' => 'Dit veld mag niet leeg zijn',
+ 'This page already exists' => 'Deze pagina bestaat al',
+ 'Extra' => 'Extra',
+ 'Save' => 'Opslaan',
+ 'Save and Exit' => 'Opslaan en Terug',
+ 'Your changes to the page :page have been saved.' => 'De wijzigingen aan :page zijn opgeslagen.',
+ 'The page :page cloned.' => 'De pagina :page is gekopieerd.',
+ 'Status' => 'Status',
+ 'Actions' => 'Acties',
+ 'Add' => 'Toevoegen',
+ 'Published' => 'Gepubliceerd',
+ 'Draft' => 'Concept',
+ 'Published on' => 'Gepubliceerd op',
+ 'Edit 404 Page' => 'Bewerk 404 pagina',
+ 'Page :page deleted' => 'Pagina :page is verwijderd',
+ 'Search Engines Robots' => 'Zoekmachine Robots ',
+ 'Page' => 'Pagina',
+ 'Metadata' => 'Metadata',
+ 'Settings' => 'Instellingen',
+ 'Required field' => 'Vereist veld',
+ 'Access' => 'Toegang',
+ 'Public' => 'Publiek',
+ 'Registered' => 'Geregistreerd',
+ )
+ );
diff --git a/plugins/box/pages/languages/pl.lang.php b/plugins/box/pages/languages/pl.lang.php
new file mode 100644
index 0000000..84eac4e
--- /dev/null
+++ b/plugins/box/pages/languages/pl.lang.php
@@ -0,0 +1,54 @@
+ array(
+ 'Pages' => 'Strony',
+ 'Pages manager' => 'Zarządzaj stronami',
+ 'Content' => 'Zawartość',
+ 'Create New Page' => 'Utwórz nową stronę',
+ 'New Page' => 'Nowa strona',
+ 'Edit Page' => 'Edytuj stronę',
+ 'Date' => 'Data',
+ 'Clone' => 'Skopiuj',
+ 'Edit' => 'Edytuj',
+ 'Delete' => 'Usuń',
+ 'Delete page: :page' => 'Czy napewno usunąć stronę: :page',
+ 'Title' => 'Tytuł',
+ 'Name' => 'Nazwa',
+ 'Author' => 'Autor',
+ 'Name (slug)' => 'Krótka nazwa (slug)',
+ 'Description' => 'Opis',
+ 'Keywords' => 'Słowa kluczowe',
+ 'Parent' => 'Rodzic',
+ 'Template' => 'Szablon',
+ 'Year' => 'rok',
+ 'Day' => 'dzień',
+ 'Month' => 'miesiąc',
+ 'Hour' => 'godzina',
+ 'Minute' => 'minuta',
+ 'Second' => 'sekunda',
+ 'This field should not be empty' => 'To pole nie może być puste',
+ 'This page already exists' => 'Ta strona już istnieje',
+ 'Extra' => 'Extra',
+ 'Save' => 'Zapisz',
+ 'Save and Exit' => 'Zapisz i wyjdź',
+ 'Your changes to the page :page have been saved.' => 'Twoje zmiany na stronie :page zostały zapisane.',
+ 'The page :page cloned.' => 'Strona :page została skopiowana.',
+ 'Status' => 'Status',
+ 'Actions' => 'Akcje',
+ 'Add' => 'Dodaj podstronę',
+ 'Published' => 'Opublikowana',
+ 'Draft' => 'Projekt',
+ 'Published on' => 'Opublikowane',
+ 'Edit 404 Page' => 'Edytuj stronę błędu 404',
+ 'Page :page deleted' => 'Strona :page została usunięta',
+ 'Search Engines Robots' => 'Roboty wyszukiwarek',
+ 'Page' => 'Strona',
+ 'Metadata' => 'Metadane',
+ 'Settings' => 'Ustawienia',
+ 'Required field' => 'Pole wymagane',
+ 'Access' => 'Dostęp',
+ 'Public' => 'Dla wszystkich',
+ 'Registered' => 'Dla zarejestrowanych',
+ )
+ );
diff --git a/plugins/box/plugins/languages/de.lang.php b/plugins/box/plugins/languages/de.lang.php
index dd6bbc0..a051658 100644
--- a/plugins/box/plugins/languages/de.lang.php
+++ b/plugins/box/plugins/languages/de.lang.php
@@ -10,10 +10,10 @@
'Install New' => 'Installiere Neue',
'Delete' => 'Löschen',
'Delete plugin :plugin' => 'Lösche Plugin :plugin',
- 'This plugins does not exist' => 'Diese Plugins existiert nicht',
+ 'This plugins does not exist' => 'Diese Plugins existieren nicht',
'Version' => 'Version',
'Author' => 'Author',
- 'Get More Plugins' => 'Hole Weitere Plugins',
+ 'Get More Plugins' => 'Hole weitere Plugins',
'Install' => 'Installieren',
'Uninstall' => 'Deinstallieren',
)
diff --git a/plugins/box/plugins/languages/nl.lang.php b/plugins/box/plugins/languages/nl.lang.php
new file mode 100644
index 0000000..bf77064
--- /dev/null
+++ b/plugins/box/plugins/languages/nl.lang.php
@@ -0,0 +1,20 @@
+ array(
+ 'Plugins' => 'Plugins',
+ 'Name' => 'Naam',
+ 'Actions' => 'Acties',
+ 'Description' => 'Beschrijving',
+ 'Installed' => 'Geinstalleerd',
+ 'Install New' => 'Installeer nieuwe plugin',
+ 'Delete' => 'Verwijderen',
+ 'Delete plugin :plugin' => 'Verwijder plugin: :plugin',
+ 'This plugins does not exist' => 'Deze plugin bestaat niet',
+ 'Version' => 'Versie',
+ 'Author' => 'Auteur',
+ 'Get More Plugins' => 'Vind meer plugins',
+ 'Install' => 'Installeren',
+ 'Uninstall' => 'Deinstalleren',
+ )
+ );
diff --git a/plugins/box/plugins/languages/pl.lang.php b/plugins/box/plugins/languages/pl.lang.php
new file mode 100644
index 0000000..4211147
--- /dev/null
+++ b/plugins/box/plugins/languages/pl.lang.php
@@ -0,0 +1,20 @@
+ array(
+ 'Plugins' => 'Wtyczki',
+ 'Name' => 'Nazwa',
+ 'Actions' => 'Akcje',
+ 'Description' => 'Opis',
+ 'Installed' => 'Zainstalowane',
+ 'Install New' => 'Zainstaluj nową',
+ 'Delete' => 'Usuń',
+ 'Delete plugin :plugin' => 'Czy napewno usunąć wtyczkę :plugin',
+ 'This plugin does not exist' => 'Ta wtyczka nie istnieje',
+ 'Version' => 'Wersja',
+ 'Author' => 'Autor',
+ 'Get More Plugins' => 'Pobierz więcej wtyczek',
+ 'Install' => 'Instaluj',
+ 'Uninstall' => 'Odinstaluj',
+ )
+ );
diff --git a/plugins/box/sitemap/languages/nl.lang.php b/plugins/box/sitemap/languages/nl.lang.php
new file mode 100644
index 0000000..6c6d8aa
--- /dev/null
+++ b/plugins/box/sitemap/languages/nl.lang.php
@@ -0,0 +1,7 @@
+ array(
+ 'Sitemap' => 'Sitemap',
+ )
+ );
diff --git a/plugins/box/sitemap/languages/pl.lang.php b/plugins/box/sitemap/languages/pl.lang.php
new file mode 100644
index 0000000..71ad352
--- /dev/null
+++ b/plugins/box/sitemap/languages/pl.lang.php
@@ -0,0 +1,7 @@
+ array(
+ 'Sitemap' => 'Mapa witryny',
+ )
+ );
diff --git a/plugins/box/snippets/languages/de.lang.php b/plugins/box/snippets/languages/de.lang.php
index 11e76fb..01615dd 100644
--- a/plugins/box/snippets/languages/de.lang.php
+++ b/plugins/box/snippets/languages/de.lang.php
@@ -11,7 +11,7 @@
'Create New Snippet' => 'Erstelle neues Snippet',
'New Snippet' => 'Neues Snippet',
'Edit Snippet' => 'Bearbeite Snippet',
- 'Save' => 'Save',
+ 'Save' => 'Speichern',
'Save and Exit' => 'Speichern und Schließen',
'This field should not be empty' => 'Dieses Feld darf nicht leer sein',
'This snippet already exists' => 'Dieses Snippet existiert bereits',
@@ -19,10 +19,10 @@
'Delete snippet: :snippet' => 'Lösche Snippet: :snippet',
'Snippet content' => 'Snippet Inhalt',
'Snippet :name deleted' => 'Snippet :name wurde gelöscht',
- 'Your changes to the snippet :name have been saved.' => 'Deine Änerungen für das Snippet :name wurden gespeichert.',
+ 'Your changes to the snippet :name have been saved.' => 'Deine Änderungen für das Snippet :name wurden gespeichert.',
'Delete snippet: :snippet' => 'Lösche Snippet: :snippet',
'Required field' => 'Pflichtfeld',
- 'View Embed Code' => 'View Embed Code',
+ 'View Embed Code' => 'Zeige Embed Code',
'Embed Code' => 'Embed Code',
'Shortcode' => 'Shortcode',
'PHP Code' => 'PHP Code',
diff --git a/plugins/box/snippets/languages/nl.lang.php b/plugins/box/snippets/languages/nl.lang.php
new file mode 100644
index 0000000..419944a
--- /dev/null
+++ b/plugins/box/snippets/languages/nl.lang.php
@@ -0,0 +1,30 @@
+ array(
+ 'Snippets' => 'Snippets',
+ 'Snippets manager' => 'Snippet Beheer',
+ 'Actions' => 'Acties',
+ 'Delete' => 'Verwijderen',
+ 'Edit' => 'Bewerken',
+ 'Name' => 'Naam',
+ 'Create New Snippet' => 'Nieuwe Snippet',
+ 'New Snippet' => 'Nieuwe snippet',
+ 'Edit Snippet' => 'Bewerk snippet',
+ 'Save' => 'Opslaan',
+ 'Save and Exit' => 'Opslaan en Terug',
+ 'This field should not be empty' => 'Dit veld mag niet leeg zijn',
+ 'This snippet already exists' => 'Deze snippet bestaat al',
+ 'This snippet does not exist' => 'Deze snippet bestaat niet',
+ 'Delete snippet: :snippet' => 'Verwijder snippet: :snippet',
+ 'Snippet content' => 'Snippet inhoud',
+ 'Snippet :name deleted' => 'Snippet :name is verwijderd',
+ 'Your changes to the snippet :name have been saved.' => 'De wijzigingen aan snippet :name zijn opgeslagen.',
+ 'Delete snippet: :snippet' => 'Verwijder snippet: :snippet',
+ 'Required field' => 'Vereist veld',
+ 'View Embed Code' => 'Bekijk Insluitcode',
+ 'Embed Code' => 'Insluitcode',
+ 'Shortcode' => 'Korte code',
+ 'PHP Code' => 'PHP Code',
+ )
+ );
diff --git a/plugins/box/snippets/languages/pl.lang.php b/plugins/box/snippets/languages/pl.lang.php
new file mode 100644
index 0000000..00cb26c
--- /dev/null
+++ b/plugins/box/snippets/languages/pl.lang.php
@@ -0,0 +1,29 @@
+ array(
+ 'Snippets' => 'Skrawki (snippets)',
+ 'Snippets manager' => 'Zarządzaj skrawkami',
+ 'Actions' => 'Akcje',
+ 'Delete' => 'Usuń',
+ 'Edit' => 'Edytuj',
+ 'Name' => 'Nazwa',
+ 'Create New Snippet' => 'Utwórz nowy skrawek',
+ 'New Snippet' => 'Nowy skrawek',
+ 'Edit Snippet' => 'Edytuj skrawek',
+ 'Save' => 'Zapisz',
+ 'Save and Exit' => 'Zapisz i wyjdź',
+ 'This snippet already exists' => 'Ten skrawek już istnieje',
+ 'This snippet does not exist' => 'Ten skrawek nie istnieje',
+ 'Delete snippet: :snippet' => 'Czy napewno usunąć skrawek: :snippet',
+ 'Snippet content' => 'Zawartość skrawka',
+ 'Snippet :name deleted' => 'Skrawek :name został usunięty',
+ 'Your changes to the snippet :name have been saved.' => 'Twoje zmiany dla skrawka :name zostały zapisane.',
+ 'Delete snippet: :snippet' => 'Czy napewno usunąć skrawek: :snippet',
+ 'Required field' => 'Pole wymagane',
+ 'View Embed Code' => 'Pokaż osadzony kod',
+ 'Embed Code' => 'Osadzony kod',
+ 'Shortcode' => 'Krótki kod (shortcode)',
+ 'PHP Code' => 'Kod PHP',
+ )
+ );
diff --git a/plugins/box/system/languages/de.lang.php b/plugins/box/system/languages/de.lang.php
index 0456776..dabb592 100644
--- a/plugins/box/system/languages/de.lang.php
+++ b/plugins/box/system/languages/de.lang.php
@@ -3,7 +3,7 @@
return array(
'system' => array(
'System' => 'System',
- 'Published a new version of the :monstra' => 'Veröffentlicht eine neue Version von dem :monstra',
+ 'Published a new version of the :monstra' => 'Veröffentlicht eine neue Version von :monstra',
'Sitemap created' => 'Sitemap wurde erstellt',
'Create Sitemap' => 'Erstelle Sitemap',
'on' => 'An',
@@ -39,7 +39,7 @@
'Powered by' => 'Powered by',
'Administration' => 'Administration',
'Settings' => 'Einstellungen',
- 'Temporary files deleted' => 'Temporäre Dateien gelöscht',
+ 'Temporary files deleted' => 'Temporäre Dateien wurden gelöscht',
'Extends' => 'Erweitert',
'View Site' => 'Seite ansehen',
'Welcome, :username' => 'Willkommen, :username',
@@ -75,7 +75,7 @@
'Sitemap file not writable' => 'Sitemap-Datei ist nicht beschreibbar',
'Main .htaccess file writable' => 'Haupt .htaccess-Datei ist beschreibbar',
'Main .htaccess file not writable' => 'Haupt .htaccess-Datei ist nicht beschreibbar',
- 'Official Support Forum' => 'Official Support Forum',
- 'Documentation' => 'Documentation',
+ 'Official Support Forum' => 'Offizielles Support Forum',
+ 'Documentation' => 'Dokumentation',
)
);
diff --git a/plugins/box/system/languages/en.lang.php b/plugins/box/system/languages/en.lang.php
index 70b5f53..a110839 100644
--- a/plugins/box/system/languages/en.lang.php
+++ b/plugins/box/system/languages/en.lang.php
@@ -76,5 +76,6 @@
'Main .htaccess file not writable' => 'Main .htaccess file not writable',
'Official Support Forum' => 'Official Support Forum',
'Documentation' => 'Documentation',
+ 'Your changes have been saved.' => 'Your changes have been saved.',
)
);
diff --git a/plugins/box/system/languages/fa.lang.php b/plugins/box/system/languages/fa.lang.php
index 5b00cfc..490a30a 100644
--- a/plugins/box/system/languages/fa.lang.php
+++ b/plugins/box/system/languages/fa.lang.php
@@ -7,11 +7,7 @@
'Sitemap created' => 'نقشه سایت ایجاد شد',
'Create Sitemap' => 'ایجاد نقشه سایت',
'on' => 'روشن',
-<<<<<<< HEAD
'off'=> 'خاموش',
-=======
- 'off'=> 'خاموش',
->>>>>>> refs/remotes/origin/master
'Site Url' => 'آدرس سایت',
'Maintenance Mode' => 'حالت تعمیر و نگهداری',
'Maintenance Mode On' => 'حالت تعمیر و نگهداری روشن',
@@ -25,19 +21,14 @@
'Default Page' => 'صفحه پیشفرض',
'Time zone' => 'منطقه زمانی',
'Language' => 'زبان',
- 'Email' => 'Email',
'Save' => 'ذخیره',
-<<<<<<< HEAD
'Site' => 'سایت',
-=======
- 'Site' => 'سایت',
->>>>>>> refs/remotes/origin/master
'System version' => 'نسخه سیستم',
'System version ID' => 'شناسه نسخه سیستم',
'GZIP' => 'GZIP',
'Debugging' => 'اشکال زدائی',
'Plugin API' => 'API پلاگین',
- 'Plugins active' => 'پلاگینهای فعال',
+ 'Plugins active' => 'پلاگینهای فعال',
'Actions registered' => 'عملیات ثبت شده',
'Filters registered' => 'فیلترهای ثبت شده',
'Delete Temporary Files' => 'حذف فایلهای موقت',
@@ -85,4 +76,4 @@
'Official Support Forum' => 'انجمن پشتیبانی',
'Documentation' => 'مستندات',
)
- );
+ );
\ No newline at end of file
diff --git a/plugins/box/system/languages/nl.lang.php b/plugins/box/system/languages/nl.lang.php
new file mode 100644
index 0000000..f3e6202
--- /dev/null
+++ b/plugins/box/system/languages/nl.lang.php
@@ -0,0 +1,81 @@
+ array(
+ 'System' => 'Systeem',
+ 'Published a new version of the :monstra' => 'Een nieuwe versie van :monstra is gepubliceerd',
+ 'Sitemap created' => 'Sitemap is aangemaakt',
+ 'Create Sitemap' => 'Maak sitemap aan',
+ 'on' => 'Aan',
+ 'off'=> 'Uit',
+ 'Site Url' => 'Website URL',
+ 'Maintenance Mode' => 'Onderhoudsmodus',
+ 'Maintenance Mode On' => 'Onderhoudsmodus Aan',
+ 'Maintenance Mode Off' => 'Onderhoudsmodus Uit',
+ 'Site Settings' => 'Website Instellingen',
+ 'System Settings' => 'Systeem Instellingen',
+ 'Site Name' => 'Website Naam',
+ 'Site Description' => 'Website Beschrijving',
+ 'Site Keywords' => 'Website Trefwoorden',
+ 'Site Slogan' => 'Website Slogan',
+ 'Default Page' => 'Standaard Pagina',
+ 'Time zone' => 'Tijdzone',
+ 'Language' => 'Taal',
+ 'Email' => 'Email',
+ 'Save' => 'Opslaan',
+ 'Site' => 'Website',
+ 'System version' => 'Systeemversie',
+ 'System version ID' => 'Systeemversie ID',
+ 'GZIP' => 'GZIP',
+ 'Debugging' => 'Debuggen',
+ 'Plugin API' => 'Plugin API',
+ 'Plugins active' => 'Plugins aktief',
+ 'Actions registered' => 'Acties opgeslagen',
+ 'Filters registered' => 'Filters opgeslagen',
+ 'Log Out' => 'Log uit',
+ 'Site' => 'Website',
+ 'Delete Temporary Files' => 'Verwijder tijdelijke bestanden',
+ 'Download the latest version' => 'Download de laatste versie',
+ 'Powered by' => 'Mogelijk gemaakt door',
+ 'Administration' => 'Beheer',
+ 'Settings' => 'Instellingen',
+ 'Temporary files deleted' => 'Tijdelijke bestanden verwijderd',
+ 'Extends' => 'Uitbreidingen',
+ 'View Site' => 'Bekijk website',
+ 'Welcome, :username' => 'Welkom, :username',
+ 'Reset Password' => 'Wachtwoord opnieuw instellen',
+ '< Back to Website' => '< Terug naar website',
+ 'Forgot your password? >' => 'Wachtwoord vergeten? >',
+ 'Administration >' => 'Beheer >',
+ 'Send New Password' => 'Verstuur nieuw wachtwoord',
+ 'This user does not exist' => 'Deze gebruiker bestaat niet',
+ 'Version' => 'Versie',
+
+ 'Install script writable' => 'Installatiescript schrijfbaar',
+ 'Install script not writable' => 'Installatiescript niet schrijfbaar',
+ 'Directory: :dir writable' => 'Map: :dir schrijfbaar',
+ 'Directory: :dir not writable' => 'Map: :dir niet schrijfbaar',
+ 'PHP Version' => 'PHP Versie',
+ 'Module DOM is installed' => 'Modul DOM is geinstalleerd',
+ 'Module DOM is required' => 'Modul DOM is vereist',
+ 'Module Mod Rewrite is installed' => 'Modul Mod Rewrite is geinstalleerd',
+ 'Module SimpleXML is installed' => 'Modul SimpleXML is geinstalleerd',
+ 'PHP 5.2 or greater is required' => 'PHP 5.2 of nieuwer is vereist',
+ 'Apache Mod Rewrite is required' => 'Apache Mod Rewrite is vereist',
+ 'SimpleXML module is required' => 'SimpleXML-Modul is vereist',
+ 'Field "Site name" is empty' => 'Veld "Website naam" is leeg',
+ 'Field "Email" is empty' => 'Veld "Email" is leeg',
+ 'Field "Username" is empty' => 'Veld "Gebruikersnaam" is leeg',
+ 'Field "Password" is empty' => 'Veld "Wachtwoord" is leeg',
+ 'Field "Site url" is empty' => 'Veld "Website-URL" is leeg',
+ 'Email not valid' => 'E-Mail is niet geldig',
+ 'Install' => 'Installeren',
+ '...Monstra says...' => '...Monstra zegt...',
+ 'Sitemap file writable' => 'Sitemap-bestand schrijfbaar',
+ 'Sitemap file not writable' => 'Sitemap-bestand niet schrijfbaar',
+ 'Main .htaccess file writable' => 'Hoofd .htaccess-bestand schrijfbaar',
+ 'Main .htaccess file not writable' => 'Hoofd .htaccess-bestand niet schrijfbaar',
+ 'Official Support Forum' => 'Officeel ondersteuningsforum',
+ 'Documentation' => 'Documentatie',
+ )
+ );
diff --git a/plugins/box/system/languages/pl.lang.php b/plugins/box/system/languages/pl.lang.php
new file mode 100644
index 0000000..1ccd735
--- /dev/null
+++ b/plugins/box/system/languages/pl.lang.php
@@ -0,0 +1,80 @@
+ array(
+ 'System' => 'System',
+ 'Published a new version of the :monstra' => 'Opublikowano nową wersję systemu :monstra',
+ 'Sitemap created' => 'Utworzono mapę witryny',
+ 'Create Sitemap' => 'Utwórz mapę witryny',
+ 'on' => 'włączone',
+ 'off'=> 'wyłączone',
+ 'Site Url' => 'Adres URL witryny',
+ 'Maintenance Mode' => 'Tryb konserwacji',
+ 'Maintenance Mode On' => 'Włącz tryb konserwacji',
+ 'Maintenance Mode Off' => 'Wyłącz tryb konserwacji',
+ 'Site Settings' => 'Ustawienia witryny',
+ 'System Settings' => 'Ustawienia systemu',
+ 'Site Name' => 'Nazwa witryny',
+ 'Site Description' => 'Opis witryny',
+ 'Site Keywords' => 'Słowa kluczowe dla witryny',
+ 'Site Slogan' => 'Dewiza witryny',
+ 'Default Page' => 'Strona domyślna',
+ 'Time zone' => 'Strefa czasowa',
+ 'Language' => 'Język',
+ 'Email' => 'Email',
+ 'Save' => 'Zapisz',
+ 'Site' => 'Witryna',
+ 'System version' => 'Wersja systemu',
+ 'System version ID' => 'Id wersji systemu',
+ 'GZIP' => 'GZIP',
+ 'Debugging' => 'Odpluskwianie',
+ 'Plugin API' => 'API wtyczek',
+ 'Plugins active' => 'Aktywne wtyczki',
+ 'Actions registered' => 'Zarejestrowane akcje',
+ 'Filters registered' => 'Zarejestrowane filtry',
+ 'Delete Temporary Files' => 'Usuń pliki tymczasowe',
+ 'Download the latest version' => 'Pobierz najnowszą wersję',
+ 'Powered by' => 'Napędzane przez',
+ 'Administration' => 'Administracja',
+ 'Settings' => 'Ustawienia',
+ 'Temporary files deleted' => 'Usunięto pliki tymczasowe',
+ 'Extends' => 'Rozszerzenia',
+ 'View Site' => 'Pokaż witrynę',
+ 'Welcome, :username' => 'Witaj, :username',
+ 'Reset Password' => 'Resetuj hasło',
+ '< Back to Website' => '< Wróć do witryny internetowej',
+ 'Forgot your password? >' => 'Nie pamiętasz swojego hasła? >',
+ 'Administration >' => 'Administracja >',
+ 'Send New Password' => 'Wyślij nowe hasło',
+ 'This user does not exist' => 'Ten użytkownik nie istnieje',
+ 'Version' => 'Wersja',
+ 'Plugin does not exist' => 'Wtyczka nie istnieje',
+
+ 'Install script writable' => 'Skrypt instalacyjny ma możliwość zapisu',
+ 'Install script not writable' => 'Skrypt instalacyjny nie ma możliwości zapisu',
+ 'Directory: :dir writable' => 'Katalog: :dir z możliwością zapisu',
+ 'Directory: :dir not writable' => 'Katalog: :dir bez możliwości zapisu',
+ 'PHP Version' => 'Wersja PHP',
+ 'Module DOM is installed' => 'Moduł DOM jest zainstalowany',
+ 'Module DOM is required' => 'Moduł DOM jest wymagany',
+ 'Module Mod Rewrite is installed' => 'Moduł Mod Rewrite jest zainstalowany',
+ 'Module SimpleXML is installed' => 'Moduł SimpleXML jest zainstalowany',
+ 'PHP 5.2 or greater is required' => 'Wymagane jest PHP 5.2 lub nowsze',
+ 'Apache Mod Rewrite is required' => 'Apache Mod Rewrite jest wymagany',
+ 'SimpleXML module is required' => 'Moduł SimpleXML jest wymagany',
+ 'Field "Site name" is empty' => 'Pole "Nazwa witryny" jest puste',
+ 'Field "Email" is empty' => 'Pole "Email" jest puste',
+ 'Field "Username" is empty' => 'Pole "Nazwa użytkownika" jest puste',
+ 'Field "Password" is empty' => 'Pole "Hasło" jest puste',
+ 'Field "Site url" is empty' => 'Pole "URL witryny" jest puste',
+ 'Email not valid' => 'Email jest nieprawidłowy',
+ 'Install' => 'Instaluj',
+ '...Monstra says...' => '...Monstra mówi...',
+ 'Sitemap file writable' => 'Plik mapy witryny ma możliwość zapisu',
+ 'Sitemap file not writable' => 'Plik mapy witryny nie ma możliwości zapisu',
+ 'Main .htaccess file writable' => 'Główny plik .htaccess ma możliwość zapisu',
+ 'Main .htaccess file not writable' => 'Główny plik .htaccess nie ma możliwości zapisu',
+ 'Official Support Forum' => 'Wsparcie oficjalnego forum',
+ 'Documentation' => 'Dokumentacja',
+ )
+ );
diff --git a/plugins/box/system/languages/ru.lang.php b/plugins/box/system/languages/ru.lang.php
index d12e1f7..700411d 100644
--- a/plugins/box/system/languages/ru.lang.php
+++ b/plugins/box/system/languages/ru.lang.php
@@ -75,5 +75,6 @@
'Main .htaccess file not writable' => 'Главный .htaccess файл не доступен для записи',
'Official Support Forum' => 'Официальный Форум Поддержки',
'Documentation' => 'Документация',
+ 'Your changes have been saved.' => 'Ваши изменения сохранены.',
)
);
diff --git a/plugins/box/themes/languages/de.lang.php b/plugins/box/themes/languages/de.lang.php
index 322b387..240c701 100644
--- a/plugins/box/themes/languages/de.lang.php
+++ b/plugins/box/themes/languages/de.lang.php
@@ -31,7 +31,7 @@
'Edit Template' => 'Bearbeite Template',
'Edit Chunk' => 'Bearbeite Chunk',
'Edit Styles' => 'Bearbeite Styles',
- 'Current Site Theme' => 'Aktuelle Seiten Template',
+ 'Current Site Theme' => 'Aktuelles Seiten Template',
'Current admin theme' => 'Aktuelles Admin Template',
'This template already exists' => 'Dieses Template existiert bereits',
'This chunk already exists' => 'Dieser Chunk exisitert bereits',
diff --git a/plugins/box/themes/languages/nl.lang.php b/plugins/box/themes/languages/nl.lang.php
new file mode 100644
index 0000000..1fc599f
--- /dev/null
+++ b/plugins/box/themes/languages/nl.lang.php
@@ -0,0 +1,50 @@
+ array(
+ 'Themes' => 'Thema\'s',
+ 'Themes manager' => 'Thema beheer',
+ 'Select Theme' => 'Selecteer thema',
+ 'Save' => 'Opslaan',
+ 'Save and Exit' => 'Opslaan en Terug',
+ 'Name' => 'Naam',
+ 'Create New Template' => 'Nieuwe Template',
+ 'New Template' => 'Nieuwe template',
+ 'Admin Theme' => 'Admin thema',
+ 'Delete template: :name' => 'Verwijder thema: :name',
+ 'Delete chunk: :name' => 'Verwijder onderdeel: :name',
+ 'Delete styles: :name' => 'Verwijder stijl: :name',
+ 'Templates' => 'Templates',
+ 'Clone' => 'Kopieren',
+ 'Edit' => 'Bewerken',
+ 'Delete' => 'Verwijderen',
+ 'Actions' => 'Acties',
+ 'Create New Chunk' => 'Nieuw Onderdeel',
+ 'New Chunk' => 'Nieuwe onderdeel',
+ 'Chunks' => 'Onderdelen',
+ 'Create New Styles' => 'Nieuwe Stijl',
+ 'New Styles' => 'Nieuwe stijl',
+ 'Styles' => 'Stijlen',
+ 'Template content' => 'Template inhoud',
+ 'Styles content' => 'Inhoud stijlen',
+ 'Chunk content' => 'Inhoud onderdeel',
+ 'Edit Template' => 'Bewerk Template',
+ 'Edit Chunk' => 'Bewerk Onderdeel',
+ 'Edit Styles' => 'Bewerk stijlen',
+ 'Current Site Theme' => 'Huidige Website Thema',
+ 'Current admin theme' => 'Huidige Admin Template',
+ 'This template already exists' => 'Deze template bestaat al',
+ 'This chunk already exists' => 'Dit onderdeel bestaat al',
+ 'This styles already exists' => 'Deze stijl bestaat al',
+ 'Components templates' => 'Componenten templates',
+ 'Your changes to the chunk :name have been saved.' => 'Uw wijzigingen aan onderdeel :name zijn opgeslagen.',
+ 'Your changes to the styles :name have been saved.' => 'Uw wijzigingen aan stijl :name zijn opgeslagen.',
+ 'Your changes to the template :name have been saved.' => 'Uw wijzigingen aan template :name zijn opgeslagen.',
+ 'This field should not be empty' => 'Dit veld mag niet leeg zijn.',
+ 'Scripts' => 'Scripts',
+ 'Create New Script' => 'Nieuw Script',
+ 'Script content' => 'Inhoud script',
+ 'New Script' => 'Nieuw Script',
+ 'Edit Script' => 'Bewerk Script',
+ )
+ );
diff --git a/plugins/box/themes/languages/pl.lang.php b/plugins/box/themes/languages/pl.lang.php
new file mode 100644
index 0000000..4f72326
--- /dev/null
+++ b/plugins/box/themes/languages/pl.lang.php
@@ -0,0 +1,50 @@
+ array(
+ 'Themes' => 'Motywy',
+ 'Themes manager' => 'Zarządzaj motywami',
+ 'Select Theme' => 'Wybierz motyw',
+ 'Save' => 'Zapisz',
+ 'Save and Exit' => 'Zapisz i wyjdź',
+ 'Name' => 'Nazwa',
+ 'Create New Template' => 'Utwórz nowy szablon',
+ 'New Template' => 'Nowy szablon',
+ 'Delete template: :name' => 'Czy napewno usunąć szablon: :name',
+ 'Delete chunk: :name' => 'Czy napewno usunąć cegiełkę: :name',
+ 'Delete styles: :name' => 'Czy napewno usunąć style: :name',
+ 'Templates' => 'Szablony',
+ 'Clone' => 'Skopiuj',
+ 'Edit' => 'Edytuj',
+ 'Delete' => 'Usuń',
+ 'Actions' => 'Akcje',
+ 'Admin Theme' => 'Motyw administracji',
+ 'Create New Chunk' => 'Utwórz nową cegiełkę',
+ 'New Chunk' => 'Nowa cegiełka',
+ 'Chunks' => 'Cegiełki',
+ 'Create New Styles' => 'Utwórz nowe style',
+ 'New Styles' => 'Nowe style',
+ 'Styles' => 'Style',
+ 'Template content' => 'Zawartość szablonu',
+ 'Styles content' => 'Zawartość stylów',
+ 'Chunk content' => 'Zawartość cegiełki',
+ 'Edit Template' => 'Edytuj szablon',
+ 'Edit Chunk' => 'Edytuj cegiełkę',
+ 'Edit Styles' => 'Edytuj style',
+ 'Current Site Theme' => 'Bieżący motyw strony',
+ 'Current admin theme' => 'Bieżący motyw administracji',
+ 'This template already exists' => 'Ten szablon już istnieje',
+ 'This chunk already exists' => 'Ta cegiełka już istnieje',
+ 'This styles already exist' => 'Te style już istnieją',
+ 'Components templates' => 'Części składowe szablonów',
+ 'Your changes to the chunk :name have been saved.' => 'Twoje zmiany dla cegiełki :name zostały zapisane.',
+ 'Your changes to the styles :name have been saved.' => 'Twoje zmiany dla stylów :name zostały zapisane.',
+ 'Your changes to the template :name have been saved.' => 'Twoje zmiany dla szablonu :name zostały zapisane.',
+ 'Required field' => 'Pole wymagane',
+ 'Scripts' => 'Skrypty',
+ 'Create New Script' => 'Utwórz nowy skrypt',
+ 'Script content' => 'Zawartość skryptu',
+ 'New Script' => 'Nowy skrypt',
+ 'Edit Script' => 'Edytuj skrypt',
+ )
+ );
diff --git a/plugins/box/users/languages/nl.lang.php b/plugins/box/users/languages/nl.lang.php
new file mode 100644
index 0000000..5b090ac
--- /dev/null
+++ b/plugins/box/users/languages/nl.lang.php
@@ -0,0 +1,67 @@
+ array(
+ 'Users' => 'Gebruikers',
+ 'Login' => 'Login',
+ 'Username' => 'Gebruikersnaam',
+ 'Password' => 'Wachtwoord',
+ 'Registered' => 'Geregistreerd',
+ 'Email' => 'Email',
+ 'Role' => 'Type',
+ 'Roles' => 'Types',
+ 'Edit' => 'Bewerken',
+ 'Actions' => 'Acties',
+ 'Delete' => 'Verwijderen',
+ 'Log In' => 'Log in',
+ 'Log Out' => 'Uitloggen',
+ 'Register New User' => 'Nieuwe gebruiker',
+ 'New User Registration' => 'Registratie nieuwe gebruiker',
+ 'Delete user: :user' => 'Verwijder gebruiker: :user',
+ 'User :user have been deleted.' => 'Gebruiker :user is verwijderd.',
+ 'This field should not be empty' => 'Dit veld mag niet leeg zijn',
+ 'This user alredy exist' => 'Deze gebruiker bestaat al',
+ 'Changes saved' => 'Wijzigingen opgeslagen',
+ 'Wrong old password' => 'Foutief oud wachtwoord',
+ 'Admin' => 'Admin',
+ 'User' => 'Gebruiker',
+ 'Editor' => 'Redacteur',
+ 'Register' => 'Registreer',
+ 'Edit profile' => 'Profiel bewerken',
+ 'Save' => 'Opslaan',
+ 'Firstname' => 'Voornaam',
+ 'Lastname' => 'Achternaam',
+ 'Old password' => 'Oude wachtwoord',
+ 'New password' => 'Nieuw wachtwoord',
+ 'Welcome' => 'Welkom',
+ 'Wrong username or password' => 'Foutieve gebruikersnaam of wachtwoord',
+ 'Your changes have been saved.' => 'De wijzigingen zijn opgeslagen.',
+ 'New user have been registered.' => 'Nieuwe gebruiker is geregistreerd.',
+ 'Captcha' => 'Captcha',
+ 'Registration' => 'Registratie',
+ 'Username' => 'Gebruikersnaam',
+ 'User email is invalid' => 'Gebruikers email is ongeldig',
+ 'Reset Password' => 'Wachtwoord Opnieuw Instellen',
+ 'Send New Password' => 'Verzend nieuw wachtwoord',
+ 'This user doesnt alredy exist' => 'Deze gebruiker bestaat nog niet',
+ 'Users - Profile' => 'Gebruikers - Profiel',
+ 'Users - Edit Profile' => 'Gebruikers - Bewerk profiel',
+ 'Users - Log In' => 'Gebruikers - Log In',
+ 'Users - Registration' => 'Gebruikers - Registratie',
+ 'Users - Password Recover' => 'Gebruikers - Wachtwoord opnieuw instellen',
+ 'New Password' => 'Nieuw wachtwoord',
+ 'Forgot your password?' => 'Wachtwoord vergeten?',
+ 'New password has been sent' => 'Nieuw wachtwoord is verzonden',
+ 'Monstra says: This is not your profile...' => 'Monstra zegt: dit is niet uw profiel...',
+ 'User registration is closed.' => 'Gebruikersregistratie is gesloten.',
+ 'Allow user registration' => 'Sta gebruikersregistratie toe',
+ 'Required field' => 'Vereist veld',
+ 'This user doesnt exist' => 'Deze gebruiker bestaat niet',
+ 'Captcha code is wrong' => 'Captcha Code is helaas foutief',
+ 'Your login details for :site_name has been sent' => 'Uw login details voor :site_name worden verzonden',
+ 'Your new password for :site_name' => 'Uw nieuwe wachtwoord voor :site_name',
+ 'Your login details for :site_name' => 'Uw login details voor :site_name',
+ 'About Me' => 'Over mij',
+ 'Profile' => 'Profiel',
+ )
+ );
diff --git a/plugins/box/users/languages/pl.lang.php b/plugins/box/users/languages/pl.lang.php
new file mode 100644
index 0000000..75f9688
--- /dev/null
+++ b/plugins/box/users/languages/pl.lang.php
@@ -0,0 +1,67 @@
+ array(
+ 'Users' => 'Użytkownicy',
+ 'Login' => 'Login',
+ 'Username' => 'Nazwa użytkownika',
+ 'Password' => 'Hasło',
+ 'Registered' => 'Zarejestrowany',
+ 'Email' => 'Email',
+ 'Role' => 'Rola',
+ 'Roles' => 'Role',
+ 'Edit' => 'Edytuj',
+ 'Actions' => 'Akcje',
+ 'Delete' => 'Usuń',
+ 'Log In' => 'Zaloguj',
+ 'Log Out' => 'Wyloguj',
+ 'Register New user' => 'Zarejestruj nowego użytkownika',
+ 'New User Registration' => 'Rejestracja nowego użytkownika',
+ 'Delete user: :user' => 'Czy napewno usunąć użytkownika: :user',
+ 'User :user have been deleted.' => 'Użytkownik :user został usunięty.',
+ 'This user already exists' => 'Ten użytkownik już istnieje',
+ 'This email already exists' => 'Ten email już istnieje',
+ 'Changes saved' => 'Zmiany zostały zapisane',
+ 'Wrong old password' => 'Stare hasło jest niewłaściwe',
+ 'Admin' => 'Wydawca',
+ 'User' => 'Użytkownik',
+ 'Editor' => 'Redaktor',
+ 'Register' => 'Zarejestruj',
+ 'Edit profile' => 'Edytuj profil',
+ 'Save' => 'Zapisz',
+ 'Firstname' => 'Imię',
+ 'Lastname' => 'Nazwisko',
+ 'Old password' => 'Stare hasło',
+ 'New password' => 'Nowe hasło',
+ 'Welcome' => 'Witaj',
+ 'Wrong username or password' => 'Niewłaściwa nazwa użytkownika lub hasło',
+ 'Your changes have been saved.' => 'Twoje zmiany zostały zapisane.',
+ 'New user have been registered.' => 'Nowy użytkownik został zarejestrowany.',
+ 'Captcha' => 'Captcha',
+ 'Registration' => 'Rejestracja',
+ 'Username' => 'Nazwa użytkownika',
+ 'User email is invalid' => 'Email użytkownika jest nieprawidłowy',
+ 'Reset Password' => 'Resetuj hasło',
+ 'Send New Password' => 'Wyślij nowe hasło',
+ 'This user doesnt alredy exist' => 'Ten użytkownik już nie istnieje',
+ 'Users - Profile' => 'Użytkownicy - Profil',
+ 'Users - Edit Profile' => 'Użytkownicy - Edytuj profil',
+ 'Users - Log In' => 'Użytkownicy - Zaloguj',
+ 'Users - Registration' => 'Użytkownicy - Rejestracja',
+ 'Users - Password Recover' => 'Użytkownicy - Odzyskaj hasło',
+ 'New Password' => 'Nowe hasło',
+ 'Forgot your password?' => 'Nie pamiętasz swojego hasła?',
+ 'New password has been sent' => 'Nowe hasło zostało wysłane',
+ 'Monstra says: This is not your profile...' => 'Monstra mówi: To nie jest Twój profil...',
+ 'User registration is closed.' => 'Rejestracja użytkowników jest zamknięta.',
+ 'Allow user registration' => 'Pozwól na rejestrację użytkowników',
+ 'Required field' => 'Pole wymagane',
+ 'This user doesnt exist' => 'Ten użytkownik nie istnieje',
+ 'Captcha code is wrong' => 'Kod captcha jest niewłaściwy',
+ 'Your login details for :site_name has been sent' => 'Twoje dane logowania dla :site_name zostały wysłane',
+ 'Your new password for :site_name' => 'Twoje nowe hasło dla :site_name',
+ 'Your login details for :site_name' => 'Twoje dane logowania dla :site_name',
+ 'About Me' => 'O mnie',
+ 'Profile' => 'Profil',
+ )
+ );
diff --git a/plugins/captcha/languages/nl.lang.php b/plugins/captcha/languages/nl.lang.php
new file mode 100644
index 0000000..b708ffa
--- /dev/null
+++ b/plugins/captcha/languages/nl.lang.php
@@ -0,0 +1,9 @@
+ array(
+ 'Captcha' => 'Captcha',
+ 'Captcha plugin for Monstra' => 'Captcha Plugin voor Monstra',
+ 'Captcha code is wrong' => 'Captcha Code is helaas foutief',
+ )
+ );
diff --git a/plugins/captcha/languages/pl.lang.php b/plugins/captcha/languages/pl.lang.php
new file mode 100644
index 0000000..8467172
--- /dev/null
+++ b/plugins/captcha/languages/pl.lang.php
@@ -0,0 +1,9 @@
+ array(
+ 'Captcha' => 'Captcha',
+ 'Captcha plugin for Monstra' => 'Wtyczka Captcha dla systemu Monstra',
+ 'Captcha code is wrong' => 'Niewłaściwy kod Captcha',
+ )
+ );
diff --git a/plugins/sandbox/languages/nl.lang.php b/plugins/sandbox/languages/nl.lang.php
new file mode 100644
index 0000000..134c38a
--- /dev/null
+++ b/plugins/sandbox/languages/nl.lang.php
@@ -0,0 +1,10 @@
+ array(
+ 'Sandbox' => 'Sandbox',
+ 'Sandbox plugin for Monstra' => 'Sandbox Plugin voor Monstra',
+ 'Sandbox template' => 'Sandbox Template',
+ 'Save' => 'Opslaan',
+ )
+ );
diff --git a/plugins/sandbox/languages/pl.lang.php b/plugins/sandbox/languages/pl.lang.php
new file mode 100644
index 0000000..d194ee5
--- /dev/null
+++ b/plugins/sandbox/languages/pl.lang.php
@@ -0,0 +1,10 @@
+ array(
+ 'Sandbox' => 'Sandbox',
+ 'Sandbox plugin for Monstra' => 'Wtyczka Sandbox dla systemu Monstra',
+ 'Sandbox template' => 'Szablon Sandbox',
+ 'Save' => 'Zapisz',
+ )
+ );