-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix additional new language file bugs
- Loading branch information
Showing
2 changed files
with
91 additions
and
91 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 |
---|---|---|
@@ -1,44 +1,44 @@ | ||
<?php | ||
/** | ||
* | ||
* Auto Groups extension for the phpBB Forum Software package. | ||
* | ||
* @copyright (c) 2014 phpBB Limited <https://www.phpbb.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( | ||
// Notifications | ||
'AUTOGROUPS_NOTIFICATION_GROUP_ADDED' => '<strong>Grup güncellemesi</strong>: %1$s grubuna eklendiniz.', | ||
'AUTOGROUPS_NOTIFICATION_GROUP_REMOVED' => '<strong>Grup güncellemesi</strong>: %1$s grubundan kaldırıldınız.', | ||
)); | ||
<?php | ||
/** | ||
* | ||
* Auto Groups extension for the phpBB Forum Software package. | ||
* | ||
* @copyright (c) 2014 phpBB Limited <https://www.phpbb.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( | ||
// Notifications | ||
'AUTOGROUPS_NOTIFICATION_GROUP_ADDED' => '<strong>Grup güncellemesi</strong>: %1$s grubuna eklendiniz.', | ||
'AUTOGROUPS_NOTIFICATION_GROUP_REMOVED' => '<strong>Grup güncellemesi</strong>: %1$s grubundan kaldırıldınız.', | ||
)); |
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 |
---|---|---|
@@ -1,47 +1,47 @@ | ||
<?php | ||
/** | ||
* | ||
* Auto Groups extension for the phpBB Forum Software package. | ||
* | ||
* @copyright (c) 2014 phpBB Limited <https://www.phpbb.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( | ||
'ACP_AUTOGROUPS_MANAGE' => 'Otomatik Grupları Yönet', | ||
'AUTOGROUPS_TYPE_NOT_EXIST' => 'Otomatik Grup tip `%1$s` mevcut değil.', | ||
|
||
// Logs | ||
'ACP_AUTOGROUPS_SAVED_LOG' => '<strong>Bir Otomatik Grup ayarı kaydedildi</strong>', | ||
'ACP_AUTOGROUPS_DELETE_LOG' => '<strong>Bir Otomatik Grup ayarı silindi</strong>', | ||
)); | ||
<?php | ||
/** | ||
* | ||
* Auto Groups extension for the phpBB Forum Software package. | ||
* | ||
* @copyright (c) 2014 phpBB Limited <https://www.phpbb.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( | ||
'ACP_AUTOGROUPS_MANAGE' => 'Otomatik Grupları Yönet', | ||
'AUTOGROUPS_TYPE_NOT_EXIST' => 'Otomatik Grup tip `%1$s` mevcut değil.', | ||
|
||
// Logs | ||
'ACP_AUTOGROUPS_SAVED_LOG' => '<strong>Bir Otomatik Grup ayarı kaydedildi</strong>', | ||
'ACP_AUTOGROUPS_DELETE_LOG' => '<strong>Bir Otomatik Grup ayarı silindi</strong>', | ||
)); |