Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create info_acp_ajaxshoutbox.php #81

Open
wants to merge 1 commit into
base: develop-stable
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions language/pl/info_acp_ajaxshoutbox.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<?php
/**
*
* Ajax Shoutbox extension for the phpBB Forum Software package.
*
* @copyright (c) 2014 Paul Sohier <http://www.ajax-shoutbox.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//

$lang = array_merge(
$lang, array(
'LOG_AJAX_SHOUTBOX_ERROR' => '<strong>Wystąpił błąd podczas połączenia z serwerem shoutboxa</strong>',
'LOG_AJAX_SHOUTBOX_PRUNED' => '<strong>Wyczyść shoutbox i usuń %d wiadomości</strong>',
'LOG_AJAX_SHOUTBOX_CONFIG_SETTINGS' => '<strong>Ustawienia Ajax Shoutbox zostały zaktualizowane</strong>',

'ACP_AJAX_SHOUTBOX' => 'Ajax Shoutbox',
'ACP_AJAX_SHOUTBOX_SETTINGS' => 'Ustawienia Ajax Shoutboxa',

)
);