-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from phpbbmodders/l10n_main
New Crowdin updates
- Loading branch information
Showing
3 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.', | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.', | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.', | ||
]); |