-
Notifications
You must be signed in to change notification settings - Fork 22
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 #36 from VSEphpbb/release
Release Prep 1.0.1
- Loading branch information
Showing
12 changed files
with
502 additions
and
37 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,19 @@ | ||
# Changelog | ||
|
||
## 1.0.1 - 2014-11-28 | ||
|
||
- Fixed issues in the README.md | ||
- Added a new template event `phpbb_googleanalytics_alter_ga_requirements` which may be used by other extensions to add more tracking options (like the ability to track advertisements). See here for a example: https://support.google.com/analytics/answer/2444872?hl=en&utm_id=ad | ||
- Added Arabic language pack | ||
- Added Dutch language pack | ||
- Added French language pack | ||
- Added Mandarin Chinese language pack | ||
- Added Polish language pack | ||
- Added Portuguese language pack | ||
- Added Romanian language pack | ||
- Added Spanish language pack | ||
- Added Swedish language pack | ||
|
||
## 1.0.0 - 2014-10-21 | ||
|
||
- First release |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,45 @@ | ||
<?php | ||
/** | ||
* | ||
* Google Analytics extension for the phpBB Forum Software package. | ||
* Arabic translation by dzyasseron (http://tajribaty.com/phpbb) for phpbbarabia.com :) | ||
* | ||
* @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_GOOGLEANALYTICS_ID' => 'Google Analytics ID', | ||
'ACP_GOOGLEANALYTICS_ID_EXPLAIN' => 'أكتب كود Google Analytics ID الخاص بك، مثل: <samp>UA-0000000-00</samp>.', | ||
'ACP_GOOGLEANALYTICS_ID_INVALID' => '“%s” كود Google Analytics ID الذي أدخلته غير صالح.<br />يجب أن يكون على الشكل “UA-0000000-00”.', | ||
)); |
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,45 @@ | ||
<?php | ||
/** | ||
* | ||
* Google Analytics extension for the phpBB Forum Software package. | ||
* Spanish translation by Raul [ThE KuKa] (www.phpbb-es.com) | ||
* | ||
* @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_GOOGLEANALYTICS_ID' => 'ID de Google Analytics', | ||
'ACP_GOOGLEANALYTICS_ID_EXPLAIN' => 'Introduzca su código ID de Google Analytics, por ejemplo: <samp>UA-0000000-00</samp>.', | ||
'ACP_GOOGLEANALYTICS_ID_INVALID' => '“%s” no es un código ID válido de Google Analytics.<br />Debería ser de esta forma “UA-0000000-00”.', | ||
)); |
Oops, something went wrong.