From: garvinhicking Date: Mon, 22 May 2006 13:39:32 +0000 (+0000) Subject: polish update X-Git-Tag: 1.0~18 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=f26f0283cc38bb75cf19b15d9709e834571001c3;p=s9y.git polish update --- diff --git a/docs/INSTALL b/docs/INSTALL index b2aa4a7..d08c535 100644 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -1,64 +1,5 @@ -# -# FOR UP TO DATE INFORMATION PLEASE REFER TO http://www.s9y.org -# +########################### +# INSTALLING SERENDIPITY # +########################### -############################################################################### -# INSTALLATION # -############################################################################### - -1. Decompress and put this folder somewhere inside your document root -2. If you want the directory to be called something other than "serendipity", - change the directory name now -3. Open serendipity in your browser (installer will say hi to you) -4. Serendipity ships world-writeable (777) to make installation easier - (permissions are only preserved on Unix/Linux systems using tar). -After the install is complete, you should change the permissions to allow -only your web-server user (e.g. Nobody) to access the serendipity directory. -If you have enabled file-upload and/or caching, you need to do something -like this: - chown -R Nobody serendipity/ - chmod -R 744 serendipity/ -because the web server needs to be able to write to directories inside the -distribution. Otherwise, you should probably chmod -R 644 serendipity. -Serendipity needs to write to its core directory to be able to create -the serendipity_config_local.inc.php and .htaccess file. After this has -been done, the world-writable folder can be set to the sane permissions -again. -5. Done! - -############################################################################### -# UPGRADE # -############################################################################### - -See README file for detailed actions. - -############################################################################### -# REQUIREMENTS # -############################################################################### - -1. The Apache Webserver (Linux suggested; s9y runs on Windows with some - directory-related drawbacks and system locale issues. You'll need to - take care that when installing on windows you always use '/' slashes - for directories and no '\' slashes anywhere. Also make sure your apache - DocumentRoot is set to a directory with '/'.) -2. .htaccess support allowing overrides for DirectoryIndex (if rewriting is - wanted) -3. PHP Version 4.3 or greater, required - modules are listed on the installer page. -4. php.ini options: - - error_reporting E_ALL & ~E_NOTICE (or lower) - - file_uploads on (For import/image upload features) -5. Any of the following database engines: - - Mysql(i) - - PostGreSQL - - SQLite (not quite!) - -############################################################################### - -For more information please read our Documentation on http://www.s9y.org! - -Serendipity Weblog - http://s9y.org - -Licensed under the BSD License - -# $Id$ +Please go to http://www.s9y.org/36.html to view a Step-By-Step Installation guide. diff --git a/docs/INSTALL_EMBEDED b/docs/INSTALL_EMBEDED index 934d92a..402f82f 100644 --- a/docs/INSTALL_EMBEDED +++ b/docs/INSTALL_EMBEDED @@ -1,77 +1,6 @@ -######################################################################## -# THE 'embed' CONFIGURATION DIRECTIVE # -######################################################################## +########################### +# INSTALLING SERENDIPITY # +########################### -In your serendipity configuration, you can set an 'embed' option to true -or false. +Please go to http://www.s9y.org/55.html to view instructions for the embedded installation. -This defines, whether you use your blog as a standalone webpage - or if -you have different content wrapped around your blog, like the menu of -your usual homepage. - -By setting the 'embed' option to true, you have to make sure the -following things to get everything to work well: - -1. 'indexFile' option. - - This configuration option needs to be set to the wrapper file you - want to use. Let's say you normally have a 'content.php' file for - your webpage. This 'content.php' file sets up your internal - templates, your menu structure and such. - Now you want this file to be used to include your weblog. A simple - content.php could look like this: - - set_template($_REQUEST['page']); - $homepage->output_header(); - $homepage->output_content(); - $homepage->output_footer(); - $homepage->track_statistics(); - ?> - - So normally your file would be called with 'content.php?page=about' - to display your 'about' page of your personal homepage. - - Now we want this file to be displayed, having the 'page' variable - being set to 'blog'. - - For this, we set up a 'wrapper.php' file: - - - - You would then set your 'indexFile' serendipity-option to the - 'wrapper.php' file. - - 2. Plugin panes & HTML-headers - - With the example above, we only get the main blog data printed. One - of the most visible actions when using the 'embed' option is that the - plugin panes are not generated. And HTML headers/foooters are also - not provided by s9y in this case, as this should be done by your - 'content.php' file. - - So you have to include them in your 'content.php' file, to have them - visible in your embedded setup. - - You can use this snippet: - - somewhere in your 'content.php' file. - -The 'embed' option is therefore only recommended to be used by advanced -users going for a most flexible setup! diff --git a/docs/INSTALL_SHARED b/docs/INSTALL_SHARED index a449f24..b677c8d 100644 --- a/docs/INSTALL_SHARED +++ b/docs/INSTALL_SHARED @@ -1,139 +1,5 @@ -######################################################################## -# HOW TO USE SERENDIPITY AS SHARED LIBRARY # -######################################################################## +########################### +# INSTALLING SERENDIPITY # +########################### -****************************************** -* WARNING: THIS FEATURE IS EXPERIMENTAL! * -****************************************** - -You can install ONE s9y distribution and manage multiple users on it by -sharing the core files and then deploying specially crafted files in -each user's directory. - -Let's do this using an example. You own the domain 's9yblogs.org'. -You want to have multiple virtual hosts for as many users as you like. -They are going to be called 'username.s9yblogs.org'. We choose the users -'garvin', 'j' and 'tom' for example hosts. We assume that your webserver -runs as user 'www', group 'www'. We also assume that all your users -are called like the subdomains, and they are also in group 'www'. We -further assume that PHP's safe_mod is turned off. - -Of course, for security reasons, you should set the open_basedir -directive to the user's document root, so he can't access other -installations on your host. - -So your Apache-Webser should contain VirtualHosts like this: - --- httpd.conf - - ServerName garvin.s9yblogs.org - DocumentRoot /home/www/garvin.s9yblogs.org/htdocs - - AllowOverride All - - php_value include_path ".:/usr/local/lib/php:/usr/local/lib/php/s9y/:/usr/local/lib/php/s9y/bundled-libs/" - php_admin_value open_basedir "/usr/local/lib/php/:/usr/local/lib/php/s9y/:/home/www/garvin.s9yblogs.org/" - - - - ServerName j.s9yblogs.org - DocumentRoot /home/www/j.s9yblogs.org/htdocs - - AllowOverride All - - php_value include_path ".:/usr/local/lib/php:/usr/local/lib/php/s9y/:/usr/local/lib/php/s9y/bundled-libs/" - php_admin_value open_basedir "/usr/local/lib/php/:/usr/local/lib/php/s9y/:/home/www/j.s9yblogs.org/" - - - - ServerName tom.s9yblogs.org - DocumentRoot /home/www/tom.s9yblogs.org/htdocs - - AllowOverride All - - php_value include_path ".:/usr/local/lib/php:/usr/local/lib/php/s9y/:/usr/local/lib/php/s9y/bundled-libs/" - php_admin_value open_basedir "/usr/local/lib/php/:/usr/local/lib/php/s9y/:/home/www/tom.s9yblogs.org/" - --- httpd.conf - -You will unpack the default s9y distribution files in -"/usr/local/lib/php/s9y/". Where you store the directory 's9y' is -not important, as long as you adjust the include_path setting in the -VirtualHosts. But the directory name 's9y' is significant. - -Now copy the subdirectories called - - * "/usr/local/lib/php/s9y/deployment/" [core redirection files] - * "/usr/local/lib/php/s9y/templates/" [templates so that users can change them] - * "/usr/local/lib/php/s9y/htmlarea/" [htmlarea WYSIWYG-editor] - - to each of the user's subdirectories: - -$ cp -r /usr/local/lib/php/s9y/deployment/* /home/www/garvin.s9yblogs.org/htdocs/ -$ cp -r /usr/local/lib/php/s9y/templates /home/www/garvin.s9yblogs.org/htdocs/ -$ cp -r /usr/local/lib/php/s9y/htmlarea /home/www/garvin.s9yblogs.org/htdocs/ -$ chown -R garvin.www /home/www/garvin.s9yblogs.org/htdocs/* -$ chmod ug+rwx /home/www/garvin.s9yblogs.org/htdocs -$ chmod ug+rwx /home/www/garvin.s9yblogs.org/htdocs/uploads/ - -$ cp -r /usr/local/lib/php/s9y/deployment/* /home/www/j.s9yblogs.org/htdocs/ -$ cp -r /usr/local/lib/php/s9y/templates /home/www/j.s9yblogs.org/htdocs/ -$ cp -r /usr/local/lib/php/s9y/htmlarea /home/www/j.s9yblogs.org/htdocs/ -$ chown -R j.www /home/www/j.s9yblogs.org/htdocs/* -$ chmod ug+rwx /home/www/j.s9yblogs.org/htdocs -$ chmod ug+rwx /home/www/j.s9yblogs.org/htdocs/uploads/ - -$ cp -r /usr/local/lib/php/s9y/deployment/* /home/www/tom.s9yblogs.org/htdocs/ -$ cp -r /usr/local/lib/php/s9y/templates /home/www/tom.s9yblogs.org/htdocs/ -$ cp -r /usr/local/lib/php/s9y/htmlarea /home/www/tom.s9yblogs.org/htdocs/ -$ chown -R tom.www /home/www/tom.s9yblogs.org/htdocs/* -$ chmod ug+rwx /home/www/tom.s9yblogs.org/htdocs -$ chmod ug+rwx /home/www/tom.s9yblogs.org/htdocs/uploads/ - -For later management access, it is advised you keep a list of all URLs -for your s9y-managed blogs. We suggest to create a SQL table like -'my_managed_s9y_blogs': - -sql> CREATE TABLE my_managed_s9y_blogs (url varchar(255) default null); -sql> INSERT INTO my_managed_s9y_blogs (url) VALUES ('http://garvin.s9yblogs.org/'); -sql> INSERT INTO my_managed_s9y_blogs (url) VALUES ('http://j.s9yblogs.org/'); -sql> INSERT INTO my_managed_s9y_blogs (url) VALUES ('http://tom.s9yblogs.org/'); - -Now you are almost ready for take-off. We assume that every user has -access to a seperate SQL database where his blog-data is later stored -in. You can already see, that the steps needed above shouldn't be to -hard to put into a customized script.sh file for use in your setup. - -Open up your http://garvin.s9yblogs.org/ file. You should now see s9y's -installation screen. Enter the database- and username and the -corresponding password. Everything else can be left to the user. - -Now every user can manage his/her blog just as if it were a standalone -installation. - -SPECIAL NOTES: -======================================================================== - -* Each blog is still a standalone blog. - -* If you update the core library files from version 0.5 to 0.6 (for - example) every user of your core library will get the default s9y- - Upgrader script to see and needs to update his local configuration. - - As a provider for s9y blogs to your users, you are advised to migrate - the user's blogs on your own. To do so, it is best that you always - have a "spare" testing blog installed just like your user's blogs. - - Open that installation and look at the upgrader. Execute it and see - that it completes without errors. If that happened, you should cycle - through a list of ALL your s9y-managed blogs like this: - - - - So basically all you need to do is call that script for every s9y- - powered blog you host. +Please go to http://www.s9y.org/41.html to view the installation guide for Shared Installations. diff --git a/docs/README b/docs/README index 5c63e29..bfb301d 100644 --- a/docs/README +++ b/docs/README @@ -2,137 +2,5 @@ # README # ######################################################################## - - - - - For the most up-to-date information on documentation, creating styles, plugins and so on, please visit our Wiki on http://www.s9y.org/! - - - - - - - - - - - - - -######################################################################## -# NOTES FOR CONDITIONAL GET IN RSS FEEDS # -######################################################################## - -Serendipity supports an HTTP-cache compatible way of only showing items -in an RSS feed which where modified since the last request from a -client. - -Typically, an RSS reader fetches your RSS feeds (15 items, per default). -It then remembers the timestamp when those items where fetched. By the -time your RSS reader updates the feed (typically after 1 hour) -Serendipity will now only serve all new or modified items since the last -time of refresh. If no entries where updated since then, serendipity -will only serve the 304 Header (Not Modified) and saves a lot of -bandwidth for both client and server on periodical updates. - -Technically an RSS reader catches the "Last-Modified" Header of the RSS -output as well as a special "ETag"-Header. Both are set to the last -modification time of your article base. On the next fetch, those -received headers are sent as "IF_MODIFIED_SINCE" (= Last-Modified) and -"IF_NONE_MATCH" (= ETag) Headers and will affect your rss feed. This -saves a lot of bandwidth on both client and server side. - -Users who have been watching your feed and where not able to catch up -the latest articles may miss some of them, because you usually only get -15 items per feed. In case your reader provides the IF_MODIFIED_SINCE -header the client can now catch all items (resp. a maximum of 50 -articles to prevent abuse). - -If you want to permanently disable that feature (whatever the reasons -are) you can either set a "$_REQUEST['nocache'] = true" inside your -rss.php file (first line) or append the '&nocache=true' request variable -to your feed so that it looks like: -http://example.host/serendipity/rss.php?version=2.0&nocache=true. - -Of course, the usual feed behaviour is not affected if none of the -caching headers are provided. So if you use syndication methods to embed -content from a blog inside an application, just tune your application to -either send the 'nocache'-Variable to a Serendipity blog, or to not send -the caching headers. - -The syndication plugin can be configured to append that variable to your -feed URLs from your blog. - -######################################################################## -# USER MANAGEMENT # -######################################################################## - -New users can be created by inserting them to the 'authors' table. - -The field 'userlevel' is a special field describing which actions a -user may have: - -- Userlevel 0: Standard editor. Cannot apply many administrative tasks - -- Userlevel 1: Chief editor. Can apply some administrative tasks (like - title of the blog, ... - -- Userlevel 255: Admin. Can change everything. - -Userlevels are cumulative, thus a user with level '30' can do anything -which users of a lower level can do. Currently only the levels mentioned -above are used. - -Here is a short chart of what users can do: - -ACTION |editor|chief|admin ------------------------------------------------------|------|-----|----- -Manage private plugins | - + + -Manage global plugins | - - + -Manage order of plugins | - + + -Manage configuration of private plugins | - + + -Manage configuration of all protected plugins | - - + -Manage configuration of private protected plugins | + + + - -Manage all categories | - + + -Manage public categories | + + + -Manage private categories | + + + -Manage global configuration | - - + - -Manage basic configuration | - + + -Manage private configuration | + + + - -Manage templates | - + + - -Manage 'admin' users | - - + -Manage 'chief' users | - + + -Manage 'editor' users | - + + - -Manage private entries | + + + -Manage others entries | - + + -Manage comments/trackbacks to private entries | + + + -Manage comments/trackbacks to others entries | - + + - -View/Link/Upload all pictures | + + + -View/Link/Upload private pictures | + + + -View/Link/Upload public pictures | + + + - -Edit all pictures | - + + -Edit public pictures | + + + -Edit private pictures | + + + ------------------------------------------------------------------------- - -It is advised that in shared setups only the webmaster has an admin- -access. The users should be given a chief-login, and them theirselves -can distribute user logins. - -######################################################################## - -Serendipity Weblog - http://s9y.org - -Licensed under the BSD License - -# $Id$ diff --git a/docs/UPGRADE b/docs/UPGRADE index 2105f80..e1bf5e2 100644 --- a/docs/UPGRADE +++ b/docs/UPGRADE @@ -1,110 +1,5 @@ -# -# FOR UP TO DATE INFORMATION PLEASE REFER TO http://www.s9y.org -# - ######################################################################## # UPDATING # ######################################################################## -The automatic update script should find and execute any necessary -changes to the database layout made in different s9y versions beginning -from 0.5. The upgrader will perform its automatic actions, as soon as you -have copied the new s9y files over your old installation and access the start -page of your blog. -You can speed up the process of backing up your data and copying the files by -using the supplied "upgrade.sh" script. Be sure to edit the file and change -the variables to your needs. - -Usually all DB schema upgrades in previous versions will be used. So -when you upgrade from 0.5 to 0.7 you will get upgrades from 0.5 -> 0.6 -and 0.6 -> 0.7. - -However, you are always advised to look at the corresponding -SQL update file in sql/db_update* to see which changes were made. - -Please bear in mind that the automatic update script is executable by -any user visiting your blog at the time of updating. You should modify -your .htaccess file before upgradding and include this directives: - ----- .htaccess -AuthType Basic -AuthName "Authorisation: Serendipity Upgrade IN PROGRESS" -AuthUserFile /absolute/path/to/your/s9y/.htpasswd -require valid-user ----- - -Then create a file .htpasswd using a simple 'username:cryptpasswd' -combination. Look at http://www.advancehost.com/htpasswd.html for an -online generator for .htpasswd files. - ----- .htpasswd -s9y:s9QXoc9dcFOT2 ----- - -This would create a user "s9y" with password "s9y" with which you'd have -to log into your blog. - -A proper backup of BOTH the file system and your database is suggested. -Whenever you made changes to the distributed files (or to the files like -xml.gif or the smilies) you have to make sure to copy them over the -distributed files after updating. - -######################################################################## -# NOTES ON UPDATING FROM 0.5/0.5.1 -> 0.6 # -######################################################################## - -* [The 0.5.1 release was renamed to 0.6, but there will still be DB - layout changes applied which are labelled as 0.5.1 - just ignore it. - It's only to easy migration to CVS-Snapshot users using the - 0.5.1-version] - -* The structure of the content_rewrite plugin has changed. It will get - rewritten automatically by the update script, but if you had output on - your sidebar before, you need to do this: - - - Add the 'serendipity_plugin_eventwrapper' to the sidebar plugins. - - Configure the 'serendipity_plugin_eventwrapper' and set it to use - your existing 'serendpity_event_contentrewrite' plugin. - -* Smilies and the XML-button where moved from the '/pixel' subdirectory - into per-template 'img/' subdirectories. If you modified the original - files, you need to copy your versions inside the - 'templates/default/img/' directory. - -* A home-link has been added to the page headers. For that, two new CSS - classes have been introduced: .homelink1 (header), .homelink2 ( - subheader). If you have a custom template, you need to adapt to those - changes. To make them look like your header previously has, insert - this in your style.css: - - a.homelink1, - a.homelink1:hover, - a.homelink1:link, - a.homelink1:visited, - #serendipity_banner h1 { - ... your css-definitions ... - text-decoration: none; - } - - a.homelink2, - a.homelink2:hover, - a.homelink2:link, - a.homelink2:visited, - #serendipity_banner h2 { - ... your css-definitions ... - text-decoration: none; - } - -######################################################################## -# NOTES ON UPDATING FROM 0.4 -> 0.5 # -######################################################################## - -No changes where made to the database scheme in this version. - -######################################################################## -# NOTES ON UPDATING FROM 0.3 -> 0.4 # -######################################################################## - -Run the file 'sql/db_update_0.3_0.4_mysql.sql' or -'sql/db_update_0.3_0.4_pgsql.sql' to update your database. Apart from -that, just copy over the new files of the distribution. +FOR UP TO DATE INFORMATION PLEASE REFER TO http://www.s9y.org diff --git a/lang/UTF-8/serendipity_lang_pl.inc.php b/lang/UTF-8/serendipity_lang_pl.inc.php index 39ca0d6..847f9a6 100644 --- a/lang/UTF-8/serendipity_lang_pl.inc.php +++ b/lang/UTF-8/serendipity_lang_pl.inc.php @@ -1,7 +1,6 @@ -konfiguracji wtyczki.'); +@define('PLUGIN_EVENT_ENTRYPROPERTIES_DISABLE_MARKUP', 'Wyłącz wtyczki Znaczników dla tego wpisu:'); ?> diff --git a/plugins/serendipity_event_entryproperties/lang_pl.inc.php b/plugins/serendipity_event_entryproperties/lang_pl.inc.php index c51fc74..4e3e1fc 100644 --- a/plugins/serendipity_event_entryproperties/lang_pl.inc.php +++ b/plugins/serendipity_event_entryproperties/lang_pl.inc.php @@ -23,7 +23,6 @@ @define('PLUGIN_EVENT_ENTRYPROPERTIES_CACHE_DONE', 'Buforowanie wpisów (cache) ukoñczone.'); @define('PLUGIN_EVENT_ENTRYPROPERTIES_CACHE_ABORTED', 'Buforowanie wpisów ANULOWANE.'); @define('PLUGIN_EVENT_ENTRYPROPERTIES_CACHE_TOTAL', ' (³±cznie %d wpisów)...'); -@define('PLUGIN_EVENT_ENTRYPROPERTIES_NL2BR', 'Wy³±cz nl2br'); @define('PLUGIN_EVENT_ENTRYPROPERTIES_NO_FRONTPAGE', 'Ukryj wpis (nie bêdzie wy¶wietlany przy przegl±dzie wpisów i na stronie g³ównej)'); @define('PLUGIN_EVENT_ENTRYPROPERTIES_GROUPS', 'U¿yj ograniczeñ grup'); @define('PLUGIN_EVENT_ENTRYPROPERTIES_GROUPS_DESC', 'Je¶li opcja zostanie w³±czona, bêdzie mo¿na zdefiniowaæ dla jakich grup (i ich cz³onków) wpis bêdzie widoczny. To ustawienie ma ogromny wp³yw na wydajno¶æ wiêc u¿ywaj wy³±cznie je¶li na prawdê potrzebujesz tej funkcjonalno¶ci.'); @@ -37,4 +36,5 @@ @define('PLUGIN_EVENT_ENTRYPROPERTIES_CUSTOMFIELDS_DESC2', 'Tu mo¿na wpisaæ nazwy (rozdzielone przecinkami) dodatkowych pól, które bêd± dostêpne przy edycji ka¿dego wpisu. Nie nalezy u¿ywaæ znaków specjalnych lub spacji dla nazw tych pól. Przyk³ad: "Customfield1, Customfield2". ' . PLUGIN_EVENT_ENTRYPROPERTIES_CUSTOMFIELDS_DESC1); @define('PLUGIN_EVENT_ENTRYPROPERTIES_CUSTOMFIELDS_DESC3', 'Lista dostêpnych pól uzytkownika mo¿e byæ zmieniona w module konfiguracji wtyczki.'); +@define('PLUGIN_EVENT_ENTRYPROPERTIES_DISABLE_MARKUP', 'Wy³±cz wtyczki Znaczników dla tego wpisu:'); ?> diff --git a/plugins/serendipity_event_spamblock/UTF-8/lang_pl.inc.php b/plugins/serendipity_event_spamblock/UTF-8/lang_pl.inc.php index 7b34d4d..db2a3bb 100644 --- a/plugins/serendipity_event_spamblock/UTF-8/lang_pl.inc.php +++ b/plugins/serendipity_event_spamblock/UTF-8/lang_pl.inc.php @@ -1,7 +1,7 @@ - * EN-Revision: Revision of lang_en.inc.php */ @@ -10,6 +10,7 @@ @define('PLUGIN_EVENT_SPAMBLOCK_DESC', 'Różne metody na zwalczanie spamu w komentarzach'); @define('PLUGIN_EVENT_SPAMBLOCK_ERROR_BODY', 'Obrona przed spamem: Nieprawidłowy komentarz.'); @define('PLUGIN_EVENT_SPAMBLOCK_ERROR_IP', 'Obrona przed spamem: Nie możesz wprowadzić kolejnego komentarza tak prędko. Proszę, poczekaj chwilę (obrona przed floodem).'); + @define('PLUGIN_EVENT_SPAMBLOCK_ERROR_KILLSWITCH', 'Ten blog znajduje się w trybie "Całkowita blokada komentarzy". Proszę, wróć tu za jakiś czas, kiedy ten tryb zostanie zniesiony.'); @define('PLUGIN_EVENT_SPAMBLOCK_BODYCLONE', 'Nie zezwalaj na zduplikowane komentarze'); @define('PLUGIN_EVENT_SPAMBLOCK_BODYCLONE_DESC', 'Nie zezwalaj użytkownikom na dodanie komentarza, który ma taką samą zawartość jak dopiero co dodany komentarz (kolejne dodanie takiego samego komentarza)'); @@ -24,6 +25,7 @@ @define('PLUGIN_EVENT_SPAMBLOCK_CAPTCHAS_USERDESC3', 'Wpisz ciąg znaków widoczny na obrazku powyżej: '); @define('PLUGIN_EVENT_SPAMBLOCK_ERROR_CAPTCHAS', 'Wprowadziłeś(aś) nieprawidłowy ciąg. Zerknij na obrazek i wprowadź odpowiedni ciąg ponownie.'); @define('PLUGIN_EVENT_SPAMBLOCK_ERROR_NOTTF', 'Captcha nie będzie działało na Twoim serwerze. Potrzebujesz zainstalowanych bibliotek GDLib i freetype oraz upewnij się, że odpowiednie pliki .ttf znajują się w katalogu wtyczki.'); + @define('PLUGIN_EVENT_SPAMBLOCK_CAPTCHAS_TTL', 'Wymuś Captcha po ilu dniach'); @define('PLUGIN_EVENT_SPAMBLOCK_CAPTCHAS_TTL_DESC', 'Możesz wymusić uzycie Captcha po określonej ilości dni. Wprowadź ilośc dni, po których wprowadzenie Captcha będzie wymagane. Jeśli ustawione na 0 - będzie wymagane zawsze.'); @define('PLUGIN_EVENT_SPAMBLOCK_FORCEMODERATION', 'Wymuś moderowanie komentarzy po ilu dniach'); @@ -32,11 +34,14 @@ @define('PLUGIN_EVENT_SPAMBLOCK_LINKS_MODERATE_DESC', 'Jeśli w komentarzu wystąpi podana ilość linków będzie on wymagał moderacji. 0 oznacza wyłączenie tej opcji.'); @define('PLUGIN_EVENT_SPAMBLOCK_LINKS_REJECT', 'Jak wiele linków musi wystąpić by komentarz został odrzucony'); @define('PLUGIN_EVENT_SPAMBLOCK_LINKS_REJECT_DESC', 'Jeśli w komentarzu wystąpi podana ilość linków, komentarz zostanie automatycznie odrzucony. 0 oznacza wyłączenie tej opcji.'); + @define('PLUGIN_EVENT_SPAMBLOCK_NOTICE_MODERATION', 'Z powodu warunków określonych przez administratora bloga, Twój komentarz został oznaczony jako "wymagający sprawdzenia".'); @define('PLUGIN_EVENT_SPAMBLOCK_CAPTCHA_COLOR', 'Kolor tła captcha'); @define('PLUGIN_EVENT_SPAMBLOCK_CAPTCHA_COLOR_DESC', 'Wprowadź wartości RGB: 0,255,255'); + @define('PLUGIN_EVENT_SPAMBLOCK_LOGFILE', 'Położenie pliku z logiem'); @define('PLUGIN_EVENT_SPAMBLOCK_LOGFILE_DESC', 'Informacja o odrzuconych/wymagających moderowania komentarzach może być przechowywania w pliku. Wyczyść to pole jeśli chcesz wyłączyć logowanie.'); + @define('PLUGIN_EVENT_SPAMBLOCK_REASON_KILLSWITCH', 'Nagły wypadek: możliwość komentowania została wyłączona'); @define('PLUGIN_EVENT_SPAMBLOCK_REASON_BODYCLONE', 'Zduplikowany komentarz'); @define('PLUGIN_EVENT_SPAMBLOCK_REASON_IPFLOOD', 'Zablokowane IP'); @@ -47,6 +52,7 @@ @define('PLUGIN_EVENT_SPAMBLOCK_HIDE_EMAIL', 'Ukryj adresy e-mail komentujących'); @define('PLUGIN_EVENT_SPAMBLOCK_HIDE_EMAIL_DESC', 'Adresy e-mail komentujących nie będą pokazywane'); @define('PLUGIN_EVENT_SPAMBLOCK_HIDE_EMAIL_NOTICE', 'Adresy e-mail nie będą pokazywane i będą używane tylko do celów wysyłania powiadomień drogą e-mailową'); + @define('PLUGIN_EVENT_SPAMBLOCK_LOGTYPE', 'Wybierz metodę logowania'); @define('PLUGIN_EVENT_SPAMBLOCK_LOGTYPE_DESC', 'Logi o odrzuconych komentarzach mogą być przechowywane w Bazie danych lub w pliku tekstowym'); @define('PLUGIN_EVENT_SPAMBLOCK_LOGTYPE_FILE', 'Plik (patrz "Położenie pliku z logiem")'); @@ -94,3 +100,10 @@ @define('PLUGIN_EVENT_SPAMBLOCK_HIDE', 'Wyłącz wtyczkę dla Autorów'); @define('PLUGIN_EVENT_SPAMBLOCK_HIDE_DESC', 'Możesz zezwolić na komentowanie wpisów przez Autorów należących do zaznaczonych grup bez włączonej ochorny antyspamowej.'); + +@define('PLUGIN_EVENT_SPAMBLOCK_AKISMET', 'Klucz Akismet API'); +@define('PLUGIN_EVENT_SPAMBLOCK_AKISMET_DESC', 'Akismet.com to centralny serwer antyspamowy i zawierający tzw. blacklisty. Może analizować komentarze i sprawdzać, czy taki komentarz został zgłoszony jako spam. Akismet został stworzony dla systemu WordPress ale może być wykorzystywany przez inne systemy. Potrzebujesz klucza API (API Key) ze strony http://www.akismet.com - klucz otrzymasz po rejestracji w serwisie http://www.wordpress.com/. Jeśli pozostawisz to pole puste, technologia Akismet nie będzie wykorzystywana.'); +@define('PLUGIN_EVENT_SPAMBLOCK_AKISMET_FILTER', 'Jak traktować spam zgłoszony przez Akismet'); +@define('PLUGIN_EVENT_SPAMBLOCK_REASON_AKISMET_SPAMLIST', 'Użyto filtra Akismet.com Blacklist'); + +?> diff --git a/plugins/serendipity_event_spamblock/lang_pl.inc.php b/plugins/serendipity_event_spamblock/lang_pl.inc.php index 2505635..f47a239 100644 --- a/plugins/serendipity_event_spamblock/lang_pl.inc.php +++ b/plugins/serendipity_event_spamblock/lang_pl.inc.php @@ -1,7 +1,7 @@ - * EN-Revision: Revision of lang_en.inc.php */ @@ -10,6 +10,7 @@ @define('PLUGIN_EVENT_SPAMBLOCK_DESC', 'Ró¿ne metody na zwalczanie spamu w komentarzach'); @define('PLUGIN_EVENT_SPAMBLOCK_ERROR_BODY', 'Obrona przed spamem: Nieprawid³owy komentarz.'); @define('PLUGIN_EVENT_SPAMBLOCK_ERROR_IP', 'Obrona przed spamem: Nie mo¿esz wprowadziæ kolejnego komentarza tak prêdko. Proszê, poczekaj chwilê (obrona przed floodem).'); + @define('PLUGIN_EVENT_SPAMBLOCK_ERROR_KILLSWITCH', 'Ten blog znajduje siê w trybie "Ca³kowita blokada komentarzy". Proszê, wróæ tu za jaki¶ czas, kiedy ten tryb zostanie zniesiony.'); @define('PLUGIN_EVENT_SPAMBLOCK_BODYCLONE', 'Nie zezwalaj na zduplikowane komentarze'); @define('PLUGIN_EVENT_SPAMBLOCK_BODYCLONE_DESC', 'Nie zezwalaj u¿ytkownikom na dodanie komentarza, który ma tak± sam± zawarto¶æ jak dopiero co dodany komentarz (kolejne dodanie takiego samego komentarza)'); @@ -24,6 +25,7 @@ @define('PLUGIN_EVENT_SPAMBLOCK_CAPTCHAS_USERDESC3', 'Wpisz ci±g znaków widoczny na obrazku powy¿ej: '); @define('PLUGIN_EVENT_SPAMBLOCK_ERROR_CAPTCHAS', 'Wprowadzi³e¶(a¶) nieprawid³owy ci±g. Zerknij na obrazek i wprowad¼ odpowiedni ci±g ponownie.'); @define('PLUGIN_EVENT_SPAMBLOCK_ERROR_NOTTF', 'Captcha nie bêdzie dzia³a³o na Twoim serwerze. Potrzebujesz zainstalowanych bibliotek GDLib i freetype oraz upewnij siê, ¿e odpowiednie pliki .ttf znajuj± siê w katalogu wtyczki.'); + @define('PLUGIN_EVENT_SPAMBLOCK_CAPTCHAS_TTL', 'Wymu¶ Captcha po ilu dniach'); @define('PLUGIN_EVENT_SPAMBLOCK_CAPTCHAS_TTL_DESC', 'Mo¿esz wymusiæ uzycie Captcha po okre¶lonej ilo¶ci dni. Wprowad¼ ilo¶c dni, po których wprowadzenie Captcha bêdzie wymagane. Je¶li ustawione na 0 - bêdzie wymagane zawsze.'); @define('PLUGIN_EVENT_SPAMBLOCK_FORCEMODERATION', 'Wymu¶ moderowanie komentarzy po ilu dniach'); @@ -32,11 +34,14 @@ @define('PLUGIN_EVENT_SPAMBLOCK_LINKS_MODERATE_DESC', 'Je¶li w komentarzu wyst±pi podana ilo¶æ linków bêdzie on wymaga³ moderacji. 0 oznacza wy³±czenie tej opcji.'); @define('PLUGIN_EVENT_SPAMBLOCK_LINKS_REJECT', 'Jak wiele linków musi wyst±piæ by komentarz zosta³ odrzucony'); @define('PLUGIN_EVENT_SPAMBLOCK_LINKS_REJECT_DESC', 'Je¶li w komentarzu wyst±pi podana ilo¶æ linków, komentarz zostanie automatycznie odrzucony. 0 oznacza wy³±czenie tej opcji.'); + @define('PLUGIN_EVENT_SPAMBLOCK_NOTICE_MODERATION', 'Z powodu warunków okre¶lonych przez administratora bloga, Twój komentarz zosta³ oznaczony jako "wymagaj±cy sprawdzenia".'); @define('PLUGIN_EVENT_SPAMBLOCK_CAPTCHA_COLOR', 'Kolor t³a captcha'); @define('PLUGIN_EVENT_SPAMBLOCK_CAPTCHA_COLOR_DESC', 'Wprowad¼ warto¶ci RGB: 0,255,255'); + @define('PLUGIN_EVENT_SPAMBLOCK_LOGFILE', 'Po³o¿enie pliku z logiem'); @define('PLUGIN_EVENT_SPAMBLOCK_LOGFILE_DESC', 'Informacja o odrzuconych/wymagaj±cych moderowania komentarzach mo¿e byæ przechowywania w pliku. Wyczy¶æ to pole je¶li chcesz wy³±czyæ logowanie.'); + @define('PLUGIN_EVENT_SPAMBLOCK_REASON_KILLSWITCH', 'Nag³y wypadek: mo¿liwo¶æ komentowania zosta³a wy³±czona'); @define('PLUGIN_EVENT_SPAMBLOCK_REASON_BODYCLONE', 'Zduplikowany komentarz'); @define('PLUGIN_EVENT_SPAMBLOCK_REASON_IPFLOOD', 'Zablokowane IP'); @@ -47,6 +52,7 @@ @define('PLUGIN_EVENT_SPAMBLOCK_HIDE_EMAIL', 'Ukryj adresy e-mail komentuj±cych'); @define('PLUGIN_EVENT_SPAMBLOCK_HIDE_EMAIL_DESC', 'Adresy e-mail komentuj±cych nie bêd± pokazywane'); @define('PLUGIN_EVENT_SPAMBLOCK_HIDE_EMAIL_NOTICE', 'Adresy e-mail nie bêd± pokazywane i bêd± u¿ywane tylko do celów wysy³ania powiadomieñ drog± e-mailow±'); + @define('PLUGIN_EVENT_SPAMBLOCK_LOGTYPE', 'Wybierz metodê logowania'); @define('PLUGIN_EVENT_SPAMBLOCK_LOGTYPE_DESC', 'Logi o odrzuconych komentarzach mog± byæ przechowywane w Bazie danych lub w pliku tekstowym'); @define('PLUGIN_EVENT_SPAMBLOCK_LOGTYPE_FILE', 'Plik (patrz "Po³o¿enie pliku z logiem")'); @@ -94,3 +100,10 @@ @define('PLUGIN_EVENT_SPAMBLOCK_HIDE', 'Wy³±cz wtyczkê dla Autorów'); @define('PLUGIN_EVENT_SPAMBLOCK_HIDE_DESC', 'Mo¿esz zezwoliæ na komentowanie wpisów przez Autorów nale¿±cych do zaznaczonych grup bez w³±czonej ochorny antyspamowej.'); + +@define('PLUGIN_EVENT_SPAMBLOCK_AKISMET', 'Klucz Akismet API'); +@define('PLUGIN_EVENT_SPAMBLOCK_AKISMET_DESC', 'Akismet.com to centralny serwer antyspamowy i zawieraj±cy tzw. blacklisty. Mo¿e analizowaæ komentarze i sprawdzaæ, czy taki komentarz zosta³ zg³oszony jako spam. Akismet zosta³ stworzony dla systemu WordPress ale mo¿e byæ wykorzystywany przez inne systemy. Potrzebujesz klucza API (API Key) ze strony http://www.akismet.com - klucz otrzymasz po rejestracji w serwisie http://www.wordpress.com/. Je¶li pozostawisz to pole puste, technologia Akismet nie bêdzie wykorzystywana.'); +@define('PLUGIN_EVENT_SPAMBLOCK_AKISMET_FILTER', 'Jak traktowaæ spam zg³oszony przez Akismet'); +@define('PLUGIN_EVENT_SPAMBLOCK_REASON_AKISMET_SPAMLIST', 'U¿yto filtra Akismet.com Blacklist'); + +?> diff --git a/plugins/serendipity_event_statistics/UTF-8/lang_pl.inc.php b/plugins/serendipity_event_statistics/UTF-8/lang_pl.inc.php index 8fc11fe..037f899 100644 --- a/plugins/serendipity_event_statistics/UTF-8/lang_pl.inc.php +++ b/plugins/serendipity_event_statistics/UTF-8/lang_pl.inc.php @@ -1,7 +1,7 @@ - * EN-Revision: Revision of lang_en.inc.php */ @@ -12,46 +12,46 @@ @define('PLUGIN_EVENT_STATISTICS_OUT_FIRST_ENTRY', 'Pierwszy wpis'); @define('PLUGIN_EVENT_STATISTICS_OUT_LAST_ENTRY', 'Ostatni wpis'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOTAL_ENTRIES', 'Wszystkich wpisów'); -@define('PLUGIN_EVENT_STATISTICS_OUT_ENTRIES', 'wpis(y/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_ENTRIES', 'wpisów'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOTAL_PUBLIC', ' ... opublikowanych'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOTAL_DRAFTS', ' ... szkiców'); @define('PLUGIN_EVENT_STATISTICS_OUT_PER_AUTHOR', 'Wpisy na użytkownika'); @define('PLUGIN_EVENT_STATISTICS_OUT_CATEGORIES', 'Kategorie'); -@define('PLUGIN_EVENT_STATISTICS_OUT_CATEGORIES2', 'kategorie(-a/-i)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_CATEGORIES2', 'kategorie'); @define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_CATEGORIES', 'Rozkład wpisów'); -@define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_CATEGORIES2', 'wpis(y/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_CATEGORIES2', 'wpisów'); @define('PLUGIN_EVENT_STATISTICS_OUT_UPLOADED_IMAGES', 'Uploadowane obrazki'); -@define('PLUGIN_EVENT_STATISTICS_OUT_UPLOADED_IMAGES2', 'obrazek(-ki)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_UPLOADED_IMAGES2', 'obrazków'); @define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_IMAGES', 'Rozkład typów obrazków'); -@define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_IMAGES2', 'plik(i/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_IMAGES2', 'plików'); @define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS', 'Otrzymane komentarze'); -@define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS2', 'komentarz(e/y)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS2', 'komentarze'); @define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS3', 'Najczęściej komentowane wpisy'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOPCOMMENTS', 'Najczęściej komentujący'); @define('PLUGIN_EVENT_STATISTICS_OUT_LINK', 'link'); @define('PLUGIN_EVENT_STATISTICS_OUT_SUBSCRIBERS', 'Subskrybenci'); -@define('PLUGIN_EVENT_STATISTICS_OUT_SUBSCRIBERS2', 'subskrybent(-ci/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_SUBSCRIBERS2', 'subskrybentów'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOPSUBSCRIBERS', 'Najczęściej subskrybowane wpisy'); -@define('PLUGIN_EVENT_STATISTICS_OUT_TOPSUBSCRIBERS2', 'subskrybent(-ci/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_TOPSUBSCRIBERS2', 'subskrybentów'); @define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS', 'Otrzymane Ślady (Trackbacki)'); -@define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS2', 'ślad(y/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS2', 'śladów'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOPTRACKBACK', 'Wpisy z największą ilością Śladów'); -@define('PLUGIN_EVENT_STATISTICS_OUT_TOPTRACKBACK2', 'ślad(y/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_TOPTRACKBACK2', 'śladów'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOPTRACKBACKS3', 'Najczęściej pozostawiający Ślady'); @define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS_PER_ARTICLE', 'średnia ilość komentarzy na wpis'); @define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS_PER_ARTICLE', 'średnia ilość komentarzy na wpis'); @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_DAY', 'średnia ilość wpisów na dzień'); @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_WEEK', 'średnia ilość wpisów na tydzień'); @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_MONTH', 'średnia ilość wpisów na miesiąc'); -@define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS_PER_ARTICLE2', 'komentarz(e/y)/wpis'); -@define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS_PER_ARTICLE2', 'ślad(y/ów)/wpis'); -@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_DAY2', 'wpis(y/ów)/dzień'); -@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_WEEK2', 'wpis(y/ów)/tydzień'); -@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_MONTH2', 'wpis(y/ów)/miesiąc'); +@define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS_PER_ARTICLE2', 'komentarzy/wpis'); +@define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS_PER_ARTICLE2', 'śladów/wpis'); +@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_DAY2', 'wpisów/dzień'); +@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_WEEK2', 'wpisów/tydzień'); +@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_MONTH2', 'wpisów/miesiąc'); @define('PLUGIN_EVENT_STATISTICS_OUT_CHARS', 'Ogólna ilość znaków we wpisach'); -@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS2', 'znak(i/ów)'); -@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS_PER_ARTICLE', 'Znaków(i/ów) na wpis'); -@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS_PER_ARTICLE2', 'znak(i/ów)/wpis'); +@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS2', 'znaków'); +@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS_PER_ARTICLE', 'Znaków na wpis'); +@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS_PER_ARTICLE2', 'znaków/wpis'); @define('PLUGIN_EVENT_STATISTICS_OUT_LONGEST_ARTICLES', '%s najdłuższych wpisów'); @define('PLUGIN_EVENT_STATISTICS_MAX_ITEMS', 'Maksymalna ilość pozycji'); @define('PLUGIN_EVENT_STATISTICS_MAX_ITEMS_DESC', 'Jak wiele pozycji wyświetlić dla każdej wartości ujętej w statystykach? (Standardowo: 20)'); @@ -62,16 +62,27 @@ @define('PLUGIN_EVENT_STATISTICS_EXT_OPT1', 'Nie!'); @define('PLUGIN_EVENT_STATISTICS_EXT_OPT2', 'Tak, na dole strony ze statystykami'); @define('PLUGIN_EVENT_STATISTICS_EXT_OPT3', 'Tak, na górze strony ze statystykami'); +@define('PLUGIN_EVENT_STATISTICS_EXT_ALL', 'Ustaw na "Nie" by pokazywać tylko statystki odwiedzających'); +@define('PLUGIN_EVENT_STATISTICS_EXT_ALL_DESC', 'Pokazywać wszystko? (Standardowo: Nie)'); +@define('PLUGIN_EVENT_STATISTICS_EXT_ALL1', 'Nie, ukryj wszystko prócz licznika'); +@define('PLUGIN_EVENT_STATISTICS_EXT_ALL2', 'Tak, pokazuj wszystkie statystyki'); @define('PLUGIN_EVENT_STATISTICS_EXT_VISITORS', 'Ilość odwiedzających'); @define('PLUGIN_EVENT_STATISTICS_EXT_VISTODAY', 'Ilość odwiedzających dzisiaj'); @define('PLUGIN_EVENT_STATISTICS_EXT_VISTOTAL', 'Ogólna ilość odwiedzin'); +@define('PLUGIN_EVENT_STATISTICS_EXT_HITSTODAY', 'Trafień dzisiaj'); +@define('PLUGIN_EVENT_STATISTICS_EXT_HITSTOTAL', 'Wszystkiech trafień'); @define('PLUGIN_EVENT_STATISTICS_EXT_VISSINCE', 'Rozszerzone Statystyki Odwiedzających zbierają dane od'); +@define('PLUGIN_EVENT_STATISTICS_EXT_COUNTDESC','Możesz ujrzeć sporą ilość trafień. Te dane przedstawiają tylko ilość wyświetleń stron. Są uaktualniane przy KAÅ»DEJ odsłonie strony lub jej odświeżeniu. To NIE jest licznik wejść.'); @define('PLUGIN_EVENT_STATISTICS_EXT_VISLATEST', 'Ostatni odwiedzający'); @define('PLUGIN_EVENT_STATISTICS_EXT_TOPREFS', 'Top Referrers'); @define('PLUGIN_EVENT_STATISTICS_EXT_TOPREFS_NONE', 'No referrers has yet been registered.'); +@define('PLUGIN_EVENT_STATISTICS_EXT_DAYGRAPH', 'Wizyty w oparciu o dni miesiąca'); +@define('PLUGIN_EVENT_STATISTICS_EXT_MONTHGRAPH', 'Wizyty w oparciu o miesięce'); @define('PLUGIN_EVENT_STATISTICS_OUT_EXT_STATISTICS', 'Rozszerzone Statystyki Odwiedzających'); -@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS', 'Zablokowanie przeglądarek'); -@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS_DESC', 'Wpisz przeglądarki, wejścia których nie powinny być zliczane. Oddzielaj wpisy znaczkiem "|".'); +@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS1', 'Włącz, nie zliczaj botów'); +@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS2', 'Wyłącz, zliczaj boty'); +@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS', 'Ochrona przed zliczaniem botów'); +@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS_DESC', 'Ustaw "Włącz" by roboty nie były zliczane. Ustaw "Wyłącz" by były zliczane także trafienia dokonywane przez boty. Obecnie ponad 25 botów jest blokowanych.'); @define('PLUGIN_EVENT_STATISTICS_SHOW_LASTENTRY', 'Pokaż datę ostatniego wpisu'); @define('PLUGIN_EVENT_STATISTICS_SHOW_ENTRYCOUNT', 'Pokaż ilość wpisów'); @@ -88,3 +99,5 @@ @define('PLUGIN_EVENT_STATISTICS_SHOW_CURRENTVISITORS', 'Pokaż ilość aktualnie odwiedzających stronę (zbieraj dane z ostatnich 15 minut)'); @define('PLUGIN_EVENT_STATISTICS_TEXT_CURRENTVISITORS', '%s odwiedzający(-ch) online'); + +?> diff --git a/plugins/serendipity_event_statistics/lang_pl.inc.php b/plugins/serendipity_event_statistics/lang_pl.inc.php index 4231de7..458a10c 100644 --- a/plugins/serendipity_event_statistics/lang_pl.inc.php +++ b/plugins/serendipity_event_statistics/lang_pl.inc.php @@ -1,7 +1,7 @@ - * EN-Revision: Revision of lang_en.inc.php */ @@ -12,46 +12,46 @@ @define('PLUGIN_EVENT_STATISTICS_OUT_FIRST_ENTRY', 'Pierwszy wpis'); @define('PLUGIN_EVENT_STATISTICS_OUT_LAST_ENTRY', 'Ostatni wpis'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOTAL_ENTRIES', 'Wszystkich wpisów'); -@define('PLUGIN_EVENT_STATISTICS_OUT_ENTRIES', 'wpis(y/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_ENTRIES', 'wpisów'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOTAL_PUBLIC', ' ... opublikowanych'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOTAL_DRAFTS', ' ... szkiców'); @define('PLUGIN_EVENT_STATISTICS_OUT_PER_AUTHOR', 'Wpisy na u¿ytkownika'); @define('PLUGIN_EVENT_STATISTICS_OUT_CATEGORIES', 'Kategorie'); -@define('PLUGIN_EVENT_STATISTICS_OUT_CATEGORIES2', 'kategorie(-a/-i)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_CATEGORIES2', 'kategorie'); @define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_CATEGORIES', 'Rozk³ad wpisów'); -@define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_CATEGORIES2', 'wpis(y/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_CATEGORIES2', 'wpisów'); @define('PLUGIN_EVENT_STATISTICS_OUT_UPLOADED_IMAGES', 'Uploadowane obrazki'); -@define('PLUGIN_EVENT_STATISTICS_OUT_UPLOADED_IMAGES2', 'obrazek(-ki)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_UPLOADED_IMAGES2', 'obrazków'); @define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_IMAGES', 'Rozk³ad typów obrazków'); -@define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_IMAGES2', 'plik(i/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_DISTRIBUTION_IMAGES2', 'plików'); @define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS', 'Otrzymane komentarze'); -@define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS2', 'komentarz(e/y)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS2', 'komentarze'); @define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS3', 'Najczê¶ciej komentowane wpisy'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOPCOMMENTS', 'Najczê¶ciej komentuj±cy'); @define('PLUGIN_EVENT_STATISTICS_OUT_LINK', 'link'); @define('PLUGIN_EVENT_STATISTICS_OUT_SUBSCRIBERS', 'Subskrybenci'); -@define('PLUGIN_EVENT_STATISTICS_OUT_SUBSCRIBERS2', 'subskrybent(-ci/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_SUBSCRIBERS2', 'subskrybentów'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOPSUBSCRIBERS', 'Najczê¶ciej subskrybowane wpisy'); -@define('PLUGIN_EVENT_STATISTICS_OUT_TOPSUBSCRIBERS2', 'subskrybent(-ci/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_TOPSUBSCRIBERS2', 'subskrybentów'); @define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS', 'Otrzymane ¦lady (Trackbacki)'); -@define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS2', '¶lad(y/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS2', '¶ladów'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOPTRACKBACK', 'Wpisy z najwiêksz± ilo¶ci± ¦ladów'); -@define('PLUGIN_EVENT_STATISTICS_OUT_TOPTRACKBACK2', '¶lad(y/ów)'); +@define('PLUGIN_EVENT_STATISTICS_OUT_TOPTRACKBACK2', '¶ladów'); @define('PLUGIN_EVENT_STATISTICS_OUT_TOPTRACKBACKS3', 'Najczê¶ciej pozostawiaj±cy ¦lady'); @define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS_PER_ARTICLE', '¶rednia ilo¶æ komentarzy na wpis'); @define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS_PER_ARTICLE', '¶rednia ilo¶æ komentarzy na wpis'); @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_DAY', '¶rednia ilo¶æ wpisów na dzieñ'); @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_WEEK', '¶rednia ilo¶æ wpisów na tydzieñ'); @define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_MONTH', '¶rednia ilo¶æ wpisów na miesi±c'); -@define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS_PER_ARTICLE2', 'komentarz(e/y)/wpis'); -@define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS_PER_ARTICLE2', '¶lad(y/ów)/wpis'); -@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_DAY2', 'wpis(y/ów)/dzieñ'); -@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_WEEK2', 'wpis(y/ów)/tydzieñ'); -@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_MONTH2', 'wpis(y/ów)/miesi±c'); +@define('PLUGIN_EVENT_STATISTICS_OUT_COMMENTS_PER_ARTICLE2', 'komentarzy/wpis'); +@define('PLUGIN_EVENT_STATISTICS_OUT_TRACKBACKS_PER_ARTICLE2', '¶ladów/wpis'); +@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_DAY2', 'wpisów/dzieñ'); +@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_WEEK2', 'wpisów/tydzieñ'); +@define('PLUGIN_EVENT_STATISTICS_OUT_ARTICLES_PER_MONTH2', 'wpisów/miesi±c'); @define('PLUGIN_EVENT_STATISTICS_OUT_CHARS', 'Ogólna ilo¶æ znaków we wpisach'); -@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS2', 'znak(i/ów)'); -@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS_PER_ARTICLE', 'Znaków(i/ów) na wpis'); -@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS_PER_ARTICLE2', 'znak(i/ów)/wpis'); +@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS2', 'znaków'); +@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS_PER_ARTICLE', 'Znaków na wpis'); +@define('PLUGIN_EVENT_STATISTICS_OUT_CHARS_PER_ARTICLE2', 'znaków/wpis'); @define('PLUGIN_EVENT_STATISTICS_OUT_LONGEST_ARTICLES', '%s najd³u¿szych wpisów'); @define('PLUGIN_EVENT_STATISTICS_MAX_ITEMS', 'Maksymalna ilo¶æ pozycji'); @define('PLUGIN_EVENT_STATISTICS_MAX_ITEMS_DESC', 'Jak wiele pozycji wy¶wietliæ dla ka¿dej warto¶ci ujêtej w statystykach? (Standardowo: 20)'); @@ -62,16 +62,27 @@ @define('PLUGIN_EVENT_STATISTICS_EXT_OPT1', 'Nie!'); @define('PLUGIN_EVENT_STATISTICS_EXT_OPT2', 'Tak, na dole strony ze statystykami'); @define('PLUGIN_EVENT_STATISTICS_EXT_OPT3', 'Tak, na górze strony ze statystykami'); +@define('PLUGIN_EVENT_STATISTICS_EXT_ALL', 'Ustaw na "Nie" by pokazywaæ tylko statystki odwiedzaj±cych'); +@define('PLUGIN_EVENT_STATISTICS_EXT_ALL_DESC', 'Pokazywaæ wszystko? (Standardowo: Nie)'); +@define('PLUGIN_EVENT_STATISTICS_EXT_ALL1', 'Nie, ukryj wszystko prócz licznika'); +@define('PLUGIN_EVENT_STATISTICS_EXT_ALL2', 'Tak, pokazuj wszystkie statystyki'); @define('PLUGIN_EVENT_STATISTICS_EXT_VISITORS', 'Ilo¶æ odwiedzaj±cych'); @define('PLUGIN_EVENT_STATISTICS_EXT_VISTODAY', 'Ilo¶æ odwiedzaj±cych dzisiaj'); @define('PLUGIN_EVENT_STATISTICS_EXT_VISTOTAL', 'Ogólna ilo¶æ odwiedzin'); +@define('PLUGIN_EVENT_STATISTICS_EXT_HITSTODAY', 'Trafieñ dzisiaj'); +@define('PLUGIN_EVENT_STATISTICS_EXT_HITSTOTAL', 'Wszystkiech trafieñ'); @define('PLUGIN_EVENT_STATISTICS_EXT_VISSINCE', 'Rozszerzone Statystyki Odwiedzaj±cych zbieraj± dane od'); +@define('PLUGIN_EVENT_STATISTICS_EXT_COUNTDESC','Mo¿esz ujrzeæ spor± ilo¶æ trafieñ. Te dane przedstawiaj± tylko ilo¶æ wy¶wietleñ stron. S± uaktualniane przy KA¯DEJ ods³onie strony lub jej od¶wie¿eniu. To NIE jest licznik wej¶æ.'); @define('PLUGIN_EVENT_STATISTICS_EXT_VISLATEST', 'Ostatni odwiedzaj±cy'); @define('PLUGIN_EVENT_STATISTICS_EXT_TOPREFS', 'Top Referrers'); @define('PLUGIN_EVENT_STATISTICS_EXT_TOPREFS_NONE', 'No referrers has yet been registered.'); +@define('PLUGIN_EVENT_STATISTICS_EXT_DAYGRAPH', 'Wizyty w oparciu o dni miesi±ca'); +@define('PLUGIN_EVENT_STATISTICS_EXT_MONTHGRAPH', 'Wizyty w oparciu o miesiêce'); @define('PLUGIN_EVENT_STATISTICS_OUT_EXT_STATISTICS', 'Rozszerzone Statystyki Odwiedzaj±cych'); -@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS', 'Zablokowanie przegl±darek'); -@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS_DESC', 'Wpisz przegl±darki, wej¶cia których nie powinny byæ zliczane. Oddzielaj wpisy znaczkiem "|".'); +@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS1', 'W³±cz, nie zliczaj botów'); +@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS2', 'Wy³±cz, zliczaj boty'); +@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS', 'Ochrona przed zliczaniem botów'); +@define('PLUGIN_EVENT_STATISTICS_BANNED_HOSTS_DESC', 'Ustaw "W³±cz" by roboty nie by³y zliczane. Ustaw "Wy³±cz" by by³y zliczane tak¿e trafienia dokonywane przez boty. Obecnie ponad 25 botów jest blokowanych.'); @define('PLUGIN_EVENT_STATISTICS_SHOW_LASTENTRY', 'Poka¿ datê ostatniego wpisu'); @define('PLUGIN_EVENT_STATISTICS_SHOW_ENTRYCOUNT', 'Poka¿ ilo¶æ wpisów'); @@ -88,3 +99,5 @@ @define('PLUGIN_EVENT_STATISTICS_SHOW_CURRENTVISITORS', 'Poka¿ ilo¶æ aktualnie odwiedzaj±cych stronê (zbieraj dane z ostatnich 15 minut)'); @define('PLUGIN_EVENT_STATISTICS_TEXT_CURRENTVISITORS', '%s odwiedzaj±cy(-ch) online'); + +?>