Skip to content

Commit

Permalink
Fix additional new language file bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
iMattPro committed Mar 27, 2019
1 parent a630c54 commit 9e61930
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 91 deletions.
88 changes: 44 additions & 44 deletions language/tr/autogroups_common.php
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.',
));
94 changes: 47 additions & 47 deletions language/tr/info_acp_autogroups.php
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>',
));

0 comments on commit 9e61930

Please sign in to comment.