Skip to content

Commit

Permalink
Merge pull request #1 from phpbbmodders/l10n_main
Browse files Browse the repository at this point in the history
New Crowdin updates
  • Loading branch information
bonelifer authored Jul 30, 2024
2 parents d14d79f + 843c820 commit b640e2b
Show file tree
Hide file tree
Showing 3 changed files with 126 additions and 0 deletions.
42 changes: 42 additions & 0 deletions language/es/common.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php
/**
*
* Disable Ban Groups extension for the phpBB Forum Software package
*
* @copyright (c) 2024, Kailey Snay, https://www.snayhomelab.com/
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

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

// 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, [
'CANNOT_BAN_GROUP' => 'One or more users in the ban list belong to a group that cannot be banned.',

'GROUP_BAN' => 'Group ban',
'GROUP_BAN_EXPLAIN' => 'Users in this group can be banned. Founders can ban all users.',
]);
42 changes: 42 additions & 0 deletions language/es_x_tu/common.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php
/**
*
* Disable Ban Groups extension for the phpBB Forum Software package
*
* @copyright (c) 2024, Kailey Snay, https://www.snayhomelab.com/
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

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

// 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, [
'CANNOT_BAN_GROUP' => 'One or more users in the ban list belong to a group that cannot be banned.',

'GROUP_BAN' => 'Group ban',
'GROUP_BAN_EXPLAIN' => 'Users in this group can be banned. Founders can ban all users.',
]);
42 changes: 42 additions & 0 deletions language/pt_br/common.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php
/**
*
* Disable Ban Groups extension for the phpBB Forum Software package
*
* @copyright (c) 2024, Kailey Snay, https://www.snayhomelab.com/
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

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

// 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, [
'CANNOT_BAN_GROUP' => 'One or more users in the ban list belong to a group that cannot be banned.',

'GROUP_BAN' => 'Group ban',
'GROUP_BAN_EXPLAIN' => 'Users in this group can be banned. Founders can ban all users.',
]);

0 comments on commit b640e2b

Please sign in to comment.