Skip to content

Commit

Permalink
Merge pull request #36 from VSEphpbb/release
Browse files Browse the repository at this point in the history
Release Prep 1.0.1
  • Loading branch information
michaelcullum committed Nov 29, 2014
2 parents 90e8c82 + d40469d commit b2f2176
Show file tree
Hide file tree
Showing 12 changed files with 502 additions and 37 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
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
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "phpbb-extension",
"description": "An extension that allows administrators to easily add their Google Analytics tracking code to their phpBB forum.",
"homepage": "https://phpbb.com",
"version": "1.0.0",
"version": "1.0.1",
"keywords": ["phpbb", "extension", "google", "analytics"],
"license": "GPL-2.0",
"authors": [
Expand Down
113 changes: 77 additions & 36 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

45 changes: 45 additions & 0 deletions language/ar/googleanalytics_acp.php
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”.',
));
45 changes: 45 additions & 0 deletions language/es/googleanalytics_acp.php
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”.',
));
Loading

0 comments on commit b2f2176

Please sign in to comment.