summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Chatzimichos <tampakrap@gentoo.org>2010-10-27 11:13:08 +0300
committerTheo Chatzimichos <tampakrap@gentoo.org>2010-10-27 11:13:08 +0300
commite7fac954e7932db9a62c717ba0acf078401fbe96 (patch)
tree9ef7cb9a42ea18a659b5d8857e6a7a282d0c9463 /plugins/google-integration-toolkit
parentsmall fixes in update script (diff)
downloadblogs-gentoo-e7fac954e7932db9a62c717ba0acf078401fbe96.tar.gz
blogs-gentoo-e7fac954e7932db9a62c717ba0acf078401fbe96.tar.bz2
blogs-gentoo-e7fac954e7932db9a62c717ba0acf078401fbe96.zip
Add the following plugins:
- aksimet - clean archives reloaded - google intergration toolkit - openid - smart youtube - wp stats - wp-syntax - wp-security scan
Diffstat (limited to 'plugins/google-integration-toolkit')
-rwxr-xr-xplugins/google-integration-toolkit/google-integration-toolkit.php477
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-be_BY.mobin0 -> 5380 bytes
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-be_BY.po163
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-da_DK.mobin0 -> 6176 bytes
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-da_DK.po172
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-it_IT.mobin0 -> 4767 bytes
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-it_IT.po163
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-nl_NL.mobin0 -> 6743 bytes
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-nl_NL.po189
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-pl_PL.mobin0 -> 6828 bytes
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-pl_PL.po202
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-ru_RU.mobin0 -> 5432 bytes
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-ru_RU.po163
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-zh_CN.mobin0 -> 4469 bytes
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit-zh_CN.po212
-rwxr-xr-xplugins/google-integration-toolkit/lang/google-integration-toolkit.pot216
-rwxr-xr-xplugins/google-integration-toolkit/readme.html115
-rwxr-xr-xplugins/google-integration-toolkit/readme.txt101
18 files changed, 2173 insertions, 0 deletions
diff --git a/plugins/google-integration-toolkit/google-integration-toolkit.php b/plugins/google-integration-toolkit/google-integration-toolkit.php
new file mode 100755
index 00000000..7460c139
--- /dev/null
+++ b/plugins/google-integration-toolkit/google-integration-toolkit.php
@@ -0,0 +1,477 @@
+<?php
+/*
+Plugin Name: Google Integration Toolkit
+Plugin URI: http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/
+Description: Integrate Google services (Analytics, Webmaster Tools, etc.) with Your Blog.
+Author: Daniel Frużyński
+Version: 1.4
+Author URI: http://www.poradnik-webmastera.com/
+Text Domain: google-integration-toolkit
+*/
+
+/* Copyright 2009-2010 Daniel Frużyński (email : daniel [A-T] poradnik-webmastera.com)
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+
+
+if ( !class_exists( 'GoogleIntegrationToolkit' ) ) {
+
+class GoogleIntegrationToolkit {
+ // Constructor
+ function GoogleIntegrationToolkit() {
+ // Initialisation
+ add_action( 'init', array( &$this, 'init' ) );
+ add_action( 'admin_init', array( &$this, 'admin_init' ) );
+
+ // Add option to Admin menu
+ add_action( 'admin_menu', array( &$this, 'admin_menu' ) );
+
+ // URL handler for GWT verification
+ add_filter( 'status_header', array( &$this, 'status_header' ), 1, 2 );
+
+ // Extra entries in <head> section
+ add_action( 'wp_head', array( &$this, 'wp_head' ) );
+
+ // Extra content just before </body>
+ add_action( 'wp_footer', array( &$this, 'wp_footer' ) );
+
+ // RSS tagging
+ add_filter( 'the_permalink_rss', array( &$this, 'the_permalink_rss' ) );
+ add_filter( 'the_content', array( &$this, 'the_content' ) );
+
+ // Modify post excerpt and comments for various reasons
+ add_filter( 'the_excerpt', array( &$this, 'the_excerpt' ) );
+
+ // Modify post content and comments for various reasons
+ add_filter( 'comment_text', array( &$this, 'comment_text' ) );
+ }
+
+ // Initialise plugin
+ function init() {
+ load_plugin_textdomain( 'google-integration-toolkit', false, dirname( plugin_basename( __FILE__ ) ).'/lang' );
+ }
+
+ // Plugin initialisation - admin
+ function admin_init() {
+ // Register plugin options
+ register_setting( 'google-integration-toolkit', 'git_gwt_mode', array( &$this, 'sanitize_gwt_mode' ) );
+ register_setting( 'google-integration-toolkit', 'git_gwt_meta', array( &$this, 'sanitize_metaverify' ) );
+ register_setting( 'google-integration-toolkit', 'git_gwt_filename', 'trim' );
+ register_setting( 'google-integration-toolkit', 'git_analytics_id', 'trim' );
+ register_setting( 'google-integration-toolkit', 'git_analytics_adsense', array( &$this, 'sanitize_bool' ) );
+ register_setting( 'google-integration-toolkit', 'git_rss_tagging', array( &$this, 'sanitize_bool' ) );
+ register_setting( 'google-integration-toolkit', 'git_rss_tag_source', 'trim' );
+ register_setting( 'google-integration-toolkit', 'git_rss_tag_medium', 'trim' );
+ register_setting( 'google-integration-toolkit', 'git_rss_tag_campaign', 'trim' );
+ register_setting( 'google-integration-toolkit', 'git_adsense_tag_posts', array( &$this, 'sanitize_bool' ) );
+ register_setting( 'google-integration-toolkit', 'git_adsense_tag_comments', array( &$this, 'sanitize_bool' ) );
+ register_setting( 'google-integration-toolkit', 'git_analytics_track_404', array( &$this, 'sanitize_bool' ) );
+ register_setting( 'google-integration-toolkit', 'git_analytics_track_404_prefix', 'trim' );
+ }
+
+ // Add Admin menu option
+ function admin_menu() {
+ // admin_init is called later, so need to use proxy method here
+ add_submenu_page( 'options-general.php', 'Google Integration Toolkit',
+ 'Google Integration Toolkit', 'manage_options', __FILE__, array( $this, 'options_panel' ) );
+ }
+
+ // URL handler for GWT verification
+ function status_header( $status_header, $header ) {
+ if ( ( $header == 404 ) && ( get_option( 'git_gwt_mode' ) == 'file' ) ) {
+ $filename = get_option( 'git_gwt_filename' );
+ if ( $filename != '' ) {
+ // Extract root dir from blog url
+ $root = '/';
+ if ( preg_match( '#^http://[^/]+(/.+)$#', get_option( 'siteurl' ), $matches ) ) {
+ $root = $matches[1];
+ }
+ // Make sure it ends with slash
+ if ( $root[ strlen($root) - 1 ] != '/' ) {
+ $root .= '/';
+ }
+ // Check if request is for GWT verification file
+ if ( $root.$filename == $_SERVER['REQUEST_URI'] ) {
+ //wp_die( 'Welcome, Google!', '200 OK', array( 'response' => 200 ) );
+ echo 'google-site-verification: ', $filename;
+ exit();
+ }
+ }
+ }
+
+ return $status_header;
+ }
+
+ // Extra entries in <head> section
+ function wp_head() {
+ // Google Webmasters Tools
+ $gwt_mode = get_option( 'git_gwt_mode' );
+ $meta = get_option( 'git_gwt_meta' );
+ if ( ( $gwt_mode == 'meta2' ) && ( $meta != '' ) ) {
+ echo '<meta name="google-site-verification" content="', $meta, '" />', "\n";
+ }
+ elseif ( ( $gwt_mode == 'meta' ) && ( $meta != '' ) ) {
+ echo '<meta name="verify-v1" content="', $meta, '" />', "\n";
+ }
+
+ // Google Analytics integration with Google AdSense
+ $analytics_id = get_option( 'git_analytics_id' );
+ if ( ( $analytics_id != '' ) && get_option( 'git_analytics_adsense' ) ) {
+ echo <<<EOT
+<script type="text/javascript">
+window.google_analytics_uacct = "$analytics_id";
+</script>
+
+EOT;
+ }
+ }
+
+ // Extra content just before </body>
+ function wp_footer() {
+ $analytics_id = get_option( 'git_analytics_id' );
+ if ( $analytics_id != '' ) {
+ echo <<<EOT
+<script type="text/javascript">
+var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
+document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
+</script>
+<script type="text/javascript">
+try {
+var pageTracker = _gat._getTracker("$analytics_id");
+
+EOT;
+ if ( is_404() && get_option( 'git_analytics_track_404' ) ) {
+ echo 'pageTracker._trackPageview("' . get_option( 'git_analytics_track_404_prefix' ) .
+ '?page=" + document.location.pathname + document.location.search + "&from=" + document.referrer);', "\n";
+ } else {
+ echo 'pageTracker._setAllowAnchor(true);', "\n";
+ echo 'pageTracker._trackPageview();', "\n";
+ }
+ echo <<<EOT
+} catch(err) {}</script>
+
+EOT;
+ }
+ }
+
+ // Add tags to the rss links
+ function tag_rss_link( $link, $use_hash ) {
+ $tag = 'utm_source='.get_option( 'git_rss_tag_source' )
+ .'&amp;utm_medium='.get_option( 'git_rss_tag_medium' )
+ .'&amp;utm_campaign='.get_option( 'git_rss_tag_campaign' );
+
+ if ( $use_hash ) {
+ return $link.'#'.$tag;
+ } elseif ( strpos( $link, '?' ) === false ) {
+ return $link.'?'.$tag;
+ } else {
+ return $link.'&amp;'.$tag;
+ }
+ }
+
+ // RSS tagging - tag links in RSS
+ function the_permalink_rss( $link ) {
+ if ( get_option( 'git_rss_tagging' ) ) {
+ return $this->tag_rss_link( $link, true );
+ } else {
+ return $link;
+ }
+ }
+
+ // Helper function for tagging links in RSS - tag links in text
+ function update_rss_link( $matches ) {
+ $url = $matches[2];
+ if ( preg_match( '/^https?:/', $url ) ) {
+ // Tag links from this blog only
+ $blogurl = get_option( 'siteurl' );
+ if ( substr( $url, 0, strlen( $blogurl ) ) == $blogurl ) {
+ return $matches[1].$this->tag_rss_link( $url, true );
+ } else {
+ return $matches[1].$url;
+ }
+ } else {
+ return $matches[1].$this->tag_rss_link( $url, true );
+ }
+ }
+
+ // Content modification function
+ function the_content( $content ) {
+ // RSS tagging - tag links in RSS' text
+ if ( is_feed() && get_option( 'git_rss_tagging' ) ) {
+ $content = preg_replace_callback( '/(<\s*a\s[^>]*?\bhref\s*=\s*")([^"]+)/',
+ array( &$this, 'update_rss_link' ), $content );
+ }
+
+ // AdSense section targetting
+ if ( !is_feed() && get_option( 'git_adsense_tag_posts' ) ) {
+ return '<!-- google_ad_section_start -->'.$content.'<!-- google_ad_section_end -->';
+ }
+
+ return $content;
+ }
+
+ // Content excerpts modification function
+ function the_excerpt( $content ) {
+ // AdSense section targetting
+ if ( !is_feed() && get_option( 'git_adsense_tag_posts' ) ) {
+ return '<!-- google_ad_section_start -->'.$content.'<!-- google_ad_section_end -->';
+ }
+
+ return $content;
+ }
+
+ // Comments modification function
+ function comment_text( $content ) {
+ // AdSense section targetting
+ if ( !is_feed() && get_option( 'git_adsense_tag_comments' ) ) {
+ return '<!-- google_ad_section_start -->'.$content.'<!-- google_ad_section_end -->';
+ }
+
+ return $content;
+ }
+
+ // Handle options panel
+ function options_panel() {
+ $message = null;
+ if ( isset($_POST['action']) ) {
+ check_admin_referer( 'google-integration-toolkit-options' );
+ $message = __('Configuration has been saved.', 'google-integration-toolkit');
+ echo '<div id="message" class="updated fade"><p>', $message, '</p></div>', "\n";
+ }
+
+ // HTML settings form here
+?>
+<div class="wrap">
+<h2><?php _e('Google Integration Toolkit - Options', 'google-integration-toolkit'); ?></h2>
+
+<form name="dofollow" action="options.php" method="post">
+<?php settings_fields( 'google-integration-toolkit' ); ?>
+<table class="form-table">
+
+<!-- Google Webmasters Tools -->
+<tr><th colspan="2"><h3><?php _e('Google Webmasters Tools:', 'google-integration-toolkit'); ?></h3></th></tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label><?php _e('Page verification method:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="radio" id="git_gwt_mode_meta2" name="git_gwt_mode" value="meta2" <?php checked( 'meta2', get_option( 'git_gwt_mode' ) ); ?> /><label for="git_gwt_mode_meta2"><?php _e('Meta tag <code>&lt;meta name=&quot;google-site-verification&quot; content=&quot;...&quot; /&gt;</code>', 'google-integration-toolkit'); ?></label><br />
+<input type="radio" id="git_gwt_mode_meta" name="git_gwt_mode" value="meta" <?php checked( 'meta', get_option( 'git_gwt_mode' ) ); ?> /><label for="git_gwt_mode_meta"><?php _e('Meta tag <code>&lt;meta name=&quot;verify-v1&quot; content=&quot;...&quot; /&gt;</code>', 'google-integration-toolkit'); ?></label><br />
+<input type="radio" id="git_gwt_mode_file" name="git_gwt_mode" value="file" <?php checked( 'file', get_option( 'git_gwt_mode' ) ); ?> /><label for="git_gwt_mode_file"><?php _e('File', 'google-integration-toolkit'); ?></label><br />
+<?php _e('<b>Note:</b> Please use <code>google-site-verification</code> meta tag or file to verify new websites. Meta tag <code>verify-v1</code> is supported for backward compatibility only.', 'google-integration-toolkit'); ?>
+</td>
+</tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_gwt_meta"><?php _e('Meta tag value:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="text" maxlength="100" size="50" id="git_gwt_meta" name="git_gwt_meta" value="<?php echo stripcslashes( get_option( 'git_gwt_meta' ) ); ?>" /><br />
+<?php _e('This tag looks like this:', 'google-integration-toolkit'); ?><br />
+<code>&lt;meta name=&quot;google-site-verification&quot; content=&quot;<b style="background-color:yellow">abcdefghijklmnopqrstuvwzyz123456789abcdefghi</b>&quot; /&gt;</code><br />
+<?php _e('or', 'google-integration-toolkit'); ?><br />
+<code>&lt;meta name=&quot;verify-v1&quot; content=&quot;<b style="background-color:yellow">abcdefghijklmnopqrstuvwzyz123456789abcdefghi</b>&quot; /&gt;</code><br />
+<?php _e('Please put <b>marked part only</b> to the field above.', 'google-integration-toolkit'); ?>
+</td>
+</tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_gwt_filename"><?php _e('Verification file name:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="text" maxlength="50" size="30" id="git_gwt_filename" name="git_gwt_filename" value="<?php echo stripcslashes( get_option( 'git_gwt_filename' ) ); ?>" /><br />
+<?php printf( __('Name of this file starts with \'google\', e.g. %s', 'google-integration-toolkit'), '<code><b>googleabcdefghijklmnop.html</b></code>' ); ?>
+</td>
+</tr>
+
+<!-- Google Analytics -->
+<tr><th colspan="2"><h3><?php _e('Google Analytics:', 'google-integration-toolkit'); ?></h3></th></tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_analytics_id"><?php _e('Google Analytics ID:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="text" maxlength="15" size="15" id="git_analytics_id" name="git_analytics_id" value="<?php echo stripcslashes( get_option( 'git_analytics_id' ) ); ?>" /><br />
+<?php _e('Please find following line in your GA tracking code and copy bolded part to the field above:', 'google-integration-toolkit'); ?><br />
+<code>var pageTracker = _gat._getTracker(&quot;<b>UA-0000000-0</b>&quot;);</code>
+</td>
+</tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_analytics_adsense"><?php _e('Enable Google AdSense integration:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="checkbox" id="git_analytics_adsense" name="git_analytics_adsense" value="yes" <?php checked( true, get_option( 'git_analytics_adsense' ) ); ?> />
+</td>
+</tr>
+
+<!-- RSS/Atom Feeds tagging -->
+<tr><th colspan="2"><h3><?php _e('RSS/Atom Feeds tagging:', 'google-integration-toolkit'); ?></h3></th></tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_rss_tagging"><?php _e('Enable RSS/Atom Feeds tagging:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="checkbox" id="git_rss_tagging" name="git_rss_tagging" value="yes" <?php checked( true, get_option( 'git_rss_tagging' ) ); ?> /><br />
+<?php _e('This option tags all links in RSS/Atom feeds. This allows to track visitors from your feeds using Google Analytics.', 'google-integration-toolkit'); ?>
+</td>
+</tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_rss_tag_source"><?php _e('Source name:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="text" maxlength="20" size="20" id="git_rss_tag_source" name="git_rss_tag_source" value="<?php echo stripcslashes( get_option( 'git_rss_tag_source' ) ); ?>" /><br />
+<?php _e('This value will be used as a value for the <code>utm_source</code> parameter.', 'google-integration-toolkit'); ?>
+</td>
+</tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_rss_tag_medium"><?php _e('Medium name:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="text" maxlength="20" size="20" id="git_rss_tag_medium" name="git_rss_tag_medium" value="<?php echo stripcslashes( get_option( 'git_rss_tag_medium' ) ); ?>" /><br />
+<?php _e('This value will be used as a value for the <code>utm_medium</code> parameter.', 'google-integration-toolkit'); ?>
+</td>
+</tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_rss_tag_campaign"><?php _e('Campaign name:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="text" maxlength="20" size="20" id="git_rss_tag_campaign" name="git_rss_tag_campaign" value="<?php echo stripcslashes( get_option( 'git_rss_tag_campaign' ) ); ?>" /><br />
+<?php _e('This value will be used as a value for the <code>utm_campaign</code> parameter.', 'google-integration-toolkit'); ?>
+</td>
+</tr>
+
+<!-- AdSense Section Targeting -->
+<tr><th colspan="2"><h3><?php _e('AdSense Section Targeting:', 'google-integration-toolkit'); ?></h3></th></tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_adsense_tag_posts"><?php _e('Enable AdSense Section Targetting for Content:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="checkbox" id="git_adsense_tag_posts" name="git_adsense_tag_posts" value="yes" <?php checked( true, get_option( 'git_adsense_tag_posts' ) ); ?> /><br />
+<?php _e('This option ads special HTML comment tags around posts, pages and excerpts. This may improve AdSense ads targeting. You can find more informations <a href="https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168">here</a>.', 'google-integration-toolkit'); ?>
+</td>
+</tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_adsense_tag_comments"><?php _e('Enable AdSense Section Targetting for Comments:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="checkbox" id="git_adsense_tag_comments" name="git_adsense_tag_comments" value="yes" <?php checked( true, get_option( 'git_adsense_tag_comments' ) ); ?> /><br />
+<?php _e('This option ads special HTML comment tags around comments.', 'google-integration-toolkit'); ?>
+</td>
+</tr>
+
+<!-- 404 errors tracking -->
+<tr><th colspan="2"><h3><?php _e('404 errors tracking:', 'google-integration-toolkit'); ?></h3></th></tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_analytics_track_404"><?php _e('Track 404 errors with Google Analytics:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="checkbox" id="git_analytics_track_404" name="git_analytics_track_404" value="yes" <?php checked( true, get_option( 'git_analytics_track_404' ) ); ?> /><br /><?php _e('Enable this option to track "Page not found" errors using Google Analytics', 'google-integration-toolkit'); ?>
+</td>
+</tr>
+
+<tr>
+<th scope="row" style="text-align:right; vertical-align:top;">
+<label for="git_analytics_track_404_prefix"><?php _e('URL prefix:', 'google-integration-toolkit'); ?></label>
+</th>
+<td>
+<input type="text" maxlength="100" size="15" id="git_analytics_track_404_prefix" name="git_analytics_track_404_prefix" value="<?php echo stripcslashes( get_option( 'git_analytics_track_404_prefix' ) ); ?>" /><br />
+<?php _e('All 404 errors will appear in Analytics Reports as visits to URL like <code>/404.html?page=[pagename.html?queryparameter]&from=[referrer]</code>, where <code>[pagename.html?queryparameters]</code> is the missing page name and referrer is the page URL from where the user reached the 404 page. You can change prefix <code>/404.html</code> to something else using this option.', 'google-integration-toolkit'); ?>
+</td>
+</tr>
+
+</table>
+
+<p class="submit">
+<input type="hidden" name="action" value="update" />
+<input type="submit" name="Submit" value="<?php _e('Save settings', 'google-integration-toolkit'); ?>" />
+</p>
+
+</form>
+</div>
+<?php
+ }
+
+ // Sanitize GWT mode
+ function sanitize_gwt_mode( $mode ) {
+ if ( ( $mode != 'meta' ) && ( $mode != 'meta2' ) && ( $mode != 'file' ) ) {
+ return 'meta2';
+ } else {
+ return $mode;
+ }
+ }
+
+ // Sanitize bools (checkboxes)
+ function sanitize_bool( $value ) {
+ if ( isset( $value ) && ( $value == 'yes' ) ) {
+ return true;
+ } else {
+ return false;
+ }
+ }
+
+ // Sanitize meta verify tag for GWT
+ function sanitize_metaverify( $value ) {
+ $value = trim( $value );
+
+ // Check if someone pasted whole verification meta tag
+ if ( preg_match( '/<meta\s+name="(?:google-site-verification|verify-v1)"\s+content="([^"]+)"/i',
+ $value, $matches ) ) {
+ // Looks that someone does not like to read too much...
+ $value = $matches[1];
+ }
+
+ return $value;
+ }
+}
+
+add_option( 'git_gwt_mode', 'meta2' ); // GWT: add meta tag 'google-site-verification' ('meta2') or use file ('file'). 'meta'/'verify-v1' is supported for backward compatibility only
+add_option( 'git_gwt_meta', '' ); // GWT ID
+add_option( 'git_gwt_filename', '' ); // GWT FileName
+add_option( 'git_analytics_id', '' ); // Analytics ID
+add_option( 'git_analytics_adsense', true ); // Enable Analytics-AdSense integration
+add_option( 'git_rss_tagging', true ); // Enable RSS links tagging
+add_option( 'git_rss_tag_source', 'feed' ); // RSS tags - Campaign Source
+add_option( 'git_rss_tag_medium', 'feed' ); // RSS tags - Campaign Medium
+add_option( 'git_rss_tag_campaign', 'feed' ); // RSS tags - Campaign Name
+add_option( 'git_adsense_tag_posts', false ); // AdSense Section Targetting - posts
+add_option( 'git_adsense_tag_comments', false ); // AdSense Section Targetting - comments
+add_option( 'git_analytics_track_404', false ); // Track 404 errors using Analytics
+add_option( 'git_analytics_track_404_prefix', '/404.html' ); // Prefix for 404 tracking using Analytics
+
+$wp_google_integration_toolkit = new GoogleIntegrationToolkit();
+
+}
+
+?> \ No newline at end of file
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-be_BY.mo b/plugins/google-integration-toolkit/lang/google-integration-toolkit-be_BY.mo
new file mode 100755
index 00000000..362932bd
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-be_BY.mo
Binary files differ
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-be_BY.po b/plugins/google-integration-toolkit/lang/google-integration-toolkit-be_BY.po
new file mode 100755
index 00000000..999b24ed
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-be_BY.po
@@ -0,0 +1,163 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Tweet This\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-07-30 00:38-0000\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Fat Cow <zhr@tut.by>\n"
+"Language-Team: ilyuha <iliamrv@ya.ru>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Belarusian\n"
+"X-Poedit-Country: BELARUS\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e\n"
+"X-Poedit-Basepath: .\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: git-admin.php:60
+msgid "Configuration has been saved."
+msgstr "Канфігурацыя захавана."
+
+#: git-admin.php:68
+msgid "Google Integration Toolkit - Options"
+msgstr "Google Integration Toolkit - Налады"
+
+#: git-admin.php:74
+msgid "Google Webmasters Tools:"
+msgstr "Google Webmasters прылады:"
+
+#: git-admin.php:78
+msgid "Page verification method:"
+msgstr "Метад праверкі старонкі:"
+
+#: git-admin.php:81
+msgid "Meta tag"
+msgstr "Мета тэг"
+
+#: git-admin.php:82
+msgid "File"
+msgstr "Файл"
+
+#: git-admin.php:88
+msgid "Meta tag value:"
+msgstr "Значэнне мета тэга"
+
+#: git-admin.php:92
+msgid "This tag looks like this:"
+msgstr "Тэг выглядае так:"
+
+#: git-admin.php:94
+msgid "Please put bolded part only to the field above."
+msgstr "Пакіньце вылучаную частку толькі ў поле вышэй."
+
+#: git-admin.php:100
+msgid "Verification file name:"
+msgstr "Імя файла верыфікацыі:"
+
+#: git-admin.php:104
+#, php-format
+msgid "Name of this file starts with 'google', e.g. %s"
+msgstr "Імя гэтага файла пачынаецца з 'google', %s"
+
+#: git-admin.php:108
+msgid "Google Analytics:"
+msgstr "Google Analytics:"
+
+#: git-admin.php:112
+msgid "Google Analytics ID:"
+msgstr "Google Analytics ID:"
+
+#: git-admin.php:116
+msgid "Please find following line in your GA tracking code and copy bolded part to the field above:"
+msgstr "Знайдзіце наступную лінію кода GA і скапіюйце вылучаную частку толькі ў поле вышэй:"
+
+#: git-admin.php:123
+msgid "Enable Google AdSense integration:"
+msgstr "Уключыць інтэграцыю Google AdSense:"
+
+#: git-admin.php:130
+msgid "RSS/Atom Feeds tagging:"
+msgstr "RSS/Atom теггинг стужак:"
+
+#: git-admin.php:134
+msgid "Enable RSS/Atom Feeds tagging:"
+msgstr "Уключыць RSS/Atom теггинг стужак:"
+
+#: git-admin.php:138
+msgid "This option tags all links in RSS/Atom feeds. This allows to track visitors from your feeds using Google Analytics."
+msgstr "Гэта налада RSS/Atom стужак. Гэта дазваляе наведвальнікам выкарыстоўваць Google Analytics."
+
+#: git-admin.php:144
+msgid "Source name:"
+msgstr "Імя крыніцы:"
+
+#: git-admin.php:148
+msgid "This value will be used as a value for the <code>utm_source</code> parameter."
+msgstr "Гэта значэнне будзе выкарыстоўвацца як значэнне для параметру <code>utm_source</code>."
+
+#: git-admin.php:154
+msgid "Medium name:"
+msgstr "Сярэдняе імя:"
+
+#: git-admin.php:158
+msgid "This value will be used as a value for the <code>utm_medium</code> parameter."
+msgstr "Гэта значэнне будзе выкарыстоўвацца як значэнне для параметру <code>utm_medium</code>."
+
+#: git-admin.php:164
+msgid "Campaign name:"
+msgstr "Імя кампаніі:"
+
+#: git-admin.php:168
+msgid "This value will be used as a value for the <code>utm_campaign</code> parameter."
+msgstr "Гэта значэнне будзе выкарыстоўвацца як значэнне для параметру <code>utm_campaign</code>."
+
+#: git-admin.php:172
+msgid "AdSense Section Targeting:"
+msgstr "Прызначэнне секцыі AdSense:"
+
+#: git-admin.php:176
+msgid "Enable AdSense Section Targetting for Content:"
+msgstr "Уключыць прызначэнне секцыі AdSense для ўтрымання:"
+
+#: git-admin.php:180
+msgid "This option ads special HTML comment tags around posts, pages and excerpts. This may improve AdSense ads targeting. You can find more informations <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">here</a>."
+msgstr "Гэта налада дадае адмысловы HTML каментар вакол пастоў, старонак і вынятак. Вы можаце знайсці больш інфармацыі <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">тут</a>."
+
+#: git-admin.php:186
+msgid "Enable AdSense Section Targetting for Comments:"
+msgstr "Уключыць прызначэнне секцыі AdSense для каментароў:"
+
+#: git-admin.php:190
+msgid "This option ads special HTML comment tags around comments."
+msgstr "Гэта налада дадае адмысловы HTML каментар вакол каментароў."
+
+#: git-admin.php:198
+msgid "Save settings"
+msgstr "Захаваць налады"
+
+#: google-integration-toolkit.php:94
+msgid "Fatal Google Integration Toolkit error: $this->admin is not initialised!"
+msgstr "Памылка Google Integration Toolkit: $this->адміністратар не инициилизирован!"
+
+#. Plugin Name of an extension
+msgid "Google Integration Toolkit"
+msgstr "Google Integration Toolkit"
+
+#. Plugin URI of an extension
+msgid "http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/"
+msgstr "http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/"
+
+#. Description of an extension
+msgid "Integrate Google services (Analytics, Webmaster Tools, etc.) with Your Blog."
+msgstr "Інтэграцыя сэрвісаў Google (Analytics, Webmaster Tools, etc.) з вашым блогам."
+
+#. Author of an extension
+msgid "Daniel Fruyski"
+msgstr "Daniel Fruyski"
+
+#. Author URI of an extension
+msgid "http://www.poradnik-webmastera.com/"
+msgstr "http://www.poradnik-webmastera.com/"
+
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-da_DK.mo b/plugins/google-integration-toolkit/lang/google-integration-toolkit-da_DK.mo
new file mode 100755
index 00000000..b8b41c7c
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-da_DK.mo
Binary files differ
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-da_DK.po b/plugins/google-integration-toolkit/lang/google-integration-toolkit-da_DK.po
new file mode 100755
index 00000000..1816133d
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-da_DK.po
@@ -0,0 +1,172 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Google Integration Toolkit 1.3.1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-10-15 08:43+0100\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
+"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2;plural=n != 1;\n"
+"X-Poedit-Language: Danish\n"
+"X-Poedit-Country: DENMARK\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_c;_e;__ngettext:1,2;__ngettext_noop:1,2;_n:1,2;_nc:1,2;_n_noop:1,2\n"
+"X-Poedit-Basepath: d:\\wordpress\\plugins\\google-integration-toolkit\n"
+"X-Poedit-SearchPath-0: d:\\wordpress\\plugins\\google-integration-toolkit\n"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:259
+msgid "Configuration has been saved."
+msgstr "Opsætning blev gemt."
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:267
+msgid "Google Integration Toolkit - Options"
+msgstr "Google Integration Toolkit - Indstillinger"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:274
+msgid "Google Webmasters Tools:"
+msgstr "Google Webmasters Tools:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:278
+msgid "Page verification method:"
+msgstr "Metode for sideverifikation:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:281
+msgid "Meta tag <code>&lt;meta name=&quot;google-site-verification&quot; content=&quot;...&quot; /&gt;</code>"
+msgstr "Meta-tag <code>&lt;meta name=&quot;google-site-verification&quot; content=&quot;...&quot; /&gt;</code>"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:282
+msgid "Meta tag <code>&lt;meta name=&quot;verify-v1&quot; content=&quot;...&quot; /&gt;</code>"
+msgstr "Meta-tag <code>&lt;meta name=&quot;verify-v1&quot; content=&quot;...&quot; /&gt;</code>"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:283
+msgid "File"
+msgstr "Fil"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:284
+msgid "<b>Note:</b> Please use <code>google-site-verification</code> meta tag or file to verify new websites. Meta tag <code>verify-v1</code> is supported for backward compatibility only."
+msgstr "<b>Bemærk:</b> Brug venligst <code>google-site-verification</code>-metatagget eller fil til at verificere nye websteder. Meta-tag <code>verify-v1</code> understøttes kun af hensyn til bagudkompatibilitet."
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:290
+msgid "Meta tag value:"
+msgstr "Værdi for meta-tag:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:294
+msgid "This tag looks like this:"
+msgstr "Dette tag ser ud som dette:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:296
+msgid "or"
+msgstr "eller"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:298
+msgid "Please put bolded part only to the field above."
+msgstr "Indsæt kun det, der er fremhævet med fed, i feltet ovenfor."
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:304
+msgid "Verification file name:"
+msgstr "Navn på verifikationsfil:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:308
+#, php-format
+msgid "Name of this file starts with 'google', e.g. %s"
+msgstr "Navnet på denne fil starter med 'google', fx %s"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:313
+msgid "Google Analytics:"
+msgstr "Google Analytics:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:317
+msgid "Google Analytics ID:"
+msgstr "Google Analytics ID:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:321
+msgid "Please find following line in your GA tracking code and copy bolded part to the field above:"
+msgstr "Find venligst den følgende linje i din GA-sporingskode og kopiér den del, der er fremhævet med fed, ind i feltet ovenfor:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:328
+msgid "Enable Google AdSense integration:"
+msgstr "Aktivér Google AdSense-integration:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:336
+msgid "RSS/Atom Feeds tagging:"
+msgstr "Tagging af RSS/Atom-feeds:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:340
+msgid "Enable RSS/Atom Feeds tagging:"
+msgstr "Aktivér tagging af RSS/Atom-feeds"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:344
+msgid "This option tags all links in RSS/Atom feeds. This allows to track visitors from your feeds using Google Analytics."
+msgstr "Denne indstilling tagger alle links i RSS-/Atom-feeds. Dette gør det muligt at spore besøgende fra dine feeds med Google Analytics."
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:350
+msgid "Source name:"
+msgstr "Kilde-navn:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:354
+msgid "This value will be used as a value for the <code>utm_source</code> parameter."
+msgstr "Denne værdi bruges som værdi i <code>utm_source</code>-parameteren."
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:360
+msgid "Medium name:"
+msgstr "Medium-navn:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:364
+msgid "This value will be used as a value for the <code>utm_medium</code> parameter."
+msgstr "Denne værdi bruges som værdi i <code>utm_medium</code>-parameteren."
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:370
+msgid "Campaign name:"
+msgstr "Kampagne-navn:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:374
+msgid "This value will be used as a value for the <code>utm_campaign</code> parameter."
+msgstr "Denne værdi bruges som værdi i <code>utm_campaign</code>-parameteren."
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:379
+msgid "AdSense Section Targeting:"
+msgstr "AdSense-sektionsmålretning:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:383
+msgid "Enable AdSense Section Targetting for Content:"
+msgstr "Aktivér AdSense-sektionsmålretning for indhold:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:387
+msgid "This option ads special HTML comment tags around posts, pages and excerpts. This may improve AdSense ads targeting. You can find more informations <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">here</a>."
+msgstr "Dette valg tilføjer specielle HTML-kommentartags omkring indlæg, sider og uddrag. Det kan forbedre AdSense-annnoncemålretning. Du kan finde flere informationer <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">her</a>."
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:393
+msgid "Enable AdSense Section Targetting for Comments:"
+msgstr "AdSense-sektionsmålretning for kommentarer:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:397
+msgid "This option ads special HTML comment tags around comments."
+msgstr "Dette valg tilføjer specielle HTML-kommentartags omkring kommentarer."
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:402
+msgid "404 errors tracking:"
+msgstr "Sporing af 404-fejl:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:406
+msgid "Track 404 errors with Google Analytics:"
+msgstr "Spor 404-fejl med Google Analytics:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:409
+msgid "Enable this option to track \"Page not found\" errors using Google Analytics"
+msgstr "Aktivér denne indstilling, hvis du vil spore \"Side ikke fundet\"-fejl, når du bruger Google Analytics"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:415
+msgid "URL prefix:"
+msgstr "URL-præfiks:"
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:419
+msgid "All 404 errors will appear in Analytics Reports as visits to URL like <code>/404.html?page=[pagename.html?queryparameter]&from=[referrer]</code>, where <code>[pagename.html?queryparameters]</code> is the missing page name and referrer is the page URL from where the user reached the 404 page. You can change prefix <code>/404.html</code> to something else using this option."
+msgstr "Alle 404-fejl vil blive vist i Analytics Reports som besøg til URL&#39;er som <code>/404.html?page=[pagename.html?queryparameter]&from=[referrer]</code>, hvor <code>[pagename.html?queryparameters]</code> er navnet på den manglende side og referrer er side-URL&#39;en, som brugeren kom til fejl 404-siden fra.Du kan ændre præfikset <code>/404.html</code> til noget andet med denne indstilling."
+
+#: d:\wordpress\plugins\google-integration-toolkit/google-integration-toolkit.php:427
+msgid "Save settings"
+msgstr "Gem ændringer"
+
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-it_IT.mo b/plugins/google-integration-toolkit/lang/google-integration-toolkit-it_IT.mo
new file mode 100755
index 00000000..04c890df
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-it_IT.mo
Binary files differ
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-it_IT.po b/plugins/google-integration-toolkit/lang/google-integration-toolkit-it_IT.po
new file mode 100755
index 00000000..e7509ce1
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-it_IT.po
@@ -0,0 +1,163 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Tweet This\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-07-30 00:38-0000\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Daniel Frużyński <daniel [A-T] poradnik-webmastera.com>\n"
+"Language-Team: Fat Cow <zhr@tut.by>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Russian\n"
+"X-Poedit-Country: RUSSIAN FEDERATION\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e\n"
+"X-Poedit-Basepath: .\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: git-admin.php:60
+msgid "Configuration has been saved."
+msgstr "Configurazioni salvate"
+
+#: git-admin.php:68
+msgid "Google Integration Toolkit - Options"
+msgstr "Google Integration Toolkit - Opzioni"
+
+#: git-admin.php:74
+msgid "Google Webmasters Tools:"
+msgstr "Google Webmasters Tools:"
+
+#: git-admin.php:78
+msgid "Page verification method:"
+msgstr "Pagina di verifica:"
+
+#: git-admin.php:81
+msgid "Meta tag"
+msgstr "Meta tag"
+
+#: git-admin.php:82
+msgid "File"
+msgstr "File"
+
+#: git-admin.php:88
+msgid "Meta tag value:"
+msgstr "Valore Meta Tag:"
+
+#: git-admin.php:92
+msgid "This tag looks like this:"
+msgstr "Questo tag è simile al seguente:"
+
+#: git-admin.php:94
+msgid "Please put bolded part only to the field above."
+msgstr "Si prega di mettere in grassetto solo una parte del campo precedente."
+
+#: git-admin.php:100
+msgid "Verification file name:"
+msgstr "Verifica nome del file:"
+
+#: git-admin.php:104
+#, php-format
+msgid "Name of this file starts with 'google', e.g. %s"
+msgstr "Il nome di questo file inizia con 'google', e.g. %s"
+
+#: git-admin.php:108
+msgid "Google Analytics:"
+msgstr "Google Analytics:"
+
+#: git-admin.php:112
+msgid "Google Analytics ID:"
+msgstr "Google Analytics ID:"
+
+#: git-admin.php:116
+msgid "Please find following line in your GA tracking code and copy bolded part to the field above:"
+msgstr "Si prega di trovare la seguente riga nel codice di monitoraggio GA e copiarne parte in grassetto al campo precedente:"
+
+#: git-admin.php:123
+msgid "Enable Google AdSense integration:"
+msgstr "Abilita l'integrazione con Google AdSense:"
+
+#: git-admin.php:130
+msgid "RSS/Atom Feeds tagging:"
+msgstr "RSS/Atom Feeds tagging:"
+
+#: git-admin.php:134
+msgid "Enable RSS/Atom Feeds tagging:"
+msgstr "Abilita RSS/Atom Feeds tagging:"
+
+#: git-admin.php:138
+msgid "This option tags all links in RSS/Atom feeds. This allows to track visitors from your feeds using Google Analytics."
+msgstr "Questa opzione tagga tutti i link del RSS/Atom Feed. Abilita il tracciamento dei visitatori dal tuo feed usando GA"
+
+#: git-admin.php:144
+msgid "Source name:"
+msgstr "Fonte nome:"
+
+#: git-admin.php:148
+msgid "This value will be used as a value for the <code>utm_source</code> parameter."
+msgstr "Questo valore sarà usato come un valore per il paramentro <code>utm_source</code>."
+
+#: git-admin.php:154
+msgid "Medium name:"
+msgstr "Nome medio:"
+
+#: git-admin.php:158
+msgid "This value will be used as a value for the <code>utm_medium</code> parameter."
+msgstr "Questo valore sarà usato come un valore per il paramentro <code>utm_medium</code>."
+
+#: git-admin.php:164
+msgid "Campaign name:"
+msgstr "Nome campagna:"
+
+#: git-admin.php:168
+msgid "This value will be used as a value for the <code>utm_campaign</code> parameter."
+msgstr "Questo valore sarà usato come un valore per il paramentro <code>utm_campaign</code>."
+
+#: git-admin.php:172
+msgid "AdSense Section Targeting:"
+msgstr "AdSense Section Targeting:"
+
+#: git-admin.php:176
+msgid "Enable AdSense Section Targetting for Content:"
+msgstr "Abilita AdSense Section Targeting per il contenuto:"
+
+#: git-admin.php:180
+msgid "This option ads special HTML comment tags around posts, pages and excerpts. This may improve AdSense ads targeting. You can find more informations <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">here</a>."
+msgstr "Questa opzione pubblicizza uno speciale commento in HTML intorno al post,alle pagine e agli estratti. Questo può migliorare il target degli annunci adsense,maggiori informazioni <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">qui</a>."
+
+#: git-admin.php:186
+msgid "Enable AdSense Section Targetting for Comments:"
+msgstr "Abilita le sezioni targhetizzate di Adsense per i commenti:"
+
+#: git-admin.php:190
+msgid "This option ads special HTML comment tags around comments."
+msgstr "Questa opzione pubblicizza uno speciale commento in HTML intorno ai commenti."
+
+#: git-admin.php:198
+msgid "Save settings"
+msgstr "Salva le modifiche"
+
+#: google-integration-toolkit.php:94
+msgid "Fatal Google Integration Toolkit error: $this->admin is not initialised!"
+msgstr "Errore fatale di Google Integration Toolkit: $this->amministrazione non inizializzata!"
+
+#. Plugin Name of an extension
+msgid "Google Integration Toolkit"
+msgstr "Google Integration Toolkit"
+
+#. Plugin URI of an extension
+msgid "http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/"
+msgstr "http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/"
+
+#. Description of an extension
+msgid "Integrate Google services (Analytics, Webmaster Tools, etc.) with Your Blog."
+msgstr "Integra i servizi di Google (Analytics, Webmaster Tools, etc.) con il tuo Blog."
+
+#. Author of an extension
+msgid "Daniel Fruyski"
+msgstr "Daniel Fruyski"
+
+#. Author URI of an extension
+msgid "http://www.poradnik-webmastera.com/"
+msgstr "http://www.poradnik-webmastera.com/"
+
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-nl_NL.mo b/plugins/google-integration-toolkit/lang/google-integration-toolkit-nl_NL.mo
new file mode 100755
index 00000000..464c61b1
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-nl_NL.mo
Binary files differ
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-nl_NL.po b/plugins/google-integration-toolkit/lang/google-integration-toolkit-nl_NL.po
new file mode 100755
index 00000000..42cb9560
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-nl_NL.po
@@ -0,0 +1,189 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Google Integration Toolkit v1.3.4\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/google-integration-toolkit\n"
+"POT-Creation-Date: 2009-10-03 13:55+0000\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Rene - WordPressPluginGuide.com <info@wppg.me>\n"
+"Language-Team: WordPress Plugin Guide <info@wppg.me>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1)\n"
+"X-Poedit-Language: Dutch\n"
+"X-Poedit-Country: NETHERLANDS\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#: google-integration-toolkit.php:259
+msgid "Configuration has been saved."
+msgstr "Configuratie is opgeslagen."
+
+#: google-integration-toolkit.php:267
+msgid "Google Integration Toolkit - Options"
+msgstr "Google Integratie Hulpmiddelen - Opties"
+
+#: google-integration-toolkit.php:274
+msgid "Google Webmasters Tools:"
+msgstr "Google Webmaster Hulpprogramma's:"
+
+#: google-integration-toolkit.php:278
+msgid "Page verification method:"
+msgstr "Pagina verificatie methode:"
+
+#: google-integration-toolkit.php:281
+msgid "Meta tag <code>&lt;meta name=&quot;google-site-verification&quot; content=&quot;...&quot; /&gt;</code>"
+msgstr "Meta tag <code>&lt;meta name=&quot;google-site-verification&quot; content=&quot;...&quot; /&gt;</code>"
+
+#: google-integration-toolkit.php:282
+msgid "Meta tag <code>&lt;meta name=&quot;verify-v1&quot; content=&quot;...&quot; /&gt;</code>"
+msgstr "Meta tag <code>&lt;meta name=&quot;verify-v1&quot; content=&quot;...&quot; /&gt;</code>"
+
+#: google-integration-toolkit.php:283
+msgid "File"
+msgstr "Bestand"
+
+#: google-integration-toolkit.php:284
+msgid "<b>Note:</b> Please use <code>google-site-verification</code> meta tag or file to verify new websites. Meta tag <code>verify-v1</code> is supported for backward compatibility only."
+msgstr "<b>Opmerking:</b> Gebruik de <code>google-site-verification</code> meta tag of bestand om nieuwe websites te verifieren. De meta tag <code>verify-v1</code> wordt alleen ondersteund voor achterwaartse compatibiliteit."
+
+#: google-integration-toolkit.php:290
+msgid "Meta tag value:"
+msgstr "Meta tag waarde:"
+
+#: google-integration-toolkit.php:294
+msgid "This tag looks like this:"
+msgstr "Deze tag ziet eruit als:"
+
+#: google-integration-toolkit.php:296
+msgid "or"
+msgstr "of"
+
+#: google-integration-toolkit.php:298
+msgid "Please put bolded part only to the field above."
+msgstr "Zet het vetgedrukte gedeelte alleen in het veld hierboven."
+
+#: google-integration-toolkit.php:304
+msgid "Verification file name:"
+msgstr "Verificatie bestandsnaam:"
+
+#: google-integration-toolkit.php:308
+#, php-format
+msgid "Name of this file starts with 'google', e.g. %s"
+msgstr "De naam van dit bestand begint met 'google', bijv. %s"
+
+#: google-integration-toolkit.php:313
+msgid "Google Analytics:"
+msgstr "Google Analytics:"
+
+#: google-integration-toolkit.php:317
+msgid "Google Analytics ID:"
+msgstr "Google Analytics ID:"
+
+#: google-integration-toolkit.php:321
+msgid "Please find following line in your GA tracking code and copy bolded part to the field above:"
+msgstr "Zoek de volgende regel in de GA code en kopieer het vetgedrukte gedeelte in het veld hierboven:"
+
+#: google-integration-toolkit.php:328
+msgid "Enable Google AdSense integration:"
+msgstr "Inschakelen integratie Google Adsense:"
+
+#: google-integration-toolkit.php:336
+msgid "RSS/Atom Feeds tagging:"
+msgstr "RSS/Atom Feeds identificering:"
+
+#: google-integration-toolkit.php:340
+msgid "Enable RSS/Atom Feeds tagging:"
+msgstr "Inschakelen RSS/Atom Feeds identificering:"
+
+#: google-integration-toolkit.php:344
+msgid "This option tags all links in RSS/Atom feeds. This allows to track visitors from your feeds using Google Analytics."
+msgstr "Deze optie identificeert alle links in RSS/Atom feeds, zodat bezoekers van je feeds gevolgd kunnen worden door het gebruik van Google Analytics."
+
+#: google-integration-toolkit.php:350
+msgid "Source name:"
+msgstr "Bron naam:"
+
+#: google-integration-toolkit.php:354
+msgid "This value will be used as a value for the <code>utm_source</code> parameter."
+msgstr "Deze waarde zal gebruikt worden als een waarde voor de <code>utm_source</code> parameter."
+
+#: google-integration-toolkit.php:360
+msgid "Medium name:"
+msgstr "Medium naam:"
+
+#: google-integration-toolkit.php:364
+msgid "This value will be used as a value for the <code>utm_medium</code> parameter."
+msgstr "Deze waarde zal gebruikt worden als een waarde voor de <code>utm_medium</code> parameter."
+
+#: google-integration-toolkit.php:370
+msgid "Campaign name:"
+msgstr "Campagne naam:"
+
+#: google-integration-toolkit.php:374
+msgid "This value will be used as a value for the <code>utm_campaign</code> parameter."
+msgstr "Deze waarde zal gebruikt worden als een waarde voor de <code>utm_campaign</code> parameter."
+
+#: google-integration-toolkit.php:379
+msgid "AdSense Section Targeting:"
+msgstr "Adsense sectie doelgerichtheid:"
+
+#: google-integration-toolkit.php:383
+msgid "Enable AdSense Section Targetting for Content:"
+msgstr "Inschakelen Adsense sectie doelgerichtheid voor content:"
+
+#: google-integration-toolkit.php:387
+msgid "This option ads special HTML comment tags around posts, pages and excerpts. This may improve AdSense ads targeting. You can find more informations <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">here</a>."
+msgstr "Deze optie voegt speciale HTML commentaar tags rond berichten, pagina's en fragmenten. Dit bevorderd de doelgerichtheid van de Adsense advertenties. Meer informatie kan <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">hier</a> gevonden worden."
+
+#: google-integration-toolkit.php:393
+msgid "Enable AdSense Section Targetting for Comments:"
+msgstr "Inschakelen Adsense sectie doelgerichtheid voor reacties:"
+
+#: google-integration-toolkit.php:397
+msgid "This option ads special HTML comment tags around comments."
+msgstr "Deze optie voegt speciale HTML commentaar tags rond reacties."
+
+#: google-integration-toolkit.php:402
+msgid "404 errors tracking:"
+msgstr "Bijhouden 404 foutmeldingen:"
+
+#: google-integration-toolkit.php:406
+msgid "Track 404 errors with Google Analytics:"
+msgstr "Bijhouden 404 foutmeldingen met Google Analytics:"
+
+#: google-integration-toolkit.php:409
+msgid "Enable this option to track \"Page not found\" errors using Google Analytics"
+msgstr "Schakel deze optie in om \"Pagina niet gevonden\" fouten bij te houden met Google Analytics"
+
+#: google-integration-toolkit.php:415
+msgid "URL prefix:"
+msgstr "URL voorvoegsel:"
+
+#: google-integration-toolkit.php:419
+msgid "All 404 errors will appear in Analytics Reports as visits to URL like <code>/404.html?page=[pagename.html?queryparameter]&from=[referrer]</code>, where <code>[pagename.html?queryparameters]</code> is the missing page name and referrer is the page URL from where the user reached the 404 page. You can change prefix <code>/404.html</code> to something else using this option."
+msgstr "Alle 404 foutmeldingen worden weergegeven in Analytics rapporten als een bezoek aan een URL als <code>/404.html?page=[pagename.html?queryparameter]&from=[referrer]</code>, waar <code>[pagename.html?queryparameters]</code> is de missende paginanaam en refferer is de pagina URL vanwaar de gebruiker de 404 pagina bereikte. Je kunt het voorvoegsel <code>/404.html</code> veranderen naar iets anders door deze optie te gebruiken."
+
+#: google-integration-toolkit.php:427
+msgid "Save settings"
+msgstr "Instellingen bewaren"
+
+#. Plugin Name of an extension
+msgid "Google Integration Toolkit"
+msgstr "Google Integratie Hulpmiddelen"
+
+#. Plugin URI of an extension
+msgid "http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/"
+msgstr "http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/"
+
+#. Description of an extension
+msgid "Integrate Google services (Analytics, Webmaster Tools, etc.) with Your Blog."
+msgstr "Integreer Google diensten (Analytics, Webmaster Hulpprogramma's enz.) met je blog."
+
+#. Author of an extension
+msgid "Daniel Fruyski"
+msgstr "Daniel Fruyski"
+
+#. Author URI of an extension
+msgid "http://www.poradnik-webmastera.com/"
+msgstr "http://www.poradnik-webmastera.com/"
+
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-pl_PL.mo b/plugins/google-integration-toolkit/lang/google-integration-toolkit-pl_PL.mo
new file mode 100755
index 00000000..19cdcbc8
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-pl_PL.mo
Binary files differ
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-pl_PL.po b/plugins/google-integration-toolkit/lang/google-integration-toolkit-pl_PL.po
new file mode 100755
index 00000000..f85ec989
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-pl_PL.po
@@ -0,0 +1,202 @@
+# Polish translation for Google Integration Toolkit plugin.
+# Copyright (C) 2009 Daniel Frużyński
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Google Integration Toolkit 1.0\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/google-integration-toolkit\n"
+"POT-Creation-Date: 2010-01-04 21:53+0000\n"
+"PO-Revision-Date: 2010-01-04 22:55+0100\n"
+"Last-Translator: Daniel Frużyński <daniel [A-T] poradnik-webmastera.com>\n"
+"Language-Team: Daniel Frużyński <daniel [A-T] poradnik-webmastera.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Polish\n"
+"X-Poedit-Country: POLAND\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
+
+#: google-integration-toolkit.php:251
+msgid "Configuration has been saved."
+msgstr "Konfiguracja została zapisana."
+
+#: google-integration-toolkit.php:258
+msgid "Google Integration Toolkit - Options"
+msgstr "Google Integration Toolkit - Opcje"
+
+#: google-integration-toolkit.php:265
+msgid "Google Webmasters Tools:"
+msgstr "Narzędzia Google dla Webmasterów:"
+
+#: google-integration-toolkit.php:269
+msgid "Page verification method:"
+msgstr "Metoda weryfikacji strony:"
+
+#: google-integration-toolkit.php:272
+msgid "Meta tag <code>&lt;meta name=&quot;google-site-verification&quot; content=&quot;...&quot; /&gt;</code>"
+msgstr "Meta tag <code>&lt;meta name=&quot;google-site-verification&quot; content=&quot;...&quot; /&gt;</code>"
+
+#: google-integration-toolkit.php:273
+msgid "Meta tag <code>&lt;meta name=&quot;verify-v1&quot; content=&quot;...&quot; /&gt;</code>"
+msgstr "Meta tag <code>&lt;meta name=&quot;verify-v1&quot; content=&quot;...&quot; /&gt;</code>"
+
+#: google-integration-toolkit.php:274
+msgid "File"
+msgstr "Plik"
+
+#: google-integration-toolkit.php:275
+msgid "<b>Note:</b> Please use <code>google-site-verification</code> meta tag or file to verify new websites. Meta tag <code>verify-v1</code> is supported for backward compatibility only."
+msgstr "<b>Uwaga:</b> Proszę używać meta tagu <code>google-site-verification</code> albo pliku do weryfikacji nowych stron. Meta tag <code>verify-v1</code> jest obsługiwany tylko dla zapewnienia kompatybilności wstecz."
+
+#: google-integration-toolkit.php:281
+msgid "Meta tag value:"
+msgstr "Wartość tagu meta:"
+
+#: google-integration-toolkit.php:285
+msgid "This tag looks like this:"
+msgstr "Ten tag wygląda następująco:"
+
+#: google-integration-toolkit.php:287
+msgid "or"
+msgstr "lub"
+
+#: google-integration-toolkit.php:289
+msgid "Please put <b>marked part only</b> to the field above."
+msgstr "Proszę wkleić do powyższego pola tylko zaznaczony fragment."
+
+#: google-integration-toolkit.php:295
+msgid "Verification file name:"
+msgstr "Nazwa pliku weryfikacyjnego:"
+
+#: google-integration-toolkit.php:299
+#, php-format
+msgid "Name of this file starts with 'google', e.g. %s"
+msgstr "Nazwa tego pliku zaczyna się od \"google\", np. %s"
+
+#: google-integration-toolkit.php:304
+msgid "Google Analytics:"
+msgstr "Google Analytics:"
+
+#: google-integration-toolkit.php:308
+msgid "Google Analytics ID:"
+msgstr "Identyfikator Google Analytics:"
+
+#: google-integration-toolkit.php:312
+msgid "Please find following line in your GA tracking code and copy bolded part to the field above:"
+msgstr "Odszukaj poniższą linię w swoim kodzie śledzenia GA i wklej pogrubiony fragment do powyższego pola:"
+
+#: google-integration-toolkit.php:319
+msgid "Enable Google AdSense integration:"
+msgstr "Włącz integrację z Google AdSense:"
+
+#: google-integration-toolkit.php:327
+msgid "RSS/Atom Feeds tagging:"
+msgstr "Tagowanie kanałów RSS/Atom:"
+
+#: google-integration-toolkit.php:331
+msgid "Enable RSS/Atom Feeds tagging:"
+msgstr "Włącz tagowanie kanałów RSS/Atom:"
+
+#: google-integration-toolkit.php:335
+msgid "This option tags all links in RSS/Atom feeds. This allows to track visitors from your feeds using Google Analytics."
+msgstr "Ta opcja włącza tagowanie linków w kanałach RSS/Atom. Pozwala to na śledzenie odwiedzających z Twoich kanałów za pomocą Google Analytics."
+
+#: google-integration-toolkit.php:341
+msgid "Source name:"
+msgstr "Nazwa źródła:"
+
+#: google-integration-toolkit.php:345
+msgid "This value will be used as a value for the <code>utm_source</code> parameter."
+msgstr "Ta wartość zostanie użyta jako wartość parametru <code>utm_source</code>."
+
+#: google-integration-toolkit.php:351
+msgid "Medium name:"
+msgstr "Nazwa medium:"
+
+#: google-integration-toolkit.php:355
+msgid "This value will be used as a value for the <code>utm_medium</code> parameter."
+msgstr "Ta wartość zostanie użyta jako wartość parametru <code>utm_medium</code>."
+
+#: google-integration-toolkit.php:361
+msgid "Campaign name:"
+msgstr "Nazwa kampanii:"
+
+#: google-integration-toolkit.php:365
+msgid "This value will be used as a value for the <code>utm_campaign</code> parameter."
+msgstr "Ta wartość zostanie użyta jako wartość parametru <code>utm_campaign</code>."
+
+#: google-integration-toolkit.php:370
+msgid "AdSense Section Targeting:"
+msgstr "AdSense - kierowanie na sekcje"
+
+#: google-integration-toolkit.php:374
+msgid "Enable AdSense Section Targetting for Content:"
+msgstr "Włącz kierowanie na sekcje dla AdSense dla treści:"
+
+#: google-integration-toolkit.php:378
+msgid "This option ads special HTML comment tags around posts, pages and excerpts. This may improve AdSense ads targeting. You can find more informations <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">here</a>."
+msgstr "Ta opcja dodaje specjalne tagi komentarzy HTML dookoła postów, stron i ich fragmentów. To może poprawić dobór reklam AdSense na stronie. Więcej informacji na ten temat znajdziesz <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=pl&answer=23168\">tutaj</a>."
+
+#: google-integration-toolkit.php:384
+msgid "Enable AdSense Section Targetting for Comments:"
+msgstr "Włącz kierowanie na sekcje AdSense dla komentarzy:"
+
+#: google-integration-toolkit.php:388
+msgid "This option ads special HTML comment tags around comments."
+msgstr "Ta opcja dodaje specjalne tagi komentarzy HTML dookoła komentarzy"
+
+#: google-integration-toolkit.php:393
+msgid "404 errors tracking:"
+msgstr "Śledzenie błędów 404:"
+
+#: google-integration-toolkit.php:397
+msgid "Track 404 errors with Google Analytics:"
+msgstr "Śledź błędy 404 używając Google Analytics:"
+
+#: google-integration-toolkit.php:400
+msgid "Enable this option to track \"Page not found\" errors using Google Analytics"
+msgstr "Włącz tą opcję aby śledzić błędy \"Nie znaleziono strony\" za pomocą Google Analytics"
+
+#: google-integration-toolkit.php:406
+msgid "URL prefix:"
+msgstr "Prefiks adresu:"
+
+#: google-integration-toolkit.php:410
+msgid "All 404 errors will appear in Analytics Reports as visits to URL like <code>/404.html?page=[pagename.html?queryparameter]&from=[referrer]</code>, where <code>[pagename.html?queryparameters]</code> is the missing page name and referrer is the page URL from where the user reached the 404 page. You can change prefix <code>/404.html</code> to something else using this option."
+msgstr "Wszystkie błędy 404 pojawią się w raportach Google Analytics jako wywołania adresów typu <code>/404.html?page=[pagename.html?queryparameter]&from=[referrer]</code>, gdzie <code>[pagename.html?queryparameters]</code> jest adresem nie znalezionej strony, a referer jest adresem strony z której użytkownik wszedł na stronę 404. Możesz zmienić prefiks <code>/404.html</code> na inny używając tej opcji."
+
+#: google-integration-toolkit.php:418
+msgid "Save settings"
+msgstr "Zapisz ustawienia"
+
+#. Plugin Name of an extension
+msgid "Google Integration Toolkit"
+msgstr "Google Integration Toolkit"
+
+#. Plugin URI of an extension
+msgid "http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/"
+msgstr "http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/"
+
+#. Description of an extension
+msgid "Integrate Google services (Analytics, Webmaster Tools, etc.) with Your Blog."
+msgstr "Integruje serwisy Google (Analytics, Webmaster Tools, itp.) z Twoim Blogiem."
+
+#. Author of an extension
+msgid "Daniel Frużyński"
+msgstr "Daniel Frużyński"
+
+#. Author URI of an extension
+msgid "http://www.poradnik-webmastera.com/"
+msgstr "http://www.poradnik-webmastera.com/"
+
+#~ msgid "Meta tag"
+#~ msgstr "Tag meta"
+#~ msgid ""
+#~ "Fatal Google Integration Toolkit error: $this->admin is not initialised!"
+#~ msgstr ""
+#~ "Błąd krytyczny Google Integration Toolkit: $this->admin nie jest "
+#~ "zainicjalizowany!"
+
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-ru_RU.mo b/plugins/google-integration-toolkit/lang/google-integration-toolkit-ru_RU.mo
new file mode 100755
index 00000000..71c9a959
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-ru_RU.mo
Binary files differ
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-ru_RU.po b/plugins/google-integration-toolkit/lang/google-integration-toolkit-ru_RU.po
new file mode 100755
index 00000000..c636172e
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-ru_RU.po
@@ -0,0 +1,163 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Tweet This\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-07-30 00:38-0000\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Fat Cow <zhr@tut.by>\n"
+"Language-Team: Fat Cow <zhr@tut.by>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Russian\n"
+"X-Poedit-Country: RUSSIAN FEDERATION\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e\n"
+"X-Poedit-Basepath: .\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: git-admin.php:60
+msgid "Configuration has been saved."
+msgstr "Конфигурация сохранена."
+
+#: git-admin.php:68
+msgid "Google Integration Toolkit - Options"
+msgstr "Google Integration Toolkit - Настройки"
+
+#: git-admin.php:74
+msgid "Google Webmasters Tools:"
+msgstr "Google Webmasters инструменты:"
+
+#: git-admin.php:78
+msgid "Page verification method:"
+msgstr "Метод проверки страницы:"
+
+#: git-admin.php:81
+msgid "Meta tag"
+msgstr "Мета тег"
+
+#: git-admin.php:82
+msgid "File"
+msgstr "Файл"
+
+#: git-admin.php:88
+msgid "Meta tag value:"
+msgstr "Значение мета тега"
+
+#: git-admin.php:92
+msgid "This tag looks like this:"
+msgstr "Тег выглядит так:"
+
+#: git-admin.php:94
+msgid "Please put bolded part only to the field above."
+msgstr "Оставьте выделенную часть только в поле выше."
+
+#: git-admin.php:100
+msgid "Verification file name:"
+msgstr "Имя файла верификации:"
+
+#: git-admin.php:104
+#, php-format
+msgid "Name of this file starts with 'google', e.g. %s"
+msgstr "Имя этого файла начинается с 'google', %s"
+
+#: git-admin.php:108
+msgid "Google Analytics:"
+msgstr "Google Analytics:"
+
+#: git-admin.php:112
+msgid "Google Analytics ID:"
+msgstr "Google Analytics ID:"
+
+#: git-admin.php:116
+msgid "Please find following line in your GA tracking code and copy bolded part to the field above:"
+msgstr "Найдите следующую линию кода GA и скопируйте выделенную часть только в поле выше:"
+
+#: git-admin.php:123
+msgid "Enable Google AdSense integration:"
+msgstr "Включить интеграцию Google AdSense:"
+
+#: git-admin.php:130
+msgid "RSS/Atom Feeds tagging:"
+msgstr "RSS/Atom теггинг лент:"
+
+#: git-admin.php:134
+msgid "Enable RSS/Atom Feeds tagging:"
+msgstr "Включить RSS/Atom теггинг лент:"
+
+#: git-admin.php:138
+msgid "This option tags all links in RSS/Atom feeds. This allows to track visitors from your feeds using Google Analytics."
+msgstr "Эта настройка RSS/Atom лент. Это разрешает посетителям использовать Google Analytics."
+
+#: git-admin.php:144
+msgid "Source name:"
+msgstr "Имя источника:"
+
+#: git-admin.php:148
+msgid "This value will be used as a value for the <code>utm_source</code> parameter."
+msgstr "Это значение будет использоваться как значение для параметра <code>utm_source</code>."
+
+#: git-admin.php:154
+msgid "Medium name:"
+msgstr "Среднее имя:"
+
+#: git-admin.php:158
+msgid "This value will be used as a value for the <code>utm_medium</code> parameter."
+msgstr "Это значение будет использоваться как значение для параметра <code>utm_medium</code>."
+
+#: git-admin.php:164
+msgid "Campaign name:"
+msgstr "Имя компании:"
+
+#: git-admin.php:168
+msgid "This value will be used as a value for the <code>utm_campaign</code> parameter."
+msgstr "Это значение будет использоваться как значение для параметра <code>utm_campaign</code>."
+
+#: git-admin.php:172
+msgid "AdSense Section Targeting:"
+msgstr "Назначение секции AdSense:"
+
+#: git-admin.php:176
+msgid "Enable AdSense Section Targetting for Content:"
+msgstr "Включить назначение секции AdSense для содержания:"
+
+#: git-admin.php:180
+msgid "This option ads special HTML comment tags around posts, pages and excerpts. This may improve AdSense ads targeting. You can find more informations <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">here</a>."
+msgstr "Эта настройка добавляет специальный HTML комментарий вокруг постов, страниц и выдержек. Вы можете найти больше информации <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">здесь</a>."
+
+#: git-admin.php:186
+msgid "Enable AdSense Section Targetting for Comments:"
+msgstr "Включить назначение секции AdSense для комментариев:"
+
+#: git-admin.php:190
+msgid "This option ads special HTML comment tags around comments."
+msgstr "Эта настройка добавляет специальный HTML комментарий вокруг комментариев."
+
+#: git-admin.php:198
+msgid "Save settings"
+msgstr "Сохранить настройки"
+
+#: google-integration-toolkit.php:94
+msgid "Fatal Google Integration Toolkit error: $this->admin is not initialised!"
+msgstr "Ошибка Google Integration Toolkit: $this->администратор не инициилизирован!"
+
+#. Plugin Name of an extension
+msgid "Google Integration Toolkit"
+msgstr "Google Integration Toolkit"
+
+#. Plugin URI of an extension
+msgid "http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/"
+msgstr "http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/"
+
+#. Description of an extension
+msgid "Integrate Google services (Analytics, Webmaster Tools, etc.) with Your Blog."
+msgstr "Интеграция сервисов Google (Analytics, Webmaster Tools, etc.) с вашим блогом."
+
+#. Author of an extension
+msgid "Daniel Fruyski"
+msgstr "Daniel Fruyski"
+
+#. Author URI of an extension
+msgid "http://www.poradnik-webmastera.com/"
+msgstr "http://www.poradnik-webmastera.com/"
+
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-zh_CN.mo b/plugins/google-integration-toolkit/lang/google-integration-toolkit-zh_CN.mo
new file mode 100755
index 00000000..90dcc407
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-zh_CN.mo
Binary files differ
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit-zh_CN.po b/plugins/google-integration-toolkit/lang/google-integration-toolkit-zh_CN.po
new file mode 100755
index 00000000..2353f942
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit-zh_CN.po
@@ -0,0 +1,212 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Google Integration Toolkit v1.3\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: \n"
+"PO-Revision-Date: 2009-10-08 19:41-0400\n"
+"Last-Translator: Bob <bob@wealthynetizen.com>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Poedit-Language: Chinese\n"
+"X-Poedit-Country: PEOPLE'S REPUBLIC OF CHINA\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
+"X-Poedit-Basepath: \n"
+"X-Poedit-Bookmarks: \n"
+"X-Poedit-SearchPath-0: .\n"
+"X-Textdomain-Support: yes"
+
+#: google-integration-toolkit.php:259
+#@ google-integration-toolkit
+msgid "Configuration has been saved."
+msgstr "配置以存档"
+
+#: google-integration-toolkit.php:267
+#@ google-integration-toolkit
+msgid "Google Integration Toolkit - Options"
+msgstr "谷歌合成工具 - 可选项"
+
+#: google-integration-toolkit.php:274
+#@ google-integration-toolkit
+msgid "Google Webmasters Tools:"
+msgstr "谷歌网站站长工具:"
+
+#: google-integration-toolkit.php:278
+#@ google-integration-toolkit
+msgid "Page verification method:"
+msgstr "网页确认方法:"
+
+#: google-integration-toolkit.php:281
+#@ google-integration-toolkit
+msgid "Meta tag <code>&lt;meta name=&quot;google-site-verification&quot; content=&quot;...&quot; /&gt;</code>"
+msgstr "Meta tag <code>&lt;meta name=&quot;google-site-verification&quot; content=&quot;...&quot; /&gt;</code>"
+
+#: google-integration-toolkit.php:282
+#@ google-integration-toolkit
+msgid "Meta tag <code>&lt;meta name=&quot;verify-v1&quot; content=&quot;...&quot; /&gt;</code>"
+msgstr "Meta tag <code>&lt;meta name=&quot;verify-v1&quot; content=&quot;...&quot; /&gt;</code>"
+
+#: google-integration-toolkit.php:283
+#@ google-integration-toolkit
+msgid "File"
+msgstr "文件"
+
+#: google-integration-toolkit.php:284
+#@ google-integration-toolkit
+msgid "<b>Note:</b> Please use <code>google-site-verification</code> meta tag or file to verify new websites. Meta tag <code>verify-v1</code> is supported for backward compatibility only."
+msgstr "<b>注意:</b> 请用 <code>google-site-verification</code> meta tag 或文件确认新网站. Meta tag <code>verify-v1</code> 仅为反向兼容."
+
+#: google-integration-toolkit.php:290
+#@ google-integration-toolkit
+msgid "Meta tag value:"
+msgstr "Meta tag 值:"
+
+#: google-integration-toolkit.php:294
+#@ google-integration-toolkit
+msgid "This tag looks like this:"
+msgstr "Tag 大致如此:"
+
+#: google-integration-toolkit.php:296
+#@ google-integration-toolkit
+msgid "or"
+msgstr "或"
+
+#: google-integration-toolkit.php:298
+#@ google-integration-toolkit
+msgid "Please put bolded part only to the field above."
+msgstr "请用以上粗体部分。"
+
+#: google-integration-toolkit.php:304
+#@ google-integration-toolkit
+msgid "Verification file name:"
+msgstr "确认文件名:"
+
+#: google-integration-toolkit.php:308
+#, php-format
+#@ google-integration-toolkit
+msgid "Name of this file starts with 'google', e.g. %s"
+msgstr "文件名以 'google' 开始, 如 %s"
+
+#: google-integration-toolkit.php:313
+#@ google-integration-toolkit
+msgid "Google Analytics:"
+msgstr "Google Analytics:"
+
+#: google-integration-toolkit.php:317
+#@ google-integration-toolkit
+msgid "Google Analytics ID:"
+msgstr "Google Analytics ID:"
+
+#: google-integration-toolkit.php:321
+#@ google-integration-toolkit
+msgid "Please find following line in your GA tracking code and copy bolded part to the field above:"
+msgstr "见 Google Analytics 碼 只用粗体部分:"
+
+#: google-integration-toolkit.php:328
+#@ google-integration-toolkit
+msgid "Enable Google AdSense integration:"
+msgstr "启动Google AdSense 合成:"
+
+#: google-integration-toolkit.php:336
+#@ google-integration-toolkit
+msgid "RSS/Atom Feeds tagging:"
+msgstr "RSS/Atom Feeds tagging:"
+
+#: google-integration-toolkit.php:340
+#@ google-integration-toolkit
+msgid "Enable RSS/Atom Feeds tagging:"
+msgstr "启动RSS/Atom Feeds tagging:"
+
+#: google-integration-toolkit.php:344
+#@ google-integration-toolkit
+msgid "This option tags all links in RSS/Atom feeds. This allows to track visitors from your feeds using Google Analytics."
+msgstr "此选项链接 RSS/Atom feeds. 可以用 Google Analytics跟踪."
+
+#: google-integration-toolkit.php:350
+#@ google-integration-toolkit
+msgid "Source name:"
+msgstr "原名:"
+
+#: google-integration-toolkit.php:354
+#@ google-integration-toolkit
+msgid "This value will be used as a value for the <code>utm_source</code> parameter."
+msgstr "此值用于<code>utm_source</code> 参数."
+
+#: google-integration-toolkit.php:360
+#@ google-integration-toolkit
+msgid "Medium name:"
+msgstr "中间名:"
+
+#: google-integration-toolkit.php:364
+#@ google-integration-toolkit
+msgid "This value will be used as a value for the <code>utm_medium</code> parameter."
+msgstr "此值用于<code>utm_medium</code> 参数."
+
+#: google-integration-toolkit.php:370
+#@ google-integration-toolkit
+msgid "Campaign name:"
+msgstr "Campaign 名:"
+
+#: google-integration-toolkit.php:374
+#@ google-integration-toolkit
+msgid "This value will be used as a value for the <code>utm_campaign</code> parameter."
+msgstr "此值用于<code>utm_campaign</code> 参数."
+
+#: google-integration-toolkit.php:379
+#@ google-integration-toolkit
+msgid "AdSense Section Targeting:"
+msgstr "AdSense Section Targeting:"
+
+#: google-integration-toolkit.php:383
+#@ google-integration-toolkit
+msgid "Enable AdSense Section Targetting for Content:"
+msgstr "启动AdSense Section Targetting for Content:"
+
+#: google-integration-toolkit.php:387
+#@ google-integration-toolkit
+msgid "This option ads special HTML comment tags around posts, pages and excerpts. This may improve AdSense ads targeting. You can find more informations <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">here</a>."
+msgstr "此选项起动 AdSense ads targeting. 详情见 <a href=\"https://www.google.com/adsense/support/bin/answer.py?hl=en&answer=23168\">此</a>."
+
+#: google-integration-toolkit.php:393
+#@ google-integration-toolkit
+msgid "Enable AdSense Section Targetting for Comments:"
+msgstr "启动AdSense Section Targetting for Comments:"
+
+#: google-integration-toolkit.php:397
+#@ google-integration-toolkit
+msgid "This option ads special HTML comment tags around comments."
+msgstr "此选项起动 HTML comment tags. "
+
+#: google-integration-toolkit.php:402
+#@ google-integration-toolkit
+msgid "404 errors tracking:"
+msgstr "404 错误跟踪:"
+
+#: google-integration-toolkit.php:406
+#@ google-integration-toolkit
+msgid "Track 404 errors with Google Analytics:"
+msgstr "用Google Analytics 404 错误跟踪:"
+
+#: google-integration-toolkit.php:409
+#@ google-integration-toolkit
+msgid "Enable this option to track \"Page not found\" errors using Google Analytics"
+msgstr "用Google Analytics \"Page not found\" 错误跟踪:"
+
+#: google-integration-toolkit.php:415
+#@ google-integration-toolkit
+msgid "URL prefix:"
+msgstr "URL 前缀:"
+
+#: google-integration-toolkit.php:419
+#@ google-integration-toolkit
+msgid "All 404 errors will appear in Analytics Reports as visits to URL like <code>/404.html?page=[pagename.html?queryparameter]&from=[referrer]</code>, where <code>[pagename.html?queryparameters]</code> is the missing page name and referrer is the page URL from where the user reached the 404 page. You can change prefix <code>/404.html</code> to something else using this option."
+msgstr "所有404 错误将于 Analytics Reports 中<code>/404.html?page=[pagename.html?queryparameter]&from=[referrer]</code>, <code>[pagename.html?queryparameters]</code> 是出错 URL。可用 <code>/404.html</code>."
+
+#: google-integration-toolkit.php:427
+#@ google-integration-toolkit
+msgid "Save settings"
+msgstr "存档"
+
diff --git a/plugins/google-integration-toolkit/lang/google-integration-toolkit.pot b/plugins/google-integration-toolkit/lang/google-integration-toolkit.pot
new file mode 100755
index 00000000..5b376401
--- /dev/null
+++ b/plugins/google-integration-toolkit/lang/google-integration-toolkit.pot
@@ -0,0 +1,216 @@
+# Translation of the WordPress plugin Google Integration Toolkit 1.4 by Daniel Frużyński.
+# Copyright (C) 2010 Daniel Frużyński
+# This file is distributed under the same license as the Google Integration Toolkit package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Google Integration Toolkit 1.4\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/google-integration-toolkit\n"
+"POT-Creation-Date: 2010-01-04 21:53+0000\n"
+"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: google-integration-toolkit.php:251
+msgid "Configuration has been saved."
+msgstr ""
+
+#: google-integration-toolkit.php:258
+msgid "Google Integration Toolkit - Options"
+msgstr ""
+
+#: google-integration-toolkit.php:265
+msgid "Google Webmasters Tools:"
+msgstr ""
+
+#: google-integration-toolkit.php:269
+msgid "Page verification method:"
+msgstr ""
+
+#: google-integration-toolkit.php:272
+msgid ""
+"Meta tag <code>&lt;meta name=&quot;google-site-verification&quot; "
+"content=&quot;...&quot; /&gt;</code>"
+msgstr ""
+
+#: google-integration-toolkit.php:273
+msgid ""
+"Meta tag <code>&lt;meta name=&quot;verify-v1&quot; content=&quot;...&quot; /"
+"&gt;</code>"
+msgstr ""
+
+#: google-integration-toolkit.php:274
+msgid "File"
+msgstr ""
+
+#: google-integration-toolkit.php:275
+msgid ""
+"<b>Note:</b> Please use <code>google-site-verification</code> meta tag or "
+"file to verify new websites. Meta tag <code>verify-v1</code> is supported "
+"for backward compatibility only."
+msgstr ""
+
+#: google-integration-toolkit.php:281
+msgid "Meta tag value:"
+msgstr ""
+
+#: google-integration-toolkit.php:285
+msgid "This tag looks like this:"
+msgstr ""
+
+#: google-integration-toolkit.php:287
+msgid "or"
+msgstr ""
+
+#: google-integration-toolkit.php:289
+msgid "Please put <b>marked part only</b> to the field above."
+msgstr ""
+
+#: google-integration-toolkit.php:295
+msgid "Verification file name:"
+msgstr ""
+
+#: google-integration-toolkit.php:299
+#, php-format
+msgid "Name of this file starts with 'google', e.g. %s"
+msgstr ""
+
+#: google-integration-toolkit.php:304
+msgid "Google Analytics:"
+msgstr ""
+
+#: google-integration-toolkit.php:308
+msgid "Google Analytics ID:"
+msgstr ""
+
+#: google-integration-toolkit.php:312
+msgid ""
+"Please find following line in your GA tracking code and copy bolded part to "
+"the field above:"
+msgstr ""
+
+#: google-integration-toolkit.php:319
+msgid "Enable Google AdSense integration:"
+msgstr ""
+
+#: google-integration-toolkit.php:327
+msgid "RSS/Atom Feeds tagging:"
+msgstr ""
+
+#: google-integration-toolkit.php:331
+msgid "Enable RSS/Atom Feeds tagging:"
+msgstr ""
+
+#: google-integration-toolkit.php:335
+msgid ""
+"This option tags all links in RSS/Atom feeds. This allows to track visitors "
+"from your feeds using Google Analytics."
+msgstr ""
+
+#: google-integration-toolkit.php:341
+msgid "Source name:"
+msgstr ""
+
+#: google-integration-toolkit.php:345
+msgid ""
+"This value will be used as a value for the <code>utm_source</code> parameter."
+msgstr ""
+
+#: google-integration-toolkit.php:351
+msgid "Medium name:"
+msgstr ""
+
+#: google-integration-toolkit.php:355
+msgid ""
+"This value will be used as a value for the <code>utm_medium</code> parameter."
+msgstr ""
+
+#: google-integration-toolkit.php:361
+msgid "Campaign name:"
+msgstr ""
+
+#: google-integration-toolkit.php:365
+msgid ""
+"This value will be used as a value for the <code>utm_campaign</code> "
+"parameter."
+msgstr ""
+
+#: google-integration-toolkit.php:370
+msgid "AdSense Section Targeting:"
+msgstr ""
+
+#: google-integration-toolkit.php:374
+msgid "Enable AdSense Section Targetting for Content:"
+msgstr ""
+
+#: google-integration-toolkit.php:378
+msgid ""
+"This option ads special HTML comment tags around posts, pages and excerpts. "
+"This may improve AdSense ads targeting. You can find more informations <a "
+"href=\"https://www.google.com/adsense/support/bin/answer.py?"
+"hl=en&answer=23168\">here</a>."
+msgstr ""
+
+#: google-integration-toolkit.php:384
+msgid "Enable AdSense Section Targetting for Comments:"
+msgstr ""
+
+#: google-integration-toolkit.php:388
+msgid "This option ads special HTML comment tags around comments."
+msgstr ""
+
+#: google-integration-toolkit.php:393
+msgid "404 errors tracking:"
+msgstr ""
+
+#: google-integration-toolkit.php:397
+msgid "Track 404 errors with Google Analytics:"
+msgstr ""
+
+#: google-integration-toolkit.php:400
+msgid ""
+"Enable this option to track \"Page not found\" errors using Google Analytics"
+msgstr ""
+
+#: google-integration-toolkit.php:406
+msgid "URL prefix:"
+msgstr ""
+
+#: google-integration-toolkit.php:410
+msgid ""
+"All 404 errors will appear in Analytics Reports as visits to URL like "
+"<code>/404.html?page=[pagename.html?queryparameter]&from=[referrer]</code>, "
+"where <code>[pagename.html?queryparameters]</code> is the missing page name "
+"and referrer is the page URL from where the user reached the 404 page. You "
+"can change prefix <code>/404.html</code> to something else using this option."
+msgstr ""
+
+#: google-integration-toolkit.php:418
+msgid "Save settings"
+msgstr ""
+
+#. Plugin Name of an extension
+msgid "Google Integration Toolkit"
+msgstr ""
+
+#. Plugin URI of an extension
+msgid "http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/"
+msgstr ""
+
+#. Description of an extension
+msgid ""
+"Integrate Google services (Analytics, Webmaster Tools, etc.) with Your Blog."
+msgstr ""
+
+#. Author of an extension
+msgid "Daniel Frużyński"
+msgstr ""
+
+#. Author URI of an extension
+msgid "http://www.poradnik-webmastera.com/"
+msgstr ""
diff --git a/plugins/google-integration-toolkit/readme.html b/plugins/google-integration-toolkit/readme.html
new file mode 100755
index 00000000..979b5ca1
--- /dev/null
+++ b/plugins/google-integration-toolkit/readme.html
@@ -0,0 +1,115 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
+<title>Google Integration Toolkit 1.4 Readme</title>
+</head>
+<body>
+<h1>Google Integration Toolkit 1.4 Readme</h1>
+<p>This plugin helps you to integrate Google services (Analytics, Webmaster Tools, etc.) with Your Blog.</p>
+<p><b>Plugin Homepage:</b> <a href="http://www.poradnik-webmastera.com/projekty/google_integration_toolkit/">Google Integration Toolkit</a></p>
+<p><b>Plugin Homepage on WordPress.org:</b> <a href="http://wordpress.org/extend/plugins/google-integration-toolkit/">Google Integration Toolkit</a></p>
+<p><b>Author Homepage:</b> <a href="http://www.poradnik-webmastera.com/">Poradnik Webmastera</a></p>
+<p><b>Author:</b> Daniel Frużyński</p>
+
+<h2>Description</h2>
+<p>Google provides a lot of useful services, which can be integrated with your blog. With them you can check how your site is indexed in Google (using Google Webmaster Tools), get detailed statistics (Google Analytics), earn money (Google AdSense) and more. This plugin allows to easily integrate them with your blog.</p>
+<p>This version of Google Integration Toolkit plugin provides following features:</p>
+<ul>
+<li>Integration with Google Webmasters Tools (both verification methods are supported: meta tag and verification file);</li>
+<li>Integration with Google Analytics (with optional Google Analytics - Google AdSense integration);</li>
+<li>RSS/Atom Feeds tagging - you can track visitors coming from your feed using Google Analytics;</li>
+<li>404 error tracking using Google Analytics;</li>
+<li>AdSense Section Targeting - improve AdSense ads targeting</li>
+</ul>
+<p>Available translations:</p>
+<ul>
+<li>English</li>
+<li>Polish (pl_PL) - done by me</li>
+<li>Russian (ru_RU) - thanks Fat Cower</li>
+<li>Belorussian (be_BY) - thanks ilyuha</li>
+<li>Chinese (zn_CH) - thanks BoB</li>
+<li>Italian (it_IT) - thanks Stefan Des</li>
+<li>Danish (da_DK) - thanks GeorgWP</li>
+<li>Dutch (nl_NL) - thanks Rene</li>
+</ul>
+<p>More features soon!</p>
+
+<h2>Installation</h2>
+<ol>
+<li>Upload <code>google-integration-toolkit</code> directory to the <code>/wp-content/plugins/</code> directory</li>
+<li>Activate the plugin through the 'Plugins' menu in WordPress</li>
+<li>Configure and enjoy :)</li>
+</ol>
+
+<h2>Frequently Asked Questions</h2>
+
+<h3>Why I cannot verify my page in Google Webmasters Tools using verification file?</h3>
+<p>Starting from October 2009 Google checks contents of file used for verification - it should contains something like this:</p>
+<p><code>google-site-verification: googleabcdefghijklmnop.html</code></p>
+<p>Please make sure that you use Google Integration Toolkit in version 1.3 or newer. If you do, open verification file in your web browser and check page source to make sure there is no extra content (e.g. HTML comment). I am aware of WP Super Cache plugin, which adds such comment in version 0.9.6.1 or older - if you use it, please upgrade to version 0.9.7 or newer. If you find another conflicting plugin, please inform its author about this issue, or me.</p>
+
+<h3>Why I cannot verify my page in Google Webmasters Tools using meta tag?</h3>
+<p>Starting from October 2009 Google changed name of its meta verification tag from <code>&lt;meta name=&quot;verify-v1&quot; content=&quot;...&quot; /&gt;</code> to <code>&lt;meta name=&quot;google-site-verification&quot; content=&quot;...&quot; /&gt;</code>. Please make sure that you are using Google Integration Toolkit in version 1.3 or newer, and check its configuration to make sure you use the new tag.</p>
+
+<h2>Changelog</h2>
+<p>1.4</p>
+<ul>
+<li>Added Dutch translation (thanks Rene);</li>
+<li>Check if someone enters whole meta tag and correct this;</li>
+<li>Code cleanup</li>
+</ul>
+<p>1.3.4</p>
+<ul>
+<li>Added Danish translation (thanks GeorgWP)</li>
+</ul>
+<p>1.3.3</p>
+<ul>
+<li>Marked as compatible with WP 2.9.x</li>
+</ul>
+<p>1.3.2</p>
+<ul>
+<li>Added Italian translation (thanks Stefan Des)</li>
+</ul>
+<p>1.3.1</p>
+<ul>
+<li>Added Chinese translation (thanks BoB)</li>
+</ul>
+<p>1.3</p>
+<ul>
+<li>Added support for new verification meta tag and new format of verification file for Google Webmasters Tools</li>
+</ul>
+<p>1.2.2</p>
+<ul>
+<li>Added Belorussian translation (thanks ilyuha)</li>
+</ul>
+<p>1.2.1</p>
+<ul>
+<li>Moved admin code to main file to avoid &quot;Fatal Google Integration Toolkit error: $this->admin is not initialised!&quot; error</li>
+</ul>
+<p>1.2</p>
+<ul>
+<li>Added 404 error tracking using Google Analytics</li>
+</ul>
+<p>1.1.3</p>
+<ul>
+<li>Added Russian translation (thanks Fat Cower)</li>
+</ul>
+<p>1.1.2</p>
+<ul>
+<li>Make plugin compatible with WordPress 2.8</li>
+</ul>
+<p>1.1.1</p>
+<ul>
+<li>Make plugin compatible with PHP4</li>
+</ul>
+<p>1.1</p>
+<ul>
+<li>Added AdSense Section Targeting</li>
+</ul>
+<p>1.0</p>
+<ul>
+<li>Initial version</li>
+</ul>
+</body>
+</html> \ No newline at end of file
diff --git a/plugins/google-integration-toolkit/readme.txt b/plugins/google-integration-toolkit/readme.txt
new file mode 100755
index 00000000..c633a5bc
--- /dev/null
+++ b/plugins/google-integration-toolkit/readme.txt
@@ -0,0 +1,101 @@
+=== Plugin Name ===
+Contributors: sirzooro
+Tags: analytics, feed, feeds, google, gwt, integration, rss, seo, statistics, stats, tracking, section targeting, ad, ads, adsense, advertising, comment, comments, 404
+Requires at least: 2.7
+Tested up to: 2.9.9
+Stable tag: 1.4
+
+This plugin helps you to integrate Google services (Analytics, Webmaster Tools, etc.) with Your Blog.
+
+== Description ==
+
+Google provides a lot of useful services, which can be integrated with your blog. With them you can check how your site is indexed in Google (using Google Webmaster Tools), get detailed statistics (Google Analytics), earn money (Google AdSense) and more. This plugin allows to easily integrate them with your blog.
+
+This version of Google Integration Toolkit plugin provides following features:
+
+* Integration with Google Webmasters Tools (both verification methods are supported: meta tag and verification file);
+* Integration with Google Analytics (with optional Google Analytics - Google AdSense integration);
+* RSS/Atom Feeds tagging - you can track visitors coming from your feed using Google Analytics;
+* 404 error tracking using Google Analytics;
+* AdSense Section Targeting - improve AdSense ads targeting;
+
+Available translations:
+
+* English
+* Polish (pl_PL) - done by me
+* Russian (ru_RU) - thanks [Fat Cower](http://www.fatcow.com/)
+* Belorussian (be_BY) - thanks [ilyuha](http://antsar.info/)
+* Chinese (zn_CH) - thanks [BoB](http://wealthynetizen.com/)
+* Italian (it_IT) - thanks [Stefan Des](http://www.stefandes.com/)
+* Danish (da_DK) - thanks [GeorgWP](http://wordpress.blogos.dk/)
+* Dutch (nl_NL) - thanks [Rene](http://wordpresspluginguide.com/)
+
+More features soon!
+
+[Changelog](http://wordpress.org/extend/plugins/google-integration-toolkit/changelog/)
+
+== Installation ==
+
+1. Upload `google-integration-toolkit` directory to the `/wp-content/plugins/` directory
+1. Activate the plugin through the 'Plugins' menu in WordPress
+1. Configure and enjoy :)
+
+== Frequently Asked Questions ==
+
+= Why I cannot verify my page in Google Webmasters Tools using verification file? =
+
+Starting from October 2009 Google checks contents of file used for verification - it should contains something like this:
+
+`google-site-verification: googleabcdefghijklmnop.html`
+
+Please make sure that you use Google Integration Toolkit in version 1.3 or newer. If you do, open verification file in your web browser and check page source to make sure there is no extra content (e.g. HTML comment). I am aware of WP Super Cache plugin, which adds such comment in version 0.9.6.1 or older - if you use it, please upgrade to version 0.9.7 or newer. If you find another conflicting plugin, please inform its author about this issue, or me.
+
+= Why I cannot verify my page in Google Webmasters Tools using meta tag? =
+
+Starting from October 2009 Google changed name of its meta verification tag from `<meta name="verify-v1" content="..." />` to `<meta name="google-site-verification" content="..." />`. Please make sure that you are using Google Integration Toolkit in version 1.3 or newer, and check its configuration to make sure you use the new tag.
+
+== Changelog ==
+
+= 1.4 =
+* Added Dutch translation (thanks Rene);
+* Check if someone enters whole meta tag and correct this;
+* Code cleanup
+
+= 1.3.4 =
+* Added Danish translation (thanks GeorgWP)
+
+= 1.3.3 =
+* Marked as compatible with WP 2.9.x
+
+= 1.3.2 =
+* Added Italian translation (thanks Stefan Des)
+
+= 1.3.1 =
+* Added Chinese translation (thanks BoB)
+
+= 1.3 =
+* Added support for new verification meta tag and new format of verification file for Google Webmasters Tools
+
+= 1.2.2 =
+* Added Belorussian translation (thanks ilyuha)
+
+= 1.2.1 =
+* Moved admin code to main file to avoid "Fatal Google Integration Toolkit error: $this->admin is not initialised!" error
+
+= 1.2 =
+* Added 404 error tracking using Google Analytics
+
+= 1.1.3 =
+* Added Russian translation (thanks Fat Cower)
+
+= 1.1.2 =
+* Make plugin compatible with WordPress 2.8
+
+= 1.1.1 =
+* Make plugin compatible with PHP4
+
+= 1.1 =
+* Added AdSense Section Targeting
+
+= 1.0 =
+* Initial version \ No newline at end of file