### Eclipse Workspace Patch 1.0
#P adsense
Index: adsense.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/adsense.admin.inc,v
retrieving revision 1.1.2.6
diff -u -r1.1.2.6 adsense.admin.inc
--- adsense.admin.inc	11 Jan 2010 13:20:47 -0000	1.1.2.6
+++ adsense.admin.inc	8 Feb 2011 22:27:27 -0000
@@ -15,8 +15,8 @@
  * @ingroup forms
  */
 function adsense_main_settings() {
-  include_once(drupal_get_path('module', 'adsense') .'/help/adsense.help.inc');
-  require_once(drupal_get_path('module', 'adsense') .'/includes/adsense.search_options.inc');
+  include_once(drupal_get_path('module', 'adsense') . '/help/adsense.help.inc');
+  include_once(drupal_get_path('module', 'adsense') . '/includes/adsense.search_options.inc');
 
   $form['help'] = array(
     '#type'        => 'fieldset',
@@ -26,8 +26,7 @@
   );
 
   $form['help']['help'] = array(
-    '#type'  => 'markup',
-    '#value' => adsense_help_text(),
+    '#markup' => adsense_help_text(),
   );
 
   $form['visibility'] = array(
@@ -60,7 +59,7 @@
   }
   elseif ($access) {
     $form['visibility']['adsense_visibility']['#options'][] = t('Show if the following PHP code returns <code>TRUE</code> (PHP-mode, experts only).');
-    $form['visibility']['adsense_access_pages']['#description'] .= ' '. t('If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can break your Drupal site.', array('%php' => '<?php ?>'));
+    $form['visibility']['adsense_access_pages']['#description'] .= ' ' . t('If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can break your Drupal site.', array('%php' => '<?php ?>'));
   }
 
   $form['advanced'] = array(
@@ -144,7 +143,7 @@
  * @ingroup forms
  */
 function adsense_id_settings() {
-  include_once(drupal_get_path('module', 'adsense') .'/help/adsense_id_help.inc');
+  include_once(drupal_get_path('module', 'adsense') . '/help/adsense_id_help.inc');
 
   $form['help'] = array(
     '#type'        => 'fieldset',
@@ -154,8 +153,7 @@
   );
 
   $form['help']['help'] = array(
-    '#type'  => 'markup',
-    '#value' => adsense_id_help_text(),
+    '#markup' => adsense_id_help_text(),
   );
 
   $form['adsense_basic_id'] = array(
@@ -178,7 +176,7 @@
   else {
     $form['adsense_id_module'] = array(
       '#type'  => 'hidden',
-      '#value' => $options[0],
+      '#value' => $options['adsense_basic'],
     );
   }
 
@@ -191,7 +189,13 @@
  * Validate adsense_id_settings form.
  */
 function _adsense_id_settings_validate($form, &$form_state) {
+  // Trim remaning whitespace.
   $form_state['values']['adsense_basic_id'] = trim($form_state['values']['adsense_basic_id']);
+
+  // Verify it's a valid Adsense publisher ID.
+  if (!preg_match('/^pub-[0-9]+$/', $form_state['values']['adsense_basic_id'])) {
+    form_set_error('adsense_basic_id', t('A valid Google AdSense Publisher ID is case sensitive and formatted like %id.', array('%id' => 'pub-9999999999999')));
+  }
 }
 
 /**
@@ -201,7 +205,7 @@
  *   array of selectable Publisher ID functions
  */
 function _adsense_id_settings_client_id_mods() {
-  $ret['adsense_basic'] = 'Use the site Publisher ID always';
+  $ret['adsense_basic'] = 'Always use the site Publisher ID.';
 
   $funcs = get_defined_functions();
   foreach ($funcs['user'] as $func) {
Index: adsense.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/adsense.info,v
retrieving revision 1.6
diff -u -r1.6 adsense.info
--- adsense.info	21 Jul 2008 00:21:33 -0000	1.6
+++ adsense.info	8 Feb 2011 22:27:27 -0000
@@ -5,4 +5,10 @@
 name = AdSense core
 description = Displays Google AdSense ads on your site to earn revenue. Requires at least one additional ad unit generator module.
 package = Adsense
-core = 6.x
+core = 7.x
+
+configure = admin/config/system/adsense
+
+files[] = adsense.module
+files[] = adsense.install
+files[] = adsense.admin.inc
Index: adsense.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/adsense.install,v
retrieving revision 1.10.2.5
diff -u -r1.10.2.5 adsense.install
--- adsense.install	31 Mar 2009 14:41:01 -0000	1.10.2.5
+++ adsense.install	8 Feb 2011 22:27:27 -0000
@@ -7,16 +7,7 @@
  */
 
 /**
- * Implementation of hook_install().
- */
-function adsense_install() {
-  drupal_set_message(st("AdSense settings are available under !link",
-    array( '!link' => l(st('Administer > Site configuration > AdSense'),  'admin/settings/adsense' ) )
-  ));
-}
-
-/**
- * Implementation of hook_uninstall().
+ * Implements hook_uninstall().
  */
 function adsense_uninstall() {
   variable_del('adsense_access_pages');
@@ -29,51 +20,7 @@
   variable_del('adsense_test_mode');
   variable_del('adsense_visibility');
 
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_ad\_channel\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-}
-
-/**
- * Drupal 5.x to 6.x update.
- */
-function adsense_update_6000() {
-  // Convert old ad blocks to the new per-ad-gen blocks
-  // New block will have the original number as the name, so that the block input tag works
-  $oldsearch = 0;
-  $managed = 0;
-  $oldcode = 0;
-  $pos = drupal_strlen('adsense_ad_block_');
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_ad\_block\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    $data = explode(':', variable_get($variable->name, ''));
-    if ($data[0] == 'Search Box') {
-      // Block is an old search block
-      // Store the name and the channel in the new block
-      $newdata = implode(':', array(drupal_substr($variable->name, $pos), $data[2]));
-      variable_set('adsense_search_ad_block_'. $oldsearch++, $newdata);
-    }
-    elseif (!empty($data[3])) {
-      // Slot is defined, so it is a managed ad
-      // Store the name, format and slot in the new block
-      $newdata = implode(':', array(drupal_substr($variable->name, $pos), $data[0], $data[3]));
-      variable_set('adsense_managed_ad_block_'. $managed++, $newdata);
-    }
-    else {
-      // Slot is an old code ad
-      // Store the name, format, group and channel in the new block
-      $newdata = implode(':', array(drupal_substr($variable->name, $pos), $data[0], $data[1], $data[2]));
-      variable_set('adsense_oldcode_ad_block_'. $oldcode++, $newdata);
-    }
-    // Raise the number of blocks in a type, if necessary
-    variable_set('adsense_search_number_blocks', max(variable_get('adsense_search_number_blocks', 2), $oldsearch));
-    variable_set('adsense_managed_number_blocks', max(variable_get('adsense_managed_number_blocks', 3), $managed));
-    variable_set('adsense_oldcode_number_blocks', max(variable_get('adsense_oldcode_number_blocks', 3), $oldcode));
-
-    variable_del($variable->name);
-  }
-
-  $ret = array();
-  return $ret;
+  // Delete all the AdSense channel variables and then clear the variable cache.
+  db_query("DELETE FROM {variable} WHERE name LIKE 'adsense\_ad\_channel\_%'");
+  cache_clear_all('variables', 'cache');
 }
Index: adsense.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/adsense.module,v
retrieving revision 1.68.2.21
diff -u -r1.68.2.21 adsense.module
--- adsense.module	1 Sep 2009 16:30:19 -0000	1.68.2.21
+++ adsense.module	8 Feb 2011 22:27:27 -0000
@@ -93,30 +93,42 @@
 }
 
 /**
- * Implementation of hook_perm().
+ * Implements hook_permission().
  */
-function adsense_perm() {
-  return array('administer adsense', 'hide adsense', 'use PHP for ad visibility');
+function adsense_permission() {
+  return array(
+    'administer adsense' => array(
+      'title' => t('Administer AdSense settings'),
+      'description' => t('Perform administration tasks for AdSense.'),
+    ),
+    'hide adsense' => array(
+      'title' => t('Hide AdSense'),
+      'description' => t('Hide AdSense ads for this role.'),
+    ),
+    'use PHP for ad visibility' => array(
+      'title' => t('Can use PHP for AdSense visibility'),
+    ),
+  );
 }
 
 /**
- * Implementation of hook_theme().
+ * Implements hook_theme().
  */
 function adsense_theme() {
   return array(
     'adsense_ad' => array(
-      'arguments' => array('ad' => NULL, 'module' => NULL),
+      'variables' => array('ad' => NULL, 'module' => NULL),
     ),
   );
 }
 
 /**
- * Implementation of hook_menu().
+ * Implements hook_menu().
  */
 function adsense_menu() {
   $items = array();
 
-  $items['admin/settings/adsense'] = array(
+  $items['admin/config/system/adsense'] = array(
     'title' => 'AdSense',
     'description' => 'Configure Google AdSense Ads.',
     'page callback' => 'drupal_get_form',
@@ -124,12 +136,12 @@
     'access arguments'  => array('administer adsense'),
     'file' => 'adsense.admin.inc',
   );
-  $items['admin/settings/adsense/main'] = array(
+  $items['admin/config/system/adsense/main'] = array(
     'title' => 'Settings',
     'weight' => 10,
     'type' => MENU_DEFAULT_LOCAL_TASK,
   );
-  $items['admin/settings/adsense/publisher'] = array(
+  $items['admin/config/system/adsense/publisher'] = array(
     'title' => 'Publisher ID',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('adsense_id_settings'),
@@ -138,7 +150,7 @@
     'type' => MENU_LOCAL_TASK,
     'file' => 'adsense.admin.inc',
   );
-  $items['admin/settings/adsense/publisher/site'] = array(
+  $items['admin/config/system/adsense/publisher/site'] = array(
     'title' => 'Site ID',
     'weight' => -1,
     'type' => MENU_DEFAULT_LOCAL_TASK,
@@ -148,7 +160,7 @@
 }
 
 /**
- * Implementation of hook_requirements().
+ * Implements hook_requirements().
  */
 function adsense_requirements($phase) {
   $requirements = array();
@@ -171,74 +183,32 @@
 }
 
 /**
- * Implementation of hook_filter().
+ * Implements hook_filter_info().
  */
-function adsense_filter($op, $delta = 0, $format = -1, $text = '') {
-  switch ($op) {
-    case 'list':
-      return array(0 => t('AdSense tag'));
-    case 'no cache':
-      return TRUE;
-    case 'description':
-      return t('Substitutes an AdSense special tag with an ad.');
-    case 'process':
-      return _adsense_process_tags($text);
-    default:
-      return $text;
-  }
-}
-
-/**
- * Implementation of hook_nodeapi().
- */
-function adsense_nodeapi(&$node, $op = 'view', $teaser, $page) {
-  switch ($op) {
-    case 'view':
-      if (variable_get('adsense_section_targeting', ADSENSE_SECTION_TARGETING_DEFAULT)) {
-        $node->content['adsense_start'] = array(
-          '#value' => '<!-- google_ad_section_start -->',
-          '#weight' => -5,
-          );
-        $node->content['adsense_end'] = array(
-          '#value' => '<!-- google_ad_section_end -->',
-          '#weight' => 5,
-          );
-      }
-  }
-}
-
-/**
- * Implementation of hook_form_filter_admin_format_form_alter().
- */
-function adsense_form_filter_admin_format_form_alter(&$form, $form_state) {
-  // In Drupal <= 6.9 (or later) the HTML corrector has a bug that causes problems with the use of the AdSense tag filter
-  sscanf(VERSION, "%d.%d", $major, $minor);
-  if (($major == 6) && ($minor <= 99)) {
-    if ((empty($form_state['post']) && $form['filters']['adsense/0']['#default_value'] && $form['filters']['filter/3']['#default_value']) ||
-        ((!empty($form_state['post'])) && ($form_state['post']['filters']['adsense/0'] == '1') && ($form_state['post']['filters']['filter/3'] == '1'))) {
-      drupal_set_message(t('The HTML corrector filter has a bug that causes problems with the use of the AdSense tag. Disabling the HTML corrector filter is recommended.'), 'warning', TRUE);
-    }
-  }
-}
+function adsense_filter_info() {
+  $filters['adsense'] = array(
+    'title' => t('AdSense tag'),
+    'description' => t('Substitutes an AdSense special tag with an ad. Add this below "Limit allowed HTML tags".'),
+    'process callback' => '_adsense_process_tags',
+    'tips callback' => '_adsense_filter_tips',
+    'cache' => FALSE,
+  );
 
-/**
- * Implementation of hook_filter_tips().
- */
-function adsense_filter_tips($delta, $format, $long = FALSE) {
-  return t('Use the special tag [adsense:<em>format</em>:<em>slot</em>] or [adsense:<em>format</em>:<em>[group]</em>:<em>[channel]</em><em>[:slot]</em>] or [adsense:block:<em>location</em>] to display Google AdSense ads.');
+  return $filters;
 }
 
 /**
- * Helper function to process the adsense input filter
+ * Helper function to process the adsense input filter.
  *
  * @param $text
- *   text of the node being processed
+ *   text of the node being processed.
  * @return
- *   modified text with the adsense tags replaced by Google AdSense ads
- * @see adsense_filter()
+ *   modified text with the adsense tags replaced by Google AdSense ads.
+ *
+ * @see adsense_filter_info()
  * @see adsense_display()
  */
-function _adsense_process_tags($text) {
+function _adsense_process_tags($text, $filter) {
   $patterns = array(
     'block'  => '/\[adsense:block:([^\]]+)\]/x',
     'oldtag' => '/\[adsense:([^:]+):(\d*):(\d*):?(\w*)\]/x',
@@ -257,12 +227,12 @@
               'adsense_search',
             );
             foreach ($mods as $module) {
-              $module_blocks = module_invoke($module, 'block', 'list');
+              $module_blocks = module_invoke($module, 'block_info');
               if ($module_blocks) {
                 foreach ($module_blocks as $delta => $block) {
                   if ($block['info'] == $match[1]) {
-                    // Found the block with the same name as the passed arg
-                    $block = module_invoke($module, 'block', 'view', $delta);
+                    // Found the block with the same name as the passed arg.
+                    $block = module_invoke($module, 'block_view', $delta);
                     $ad = $block['content'];
                   }
                 }
@@ -297,7 +267,7 @@
         }
         // Replace the first occurance of the tag, in case we have the same
         // tag more than once.
-        $str = '/\\'. $match[0] .'/';
+        $str = '/\\' . $match[0] . '/';
         $text = preg_replace($str, $ad, $text, 1);
       }
     }
@@ -307,23 +277,47 @@
 }
 
 /**
- * Provides the Google AdSense Publisher ID / slot ID to be used in the ad
+ * Callback to display our filter tips.
+ */
+function _adsense_filter_tips($filter, $format, $long = FALSE) {
+  return t('Use the special tag [adsense:<em>format</em>:<em>slot</em>] or [adsense:<em>format</em>:<em>[group]</em>:<em>[channel]</em><em>[:slot]</em>] or [adsense:block:<em>location</em>] to display Google AdSense ads.');
+}
+
+/**
+ * Implements hook_node_view().
+ */
+function adsense_node_view($node, $view_mode, $langcode) {
+  if (variable_get('adsense_section_targeting', ADSENSE_SECTION_TARGETING_DEFAULT)) {
+    $node->content['adsense_start'] = array(
+      '#markup' => '<!-- google_ad_section_start -->',
+      '#weight' => -5,
+    );
+
+    $node->content['adsense_end'] = array(
+      '#markup' => '<!-- google_ad_section_end -->',
+      '#weight' => 5,
+    );
+  }
+}
+
+/**
+ * Provides the Google AdSense Publisher ID / slot ID to be used in the ad.
  *
  * If revenue sharing modules are installed, this function will call the
  * appropriate function in those modules.
  *
  * @param $format
- *   format of the ad being generated (optional)
+ *   format of the ad being generated (optional).
  * @return
  *   If the format parameter is supplied, array with 'client' and 'slot'
- *   fields, otherwise just the Publisher ID string is returned
+ *   fields, otherwise just the Publisher ID string is returned.
  */
 function adsense_get_client_slot_id($format = NULL) {
-  // Get the configured function
+  // Get the configured function.
   $function = variable_get('adsense_id_module', ADSENSE_ID_MODULE_DEFAULT);
 
   if ($function != ADSENSE_ID_MODULE_DEFAULT) {
-    // Call the function
+    // Call the function.
     if (function_exists($function)) {
       $client_id = $function('client_id', $format);
       if ($client_id) {
@@ -366,7 +360,7 @@
     $args = func_get_arg(0);
   }
   else {
-    // handle the 'old' method of calling this function
+    // handle the 'old' method of calling this function.
     // adsense_display($format = '160x600', $group = 1, $channel = 1, $slot = '', $referral = 0, $cpa = '')
 
     $args['format'] = '160x600';
@@ -391,25 +385,25 @@
   $ad = adsense_ad_formats($args['format']);
 
   if ($ad === NULL) {
-    $ad = '<!--adsense: invalid format: '. $args['format'] .'-->';
+    $ad = '<!--adsense: invalid format: ' . $args['format'] . '-->';
   }
   elseif (!_adsense_page_match()) {
-    // Check first if disabled or if we are at adsense limit or if this page doesn't allow adsense
+    // Check first if disabled or if we are at adsense limit or if this page doesn't allow adsense.
     $ad = '<!--adsense: page not in match list-->';
   }
   elseif (!_adsense_check_if_enabled()) {
     global $user;
 
-    // Ads are disabled
+    // Ads are disabled.
     if (variable_get('adsense_placeholder', ADSENSE_PLACEHOLDER_DEFAULT) || ($user->uid == 1)) {
       $width = array_key_exists('width', $ad) ? $ad['width'] : 0;
       $height = array_key_exists('height', $ad) ? $ad['height'] : 0;
-      $text = variable_get('adsense_placeholder_text', ADSENSE_PLACEHOLDER_TEXT_DEFAULT) ." ${ad['desc']}";
+      $text = variable_get('adsense_placeholder_text', ADSENSE_PLACEHOLDER_TEXT_DEFAULT) . " ${ad['desc']}";
       if ($user->uid == 1) {
-        $text = 'Ads disabled for site admin<br />'. $text;
+        $text = 'Ads disabled for site admin<br />' . $text;
       }
 
-      $ad = "<!--adsense: placeholder-->\n". _adsense_format_box($text, $width, $height);
+      $ad = "<!--adsense: placeholder-->\n" . _adsense_format_box($text, $width, $height);
     }
     else {
       $ad = '<!--adsense: ads disabled -->';
@@ -421,21 +415,21 @@
   else {
     // If site Slot ID for this ad was passed, pass the format as argument
     // in case Publisher ID modules are enabled that can return different
-    // Slot IDs per ad format
+    // Slot IDs per ad format.
     $client_id_arg = !empty($args['slot']) ? $args['format'] : NULL;
     $client = adsense_get_client_slot_id($client_id_arg);
 
     if (is_array($client)) {
-      // An array was received, use that Slot ID
+      // An array was received, use that Slot ID.
       $slot = $client['slot'];
       $client = $client['client'];
     }
     elseif (isset($args['slot'])) {
-      // Use the original site Slot ID
+      // Use the original site Slot ID.
       $slot = $args['slot'];
     }
 
-    // Ad should be displayed
+    // Ad should be displayed.
     switch ($args['format']) {
       case 'Search Box':
         if (!empty($slot) && module_exists('adsense_cse')) {
@@ -463,11 +457,11 @@
           $ad = '<!--adsense: no AdSense for Content module found-->';
         }
 
-        $ad = theme('adsense_ad', $ad, $module);
+        $ad = theme('adsense_ad', array('ad' => $ad, 'module' => $module));
 
         break;
     }
-    // Remove empty lines
+    // Remove empty lines.
     $ad = str_replace("\n\n", "\n", $ad);
   }
 
@@ -486,19 +480,19 @@
  *   string with the modified ad unit
  * @ingroup themeable
  */
-function theme_adsense_ad($ad, $module) {
-  return "<div class='adsense $module'>\n$ad\n</div>";
+function theme_adsense_ad($vars) {
+  return "<div class='adsense " . $vars['module'] . "'>\n" . $vars['ad'] . "\n</div>";
 }
 
 /**
- * Helper function to verify if ads are currently enabled
+ * Helper function to verify if ads are currently enabled.
  *
  * @return
- *   TRUE if ad display is enabled, FALSE otherwise
+ *   TRUE if ad display is enabled, FALSE otherwise.
  */
 function _adsense_check_if_enabled() {
   if (!variable_get('adsense_basic_id', ADSENSE_BASIC_ID_DEFAULT)) {
-    // Google AdSense Publisher ID is not configured
+    // Google AdSense Publisher ID is not configured.
     return FALSE;
   }
   if (variable_get('adsense_disable', ADSENSE_DISABLE_DEFAULT)) {
@@ -558,7 +552,7 @@
   // and it also prevents warnings about mixed-content
   // Thanks to Brad Konia http://drupal.org/node/29585
   // Should be restricted when running on Apache only
-  if (isset($_SERVER['SERVER_SOFTWARE']) && (stristr($_SERVER['SERVER_SOFTWARE'], 'Apache') !== FALSE) && 
+  if (isset($_SERVER['SERVER_SOFTWARE']) && (stristr($_SERVER['SERVER_SOFTWARE'], 'Apache') !== FALSE) &&
       isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] == 'on')) {
     return FALSE;
   }
@@ -568,9 +562,10 @@
 
   if ($pages) {
     if ($visibility == 2) {
-      return drupal_eval($pages);
+      return php_eval($pages);
     }
-    $path = drupal_get_path_alias($_GET['q']);
+    $pages = drupal_strtolower($pages);
+    $path = drupal_strtolower(drupal_get_path_alias($_GET['q']));
     $page_match = drupal_match_path($path, $pages);
     if ($path != $_GET['q']) {
       $page_match = $page_match || drupal_match_path($_GET['q'], $pages);
@@ -591,7 +586,7 @@
  */
 function _adsense_format_box($text, $width, $height) {
   $dimensions = ((!empty($width)) && (!empty($height)))
-                ? " width:". $width ."px; height:". $height ."px;" : "";
+                ? " width:" . $width . "px; height:" . $height . "px;" : "";
 
   return "<div class='adsense' style='text-align:center;display: table-cell;vertical-align:middle;border:solid 1px;${dimensions}'>${text}</div>";
 }
Index: contrib/adsense_click/adsense_click.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/contrib/adsense_click/adsense_click.info,v
retrieving revision 1.2.2.1
diff -u -r1.2.2.1 adsense_click.info
--- contrib/adsense_click/adsense_click.info	19 Dec 2008 01:32:37 -0000	1.2.2.1
+++ contrib/adsense_click/adsense_click.info	8 Feb 2011 22:27:27 -0000
@@ -6,4 +6,9 @@
 description = Tracks clicks to Google Adsense
 dependencies[] = adsense
 package = Adsense
-core = 6.x
+core = 7.x
+
+files[] = adsense_cse.module
+files[] = adsense_cse.install
+files[] = adsense_cse.admin.inc
+files[] = adsense_click.logs.inc
Index: contrib/adsense_click/adsense_click.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/contrib/adsense_click/adsense_click.install,v
retrieving revision 1.1.4.3
diff -u -r1.1.4.3 adsense_click.install
--- contrib/adsense_click/adsense_click.install	19 Dec 2008 01:32:37 -0000	1.1.4.3
+++ contrib/adsense_click/adsense_click.install	8 Feb 2011 22:27:27 -0000
@@ -6,21 +6,8 @@
  * Install file of the adsense_click module
  */
 
-function adsense_click_install() {
-  // Create tables.
-  drupal_install_schema('adsense_click');
-}
-
-/**
- * Implementation of hook_uninstall().
- */
-function adsense_click_uninstall() {
-  // Remove tables.
-  drupal_uninstall_schema('adsense_click');
-}
-
 /**
- * Implementation of hook_schema().
+ * Implements hook_schema().
  */
 function adsense_click_schema() {
   $schema['adsense_clicks'] = array(
@@ -28,7 +15,6 @@
       'aid' => array(
         'type' => 'serial',
         'not null' => TRUE,
-        'disp-width' => '10',
       ),
       'ip' => array(
         'type' => 'varchar',
@@ -41,7 +27,6 @@
         'unsigned' => TRUE,
         'not null' => TRUE,
         'default' => 0,
-        'disp-width' => '11',
       ),
       'path' => array(
         'type' => 'varchar',
@@ -71,58 +56,3 @@
 
   return $schema;
 }
-
-function adsense_click_update_1() {
-  $schema['adsense_clicks'] = array(
-    'fields' => array(
-      'aid' => array(
-        'type' => 'serial',
-        'not null' => TRUE,
-        'disp-width' => '10',
-      ),
-      'ip' => array(
-        'type' => 'varchar',
-        'length' => '15',
-        'not null' => FALSE,
-        'default' => '0',
-      ),
-      'timestamp' => array(
-        'type' => 'int',
-        'unsigned' => TRUE,
-        'not null' => TRUE,
-        'default' => 0,
-        'disp-width' => '11',
-      ),
-      'path' => array(
-        'type' => 'varchar',
-        'length' => '255',
-        'not null' => TRUE,
-        'default' => '',
-      ),
-    ),
-    'primary key' => array('aid'),
-    'indexes' => array(
-      'timestamp' => array('timestamp'),
-    ),
-  );
-
-  $ret = array();
-  db_create_table($ret, 'adsense_clicks', $schema['adsense_clicks']);
-  return $ret;
-}
-
-function adsense_click_update_2() {
-  $ret = array();
-  db_add_field($ret, 'adsense_clicks', 'title', array('type' => 'varchar', 'length' => '255', 'not null' => TRUE, 'default' => ''));
-  db_add_field($ret, 'adsense_clicks', 'referrer', array('type' => 'varchar', 'length' => '255', 'not null' => TRUE, 'default' => ''));
-  return $ret;
-}
-
-function adsense_click_update_3() {
-  $ret = array();
-  db_change_field($ret, 'adsense_clicks', 'path', 'path', array('type' => 'varchar', 'length' => '255', 'not null' => FALSE, 'default' => ''));
-  db_change_field($ret, 'adsense_clicks', 'title', 'title', array('type' => 'varchar', 'length' => '255', 'not null' => FALSE, 'default' => ''));
-  db_change_field($ret, 'adsense_clicks', 'referrer', 'referrer', array('type' => 'varchar', 'length' => '255', 'not null' => FALSE, 'default' => ''));
-  db_add_index($ret, 'adsense_clicks', 'path', array('path'));
-  return $ret;
-}
Index: contrib/adsense_click/adsense_click.logs.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/contrib/adsense_click/adsense_click.logs.inc,v
retrieving revision 1.1.4.2
diff -u -r1.1.4.2 adsense_click.logs.inc
--- contrib/adsense_click/adsense_click.logs.inc	19 Dec 2008 01:32:37 -0000	1.1.4.2
+++ contrib/adsense_click/adsense_click.logs.inc	8 Feb 2011 22:27:28 -0000
@@ -11,18 +11,27 @@
 
 function adsense_click_log() {
   $header = array(
-    array('data' => t('Timestamp'), 'field' => 'timestamp', 'sort' => 'desc'),
-    array('data' => t('Path'),      'field' => 'path'),
-    array('data' => t('IP/Host'),   'field' => 'ip'),
-    array('data' => t('Referrer'),  'field' => 'referrer'),
+    array('data' => t('Timestamp'), 'field' => 'ads.timestamp', 'sort' => 'desc'),
+    array('data' => t('Path'),      'field' => 'ads.path'),
+    array('data' => t('IP/Host'),   'field' => 'ads.ip'),
+    array('data' => t('Referrer'),  'field' => 'ads.referrer'),
   );
+  $rows = array();
 
   $name_resolve = variable_get('adsense_click_tracking_name_resolve', ADSENSE_CLICK_TRACKING_NAME_RESOLVE_DEFAULT);
 
-  $sql = 'SELECT * FROM {adsense_clicks} '. tablesort_sql($header);
+  // Create our base query.
+  $query = db_select('adsense_clicks', 'ads');
+  $query = $query->extend('PagerDefault')->extend('TableSort');
+
+  $query
+    ->fields('ads', array('ip', 'timestamp', 'path', 'title', 'referrer'))
+    ->limit(50)
+    ->orderByHeader($header);
 
-  $result = pager_query($sql, 50);
-  while ($log = db_fetch_object($result)) {
+  $result = $query->execute();
+
+  foreach ($result as $log) {
     if ($name_resolve) {
       $host = gethostbyaddr($log->ip);
     }
@@ -33,64 +42,97 @@
     $rows[] = array(
       array('data' => format_date($log->timestamp, 'small'), 'nowrap' => 'nowrap'),
       _adsense_click_format_path($log->path, $log->title),
-      l($host, 'http://whois.domaintools.com/'. $log->ip),
+      l($host, 'http://whois.domaintools.com/' . $log->ip),
       _adsense_click_format_path($log->referrer),
     );
   }
 
-  return theme('table', $header, $rows) . theme('pager', NULL, 50, 0);
+  return theme('table', array('header' => $header, 'rows' => $rows)) . theme('pager');
 }
 
 function adsense_click_top_pages() {
   $header = array(
-    array('data' => t('Path'),   'field' => 'path'),
+    array('data' => t('Path'),   'field' => 'ads.path'),
     array('data' => t('Clicks'), 'field' => 'count', 'sort' => 'desc'),
     array('data' => t('Last'),   'field' => 'last'),
   );
+  $rows = array();
+
+  // Create our base query.
+  $query = db_select('adsense_clicks', 'ads');
+  $query = $query->extend('PagerDefault')->extend('TableSort');
+
+  $query
+    ->fields('ads', array('path', 'title'))
+    ->groupBy('path')
+    ->limit(50)
+    ->orderByHeader($header);
 
-  $sql = 'SELECT path, COUNT(*) AS count, MAX(timestamp) AS last FROM {adsense_clicks} GROUP BY path'. tablesort_sql($header);
+  $count = $query->addExpression('COUNT(*)', 'count');
+  $max = $query->addExpression('MAX(timestamp)', 'last');
 
-  $result = pager_query($sql, 50);
-  while ($log = db_fetch_object($result)) {
-    $title = db_result(db_query("SELECT title FROM {adsense_clicks} WHERE path = '%s'", $path));
+  $result = $query->execute();
+
+  foreach ($result as $log) {
     $rows[] = array(
-      array('data' => _adsense_click_format_path($log->path, $title)),
+      array('data' => _adsense_click_format_path($log->path, $log->title)),
       array('data' => $log->count, 'align' => 'right'),
       array('data' => format_date($log->last, 'small'), 'nowrap' => 'nowrap'),
     );
   }
 
-  return theme('table', $header, $rows) . theme('pager', NULL, 50, 0);
+  return theme('table', array('header' => $header, 'rows' => $rows)) . theme('pager');
 }
 
 function adsense_click_by_day() {
-  global $db_type;
   $header = array(
     array('data' => t('Day'),    'field' => 'day', 'sort' => 'desc'),
     array('data' => t('Clicks'), 'field' => 'count'),
   );
+  $rows = array();
+
+  $query = db_select('adsense_clicks', 'ads');
+  $count_query = clone $query;
+  $query = $query->extend('PagerDefault')->extend('TableSort');
+
+  /**
+   * @TODO Must be an easier and prettier way of doing this.
+   */
+  $database_driver = db_driver();
 
-  switch ($db_type) {
+  switch ($database_driver) {
     case 'mysql':
-    case 'mysqli':
-      $sql_count = "SELECT COUNT(DISTINCT(FROM_UNIXTIME(timestamp, '%y-%m-%%d'))) FROM {adsense_clicks}";
-      $sql = "SELECT FROM_UNIXTIME(timestamp, '%Y-%m-%%d') AS day, COUNT(*) AS count FROM {adsense_clicks} GROUP BY day" . tablesort_sql($header);
+      $count_query->addExpression("COUNT(DISTINCT(FROM_UNIXTIME(timestamp, '%y-%m-%d')))");
+      $day = $query->addExpression("FROM_UNIXTIME(timestamp, '%Y-%m-%d')", 'day');
       break;
     case 'pgsql':
-      $sql_count = "SELECT COUNT(DISTINCT(TO_CHAR(timestamp, 'YYYY-MM-DD'))) FROM {adsense_clicks}";
-      $sql = "SELECT TO_CHAR(timestamp, 'YYYY-MM-DD') AS day, COUNT(*) AS count FROM {adsense_clicks} GROUP BY day" . tablesort_sql($header);
+      $count_query->addExpression("COUNT(DISTINCT(TO_CHAR(timestamp, 'YYYY-MM-DD')))");
+      $day = $query->addExpression("TO_CHAR(timestamp, 'YYYY-MM-DD')", 'day');
+      break;
+    case 'sqlite':
+      $count_query->addExpression("COUNT(DISTINCT(datetime(timestamp, 'unixepoch', 'localtime')))");
+      $day = $query->addExpression("datetime(timestamp, 'unixepoch', 'localtime')", 'day');
       break;
   }
 
-  $result = pager_query($sql, 50, 0, $sql_count);
-  while ($log = db_fetch_object($result)) {
+  // Extend our query and add our count expression.
+  $count = $query->addExpression('COUNT(*)', 'count');
+
+  $query->groupBy('day')
+    ->limit(50)
+    ->orderByHeader($header)
+    ->setCountQuery($count_query);
+
+  $result = $query->execute();
+
+  foreach ($result as $log) {
     $rows[] = array(
       $log->day,
       array('data' => $log->count, 'align' => 'right'),
     );
   }
 
-  return theme('table', $header, $rows) . theme('pager', NULL, 50, 0);
+  return theme('table', array('header' => $header, 'rows' => $rows)) . theme('pager');
 }
 
 function _adsense_click_format_path($path, $title = '', $width = 32) {
@@ -101,7 +143,7 @@
   }
   else {
     $title = $path;
-    $short_path = preg_replace('?^'. $base_url .'?', '', $path);
+    $short_path = preg_replace('?^' . $base_url . '?', '', $path);
     $short_title = truncate_utf8($short_path, $width, FALSE, TRUE);
   }
 
Index: contrib/adsense_click/adsense_click.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/contrib/adsense_click/adsense_click.module,v
retrieving revision 1.2.2.11
diff -u -r1.2.2.11 adsense_click.module
--- contrib/adsense_click/adsense_click.module	11 Jan 2010 12:29:36 -0000	1.2.2.11
+++ contrib/adsense_click/adsense_click.module	8 Feb 2011 22:27:28 -0000
@@ -13,12 +13,12 @@
 define('ADSENSE_CLICK_TRACKING_NAME_RESOLVE_DEFAULT', 0);
 
 /**
- * Implementation of hook_menu().
+ * Implements hook_menu().
  */
 function adsense_click_menu() {
   $items = array();
 
-  $items['admin/settings/adsense/click'] = array(
+  $items['admin/config/system/adsense/click'] = array(
     'title'            => 'Clicks',
     'description'      => 'Track the clicks on Adsense ads.',
     'page callback'    => 'drupal_get_form',
@@ -60,24 +60,35 @@
 }
 
 /**
- * Implementation of hook_perm().
+ * Implements hook_permission().
  */
 function adsense_click_perm() {
-  return array('view clicks');
+  return array(
+    'view clicks' => array(
+      'title' => 'View AdSense clicks',
+    )
+  );
 }
 
 /**
- * Implementation of hook_init().
+ * Implements hook_init().
  */
 function adsense_click_init() {
   if (variable_get('adsense_click_tracking', ADSENSE_CLICK_TRACKING_DEFAULT)) {
-    drupal_add_js(drupal_get_path('module', 'adsense_click') .'/adsense_click.js');
+    drupal_add_js(drupal_get_path('module', 'adsense_click') . '/adsense_click.js');
   }
 }
 
 function adsense_click_register() {
   if (variable_get('adsense_click_tracking', ADSENSE_CLICK_TRACKING_DEFAULT)) {
-    db_query("INSERT INTO {adsense_clicks} (ip, timestamp, path, title, referrer) values('%s', %d, '%s', '%s', '%s')",
-      ip_address(), time(), $_GET['u'], $_GET['t'], $_GET['r']);
+    db_insert('adsense_clicks')
+      ->fields(array(
+        'ip' => ip_address(),
+        'timestamp' => REQUEST_TIME,
+        'path' => $_GET['u'],
+        'title' => $_GET['t'],
+        'referrer' => $_GET['r']
+      ))
+      ->execute();
   }
 }
Index: cse/adsense_cse.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/cse/adsense_cse.admin.inc,v
retrieving revision 1.1.2.5
diff -u -r1.1.2.5 adsense_cse.admin.inc
--- cse/adsense_cse.admin.inc	13 May 2009 00:04:20 -0000	1.1.2.5
+++ cse/adsense_cse.admin.inc	8 Feb 2011 22:27:28 -0000
@@ -16,8 +16,8 @@
  */
 function adsense_cse_settings() {
   global $base_url;
-  include_once(drupal_get_path('module', 'adsense_cse') .'/help/adsense_cse.help.inc');
-  require_once(drupal_get_path('module', 'adsense') .'/includes/adsense.search_options.inc');
+  include_once(drupal_get_path('module', 'adsense_cse') . '/help/adsense_cse.help.inc');
+  require_once(drupal_get_path('module', 'adsense') . '/includes/adsense.search_options.inc');
 
   $form['help'] = array(
     '#type'        => 'fieldset',
@@ -27,8 +27,7 @@
   );
 
   $form['help']['help'] = array(
-    '#type'  => 'markup',
-    '#value' => adsense_cse_help_text(),
+    '#markup' => adsense_cse_help_text(),
   );
 
   $form['searchbox'] = array(
Index: cse/adsense_cse.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/cse/adsense_cse.info,v
retrieving revision 1.1
diff -u -r1.1 adsense_cse.info
--- cse/adsense_cse.info	21 Jul 2008 00:21:34 -0000	1.1
+++ cse/adsense_cse.info	8 Feb 2011 22:27:28 -0000
@@ -6,4 +6,8 @@
 description = AdSense for Search generator module. This module uses the new Custom Search Engine code created via the Adsense interface.
 dependencies[] = adsense
 package = Adsense
-core = 6.x
+core = 7.x
+
+files[] = adsense_cse.module
+files[] = adsense_cse.install
+files[] = adsense_cse.admin.inc
Index: cse/adsense_cse.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/cse/adsense_cse.install,v
retrieving revision 1.1.2.1
diff -u -r1.1.2.1 adsense_cse.install
--- cse/adsense_cse.install	10 Feb 2009 01:35:20 -0000	1.1.2.1
+++ cse/adsense_cse.install	8 Feb 2011 22:27:28 -0000
@@ -10,17 +10,7 @@
  * Implementation of hook_uninstall().
  */
 function adsense_cse_uninstall() {
-  variable_del('adsense_cse_ad_location');
-  variable_del('adsense_cse_color_box_background');
-  variable_del('adsense_cse_country');
-  variable_del('adsense_cse_encoding');
-  variable_del('adsense_cse_frame_width');
-  variable_del('adsense_cse_logo');
-  variable_del('adsense_cse_number_blocks');
-  variable_del('adsense_cse_textbox_length');
-  variable_del('adsense_cse_language');
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_cse\_ad\_block\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
+  // Delete all the AdSense variables and then clear the variable cache.
+  db_query("DELETE FROM {variable} WHERE name LIKE 'adsense\_cse\_%'");
+  cache_clear_all('variables', 'cache');
 }
Index: cse/adsense_cse.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/cse/adsense_cse.module,v
retrieving revision 1.1.2.10
diff -u -r1.1.2.10 adsense_cse.module
--- cse/adsense_cse.module	11 Jan 2010 12:20:30 -0000	1.1.2.10
+++ cse/adsense_cse.module	8 Feb 2011 22:27:28 -0000
@@ -23,14 +23,14 @@
 define('ADSENSE_CSE_LANGUAGE_DEFAULT', 'en');
 
 /**
- * Implementation of hook_menu().
+ * Implements hook_menu().
  */
 function adsense_cse_menu() {
   $items = array();
 
   $results_path = variable_get('clean_url', 0) ? ADSENSE_CSE_RESULTS_PATH : '.';
 
-  $items['admin/settings/adsense/cse'] = array(
+  $items['admin/config/system/adsense/cse'] = array(
     'title' => 'Custom Search',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('adsense_cse_settings'),
@@ -51,61 +51,72 @@
 }
 
 /**
- * Implementation of hook_block().
+ * Implements hook_block_info().
  */
-function adsense_cse_block($op = 'list', $delta = 0, $edit = array()) {
-  $block = NULL;
+function adsense_cse_block_info() {
+  $blocks = array();
+  $max = variable_get('adsense_cse_number_blocks', ADSENSE_CSE_NUMBER_BLOCKS_DEFAULT);
+
+  for ($count=0 ; $count < $max ; $count++) {
+    if ($ad = _adsense_cse_get_block_config($count)) {
+      $title = $ad[0];
+    }
+    else {
+      $title = t('AdSense CSE: unconfigured') . $count;
+    }
+    $blocks[$count] = array(
+      'info' => $title,
+      'cache' => DRUPAL_NO_CACHE,
+    );
+  }
 
-  switch ($op) {
-    case 'list':
-      $max = variable_get('adsense_cse_number_blocks', ADSENSE_CSE_NUMBER_BLOCKS_DEFAULT);
-      for ($count=0; $count < $max ; $count++) {
-        if ($ad = _adsense_cse_get_block_config($count)) {
-          $title = $ad[0];
-        }
-        else {
-          $title = t('AdSense CSE: unconfigured ') . $count;
-        }
-        $block[$count]['info'] = $title;
-        $block[$count]['cache'] = BLOCK_NO_CACHE;
-      }
-      break;
+  return $blocks;
+}
 
-    case 'configure':
-      $ad = _adsense_cse_get_block_config($delta);
+/**
+ * Implements hook_block_configure().
+ */
+function adsense_cse_block_configure($delta = '') {
+  $ad = _adsense_cse_get_block_config($delta);
 
-      $form['info'] = array(
-        '#type' => 'textfield',
-        '#title' => t('Block description'),
-        '#default_value' => ($ad) ? $ad[0] : '',
-        '#maxlength' => 64,
-        '#description' => t('A brief description of your block. Used on the <a href="@overview">block overview page</a>.', array('@overview' => url('admin/build/block'))),
-        '#required' => TRUE,
-        '#weight' => -19,
-      );
-
-      $form['ad_slot'] = array(
-        '#type' => 'textfield',
-        '#title' => t('Ad Slot ID'),
-        '#default_value' => ($ad) ? $ad[1] : '',
-        '#description' => t('This is the provided by the AdSense site in the Search Box Code "cx" field. This is usually provided in the form partner-<em>Publisher ID</em>:<em>Slot Id</em>. If the code provided is, for example, partner-pub-0123456789:<strong>abcdef-ghij</strong>, then insert only <strong>abcdef-ghij</strong> here.'),
-        '#required' => TRUE,
-      );
-      return $form;
-
-    case 'save':
-      $data = implode(':', array(urlencode($edit['info']), $edit['ad_slot']));
-      variable_set('adsense_cse_ad_block_'. $delta, $data);
-      return;
-
-    case 'view':
-      if (_adsense_page_match()) {
-        $ad = _adsense_cse_get_block_config($delta);
-        $block['content'] = ($ad) ? adsense_display(array('format' => 'Search Box', 'slot' => $ad[1])) : t('AdSense unconfigured block. <a href=!url>Click to configure.</a>', array('!url' => url('admin/build/block/configure/adsense_cse/'. $delta)));
-      }
-      break;
-    }
-  return $block;
+  $form['info'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Block description'),
+    '#default_value' => ($ad) ? $ad[0] : '',
+    '#maxlength' => 64,
+    '#description' => t('A brief description of your block. Used on the <a href="@overview">block overview page</a>.', array('@overview' => url('admin/structure/block'))),
+    '#required' => TRUE,
+    '#weight' => -19,
+  );
+
+  $form['ad_slot'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Ad Slot ID'),
+    '#default_value' => ($ad) ? $ad[1] : '',
+    '#description' => t('This is the provided by the AdSense site in the Search Box Code "cx" field. This is usually provided in the form partner-<em>Publisher ID</em>:<em>Slot Id</em>. If the code provided is, for example, partner-pub-0123456789:<strong>abcdef-ghij</strong>, then insert only <strong>abcdef-ghij</strong> here.'),
+    '#required' => TRUE,
+  );
+
+  return $form;
+}
+
+/**
+ * Implements hook_block_save().
+ */
+function adsense_cse_block_save($delta = '', $edit = array()) {
+  $data = implode(':', array(urlencode($edit['info']), $edit['ad_slot']));
+  variable_set('adsense_cse_ad_block_' . $delta, $data);
+}
+
+/**
+ * Implements hook_block_view().
+ */
+function adsense_cse_block_view($delta = '') {
+  if (_adsense_page_match()) {
+    $ad = _adsense_cse_get_block_config($delta);
+    $block['content'] = ($ad) ? adsense_display(array('format' => 'Search Box', 'slot' => $ad[1])) : t('AdSense unconfigured block. <a href=!url>Click to configure.</a>', array('!url' => url('admin/structure/block/manage/adsense_cse/' . $delta)));
+    return $block;
+  }
 }
 
 /**
@@ -117,7 +128,7 @@
  *   array with the block configuration or FALSE if no such block was found
  */
 function _adsense_cse_get_block_config($delta = 0) {
-  if ($data = variable_get('adsense_cse_ad_block_'. $delta, ADSENSE_CSE_AD_BLOCK_DEFAULT)) {
+  if ($data = variable_get('adsense_cse_ad_block_' . $delta, ADSENSE_CSE_AD_BLOCK_DEFAULT)) {
     $ad = explode(':', $data);
     $ad[0] = urldecode($ad[0]);
     return $ad;
@@ -176,7 +187,7 @@
 
   if ($branding == 'adsense_cse_branding_watermark') {
     // Since we use as_q, Google's Javascript can't be used, so we use a modified local copy
-    $script = $base_url .'/'. drupal_get_path('module', 'adsense_cse') .'/adsense_cse.js';
+    $script = $base_url . '/' . drupal_get_path('module', 'adsense_cse') . '/adsense_cse.js';
     // If there is a watermark, the indentation of the code makes it impossible to re-use the same text
     $output = <<<CSE_TXT1
 <script type="text/javascript"><!--
Index: cse/adsense_cse.results.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/cse/adsense_cse.results.inc,v
retrieving revision 1.1.2.7
diff -u -r1.1.2.7 adsense_cse.results.inc
--- cse/adsense_cse.results.inc	5 Aug 2009 21:08:10 -0000	1.1.2.7
+++ cse/adsense_cse.results.inc	8 Feb 2011 22:27:28 -0000
@@ -14,7 +14,7 @@
  */
 function _adsense_cse_results() {
   // Log the search keys:
-  watchdog('AdSense search', 'Search keywords: '. urldecode(check_plain($_GET['as_q'])));
+  watchdog('AdSense search', 'Search keywords: ' . urldecode(check_plain($_GET['as_q'])));
 
   // Output search results
   $width   = variable_get('adsense_cse_frame_width', ADSENSE_CSE_FRAME_WIDTH_DEFAULT);
@@ -24,9 +24,8 @@
     $output = _adsense_format_box("Results<br />width = ${width}<br />country = ${country}", $width, 100);
   }
   else {
-    if (variable_get('adsense_secret_adtest', ADSENSE_SECRET_ADTEST_DEFAULT)) {
-      $secret = '  var googleAdtest = "on";';
-    }
+
+    $secret = variable_get('adsense_secret_adtest', ADSENSE_SECRET_ADTEST_DEFAULT) ? '  var googleAdtest = "on";' : '';
 
     $output = <<<CSE_RESULTS_TXT
 <div id="cse-search-results"></div>
Index: help/adsense.help.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/help/adsense.help.inc,v
retrieving revision 1.1.2.9
diff -u -r1.1.2.9 adsense.help.inc
--- help/adsense.help.inc	1 Sep 2009 16:28:18 -0000	1.1.2.9
+++ help/adsense.help.inc	8 Feb 2011 22:27:28 -0000
@@ -20,22 +20,25 @@
   // Get the ad formats
   $ads = adsense_ad_formats();
   $ads['Search Box'] = adsense_ad_formats('Search Box');
+
+  // Create the ad format table.
   $headers = array(t('Format'), t('Description'), t('Width'), t('Height'));
   $rows = array();
   foreach ($ads as $format => $data) {
     $width = isset($data['width']) ? $data['width'] : '';
     $height = isset($data['height']) ? $data['height'] : '';
-    $rows[] = array($format, $data['desc'], $width, $height);
+    $rows[] = array(
+      'data' => array($format, $data['desc'], $width, $height),
+    );
   }
 
-  // Create the ad format text
-  $ad_formats_text = theme('table', $headers, $rows);
+  $ad_formats_text = theme('table', array('header' => $headers, 'rows' => $rows));
 
   if (module_exists('adsense_cse')) {
-    $custom_search_link = l(t('Custom search help'), 'admin/settings/adsense/cse');
+    $custom_search_link = l(t('Custom search help'), 'admin/config/system/adsense/cse');
   }
   else {
-    $custom_search_link = t('Adsense CSE module (which must be enabled; !link) and refer to its help', array('!link' => l(t('modules'), 'admin/build/modules')));
+    $custom_search_link = t('Adsense CSE module (which must be enabled; !link) and refer to its help', array('!link' => l(t('modules'), 'admin/modules')));
   }
 
   $output = <<<EOF
Index: managed/adsense_managed.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/managed/adsense_managed.admin.inc,v
retrieving revision 1.1.2.2
diff -u -r1.1.2.2 adsense_managed.admin.inc
--- managed/adsense_managed.admin.inc	11 Sep 2008 22:52:00 -0000	1.1.2.2
+++ managed/adsense_managed.admin.inc	8 Feb 2011 22:27:29 -0000
@@ -15,7 +15,7 @@
  * @ingroup forms
  */
 function adsense_managed_settings() {
-  include_once(drupal_get_path('module', 'adsense_managed') .'/help/adsense_managed.help.inc');
+  include_once(drupal_get_path('module', 'adsense_managed') . '/help/adsense_managed.help.inc');
 
   $form['help'] = array(
     '#type'        => 'fieldset',
@@ -25,8 +25,7 @@
   );
 
   $form['help']['help'] = array(
-    '#type'  => 'markup',
-    '#value' => adsense_managed_help_text(),
+    '#markup' => adsense_managed_help_text(),
   );
 
   $form['blocks'] = array(
Index: managed/adsense_managed.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/managed/adsense_managed.info,v
retrieving revision 1.1
diff -u -r1.1 adsense_managed.info
--- managed/adsense_managed.info	21 Jul 2008 00:21:34 -0000	1.1
+++ managed/adsense_managed.info	8 Feb 2011 22:27:29 -0000
@@ -6,4 +6,8 @@
 description = Ad unit generator module using the new managed ads feature available in the Google AdSense site.
 dependencies[] = adsense
 package = Adsense
-core = 6.x
+core = 7.x
+
+files[] = adsense_managed.module
+files[] = adsense_managed.install
+files[] = adsense_managed.admin.inc
Index: managed/adsense_managed.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/managed/adsense_managed.install,v
retrieving revision 1.1
diff -u -r1.1 adsense_managed.install
--- managed/adsense_managed.install	21 Jul 2008 00:21:34 -0000	1.1
+++ managed/adsense_managed.install	8 Feb 2011 22:27:29 -0000
@@ -7,12 +7,10 @@
  */
 
 /**
- * Implementation of hook_uninstall().
+ * Implements hook_uninstall().
  */
 function adsense_managed_uninstall() {
-  variable_del('adsense_managed_number_blocks');
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_managed\_ad\_block\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
+  // Delete all the AdSense variables and then clear the variable cache.
+  db_query("DELETE FROM {variable} WHERE name LIKE 'adsense\_managed\_%'");
+  cache_clear_all('variables', 'cache');
 }
Index: managed/adsense_managed.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/adsense/managed/adsense_managed.module,v
retrieving revision 1.1.2.9
diff -u -r1.1.2.9 adsense_managed.module
--- managed/adsense_managed.module	11 Jan 2010 12:20:30 -0000	1.1.2.9
+++ managed/adsense_managed.module	8 Feb 2011 22:27:29 -0000
@@ -13,12 +13,12 @@
 define('ADSENSE_MANAGED_NUMBER_BLOCKS_DEFAULT', 3);
 
 /**
- * Implementation of hook_menu().
+ * Implements hook_menu().
  */
 function adsense_managed_menu() {
   $items = array();
 
-  $items['admin/settings/adsense/managed'] = array(
+  $items['admin/config/system/adsense/managed'] = array(
     'title' => 'Managed Ads',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('adsense_managed_settings'),
@@ -32,91 +32,98 @@
 }
 
 /**
- * Implementation of hook_block().
+ * Implements hook_block_info().
  */
-function adsense_managed_block($op = 'list', $delta = 0, $edit = array()) {
-  $block = NULL;
+function adsense_managed_block_info() {
+  $blocks = array();
+  $max = variable_get('adsense_managed_number_blocks', ADSENSE_MANAGED_NUMBER_BLOCKS_DEFAULT);
+
+  for ($count=0 ; $count < $max ; $count++) {
+    if ($ad = _adsense_managed_get_block_config($count)) {
+      $title = $ad[0];
+    }
+    else {
+      $title = t('AdSense: unconfigured') . $count;
+    }
+    $blocks[$count] = array(
+      'info' => $title,
+      'cache' => DRUPAL_NO_CACHE,
+    );
+  }
+
+  return $blocks;
+}
+
+/**
+ * Implements hook_block_configure().
+ */
+function adsense_managed_block_configure($delta = '') {
+  $ad = _adsense_managed_get_block_config($delta);
+  foreach (adsense_ad_formats() as $format => $data) {
+    $ad_list[$format] = $format . ' : ' . $data['desc'];
+  }
+
+  $form['info'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Block description'),
+    '#default_value' => ($ad) ? $ad[0] : '',
+    '#maxlength' => 64,
+    '#description' => t('A brief description of your block. Used on the <a href="@overview">block overview page</a>.', array('@overview' => url('admin/structure/block'))),
+    '#required' => TRUE,
+    '#weight' => -19,
+  );
+  $form['ad_format'] = array(
+    '#type' => 'select',
+    '#title' => t('Ad format'),
+    '#default_value' => ($ad) ? $ad[1] : '250x250',
+    '#options' => $ad_list,
+    '#description' => t('Select the ad dimensions you want for this block.'),
+    '#required' => TRUE,
+  );
+  $form['ad_slot'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Ad Slot ID'),
+    '#default_value' => ($ad) ? $ad[2] : '',
+    '#description' => t('This is the Ad Slot ID from your Google Adsense account, such as 0123456789.'),
+    '#required' => TRUE,
+  );
+  $form['ad_align'] = array(
+    '#type' => 'select',
+    '#title' => t('Ad alignment'),
+    '#default_value' => ($ad) ? $ad[3] : 'center',
+    '#options' => array(
+      '' => t('None'),
+      'left' => t('Left'),
+      'center' => t('Centered'),
+      'right' => t('Right')
+    ),
+    '#description' => t('Select the horizontal alignment of the ad within the block.'),
+  );
+
+  return $form;
+}
+
+/**
+ * Implements hook_block_save().
+ */
+function adsense_managed_block_save($delta = '', $edit = array()) {
+  $data = implode(':', array(urlencode($edit['info']), $edit['ad_format'], $edit['ad_slot'], $edit['ad_align']));
+  variable_set('adsense_managed_ad_block_' . $delta, $data);
+}
 
-  switch ($op) {
-    case 'list':
-      $max = variable_get('adsense_managed_number_blocks', ADSENSE_MANAGED_NUMBER_BLOCKS_DEFAULT);
-      for ($count=0 ; $count < $max ; $count++) {
-        if ($ad = _adsense_managed_get_block_config($count)) {
-          $title = $ad[0];
-        }
-        else {
-          $title = t('AdSense: unconfigured ') . $count;
-        }
-        $block[$count]['info'] = $title;
-        $block[$count]['cache'] = BLOCK_NO_CACHE;
-      }
-      break;
-
-    case 'configure':
-      $ad = _adsense_managed_get_block_config($delta);
-
-      foreach (adsense_ad_formats() as $format => $data) {
-        $ad_list[$format] = $format .' : '. $data['desc'];
-      }
-
-      $form['info'] = array(
-        '#type' => 'textfield',
-        '#title' => t('Block description'),
-        '#default_value' => ($ad) ? $ad[0] : '',
-        '#maxlength' => 64,
-        '#description' => t('A brief description of your block. Used on the <a href="@overview">block overview page</a>.', array('@overview' => url('admin/build/block'))),
-        '#required' => TRUE,
-        '#weight' => -19,
-      );
-
-      $form['ad_format'] = array(
-        '#type' => 'select',
-        '#title' => t('Ad format'),
-        '#default_value' => ($ad) ? $ad[1] : '250x250',
-        '#options' => $ad_list,
-        '#description' => t('Select the ad dimensions you want for this block.'),
-        '#required' => TRUE,
-      );
-
-      $form['ad_slot'] = array(
-        '#type' => 'textfield',
-        '#title' => t('Ad Slot ID'),
-        '#default_value' => ($ad) ? $ad[2] : '',
-        '#description' => t('This is the Ad Slot ID from your Google Adsense account, such as 0123456789.'),
-        '#required' => TRUE,
-      );
-
-      $form['ad_align'] = array(
-        '#type' => 'select',
-        '#title' => t('Ad alignment'),
-        '#default_value' => ($ad) ? $ad[3] : 'center',
-        '#options' => array(
-          '' => t('None'),
-          'left' => t('Left'),
-          'center' => t('Centered'),
-          'right' => t('Right')
-        ),
-        '#description' => t('Select the horizontal alignment of the ad within the block.'),
-      );
-
-      return $form;
-
-    case 'save':
-      $data = implode(':', array(urlencode($edit['info']), $edit['ad_format'], $edit['ad_slot'], $edit['ad_align']));
-      variable_set('adsense_managed_ad_block_'. $delta, $data);
-      return;
-
-    case 'view':
-      if (_adsense_page_match()) {
-        $ad = _adsense_managed_get_block_config($delta);
-        $block['content'] = ($ad) ? adsense_display(array('format' => $ad[1], 'slot' => $ad[2])) : t('AdSense unconfigured block. <a href=!url>Click to configure.</a>', array('!url' => url('admin/build/block/configure/adsense_managed/'. $delta)));
-        if (!empty($ad[3])) {
-          $block['content'] = "<div style='text-align:${ad[3]}'>${block['content']}</div>";
-        }
-      }
-      break;
+/**
+ * Implements hook_block_view().
+ */
+function adsense_managed_block_view($delta = '') {
+  if (_adsense_page_match()) {
+    $ad = _adsense_managed_get_block_config($delta);
+    $block['content'] = ($ad) ? adsense_display(array('format' => $ad[1], 'slot' => $ad[2])) : t('AdSense unconfigured block. <a href=!url>Click to configure.</a>', array('!url' => url('admin/structure/block/manage/adsense_managed/' . $delta)));
+    if (!empty($ad[3])) {
+      $block['content'] = "<div style='text-align:${ad[3]}'>${block['content']}</div>";
     }
-  return $block;
+
+    return $block;
+  }
 }
 
 /**
@@ -128,7 +135,7 @@
  *   array with the block configuration or FALSE if no such block was found
  */
 function _adsense_managed_get_block_config($delta = 0) {
-  if ($data = variable_get('adsense_managed_ad_block_'. $delta, ADSENSE_MANAGED_AD_BLOCK_DEFAULT)) {
+  if ($data = variable_get('adsense_managed_ad_block_' . $delta, ADSENSE_MANAGED_AD_BLOCK_DEFAULT)) {
     $ad = explode(':', $data);
     $ad[0] = urldecode($ad[0]);
     return $ad;
Index: old/oldcode/adsense_oldcode.admin.inc
===================================================================
RCS file: old/oldcode/adsense_oldcode.admin.inc
diff -N old/oldcode/adsense_oldcode.admin.inc
--- old/oldcode/adsense_oldcode.admin.inc	11 Sep 2008 22:52:00 -0000	1.1.2.2
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,188 +0,0 @@
-<?php
-// $Id: adsense_oldcode.admin.inc,v 1.1.2.2 2008/09/11 22:52:00 jcnventura Exp $
-
-/**
- * @file
- * Contains the administrative functions of the adsense_oldcode module.
- *
- * This file is included by the adsense_oldcode module, and includes the
- * settings form.
- */
-
-/**
- * Menu callback for the adsense_oldcode module settings form.
- *
- * @ingroup forms
- */
-function adsense_oldcode_settings() {
-  $form['blocks'] = array(
-    '#type' => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed' => FALSE,
-    '#title' => t('AdSense Blocks'),
-  );
-
-  $form['blocks']['adsense_oldcode_number_blocks'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Number of blocks'),
-    '#default_value' => variable_get('adsense_oldcode_number_blocks', ADSENSE_OLDCODE_NUMBER_BLOCKS_DEFAULT),
-    '#size' => 2,
-    '#maxlength' => 2,
-  );
-
-  $form['types_colors'] = array(
-    '#type'        => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed'   => TRUE,
-    '#title'       => t('Ad groups'),
-  );
-
-  // Add Farbtastic color picker
-  drupal_add_css('misc/farbtastic/farbtastic.css', 'module', 'all', FALSE);
-  drupal_add_js('misc/farbtastic/farbtastic.js');
-  drupal_add_js(drupal_get_path('module', 'adsense_oldcode') .'/adsense_oldcode.js');
-
-  for ($group=1; $group <= ADSENSE_MAX_GROUPS ; $group++) {
-    $form['types_colors']['groups'][$group] = array(
-      '#type' => 'fieldset',
-      '#collapsible' => TRUE,
-      '#collapsed' => TRUE,
-      '#title' => t('Group @group attributes', array('@group' => $group .' '. variable_get('adsense_group_title_'. $group, ADSENSE_GROUP_TITLE_DEFAULT))),
-    );
-
-    $form['types_colors']['groups'][$group]['adsense_group_title_'. $group] = array(
-      '#type'          => 'textfield',
-      '#title'         => t('Title'),
-      '#default_value' => variable_get('adsense_group_title_'. $group, ADSENSE_GROUP_TITLE_DEFAULT),
-      '#size'          => 100,
-      '#maxlength'     => 100,
-      '#description'   => t('Title of the group.'),
-    );
-
-    $form['types_colors']['groups'][$group]['adsense_ad_type_'. $group] = array(
-      '#type' => 'radios',
-      '#title' => t('Ad type'),
-      '#default_value' => variable_get('adsense_ad_type_'. $group, ADSENSE_AD_TYPE_DEFAULT),
-      '#options' => array(t('Text'), t('Image'), t('Both')),
-    );
-
-    $form['types_colors']['groups'][$group]['colorpicker'] = array(
-      '#type' => 'markup',
-      '#value' => "<div id='colorpicker-$group' style='float: right;'></div>",
-    );
-
-    $form['types_colors']['groups'][$group]['adsense_color_text_'. $group] = array(
-      '#type' => 'textfield',
-      '#title' => t('Text color'),
-      '#default_value' => variable_get('adsense_color_text_'. $group, ADSENSE_COLOR_TEXT_DEFAULT),
-      '#size' => 7,
-      '#maxlength' => 7,
-    );
-
-    $form['types_colors']['groups'][$group]['adsense_color_border_'. $group] = array(
-      '#type' => 'textfield',
-      '#title' => t('Border color'),
-      '#default_value' => variable_get('adsense_color_border_'. $group, ADSENSE_COLOR_BORDER_DEFAULT),
-      '#size' => 7,
-      '#maxlength' => 7,
-    );
-
-    $form['types_colors']['groups'][$group]['adsense_color_bg_'. $group] = array(
-      '#type' => 'textfield',
-      '#title' => t('Background color'),
-      '#default_value' => variable_get('adsense_color_bg_'. $group, ADSENSE_COLOR_BG_DEFAULT),
-      '#size' => 7,
-      '#maxlength' => 7,
-    );
-
-    $form['types_colors']['groups'][$group]['adsense_color_link_'. $group] = array(
-      '#type' => 'textfield',
-      '#title' => t('Title color'),
-      '#default_value' => variable_get('adsense_color_link_'. $group, ADSENSE_COLOR_LINK_DEFAULT),
-      '#size' => 7,
-      '#maxlength' => 7,
-    );
-
-    $form['types_colors']['groups'][$group]['adsense_color_url_'. $group] = array(
-      '#type' => 'textfield',
-      '#title' => t('URL color'),
-      '#default_value' => variable_get('adsense_color_url_'. $group, ADSENSE_COLOR_URL_DEFAULT),
-      '#size' => 7,
-      '#maxlength' => 7,
-    );
-
-    $form['types_colors']['groups'][$group]['adsense_alt_'. $group] = array(
-      '#type' => 'select',
-      '#title' => t('Alternate URL color'),
-      '#default_value' => variable_get('adsense_alt_'. $group, ADSENSE_ALT_DEFAULT),
-      '#options' => array(t('None'), t('Alternate URL'), t('Alternate color')),
-    );
-
-    $form['types_colors']['groups'][$group]['adsense_alt_info_'. $group] = array(
-      '#type' => 'textfield',
-      '#title' => t('Alternate info'),
-      '#default_value' => variable_get('adsense_alt_info_'. $group, ADSENSE_ALT_INFO_DEFAULT),
-      '#size' => 100,
-      '#maxlength' => 100,
-      '#description' => t('Enter either 6 letter alternate color code, or alternate URL to use'),
-    );
-
-    $form['types_colors']['groups'][$group]['adsense_ui_features_'. $group] = array(
-      '#type' => 'select',
-      '#title' => t('Rounded corners'),
-      '#default_value' => variable_get('adsense_ui_features_'. $group, ADSENSE_UI_FEATURES_DEFAULT),
-      '#options' => array('rc:0' => 'Square', 'rc:6' => 'Slightly rounded', 'rc:10' => 'Very rounded'),
-      '#description' => t('Choose type of round corners'),
-    );
-  }
-
-  $form['channels'] = array(
-    '#type' => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed' => TRUE,
-    '#title' => t('Custom channels'),
-    '#description' => t('Enter up to !channels custom channels that you have configured in Google AdSense. If you are not using custom channels, or you are only using URL channels, then leave this empty.', array('!channels' => ADSENSE_MAX_CHANNELS)),
-  );
-
-  for ($channel=1; $channel <= ADSENSE_MAX_CHANNELS ; $channel++) {
-    $form['channels']['adsense_ad_channel_'. $channel] = array(
-      '#type' => 'textfield',
-      '#title' => t('Custom channel ID') .' '. $channel,
-      '#default_value' => variable_get('adsense_ad_channel_'. $channel, ADSENSE_AD_CHANNEL_DEFAULT),
-      '#size' => 30,
-      '#maxlength' => 30,
-    );
-  }
-
-  $form['#validate'][] = '_adsense_oldcode_settings_validate';
-
-  return system_settings_form($form);
-}
-
-/**
- * Validate adsense_oldcode_settings form.
- */
-function _adsense_oldcode_settings_validate($form, &$form_state) {
-  $number_blocks = $form_state['values']['adsense_oldcode_number_blocks'];
-  if ($number_blocks < 0) {
-    form_set_error('adsense_oldcode_number_blocks', t("Number of blocks can't be a negative number"));
-  }
-
-  $colors = array(
-    'adsense_color_border_',
-    'adsense_color_bg_',
-    'adsense_color_link_',
-    'adsense_color_url_',
-    'adsense_color_text_',
-  );
-
-  for ($group = 1; $group <= ADSENSE_MAX_GROUPS ; $group++) {
-    foreach ($colors as $field_name) {
-      $field_value = $form_state['values'][$field_name . $group];
-      $form_state['values'][$field_name . $group] = drupal_strtoupper($field_value);
-      if (!preg_match('/#[0-9A-F]{6}/i', $field_value)) {
-        form_set_error($field_name . $group, t("Color must be between #000000 and #FFFFFF"));
-      }
-    }
-  }
-}
Index: old/oldcode/adsense_oldcode.info
===================================================================
RCS file: old/oldcode/adsense_oldcode.info
diff -N old/oldcode/adsense_oldcode.info
--- old/oldcode/adsense_oldcode.info	11 Aug 2008 02:19:15 -0000	1.1.2.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,9 +0,0 @@
-; $Id: adsense_oldcode.info,v 1.1.2.1 2008/08/11 02:19:15 jcnventura Exp $
-; Copyright 2005-2008 Khalid Baheyeldin http://2bits.com
-; Copyright 2008      Joao Ventura      http://www.venturas.org
-
-name = Ads (old)
-description = Ad unit generator module using the old format code in which the colours are specified in the ad's JavaScript.
-dependencies[] = adsense
-package = Adsense
-core = 6.x
Index: old/oldcode/adsense_oldcode.install
===================================================================
RCS file: old/oldcode/adsense_oldcode.install
diff -N old/oldcode/adsense_oldcode.install
--- old/oldcode/adsense_oldcode.install	21 Jul 2008 00:21:34 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,55 +0,0 @@
-<?php
-// $Id: adsense_oldcode.install,v 1.1 2008/07/21 00:21:34 kbahey Exp $
-
-/**
- * @file
- * Install file of the adsense_oldcode module
- */
-
-/**
- * Implementation of hook_uninstall().
- */
-function adsense_oldcode_uninstall() {
-  variable_del('adsense_oldcode_number_blocks');
-
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_oldcode\_ad\_block\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_ad\_type\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_alt\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_alt\_info\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_color\_bg\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_color\_border\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_color\_link\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_color\_text\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_color\_url\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_group\_title\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-}
Index: old/oldcode/adsense_oldcode.js
===================================================================
RCS file: old/oldcode/adsense_oldcode.js
diff -N old/oldcode/adsense_oldcode.js
--- old/oldcode/adsense_oldcode.js	11 Sep 2008 22:52:00 -0000	1.3.2.2
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,31 +0,0 @@
-// $Id: adsense_oldcode.js,v 1.3.2.2 2008/09/11 22:52:00 jcnventura Exp $
-
-if (Drupal.jsEnabled) {
-  $(document).ready(function () {
-    var i = 0;
-
-    for (i = 1; i <= 5; i++) {
-      // initiate farbtastic colorpicker
-      var farb = $.farbtastic("#colorpicker-" + i);
-      var firstField = "";
-
-      $("input.form-text").each( function() {
-        if (this.name.substring(0, 13) == "adsense_color") {
-          if (this.name.substring(this.name.lastIndexOf("_") + 1) == i) {
-            if (firstField == "") {
-              firstField = this;
-            };
-
-            farb.linkTo(this);
-            $(this).click(function () {
-              var clickGroup = this.name.substring(this.name.lastIndexOf("_") + 1);
-              $.farbtastic("#colorpicker-" + clickGroup).linkTo(this);
-            });
-          };
-        };
-      });
-
-      farb.linkTo(firstField);
-    };
-  });
-}
Index: old/oldcode/adsense_oldcode.module
===================================================================
RCS file: old/oldcode/adsense_oldcode.module
diff -N old/oldcode/adsense_oldcode.module
--- old/oldcode/adsense_oldcode.module	11 Jan 2010 12:20:30 -0000	1.1.2.9
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,268 +0,0 @@
-<?php
-// $Id: adsense_oldcode.module,v 1.1.2.9 2010/01/11 12:20:30 jcnventura Exp $
-
-/**
- * @file
- * Displays Google AdSense ads on Drupal pages
- *
- * This is the core module of the AdSense package, with the Drupal hooks
- * and other administrative functions.
- */
-
-define('ADSENSE_MAX_GROUPS', 5);
-
-define('ADSENSE_AD_TYPE_DEFAULT', 0);
-define('ADSENSE_ALT_DEFAULT', 0);
-define('ADSENSE_ALT_INFO_DEFAULT', '');
-define('ADSENSE_COLOR_BG_DEFAULT', '#FFFFFF');
-define('ADSENSE_COLOR_BORDER_DEFAULT', '#336699');
-define('ADSENSE_COLOR_LINK_DEFAULT', '#0000FF');
-define('ADSENSE_COLOR_TEXT_DEFAULT', '#000000');
-define('ADSENSE_COLOR_URL_DEFAULT', '#008000');
-define('ADSENSE_GROUP_TITLE_DEFAULT', '');
-define('ADSENSE_OLDCODE_AD_BLOCK_DEFAULT', '');
-define('ADSENSE_OLDCODE_NUMBER_BLOCKS_DEFAULT', 3);
-define('ADSENSE_UI_FEATURES_DEFAULT', 'rc:0');
-
-/**
- * Implementation of hook_menu().
- */
-function adsense_oldcode_menu() {
-  $items = array();
-
-  $items['admin/settings/adsense/oldcode'] = array(
-    'title' => 'Old Code Ads',
-    'page callback' => 'drupal_get_form',
-    'page arguments' => array('adsense_oldcode_settings'),
-    'access arguments'  => array('administer adsense'),
-    'weight' => 3,
-    'type' => MENU_LOCAL_TASK,
-    'file' => 'adsense_oldcode.admin.inc',
-  );
-
-  return $items;
-}
-
-/**
- * Implementation of hook_block().
- */
-function adsense_oldcode_block($op = 'list', $delta = 0, $edit = array()) {
-  $block = NULL;
-
-  switch ($op) {
-    case 'list':
-      $max = variable_get('adsense_oldcode_number_blocks', ADSENSE_OLDCODE_NUMBER_BLOCKS_DEFAULT);
-      for ($count=0 ; $count < $max ; $count++) {
-        if ($ad = _adsense_oldcode_get_block_config($count)) {
-          $title = $ad[0];
-        }
-        else {
-          $title = t('AdSense old code: unconfigured ') . $count;
-        }
-        $block[$count]['info'] = $title;
-        $block[$count]['cache'] = BLOCK_NO_CACHE;
-      }
-      break;
-
-    case 'configure':
-      $ad = _adsense_oldcode_get_block_config($delta);
-
-      foreach (adsense_ad_formats() as $format => $data) {
-        $ad_list[$format] = $format .' : '. $data['desc'];
-      }
-
-      for ($group=1; $group <= ADSENSE_MAX_GROUPS ; $group++) {
-        $group_list[$group] = $group .' : '. variable_get('adsense_group_title_'. $group, ADSENSE_GROUP_TITLE_DEFAULT);
-      }
-
-      $channel_list[''] = t('None');
-      for ($channel=1; $channel <= ADSENSE_MAX_CHANNELS ; $channel++) {
-        $channel_list[$channel] = $channel .' : '. variable_get('adsense_ad_channel_'. $channel, ADSENSE_AD_CHANNEL_DEFAULT);
-      }
-
-      $form['info'] = array(
-        '#type' => 'textfield',
-        '#title' => t('Block description'),
-        '#default_value' => ($ad) ? $ad[0] : '',
-        '#maxlength' => 64,
-        '#description' => t('A brief description of your block. Used on the <a href="@overview">block overview page</a>.', array('@overview' => url('admin/build/block'))),
-        '#required' => TRUE,
-        '#weight' => -19,
-      );
-
-      $form['ad_format'] = array(
-        '#type' => 'select',
-        '#title' => t('Ad format'),
-        '#default_value' => ($ad) ? $ad[1] : '250x250',
-        '#options' => $ad_list,
-        '#description' => t('Select the ad dimensions you want for this block.'),
-      );
-
-      $form['ad_group'] = array(
-        '#type' => 'select',
-        '#title' => t('Group'),
-        '#default_value' => ($ad) ? $ad[2] : 1,
-        '#options' => $group_list,
-      );
-
-      $form['ad_channel'] = array(
-        '#type' => 'select',
-        '#title' => t('Channel'),
-        '#default_value' => ($ad) ? $ad[3] : 1,
-        '#options' => $channel_list,
-      );
-
-      $form['ad_align'] = array(
-        '#type' => 'select',
-        '#title' => t('Ad alignment'),
-        '#default_value' => ($ad) ? $ad[4] : 'center',
-        '#options' => array(
-          '' => t('None'),
-          'left' => t('Left'),
-          'center' => t('Centered'),
-          'right' => t('Right')
-        ),
-        '#description' => t('Select the horizontal alignment of the ad within the block.'),
-      );
-
-      return $form;
-
-    case 'save':
-      $data = implode(':', array(urlencode($edit['info']), $edit['ad_format'], $edit['ad_group'], $edit['ad_channel'], $edit['ad_align']));
-      variable_set('adsense_oldcode_ad_block_'. $delta, $data);
-      return;
-
-    case 'view':
-      if (_adsense_page_match()) {
-        $ad = _adsense_oldcode_get_block_config($delta);
-        $block['content'] = ($ad) ? adsense_display(array('format' => $ad[1], 'group' => $ad[2], 'channel' => $ad[3])) : t('AdSense unconfigured block. <a href=!url>Click to configure.</a>', array('!url' => url('admin/build/block/configure/adsense_oldcode/'. $delta)));
-        if (!empty($ad[4])) {
-          $block['content'] = "<div style='text-align:${ad[4]}'>${block['content']}</div>";
-        }
-      }
-      break;
-    }
-  return $block;
-}
-
-/**
- * Configuration of the provided block
- *
- * @param $delta
- *   block number
- * @return
- *   array with the block configuration or FALSE if no such block was found
- */
-function _adsense_oldcode_get_block_config($delta = 0) {
-  if ($data = variable_get('adsense_oldcode_ad_block_'. $delta, ADSENSE_OLDCODE_AD_BLOCK_DEFAULT)) {
-    $ad = explode(':', $data);
-    $ad[0] = urldecode($ad[0]);
-    return $ad;
-  }
-
-  return FALSE;
-}
-
-/**
- * Generates the AdSense ad
- *
- * @param $format
- *   format of the ad
- * @param $group
- *   (optional) Group ID of the configured color attributes group
- * @param $channel
- *   (optional) Channel ID of the configured Ad Channel
- * @return
- *   JavaScript that embeds the Google AdSense ad
- */
-function _adsense_oldcode_get_ad($format, $client, $group = 1, $channel = 1) {
-  $ad = adsense_ad_formats($format);
-
-  if ($ad === NULL) {
-    $output = "";
-  }
-  elseif (variable_get('adsense_test_mode', ADSENSE_TEST_MODE_DEFAULT)) {
-      $output = _adsense_format_box("client = ${client}<br />format = ${format}<br />width = ${ad['width']}<br />height = ${ad['height']}", $ad['width'], $ad['height']);
-  }
-  else {
-    if (($group < 1) || ($group > ADSENSE_MAX_GROUPS)) {
-      // Default to 1 if an invalid group is supplied
-      $group = 1;
-    }
-
-    switch (variable_get('adsense_ad_type_'. $group, ADSENSE_AD_TYPE_DEFAULT)) {
-      case 2:
-        $type = 'text_image';
-        break;
-      case 1:
-        $type = 'image';
-        break;
-      default:
-        $type = 'text';
-        break;
-    }
-
-    $channel  = variable_get('adsense_ad_channel_'. $channel, ADSENSE_AD_CHANNEL_DEFAULT);
-
-    $border   = substr(variable_get('adsense_color_border_'. $group, ADSENSE_COLOR_BORDER_DEFAULT), 1);
-    $bg       = substr(variable_get('adsense_color_bg_'.     $group, ADSENSE_COLOR_BG_DEFAULT), 1);
-    $link     = substr(variable_get('adsense_color_link_'.   $group, ADSENSE_COLOR_LINK_DEFAULT), 1);
-    $url      = substr(variable_get('adsense_color_url_'.    $group, ADSENSE_COLOR_URL_DEFAULT), 1);
-    $text     = substr(variable_get('adsense_color_text_'.   $group, ADSENSE_COLOR_TEXT_DEFAULT), 1);
-
-    $corner   = variable_get('adsense_ui_features_'.  $group, ADSENSE_UI_FEATURES_DEFAULT);
-    $alt      = variable_get('adsense_alt_'.          $group, ADSENSE_ALT_DEFAULT);
-    $alt_info = variable_get('adsense_alt_info_'.     $group, ADSENSE_ALT_INFO_DEFAULT);
-    switch ($alt) {
-      case 1:
-        $part1 = "google_alternate_ad_url = \"$alt_info\";";
-        break;
-      case 2:
-        $part1 = "google_alternate_color = \"$alt_info\";";
-        break;
-      case 0:
-        // disabled
-      default:
-        $part1 = "";
-    }
-
-    $part2 = "";
-    if ($ad['type'] == ADSENSE_TYPE_AD) {
-      $part2 .= "google_ad_type = \"$type\";\n";
-    }
-    if (!empty($channel)) {
-      $part2 .= "google_ad_channel = \"$channel\";";
-    }
-
-    $secret = '';
-    if (variable_get('adsense_secret_adtest', ADSENSE_SECRET_ADTEST_DEFAULT)) {
-      $secret .= "google_adtest = 'on';\n";
-    }
-    if ($lang = variable_get('adsense_secret_language', ADSENSE_SECRET_LANGUAGE_DEFAULT)) {
-      $secret .= "google_language = '$lang';";
-    }
-
-    $output = <<<OLDCODE_TXT
-<script type="text/javascript"><!--
-google_ad_client = "$client";
-$part1
-google_ad_width = ${ad['width']};
-google_ad_height = ${ad['height']};
-google_ad_format = "${ad['code']}";
-$part2
-google_color_border = "$border";
-google_color_bg = "$bg";
-google_color_link = "$link";
-google_color_text = "$text";
-google_color_url = "$url";
-google_ui_features = "$corner";
-$secret
-//--></script>
-<script type="text/javascript"
-  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
-</script>
-OLDCODE_TXT;
-  }
-
-  return $output;
-}
Index: old/revenue_sharing_basic/help/revenue_sharing_basic.help.inc
===================================================================
RCS file: old/revenue_sharing_basic/help/revenue_sharing_basic.help.inc
diff -N old/revenue_sharing_basic/help/revenue_sharing_basic.help.inc
--- old/revenue_sharing_basic/help/revenue_sharing_basic.help.inc	13 Dec 2008 23:09:10 -0000	1.1.2.4
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,67 +0,0 @@
-<?php
-// $Id: revenue_sharing_basic.help.inc,v 1.1.2.4 2008/12/13 23:09:10 jcnventura Exp $
-// Copyright 2005-2008 Khalid Baheyeldin - http://2bits.com
-// Copyright 2008 Joao Ventura - http://www.venturas.org
-
-/**
- * @file
- * Helpfile for the revenue_sharing_basic module
- */
-
-/**
- * Creates the help text for the revenue sharing (basic)
- *
- * @return
- *   HTML with the help text
- */
-function revenue_sharing_basic_help_text() {
-  global $user;
-  $uid = $user->uid;
-
-  $base = rtrim(base_path(), '/');
-
-  $output = <<<EOF
-<h2>Overview</h2>
-<p>This module provides web site admins the factility to share revenue from
-Google AdSense ads with those writing the content on the site, according to
-certain percentages.</p>
-
-<h2>Revenue sharing</h2>
-<p>For revenue sharing, each author gets a predefined share of ad revenue from
-clicks occuring on nodes they authored.</p>
-<p>In order for the user to be credited they must have a Google AdSense
-account.</p>
-<p>Each user must enter their Google AdSense client ID in the profile field
-you defined above.</p>
-
-<h2>Configuration</h2>
-<p>To use this module, you need to do the following first:</p>
-<ul>
-  <li>
-    <p>Go to <a href="$base/admin/user/profile">Administer -&gt; User
-    management -&gt; Profiles</a> and create a new profile field of type
-    &quot;single-line textfield&quot;. Name this field something like
-    &quot;Google AdSense client ID&quot;, and form name
-    &quot;profile_google_adsense_client_id&quot;. This is a required
-    configuration parameter.</p>
-    <p>Note that the new profile field must be setup as: &quot;Private field,
-    content only available to privileged users&quot;. All other values are
-    either insecure (others can see the Google Adsense ID of the user), or
-    will not work, so do not use any of them.</p>
-    <p>If you want to force users to enter a value when they sign up, then use
-    the following settings:</p>
-    <ul>
-      <li>The user must enter a value (checked).</li>
-      <li>Visible in user registration form (checked).</li>
-    </ul>
-    <p>You should enter a descriptive explanation for the Google AdSense
-    client ID, so users know what to enter in this field.</p></li>
-  <li>Go to <a href="$base/user/$uid/edit">My account -&gt; Edit</a>, then
-  click on the category that you defined for the Google AdSense client ID
-  and enter your Google ID, which is something like
-  &quot;pub-9999999999999&quot;, and click Submit.</li>
-</ul>
-EOF;
-
-  return $output;
-}
Index: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc
===================================================================
RCS file: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc
diff -N old/revenue_sharing_basic/revenue_sharing_basic.admin.inc
--- old/revenue_sharing_basic/revenue_sharing_basic.admin.inc	12 May 2009 23:37:34 -0000	1.3.2.5
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,154 +0,0 @@
-<?php
-// $Id: revenue_sharing_basic.admin.inc,v 1.3.2.5 2009/05/12 23:37:34 jcnventura Exp $
-
-/**
- * @file
- * Contains the administrative functions of the revenue_sharing_basic
- * module.
- *
- * This file is included by the basic revenue sharing  module, and includes
- * the settings form.
- */
-
-/**
- * Menu callback for the revenue_sharing_basic module settings form.
- *
- * @ingroup forms
- */
-function revenue_sharing_basic_settings() {
-  include_once(drupal_get_path('module', 'revenue_sharing_basic') .'/help/revenue_sharing_basic.help.inc');
-
-  $form['help'] = array(
-    '#type'        => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed'   => TRUE,
-    '#title'       => t('Help and instructions'),
-  );
-
-  $form['help']['help'] = array(
-    '#type'  => 'markup',
-    '#value' => revenue_sharing_basic_help_text(),
-  );
-
-  $form['required'] = array(
-    '#type'        => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed'   => FALSE,
-    '#title'       => t('Required parameters'),
-  );
-
-  $form['required']['revenue_sharing_basic_client_id_profile_field'] = array(
-    '#type'          => 'select',
-    '#title'         => t('Google AdSense client ID profile field'),
-    '#default_value' => variable_get('revenue_sharing_basic_client_id_profile_field', REVENUE_SHARING_BASIC_CLIENT_ID_PROFILE_FIELD_DEFAULT),
-    '#options'       => revenue_sharing_basic_get_profile_fields(),
-    '#required'      => TRUE,
-    '#description'   => t('This is the profile field that holds the AdSense Client ID for the site owner as well as (optionally) for site users who participate in revenue sharing. You must enabled the profile module and create a new field for this.'),
-  );
-
-  $form['percentage'] = array(
-    '#type'        => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed'   => FALSE,
-    '#title'       => t('Revenue sharing percentage'),
-  );
-
-  $options = drupal_map_assoc(range(0, 100, 5));
-
-  $form['percentage']['revenue_sharing_basic_percentage_author'] = array(
-    '#type'          => 'select',
-    '#title'         => t('Percentage of node views going to author'),
-    '#default_value' => variable_get('revenue_sharing_basic_percentage_author', REVENUE_SHARING_BASIC_PERCENTAGE_AUTHOR_DEFAULT),
-    '#options'       => $options,
-  );
-
-  $form['percentage']['role'] = array(
-    '#type'        => 'fieldset',
-    '#title'       => t('Percentage of node views going to author with the following roles'),
-    '#description' => t('When the author belongs to one or more roles, the percentage of node views using his AdSense Client ID will be the maximum between the author value and the following settings for each role.'),
-    '#theme'       => 'revenue_sharing_basic_author_percentage_role',
-  );
-
-  $roles = user_roles(TRUE);
-  unset($roles[array_search('authenticated user', $roles)]);
-  foreach ($roles as $role => $role_desc) {
-    $form['percentage']['role']['revenue_sharing_basic_percentage_role_'. $role] = array(
-      '#type'          => 'select',
-      '#title'         => t($role_desc),
-      '#default_value' => variable_get('revenue_sharing_basic_percentage_role_'. $role, REVENUE_SHARING_BASIC_PERCENTAGE_ROLE_DEFAULT),
-      '#options'       => $options,
-    );
-  }
-
-  if (module_exists('referral')) {
-    $form['percentage']['revenue_sharing_basic_percentage_refer'] = array(
-      '#type'          => 'select',
-      '#title'         => t('Percentage of node views going to user who referred the author'),
-      '#default_value' => variable_get('revenue_sharing_basic_percentage_refer', REVENUE_SHARING_BASIC_PERCENTAGE_REFER_DEFAULT),
-      '#options'       => $options,
-    );
-  }
-
-  $form['content_types'] = array(
-    '#type'        => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed'   => FALSE,
-    '#title'       => t('Content types'),
-  );
-
-  $types = node_get_types();
-  foreach ($types as $type => $name) {
-    $form['content_types']['revenue_sharing_basic_node_type_'. $type] = array(
-      '#type'          => 'checkbox',
-      '#title'         => $name->name,
-      '#default_value' => variable_get('revenue_sharing_basic_node_type_'. $type, REVENUE_SHARING_BASIC_NODE_TYPE_DEFAULT),
-    );
-  }
-
-  $form['#redirect'] = 'admin/settings/adsense/publisher';
-
-  return system_settings_form($form);
-}
-
-/**
- * Theme the author percentage part of the settings page.
- *
- * @ingroup themeable
- */
-function theme_revenue_sharing_basic_author_percentage_role($form) {
-  $output = '';
-  $elements = element_children($form);
-  if (!empty($elements)) {
-    $header = array(t('Role'), t('Percentage'));
-    foreach ($elements as $key) {
-      $row = array();
-      $row[] = $form[$key]['#title'];
-      unset($form[$key]['#title']);
-      $row[] = drupal_render($form[$key]);
-      $rows[] = $row;
-    }
-    $output .= theme('table', $header, $rows);
-  }
-
-  $output .= drupal_render($form);
-  return $output;
-}
-
-/**
- * Auxiliary function to create the list for the revenue_sharing_basic_client_id_profile_field field
- *
- * @return
- *   array of fields with the field IDs as keys and the field titles as values
- *
- * @ingroup forms
- */
-function revenue_sharing_basic_get_profile_fields() {
-  $profile_list = array(0 => 'None');
-
-  $result = db_query("SELECT fid, title FROM {profile_fields} ORDER BY fid");
-  while ($row = db_fetch_object($result)) {
-    $profile_list[$row->fid] = $row->title;
-  }
-
-  return $profile_list;
-}
Index: old/revenue_sharing_basic/revenue_sharing_basic.info
===================================================================
RCS file: old/revenue_sharing_basic/revenue_sharing_basic.info
diff -N old/revenue_sharing_basic/revenue_sharing_basic.info
--- old/revenue_sharing_basic/revenue_sharing_basic.info	12 May 2009 23:37:34 -0000	1.1.2.3
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,10 +0,0 @@
-; $Id: revenue_sharing_basic.info,v 1.1.2.3 2009/05/12 23:37:34 jcnventura Exp $
-; Copyright 2005-2008 Khalid Baheyeldin http://2bits.com
-; Copyright 2008      Joao Ventura      http://www.venturas.org
-
-name = Revenue sharing basic (old)
-description = Revenue sharing for the Google Adsense module
-dependencies[] = adsense
-dependencies[] = profile
-package = Adsense
-core = 6.x
Index: old/revenue_sharing_basic/revenue_sharing_basic.install
===================================================================
RCS file: old/revenue_sharing_basic/revenue_sharing_basic.install
diff -N old/revenue_sharing_basic/revenue_sharing_basic.install
--- old/revenue_sharing_basic/revenue_sharing_basic.install	12 May 2009 23:37:34 -0000	1.2.2.3
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,25 +0,0 @@
-<?php
-// $Id: revenue_sharing_basic.install,v 1.2.2.3 2009/05/12 23:37:34 jcnventura Exp $
-
-/**
- * @file
- * Install file of the revenue_sharing_basic module
- */
-
-/**
- * Implementation of hook_uninstall().
- */
-function revenue_sharing_basic_uninstall() {
-  variable_del('revenue_sharing_basic_client_id_profile_field');
-  variable_del('revenue_sharing_basic_percentage_author');
-  variable_del('revenue_sharing_basic_percentage_refer');
-  variable_del('revenue_sharing_basic_revenue_enable');
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'revenue\_sharing\_basic\_percentage\_role\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'revenue\_sharing\_basic\_node\_type\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-}
Index: old/revenue_sharing_basic/revenue_sharing_basic.module
===================================================================
RCS file: old/revenue_sharing_basic/revenue_sharing_basic.module
diff -N old/revenue_sharing_basic/revenue_sharing_basic.module
--- old/revenue_sharing_basic/revenue_sharing_basic.module	19 May 2009 21:25:49 -0000	1.4.2.12
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,226 +0,0 @@
-<?php
-// $Id: revenue_sharing_basic.module,v 1.4.2.12 2009/05/19 21:25:49 jcnventura Exp $
-
-/**
- * @file
- * Main file of the revenue_sharing_basic module
- */
-
-define('REVENUE_SHARING_BASIC_CLIENT_ID_PROFILE_FIELD_DEFAULT', 0);
-define('REVENUE_SHARING_BASIC_PERCENTAGE_AUTHOR_DEFAULT', 0);
-define('REVENUE_SHARING_BASIC_PERCENTAGE_ROLE_DEFAULT', 0);
-define('REVENUE_SHARING_BASIC_PERCENTAGE_REFER_DEFAULT', 0);
-define('REVENUE_SHARING_BASIC_NODE_TYPE_DEFAULT', 1);
-
-/**
- * Implementation of hook_menu().
- */
-function revenue_sharing_basic_menu() {
-  $items = array();
-
-  $items['admin/settings/adsense/publisher/revenue_sharing_basic'] = array(
-    'title' => 'Revenue Sharing',
-    'page callback' => 'drupal_get_form',
-    'page arguments' => array('revenue_sharing_basic_settings'),
-    'access arguments' => array('administer adsense'),
-    'type' => MENU_LOCAL_TASK,
-    'file' => 'revenue_sharing_basic.admin.inc',
-  );
-
-  return $items;
-}
-
-/**
- * Implementation of hook_theme().
- */
-function revenue_sharing_basic_theme() {
-  return array(
-    'revenue_sharing_basic_author_percentage_role' => array(
-      'arguments' => array('form'),
-      'file' => 'revenue_sharing_basic.admin.inc',
-    ),
-  );
-}
-
-/**
- * Implementation of hook_requirements().
- */
-function revenue_sharing_basic_requirements($phase) {
-  $requirements = array();
-  $t = get_t();
-  switch ($phase) {
-    // At runtime, make sure that we have a publisher ID
-    case 'runtime':
-      if (variable_get('cache', 0) && (variable_get('adsense_id_module', ADSENSE_ID_MODULE_DEFAULT) == 'revenue_sharing_basic_adsense')) {
-        $requirements['revenue_sharing_nocache'] = array(
-          'title' => $t('Revenue Sharing'),
-          'value' => $t('Drupal page cache is enabled.'),
-          'description' => $t('This causes conflicts with revenue sharing, since the pages are stored in the cache and are not dynamically generated. If you experience issues with revenue sharing, then disable the page cache.'),
-          'severity' => REQUIREMENT_WARNING,
-        );
-      }
-      break;
-  }
-  return $requirements;
-}
-
-/**
- * Interface of the Publisher ID modules
- *
- * This is the function that handles the calls by the adsense core to the
- * Publisher ID modules
- *
- * @param $op
- *   Operation being performed, can be one of the following:
- *   'settings' : access to this module's settings form
- *   'client_id': fetch the user's Publisher ID
- * @param $args
- *   For the 'client_id' operation, this can be the format of the ad being
- *   generated, in case there is a need to return a user-configured Slot ID
- * @return
- *   This depends on the operation being performed:
- *   'settings':   return array with two fields, the name field contains the
- *                 name of this module, and the desc field a description.
- *   'client_id' : this can be a string with the publisher ID, when the
- *                 $args parameter wasn't defined, or an array with two
- *                 fields, the 'slot' field for the Slot ID and the 'client'
- *                 field for the Publisher ID
- */
-function revenue_sharing_basic_adsense($op, $args = array()) {
-  static $client_id = NULL;
-
-  switch ($op) {
-    case 'settings':
-        return array(
-          'name' => 'Revenue sharing',
-          'desc' => 'DOES NOT WORK with new code ad units, such as "Managed Ads" or "Custom Search".',
-        );
-      break;
-    case 'client_id':
-      if (!$client_id) {
-        // We cache the client ID on this page load, to make sure all of the
-        // client IDs on one page are the same
-        $client_id = revenue_sharing_basic_choose_client($args);
-      }
-
-      return $client_id;
-  }
-}
-
-/**
- * Provide the applicable Publisher ID, based on the configured probabilities
- *
- * @param $format
- *   Format of the ad
- * @return
- *   If format is set, returns NULL. Otherwise, based on the configured 
- *   percentage, returns either the Publisher ID of the current page's author
- *   or of the owner of the site. When configured, it may also return the
- *   Publisher ID of the user who referred the page author.
- */
-function revenue_sharing_basic_choose_client($format) {
-  global $user;
-
-  if (isset($format)) {
-    // This module can't handle the selection of an appropriate Slot ID
-    // Give up!
-    return NULL;
-  }
-
-  $site_client = variable_get('adsense_basic_id', ADSENSE_BASIC_ID_DEFAULT);
-
-  $info = revenue_sharing_basic_get_node_info();
-  if (empty($info) || !variable_get('revenue_sharing_basic_node_type_'. $info['type'], REVENUE_SHARING_BASIC_NODE_TYPE_DEFAULT)) {
-    return $site_client;
-  }
-
-  $percents[0] = variable_get('revenue_sharing_basic_percentage_author', REVENUE_SHARING_BASIC_PERCENTAGE_AUTHOR_DEFAULT);
-
-  $author_user = user_load(array('uid' => $info['uid']));
-  foreach ($author_user->roles as $role => $role_desc) {
-    $percents[$role] = variable_get('revenue_sharing_basic_percentage_role_'. $role, REVENUE_SHARING_BASIC_PERCENTAGE_ROLE_DEFAULT);
-  }
-  arsort($percents);
-  $percent_author = array_shift($percents);
-
-  $percent_referral = variable_get('revenue_sharing_basic_percentage_refer', REVENUE_SHARING_BASIC_PERCENTAGE_REFER_DEFAULT);
-
-  // Toss the dice and see who gets their ad displayed
-  $random = mt_rand(1, 100);
-  if ($random <= $percent_author) {
-    $client = revenue_sharing_basic_get_profile_client_id($info['uid']);
-  }
-  elseif ($random <= ($percent_author + $percent_referral)) {
-    $client = revenue_sharing_basic_get_referral_client_id($info['uid']);
-  }
-  else {
-    $client = $site_client;
-  }
-
-  // Last check to see that we have a valid client
-  // Check that the current user doesn't view ads with it's own Publisher ID
-  if ((!$client) || ($client == revenue_sharing_basic_get_profile_client_id($user->uid))) {
-    $client = $site_client;
-  }
-
-  return $client;
-}
-
-/**
- * Provide the Publisher ID of the the specified user
- *
- * @param $uid
- *   User ID
- * @return
- *   Publisher ID of the specified user in case it applies, otherwise NULL
- */
-function revenue_sharing_basic_get_profile_client_id($uid) {
-  $client_id = NULL;
-
-  if ($uid) {
-    // Get the profile field for a certain user
-    $profile_field = variable_get('revenue_sharing_basic_client_id_profile_field', REVENUE_SHARING_BASIC_CLIENT_ID_PROFILE_FIELD_DEFAULT);
-    $client_id = db_result(db_query('SELECT value FROM {profile_values} WHERE fid = %d AND uid = %d', $profile_field, $uid));
-  }
-
-  return $client_id;
-}
-
-/**
- * Provide the node type and the User ID of the author of the current page
- *
- * @return
- *   User ID of author, or NULL if it wasn't possible to discover one
- */
-function revenue_sharing_basic_get_node_info() {
-  static $info = array();
-
-  if ((!$info) && (arg(0) == 'node') && is_numeric(arg(1))) {
-    $node = node_load(arg(1));
-
-    // Cache the results
-    $info = array('uid' => $node->uid, 'type' => $node->type);
-  }
-
-  return $info;
-}
-
-/**
- * Provide the Publisher ID of the user of referred the specified user
- *
- * @param $uid
- *   User ID
- * @return
- *   Publisher ID of the referrer of the specified user in case it applies,
- *   otherwise NULL
- */
-function revenue_sharing_basic_get_referral_client_id($uid) {
-  if (module_exists('referral')) {
-    $referral_uid = referral_get_user($uid);
-    if ($referral_uid) {
-      return revenue_sharing_basic_get_profile_client_id($referral_uid);
-    }
-  }
-  // User was not referred by an existing user
-  return NULL;
-}
Index: old/search/adsense_search.admin.inc
===================================================================
RCS file: old/search/adsense_search.admin.inc
diff -N old/search/adsense_search.admin.inc
--- old/search/adsense_search.admin.inc	13 May 2009 00:04:20 -0000	1.1.2.3
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,302 +0,0 @@
-<?php
-// $Id: adsense_search.admin.inc,v 1.1.2.3 2009/05/13 00:04:20 jcnventura Exp $
-
-/**
- * @file
- * Contains the administrative functions of the adsense_search module.
- *
- * This file is included by the adsense_search module, and includes the
- * settings form.
- */
-
-/**
- * Menu callback for the adsense_search module settings form.
- *
- * @ingroup forms
- */
-function adsense_search_settings() {
-  global $base_url;
-  require_once(drupal_get_path('module', 'adsense') .'/includes/adsense.search_options.inc');
-
-  $form['searchbox'] = array(
-    '#type' => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed' => FALSE,
-    '#title' => t('Search Box Options'),
-    '#description' => t('Allows users to search the web or the specific site(s) of your choice. Enter the site\'s URL without the last \'/\''),
-  );
-
-  $form['searchbox']['adsense_search_domain_0'] = array(
-    '#type' => 'textfield',
-    '#field_prefix' => 'http://',
-    '#default_value' => variable_get('adsense_search_domain_0', str_replace('http://', '', $base_url)),
-    '#size' => 32,
-    '#maxlength' => 255,
-  );
-
-  $form['searchbox']['adsense_search_domain_1'] = array(
-    '#type' => 'textfield',
-    '#field_prefix' => 'http://',
-    '#default_value' => variable_get('adsense_search_domain_1', ADSENSE_SEARCH_DOMAIN_DEFAULT),
-    '#size' => 32,
-    '#maxlength' => 255,
-  );
-
-  $form['searchbox']['adsense_search_domain_2'] = array(
-    '#type' => 'textfield',
-    '#field_prefix' => 'http://',
-    '#default_value' => variable_get('adsense_search_domain_2', ADSENSE_SEARCH_DOMAIN_DEFAULT),
-    '#size' => 32,
-    '#maxlength' => 255,
-  );
-
-  $form['searchbox']['adsense_search_safe_mode'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Use SafeSearch'),
-    '#default_value' => variable_get('adsense_search_safe_mode', ADSENSE_SEARCH_SAFE_MODE_DEFAULT),
-  );
-
-  $form['searchbox']['adsense_search_logo'] = array(
-    '#type' => 'radios',
-    '#title' => t('Logo Type'),
-    '#default_value' => variable_get('adsense_search_logo', ADSENSE_SEARCH_LOGO_DEFAULT),
-    '#options' => array(
-      'adsense_search_logo_google'        => t('Google Logo'),
-      'adsense_search_logo_above_textbox' => t('Logo above text box'),
-      'adsense_search_logo_on_button'     => t('"Google Search" on button'),
-    ),
-  );
-
-  $form['searchbox']['adsense_search_button'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Search button below text box'),
-    '#default_value' => variable_get('adsense_search_button', ADSENSE_SEARCH_BUTTON_DEFAULT),
-  );
-
-  $form['searchbox']['adsense_search_color_box_background'] = array(
-    '#type' => 'select',
-    '#title' => t('Background color'),
-    '#default_value' => variable_get('adsense_search_color_box_background', ADSENSE_SEARCH_COLOR_BOX_BACKGROUND_DEFAULT),
-    '#options' => array(
-      '#FFFFFF' => t('White'),
-      '#000000' => t('Black'),
-      '#CCCCCC' => t('Gray'),
-    ),
-  );
-
-  $form['searchbox']['adsense_search_color_box_text'] = array(
-    '#type' => 'select',
-    '#title' => t('Text color'),
-    '#default_value' => variable_get('adsense_search_color_box_text', ADSENSE_SEARCH_COLOR_BOX_TEXT_DEFAULT),
-    '#options' => array(
-      '#000000' => t('Black'),
-      '#FFFFFF' => t('White'),
-    ),
-  );
-
-  $form['searchbox']['adsense_search_language'] = array(
-    '#type' => 'select',
-    '#title' => t('Site Language'),
-    '#default_value' => variable_get('adsense_search_language', ADSENSE_SEARCH_LANGUAGE_DEFAULT),
-    '#options' => _adsense_search_options_language(),
-  );
-
-  $form['searchbox']['adsense_search_encoding'] = array(
-    '#type' => 'select',
-    '#title' => t('Site Encoding'),
-    '#default_value' => variable_get('adsense_search_encoding', ADSENSE_SEARCH_ENCODING_DEFAULT),
-    '#options' => _adsense_search_options_encoding(),
-  );
-
-  $form['searchbox']['adsense_search_textbox_length'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Length of text box (Max 64)'),
-    '#default_value' => variable_get('adsense_search_textbox_length', ADSENSE_SEARCH_TEXTBOX_LENGTH_DEFAULT),
-    '#size' => 2,
-    '#maxlength' => 2,
-  );
-
-  $form['result'] = array(
-    '#type' => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed' => FALSE,
-    '#title' => t('Search Results Style'),
-  );
-
-  $form['result']['adsense_search_country'] = array(
-    '#type' => 'select',
-    '#title' => t('Country or territory for Google domain'),
-    '#default_value' => variable_get('adsense_search_country', ADSENSE_SEARCH_COUNTRY_DEFAULT),
-    '#options' => _adsense_search_options_country(),
-  );
-
-  $form['result']['adsense_search_frame_width'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Width of results area'),
-    '#default_value' => variable_get('adsense_search_frame_width', ADSENSE_SEARCH_FRAME_WIDTH_DEFAULT),
-    '#size' => 4,
-    '#maxlength' => 4,
-  );
-
-  $form['result']['colors'] = array(
-    '#type' => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed' => TRUE,
-    '#title' => t('Color attributes'),
-  );
-
-  // Add Farbtastic color picker
-  drupal_add_css('misc/farbtastic/farbtastic.css', 'module', 'all', FALSE);
-  drupal_add_js('misc/farbtastic/farbtastic.js');
-  drupal_add_js(drupal_get_path('module', 'adsense_search') .'/adsense_search.js');
-
-  $form['result']['colors']['colorpicker'] = array(
-    '#type' => 'markup',
-    '#value' => '<div id="colorpicker" style="float:right;"></div>',
-  );
-
-  $form['result']['colors']['adsense_search_color_border'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Border'),
-    '#default_value' => variable_get('adsense_search_color_border', ADSENSE_SEARCH_COLOR_BORDER_DEFAULT),
-    '#size' => 7,
-    '#maxlength' => 7,
-  );
-
-  $form['result']['colors']['adsense_search_color_title'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Title'),
-    '#default_value' => variable_get('adsense_search_color_title', ADSENSE_SEARCH_COLOR_TITLE_DEFAULT),
-    '#size' => 7,
-    '#maxlength' => 7,
-  );
-
-  $form['result']['colors']['adsense_search_color_bg'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Background'),
-    '#default_value' => variable_get('adsense_search_color_bg', ADSENSE_SEARCH_COLOR_BG_DEFAULT),
-    '#size' => 7,
-    '#maxlength' => 7,
-  );
-
-  $form['result']['colors']['adsense_search_color_text'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Text'),
-    '#default_value' => variable_get('adsense_search_color_text', ADSENSE_SEARCH_COLOR_TEXT_DEFAULT),
-    '#size' => 7,
-    '#maxlength' => 7,
-  );
-
-  $form['result']['colors']['adsense_search_color_url'] = array(
-    '#type' => 'textfield',
-    '#title' => t('URL'),
-    '#default_value' => variable_get('adsense_search_color_url', ADSENSE_SEARCH_COLOR_URL_DEFAULT),
-    '#size' => 7,
-    '#maxlength' => 7,
-  );
-
-  $form['result']['colors']['adsense_search_color_visited_url'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Visited URL'),
-    '#default_value' => variable_get('adsense_search_color_visited_url', ADSENSE_SEARCH_COLOR_VISITED_URL_DEFAULT),
-    '#size' => 7,
-    '#maxlength' => 7,
-  );
-
-  $form['result']['colors']['adsense_search_color_light_url'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Light URL'),
-    '#default_value' => variable_get('adsense_search_color_light_url', ADSENSE_SEARCH_COLOR_LIGHT_URL_DEFAULT),
-    '#size' => 7,
-    '#maxlength' => 7,
-  );
-
-  $form['result']['colors']['adsense_search_color_logo_bg'] = array(
-    '#type' => 'hidden',
-    '#title' => t('Logo Background'),
-    '#default_value' => variable_get('adsense_search_color_logo_bg', ADSENSE_SEARCH_COLOR_LOGO_BG_DEFAULT),
-    '#size' => 7,
-    '#maxlength' => 7,
-  );
-
-  $form['blocks'] = array(
-    '#type' => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed' => FALSE,
-    '#title' => t('AdSense Blocks'),
-  );
-
-  $form['blocks']['adsense_search_number_blocks'] = array(
-    '#type' => 'textfield',
-    '#title' => t('Number of blocks'),
-    '#default_value' => variable_get('adsense_search_number_blocks', ADSENSE_SEARCH_NUMBER_BLOCKS_DEFAULT),
-    '#size' => 2,
-    '#maxlength' => 2,
-  );
-
-  $form['channels'] = array(
-    '#type' => 'fieldset',
-    '#collapsible' => TRUE,
-    '#collapsed' => TRUE,
-    '#title' => t('Custom channels'),
-    '#description' => t('Enter up to !channels custom channels that you have configured in Google AdSense. If you are not using custom channels, or you are only using URL channels, then leave this empty.', array('!channels' => ADSENSE_MAX_CHANNELS)),
-  );
-
-  for ($channel=1; $channel <= ADSENSE_MAX_CHANNELS ; $channel++) {
-    $form['channels']['adsense_ad_channel_'. $channel] = array(
-      '#type' => 'textfield',
-      '#title' => t('Custom channel ID') .' '. $channel,
-      '#default_value' => variable_get('adsense_ad_channel_'. $channel, ADSENSE_AD_CHANNEL_DEFAULT),
-      '#size' => 30,
-      '#maxlength' => 30,
-    );
-  }
-
-  $form['#validate'][] = '_adsense_search_settings_validate';
-
-  return system_settings_form($form);
-}
-
-/**
- * Validate adsense_search_settings form.
- */
-function _adsense_search_settings_validate($form, &$form_state) {
-  $textbox_length = $form_state['values']['adsense_search_textbox_length'];
-  $min = 8;
-  $max = 64;
-  if (($textbox_length < $min ) || ($textbox_length > $max )) {
-    form_set_error('adsense_search_textbox_length', t("Text Box Length must be between !min and !max", array('!min' => $min, '!max' => $max)));
-  }
-
-  $number_blocks = $form_state['values']['adsense_search_number_blocks'];
-  if ($number_blocks < 0) {
-    form_set_error('adsense_search_number_blocks', t("Number of blocks can't be a negative number"));
-  }
-
-  $colors = array(
-    'adsense_search_color_border',
-    'adsense_search_color_title',
-    'adsense_search_color_bg',
-    'adsense_search_color_text',
-    'adsense_search_color_url',
-    'adsense_search_color_visited_url',
-    'adsense_search_color_light_url',
-    'adsense_search_color_logo_bg',
-  );
-
-  foreach ($colors as $field_name) {
-    $field_value = $form_state['values'][$field_name];
-    $form_state['values'][$field_name] = drupal_strtoupper($field_value);
-    if (!preg_match('/#[0-9A-F]{6}/i', $field_value)) {
-      form_set_error($field_name, t("Color must be between #000000 and #FFFFFF"));
-    }
-  }
-
-  $box_background_color = $form_state['values']['adsense_search_color_box_background'];
-  if ($box_background_color == '#000000') {
-    $form_state['values']['adsense_search_color_box_text'] = '#FFFFFF';
-  }
-  elseif ($box_background_color == '#FFFFFF') {
-    $form_state['values']['adsense_search_color_box_text'] = '#000000';
-  }
-}
Index: old/search/adsense_search.info
===================================================================
RCS file: old/search/adsense_search.info
diff -N old/search/adsense_search.info
--- old/search/adsense_search.info	21 Jul 2008 00:21:34 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,9 +0,0 @@
-; $Id: adsense_search.info,v 1.1 2008/07/21 00:21:34 kbahey Exp $
-; Copyright 2005-2008 Khalid Baheyeldin http://2bits.com
-; Copyright 2008      Joao Ventura      http://www.venturas.org
-
-name = Search (old)
-description = AdSense for Search generator module. This module uses the 'old' code in which the user can select to search the entire Web or 1 to 3 user-defined domains.
-dependencies[] = adsense
-package = Adsense
-core = 6.x
Index: old/search/adsense_search.install
===================================================================
RCS file: old/search/adsense_search.install
diff -N old/search/adsense_search.install
--- old/search/adsense_search.install	21 Jul 2008 00:21:34 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,40 +0,0 @@
-<?php
-// $Id: adsense_search.install,v 1.1 2008/07/21 00:21:34 kbahey Exp $
-
-/**
- * @file
- * Install file of the adsense_search module
- */
-
-/**
- * Implementation of hook_uninstall().
- */
-function adsense_search_uninstall() {
-  variable_del('adsense_search_button');
-  variable_del('adsense_search_color_bg');
-  variable_del('adsense_search_color_border');
-  variable_del('adsense_search_color_box_background');
-  variable_del('adsense_search_color_box_text');
-  variable_del('adsense_search_color_light_url');
-  variable_del('adsense_search_color_logo_bg');
-  variable_del('adsense_search_color_text');
-  variable_del('adsense_search_color_title');
-  variable_del('adsense_search_color_url');
-  variable_del('adsense_search_color_visited_url');
-  variable_del('adsense_search_country');
-  variable_del('adsense_search_domain_0');
-  variable_del('adsense_search_domain_1');
-  variable_del('adsense_search_domain_2');
-  variable_del('adsense_search_encoding');
-  variable_del('adsense_search_frame_width');
-  variable_del('adsense_search_language');
-  variable_del('adsense_search_logo');
-  variable_del('adsense_search_number_blocks');
-  variable_del('adsense_search_safe_mode');
-  variable_del('adsense_search_textbox_length');
-
-  $settings = db_query("SELECT name FROM {variable} WHERE name LIKE 'adsense\_search\_ad\_block\_%'");
-  while ($variable = db_fetch_object($settings)) {
-    variable_del($variable->name);
-  }
-}
Index: old/search/adsense_search.js
===================================================================
RCS file: old/search/adsense_search.js
diff -N old/search/adsense_search.js
--- old/search/adsense_search.js	11 Sep 2008 22:52:00 -0000	1.3.2.2
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,24 +0,0 @@
-// $Id: adsense_search.js,v 1.3.2.2 2008/09/11 22:52:00 jcnventura Exp $
-
-if (Drupal.jsEnabled) {
-  $(document).ready(function () {
-    // initiate farbtastic colorpicker
-    var farb = $.farbtastic("#colorpicker");
-    var firstField = "";
-
-    $("input.form-text").each( function() {
-      if (this.name.substring(0, 20) == "adsense_search_color") {
-        if (firstField == "") {
-          firstField = this;
-        };
-
-        farb.linkTo(this);
-        $(this).click(function () {
-          farb.linkTo(this);
-        });
-      };
-    });
-
-    farb.linkTo(firstField);
-  });
-}
Index: old/search/adsense_search.module
===================================================================
RCS file: old/search/adsense_search.module
diff -N old/search/adsense_search.module
--- old/search/adsense_search.module	7 Jul 2010 21:49:19 -0000	1.1.2.13
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,300 +0,0 @@
-<?php
-// $Id: adsense_search.module,v 1.1.2.13 2010/07/07 21:49:19 jcnventura Exp $
-
-/**
- * @file
- * Displays Google AdSense ads on Drupal pages
- *
- * This is the core module of the AdSense package, with the Drupal hooks
- * and other administrative functions.
- */
-
-define('ADSENSE_SEARCH_RESULTS_PATH', 'adsense/search');
-
-define('ADSENSE_SEARCH_AD_BLOCK_DEFAULT', '');
-define('ADSENSE_SEARCH_BUTTON_DEFAULT', 0);
-define('ADSENSE_SEARCH_COLOR_BG_DEFAULT', '#FFFFFF');
-define('ADSENSE_SEARCH_COLOR_BORDER_DEFAULT', '#336699');
-define('ADSENSE_SEARCH_COLOR_BOX_BACKGROUND_DEFAULT', '#FFFFFF');
-define('ADSENSE_SEARCH_COLOR_BOX_TEXT_DEFAULT', '#000000');
-define('ADSENSE_SEARCH_COLOR_LIGHT_URL_DEFAULT', '#0000FF');
-define('ADSENSE_SEARCH_COLOR_LOGO_BG_DEFAULT', '#336699');
-define('ADSENSE_SEARCH_COLOR_TEXT_DEFAULT', '#000000');
-define('ADSENSE_SEARCH_COLOR_TITLE_DEFAULT', '#0000FF');
-define('ADSENSE_SEARCH_COLOR_URL_DEFAULT', '#008000');
-define('ADSENSE_SEARCH_COLOR_VISITED_URL_DEFAULT', '#663399');
-define('ADSENSE_SEARCH_COUNTRY_DEFAULT', 'www.google.com');
-define('ADSENSE_SEARCH_DOMAIN_DEFAULT', '');
-define('ADSENSE_SEARCH_ENCODING_DEFAULT', 'UTF-8');
-define('ADSENSE_SEARCH_FRAME_WIDTH_DEFAULT', 800);
-define('ADSENSE_SEARCH_LANGUAGE_DEFAULT', 'en');
-define('ADSENSE_SEARCH_LOGO_DEFAULT', 'adsense_search_logo_google');
-define('ADSENSE_SEARCH_NUMBER_BLOCKS_DEFAULT', 2);
-define('ADSENSE_SEARCH_SAFE_MODE_DEFAULT', 0);
-define('ADSENSE_SEARCH_TEXTBOX_LENGTH_DEFAULT', 31);
-
-/**
- * Implementation of hook_menu().
- */
-function adsense_search_menu() {
-  $items = array();
-
-  $results_path = variable_get('clean_url', 0) ? ADSENSE_SEARCH_RESULTS_PATH : '.';
-
-  $items['admin/settings/adsense/search'] = array(
-    'title' => 'Search',
-    'page callback' => 'drupal_get_form',
-    'page arguments' => array('adsense_search_settings'),
-    'access arguments'  => array('administer adsense'),
-    'weight' => 4,
-    'type' => MENU_LOCAL_TASK,
-    'file' => 'adsense_search.admin.inc',
-  );
-  $items[$results_path] = array(
-    'title' => 'Search Results',
-    'page callback' => '_adsense_search_results',
-    'access callback' => TRUE,
-    'type' => MENU_CALLBACK,
-    'file' => 'adsense_search.results.inc',
-  );
-
-  return $items;
-}
-
-/**
- * Implementation of hook_block().
- */
-function adsense_search_block($op = 'list', $delta = 0, $edit = array()) {
-  $block = NULL;
-
-  switch ($op) {
-    case 'list':
-      $max = variable_get('adsense_search_number_blocks', ADSENSE_SEARCH_NUMBER_BLOCKS_DEFAULT);
-      for ($count=0; $count < $max ; $count++) {
-        if ($ad = _adsense_search_get_block_config($count)) {
-          $title = $ad[0];
-        }
-        else {
-          $title = t('AdSense Search: unconfigured ') . $count;
-        }
-        $block[$count]['info'] = $title;
-        $block[$count]['cache'] = BLOCK_NO_CACHE;
-      }
-      break;
-
-    case 'configure':
-      $ad = _adsense_search_get_block_config($delta);
-
-      $channel_list[''] = t('None');
-      for ($channel=1; $channel <= ADSENSE_MAX_CHANNELS ; $channel++) {
-        $channel_list[$channel] = $channel .' : '. variable_get('adsense_ad_channel_'. $channel, ADSENSE_AD_CHANNEL_DEFAULT);
-      }
-
-      $form['info'] = array(
-        '#type' => 'textfield',
-        '#title' => t('Block description'),
-        '#default_value' => ($ad) ? $ad[0] : '',
-        '#maxlength' => 64,
-        '#description' => t('A brief description of your block. Used on the <a href="@overview">block overview page</a>.', array('@overview' => url('admin/build/block'))),
-        '#required' => TRUE,
-        '#weight' => -19,
-      );
-
-      $form['ad_channel'] = array(
-        '#type' => 'select',
-        '#title' => t('Channel'),
-        '#default_value' => ($ad) ? $ad[1] : '',
-        '#options' => $channel_list,
-      );
-      return $form;
-
-    case 'save':
-      $data = implode(':', array(urlencode($edit['info']), $edit['ad_channel']));
-      variable_set('adsense_search_ad_block_'. $delta, $data);
-      return;
-
-    case 'view':
-      if (_adsense_page_match()) {
-        $ad = _adsense_search_get_block_config($delta);
-        $block['content'] = ($ad) ? adsense_display(array('format' => 'Search Box', 'channel' => $ad[1])) : t('AdSense unconfigured block. <a href=!url>Click to configure.</a>', array('!url' => url('admin/build/block/configure/adsense_search/'. $delta)));
-      }
-      break;
-    }
-  return $block;
-}
-
-/**
- * Configuration of the provided block
- *
- * @param $delta
- *   block number
- * @return
- *   array with the block configuration or FALSE if no such block was found
- */
-function _adsense_search_get_block_config($delta = 0) {
-  if ($data = variable_get('adsense_search_ad_block_'. $delta, ADSENSE_SEARCH_AD_BLOCK_DEFAULT)) {
-    $ad = explode(':', $data);
-    $ad[0] = urldecode($ad[0]);
-    return $ad;
-  }
-
-  return FALSE;
-}
-
-/**
- * Generates the search box
- *
- * @param $channel
- *   (optional) Channel ID of the configured Ad Channel
- * @return
- *   HTML with the search input form
- */
-function _adsense_search_get_searchbox($client, $channel = NULL) {
-  global $base_url;
-
-  $border   = variable_get('adsense_search_color_border',      ADSENSE_SEARCH_COLOR_BORDER_DEFAULT);
-  $title    = variable_get('adsense_search_color_title',       ADSENSE_SEARCH_COLOR_TITLE_DEFAULT);
-  $bg       = variable_get('adsense_search_color_bg',          ADSENSE_SEARCH_COLOR_BG_DEFAULT);
-  $text     = variable_get('adsense_search_color_text',        ADSENSE_SEARCH_COLOR_TEXT_DEFAULT);
-  $url      = variable_get('adsense_search_color_url',         ADSENSE_SEARCH_COLOR_URL_DEFAULT);
-  $visited  = variable_get('adsense_search_color_visited_url', ADSENSE_SEARCH_COLOR_VISITED_URL_DEFAULT);
-  $light    = variable_get('adsense_search_color_light_url',   ADSENSE_SEARCH_COLOR_LIGHT_URL_DEFAULT);
-  $logobg   = variable_get('adsense_search_color_logo_bg',     ADSENSE_SEARCH_COLOR_LOGO_BG_DEFAULT);
-
-  $logo     = variable_get('adsense_search_logo', ADSENSE_SEARCH_LOGO_DEFAULT);
-  $search_button = variable_get('adsense_search_button', ADSENSE_SEARCH_BUTTON_DEFAULT);
-
-  $box_text_color = variable_get('adsense_search_color_box_text', ADSENSE_SEARCH_COLOR_BOX_TEXT_DEFAULT);
-  $box_background_color = variable_get('adsense_search_color_box_background', ADSENSE_SEARCH_COLOR_BOX_BACKGROUND_DEFAULT);
-  $encoding = variable_get('adsense_search_encoding', ADSENSE_SEARCH_ENCODING_DEFAULT);
-
-  $domain_0 = variable_get('adsense_search_domain_0', str_replace('http://', '', $base_url));
-  $domain_1 = variable_get('adsense_search_domain_1', ADSENSE_SEARCH_DOMAIN_DEFAULT);
-  $domain_2 = variable_get('adsense_search_domain_2', ADSENSE_SEARCH_DOMAIN_DEFAULT);
-  $domain   = $domain_1 ? "$domain_0;$domain_1" : $domain_0;
-  $domain   = $domain_2 ? "$domain;$domain_2" : $domain;
-
-  $language = variable_get('adsense_search_language', ADSENSE_SEARCH_LANGUAGE_DEFAULT);
-  $textbox_length = variable_get('adsense_search_textbox_length', ADSENSE_SEARCH_TEXTBOX_LENGTH_DEFAULT);
-
-  if (variable_get('clean_url', 0)) {
-    $results_path = url(ADSENSE_SEARCH_RESULTS_PATH, array('absolute' => TRUE));
-    $hidden_q_field = "";
-  }
-  else {
-    $results_path = $base_url;
-    $hidden_q_field = '<input type="hidden" name="q" value="." />';
-  }
-
-  if ($logo != 'adsense_search_logo_on_button') {
-    $btn = t('Search');
-    if ($box_background_color == '#000000') {
-      $logo_color = 'blk';
-    }
-    elseif ($box_background_color == '#CCCCCC') {
-      $logo_color = 'gry';
-    }
-    else {
-      $logo_color = 'wht';
-    }
-
-    $part1 = "<a href=\"http://www.google.com/\">\n" .
-             "<img src=\"http://www.google.com/logos/Logo_25$logo_color.gif\" border=\"0\" alt=\"Google\" align=\"middle\"></img></a>";
-    if ($logo == 'adsense_search_logo_google') {
-      $part1 .= "\n</td>\n<td nowrap=\"nowrap\">";
-      $part3 = "<td>&nbsp;</td>";
-    }
-    elseif ($logo == 'adsense_search_logo_above_textbox') {
-      $part1 .=  "\n<br/>";
-      $part3 = "";
-    }
-  }
-  else {
-    $btn = t('Google Search');
-    $part1 = "</td>\n<td nowrap=\"nowrap\">";
-    $part3 = "<td>&nbsp;</td>";
-  }
-
-  $button_html = "<label for=\"sbb\" style=\"display: none\">Submit search form</label>\n" .
-                 "<input type=\"submit\" name=\"sa\" value=\"$btn\" id=\"sbb\"></input>";
-
-  if (!$search_button) {
-    $part2 = $button_html;
-    $part5 = "";
-  }
-  else {
-    $part5 = $button_html;
-    $part2 = "";
-  }
-
-  // Searched domains >=1 (2 or 3)
-  if ($domain_1) {
-    $part4 = "<tr>\n<td>\n<input type=\"radio\" name=\"sitesearch\" value=\"$domain_1\" id=\"ss2\"></input>\n" .
-            "<label for=\"ss2\" title=\"Search $domain_1\"><font size=\"-1\" color=\"$box_text_color\">$domain_1</font></label></td>\n";
-    if ($domain_2) {
-      $part4 .= "<td>\n<input type=\"radio\" name=\"sitesearch\" value=\"$domain_2\" id=\"ss3\"></input>\n" .
-                "<label for=\"ss3\" title=\"Search $domain_2\"><font size=\"-1\" color=\"$box_text_color\">$domain_2</font></label></td>";
-    }
-    else {
-      $part4 .= "<td></td>";
-    }
-    $part4 .= "\n</tr>";
-  }
-  else {
-    $part4 = "";
-  }
-
-  // AdSense for Search channel
-  $channel  = variable_get('adsense_ad_channel_'. $channel, ADSENSE_AD_CHANNEL_DEFAULT);
-  if (!empty($channel)) {
-    $part6 = "<input type=\"hidden\" name=\"channel\" value=\"$channel\"></input>";
-  }
-  else {
-    $part6 = "";
-  }
-
-  // Is SafeSearch active?
-  $part7 = variable_get('adsense_search_safe_mode', ADSENSE_SEARCH_SAFE_MODE_DEFAULT) ? '<input type="hidden" name="safe" value="active"></input>' : '';
-
-  $output = <<<SEARCH_TXT
-<!-- SiteSearch Google -->
-<form method="get" action="$results_path" target="_top">
-<table border="0" bgcolor="$box_background_color">
-<tr><td nowrap="nowrap" valign="top" align="left" height="32">
-$part1
-$hidden_q_field
-<input type="hidden" name="domains" value="$domain"></input>
-<label for="sbi" style="display: none">Enter your search terms</label>
-<input type="text" name="as_q" size="$textbox_length" maxlength="255" value="" id="sbi"></input>
-$part2
-</td></tr>
-<tr>
-$part3
-<td nowrap="nowrap">
-<table>
-<tr>
-<td>
-<input type="radio" name="sitesearch" value="" checked id="ss0"></input>
-<label for="ss0" title="Search the Web"><font size="-1" color="$box_text_color">Web</font></label></td>
-<td>
-<input type="radio" name="sitesearch" value="$domain_0" id="ss1"></input>
-<label for="ss1" title="Search $domain_0"><font size="-1" color="$box_text_color">$domain_0</font></label></td>
-</tr>
-$part4
-</table>
-$part5
-<input type="hidden" name="client" value="$client"></input>
-<input type="hidden" name="forid" value="1"></input>
-$part6
-<input type="hidden" name="ie" value="$encoding"></input>
-<input type="hidden" name="oe" value="$encoding"></input>
-$part7
-<input type="hidden" name="cof" value="GALT:$url;GL:1;DIV:$border;VLC:$visited;AH:center;BGC:$bg;LBGC:$logobg;ALC:$title;LC:$title;T:$text;GFNT:$light;GIMP:$light;FORID:11"></input>
-<input type="hidden" name="hl" value="$language"></input>
-</td></tr></table>
-</form>
-<!-- SiteSearch Google -->
-SEARCH_TXT;
-
-  return $output;
-}
Index: old/search/adsense_search.results.inc
===================================================================
RCS file: old/search/adsense_search.results.inc
diff -N old/search/adsense_search.results.inc
--- old/search/adsense_search.results.inc	31 Mar 2009 14:41:02 -0000	1.1.2.3
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,53 +0,0 @@
-<?php
-// $Id: adsense_search.results.inc,v 1.1.2.3 2009/03/31 14:41:02 jcnventura Exp $
-
-/**
- * @file
- * Displays the page containing the results of the Adsense for Search box
- */
-
-/**
- * Creates the Adsense for Search search results page for site-embedded search results
- *
- * @return
- *   JavaScript that embeds the Google results
- */
-function _adsense_search_results() {
-  // Log the search keys:
-  watchdog('AdSense', 'Search keywords: %keyword', array('%keyword' => urldecode($_GET['as_q'])), WATCHDOG_NOTICE);
-
-  // Output search results
-  $width   = variable_get('adsense_search_frame_width', ADSENSE_SEARCH_FRAME_WIDTH_DEFAULT);
-  $country = variable_get('adsense_search_country', ADSENSE_SEARCH_COUNTRY_DEFAULT);
-
-  if (variable_get('adsense_test_mode', ADSENSE_TEST_MODE_DEFAULT)) {
-    $output = _adsense_format_box("Results<br />width = ${width}<br />country = ${country}", $width, 100);
-  }
-  else {
-    if (variable_get('adsense_secret_adtest', ADSENSE_SECRET_ADTEST_DEFAULT)) {
-      $secret = '  var googleAdtest = "on";';
-    }
-
-    $output = <<<SEARCH_RESULTS_TXT
-<!-- Google Search Result Snippet Begins -->
-<div id="googleSearchUnitIframe"></div>
-<script type="text/javascript">
-  var googleSearchIframeName = 'googleSearchUnitIframe';
-  var googleSearchFrameWidth = $width;
-  var googleSearchFrameborder = 0 ;
-  var googleSearchDomain = '$country';
-$secret
-</script>
-<script type="text/javascript"
-  src="http://www.google.com/afsonline/show_afs_search.js">
-</script>
-<!-- Google Search Result Snippet Ends -->
-SEARCH_RESULTS_TXT;
-
-    // Remove empty lines
-    $output = str_replace("\n\n", "\n", $output);
-  }
-
-  return $output;
-}
-
Index: translations/README.txt
===================================================================
RCS file: translations/README.txt
diff -N translations/README.txt
--- translations/README.txt	21 Jul 2008 00:21:34 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1 +0,0 @@
-This is a directory for translations.
Index: translations/adsense.pot
===================================================================
RCS file: translations/adsense.pot
diff -N translations/adsense.pot
--- translations/adsense.pot	13 May 2009 00:04:20 -0000	1.1.2.3
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,2076 +0,0 @@
-# $Id: adsense.pot,v 1.1.2.3 2009/05/13 00:04:20 jcnventura Exp $
-#
-# LANGUAGE translation of Drupal (general)
-# Copyright YEAR NAME <EMAIL@ADDRESS>
-# Generated from files:
-#  adsense.admin.inc,v 1.1.2.5 2009/03/31 14:41:01 jcnventura
-#  adsense_cse.admin.inc,v 1.1.2.4 2009/02/10 01:35:20 jcnventura
-#  adsense_managed.admin.inc,v 1.1.2.2 2008/09/11 22:52:00 jcnventura
-#  revenue_sharing_basic.admin.inc,v 1.3.2.5 2009/05/12 23:37:34 jcnventura
-#  adsense.module,v 1.68.2.18 2009/03/31 14:41:01 jcnventura
-#  adsense_search.results.inc,v 1.1.2.3 2009/03/31 14:41:02 jcnventura
-#  adsense.info,v 1.6 2008/07/21 00:21:33 kbahey
-#  adsense_click.info,v 1.2.2.1 2008/12/19 01:32:37 jcnventura
-#  adsense_cse.info,v 1.1 2008/07/21 00:21:34 kbahey
-#  adsense_managed.info,v 1.1 2008/07/21 00:21:34 kbahey
-#  adsense_oldcode.info,v 1.1.2.1 2008/08/11 02:19:15 jcnventura
-#  revenue_sharing_basic.info,v 1.1.2.3 2009/05/12 23:37:34 jcnventura
-#  adsense_search.info,v 1.1 2008/07/21 00:21:34 kbahey
-#  adsense_click.admin.inc,v 1.1.4.2 2008/12/19 01:32:37 jcnventura
-#  adsense_click.logs.inc,v 1.1.4.2 2008/12/19 01:32:37 jcnventura
-#  adsense_click.module,v 1.2.2.10 2008/12/19 01:32:37 jcnventura
-#  adsense_search.admin.inc,v 1.1.2.2 2008/09/11 22:52:00 jcnventura
-#  adsense_oldcode.admin.inc,v 1.1.2.2 2008/09/11 22:52:00 jcnventura
-#  adsense_managed.module,v 1.1.2.7 2009/03/31 14:41:02 jcnventura
-#  adsense_oldcode.module,v 1.1.2.7 2009/03/31 14:41:02 jcnventura
-#  adsense_cse.module,v 1.1.2.8 2009/02/10 01:35:20 jcnventura
-#  adsense_search.module,v 1.1.2.10 2009/03/31 14:41:02 jcnventura
-#  adsense.help.inc,v 1.1.2.7 2009/03/31 14:41:02 jcnventura
-#  adsense.search_options.inc,v 1.1.2.1 2008/08/10 22:26:34 jcnventura
-#  revenue_sharing_basic.module,v 1.4.2.10 2009/05/12 23:37:34 jcnventura
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"POT-Creation-Date: 2009-05-13 01:59+0200\n"
-"PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n"
-"Last-Translator: NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-
-#: adsense.admin.inc:25;152 cse/adsense_cse.admin.inc:26 managed/adsense_managed.admin.inc:24 old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:25
-msgid "Help and instructions"
-msgstr ""
-
-#: adsense.admin.inc:37
-msgid "Visibility"
-msgstr ""
-
-#: adsense.admin.inc:42
-msgid "Show AdSense on specific pages"
-msgstr ""
-
-#: adsense.admin.inc:44
-msgid "Show on every page except the listed pages."
-msgstr ""
-
-#: adsense.admin.inc:44
-msgid "Show on only the listed pages."
-msgstr ""
-
-#: adsense.admin.inc:51
-msgid "Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are  %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page."
-msgstr ""
-
-#: adsense.admin.inc:61
-msgid "Show if the following PHP code returns <code>TRUE</code> (PHP-mode, experts only)."
-msgstr ""
-
-#: adsense.admin.inc:62
-msgid "If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can break your Drupal site."
-msgstr ""
-
-#: adsense.admin.inc:69
-msgid "Advanced options"
-msgstr ""
-
-#: adsense.admin.inc:74
-msgid "Enable test mode?"
-msgstr ""
-
-#: adsense.admin.inc:76
-msgid "This enables you to test the AdSense module settings. This can be useful in some situations: for example, testing whether revenue sharing is working properly or not without having to display real ads on your site. It is best to test this after you log out."
-msgstr ""
-
-#: adsense.admin.inc:81
-msgid "Disable Google AdSense ads?"
-msgstr ""
-
-#: adsense.admin.inc:83
-msgid "This disables all display of Google AdSense ads from your web site. This is useful in certain situations, such as site upgrades, or if you make a copy of the site for development and test purposes."
-msgstr ""
-
-#: adsense.admin.inc:88
-msgid "Placeholder when ads are disabled?"
-msgstr ""
-
-#: adsense.admin.inc:90
-msgid "This causes an empty box to be displayed in place of the ads when they are disabled."
-msgstr ""
-
-#: adsense.admin.inc:95
-msgid "Placeholder text to display"
-msgstr ""
-
-#: adsense.admin.inc:98
-msgid "Enter any text to display as a placeholder when ads are disabled."
-msgstr ""
-
-#: adsense.admin.inc:103
-msgid "Enable AdSense section targeting?"
-msgstr ""
-
-#: adsense.admin.inc:105
-msgid "This better targets Google ads to the teaser and body of nodes."
-msgstr ""
-
-#: adsense.admin.inc:112
-msgid "Undocumented options"
-msgstr ""
-
-#: adsense.admin.inc:113
-msgid "Warning: Use of these options is AT YOUR OWN RISK. Google will never generate an ad with any of these options, so using one of them is a violation of Google AdSense's Terms and Conditions. USE OF THESE OPTIONS MAY RESULT IN GETTING BANNED FROM THE PROGRAM. You may lose all the revenue accumulated in your account. FULL RESPONSABILITY FOR THE USE OF THESE OPTIONS IS YOURS. In other words, don't complain to the authors about getting banned, even if using one of these options was provided as a solution to a reported problem."
-msgstr ""
-
-#: adsense.admin.inc:120
-msgid "I agree"
-msgstr ""
-
-#: adsense.admin.inc:125
-msgid "Use Google's AdSense test option?"
-msgstr ""
-
-#: adsense.admin.inc:127
-msgid "With this option set, Google will not count any clicks or page impressions. Revenue is not generated. Make sure that you disable this option in production servers. [!statement]"
-msgstr ""
-
-#: adsense.admin.inc:127
-msgid "Unofficial statement"
-msgstr ""
-
-#: adsense.admin.inc:132
-msgid "Language to display ads"
-msgstr ""
-
-#: adsense.admin.inc:162
-msgid "Site Google AdSense Publisher ID"
-msgstr ""
-
-#: adsense.admin.inc:165
-msgid "This is the Google AdSense Publisher ID for the site owner. It is used if no other ID is suitable. Get this in your Google Adsense account. It should be similar to %id."
-msgstr ""
-
-#: adsense.admin.inc:172
-msgid "Publisher ID module"
-msgstr ""
-
-#: adsense.module:54
-msgid "4-links 120x90"
-msgstr ""
-
-#: adsense.module:55
-msgid "4-links 160x90"
-msgstr ""
-
-#: adsense.module:56
-msgid "4-links 180x90"
-msgstr ""
-
-#: adsense.module:57
-msgid "4-links 200x90"
-msgstr ""
-
-#: adsense.module:58
-msgid "4-links 468x15"
-msgstr ""
-
-#: adsense.module:59
-msgid "4-links 728x15"
-msgstr ""
-
-#: adsense.module:60
-msgid "5-links 120x90"
-msgstr ""
-
-#: adsense.module:61
-msgid "5-links 160x90"
-msgstr ""
-
-#: adsense.module:62
-msgid "5-links 180x90"
-msgstr ""
-
-#: adsense.module:63
-msgid "5-links 200x90"
-msgstr ""
-
-#: adsense.module:64
-msgid "5-links 468x15"
-msgstr ""
-
-#: adsense.module:65
-msgid "5-links 728x15"
-msgstr ""
-
-#: adsense.module:66
-msgid "Vertical banner"
-msgstr ""
-
-#: adsense.module:67
-msgid "Skyscraper"
-msgstr ""
-
-#: adsense.module:68
-msgid "Button"
-msgstr ""
-
-#: adsense.module:69
-msgid "Wide Skyscraper"
-msgstr ""
-
-#: adsense.module:70
-msgid "Small Rectangle"
-msgstr ""
-
-#: adsense.module:71
-msgid "Small Square"
-msgstr ""
-
-#: adsense.module:72
-msgid "Half Banner"
-msgstr ""
-
-#: adsense.module:73
-msgid "Square"
-msgstr ""
-
-#: adsense.module:74
-msgid "Medium Rectangle"
-msgstr ""
-
-#: adsense.module:75
-msgid "Large Rectangle"
-msgstr ""
-
-#: adsense.module:76
-msgid "Banner"
-msgstr ""
-
-#: adsense.module:77
-msgid "Leaderboard"
-msgstr ""
-
-#: adsense.module:85
-msgid "AdSense for Search"
-msgstr ""
-
-#: adsense.module:179
-msgid "AdSense tag"
-msgstr ""
-
-#: adsense.module:183
-msgid "Substitutes an AdSense special tag with an ad."
-msgstr ""
-
-#: adsense.module:219
-msgid "The HTML corrector filter has a bug that causes problems with the use of the AdSense tag. Disabling the HTML corrector filter is recommended."
-msgstr ""
-
-#: adsense.module:228
-msgid "Use the special tag [adsense:<em>format</em>:<em>slot</em>] or [adsense:<em>format</em>:<em>[group]</em>:<em>[channel]</em><em>[:slot]</em>] or [adsense:block:<em>location</em>] to display Google AdSense ads."
-msgstr ""
-
-#: (duplicate) adsense.module:162 ;120 old/search/adsense_search.results.inc:17
-msgid "AdSense"
-msgstr ""
-
-#: (duplicate) adsense.module:163 
-msgid "Publisher ID is not set."
-msgstr ""
-
-#: (duplicate) adsense.module:164 
-msgid "Please configure it in the <a href=\"@url\">AdSense settings page</a>."
-msgstr ""
-
-#: adsense.module:99
-msgid "administer adsense"
-msgstr ""
-
-#: adsense.module:99
-msgid "hide adsense"
-msgstr ""
-
-#: adsense.module:99
-msgid "use PHP for ad visibility"
-msgstr ""
-
-#: adsense.module:121
-msgid "Configure Google AdSense Ads."
-msgstr ""
-
-#: adsense.module:128
-msgid "Settings"
-msgstr ""
-
-#: adsense.module:133
-msgid "Publisher ID"
-msgstr ""
-
-#: adsense.module:142
-msgid "Site ID"
-msgstr ""
-
-#: adsense.info:0
-msgid "AdSense core"
-msgstr ""
-
-#: adsense.info:0
-msgid "Displays Google AdSense ads on your site to earn revenue. Requires at least one additional ad unit generator module."
-msgstr ""
-
-#: adsense.info:0 contrib/adsense_click/adsense_click.info:0 cse/adsense_cse.info:0 managed/adsense_managed.info:0 old/oldcode/adsense_oldcode.info:0 old/revenue_sharing_basic/revenue_sharing_basic.info:0 old/search/adsense_search.info:0
-msgid "Adsense"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:15
-msgid "Click tracking"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:20
-msgid "Enable AdSense click tracking?"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:22
-msgid "Logs IP and time of <a href=!url>AdSense clicks</a>. This can be very useful in tracking which of your pages generate the most clicks, as well as help if click fraud is suspected."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:26
-msgid "Enable name resolution of IP addresses?"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:28
-msgid "Display the domain name instead of the IP address. This can slow down the display of the logs page and tie up a PHP process for several seconds. On some hosting providers it may not be available."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:14
-msgid "Timestamp"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:15;46
-msgid "Path"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:16
-msgid "IP/Host"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:17
-msgid "Referrer"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:47;70 contrib/adsense_click/adsense_click.module:22
-msgid "Clicks"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:48
-msgid "Last"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:69
-msgid "Day"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:66
-msgid "view clicks"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:23
-msgid "Track the clicks on Adsense ads."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:32
-msgid "AdSense clicks"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:33
-msgid "Track AdSense clicks."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:40
-msgid "Top pages"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:47
-msgid "By day"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.info:0
-msgid "AdSense Click Tracking"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.info:0
-msgid "Tracks clicks to Google Adsense"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:38 old/search/adsense_search.admin.inc:25
-msgid "Search Box Options"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:43 old/search/adsense_search.admin.inc:61
-msgid "Logo Type"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:46
-msgid "Watermark on search box (requires JavaScript)"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:47
-msgid "Next to the search box"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:48
-msgid "Below the search box"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:54 old/oldcode/adsense_oldcode.admin.inc:92 old/search/adsense_search.admin.inc:78
-msgid "Background color"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:57 old/search/adsense_search.admin.inc:81;93
-msgid "White"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:58 old/search/adsense_search.admin.inc:83
-msgid "Gray"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:59 old/search/adsense_search.admin.inc:82;92
-msgid "Black"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:65 old/search/adsense_search.admin.inc:106
-msgid "Site Encoding"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:72
-msgid "Text Box Length"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:80
-msgid "Watermark Language"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:89 old/search/adsense_search.admin.inc:123
-msgid "Search Results Style"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:94 old/search/adsense_search.admin.inc:128
-msgid "Country or territory for Google domain"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:101 old/search/adsense_search.admin.inc:135
-msgid "Width of results area"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:109
-msgid "Ad Location"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:112
-msgid "Top and Right"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:113
-msgid "Top and Bottom"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:114 managed/adsense_managed.module:94 old/oldcode/adsense_oldcode.module:120
-msgid "Right"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:122 managed/adsense_managed.admin.inc:36 old/oldcode/adsense_oldcode.admin.inc:22 old/search/adsense_search.admin.inc:226
-msgid "AdSense Blocks"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:127 managed/adsense_managed.admin.inc:41 old/oldcode/adsense_oldcode.admin.inc:27 old/search/adsense_search.admin.inc:231
-msgid "Number of blocks"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:146 old/search/adsense_search.admin.inc:268
-msgid "Text Box Length must be between !min and !max"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:152
-msgid "Results area width must be between !min and !max"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:156 managed/adsense_managed.admin.inc:58 old/oldcode/adsense_oldcode.admin.inc:168 old/search/adsense_search.admin.inc:273
-msgid "Number of blocks can't be a negative number"
-msgstr ""
-
-#: cse/adsense_cse.module:65
-msgid "AdSense CSE: unconfigured "
-msgstr ""
-
-#: cse/adsense_cse.module:76 managed/adsense_managed.module:61 old/oldcode/adsense_oldcode.module:82 old/search/adsense_search.module:92
-msgid "Block description"
-msgstr ""
-
-#: cse/adsense_cse.module:79 managed/adsense_managed.module:64 old/oldcode/adsense_oldcode.module:85 old/search/adsense_search.module:95
-msgid "A brief description of your block. Used on the <a href=\"@overview\">block overview page</a>."
-msgstr ""
-
-#: cse/adsense_cse.module:86 managed/adsense_managed.module:80
-msgid "Ad Slot ID"
-msgstr ""
-
-#: cse/adsense_cse.module:88
-msgid "This is the provided by the AdSense site in the Search Box Code \"cx\" field. This is usually provided in the form partner-<em>Publisher ID</em>:<em>Slot Id</em>. If the code provided is, for example, partner-pub-0123456789:<strong>abcdef-ghij</strong>, then insert only <strong>abcdef-ghij</strong> here."
-msgstr ""
-
-#: cse/adsense_cse.module:101 managed/adsense_managed.module:109 old/oldcode/adsense_oldcode.module:135 old/search/adsense_search.module:116
-msgid "AdSense unconfigured block. <a href=!url>Click to configure.</a>"
-msgstr ""
-
-#: cse/adsense_cse.module:143 old/search/adsense_search.module:187;45
-msgid "Search"
-msgstr ""
-
-#: cse/adsense_cse.module:144;34
-msgid "Custom Search"
-msgstr ""
-
-#: cse/adsense_cse.module:43 old/search/adsense_search.module:54
-msgid "Search Results"
-msgstr ""
-
-#: cse/adsense_cse.info:0
-msgid "CSE Search"
-msgstr ""
-
-#: cse/adsense_cse.info:0
-msgid "AdSense for Search generator module. This module uses the new Custom Search Engine code created via the Adsense interface."
-msgstr ""
-
-#: help/adsense.help.inc:23
-msgid "Format"
-msgstr ""
-
-#: help/adsense.help.inc:23
-msgid "Description"
-msgstr ""
-
-#: help/adsense.help.inc:23
-msgid "Width"
-msgstr ""
-
-#: help/adsense.help.inc:23
-msgid "Height"
-msgstr ""
-
-#: help/adsense.help.inc:35
-msgid "Custom search help"
-msgstr ""
-
-#: help/adsense.help.inc:38
-msgid "Adsense CSE module (which must be enabled; !link) and refer to its help"
-msgstr ""
-
-#: help/adsense.help.inc:38
-msgid "modules"
-msgstr ""
-
-#: includes/adsense.search_options.inc:17
-msgid "West European Latin-1 (ISO-8859-1)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:18
-msgid "West European Latin-9 (ISO-8859-15)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:19
-msgid "Western (Windows-1252)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:20
-msgid "Nordic Latin-6 (ISO-8859-10)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:21
-msgid "Greek (ISO-8859-7)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:22
-msgid "Japanese (Shift_JIS)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:23
-msgid "Japanese (EUC-JP)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:24
-msgid "Japanese (ISO-2022-JP)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:25
-msgid "Chinese Simplified (GB2312)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:26
-msgid "Chinese Simplified (GB18030)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:27
-msgid "Chinese Traditional (Big5)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:28
-msgid "Korean (EUC-KR)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:29
-msgid "Thai (Windows-874)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:30
-msgid "Vietnamese (Windows-1258)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:31
-msgid "Central European Latin-2 (ISO-8859-2)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:32
-msgid "Central European (Windows-1250)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:33
-msgid "Central European (CP852)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:34
-msgid "Turkish Latin-5 (ISO-8859-9)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:35
-msgid "Turkish (Windows-1254)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:36
-msgid "South European Latin-3 (ISO-8859-3)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:37
-msgid "Hebrew (ISO-8859-8-I)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:38
-msgid "Hebrew (Windows-1255)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:39
-msgid "Arabic (Windows-1256)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:40
-msgid "Cyrillic (ISO-8859-5)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:41
-msgid "Cyrillic (KOI8-R)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:42
-msgid "Cyrillic (Windows-1251)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:43
-msgid "Cyrillic/Russian (CP-866)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:44
-msgid "Unicode (UTF-8)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:56
-msgid "United Kingdom"
-msgstr ""
-
-#: includes/adsense.search_options.inc:57
-msgid "Canada"
-msgstr ""
-
-#: includes/adsense.search_options.inc:58
-msgid "Germany"
-msgstr ""
-
-#: includes/adsense.search_options.inc:59
-msgid "Japan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:60
-msgid "France"
-msgstr ""
-
-#: includes/adsense.search_options.inc:61
-msgid "Australia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:62
-msgid "Italy"
-msgstr ""
-
-#: includes/adsense.search_options.inc:63
-msgid "Austria"
-msgstr ""
-
-#: includes/adsense.search_options.inc:64
-msgid "Switzerland"
-msgstr ""
-
-#: includes/adsense.search_options.inc:65
-msgid "Spain"
-msgstr ""
-
-#: includes/adsense.search_options.inc:66
-msgid "Netherlands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:67
-msgid "Belgium"
-msgstr ""
-
-#: includes/adsense.search_options.inc:68
-msgid "Denmark"
-msgstr ""
-
-#: includes/adsense.search_options.inc:69
-msgid "Sweden"
-msgstr ""
-
-#: includes/adsense.search_options.inc:70
-msgid "Norway"
-msgstr ""
-
-#: includes/adsense.search_options.inc:71
-msgid "Brazil"
-msgstr ""
-
-#: includes/adsense.search_options.inc:72
-msgid "Portugal"
-msgstr ""
-
-#: includes/adsense.search_options.inc:73
-msgid "Finland"
-msgstr ""
-
-#: includes/adsense.search_options.inc:74
-msgid "South Korea"
-msgstr ""
-
-#: includes/adsense.search_options.inc:75
-msgid "China"
-msgstr ""
-
-#: includes/adsense.search_options.inc:76
-msgid "Hong Kong"
-msgstr ""
-
-#: includes/adsense.search_options.inc:77
-msgid "Taiwan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:78
-msgid "Singapore"
-msgstr ""
-
-#: includes/adsense.search_options.inc:79
-msgid "Afghanistan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:80
-msgid "Albania"
-msgstr ""
-
-#: includes/adsense.search_options.inc:81
-msgid "Algeria"
-msgstr ""
-
-#: includes/adsense.search_options.inc:82
-msgid "American Samoa"
-msgstr ""
-
-#: includes/adsense.search_options.inc:83
-msgid "Andorra"
-msgstr ""
-
-#: includes/adsense.search_options.inc:84
-msgid "Angola"
-msgstr ""
-
-#: includes/adsense.search_options.inc:85
-msgid "Anguilla"
-msgstr ""
-
-#: includes/adsense.search_options.inc:86
-msgid "Antarctica"
-msgstr ""
-
-#: includes/adsense.search_options.inc:87
-msgid "Antigua and Barbuda"
-msgstr ""
-
-#: includes/adsense.search_options.inc:88
-msgid "Argentina"
-msgstr ""
-
-#: includes/adsense.search_options.inc:89
-msgid "Armenia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:90
-msgid "Aruba"
-msgstr ""
-
-#: includes/adsense.search_options.inc:91
-msgid "Azerbaijan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:92
-msgid "Bahamas"
-msgstr ""
-
-#: includes/adsense.search_options.inc:93
-msgid "Bahrain"
-msgstr ""
-
-#: includes/adsense.search_options.inc:94
-msgid "Bangladesh"
-msgstr ""
-
-#: includes/adsense.search_options.inc:95
-msgid "Barbados"
-msgstr ""
-
-#: includes/adsense.search_options.inc:96
-msgid "Belarus"
-msgstr ""
-
-#: includes/adsense.search_options.inc:97
-msgid "Belize"
-msgstr ""
-
-#: includes/adsense.search_options.inc:98
-msgid "Benin"
-msgstr ""
-
-#: includes/adsense.search_options.inc:99
-msgid "Bermuda"
-msgstr ""
-
-#: includes/adsense.search_options.inc:100
-msgid "Bhutan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:101
-msgid "Bolivia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:102
-msgid "Bosnia and Herzegovina"
-msgstr ""
-
-#: includes/adsense.search_options.inc:103
-msgid "Botswana"
-msgstr ""
-
-#: includes/adsense.search_options.inc:104
-msgid "Bouvet Island"
-msgstr ""
-
-#: includes/adsense.search_options.inc:105
-msgid "British Indian Ocean Territory"
-msgstr ""
-
-#: includes/adsense.search_options.inc:106
-msgid "Brunei Darussalam"
-msgstr ""
-
-#: includes/adsense.search_options.inc:107
-msgid "Bulgaria"
-msgstr ""
-
-#: includes/adsense.search_options.inc:108
-msgid "Burkina Faso"
-msgstr ""
-
-#: includes/adsense.search_options.inc:109
-msgid "Burundi"
-msgstr ""
-
-#: includes/adsense.search_options.inc:110
-msgid "Cambodia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:111
-msgid "Cameroon"
-msgstr ""
-
-#: includes/adsense.search_options.inc:112
-msgid "Cape Verde"
-msgstr ""
-
-#: includes/adsense.search_options.inc:113
-msgid "Cayman Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:114
-msgid "Central African Republic"
-msgstr ""
-
-#: includes/adsense.search_options.inc:115
-msgid "Chad"
-msgstr ""
-
-#: includes/adsense.search_options.inc:116
-msgid "Chile"
-msgstr ""
-
-#: includes/adsense.search_options.inc:117
-msgid "Christmas Island"
-msgstr ""
-
-#: includes/adsense.search_options.inc:118
-msgid "Cocos (Keeling) Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:119
-msgid "Colombia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:120
-msgid "Comoros"
-msgstr ""
-
-#: includes/adsense.search_options.inc:121
-msgid "Congo"
-msgstr ""
-
-#: includes/adsense.search_options.inc:122
-msgid "Congo,Democratic Republic"
-msgstr ""
-
-#: includes/adsense.search_options.inc:123
-msgid "Cook Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:124
-msgid "Costa Rica"
-msgstr ""
-
-#: includes/adsense.search_options.inc:125
-msgid "Cote d'Ivoire"
-msgstr ""
-
-#: includes/adsense.search_options.inc:126
-msgid "Croatia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:127
-msgid "Cuba"
-msgstr ""
-
-#: includes/adsense.search_options.inc:128
-msgid "Cyprus"
-msgstr ""
-
-#: includes/adsense.search_options.inc:129
-msgid "Czech Republic"
-msgstr ""
-
-#: includes/adsense.search_options.inc:130
-msgid "Djibouti"
-msgstr ""
-
-#: includes/adsense.search_options.inc:131
-msgid "Dominica"
-msgstr ""
-
-#: includes/adsense.search_options.inc:132
-msgid "Dominican Republic"
-msgstr ""
-
-#: includes/adsense.search_options.inc:133
-msgid "East Timor"
-msgstr ""
-
-#: includes/adsense.search_options.inc:134
-msgid "Ecuador"
-msgstr ""
-
-#: includes/adsense.search_options.inc:135
-msgid "Egypt"
-msgstr ""
-
-#: includes/adsense.search_options.inc:136
-msgid "El Salvador"
-msgstr ""
-
-#: includes/adsense.search_options.inc:137
-msgid "Equatorial Guinea"
-msgstr ""
-
-#: includes/adsense.search_options.inc:138
-msgid "Eritrea"
-msgstr ""
-
-#: includes/adsense.search_options.inc:139
-msgid "Estonia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:140
-msgid "Ethiopia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:141
-msgid "Falkland Islands (Malvinas)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:142
-msgid "Faroe Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:143
-msgid "Fiji"
-msgstr ""
-
-#: includes/adsense.search_options.inc:144
-msgid "French Guiana"
-msgstr ""
-
-#: includes/adsense.search_options.inc:145
-msgid "French Polynesia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:146
-msgid "French Southern Territories"
-msgstr ""
-
-#: includes/adsense.search_options.inc:147
-msgid "Gabon"
-msgstr ""
-
-#: includes/adsense.search_options.inc:148
-msgid "Gambia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:149
-msgid "Georgia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:150
-msgid "Ghana"
-msgstr ""
-
-#: includes/adsense.search_options.inc:151
-msgid "Gibraltar"
-msgstr ""
-
-#: includes/adsense.search_options.inc:152
-msgid "Greece"
-msgstr ""
-
-#: includes/adsense.search_options.inc:153
-msgid "Greenland"
-msgstr ""
-
-#: includes/adsense.search_options.inc:154
-msgid "Grenada"
-msgstr ""
-
-#: includes/adsense.search_options.inc:155
-msgid "Guadeloupe"
-msgstr ""
-
-#: includes/adsense.search_options.inc:156
-msgid "Guam"
-msgstr ""
-
-#: includes/adsense.search_options.inc:157
-msgid "Guatemala"
-msgstr ""
-
-#: includes/adsense.search_options.inc:158
-msgid "Guinea"
-msgstr ""
-
-#: includes/adsense.search_options.inc:159
-msgid "Guinea-Bissau"
-msgstr ""
-
-#: includes/adsense.search_options.inc:160
-msgid "Guyana"
-msgstr ""
-
-#: includes/adsense.search_options.inc:161
-msgid "Haiti"
-msgstr ""
-
-#: includes/adsense.search_options.inc:162
-msgid "Heard and McDonald Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:163
-msgid "Honduras"
-msgstr ""
-
-#: includes/adsense.search_options.inc:164
-msgid "Hungary"
-msgstr ""
-
-#: includes/adsense.search_options.inc:165
-msgid "Iceland"
-msgstr ""
-
-#: includes/adsense.search_options.inc:166
-msgid "India"
-msgstr ""
-
-#: includes/adsense.search_options.inc:167
-msgid "Indonesia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:168
-msgid "Iran"
-msgstr ""
-
-#: includes/adsense.search_options.inc:169
-msgid "Iraq"
-msgstr ""
-
-#: includes/adsense.search_options.inc:170
-msgid "Ireland"
-msgstr ""
-
-#: includes/adsense.search_options.inc:171
-msgid "Israel"
-msgstr ""
-
-#: includes/adsense.search_options.inc:172
-msgid "Jamaica"
-msgstr ""
-
-#: includes/adsense.search_options.inc:173
-msgid "Jordan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:174
-msgid "Kazakhstan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:175
-msgid "Kenya"
-msgstr ""
-
-#: includes/adsense.search_options.inc:176
-msgid "Kiribati"
-msgstr ""
-
-#: includes/adsense.search_options.inc:177
-msgid "Kuwait"
-msgstr ""
-
-#: includes/adsense.search_options.inc:178
-msgid "Kyrgyzstan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:179
-msgid "Lao People's Democratic Republic"
-msgstr ""
-
-#: includes/adsense.search_options.inc:180
-msgid "Latvia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:181
-msgid "Lebanon"
-msgstr ""
-
-#: includes/adsense.search_options.inc:182
-msgid "Lesotho"
-msgstr ""
-
-#: includes/adsense.search_options.inc:183
-msgid "Liberia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:184
-msgid "Libya"
-msgstr ""
-
-#: includes/adsense.search_options.inc:185
-msgid "Liechtenstein"
-msgstr ""
-
-#: includes/adsense.search_options.inc:186
-msgid "Lithuania"
-msgstr ""
-
-#: includes/adsense.search_options.inc:187
-msgid "Luxembourg"
-msgstr ""
-
-#: includes/adsense.search_options.inc:188
-msgid "Macau"
-msgstr ""
-
-#: includes/adsense.search_options.inc:189
-msgid "Macedonia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:190
-msgid "Madagascar"
-msgstr ""
-
-#: includes/adsense.search_options.inc:191
-msgid "Malawi"
-msgstr ""
-
-#: includes/adsense.search_options.inc:192
-msgid "Malaysia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:193
-msgid "Maldives"
-msgstr ""
-
-#: includes/adsense.search_options.inc:194
-msgid "Mali"
-msgstr ""
-
-#: includes/adsense.search_options.inc:195
-msgid "Malta"
-msgstr ""
-
-#: includes/adsense.search_options.inc:196
-msgid "Marshall Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:197
-msgid "Martinique"
-msgstr ""
-
-#: includes/adsense.search_options.inc:198
-msgid "Mauritania"
-msgstr ""
-
-#: includes/adsense.search_options.inc:199
-msgid "Mauritius"
-msgstr ""
-
-#: includes/adsense.search_options.inc:200
-msgid "Mayotte"
-msgstr ""
-
-#: includes/adsense.search_options.inc:201
-msgid "Mexico"
-msgstr ""
-
-#: includes/adsense.search_options.inc:202
-msgid "Micronesia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:203
-msgid "Moldova"
-msgstr ""
-
-#: includes/adsense.search_options.inc:204
-msgid "Monaco"
-msgstr ""
-
-#: includes/adsense.search_options.inc:205
-msgid "Mongolia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:206
-msgid "Montserrat"
-msgstr ""
-
-#: includes/adsense.search_options.inc:207
-msgid "Morocco"
-msgstr ""
-
-#: includes/adsense.search_options.inc:208
-msgid "Mozambique"
-msgstr ""
-
-#: includes/adsense.search_options.inc:209
-msgid "Myanmar"
-msgstr ""
-
-#: includes/adsense.search_options.inc:210
-msgid "Namibia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:211
-msgid "Nauru"
-msgstr ""
-
-#: includes/adsense.search_options.inc:212
-msgid "Nepal"
-msgstr ""
-
-#: includes/adsense.search_options.inc:213
-msgid "Netherlands Antilles"
-msgstr ""
-
-#: includes/adsense.search_options.inc:214
-msgid "New Caledonia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:215
-msgid "New Zealand"
-msgstr ""
-
-#: includes/adsense.search_options.inc:216
-msgid "Nicaragua"
-msgstr ""
-
-#: includes/adsense.search_options.inc:217
-msgid "Niger"
-msgstr ""
-
-#: includes/adsense.search_options.inc:218
-msgid "Nigeria"
-msgstr ""
-
-#: includes/adsense.search_options.inc:219
-msgid "Niue"
-msgstr ""
-
-#: includes/adsense.search_options.inc:220
-msgid "Norfolk Island"
-msgstr ""
-
-#: includes/adsense.search_options.inc:221
-msgid "Northern Mariana Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:222
-msgid "North Korea"
-msgstr ""
-
-#: includes/adsense.search_options.inc:223
-msgid "Oman"
-msgstr ""
-
-#: includes/adsense.search_options.inc:224
-msgid "Pakistan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:225
-msgid "Palau"
-msgstr ""
-
-#: includes/adsense.search_options.inc:226
-msgid "Palestinian Territory"
-msgstr ""
-
-#: includes/adsense.search_options.inc:227
-msgid "Panama"
-msgstr ""
-
-#: includes/adsense.search_options.inc:228
-msgid "Papua New Guinea"
-msgstr ""
-
-#: includes/adsense.search_options.inc:229
-msgid "Paraguay"
-msgstr ""
-
-#: includes/adsense.search_options.inc:230
-msgid "Peru"
-msgstr ""
-
-#: includes/adsense.search_options.inc:231
-msgid "Philippines"
-msgstr ""
-
-#: includes/adsense.search_options.inc:232
-msgid "Pitcairn"
-msgstr ""
-
-#: includes/adsense.search_options.inc:233
-msgid "Poland"
-msgstr ""
-
-#: includes/adsense.search_options.inc:234
-msgid "Puerto Rico"
-msgstr ""
-
-#: includes/adsense.search_options.inc:235
-msgid "Qatar"
-msgstr ""
-
-#: includes/adsense.search_options.inc:236
-msgid "Reunion"
-msgstr ""
-
-#: includes/adsense.search_options.inc:237
-msgid "Romania"
-msgstr ""
-
-#: includes/adsense.search_options.inc:238
-msgid "Russian Federation"
-msgstr ""
-
-#: includes/adsense.search_options.inc:239
-msgid "Rwanda"
-msgstr ""
-
-#: includes/adsense.search_options.inc:240
-msgid "Saint Kitts and Nevis"
-msgstr ""
-
-#: includes/adsense.search_options.inc:241
-msgid "Saint Lucia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:242
-msgid "Saint Vincent and the Grenadines"
-msgstr ""
-
-#: includes/adsense.search_options.inc:243
-msgid "Samoa"
-msgstr ""
-
-#: includes/adsense.search_options.inc:244
-msgid "San Marino"
-msgstr ""
-
-#: includes/adsense.search_options.inc:245
-msgid "Sao Tome and Principe"
-msgstr ""
-
-#: includes/adsense.search_options.inc:246
-msgid "Saudi Arabia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:247
-msgid "Senegal"
-msgstr ""
-
-#: includes/adsense.search_options.inc:248
-msgid "Serbia and Montenegro"
-msgstr ""
-
-#: includes/adsense.search_options.inc:249
-msgid "Seychelles"
-msgstr ""
-
-#: includes/adsense.search_options.inc:250
-msgid "Sierra Leone"
-msgstr ""
-
-#: includes/adsense.search_options.inc:251
-msgid "Slovakia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:252
-msgid "Slovenia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:253
-msgid "Solomon Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:254
-msgid "Somalia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:255
-msgid "South Africa"
-msgstr ""
-
-#: includes/adsense.search_options.inc:256
-msgid "South Georgia and The South Sandwich Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:257
-msgid "Sri Lanka"
-msgstr ""
-
-#: includes/adsense.search_options.inc:258
-msgid "St. Helena"
-msgstr ""
-
-#: includes/adsense.search_options.inc:259
-msgid "St. Pierre and Miquelon"
-msgstr ""
-
-#: includes/adsense.search_options.inc:260
-msgid "Sudan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:261
-msgid "Suriname"
-msgstr ""
-
-#: includes/adsense.search_options.inc:262
-msgid "Svalbard and Jan Mayen Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:263
-msgid "Swaziland"
-msgstr ""
-
-#: includes/adsense.search_options.inc:264
-msgid "Syria"
-msgstr ""
-
-#: includes/adsense.search_options.inc:265
-msgid "Tajikistan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:266
-msgid "Tanzania"
-msgstr ""
-
-#: includes/adsense.search_options.inc:267
-msgid "Thailand"
-msgstr ""
-
-#: includes/adsense.search_options.inc:268
-msgid "Togo"
-msgstr ""
-
-#: includes/adsense.search_options.inc:269
-msgid "Tokelau"
-msgstr ""
-
-#: includes/adsense.search_options.inc:270
-msgid "Tonga"
-msgstr ""
-
-#: includes/adsense.search_options.inc:271
-msgid "Trinidad and Tobago"
-msgstr ""
-
-#: includes/adsense.search_options.inc:272
-msgid "Tunisia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:273
-msgid "Turkey"
-msgstr ""
-
-#: includes/adsense.search_options.inc:274
-msgid "Turkmenistan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:275
-msgid "Turks and Caicos Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:276
-msgid "Tuvalu"
-msgstr ""
-
-#: includes/adsense.search_options.inc:277
-msgid "Uganda"
-msgstr ""
-
-#: includes/adsense.search_options.inc:278
-msgid "Ukraine"
-msgstr ""
-
-#: includes/adsense.search_options.inc:279
-msgid "United Arab Emirates"
-msgstr ""
-
-#: includes/adsense.search_options.inc:280
-msgid "United States Minor Outlying Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:281
-msgid "Uruguay"
-msgstr ""
-
-#: includes/adsense.search_options.inc:282
-msgid "Uzbekistan"
-msgstr ""
-
-#: includes/adsense.search_options.inc:283
-msgid "Vanuatu"
-msgstr ""
-
-#: includes/adsense.search_options.inc:284
-msgid "Vatican"
-msgstr ""
-
-#: includes/adsense.search_options.inc:285
-msgid "Venezuela"
-msgstr ""
-
-#: includes/adsense.search_options.inc:286
-msgid "Viet Nam"
-msgstr ""
-
-#: includes/adsense.search_options.inc:287
-msgid "Virgin Islands (British)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:288
-msgid "Virgin Islands (U.S.)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:289
-msgid "Wallis and Futuna Islands"
-msgstr ""
-
-#: includes/adsense.search_options.inc:290
-msgid "Western Sahara"
-msgstr ""
-
-#: includes/adsense.search_options.inc:291
-msgid "Yemen"
-msgstr ""
-
-#: includes/adsense.search_options.inc:292
-msgid "Zambia"
-msgstr ""
-
-#: includes/adsense.search_options.inc:293
-msgid "Zimbabwe"
-msgstr ""
-
-#: includes/adsense.search_options.inc:294
-msgid "United States"
-msgstr ""
-
-#: includes/adsense.search_options.inc:306
-msgid "Arabic"
-msgstr ""
-
-#: includes/adsense.search_options.inc:307
-msgid "Bulgarian"
-msgstr ""
-
-#: includes/adsense.search_options.inc:308
-msgid "Chinese (simplified)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:309
-msgid "Chinese (traditional)"
-msgstr ""
-
-#: includes/adsense.search_options.inc:310
-msgid "Croatian"
-msgstr ""
-
-#: includes/adsense.search_options.inc:311
-msgid "Czech"
-msgstr ""
-
-#: includes/adsense.search_options.inc:312
-msgid "Danish"
-msgstr ""
-
-#: includes/adsense.search_options.inc:313
-msgid "Dutch"
-msgstr ""
-
-#: includes/adsense.search_options.inc:314
-msgid "English"
-msgstr ""
-
-#: includes/adsense.search_options.inc:315
-msgid "Finnish"
-msgstr ""
-
-#: includes/adsense.search_options.inc:316
-msgid "French"
-msgstr ""
-
-#: includes/adsense.search_options.inc:317
-msgid "German"
-msgstr ""
-
-#: includes/adsense.search_options.inc:318
-msgid "Greek"
-msgstr ""
-
-#: includes/adsense.search_options.inc:319
-msgid "Hebrew"
-msgstr ""
-
-#: includes/adsense.search_options.inc:320
-msgid "Hungarian"
-msgstr ""
-
-#: includes/adsense.search_options.inc:321
-msgid "Indonesian"
-msgstr ""
-
-#: includes/adsense.search_options.inc:322
-msgid "Italian"
-msgstr ""
-
-#: includes/adsense.search_options.inc:323
-msgid "Japanese"
-msgstr ""
-
-#: includes/adsense.search_options.inc:324
-msgid "Korean"
-msgstr ""
-
-#: includes/adsense.search_options.inc:325
-msgid "Norwegian"
-msgstr ""
-
-#: includes/adsense.search_options.inc:326
-msgid "Polish"
-msgstr ""
-
-#: includes/adsense.search_options.inc:327
-msgid "Portuguese"
-msgstr ""
-
-#: includes/adsense.search_options.inc:328
-msgid "Romanian"
-msgstr ""
-
-#: includes/adsense.search_options.inc:329
-msgid "Russian"
-msgstr ""
-
-#: includes/adsense.search_options.inc:330
-msgid "Serbian"
-msgstr ""
-
-#: includes/adsense.search_options.inc:331
-msgid "Slovak"
-msgstr ""
-
-#: includes/adsense.search_options.inc:332
-msgid "Spanish"
-msgstr ""
-
-#: includes/adsense.search_options.inc:333
-msgid "Swedish"
-msgstr ""
-
-#: includes/adsense.search_options.inc:334
-msgid "Thai"
-msgstr ""
-
-#: includes/adsense.search_options.inc:335
-msgid "Turkish"
-msgstr ""
-
-#: includes/adsense.search_options.inc:336
-msgid "Vietnamese"
-msgstr ""
-
-#: managed/adsense_managed.module:46
-msgid "AdSense: unconfigured "
-msgstr ""
-
-#: managed/adsense_managed.module:71 old/oldcode/adsense_oldcode.module:92
-msgid "Ad format"
-msgstr ""
-
-#: managed/adsense_managed.module:74 old/oldcode/adsense_oldcode.module:95
-msgid "Select the ad dimensions you want for this block."
-msgstr ""
-
-#: managed/adsense_managed.module:82
-msgid "This is the Ad Slot ID from your Google Adsense account, such as 0123456789."
-msgstr ""
-
-#: managed/adsense_managed.module:88 old/oldcode/adsense_oldcode.module:114
-msgid "Ad alignment"
-msgstr ""
-
-#: managed/adsense_managed.module:91 old/oldcode/adsense_oldcode.admin.inc:118 old/oldcode/adsense_oldcode.module:75;117 old/search/adsense_search.module:85
-msgid "None"
-msgstr ""
-
-#: managed/adsense_managed.module:92 old/oldcode/adsense_oldcode.module:118
-msgid "Left"
-msgstr ""
-
-#: managed/adsense_managed.module:93 old/oldcode/adsense_oldcode.module:119
-msgid "Centered"
-msgstr ""
-
-#: managed/adsense_managed.module:96 old/oldcode/adsense_oldcode.module:122
-msgid "Select the horizontal alignment of the ad within the block."
-msgstr ""
-
-#: managed/adsense_managed.module:22
-msgid "Managed Ads"
-msgstr ""
-
-#: managed/adsense_managed.info:0
-msgid "Managed ads"
-msgstr ""
-
-#: managed/adsense_managed.info:0
-msgid "Ad unit generator module using the new managed ads feature available in the Google AdSense site."
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:37
-msgid "Ad groups"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:50
-msgid "Group @group attributes"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:55 old/search/adsense_search.admin.inc:168
-msgid "Title"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:59
-msgid "Title of the group."
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:64
-msgid "Ad type"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:66 old/search/adsense_search.admin.inc:184
-msgid "Text"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-msgid "Image"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-msgid "Both"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:76 old/search/adsense_search.admin.inc:89
-msgid "Text color"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:84
-msgid "Border color"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:100
-msgid "Title color"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:108
-msgid "URL color"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:116
-msgid "Alternate URL color"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:118
-msgid "Alternate URL"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:118
-msgid "Alternate color"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:123
-msgid "Alternate info"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:127
-msgid "Enter either 6 letter alternate color code, or alternate URL to use"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:132
-msgid "Rounded corners"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:135
-msgid "Choose type of round corners"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:143 old/search/adsense_search.admin.inc:241
-msgid "Custom channels"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:144 old/search/adsense_search.admin.inc:242
-msgid "Enter up to !channels custom channels that you have configured in Google AdSense. If you are not using custom channels, or you are only using URL channels, then leave this empty."
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:150 old/search/adsense_search.admin.inc:248
-msgid "Custom channel ID"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:184 old/search/adsense_search.admin.inc:291
-msgid "Color must be between #000000 and #FFFFFF"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.module:58
-msgid "AdSense old code: unconfigured "
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.module:100
-msgid "Group"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.module:107 old/search/adsense_search.module:102
-msgid "Channel"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.module:34
-msgid "Old Code Ads"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.info:0
-msgid "Ads (old)"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.info:0
-msgid "Ad unit generator module using the old format code in which the colours are specified in the ad's JavaScript."
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:37
-msgid "Required parameters"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:42
-msgid "Google AdSense client ID profile field"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:46
-msgid "This is the profile field that holds the AdSense Client ID for the site owner as well as (optionally) for site users who participate in revenue sharing. You must enabled the profile module and create a new field for this."
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:53
-msgid "Revenue sharing percentage"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:60
-msgid "Percentage of node views going to author"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:67
-msgid "Percentage of node views going to author with the following roles"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:68
-msgid "When the author belongs to one or more roles, the percentage of node views using his AdSense Client ID will be the maximum between the author value and the following settings for each role."
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:86
-msgid "Percentage of node views going to user who referred the author"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:96
-msgid "Content types"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:122
-msgid "Role"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:122
-msgid "Percentage"
-msgstr ""
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:56 ;22
-msgid "Revenue Sharing"
-msgstr ""
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:57 
-msgid "Drupal page cache is enabled."
-msgstr ""
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:58 
-msgid "This causes conflicts with revenue sharing, since the pages are stored in the cache and are not dynamically generated. If you experience issues with revenue sharing, then disable the page cache."
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-msgid "Revenue sharing basic (old)"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-msgid "Revenue sharing for the Google Adsense module"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:26
-msgid "Allows users to search the web or the specific site(s) of your choice. Enter the site's URL without the last '/'"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:55
-msgid "Use SafeSearch"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:64
-msgid "Google Logo"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:65
-msgid "Logo above text box"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:66
-msgid "\"Google Search\" on button"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:72
-msgid "Search button below text box"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:99
-msgid "Site Language"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:113
-msgid "Length of text box (Max 64)"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:145
-msgid "Color attributes"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:160
-msgid "Border"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:176
-msgid "Background"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:192
-msgid "URL"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:200
-msgid "Visited URL"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:208
-msgid "Light URL"
-msgstr ""
-
-#: old/search/adsense_search.admin.inc:216
-msgid "Logo Background"
-msgstr ""
-
-#: old/search/adsense_search.results.inc:17
-msgid "Search keywords: %keyword"
-msgstr ""
-
-#: old/search/adsense_search.module:76
-msgid "AdSense Search: unconfigured "
-msgstr ""
-
-#: old/search/adsense_search.module:210
-msgid "Google Search"
-msgstr ""
-
-#: old/search/adsense_search.info:0
-msgid "Search (old)"
-msgstr ""
-
-#: old/search/adsense_search.info:0
-msgid "AdSense for Search generator module. This module uses the 'old' code in which the user can select to search the entire Web or 1 to 3 user-defined domains."
-msgstr ""
-
Index: translations/de.po
===================================================================
RCS file: translations/de.po
diff -N translations/de.po
--- translations/de.po	20 Aug 2010 17:25:23 -0000	1.1.2.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,2180 +0,0 @@
-# $Id: de.po,v 1.1.2.1 2010/08/20 17:25:23 jcnventura Exp $
-#
-# German translation of Drupal (general)
-# Copyright 2010 Fleshgrinder <fleshgrinder@gmx.at>
-# Generated from files:
-#  adsense.admin.inc,v 1.1.2.6 2010/01/11 13:20:47 jcnventura
-#  adsense_cse.admin.inc,v 1.1.2.5 2009/05/13 00:04:20 jcnventura
-#  adsense_managed.admin.inc,v 1.1.2.2 2008/09/11 22:52:00 jcnventura
-#  revenue_sharing_basic.admin.inc,v 1.3.2.5 2009/05/12 23:37:34 jcnventura
-#  adsense.module,v 1.68.2.21 2009/09/01 16:30:19 jcnventura
-#  adsense_search.results.inc,v 1.1.2.3 2009/03/31 14:41:02 jcnventura
-#  adsense.info,v 1.6 2008/07/21 00:21:33 kbahey
-#  adsense_click.info,v 1.2.2.1 2008/12/19 01:32:37 jcnventura
-#  adsense_cse.info,v 1.1 2008/07/21 00:21:34 kbahey
-#  adsense_managed.info,v 1.1 2008/07/21 00:21:34 kbahey
-#  adsense_oldcode.info,v 1.1.2.1 2008/08/11 02:19:15 jcnventura
-#  revenue_sharing_basic.info,v 1.1.2.3 2009/05/12 23:37:34 jcnventura
-#  adsense_search.info,v 1.1 2008/07/21 00:21:34 kbahey
-#  adsense_click.admin.inc,v 1.1.4.2 2008/12/19 01:32:37 jcnventura
-#  adsense_click.logs.inc,v 1.1.4.2 2008/12/19 01:32:37 jcnventura
-#  adsense_click.module,v 1.2.2.11 2010/01/11 12:29:36 jcnventura
-#  adsense_search.admin.inc,v 1.1.2.3 2009/05/13 00:04:20 jcnventura
-#  adsense_oldcode.admin.inc,v 1.1.2.2 2008/09/11 22:52:00 jcnventura
-#  adsense_managed.module,v 1.1.2.9 2010/01/11 12:20:30 jcnventura
-#  adsense_oldcode.module,v 1.1.2.9 2010/01/11 12:20:30 jcnventura
-#  adsense_cse.module,v 1.1.2.10 2010/01/11 12:20:30 jcnventura
-#  adsense_search.module,v 1.1.2.13 2010/07/07 21:49:19 jcnventura
-#  adsense.help.inc,v 1.1.2.9 2009/09/01 16:28:18 jcnventura
-#  adsense.search_options.inc,v 1.1.2.1 2008/08/10 22:26:34 jcnventura
-#  revenue_sharing_basic.module,v 1.4.2.12 2009/05/19 21:25:49 jcnventura
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PROJECT VERSION\n"
-"POT-Creation-Date: 2010-07-25 02:34+0200\n"
-"PO-Revision-Date: 2010-07-25 02:34+0200\n"
-"Last-Translator: Fleshgrinder <fleshgrinder@gmx.at>\n"
-"Language-Team: German\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"
-
-#: adsense.admin.inc:25;153 cse/adsense_cse.admin.inc:26 managed/adsense_managed.admin.inc:24 old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:25
-msgid "Help and instructions"
-msgstr "Hilfe und Anweisungen"
-
-#: adsense.admin.inc:37
-msgid "Visibility"
-msgstr "Sichtbarkeit"
-
-#: adsense.admin.inc:42
-msgid "Show AdSense on specific pages"
-msgstr "Zeige AdSense auf spezifischen Seiten"
-
-#: adsense.admin.inc:44
-msgid "Show on every page except the listed pages."
-msgstr "Auf allen Seiten auÃŸer den aufgelisteten Seiten anzeigen."
-
-#: adsense.admin.inc:44
-msgid "Show on only the listed pages."
-msgstr "Nur auf den aufgelisteten Seiten anzeigen."
-
-#: adsense.admin.inc:51
-msgid "Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are  %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page."
-msgstr ""
-"Eine Seite pro Zeile als Drupal-Pfad. Das '*' Zeichen dient als "
-"Wildcard (Platzhalter). %blog als Beispiel steht fÃ¼r die Blog-Seite "
-"wÃ¤hrend %blog-wildcard fÃ¼r alle persÃ¶nlichen Blogs steht. %front "
-"ist die Startseite."
-
-#: adsense.admin.inc:62
-msgid "Show if the following PHP code returns <code>TRUE</code> (PHP-mode, experts only)."
-msgstr ""
-"Nur anzeigen, wenn der folgende PHP-Code <code>TRUE</code> zurÃ¼ckgibt "
-"(PHP-Modus fÃ¼r Experten)."
-
-#: adsense.admin.inc:63
-msgid "If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can break your Drupal site."
-msgstr ""
-"Falls der PHP-Modus gewÃ¤hlt ist, geben Sie bitte PHP-Code zwischen "
-"%php ein. Beachten Sie, dass das AusfÃ¼hren eines fehlerhaften "
-"PHP-Codes Ihre Drupal-Website zerstÃ¶ren kann."
-
-#: adsense.admin.inc:70
-msgid "Advanced options"
-msgstr "Erweiterte Einstellungen"
-
-#: adsense.admin.inc:75
-msgid "Enable test mode?"
-msgstr "Testmodus aktivieren?"
-
-#: adsense.admin.inc:77
-msgid "This enables you to test the AdSense module settings. This can be useful in some situations: for example, testing whether revenue sharing is working properly or not without having to display real ads on your site. It is best to test this after you log out."
-msgstr ""
-"Dies ermÃ¶glicht das Testen der AdSense Moduleinstellungen. Dies "
-"kann in manchen Situationen sehr hilfreich sein: zum Beispiel zum "
-"testen ob die Umsatzteilung (<em>Revenue sharing</em>) korrekt "
-"funktioniert, ohne reale Anzeigen auf der Website ausspielen zu "
-"mÃ¼ssen. Es empfiehlt sich diese Einstellung durch abmelden zu "
-"testen."
-
-#: adsense.admin.inc:82
-msgid "Disable Google AdSense ads?"
-msgstr "Google AdSense Anzeigen deaktivieren?"
-
-#: adsense.admin.inc:84
-msgid "This disables all display of Google AdSense ads from your web site. This is useful in certain situations, such as site upgrades, or if you make a copy of the site for development and test purposes."
-msgstr ""
-"Dies deaktiviert alle Google AdSense Anzeigen auf der Website. "
-"Dies ist in manchen Situationen praktisch, wie zum Beispiel beim "
-"Einspielen von Aktualisierungen, oder beim Erstellen von Sicherungen."
-
-#: adsense.admin.inc:89
-msgid "Placeholder when ads are disabled?"
-msgstr "Platzhalter ausspielen bei deaktivierten Anzeigen?"
-
-#: adsense.admin.inc:91
-msgid "This causes an empty box to be displayed in place of the ads when they are disabled."
-msgstr ""
-"Diese Option fÃ¼hrt dazu, dass eine leere Box als Platzhalter fÃ¼r die "
-"deaktivierten Anzeigen angezeigt wird."
-
-#: adsense.admin.inc:96
-msgid "Placeholder text to display"
-msgstr "Platzhaltertext der angezeigt werden soll"
-
-#: adsense.admin.inc:99
-msgid "Enter any text to display as a placeholder when ads are disabled."
-msgstr ""
-"Geben Sie jeden beliebigen Text ein den Sie als Platzhaltertext "
-"verwenden wollen wenn die Anzeigen deaktiviert sind."
-
-#: adsense.admin.inc:104
-msgid "Enable AdSense section targeting?"
-msgstr "AdSense Abschnittsplanung aktivieren?"
-
-#: adsense.admin.inc:106
-msgid "This better targets Google ads to the teaser and body of nodes."
-msgstr "Dies optimiert Google AdSense Anzeigen fÃ¼r Nodes."
-
-#: adsense.admin.inc:113
-msgid "Undocumented options"
-msgstr "Undokumentierte Optionen"
-
-#: adsense.admin.inc:114
-msgid "Warning: Use of these options is AT YOUR OWN RISK. Google will never generate an ad with any of these options, so using one of them is a violation of Google AdSense's Terms and Conditions. USE OF THESE OPTIONS MAY RESULT IN GETTING BANNED FROM THE PROGRAM. You may lose all the revenue accumulated in your account. FULL RESPONSABILITY FOR THE USE OF THESE OPTIONS IS YOURS. In other words, don't complain to the authors about getting banned, even if using one of these options was provided as a solution to a reported problem."
-msgstr ""
-"Warnung: Die Verwendung dieser Optionen geschieht auf Ihr eigenes "
-"Risiko. Google wÃ¼rde niemals eine Anzeige mit auch nur einer dieser "
-"Optionen generieren. Die Verwendung dieser Optionen stellt also "
-"eine Verletzung der allgemeinen Google AdSense GeschÃ¤ftsbedingungen "
-"dar. Die Verwendung dieser Optionen kann im Extremfall zum Ausschluss "
-"aus dem Google AdSense Programm fÃ¼hren. Sie verlieren mÃ¶glicherweise "
-"alle UmsÃ¤tze die Sie bereits mit Ihrem Konto erwirtschaftet haben. "
-"Die volle Verantwortung im Umgang mit diesen Optionen liegt bei Ihnen."
-" Mit anderen Worten, beschwehren Sie sich nicht bei den Autoren "
-"dieses Drupal-Moduls sollten Sie gesperrt werden, selbst wenn eine "
-"Aktivierung einer dieser Optionen als LÃ¶sung fÃ¼r ein Problem "
-"berichtet wurde."
-
-#: adsense.admin.inc:121
-msgid "I agree"
-msgstr "Ich stimme zu"
-
-#: adsense.admin.inc:126
-msgid "Use Google's AdSense test option?"
-msgstr "Google AdSense Testoptionen verwenden?"
-
-#: adsense.admin.inc:128
-msgid "With this option set, Google will not count any clicks or page impressions. Revenue is not generated. Make sure that you disable this option in production servers. [!statement]"
-msgstr ""
-"Wird diese Option aktiviert zÃ¤hlt Google keinerlei Klicks oder Seiten "
-"Impressionen. Es wird kein Umsatz generiert. Stellen Sie sicher, dass "
-"diese Option auf dem Produktivserver deaktiviert ist. [!statement]"
-
-#: adsense.admin.inc:128
-msgid "Unofficial statement"
-msgstr "Inoffizielle Aussage"
-
-#: adsense.admin.inc:133
-msgid "Language to display ads"
-msgstr "Anzeigensprache"
-
-#: adsense.admin.inc:163
-msgid "Site Google AdSense Publisher ID"
-msgstr "Google AdSense Herausgeber ID"
-
-#: adsense.admin.inc:166
-msgid "This is the Google AdSense Publisher ID for the site owner. It is used if no other ID is suitable. Get this in your Google Adsense account. It should be similar to %id."
-msgstr ""
-"Dies ist die Google AdSense Herausgeber-ID fÃ¼r den Websitebesitzer. "
-"Sie findet Verwendung wenn keine andere ID passt. Sie erhalten diese "
-"in Ihrem Google AdSense Konto. Die ID sollte dieser %id entsprechen."
-
-#: adsense.admin.inc:173
-msgid "Publisher ID module"
-msgstr "Herausgeber ID-Modul"
-
-#: adsense.module:54
-msgid "4-links 120x90"
-msgstr "4 Links 120x90"
-
-#: adsense.module:55
-msgid "4-links 160x90"
-msgstr "4 Links 160x90"
-
-#: adsense.module:56
-msgid "4-links 180x90"
-msgstr "4 Links 180x90"
-
-#: adsense.module:57
-msgid "4-links 200x90"
-msgstr "4 Links 200x90"
-
-#: adsense.module:58
-msgid "4-links 468x15"
-msgstr "4 Links 468x15"
-
-#: adsense.module:59
-msgid "4-links 728x15"
-msgstr "4 Links 728x15"
-
-#: adsense.module:60
-msgid "5-links 120x90"
-msgstr "5 Links 120x90"
-
-#: adsense.module:61
-msgid "5-links 160x90"
-msgstr "5 Links 160x90"
-
-#: adsense.module:62
-msgid "5-links 180x90"
-msgstr "5 Links 180x90"
-
-#: adsense.module:63
-msgid "5-links 200x90"
-msgstr "5 Links 200x90"
-
-#: adsense.module:64
-msgid "5-links 468x15"
-msgstr "5 Links 468x15"
-
-#: adsense.module:65
-msgid "5-links 728x15"
-msgstr "5 Links 728x15"
-
-#: adsense.module:66
-msgid "Vertical banner"
-msgstr "Vertikaler Banner"
-
-#: adsense.module:67
-msgid "Skyscraper"
-msgstr "Skyscraper"
-
-#: adsense.module:68
-msgid "Button"
-msgstr "Button"
-
-#: adsense.module:69
-msgid "Wide Skyscraper"
-msgstr "Wide Skyscraper"
-
-#: adsense.module:70
-msgid "Small Rectangle"
-msgstr "Small Rectangle"
-
-#: adsense.module:71
-msgid "Small Square"
-msgstr "Small Square"
-
-#: adsense.module:72
-msgid "Half Banner"
-msgstr "Half Banner"
-
-#: adsense.module:73
-msgid "Square"
-msgstr "Square"
-
-#: adsense.module:74
-msgid "Medium Rectangle"
-msgstr "Medium Rectangle"
-
-#: adsense.module:75
-msgid "Large Rectangle"
-msgstr "Large Rectangle"
-
-#: adsense.module:76
-msgid "Banner"
-msgstr "Banner"
-
-#: adsense.module:77
-msgid "Leaderboard"
-msgstr "Leaderboard"
-
-#: adsense.module:85
-msgid "AdSense for Search"
-msgstr "AdSense fÃ¼r die Suche"
-
-#: adsense.module:179
-msgid "AdSense tag"
-msgstr "AdSense-Tag"
-
-#: adsense.module:183
-msgid "Substitutes an AdSense special tag with an ad."
-msgstr "Ersetzt das AdSense Spezialtag mit einer Anzeige."
-
-#: adsense.module:219
-msgid "The HTML corrector filter has a bug that causes problems with the use of the AdSense tag. Disabling the HTML corrector filter is recommended."
-msgstr ""
-"Der HTML-Korrekturfilter weist einen Fehler auf, der zu Problemen "
-"in der Verwendung des AdSense-Tags fÃ¼hrt. Die Deaktivierung des "
-"Filters wird deshalb empfohlen."
-
-#: adsense.module:228
-msgid "Use the special tag [adsense:<em>format</em>:<em>slot</em>] or [adsense:<em>format</em>:<em>[group]</em>:<em>[channel]</em><em>[:slot]</em>] or [adsense:block:<em>location</em>] to display Google AdSense ads."
-msgstr ""
-"Verwenden Sie das Spezialtag [adsense:<em>format</em>:<em>slot</em>] "
-"oder [adsense:<em>format</em>:<em>[group]</em>:<em>[channel]</em><em>[:slot]</em>] "
-"oder [adsense:block:<em>location</em>] um Google AdSense Anzeigen "
-"anzuzeigen."
-
-#: (duplicate) adsense.module:162 ;120 old/search/adsense_search.results.inc:17
-msgid "AdSense"
-msgstr "AdSense"
-
-#: (duplicate) adsense.module:163 
-msgid "Publisher ID is not set."
-msgstr "Herausgeber-ID ist nicht vorhanden."
-
-#: (duplicate) adsense.module:164 
-msgid "Please configure it in the <a href=\"@url\">AdSense settings page</a>."
-msgstr ""
-"Konfigurieren Sie es auf der <a href=\"@url\">AdSense Einstellungsseite"
-"</a>."
-
-#: adsense.module:99
-msgid "administer adsense"
-msgstr "AdSense verwalten"
-
-#: adsense.module:99
-msgid "hide adsense"
-msgstr "AdSense verstecken"
-
-#: adsense.module:99
-msgid "use PHP for ad visibility"
-msgstr "PHP fÃ¼r Anzeigensichtbarkeit verwenden"
-
-#: adsense.module:121
-msgid "Configure Google AdSense Ads."
-msgstr "Google AdSense Anzeigen konfigurieren."
-
-#: adsense.module:128
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: adsense.module:133
-msgid "Publisher ID"
-msgstr "Herausgeber-ID"
-
-#: adsense.module:142
-msgid "Site ID"
-msgstr "Website-ID"
-
-#: adsense.info:0
-msgid "AdSense core"
-msgstr "AdSense Kern"
-
-#: adsense.info:0
-msgid "Displays Google AdSense ads on your site to earn revenue. Requires at least one additional ad unit generator module."
-msgstr ""
-"Zeigt Google AdSense Anzeigen auf Ihrer Website an um Umsatz zu "
-"generieren. Voraussetzung ist zumindest ein zusÃ¤tzliches Anzeigen-"
-"Generierungsmodul."
-
-#: adsense.info:0 contrib/adsense_click/adsense_click.info:0 cse/adsense_cse.info:0 managed/adsense_managed.info:0 old/oldcode/adsense_oldcode.info:0 old/revenue_sharing_basic/revenue_sharing_basic.info:0 old/search/adsense_search.info:0
-msgid "Adsense"
-msgstr "AdSense"
-
-#: contrib/adsense_click/adsense_click.admin.inc:15
-msgid "Click tracking"
-msgstr "Klick-Verfolgung"
-
-#: contrib/adsense_click/adsense_click.admin.inc:20
-msgid "Enable AdSense click tracking?"
-msgstr "AdSense Klick-Verfolgung aktivieren?"
-
-#: contrib/adsense_click/adsense_click.admin.inc:22
-msgid "Logs IP and time of <a href=!url>AdSense clicks</a>. This can be very useful in tracking which of your pages generate the most clicks, as well as help if click fraud is suspected."
-msgstr ""
-"Logt IP und Zeit auf <a href=\"!url\">AdSense Klicks</a>. Dies kann "
-"bei der Verfolgung welche Seiten am meisten Klicks generieren sehr "
-"nÃ¼tzlich sein, aber auch um Klickbetrugs VerdachtsfÃ¤lle aufzudecken."
-
-#: contrib/adsense_click/adsense_click.admin.inc:26
-msgid "Enable name resolution of IP addresses?"
-msgstr "NamensauflÃ¶sung von IP-Adressen aktivieren?"
-
-#: contrib/adsense_click/adsense_click.admin.inc:28
-msgid "Display the domain name instead of the IP address. This can slow down the display of the logs page and tie up a PHP process for several seconds. On some hosting providers it may not be available."
-msgstr ""
-"Zeigt den Domainnamen anstelle der IP-Adresse an. Dies kann die "
-"Anzeige der Logseiten verlangsamen und einen PHP-Prozess fÃ¼r mehrere "
-"Sekunden einfrieren. Bei manchen Hostern kann diese Option unter "
-"UmstÃ¤nden nicht zur VerfÃ¼gung stehen."
-
-#: contrib/adsense_click/adsense_click.logs.inc:14
-msgid "Timestamp"
-msgstr "Zeitstempel"
-
-#: contrib/adsense_click/adsense_click.logs.inc:15;46
-msgid "Path"
-msgstr "Pfad"
-
-#: contrib/adsense_click/adsense_click.logs.inc:16
-msgid "IP/Host"
-msgstr "IP/Host"
-
-#: contrib/adsense_click/adsense_click.logs.inc:17
-msgid "Referrer"
-msgstr "Referrer"
-
-#: contrib/adsense_click/adsense_click.logs.inc:47;70 contrib/adsense_click/adsense_click.module:22
-msgid "Clicks"
-msgstr "Klicks"
-
-#: contrib/adsense_click/adsense_click.logs.inc:48
-msgid "Last"
-msgstr "Zuletzt"
-
-#: contrib/adsense_click/adsense_click.logs.inc:69
-msgid "Day"
-msgstr "Tag"
-
-#: contrib/adsense_click/adsense_click.module:66
-msgid "view clicks"
-msgstr "Klicks ansehen"
-
-#: contrib/adsense_click/adsense_click.module:23
-msgid "Track the clicks on Adsense ads."
-msgstr "Klicks auf AdSense Anzeigen verfolgen."
-
-#: contrib/adsense_click/adsense_click.module:32
-msgid "AdSense clicks"
-msgstr "AdSense-Klicks"
-
-#: contrib/adsense_click/adsense_click.module:33
-msgid "Track AdSense clicks."
-msgstr "AdSense-Klicks verfolgen."
-
-#: contrib/adsense_click/adsense_click.module:40
-msgid "Top pages"
-msgstr "Top-Seiten"
-
-#: contrib/adsense_click/adsense_click.module:47
-msgid "By day"
-msgstr "Bei Tag"
-
-#: contrib/adsense_click/adsense_click.info:0
-msgid "AdSense Click Tracking"
-msgstr "AdSense-Klick Verfolgung"
-
-#: contrib/adsense_click/adsense_click.info:0
-msgid "Tracks clicks to Google Adsense"
-msgstr "Verfolgt Google AdSense-Klicks"
-
-#: cse/adsense_cse.admin.inc:38 old/search/adsense_search.admin.inc:25
-msgid "Search Box Options"
-msgstr "Suchbox Optionen"
-
-#: cse/adsense_cse.admin.inc:43 old/search/adsense_search.admin.inc:61
-msgid "Logo Type"
-msgstr "Logotyp"
-
-#: cse/adsense_cse.admin.inc:46
-msgid "Watermark on search box (requires JavaScript)"
-msgstr "Wasserzeichen in der Suchbox (benÃ¶tigt JavaScript)"
-
-#: cse/adsense_cse.admin.inc:47
-msgid "Next to the search box"
-msgstr "Neben der Suchbox"
-
-#: cse/adsense_cse.admin.inc:48
-msgid "Below the search box"
-msgstr "Unter der Suchbox"
-
-#: cse/adsense_cse.admin.inc:54 old/oldcode/adsense_oldcode.admin.inc:92 old/search/adsense_search.admin.inc:78
-msgid "Background color"
-msgstr "Hintergrundfarbe"
-
-#: cse/adsense_cse.admin.inc:57 old/search/adsense_search.admin.inc:81;93
-msgid "White"
-msgstr "WeiÃŸ"
-
-#: cse/adsense_cse.admin.inc:58 old/search/adsense_search.admin.inc:83
-msgid "Gray"
-msgstr "Grau"
-
-#: cse/adsense_cse.admin.inc:59 old/search/adsense_search.admin.inc:82;92
-msgid "Black"
-msgstr "Schwarz"
-
-#: cse/adsense_cse.admin.inc:65 old/search/adsense_search.admin.inc:106
-msgid "Site Encoding"
-msgstr "Seitenkodierung"
-
-#: cse/adsense_cse.admin.inc:72
-msgid "Text Box Length"
-msgstr "TextboxlÃ¤nge"
-
-#: cse/adsense_cse.admin.inc:80
-msgid "Watermark Language"
-msgstr "Wasserzeichensprache"
-
-#: cse/adsense_cse.admin.inc:89 old/search/adsense_search.admin.inc:123
-msgid "Search Results Style"
-msgstr "Suchergebnisstil"
-
-#: cse/adsense_cse.admin.inc:94 old/search/adsense_search.admin.inc:128
-msgid "Country or territory for Google domain"
-msgstr "Land oder Territorum fÃ¼r Google Domain"
-
-#: cse/adsense_cse.admin.inc:101 old/search/adsense_search.admin.inc:135
-msgid "Width of results area"
-msgstr "Breite der Ergebnisseite"
-
-#: cse/adsense_cse.admin.inc:109
-msgid "Ad Location"
-msgstr "Anzeigenplatzierung"
-
-#: cse/adsense_cse.admin.inc:112
-msgid "Top and Right"
-msgstr "Oben und Rechts"
-
-#: cse/adsense_cse.admin.inc:113
-msgid "Top and Bottom"
-msgstr "Oben und Unten"
-
-#: cse/adsense_cse.admin.inc:114 managed/adsense_managed.module:97 old/oldcode/adsense_oldcode.module:123
-msgid "Right"
-msgstr "Rechts"
-
-#: cse/adsense_cse.admin.inc:122 managed/adsense_managed.admin.inc:36 old/oldcode/adsense_oldcode.admin.inc:22 old/search/adsense_search.admin.inc:226
-msgid "AdSense Blocks"
-msgstr "AdSense-BlÃ¶cke"
-
-#: cse/adsense_cse.admin.inc:127 managed/adsense_managed.admin.inc:41 old/oldcode/adsense_oldcode.admin.inc:27 old/search/adsense_search.admin.inc:231
-msgid "Number of blocks"
-msgstr "Anzahl an BlÃ¶cken"
-
-#: cse/adsense_cse.admin.inc:146 old/search/adsense_search.admin.inc:268
-msgid "Text Box Length must be between !min and !max"
-msgstr "TextboxlÃ¤nge muss zwischen !min und !max liegen"
-
-#: cse/adsense_cse.admin.inc:152
-msgid "Results area width must be between !min and !max"
-msgstr "Ergebnisseitenbreite muss zwischen !min und !max liegen"
-
-#: cse/adsense_cse.admin.inc:156 managed/adsense_managed.admin.inc:58 old/oldcode/adsense_oldcode.admin.inc:168 old/search/adsense_search.admin.inc:273
-msgid "Number of blocks can't be a negative number"
-msgstr "Blockanzahl kann nicht negativ sein"
-
-#: cse/adsense_cse.module:67
-msgid "AdSense CSE: unconfigured "
-msgstr "AdSense CSE: unkonfiguriert "
-
-#: cse/adsense_cse.module:79 managed/adsense_managed.module:64 old/oldcode/adsense_oldcode.module:85 old/search/adsense_search.module:95
-msgid "Block description"
-msgstr "Blockbeschreibung"
-
-#: cse/adsense_cse.module:82 managed/adsense_managed.module:67 old/oldcode/adsense_oldcode.module:88 old/search/adsense_search.module:98
-msgid "A brief description of your block. Used on the <a href=\"@overview\">block overview page</a>."
-msgstr ""
-"Eine kurze Beschreibung des Blocks. Sie wird auf der "
-"<a href=\"@overview\">Block-Verwaltungsseite</a> benutzt."
-
-#: cse/adsense_cse.module:89 managed/adsense_managed.module:83
-msgid "Ad Slot ID"
-msgstr "Anzeigenplatz-ID"
-
-#: cse/adsense_cse.module:91
-msgid "This is the provided by the AdSense site in the Search Box Code \"cx\" field. This is usually provided in the form partner-<em>Publisher ID</em>:<em>Slot Id</em>. If the code provided is, for example, partner-pub-0123456789:<strong>abcdef-ghij</strong>, then insert only <strong>abcdef-ghij</strong> here."
-msgstr ""
-"Dies wird von der AdSense-Seite in dem Suchboxcodefeld \"cx\" "
-"geliefert. In der Regel wird es in der Form Partner-<em>Herausgeber-"
-"ID</em>:<em>Platz-ID</em> ausgeliefert. Wenn der ausgelieferte Code "
-", zum Beispiel, partner-pub-0123456789:<strong>abcdef-ghij</strong> "
-"lautet, dann geben Sie hier lediglich <strong>abcdef-ghij</strong> "
-"ein."
-
-#: cse/adsense_cse.module:104 managed/adsense_managed.module:112 old/oldcode/adsense_oldcode.module:138 old/search/adsense_search.module:119
-msgid "AdSense unconfigured block. <a href=!url>Click to configure.</a>"
-msgstr "Unkonfigurierter AdSense-Block. <a href=!url>Klicken zum konfigurieren.</a>"
-
-#: cse/adsense_cse.module:146 old/search/adsense_search.module:190;45
-msgid "Search"
-msgstr "Suchen"
-
-#: cse/adsense_cse.module:147;34
-msgid "Custom Search"
-msgstr "Benutzerdefinierte Suche"
-
-#: cse/adsense_cse.module:43 old/search/adsense_search.module:54
-msgid "Search Results"
-msgstr "Suchergebnisse"
-
-#: cse/adsense_cse.info:0
-msgid "CSE Search"
-msgstr "CSE-Suche"
-
-#: cse/adsense_cse.info:0
-msgid "AdSense for Search generator module. This module uses the new Custom Search Engine code created via the Adsense interface."
-msgstr ""
-"AdSense fÃ¼r Suchgeneratormodul. Dieses Modul verwendet den "
-"maÃŸgeschneiderten Suchmaschinencode der von der AdSense-Schnittstelle "
-"generiert wird."
-
-#: help/adsense.help.inc:23
-msgid "Format"
-msgstr "Format"
-
-#: help/adsense.help.inc:23
-msgid "Description"
-msgstr "Beschreibung"
-
-#: help/adsense.help.inc:23
-msgid "Width"
-msgstr "Breite"
-
-#: help/adsense.help.inc:23
-msgid "Height"
-msgstr "HÃ¶he"
-
-#: help/adsense.help.inc:35
-msgid "Custom search help"
-msgstr "Benutzerdefinierte Suchhilfe"
-
-#: help/adsense.help.inc:38
-msgid "Adsense CSE module (which must be enabled; !link) and refer to its help"
-msgstr ""
-"AdSense-CSE-Modul (welches aktiviert sein muss; !link) und "
-"beziehen Sie sich auf seine Hilfe"
-
-#: help/adsense.help.inc:38
-msgid "modules"
-msgstr "Module"
-
-#: includes/adsense.search_options.inc:17
-msgid "West European Latin-1 (ISO-8859-1)"
-msgstr "WesteuropÃ¤isch Latin-1 (ISO-8859-1)"
-
-#: includes/adsense.search_options.inc:18
-msgid "West European Latin-9 (ISO-8859-15)"
-msgstr "WesteuropÃ¤isch Latin-9 (ISO-8859-15)"
-
-#: includes/adsense.search_options.inc:19
-msgid "Western (Windows-1252)"
-msgstr "WesteuropÃ¤isch (Windows-1252)"
-
-#: includes/adsense.search_options.inc:20
-msgid "Nordic Latin-6 (ISO-8859-10)"
-msgstr "Nordisch Latin-6 (ISO-8859-10)"
-
-#: includes/adsense.search_options.inc:21
-msgid "Greek (ISO-8859-7)"
-msgstr "Griechisch (ISO-8859-7)"
-
-#: includes/adsense.search_options.inc:22
-msgid "Japanese (Shift_JIS)"
-msgstr "Japanisch (Shift_JIS)"
-
-#: includes/adsense.search_options.inc:23
-msgid "Japanese (EUC-JP)"
-msgstr "Japanisch (EUC-JP)"
-
-#: includes/adsense.search_options.inc:24
-msgid "Japanese (ISO-2022-JP)"
-msgstr "Japanisch (ISO-2022-JP)"
-
-#: includes/adsense.search_options.inc:25
-msgid "Chinese Simplified (GB2312)"
-msgstr "Chinesisch vereinfacht (GB2312)"
-
-#: includes/adsense.search_options.inc:26
-msgid "Chinese Simplified (GB18030)"
-msgstr "Chinesisch vereinfacht (GB18030)"
-
-#: includes/adsense.search_options.inc:27
-msgid "Chinese Traditional (Big5)"
-msgstr "Chinesisch traditionell (Big5)"
-
-#: includes/adsense.search_options.inc:28
-msgid "Korean (EUC-KR)"
-msgstr "Koreanisch (EUC-KR)"
-
-#: includes/adsense.search_options.inc:29
-msgid "Thai (Windows-874)"
-msgstr "Thai (Windows-874)"
-
-#: includes/adsense.search_options.inc:30
-msgid "Vietnamese (Windows-1258)"
-msgstr "Vietnamesisch (Windows-1258)"
-
-#: includes/adsense.search_options.inc:31
-msgid "Central European Latin-2 (ISO-8859-2)"
-msgstr "ZentraleuropÃ¤isch Latin-2 (ISO-8859-2)"
-
-#: includes/adsense.search_options.inc:32
-msgid "Central European (Windows-1250)"
-msgstr "ZentraleuropÃ¤isch (Windows-1250)"
-
-#: includes/adsense.search_options.inc:33
-msgid "Central European (CP852)"
-msgstr "ZentraleuropÃ¤isch (CP852)"
-
-#: includes/adsense.search_options.inc:34
-msgid "Turkish Latin-5 (ISO-8859-9)"
-msgstr "TÃ¼rkisch Latin-5 (ISO-8859-9)"
-
-#: includes/adsense.search_options.inc:35
-msgid "Turkish (Windows-1254)"
-msgstr "TÃ¼rkisch (Windows-1254)"
-
-#: includes/adsense.search_options.inc:36
-msgid "South European Latin-3 (ISO-8859-3)"
-msgstr "SÃ¼deuropÃ¤isch Latin-3 (ISO-8859-3)"
-
-#: includes/adsense.search_options.inc:37
-msgid "Hebrew (ISO-8859-8-I)"
-msgstr "HebrÃ¤isch (ISO-8859-8-I)"
-
-#: includes/adsense.search_options.inc:38
-msgid "Hebrew (Windows-1255)"
-msgstr "HebrÃ¤isch (Windows-1255)"
-
-#: includes/adsense.search_options.inc:39
-msgid "Arabic (Windows-1256)"
-msgstr "Arabisch (Windows-1256)"
-
-#: includes/adsense.search_options.inc:40
-msgid "Cyrillic (ISO-8859-5)"
-msgstr "Kyrillisch (ISO-8859-5)"
-
-#: includes/adsense.search_options.inc:41
-msgid "Cyrillic (KOI8-R)"
-msgstr "Kyrillisch (KOI8-R)"
-
-#: includes/adsense.search_options.inc:42
-msgid "Cyrillic (Windows-1251)"
-msgstr "Kyrillisch (Windows-1251)"
-
-#: includes/adsense.search_options.inc:43
-msgid "Cyrillic/Russian (CP-866)"
-msgstr "Kyrillisch/Russisch (CP-866)"
-
-#: includes/adsense.search_options.inc:44
-msgid "Unicode (UTF-8)"
-msgstr "Unicode (UTF-8)"
-
-#: includes/adsense.search_options.inc:56
-msgid "United Kingdom"
-msgstr "Vereinigtes KÃ¶nigreich"
-
-#: includes/adsense.search_options.inc:57
-msgid "Canada"
-msgstr "Kanada"
-
-#: includes/adsense.search_options.inc:58
-msgid "Germany"
-msgstr "Deutschland"
-
-#: includes/adsense.search_options.inc:59
-msgid "Japan"
-msgstr "Japan"
-
-#: includes/adsense.search_options.inc:60
-msgid "France"
-msgstr "Frankreich"
-
-#: includes/adsense.search_options.inc:61
-msgid "Australia"
-msgstr "Australien"
-
-#: includes/adsense.search_options.inc:62
-msgid "Italy"
-msgstr "Italien"
-
-#: includes/adsense.search_options.inc:63
-msgid "Austria"
-msgstr "Ã–sterreich"
-
-#: includes/adsense.search_options.inc:64
-msgid "Switzerland"
-msgstr "Schweiz"
-
-#: includes/adsense.search_options.inc:65
-msgid "Spain"
-msgstr "Spanien"
-
-#: includes/adsense.search_options.inc:66
-msgid "Netherlands"
-msgstr "Niederlande"
-
-#: includes/adsense.search_options.inc:67
-msgid "Belgium"
-msgstr "Belgien"
-
-#: includes/adsense.search_options.inc:68
-msgid "Denmark"
-msgstr "DÃ¤nemark"
-
-#: includes/adsense.search_options.inc:69
-msgid "Sweden"
-msgstr "Schweden"
-
-#: includes/adsense.search_options.inc:70
-msgid "Norway"
-msgstr "Norwegen"
-
-#: includes/adsense.search_options.inc:71
-msgid "Brazil"
-msgstr "Brazilien"
-
-#: includes/adsense.search_options.inc:72
-msgid "Portugal"
-msgstr "Portugal"
-
-#: includes/adsense.search_options.inc:73
-msgid "Finland"
-msgstr "Finnland"
-
-#: includes/adsense.search_options.inc:74
-msgid "South Korea"
-msgstr "SÃ¼dkorea"
-
-#: includes/adsense.search_options.inc:75
-msgid "China"
-msgstr "China"
-
-#: includes/adsense.search_options.inc:76
-msgid "Hong Kong"
-msgstr "Hong Kong"
-
-#: includes/adsense.search_options.inc:77
-msgid "Taiwan"
-msgstr "Taiwan"
-
-#: includes/adsense.search_options.inc:78
-msgid "Singapore"
-msgstr "Singapur"
-
-#: includes/adsense.search_options.inc:79
-msgid "Afghanistan"
-msgstr "Afghanistan"
-
-#: includes/adsense.search_options.inc:80
-msgid "Albania"
-msgstr "Albanien"
-
-#: includes/adsense.search_options.inc:81
-msgid "Algeria"
-msgstr "Algerien"
-
-#: includes/adsense.search_options.inc:82
-msgid "American Samoa"
-msgstr "Amerikanisch-Samoa"
-
-#: includes/adsense.search_options.inc:83
-msgid "Andorra"
-msgstr "Andorra"
-
-#: includes/adsense.search_options.inc:84
-msgid "Angola"
-msgstr "Angola"
-
-#: includes/adsense.search_options.inc:85
-msgid "Anguilla"
-msgstr "Anguilla"
-
-#: includes/adsense.search_options.inc:86
-msgid "Antarctica"
-msgstr "Antarktis"
-
-#: includes/adsense.search_options.inc:87
-msgid "Antigua and Barbuda"
-msgstr "Antigua und Barbuda"
-
-#: includes/adsense.search_options.inc:88
-msgid "Argentina"
-msgstr "Argentinien"
-
-#: includes/adsense.search_options.inc:89
-msgid "Armenia"
-msgstr "Armenien"
-
-#: includes/adsense.search_options.inc:90
-msgid "Aruba"
-msgstr "Aruba"
-
-#: includes/adsense.search_options.inc:91
-msgid "Azerbaijan"
-msgstr "Aserbaidschan"
-
-#: includes/adsense.search_options.inc:92
-msgid "Bahamas"
-msgstr "Bahamas"
-
-#: includes/adsense.search_options.inc:93
-msgid "Bahrain"
-msgstr "Bahrain"
-
-#: includes/adsense.search_options.inc:94
-msgid "Bangladesh"
-msgstr "Bangladesch"
-
-#: includes/adsense.search_options.inc:95
-msgid "Barbados"
-msgstr "Barbados"
-
-#: includes/adsense.search_options.inc:96
-msgid "Belarus"
-msgstr "WeiÃŸrussland"
-
-#: includes/adsense.search_options.inc:97
-msgid "Belize"
-msgstr "Belize"
-
-#: includes/adsense.search_options.inc:98
-msgid "Benin"
-msgstr "Benin"
-
-#: includes/adsense.search_options.inc:99
-msgid "Bermuda"
-msgstr "Bermuda"
-
-#: includes/adsense.search_options.inc:100
-msgid "Bhutan"
-msgstr "Bhutan"
-
-#: includes/adsense.search_options.inc:101
-msgid "Bolivia"
-msgstr "Bolivien"
-
-#: includes/adsense.search_options.inc:102
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnien und Herzegowin"
-
-#: includes/adsense.search_options.inc:103
-msgid "Botswana"
-msgstr "Botsuana"
-
-#: includes/adsense.search_options.inc:104
-msgid "Bouvet Island"
-msgstr "Bouvetinsel"
-
-#: includes/adsense.search_options.inc:105
-msgid "British Indian Ocean Territory"
-msgstr "Britisches Territorium im Indischen Ozean"
-
-#: includes/adsense.search_options.inc:106
-msgid "Brunei Darussalam"
-msgstr "Brunei Darussalam"
-
-#: includes/adsense.search_options.inc:107
-msgid "Bulgaria"
-msgstr "Bulgarien"
-
-#: includes/adsense.search_options.inc:108
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#: includes/adsense.search_options.inc:109
-msgid "Burundi"
-msgstr "Burundi"
-
-#: includes/adsense.search_options.inc:110
-msgid "Cambodia"
-msgstr "Kambodscha"
-
-#: includes/adsense.search_options.inc:111
-msgid "Cameroon"
-msgstr "Kamerun"
-
-#: includes/adsense.search_options.inc:112
-msgid "Cape Verde"
-msgstr "Cabo Verde"
-
-#: includes/adsense.search_options.inc:113
-msgid "Cayman Islands"
-msgstr "Kaimaninseln"
-
-#: includes/adsense.search_options.inc:114
-msgid "Central African Republic"
-msgstr "Zentralafrikanische Republik"
-
-#: includes/adsense.search_options.inc:115
-msgid "Chad"
-msgstr "Tschad"
-
-#: includes/adsense.search_options.inc:116
-msgid "Chile"
-msgstr "Chile"
-
-#: includes/adsense.search_options.inc:117
-msgid "Christmas Island"
-msgstr "Weihnachtsinsel"
-
-#: includes/adsense.search_options.inc:118
-msgid "Cocos (Keeling) Islands"
-msgstr "Kokosinseln"
-
-#: includes/adsense.search_options.inc:119
-msgid "Colombia"
-msgstr "Kolumbien"
-
-#: includes/adsense.search_options.inc:120
-msgid "Comoros"
-msgstr "Komoren"
-
-#: includes/adsense.search_options.inc:121
-msgid "Congo"
-msgstr "Kongo"
-
-#: includes/adsense.search_options.inc:122
-msgid "Congo,Democratic Republic"
-msgstr "Kongo, Demokratische Republik"
-
-#: includes/adsense.search_options.inc:123
-msgid "Cook Islands"
-msgstr "Cookinseln"
-
-#: includes/adsense.search_options.inc:124
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: includes/adsense.search_options.inc:125
-msgid "Cote d'Ivoire"
-msgstr "ElfenbeinkÃ¼ste"
-
-#: includes/adsense.search_options.inc:126
-msgid "Croatia"
-msgstr "Kroatien"
-
-#: includes/adsense.search_options.inc:127
-msgid "Cuba"
-msgstr "Kuba"
-
-#: includes/adsense.search_options.inc:128
-msgid "Cyprus"
-msgstr "Zypern"
-
-#: includes/adsense.search_options.inc:129
-msgid "Czech Republic"
-msgstr "Tschechien"
-
-#: includes/adsense.search_options.inc:130
-msgid "Djibouti"
-msgstr "Dschibuti"
-
-#: includes/adsense.search_options.inc:131
-msgid "Dominica"
-msgstr "Dominica"
-
-#: includes/adsense.search_options.inc:132
-msgid "Dominican Republic"
-msgstr "Dominikanische Republik"
-
-#: includes/adsense.search_options.inc:133
-msgid "East Timor"
-msgstr "Osttimor"
-
-#: includes/adsense.search_options.inc:134
-msgid "Ecuador"
-msgstr "Ecuador"
-
-#: includes/adsense.search_options.inc:135
-msgid "Egypt"
-msgstr "Ã„gypten"
-
-#: includes/adsense.search_options.inc:136
-msgid "El Salvador"
-msgstr "El Salvador"
-
-#: includes/adsense.search_options.inc:137
-msgid "Equatorial Guinea"
-msgstr "Ã„quatorialguinea"
-
-#: includes/adsense.search_options.inc:138
-msgid "Eritrea"
-msgstr "Eritrea"
-
-#: includes/adsense.search_options.inc:139
-msgid "Estonia"
-msgstr "Estland"
-
-#: includes/adsense.search_options.inc:140
-msgid "Ethiopia"
-msgstr "Ã„thiopien"
-
-#: includes/adsense.search_options.inc:141
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandinseln (Malwinen)"
-
-#: includes/adsense.search_options.inc:142
-msgid "Faroe Islands"
-msgstr "FÃ¤rÃ¶er"
-
-#: includes/adsense.search_options.inc:143
-msgid "Fiji"
-msgstr "Fidschi"
-
-#: includes/adsense.search_options.inc:144
-msgid "French Guiana"
-msgstr "FranzÃ¶sisch-Guayana"
-
-#: includes/adsense.search_options.inc:145
-msgid "French Polynesia"
-msgstr "FranzÃ¶sisch-Polynesien"
-
-#: includes/adsense.search_options.inc:146
-msgid "French Southern Territories"
-msgstr "FranzÃ¶sische SÃ¼d- und Antarktisgebiete"
-
-#: includes/adsense.search_options.inc:147
-msgid "Gabon"
-msgstr "Gabun"
-
-#: includes/adsense.search_options.inc:148
-msgid "Gambia"
-msgstr "Gambia"
-
-#: includes/adsense.search_options.inc:149
-msgid "Georgia"
-msgstr "Georgien"
-
-#: includes/adsense.search_options.inc:150
-msgid "Ghana"
-msgstr "Ghana"
-
-#: includes/adsense.search_options.inc:151
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#: includes/adsense.search_options.inc:152
-msgid "Greece"
-msgstr "Griechenland"
-
-#: includes/adsense.search_options.inc:153
-msgid "Greenland"
-msgstr "GrÃ¶nland"
-
-#: includes/adsense.search_options.inc:154
-msgid "Grenada"
-msgstr "Grenada"
-
-#: includes/adsense.search_options.inc:155
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#: includes/adsense.search_options.inc:156
-msgid "Guam"
-msgstr "Guam"
-
-#: includes/adsense.search_options.inc:157
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: includes/adsense.search_options.inc:158
-msgid "Guinea"
-msgstr "Guinea"
-
-#: includes/adsense.search_options.inc:159
-msgid "Guinea-Bissau"
-msgstr "Guinea-Bissau"
-
-#: includes/adsense.search_options.inc:160
-msgid "Guyana"
-msgstr "Guyana"
-
-#: includes/adsense.search_options.inc:161
-msgid "Haiti"
-msgstr "Haiti"
-
-#: includes/adsense.search_options.inc:162
-msgid "Heard and McDonald Islands"
-msgstr "Heard und McDonaldinseln"
-
-#: includes/adsense.search_options.inc:163
-msgid "Honduras"
-msgstr "Honduras"
-
-#: includes/adsense.search_options.inc:164
-msgid "Hungary"
-msgstr "Ungarn"
-
-#: includes/adsense.search_options.inc:165
-msgid "Iceland"
-msgstr "Island"
-
-#: includes/adsense.search_options.inc:166
-msgid "India"
-msgstr "Indien"
-
-#: includes/adsense.search_options.inc:167
-msgid "Indonesia"
-msgstr "Indonesien"
-
-#: includes/adsense.search_options.inc:168
-msgid "Iran"
-msgstr "Iran"
-
-#: includes/adsense.search_options.inc:169
-msgid "Iraq"
-msgstr "Irak"
-
-#: includes/adsense.search_options.inc:170
-msgid "Ireland"
-msgstr "Irland"
-
-#: includes/adsense.search_options.inc:171
-msgid "Israel"
-msgstr "Israel"
-
-#: includes/adsense.search_options.inc:172
-msgid "Jamaica"
-msgstr "Jamaika"
-
-#: includes/adsense.search_options.inc:173
-msgid "Jordan"
-msgstr "Jordan"
-
-#: includes/adsense.search_options.inc:174
-msgid "Kazakhstan"
-msgstr "Kasachstan"
-
-#: includes/adsense.search_options.inc:175
-msgid "Kenya"
-msgstr "Kenia"
-
-#: includes/adsense.search_options.inc:176
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: includes/adsense.search_options.inc:177
-msgid "Kuwait"
-msgstr "Kuwait"
-
-#: includes/adsense.search_options.inc:178
-msgid "Kyrgyzstan"
-msgstr "Kirgisistan"
-
-#: includes/adsense.search_options.inc:179
-msgid "Lao People's Democratic Republic"
-msgstr "Laos"
-
-#: includes/adsense.search_options.inc:180
-msgid "Latvia"
-msgstr "Lettland"
-
-#: includes/adsense.search_options.inc:181
-msgid "Lebanon"
-msgstr "Libanon"
-
-#: includes/adsense.search_options.inc:182
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: includes/adsense.search_options.inc:183
-msgid "Liberia"
-msgstr "Liberia"
-
-#: includes/adsense.search_options.inc:184
-msgid "Libya"
-msgstr "Libyen"
-
-#: includes/adsense.search_options.inc:185
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
-#: includes/adsense.search_options.inc:186
-msgid "Lithuania"
-msgstr "Litauen"
-
-#: includes/adsense.search_options.inc:187
-msgid "Luxembourg"
-msgstr "Luxemburg"
-
-#: includes/adsense.search_options.inc:188
-msgid "Macau"
-msgstr "Macau"
-
-#: includes/adsense.search_options.inc:189
-msgid "Macedonia"
-msgstr "Mazedonien"
-
-#: includes/adsense.search_options.inc:190
-msgid "Madagascar"
-msgstr "Madagaskar"
-
-#: includes/adsense.search_options.inc:191
-msgid "Malawi"
-msgstr "Malawi"
-
-#: includes/adsense.search_options.inc:192
-msgid "Malaysia"
-msgstr "Malaysia"
-
-#: includes/adsense.search_options.inc:193
-msgid "Maldives"
-msgstr "Malediven"
-
-#: includes/adsense.search_options.inc:194
-msgid "Mali"
-msgstr "Mali"
-
-#: includes/adsense.search_options.inc:195
-msgid "Malta"
-msgstr "Malta"
-
-#: includes/adsense.search_options.inc:196
-msgid "Marshall Islands"
-msgstr "Marshall-Inseln"
-
-#: includes/adsense.search_options.inc:197
-msgid "Martinique"
-msgstr "Martinique"
-
-#: includes/adsense.search_options.inc:198
-msgid "Mauritania"
-msgstr "Mauretanien"
-
-#: includes/adsense.search_options.inc:199
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#: includes/adsense.search_options.inc:200
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: includes/adsense.search_options.inc:201
-msgid "Mexico"
-msgstr "Mexiko"
-
-#: includes/adsense.search_options.inc:202
-msgid "Micronesia"
-msgstr "Mikronesien"
-
-#: includes/adsense.search_options.inc:203
-msgid "Moldova"
-msgstr "Moldawien"
-
-#: includes/adsense.search_options.inc:204
-msgid "Monaco"
-msgstr "Monaco"
-
-#: includes/adsense.search_options.inc:205
-msgid "Mongolia"
-msgstr "Mongolei"
-
-#: includes/adsense.search_options.inc:206
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#: includes/adsense.search_options.inc:207
-msgid "Morocco"
-msgstr "Marokko"
-
-#: includes/adsense.search_options.inc:208
-msgid "Mozambique"
-msgstr "Mosambik"
-
-#: includes/adsense.search_options.inc:209
-msgid "Myanmar"
-msgstr "Myanmar"
-
-#: includes/adsense.search_options.inc:210
-msgid "Namibia"
-msgstr "Namibia"
-
-#: includes/adsense.search_options.inc:211
-msgid "Nauru"
-msgstr "Nauru"
-
-#: includes/adsense.search_options.inc:212
-msgid "Nepal"
-msgstr "Nepal"
-
-#: includes/adsense.search_options.inc:213
-msgid "Netherlands Antilles"
-msgstr "NiederlÃ¤ndische Antillen"
-
-#: includes/adsense.search_options.inc:214
-msgid "New Caledonia"
-msgstr "Neukaledonien"
-
-#: includes/adsense.search_options.inc:215
-msgid "New Zealand"
-msgstr "Neuseeland"
-
-#: includes/adsense.search_options.inc:216
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#: includes/adsense.search_options.inc:217
-msgid "Niger"
-msgstr "Niger"
-
-#: includes/adsense.search_options.inc:218
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#: includes/adsense.search_options.inc:219
-msgid "Niue"
-msgstr "Niue"
-
-#: includes/adsense.search_options.inc:220
-msgid "Norfolk Island"
-msgstr "Norfolkinsel"
-
-#: includes/adsense.search_options.inc:221
-msgid "Northern Mariana Islands"
-msgstr "NÃ¶rdliche Marianen"
-
-#: includes/adsense.search_options.inc:222
-msgid "North Korea"
-msgstr "Nordkorea"
-
-#: includes/adsense.search_options.inc:223
-msgid "Oman"
-msgstr "Oman"
-
-#: includes/adsense.search_options.inc:224
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#: includes/adsense.search_options.inc:225
-msgid "Palau"
-msgstr "Palau"
-
-#: includes/adsense.search_options.inc:226
-msgid "Palestinian Territory"
-msgstr "PalÃ¤stinensische Autonomiegebiete"
-
-#: includes/adsense.search_options.inc:227
-msgid "Panama"
-msgstr "Panama"
-
-#: includes/adsense.search_options.inc:228
-msgid "Papua New Guinea"
-msgstr "Papua-Neuguinea"
-
-#: includes/adsense.search_options.inc:229
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: includes/adsense.search_options.inc:230
-msgid "Peru"
-msgstr "Peru"
-
-#: includes/adsense.search_options.inc:231
-msgid "Philippines"
-msgstr "Philippinen"
-
-#: includes/adsense.search_options.inc:232
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: includes/adsense.search_options.inc:233
-msgid "Poland"
-msgstr "Polen"
-
-#: includes/adsense.search_options.inc:234
-msgid "Puerto Rico"
-msgstr "Puerto Rico"
-
-#: includes/adsense.search_options.inc:235
-msgid "Qatar"
-msgstr "Katar"
-
-#: includes/adsense.search_options.inc:236
-msgid "Reunion"
-msgstr "RÃ©union"
-
-#: includes/adsense.search_options.inc:237
-msgid "Romania"
-msgstr "RumÃ¤nien"
-
-#: includes/adsense.search_options.inc:238
-msgid "Russian Federation"
-msgstr "Russische FÃ¶deration"
-
-#: includes/adsense.search_options.inc:239
-msgid "Rwanda"
-msgstr "Ruanda"
-
-#: includes/adsense.search_options.inc:240
-msgid "Saint Kitts and Nevis"
-msgstr "St. Kitts und Nevis"
-
-#: includes/adsense.search_options.inc:241
-msgid "Saint Lucia"
-msgstr "St. Lucia"
-
-#: includes/adsense.search_options.inc:242
-msgid "Saint Vincent and the Grenadines"
-msgstr "St. Vincent und die Grenadinen"
-
-#: includes/adsense.search_options.inc:243
-msgid "Samoa"
-msgstr "Samoa"
-
-#: includes/adsense.search_options.inc:244
-msgid "San Marino"
-msgstr "San Marino"
-
-#: includes/adsense.search_options.inc:245
-msgid "Sao Tome and Principe"
-msgstr "SÃ£o TomÃ© und PrÃ­ncipe"
-
-#: includes/adsense.search_options.inc:246
-msgid "Saudi Arabia"
-msgstr "Saudi-Arabien"
-
-#: includes/adsense.search_options.inc:247
-msgid "Senegal"
-msgstr "Senegal"
-
-#: includes/adsense.search_options.inc:248
-msgid "Serbia and Montenegro"
-msgstr "Serbien und Montenegro"
-
-#: includes/adsense.search_options.inc:249
-msgid "Seychelles"
-msgstr "Seychellen"
-
-#: includes/adsense.search_options.inc:250
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#: includes/adsense.search_options.inc:251
-msgid "Slovakia"
-msgstr "Slowakei"
-
-#: includes/adsense.search_options.inc:252
-msgid "Slovenia"
-msgstr "Slowenien"
-
-#: includes/adsense.search_options.inc:253
-msgid "Solomon Islands"
-msgstr "Salomonen"
-
-#: includes/adsense.search_options.inc:254
-msgid "Somalia"
-msgstr "Somalia"
-
-#: includes/adsense.search_options.inc:255
-msgid "South Africa"
-msgstr "SÃ¼dafrika"
-
-#: includes/adsense.search_options.inc:256
-msgid "South Georgia and The South Sandwich Islands"
-msgstr "SÃ¼dgeorgien und die SÃ¼dlichen Sandwichinseln"
-
-#: includes/adsense.search_options.inc:257
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
-
-#: includes/adsense.search_options.inc:258
-msgid "St. Helena"
-msgstr "St. Helena"
-
-#: includes/adsense.search_options.inc:259
-msgid "St. Pierre and Miquelon"
-msgstr "St. Pierre und Miquelon"
-
-#: includes/adsense.search_options.inc:260
-msgid "Sudan"
-msgstr "Sudan"
-
-#: includes/adsense.search_options.inc:261
-msgid "Suriname"
-msgstr "Suriname"
-
-#: includes/adsense.search_options.inc:262
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Svalbard und Jan Mayen Inseln"
-
-#: includes/adsense.search_options.inc:263
-msgid "Swaziland"
-msgstr "Swaziland"
-
-#: includes/adsense.search_options.inc:264
-msgid "Syria"
-msgstr "Syrien"
-
-#: includes/adsense.search_options.inc:265
-msgid "Tajikistan"
-msgstr "Tadschikistan"
-
-#: includes/adsense.search_options.inc:266
-msgid "Tanzania"
-msgstr "Tansania"
-
-#: includes/adsense.search_options.inc:267
-msgid "Thailand"
-msgstr "Thailand"
-
-#: includes/adsense.search_options.inc:268
-msgid "Togo"
-msgstr "Togo"
-
-#: includes/adsense.search_options.inc:269
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#: includes/adsense.search_options.inc:270
-msgid "Tonga"
-msgstr "Tonga"
-
-#: includes/adsense.search_options.inc:271
-msgid "Trinidad and Tobago"
-msgstr "Trinidad und Tobago"
-
-#: includes/adsense.search_options.inc:272
-msgid "Tunisia"
-msgstr "Tunesien"
-
-#: includes/adsense.search_options.inc:273
-msgid "Turkey"
-msgstr "TÃ¼rkei"
-
-#: includes/adsense.search_options.inc:274
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#: includes/adsense.search_options.inc:275
-msgid "Turks and Caicos Islands"
-msgstr "Turks- und Caicosinseln"
-
-#: includes/adsense.search_options.inc:276
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: includes/adsense.search_options.inc:277
-msgid "Uganda"
-msgstr "Uganda"
-
-#: includes/adsense.search_options.inc:278
-msgid "Ukraine"
-msgstr "Ukraine"
-
-#: includes/adsense.search_options.inc:279
-msgid "United Arab Emirates"
-msgstr "Vereinigte Arabische Emirate"
-
-#: includes/adsense.search_options.inc:280
-msgid "United States Minor Outlying Islands"
-msgstr "United States Minor Outlying Islands"
-
-#: includes/adsense.search_options.inc:281
-msgid "Uruguay"
-msgstr "Uruguay"
-
-#: includes/adsense.search_options.inc:282
-msgid "Uzbekistan"
-msgstr "Usbekistan"
-
-#: includes/adsense.search_options.inc:283
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-#: includes/adsense.search_options.inc:284
-msgid "Vatican"
-msgstr "Vatikan"
-
-#: includes/adsense.search_options.inc:285
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#: includes/adsense.search_options.inc:286
-msgid "Viet Nam"
-msgstr "Vietnam"
-
-#: includes/adsense.search_options.inc:287
-msgid "Virgin Islands (British)"
-msgstr "Britische Jungferninseln"
-
-#: includes/adsense.search_options.inc:288
-msgid "Virgin Islands (U.S.)"
-msgstr "Amerikanische Jungferninseln"
-
-#: includes/adsense.search_options.inc:289
-msgid "Wallis and Futuna Islands"
-msgstr "Wallis und Futuna"
-
-#: includes/adsense.search_options.inc:290
-msgid "Western Sahara"
-msgstr "Westsahara"
-
-#: includes/adsense.search_options.inc:291
-msgid "Yemen"
-msgstr "Jemen"
-
-#: includes/adsense.search_options.inc:292
-msgid "Zambia"
-msgstr "Sambia"
-
-#: includes/adsense.search_options.inc:293
-msgid "Zimbabwe"
-msgstr "Simbabwe"
-
-#: includes/adsense.search_options.inc:294
-msgid "United States"
-msgstr "Vereinigte Staaten"
-
-#: includes/adsense.search_options.inc:306
-msgid "Arabic"
-msgstr "Arabisch"
-
-#: includes/adsense.search_options.inc:307
-msgid "Bulgarian"
-msgstr "Bulgarisch"
-
-#: includes/adsense.search_options.inc:308
-msgid "Chinese (simplified)"
-msgstr "Chinesisch (vereinfacht)"
-
-#: includes/adsense.search_options.inc:309
-msgid "Chinese (traditional)"
-msgstr "Chinesisch (traditionell)"
-
-#: includes/adsense.search_options.inc:310
-msgid "Croatian"
-msgstr "Kroatisch"
-
-#: includes/adsense.search_options.inc:311
-msgid "Czech"
-msgstr "Tschechisch"
-
-#: includes/adsense.search_options.inc:312
-msgid "Danish"
-msgstr "DÃ¤nisch"
-
-#: includes/adsense.search_options.inc:313
-msgid "Dutch"
-msgstr "HollÃ¤ndisch"
-
-#: includes/adsense.search_options.inc:314
-msgid "English"
-msgstr "Englisch"
-
-#: includes/adsense.search_options.inc:315
-msgid "Finnish"
-msgstr "Finnisch"
-
-#: includes/adsense.search_options.inc:316
-msgid "French"
-msgstr "FranzÃ¶sisch"
-
-#: includes/adsense.search_options.inc:317
-msgid "German"
-msgstr "Deutsch"
-
-#: includes/adsense.search_options.inc:318
-msgid "Greek"
-msgstr "Griechisch"
-
-#: includes/adsense.search_options.inc:319
-msgid "Hebrew"
-msgstr "HebrÃ¤isch"
-
-#: includes/adsense.search_options.inc:320
-msgid "Hungarian"
-msgstr "Ungarisch"
-
-#: includes/adsense.search_options.inc:321
-msgid "Indonesian"
-msgstr "Indonesisch"
-
-#: includes/adsense.search_options.inc:322
-msgid "Italian"
-msgstr "Italienisch"
-
-#: includes/adsense.search_options.inc:323
-msgid "Japanese"
-msgstr "Japanisch"
-
-#: includes/adsense.search_options.inc:324
-msgid "Korean"
-msgstr "Koreanisch"
-
-#: includes/adsense.search_options.inc:325
-msgid "Norwegian"
-msgstr "Norwegisch"
-
-#: includes/adsense.search_options.inc:326
-msgid "Polish"
-msgstr "Polnisch"
-
-#: includes/adsense.search_options.inc:327
-msgid "Portuguese"
-msgstr "Portugisisch"
-
-#: includes/adsense.search_options.inc:328
-msgid "Romanian"
-msgstr "RumÃ¤nisch"
-
-#: includes/adsense.search_options.inc:329
-msgid "Russian"
-msgstr "Russisch"
-
-#: includes/adsense.search_options.inc:330
-msgid "Serbian"
-msgstr "Serbisch"
-
-#: includes/adsense.search_options.inc:331
-msgid "Slovak"
-msgstr "Slowakisch"
-
-#: includes/adsense.search_options.inc:332
-msgid "Spanish"
-msgstr "Spanisch"
-
-#: includes/adsense.search_options.inc:333
-msgid "Swedish"
-msgstr "Schwedisch"
-
-#: includes/adsense.search_options.inc:334
-msgid "Thai"
-msgstr "Thai"
-
-#: includes/adsense.search_options.inc:335
-msgid "Turkish"
-msgstr "TÃ¼rkisch"
-
-#: includes/adsense.search_options.inc:336
-msgid "Vietnamese"
-msgstr "Vietnamesisch"
-
-#: managed/adsense_managed.module:48
-msgid "AdSense: unconfigured "
-msgstr "AdSense: unkonfiguriert"
-
-#: managed/adsense_managed.module:74 old/oldcode/adsense_oldcode.module:95
-msgid "Ad format"
-msgstr "Anzeigenformat"
-
-#: managed/adsense_managed.module:77 old/oldcode/adsense_oldcode.module:98
-msgid "Select the ad dimensions you want for this block."
-msgstr "Anzeigenabemssungen fÃ¼r diesen Block wÃ¤hlen"
-
-#: managed/adsense_managed.module:85
-msgid "This is the Ad Slot ID from your Google Adsense account, such as 0123456789."
-msgstr "Dies ist die Anzeigenplatz-ID von Ihrem Google AdSense Konto, so wie 0123456789."
-
-#: managed/adsense_managed.module:91 old/oldcode/adsense_oldcode.module:117
-msgid "Ad alignment"
-msgstr "Anzeigenausrichtung"
-
-#: managed/adsense_managed.module:94 old/oldcode/adsense_oldcode.admin.inc:118 old/oldcode/adsense_oldcode.module:78;120 old/search/adsense_search.module:88
-msgid "None"
-msgstr "Keines"
-
-#: managed/adsense_managed.module:95 old/oldcode/adsense_oldcode.module:121
-msgid "Left"
-msgstr "Links"
-
-#: managed/adsense_managed.module:96 old/oldcode/adsense_oldcode.module:122
-msgid "Centered"
-msgstr "Zentriert"
-
-#: managed/adsense_managed.module:99 old/oldcode/adsense_oldcode.module:125
-msgid "Select the horizontal alignment of the ad within the block."
-msgstr "WÃ¤hlen Sie die horizontale Ausrichtung der Anzeige im Block."
-
-#: managed/adsense_managed.module:22
-msgid "Managed Ads"
-msgstr "Verwaltete Anzeigen"
-
-#: managed/adsense_managed.info:0
-msgid "Managed ads"
-msgstr "Verwaltete Anzeigen"
-
-#: managed/adsense_managed.info:0
-msgid "Ad unit generator module using the new managed ads feature available in the Google AdSense site."
-msgstr ""
-"Das Anzeigengeneratormodul verwendet die neuen Anzeigenverwaltungseigenschaften "
-"die auf der Google AdSense Website zur VerfÃ¼gung stehen."
-
-#: old/oldcode/adsense_oldcode.admin.inc:37
-msgid "Ad groups"
-msgstr "Anzeigengruppe"
-
-#: old/oldcode/adsense_oldcode.admin.inc:50
-msgid "Group @group attributes"
-msgstr "@group Gruppenattribute"
-
-#: old/oldcode/adsense_oldcode.admin.inc:55 old/search/adsense_search.admin.inc:168
-msgid "Title"
-msgstr "Titel"
-
-#: old/oldcode/adsense_oldcode.admin.inc:59
-msgid "Title of the group."
-msgstr "Titel der Gruppe"
-
-#: old/oldcode/adsense_oldcode.admin.inc:64
-msgid "Ad type"
-msgstr "Anzeigentyp"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66 old/search/adsense_search.admin.inc:184
-msgid "Text"
-msgstr "Text"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-msgid "Image"
-msgstr "Bild"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-msgid "Both"
-msgstr "Beide"
-
-#: old/oldcode/adsense_oldcode.admin.inc:76 old/search/adsense_search.admin.inc:89
-msgid "Text color"
-msgstr "Textfarbe"
-
-#: old/oldcode/adsense_oldcode.admin.inc:84
-msgid "Border color"
-msgstr "Rahmenfarbe"
-
-#: old/oldcode/adsense_oldcode.admin.inc:100
-msgid "Title color"
-msgstr "Titelfarbe"
-
-#: old/oldcode/adsense_oldcode.admin.inc:108
-msgid "URL color"
-msgstr "URL-Farbe"
-
-#: old/oldcode/adsense_oldcode.admin.inc:116
-msgid "Alternate URL color"
-msgstr "Alternative Farb-URL"
-
-#: old/oldcode/adsense_oldcode.admin.inc:118
-msgid "Alternate URL"
-msgstr "Alternative URL"
-
-#: old/oldcode/adsense_oldcode.admin.inc:118
-msgid "Alternate color"
-msgstr "Alternative Farbe"
-
-#: old/oldcode/adsense_oldcode.admin.inc:123
-msgid "Alternate info"
-msgstr "Alternative Information"
-
-#: old/oldcode/adsense_oldcode.admin.inc:127
-msgid "Enter either 6 letter alternate color code, or alternate URL to use"
-msgstr ""
-"Geben Sie entweder einen sechs Zeichen langen alternativen Farbcode, "
-"oder eine alternative URL zur Verwendung ein"
-
-#: old/oldcode/adsense_oldcode.admin.inc:132
-msgid "Rounded corners"
-msgstr "Abgerundete Ecken"
-
-#: old/oldcode/adsense_oldcode.admin.inc:135
-msgid "Choose type of round corners"
-msgstr "Typ der abgerundeten Ecken wÃ¤hlen"
-
-#: old/oldcode/adsense_oldcode.admin.inc:143 old/search/adsense_search.admin.inc:241
-msgid "Custom channels"
-msgstr "Benutzerdefinierte KanÃ¤le"
-
-#: old/oldcode/adsense_oldcode.admin.inc:144 old/search/adsense_search.admin.inc:242
-msgid "Enter up to !channels custom channels that you have configured in Google AdSense. If you are not using custom channels, or you are only using URL channels, then leave this empty."
-msgstr ""
-"Geben Sie bis zu !channels benutzerdefinierte KanÃ¤le ein die Sie "
-"im Google AdSense konfiguriert haben. Sollten Sie keine "
-"benutzerdefinierten KanÃ¤le verwenden, oder ausschlieÃŸlich URL-KanÃ¤le "
-"verwenden, lassen Sie dieses Feld leer."
-
-#: old/oldcode/adsense_oldcode.admin.inc:150 old/search/adsense_search.admin.inc:248
-msgid "Custom channel ID"
-msgstr "Benutzerdefinierte Kanal-ID"
-
-#: old/oldcode/adsense_oldcode.admin.inc:184 old/search/adsense_search.admin.inc:291
-msgid "Color must be between #000000 and #FFFFFF"
-msgstr "Farbe muss zwischen #000000 und #FFFFFF liegen"
-
-#: old/oldcode/adsense_oldcode.module:60
-msgid "AdSense old code: unconfigured "
-msgstr "AdSense (alter Code): unkonfiguriert"
-
-#: old/oldcode/adsense_oldcode.module:103
-msgid "Group"
-msgstr "Gruppe"
-
-#: old/oldcode/adsense_oldcode.module:110 old/search/adsense_search.module:105
-msgid "Channel"
-msgstr "Kanal"
-
-#: old/oldcode/adsense_oldcode.module:34
-msgid "Old Code Ads"
-msgstr "Anzeigen (alter Code)"
-
-#: old/oldcode/adsense_oldcode.info:0
-msgid "Ads (old)"
-msgstr "Anzeigen (alt)"
-
-#: old/oldcode/adsense_oldcode.info:0
-msgid "Ad unit generator module using the old format code in which the colours are specified in the ad's JavaScript."
-msgstr ""
-"Das Anzeigengeneratormodul verwendet das alte Codeformat "
-"das die Farben im Anzeigen-JavaScript spezifiziert."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:37
-msgid "Required parameters"
-msgstr "Pflichtparameter"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:42
-msgid "Google AdSense client ID profile field"
-msgstr "Google AdSense Kunden-ID Profilfeld"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:46
-msgid "This is the profile field that holds the AdSense Client ID for the site owner as well as (optionally) for site users who participate in revenue sharing. You must enabled the profile module and create a new field for this."
-msgstr ""
-"Dies ist das Profilfeld das die AdSense-Kunden-ID fÃ¼r den Website-"
-"Besitzer und (optional) fÃ¼r Seitenbenutzer die an der "
-"Umsatzbeteiligung teilnehmen. Sie mÃ¼ssen das Profilmodul aktivieren "
-"und ein entsprechendes neues Feld erstellen."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:53
-msgid "Revenue sharing percentage"
-msgstr "Umsatzbeteiligungsprozentsatz"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:60
-msgid "Percentage of node views going to author"
-msgstr "Prozentsatz an Node-Aufrufen gehen an Autoren"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:67
-msgid "Percentage of node views going to author with the following roles"
-msgstr ""
-"Prozentsatz an Node-Aufrufen die sich an Autoren mit den folgenden "
-"Rollen aufteilen."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:68
-msgid "When the author belongs to one or more roles, the percentage of node views using his AdSense Client ID will be the maximum between the author value and the following settings for each role."
-msgstr ""
-"Wenn der Autor zu einer oder mehr Rollen zÃ¤hlt, wird der "
-"Prozentsatz an Node-Aufrufen anhand seiner AdSense-Kunden-ID "
-"auf das Maximum zwischen dem Autorenwert und den folgenden "
-"Rolleneinstellungen festgelegt."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:86
-msgid "Percentage of node views going to user who referred the author"
-msgstr ""
-"Prozentsatz an Node-Aufrufen von Benutzern die sich auf den "
-"Autor bezogen"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:96
-msgid "Content types"
-msgstr "Inhaltstypen"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:122
-msgid "Role"
-msgstr "Rolle"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:122
-msgid "Percentage"
-msgstr "Prozentsatz"
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:56 ;22
-msgid "Revenue Sharing"
-msgstr "Umsatzbeteiligung"
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:57 
-msgid "Drupal page cache is enabled."
-msgstr "Drupal Seitencache ist aktiviert."
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:58 
-msgid "This causes conflicts with revenue sharing, since the pages are stored in the cache and are not dynamically generated. If you experience issues with revenue sharing, then disable the page cache."
-msgstr ""
-"Dies fÃ¼hrt zu KOnflikten mit der Umsatzbeteiligung, da die Seiten "
-"im Cache gespeichert werden und nicht dynamisch generiert werden. "
-"Sollten Sie Probleme bei der Umsatzbeteiligung bemerken, deaktivieren "
-"Sie den Seitencache."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-msgid "Revenue sharing basic (old)"
-msgstr "Umsatzbeteiligung regulÃ¤r (alt)"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-msgid "Revenue sharing for the Google Adsense module"
-msgstr "Google AdSense Umsatzbeteiligungsmodul."
-
-#: old/search/adsense_search.admin.inc:26
-msgid "Allows users to search the web or the specific site(s) of your choice. Enter the site's URL without the last '/'"
-msgstr ""
-"ErmÃ¶glicht es Benutzern das WWW nach spezifischen Websites(s) "
-"Ihrer Wahl zu durchsuchen. Geben Sie die URLs ohne den letzten "
-"'/' (SchrÃ¤gstrich) ein."
-
-#: old/search/adsense_search.admin.inc:55
-msgid "Use SafeSearch"
-msgstr "Sichere Suche verwenden"
-
-#: old/search/adsense_search.admin.inc:64
-msgid "Google Logo"
-msgstr "Google-Logo"
-
-#: old/search/adsense_search.admin.inc:65
-msgid "Logo above text box"
-msgstr "Logo Ã¼ber Textbox"
-
-#: old/search/adsense_search.admin.inc:66
-msgid "\"Google Search\" on button"
-msgstr "â€žGoogle-Sucheâ€œ auf der SchaltflÃ¤che"
-
-#: old/search/adsense_search.admin.inc:72
-msgid "Search button below text box"
-msgstr "SuchschaltflÃ¤che unter Textbox"
-
-#: old/search/adsense_search.admin.inc:99
-msgid "Site Language"
-msgstr "Seitensprache"
-
-#: old/search/adsense_search.admin.inc:113
-msgid "Length of text box (Max 64)"
-msgstr "TextboxlÃ¤nge (max. 64)"
-
-#: old/search/adsense_search.admin.inc:145
-msgid "Color attributes"
-msgstr "Farbattribute"
-
-#: old/search/adsense_search.admin.inc:160
-msgid "Border"
-msgstr "Rahmen"
-
-#: old/search/adsense_search.admin.inc:176
-msgid "Background"
-msgstr "Hintergrund"
-
-#: old/search/adsense_search.admin.inc:192
-msgid "URL"
-msgstr "URL"
-
-#: old/search/adsense_search.admin.inc:200
-msgid "Visited URL"
-msgstr "Besuchte URLs"
-
-#: old/search/adsense_search.admin.inc:208
-msgid "Light URL"
-msgstr "â€žLichtâ€œ URLs"
-
-#: old/search/adsense_search.admin.inc:216
-msgid "Logo Background"
-msgstr "Logohintergrund"
-
-#: old/search/adsense_search.results.inc:17
-msgid "Search keywords: %keyword"
-msgstr "SuchschlÃ¼sselwÃ¶rter: %keyword"
-
-#: old/search/adsense_search.module:78
-msgid "AdSense Search: unconfigured "
-msgstr "AdSense-Suche: unkonfiguriert"
-
-#: old/search/adsense_search.module:213
-msgid "Google Search"
-msgstr "Google-Suche"
-
-#: old/search/adsense_search.info:0
-msgid "Search (old)"
-msgstr "Suche (alt)"
-
-#: old/search/adsense_search.info:0
-msgid "AdSense for Search generator module. This module uses the 'old' code in which the user can select to search the entire Web or 1 to 3 user-defined domains."
-msgstr ""
-"AdSense fÃ¼r Suchgeneratormodul. Dieses Modul verwendet den â€žaltenâ€œ "
-"Code in dem der Benutzer selbst entscheiden kann ob er das gesamte "
-"WWW oder ein bis drei vordefinierte Websites durchsuchen will."
-
Index: translations/fr.po
===================================================================
RCS file: translations/fr.po
diff -N translations/fr.po
--- translations/fr.po	13 May 2009 00:04:20 -0000	1.1.2.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,2151 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: Adsense 6.x-1.0-beta3\n"
-"POT-Creation-Date: 2009-05-13 01:59+0200\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Joao Ventura <jcnventura@drupal.org>\n"
-"Language-Team: Mimoune Walid <mi.walid@gmail.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: French\n"
-"X-Poedit-Country: ALGERIA\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: adsense.admin.inc:25;152
-#: cse/adsense_cse.admin.inc:26
-#: managed/adsense_managed.admin.inc:24
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:25
-msgid "Help and instructions"
-msgstr "Aide et instructions"
-
-#: adsense.admin.inc:37
-msgid "Visibility"
-msgstr "VisibilitÃ©"
-
-#: adsense.admin.inc:42
-msgid "Show AdSense on specific pages"
-msgstr "Afficher AdSense sur certaines pages seulement"
-
-#: adsense.admin.inc:44
-msgid "Show on every page except the listed pages."
-msgstr "Afficher sur toutes les pages exceptÃ©es celles listÃ©es."
-
-#: adsense.admin.inc:44
-msgid "Show on only the listed pages."
-msgstr "Afficher seulement sur les pages listÃ©es."
-
-#: adsense.admin.inc:51
-msgid "Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are  %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page."
-msgstr "Entrez une page par ligne sous la forme de chemins Drupal. Le caractÃ¨re '*' est un passe-partout. Entrez par exemple %blog pour la page des blogues et %blog-wildcard pour chaque blogue personnel. %front est la page d'accueil."
-
-#: adsense.admin.inc:61
-msgid "Show if the following PHP code returns <code>TRUE</code> (PHP-mode, experts only)."
-msgstr ""
-
-#: adsense.admin.inc:62
-msgid "If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can break your Drupal site."
-msgstr ""
-
-#: adsense.admin.inc:69
-msgid "Advanced options"
-msgstr "Options avancÃ©es"
-
-#: adsense.admin.inc:74
-msgid "Enable test mode?"
-msgstr "Activer le mode test?"
-
-#: adsense.admin.inc:76
-msgid "This enables you to test the AdSense module settings. This can be useful in some situations: for example, testing whether revenue sharing is working properly or not without having to display real ads on your site. It is best to test this after you log out."
-msgstr "Cela vous permet de tester les paramÃ¨tres de module AdSense. Cela peut Ãªtre utile dans certaines situations: par exemple, vÃ©rifier si le partage des revenus fonctionne correctement ou non, sans avoir l'affichage rÃ©el des annonces sur votre site. Il est prÃ©fÃ©rable de le tester aprÃ¨s dÃ©connexion."
-
-#: adsense.admin.inc:81
-msgid "Disable Google AdSense ads?"
-msgstr "DÃ©sactiver les annonces de Google AdSense?"
-
-#: adsense.admin.inc:83
-msgid "This disables all display of Google AdSense ads from your web site. This is useful in certain situations, such as site upgrades, or if you make a copy of the site for development and test purposes."
-msgstr "Ceci va dÃ©sactiver l'affichage de toutes les annonces Google AdSense sur votre site web. Ceci est utile dans certaines situations, telles que les mises Ã  jour du site, ou si vous faites une copie du site pour dÃ©veloppement et tests."
-
-#: adsense.admin.inc:88
-msgid "Placeholder when ads are disabled?"
-msgstr "Un espace lorsque les annonces sont dÃ©sactivÃ©es?"
-
-#: adsense.admin.inc:90
-msgid "This causes an empty box to be displayed in place of the ads when they are disabled."
-msgstr "Cela provoque une boÃ®te vide qui sera affichÃ© aulieu des annonces quand ils sont dÃ©sactivÃ©es."
-
-#: adsense.admin.inc:95
-msgid "Placeholder text to display"
-msgstr "Texte Ã  afficher dans l'espace"
-
-#: adsense.admin.inc:98
-msgid "Enter any text to display as a placeholder when ads are disabled."
-msgstr "Entrez un texte Ã  afficher dans un espace lorsque les annonces sont dÃ©sactivÃ©es."
-
-#: adsense.admin.inc:103
-msgid "Enable AdSense section targeting?"
-msgstr "Activer le ciblage par section AdSense?"
-
-#: adsense.admin.inc:105
-msgid "This better targets Google ads to the teaser and body of nodes."
-msgstr ""
-
-#: adsense.admin.inc:112
-msgid "Undocumented options"
-msgstr ""
-
-#: adsense.admin.inc:113
-msgid "Warning: Use of these options is AT YOUR OWN RISK. Google will never generate an ad with any of these options, so using one of them is a violation of Google AdSense's Terms and Conditions. USE OF THESE OPTIONS MAY RESULT IN GETTING BANNED FROM THE PROGRAM. You may lose all the revenue accumulated in your account. FULL RESPONSABILITY FOR THE USE OF THESE OPTIONS IS YOURS. In other words, don't complain to the authors about getting banned, even if using one of these options was provided as a solution to a reported problem."
-msgstr ""
-
-#: adsense.admin.inc:120
-msgid "I agree"
-msgstr ""
-
-#: adsense.admin.inc:125
-msgid "Use Google's AdSense test option?"
-msgstr ""
-
-#: adsense.admin.inc:127
-msgid "With this option set, Google will not count any clicks or page impressions. Revenue is not generated. Make sure that you disable this option in production servers. [!statement]"
-msgstr ""
-
-#: adsense.admin.inc:127
-msgid "Unofficial statement"
-msgstr ""
-
-#: adsense.admin.inc:132
-msgid "Language to display ads"
-msgstr ""
-
-#: adsense.admin.inc:162
-msgid "Site Google AdSense Publisher ID"
-msgstr "ID d'Ã©diteur de site dans Google AdSense"
-
-#: adsense.admin.inc:165
-msgid "This is the Google AdSense Publisher ID for the site owner. It is used if no other ID is suitable. Get this in your Google Adsense account. It should be similar to %id."
-msgstr "Ceci est l'ID d'Ã©diteur de Google AdSense pour le propriÃ©taire du site. Il est utilisÃ© si aucune autre ID est appropriÃ©e. Trouvez-le dans votre compte AdSense. Il devrait Ãªtre similaire Ã %id."
-
-#: adsense.admin.inc:172
-msgid "Publisher ID module"
-msgstr "module ID Annonceur"
-
-#: adsense.module:54
-msgid "4-links 120x90"
-msgstr "4-liens 120x90"
-
-#: adsense.module:55
-msgid "4-links 160x90"
-msgstr "4-liens 160x90"
-
-#: adsense.module:56
-msgid "4-links 180x90"
-msgstr "4-liens 180x90"
-
-#: adsense.module:57
-msgid "4-links 200x90"
-msgstr "4-liens 200x90"
-
-#: adsense.module:58
-msgid "4-links 468x15"
-msgstr "4-liens 468x15"
-
-#: adsense.module:59
-msgid "4-links 728x15"
-msgstr "4-liens 728x15"
-
-#: adsense.module:60
-msgid "5-links 120x90"
-msgstr "5-liens 120x90"
-
-#: adsense.module:61
-msgid "5-links 160x90"
-msgstr "5-liens 160x90"
-
-#: adsense.module:62
-msgid "5-links 180x90"
-msgstr "5-liens 180x90"
-
-#: adsense.module:63
-msgid "5-links 200x90"
-msgstr "5-liens 200x90"
-
-#: adsense.module:64
-msgid "5-links 468x15"
-msgstr "5-liens 468x15"
-
-#: adsense.module:65
-msgid "5-links 728x15"
-msgstr "5-liens 728x15"
-
-#: adsense.module:66
-msgid "Vertical banner"
-msgstr "BanniÃ¨re verticale"
-
-#: adsense.module:67
-msgid "Skyscraper"
-msgstr "Skyscraper"
-
-#: adsense.module:68
-msgid "Button"
-msgstr "Bouton"
-
-#: adsense.module:69
-msgid "Wide Skyscraper"
-msgstr "Skyscraper Large"
-
-#: adsense.module:70
-msgid "Small Rectangle"
-msgstr "Petit rectangle"
-
-#: adsense.module:71
-msgid "Small Square"
-msgstr "Petit CarrÃ©"
-
-#: adsense.module:72
-msgid "Half Banner"
-msgstr "Demi BanniÃ¨re"
-
-#: adsense.module:73
-msgid "Square"
-msgstr "carrÃ©"
-
-#: adsense.module:74
-msgid "Medium Rectangle"
-msgstr "Rectangle moyen"
-
-#: adsense.module:75
-msgid "Large Rectangle"
-msgstr "Grand Rectangle"
-
-#: adsense.module:76
-msgid "Banner"
-msgstr "BanniÃ¨re"
-
-#: adsense.module:77
-msgid "Leaderboard"
-msgstr "Classement"
-
-#: adsense.module:85
-msgid "AdSense for Search"
-msgstr "AdSense pour les recherches"
-
-#: adsense.module:179
-msgid "AdSense tag"
-msgstr "AdSense tag"
-
-#: adsense.module:183
-msgid "Substitutes an AdSense special tag with an ad."
-msgstr "SupplÃ©ants une balise spÃ©ciale AdSense avec une annonce."
-
-#: adsense.module:219
-msgid "The HTML corrector filter has a bug that causes problems with the use of the AdSense tag. Disabling the HTML corrector filter is recommended."
-msgstr ""
-
-#: adsense.module:228
-msgid "Use the special tag [adsense:<em>format</em>:<em>slot</em>] or [adsense:<em>format</em>:<em>[group]</em>:<em>[channel]</em><em>[:slot]</em>] or [adsense:block:<em>location</em>] to display Google AdSense ads."
-msgstr "Utiliser la balise spÃ©ciale [adsense:<em>format</em>:<em>slot</em>] ou [adsense:<em>format</em>:<em>[group]</em>:<em>[channel]</em><em>[:slot]</em>] ou [adsense:block:<em>location</em>] pour afficher les annonces Google AdSense."
-
-#: (duplicate) adsense.module:162
-#: ;120
-#: old/search/adsense_search.results.inc:17
-msgid "AdSense"
-msgstr "AdSense"
-
-#: (duplicate) adsense.module:163
-msgid "Publisher ID is not set."
-msgstr ""
-
-#: (duplicate) adsense.module:164
-msgid "Please configure it in the <a href=\"@url\">AdSense settings page</a>."
-msgstr ""
-
-#: adsense.module:99
-msgid "administer adsense"
-msgstr "administrer adsense"
-
-#: adsense.module:99
-msgid "hide adsense"
-msgstr "Masquer adsense"
-
-#: adsense.module:99
-msgid "use PHP for ad visibility"
-msgstr ""
-
-#: adsense.module:121
-msgid "Configure Google AdSense Ads."
-msgstr "Configurer les annonces Google AdSense."
-
-#: adsense.module:128
-msgid "Settings"
-msgstr "ParamÃ¨tres"
-
-#: adsense.module:133
-msgid "Publisher ID"
-msgstr "ID d'annonceur"
-
-#: adsense.module:142
-msgid "Site ID"
-msgstr "ID de site"
-
-#: adsense.info:0
-msgid "AdSense core"
-msgstr "AdSense core"
-
-#: adsense.info:0
-msgid "Displays Google AdSense ads on your site to earn revenue. Requires at least one additional ad unit generator module."
-msgstr "Affiche des annonces Google AdSense sur votre site pour gÃ©nÃ©rer des revenus. NÃ©cessite au moins un autre module gÃ©nÃ©rateur d'annonces."
-
-#: adsense.info:0
-#: contrib/adsense_click/adsense_click.info:0
-#: cse/adsense_cse.info:0
-#: managed/adsense_managed.info:0
-#: old/oldcode/adsense_oldcode.info:0
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-#: old/search/adsense_search.info:0
-msgid "Adsense"
-msgstr "Adsense"
-
-#: contrib/adsense_click/adsense_click.admin.inc:15
-msgid "Click tracking"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:20
-msgid "Enable AdSense click tracking?"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:22
-msgid "Logs IP and time of <a href=!url>AdSense clicks</a>. This can be very useful in tracking which of your pages generate the most clicks, as well as help if click fraud is suspected."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:26
-msgid "Enable name resolution of IP addresses?"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:28
-msgid "Display the domain name instead of the IP address. This can slow down the display of the logs page and tie up a PHP process for several seconds. On some hosting providers it may not be available."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:14
-msgid "Timestamp"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:15;46
-msgid "Path"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:16
-msgid "IP/Host"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:17
-msgid "Referrer"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:47;70
-#: contrib/adsense_click/adsense_click.module:22
-msgid "Clicks"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:48
-msgid "Last"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:69
-msgid "Day"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:66
-msgid "view clicks"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:23
-msgid "Track the clicks on Adsense ads."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:32
-msgid "AdSense clicks"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:33
-msgid "Track AdSense clicks."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:40
-msgid "Top pages"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:47
-msgid "By day"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.info:0
-msgid "AdSense Click Tracking"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.info:0
-msgid "Tracks clicks to Google Adsense"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:38
-#: old/search/adsense_search.admin.inc:25
-msgid "Search Box Options"
-msgstr "Options de boÃ®te de recherches"
-
-#: cse/adsense_cse.admin.inc:43
-#: old/search/adsense_search.admin.inc:61
-msgid "Logo Type"
-msgstr "Type de Logo"
-
-#: cse/adsense_cse.admin.inc:46
-msgid "Watermark on search box (requires JavaScript)"
-msgstr "MarquÃ© dans le champ de recherche (nÃ©cessite JavaScript)"
-
-#: cse/adsense_cse.admin.inc:47
-msgid "Next to the search box"
-msgstr "A cÃ´tÃ© de la boÃ®te de recherche"
-
-#: cse/adsense_cse.admin.inc:48
-msgid "Below the search box"
-msgstr "Au-dessous de la boÃ®te de recherche"
-
-#: cse/adsense_cse.admin.inc:54
-#: old/oldcode/adsense_oldcode.admin.inc:92
-#: old/search/adsense_search.admin.inc:78
-msgid "Background color"
-msgstr "Couleur de fond"
-
-#: cse/adsense_cse.admin.inc:57
-#: old/search/adsense_search.admin.inc:81;93
-msgid "White"
-msgstr "Blanc"
-
-#: cse/adsense_cse.admin.inc:58
-#: old/search/adsense_search.admin.inc:83
-msgid "Gray"
-msgstr "Gris"
-
-#: cse/adsense_cse.admin.inc:59
-#: old/search/adsense_search.admin.inc:82;92
-msgid "Black"
-msgstr "Noir"
-
-#: cse/adsense_cse.admin.inc:65
-#: old/search/adsense_search.admin.inc:106
-msgid "Site Encoding"
-msgstr "Codage de Site"
-
-#: cse/adsense_cse.admin.inc:72
-msgid "Text Box Length"
-msgstr "Longueur du champ de texte"
-
-#: cse/adsense_cse.admin.inc:80
-msgid "Watermark Language"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:89
-#: old/search/adsense_search.admin.inc:123
-msgid "Search Results Style"
-msgstr "Style des rÃ©sultats de recherche"
-
-#: cse/adsense_cse.admin.inc:94
-#: old/search/adsense_search.admin.inc:128
-msgid "Country or territory for Google domain"
-msgstr "Pays ou territoire du domaine Google"
-
-#: cse/adsense_cse.admin.inc:101
-#: old/search/adsense_search.admin.inc:135
-msgid "Width of results area"
-msgstr "Largeur du cadre des rÃ©sultats"
-
-#: cse/adsense_cse.admin.inc:109
-msgid "Ad Location"
-msgstr "Emplacement d'annonce"
-
-#: cse/adsense_cse.admin.inc:112
-msgid "Top and Right"
-msgstr "Haut et droite"
-
-#: cse/adsense_cse.admin.inc:113
-msgid "Top and Bottom"
-msgstr "Haut et Bas"
-
-#: cse/adsense_cse.admin.inc:114
-#: managed/adsense_managed.module:94
-#: old/oldcode/adsense_oldcode.module:120
-msgid "Right"
-msgstr "Droite"
-
-#: cse/adsense_cse.admin.inc:122
-#: managed/adsense_managed.admin.inc:36
-#: old/oldcode/adsense_oldcode.admin.inc:22
-#: old/search/adsense_search.admin.inc:226
-msgid "AdSense Blocks"
-msgstr "Blocs AdSense"
-
-#: cse/adsense_cse.admin.inc:127
-#: managed/adsense_managed.admin.inc:41
-#: old/oldcode/adsense_oldcode.admin.inc:27
-#: old/search/adsense_search.admin.inc:231
-msgid "Number of blocks"
-msgstr "Nombre de blocs"
-
-#: cse/adsense_cse.admin.inc:146
-#: old/search/adsense_search.admin.inc:268
-msgid "Text Box Length must be between !min and !max"
-msgstr "Longueur du champ de texte doit Ãªtre entre !min et !max"
-
-#: cse/adsense_cse.admin.inc:152
-msgid "Results area width must be between !min and !max"
-msgstr "Largeur du cadre des rÃ©sultats doit Ãªtre entre !min et !max"
-
-#: cse/adsense_cse.admin.inc:156
-#: managed/adsense_managed.admin.inc:58
-#: old/oldcode/adsense_oldcode.admin.inc:168
-#: old/search/adsense_search.admin.inc:273
-msgid "Number of blocks can't be a negative number"
-msgstr "Nombre de blocs ne peut pas Ãªtre un nombre nÃ©gatif"
-
-#: cse/adsense_cse.module:65
-msgid "AdSense CSE: unconfigured "
-msgstr "AdSense CSE: non configurÃ© "
-
-#: cse/adsense_cse.module:76
-#: managed/adsense_managed.module:61
-#: old/oldcode/adsense_oldcode.module:82
-#: old/search/adsense_search.module:92
-msgid "Block description"
-msgstr "Description du bloc"
-
-#: cse/adsense_cse.module:79
-#: managed/adsense_managed.module:64
-#: old/oldcode/adsense_oldcode.module:85
-#: old/search/adsense_search.module:95
-msgid "A brief description of your block. Used on the <a href=\"@overview\">block overview page</a>."
-msgstr "Une courte description de votre bloc. UtilisÃ©e sur <a href=\"@overview\">la vue d'ensemble des blocs</a>."
-
-#: cse/adsense_cse.module:86
-#: managed/adsense_managed.module:80
-msgid "Ad Slot ID"
-msgstr "ID Slot d'annonce"
-
-#: cse/adsense_cse.module:88
-msgid "This is the provided by the AdSense site in the Search Box Code \"cx\" field. This is usually provided in the form partner-<em>Publisher ID</em>:<em>Slot Id</em>. If the code provided is, for example, partner-pub-0123456789:<strong>abcdef-ghij</strong>, then insert only <strong>abcdef-ghij</strong> here."
-msgstr ""
-
-#: cse/adsense_cse.module:101
-#: managed/adsense_managed.module:109
-#: old/oldcode/adsense_oldcode.module:135
-#: old/search/adsense_search.module:116
-msgid "AdSense unconfigured block. <a href=!url>Click to configure.</a>"
-msgstr "Bloc AdSense non configurÃ©. <a href=!url>Cliquez pour configurer.</a>"
-
-#: cse/adsense_cse.module:143
-#: old/search/adsense_search.module:187;45
-msgid "Search"
-msgstr "Rechercher"
-
-#: cse/adsense_cse.module:144;34
-msgid "Custom Search"
-msgstr "Recherche PersonnalisÃ©e"
-
-#: cse/adsense_cse.module:43
-#: old/search/adsense_search.module:54
-msgid "Search Results"
-msgstr "RÃ©sultats de la recherche"
-
-#: cse/adsense_cse.info:0
-msgid "CSE Search"
-msgstr "Recherche CSE"
-
-#: cse/adsense_cse.info:0
-msgid "AdSense for Search generator module. This module uses the new Custom Search Engine code created via the Adsense interface."
-msgstr "AdSense pour module de gÃ©nÃ©rateur des recherches. Ce module utilise le nouveau code de moteur de recherche personnalisÃ© crÃ©Ã© par l'interface Adsense."
-
-#: help/adsense.help.inc:23
-msgid "Format"
-msgstr "Format"
-
-#: help/adsense.help.inc:23
-msgid "Description"
-msgstr "Description"
-
-#: help/adsense.help.inc:23
-msgid "Width"
-msgstr "Largeur"
-
-#: help/adsense.help.inc:23
-msgid "Height"
-msgstr "Hauteur"
-
-#: help/adsense.help.inc:35
-msgid "Custom search help"
-msgstr ""
-
-#: help/adsense.help.inc:38
-msgid "Adsense CSE module (which must be enabled; !link) and refer to its help"
-msgstr ""
-
-#: help/adsense.help.inc:38
-msgid "modules"
-msgstr ""
-
-#: includes/adsense.search_options.inc:17
-msgid "West European Latin-1 (ISO-8859-1)"
-msgstr "Latin-1 Europe de l'Ouest (ISO-8859-1)"
-
-#: includes/adsense.search_options.inc:18
-msgid "West European Latin-9 (ISO-8859-15)"
-msgstr "Latin-9 Europe de l'Ouest (ISO-8859-15)"
-
-#: includes/adsense.search_options.inc:19
-msgid "Western (Windows-1252)"
-msgstr "Occidental (Windows-1252)"
-
-#: includes/adsense.search_options.inc:20
-msgid "Nordic Latin-6 (ISO-8859-10)"
-msgstr "Latin-6 Nordique (ISO-8859-10)"
-
-#: includes/adsense.search_options.inc:21
-msgid "Greek (ISO-8859-7)"
-msgstr "Grec (ISO-8859-7)"
-
-#: includes/adsense.search_options.inc:22
-msgid "Japanese (Shift_JIS)"
-msgstr "Japonais (Shift_JIS)"
-
-#: includes/adsense.search_options.inc:23
-msgid "Japanese (EUC-JP)"
-msgstr "Japonais (EUC-JP)"
-
-#: includes/adsense.search_options.inc:24
-msgid "Japanese (ISO-2022-JP)"
-msgstr "Japonais (ISO-2022-JP)"
-
-#: includes/adsense.search_options.inc:25
-msgid "Chinese Simplified (GB2312)"
-msgstr "Chinois simplifiÃ© (GB2312)"
-
-#: includes/adsense.search_options.inc:26
-msgid "Chinese Simplified (GB18030)"
-msgstr "Chinois simplifiÃ© (GB18030)"
-
-#: includes/adsense.search_options.inc:27
-msgid "Chinese Traditional (Big5)"
-msgstr "Chinois traditionnel (Big5)"
-
-#: includes/adsense.search_options.inc:28
-msgid "Korean (EUC-KR)"
-msgstr "CorÃ©en (EUC-KR)"
-
-#: includes/adsense.search_options.inc:29
-msgid "Thai (Windows-874)"
-msgstr "ThaÃ¯ (Windows-874)"
-
-#: includes/adsense.search_options.inc:30
-msgid "Vietnamese (Windows-1258)"
-msgstr "Vietnamien (Windows-1258)"
-
-#: includes/adsense.search_options.inc:31
-msgid "Central European Latin-2 (ISO-8859-2)"
-msgstr "Europe centrale Latin-2 (ISO-8859-2)"
-
-#: includes/adsense.search_options.inc:32
-msgid "Central European (Windows-1250)"
-msgstr "EuropÃ©en central (Windows-1250)"
-
-#: includes/adsense.search_options.inc:33
-msgid "Central European (CP852)"
-msgstr "EuropÃ©en central (CP852)"
-
-#: includes/adsense.search_options.inc:34
-msgid "Turkish Latin-5 (ISO-8859-9)"
-msgstr "Latin-5 Turc (ISO-8859-9)"
-
-#: includes/adsense.search_options.inc:35
-msgid "Turkish (Windows-1254)"
-msgstr "Turc (Windows-1254)"
-
-#: includes/adsense.search_options.inc:36
-msgid "South European Latin-3 (ISO-8859-3)"
-msgstr "Latin-3 Europe MÃ©ridionale (ISO-8859-3)"
-
-#: includes/adsense.search_options.inc:37
-msgid "Hebrew (ISO-8859-8-I)"
-msgstr "HÃ©breu (ISO-8859-8-I)"
-
-#: includes/adsense.search_options.inc:38
-msgid "Hebrew (Windows-1255)"
-msgstr "HÃ©breu (Windows-1255)"
-
-#: includes/adsense.search_options.inc:39
-msgid "Arabic (Windows-1256)"
-msgstr "Arabe (Windows-1256)"
-
-#: includes/adsense.search_options.inc:40
-msgid "Cyrillic (ISO-8859-5)"
-msgstr "Cyrillique (ISO-8859-5)"
-
-#: includes/adsense.search_options.inc:41
-msgid "Cyrillic (KOI8-R)"
-msgstr "Cyrillique (KOI8-R)"
-
-#: includes/adsense.search_options.inc:42
-msgid "Cyrillic (Windows-1251)"
-msgstr "Cyrillique (Windows-1251)"
-
-#: includes/adsense.search_options.inc:43
-msgid "Cyrillic/Russian (CP-866)"
-msgstr "Cyrillique/Russe (CP-866)"
-
-#: includes/adsense.search_options.inc:44
-msgid "Unicode (UTF-8)"
-msgstr "Unicode (UTF-8)"
-
-#: includes/adsense.search_options.inc:56
-msgid "United Kingdom"
-msgstr "Royaume-Uni"
-
-#: includes/adsense.search_options.inc:57
-msgid "Canada"
-msgstr "Canada"
-
-#: includes/adsense.search_options.inc:58
-msgid "Germany"
-msgstr "Allemagne"
-
-#: includes/adsense.search_options.inc:59
-msgid "Japan"
-msgstr "Japon"
-
-#: includes/adsense.search_options.inc:60
-msgid "France"
-msgstr "France"
-
-#: includes/adsense.search_options.inc:61
-msgid "Australia"
-msgstr "Australie"
-
-#: includes/adsense.search_options.inc:62
-msgid "Italy"
-msgstr "Italie"
-
-#: includes/adsense.search_options.inc:63
-msgid "Austria"
-msgstr "Autriche"
-
-#: includes/adsense.search_options.inc:64
-msgid "Switzerland"
-msgstr "Suisse"
-
-#: includes/adsense.search_options.inc:65
-msgid "Spain"
-msgstr "Espagne"
-
-#: includes/adsense.search_options.inc:66
-msgid "Netherlands"
-msgstr "Pays-Bas"
-
-#: includes/adsense.search_options.inc:67
-msgid "Belgium"
-msgstr "Belgique"
-
-#: includes/adsense.search_options.inc:68
-msgid "Denmark"
-msgstr "Danemark"
-
-#: includes/adsense.search_options.inc:69
-msgid "Sweden"
-msgstr "SuÃ¨de"
-
-#: includes/adsense.search_options.inc:70
-msgid "Norway"
-msgstr "NorvÃ¨ge"
-
-#: includes/adsense.search_options.inc:71
-msgid "Brazil"
-msgstr "BrÃ©sil"
-
-#: includes/adsense.search_options.inc:72
-msgid "Portugal"
-msgstr "Portugal"
-
-#: includes/adsense.search_options.inc:73
-msgid "Finland"
-msgstr "Finlande"
-
-#: includes/adsense.search_options.inc:74
-msgid "South Korea"
-msgstr "CorÃ©e du Sud"
-
-#: includes/adsense.search_options.inc:75
-msgid "China"
-msgstr "Chine"
-
-#: includes/adsense.search_options.inc:76
-msgid "Hong Kong"
-msgstr "Hong-Kong"
-
-#: includes/adsense.search_options.inc:77
-msgid "Taiwan"
-msgstr "TaÃ¯wan"
-
-#: includes/adsense.search_options.inc:78
-msgid "Singapore"
-msgstr "Singapour"
-
-#: includes/adsense.search_options.inc:79
-msgid "Afghanistan"
-msgstr "Afghanistan"
-
-#: includes/adsense.search_options.inc:80
-msgid "Albania"
-msgstr "Albanie"
-
-#: includes/adsense.search_options.inc:81
-msgid "Algeria"
-msgstr "AlgÃ©rie"
-
-#: includes/adsense.search_options.inc:82
-msgid "American Samoa"
-msgstr "Samoa amÃ©ricaines"
-
-#: includes/adsense.search_options.inc:83
-msgid "Andorra"
-msgstr "Andorre"
-
-#: includes/adsense.search_options.inc:84
-msgid "Angola"
-msgstr "Angola"
-
-#: includes/adsense.search_options.inc:85
-msgid "Anguilla"
-msgstr "Anguilla"
-
-#: includes/adsense.search_options.inc:86
-msgid "Antarctica"
-msgstr "Antarctique"
-
-#: includes/adsense.search_options.inc:87
-msgid "Antigua and Barbuda"
-msgstr "Antigua-et-Barbuda"
-
-#: includes/adsense.search_options.inc:88
-msgid "Argentina"
-msgstr "Argentine"
-
-#: includes/adsense.search_options.inc:89
-msgid "Armenia"
-msgstr "ArmÃ©nie"
-
-#: includes/adsense.search_options.inc:90
-msgid "Aruba"
-msgstr "Aruba"
-
-#: includes/adsense.search_options.inc:91
-msgid "Azerbaijan"
-msgstr "AzerbaÃ¯djan"
-
-#: includes/adsense.search_options.inc:92
-msgid "Bahamas"
-msgstr "Bahamas"
-
-#: includes/adsense.search_options.inc:93
-msgid "Bahrain"
-msgstr "BahreÃ¯n"
-
-#: includes/adsense.search_options.inc:94
-msgid "Bangladesh"
-msgstr "Bangladesh"
-
-#: includes/adsense.search_options.inc:95
-msgid "Barbados"
-msgstr "Barbade (La)"
-
-#: includes/adsense.search_options.inc:96
-msgid "Belarus"
-msgstr "Belarus"
-
-#: includes/adsense.search_options.inc:97
-msgid "Belize"
-msgstr "Belize"
-
-#: includes/adsense.search_options.inc:98
-msgid "Benin"
-msgstr "BÃ©nin"
-
-#: includes/adsense.search_options.inc:99
-msgid "Bermuda"
-msgstr "Bermudes"
-
-#: includes/adsense.search_options.inc:100
-msgid "Bhutan"
-msgstr "Bhoutan"
-
-#: includes/adsense.search_options.inc:101
-msgid "Bolivia"
-msgstr "Bolivie"
-
-#: includes/adsense.search_options.inc:102
-msgid "Bosnia and Herzegovina"
-msgstr "Bosnie-HerzÃ©govine"
-
-#: includes/adsense.search_options.inc:103
-msgid "Botswana"
-msgstr "Botswana"
-
-#: includes/adsense.search_options.inc:104
-msgid "Bouvet Island"
-msgstr "Bouvet (ÃŽle)"
-
-#: includes/adsense.search_options.inc:105
-msgid "British Indian Ocean Territory"
-msgstr "Terrtoires britaniques de l'OcÃ©an Indien"
-
-#: includes/adsense.search_options.inc:106
-msgid "Brunei Darussalam"
-msgstr "BrunÃ©i Darussalam"
-
-#: includes/adsense.search_options.inc:107
-msgid "Bulgaria"
-msgstr "Bulgarie"
-
-#: includes/adsense.search_options.inc:108
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#: includes/adsense.search_options.inc:109
-msgid "Burundi"
-msgstr "Burundi"
-
-#: includes/adsense.search_options.inc:110
-msgid "Cambodia"
-msgstr "Cambodge"
-
-#: includes/adsense.search_options.inc:111
-msgid "Cameroon"
-msgstr "Cameroun"
-
-#: includes/adsense.search_options.inc:112
-msgid "Cape Verde"
-msgstr "Cap-Vert"
-
-#: includes/adsense.search_options.inc:113
-msgid "Cayman Islands"
-msgstr "CaÃ¯mans (ÃŽles)"
-
-#: includes/adsense.search_options.inc:114
-msgid "Central African Republic"
-msgstr "RÃ©publique centrafricaine"
-
-#: includes/adsense.search_options.inc:115
-msgid "Chad"
-msgstr "Tchad"
-
-#: includes/adsense.search_options.inc:116
-msgid "Chile"
-msgstr "Chili"
-
-#: includes/adsense.search_options.inc:117
-msgid "Christmas Island"
-msgstr "Christmas (ÃŽles)"
-
-#: includes/adsense.search_options.inc:118
-msgid "Cocos (Keeling) Islands"
-msgstr "Cocos-Keeling (ÃŽles)"
-
-#: includes/adsense.search_options.inc:119
-msgid "Colombia"
-msgstr "Colombie"
-
-#: includes/adsense.search_options.inc:120
-msgid "Comoros"
-msgstr "Comores"
-
-#: includes/adsense.search_options.inc:121
-msgid "Congo"
-msgstr "Congo"
-
-#: includes/adsense.search_options.inc:122
-msgid "Congo,Democratic Republic"
-msgstr "Congo, RÃ©publique dÃ©mocratique"
-
-#: includes/adsense.search_options.inc:123
-msgid "Cook Islands"
-msgstr "Cook (ÃŽles)"
-
-#: includes/adsense.search_options.inc:124
-msgid "Costa Rica"
-msgstr "Costa Rica"
-
-#: includes/adsense.search_options.inc:125
-msgid "Cote d'Ivoire"
-msgstr "CÃ´te d'Ivoire"
-
-#: includes/adsense.search_options.inc:126
-msgid "Croatia"
-msgstr "Croatie"
-
-#: includes/adsense.search_options.inc:127
-msgid "Cuba"
-msgstr "Cuba"
-
-#: includes/adsense.search_options.inc:128
-msgid "Cyprus"
-msgstr "Chypre"
-
-#: includes/adsense.search_options.inc:129
-msgid "Czech Republic"
-msgstr "RÃ©publique tchÃ¨que"
-
-#: includes/adsense.search_options.inc:130
-msgid "Djibouti"
-msgstr "Djibouti"
-
-#: includes/adsense.search_options.inc:131
-msgid "Dominica"
-msgstr "Dominique"
-
-#: includes/adsense.search_options.inc:132
-msgid "Dominican Republic"
-msgstr "RÃ©publique Dominicaine"
-
-#: includes/adsense.search_options.inc:133
-msgid "East Timor"
-msgstr "Timor oriental (ÃŽle)"
-
-#: includes/adsense.search_options.inc:134
-msgid "Ecuador"
-msgstr "Ã‰quateur"
-
-#: includes/adsense.search_options.inc:135
-msgid "Egypt"
-msgstr "Egypte"
-
-#: includes/adsense.search_options.inc:136
-msgid "El Salvador"
-msgstr "Salvador"
-
-#: includes/adsense.search_options.inc:137
-msgid "Equatorial Guinea"
-msgstr "GuinÃ©e Ã©quatoriale"
-
-#: includes/adsense.search_options.inc:138
-msgid "Eritrea"
-msgstr "ErythrÃ©e"
-
-#: includes/adsense.search_options.inc:139
-msgid "Estonia"
-msgstr "Estonie"
-
-#: includes/adsense.search_options.inc:140
-msgid "Ethiopia"
-msgstr "Ethiopie"
-
-#: includes/adsense.search_options.inc:141
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falkland (ÃŽles Malouines)"
-
-#: includes/adsense.search_options.inc:142
-msgid "Faroe Islands"
-msgstr "Faroe (ÃŽles)"
-
-#: includes/adsense.search_options.inc:143
-msgid "Fiji"
-msgstr "Fiji"
-
-#: includes/adsense.search_options.inc:144
-msgid "French Guiana"
-msgstr "Guyane franÃ§aise"
-
-#: includes/adsense.search_options.inc:145
-msgid "French Polynesia"
-msgstr "PolynÃ©sie franÃ§aise"
-
-#: includes/adsense.search_options.inc:146
-msgid "French Southern Territories"
-msgstr "Terres australes franÃ§aises"
-
-#: includes/adsense.search_options.inc:147
-msgid "Gabon"
-msgstr "Gabon"
-
-#: includes/adsense.search_options.inc:148
-msgid "Gambia"
-msgstr "Gambie"
-
-#: includes/adsense.search_options.inc:149
-msgid "Georgia"
-msgstr "GÃ©orgie"
-
-#: includes/adsense.search_options.inc:150
-msgid "Ghana"
-msgstr "Ghana"
-
-#: includes/adsense.search_options.inc:151
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#: includes/adsense.search_options.inc:152
-msgid "Greece"
-msgstr "GrÃ¨ce"
-
-#: includes/adsense.search_options.inc:153
-msgid "Greenland"
-msgstr "Groenland"
-
-#: includes/adsense.search_options.inc:154
-msgid "Grenada"
-msgstr "Grenade"
-
-#: includes/adsense.search_options.inc:155
-msgid "Guadeloupe"
-msgstr "Guadeloupe"
-
-#: includes/adsense.search_options.inc:156
-msgid "Guam"
-msgstr "Guam"
-
-#: includes/adsense.search_options.inc:157
-msgid "Guatemala"
-msgstr "Guatemala"
-
-#: includes/adsense.search_options.inc:158
-msgid "Guinea"
-msgstr "GuinÃ©e"
-
-#: includes/adsense.search_options.inc:159
-msgid "Guinea-Bissau"
-msgstr "GuinÃ©e-Bissau"
-
-#: includes/adsense.search_options.inc:160
-msgid "Guyana"
-msgstr "Guyana"
-
-#: includes/adsense.search_options.inc:161
-msgid "Haiti"
-msgstr "HaÃ¯ti"
-
-#: includes/adsense.search_options.inc:162
-msgid "Heard and McDonald Islands"
-msgstr "Heard et McDonald (ÃŽles)"
-
-#: includes/adsense.search_options.inc:163
-msgid "Honduras"
-msgstr "Honduras"
-
-#: includes/adsense.search_options.inc:164
-msgid "Hungary"
-msgstr "Hongrie"
-
-#: includes/adsense.search_options.inc:165
-msgid "Iceland"
-msgstr "Islande"
-
-#: includes/adsense.search_options.inc:166
-msgid "India"
-msgstr "Inde"
-
-#: includes/adsense.search_options.inc:167
-msgid "Indonesia"
-msgstr "IndonÃ©sie"
-
-#: includes/adsense.search_options.inc:168
-msgid "Iran"
-msgstr "Iran"
-
-#: includes/adsense.search_options.inc:169
-msgid "Iraq"
-msgstr "Iraq"
-
-#: includes/adsense.search_options.inc:170
-msgid "Ireland"
-msgstr "Irlande"
-
-#: includes/adsense.search_options.inc:171
-msgid "Israel"
-msgstr "IsraÃ«l"
-
-#: includes/adsense.search_options.inc:172
-msgid "Jamaica"
-msgstr "JamaÃ¯que"
-
-#: includes/adsense.search_options.inc:173
-msgid "Jordan"
-msgstr "Jordanie"
-
-#: includes/adsense.search_options.inc:174
-msgid "Kazakhstan"
-msgstr "Kazakhstan"
-
-#: includes/adsense.search_options.inc:175
-msgid "Kenya"
-msgstr "Kenya"
-
-#: includes/adsense.search_options.inc:176
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: includes/adsense.search_options.inc:177
-msgid "Kuwait"
-msgstr "KoweÃ¯t"
-
-#: includes/adsense.search_options.inc:178
-msgid "Kyrgyzstan"
-msgstr "Kirghizistan"
-
-#: includes/adsense.search_options.inc:179
-msgid "Lao People's Democratic Republic"
-msgstr "Lao (RÃ©publique dÃ©mocratique populaire)"
-
-#: includes/adsense.search_options.inc:180
-msgid "Latvia"
-msgstr "Lettonie"
-
-#: includes/adsense.search_options.inc:181
-msgid "Lebanon"
-msgstr "Liban"
-
-#: includes/adsense.search_options.inc:182
-msgid "Lesotho"
-msgstr "Lesotho"
-
-#: includes/adsense.search_options.inc:183
-msgid "Liberia"
-msgstr "Liberia"
-
-#: includes/adsense.search_options.inc:184
-msgid "Libya"
-msgstr "Libye"
-
-#: includes/adsense.search_options.inc:185
-msgid "Liechtenstein"
-msgstr "Liechtenstein"
-
-#: includes/adsense.search_options.inc:186
-msgid "Lithuania"
-msgstr "Lituanie"
-
-#: includes/adsense.search_options.inc:187
-msgid "Luxembourg"
-msgstr "Luxembourg"
-
-#: includes/adsense.search_options.inc:188
-msgid "Macau"
-msgstr "Macao"
-
-#: includes/adsense.search_options.inc:189
-msgid "Macedonia"
-msgstr "MacÃ©doine"
-
-#: includes/adsense.search_options.inc:190
-msgid "Madagascar"
-msgstr "Madagascar"
-
-#: includes/adsense.search_options.inc:191
-msgid "Malawi"
-msgstr "Malawi"
-
-#: includes/adsense.search_options.inc:192
-msgid "Malaysia"
-msgstr "Malaisie"
-
-#: includes/adsense.search_options.inc:193
-msgid "Maldives"
-msgstr "Maldives"
-
-#: includes/adsense.search_options.inc:194
-msgid "Mali"
-msgstr "Mali"
-
-#: includes/adsense.search_options.inc:195
-msgid "Malta"
-msgstr "Malte"
-
-#: includes/adsense.search_options.inc:196
-msgid "Marshall Islands"
-msgstr "Marshall (ÃŽles)"
-
-#: includes/adsense.search_options.inc:197
-msgid "Martinique"
-msgstr "Martinique"
-
-#: includes/adsense.search_options.inc:198
-msgid "Mauritania"
-msgstr "Mauritanie"
-
-#: includes/adsense.search_options.inc:199
-msgid "Mauritius"
-msgstr "Maurice"
-
-#: includes/adsense.search_options.inc:200
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: includes/adsense.search_options.inc:201
-msgid "Mexico"
-msgstr "Mexique"
-
-#: includes/adsense.search_options.inc:202
-msgid "Micronesia"
-msgstr "MicronÃ©sie"
-
-#: includes/adsense.search_options.inc:203
-msgid "Moldova"
-msgstr "Moldavie"
-
-#: includes/adsense.search_options.inc:204
-msgid "Monaco"
-msgstr "Monaco"
-
-#: includes/adsense.search_options.inc:205
-msgid "Mongolia"
-msgstr "Mongolie"
-
-#: includes/adsense.search_options.inc:206
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#: includes/adsense.search_options.inc:207
-msgid "Morocco"
-msgstr "Maroc"
-
-#: includes/adsense.search_options.inc:208
-msgid "Mozambique"
-msgstr "Mozambique"
-
-#: includes/adsense.search_options.inc:209
-msgid "Myanmar"
-msgstr "Myanmar"
-
-#: includes/adsense.search_options.inc:210
-msgid "Namibia"
-msgstr "Namibie"
-
-#: includes/adsense.search_options.inc:211
-msgid "Nauru"
-msgstr "Nauru"
-
-#: includes/adsense.search_options.inc:212
-msgid "Nepal"
-msgstr "NÃ©pal"
-
-#: includes/adsense.search_options.inc:213
-msgid "Netherlands Antilles"
-msgstr "Antilles nÃ©erlandaises"
-
-#: includes/adsense.search_options.inc:214
-msgid "New Caledonia"
-msgstr "Nouvelle-CalÃ©donie"
-
-#: includes/adsense.search_options.inc:215
-msgid "New Zealand"
-msgstr "Nouvelle-ZÃ©lande"
-
-#: includes/adsense.search_options.inc:216
-msgid "Nicaragua"
-msgstr "Nicaragua"
-
-#: includes/adsense.search_options.inc:217
-msgid "Niger"
-msgstr "Niger"
-
-#: includes/adsense.search_options.inc:218
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#: includes/adsense.search_options.inc:219
-msgid "Niue"
-msgstr "Niue"
-
-#: includes/adsense.search_options.inc:220
-msgid "Norfolk Island"
-msgstr "Norfolk (ÃŽle de)"
-
-#: includes/adsense.search_options.inc:221
-msgid "Northern Mariana Islands"
-msgstr "Mariannes du Nord (Commonwealth des Ã®les)"
-
-#: includes/adsense.search_options.inc:222
-msgid "North Korea"
-msgstr "CorÃ©e du Nord"
-
-#: includes/adsense.search_options.inc:223
-msgid "Oman"
-msgstr "Oman"
-
-#: includes/adsense.search_options.inc:224
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#: includes/adsense.search_options.inc:225
-msgid "Palau"
-msgstr "Palaos"
-
-#: includes/adsense.search_options.inc:226
-msgid "Palestinian Territory"
-msgstr "Palestine"
-
-#: includes/adsense.search_options.inc:227
-msgid "Panama"
-msgstr "Panama"
-
-#: includes/adsense.search_options.inc:228
-msgid "Papua New Guinea"
-msgstr "Papouasie-Nouvelle GuinÃ©e"
-
-#: includes/adsense.search_options.inc:229
-msgid "Paraguay"
-msgstr "Paraguay"
-
-#: includes/adsense.search_options.inc:230
-msgid "Peru"
-msgstr "PÃ©rou"
-
-#: includes/adsense.search_options.inc:231
-msgid "Philippines"
-msgstr "Philippines"
-
-#: includes/adsense.search_options.inc:232
-msgid "Pitcairn"
-msgstr "Pitcairn (ÃŽle)"
-
-#: includes/adsense.search_options.inc:233
-msgid "Poland"
-msgstr "Pologne"
-
-#: includes/adsense.search_options.inc:234
-msgid "Puerto Rico"
-msgstr "Porto Rico"
-
-#: includes/adsense.search_options.inc:235
-msgid "Qatar"
-msgstr "Qatar"
-
-#: includes/adsense.search_options.inc:236
-msgid "Reunion"
-msgstr "RÃ©union (ÃŽle de la)"
-
-#: includes/adsense.search_options.inc:237
-msgid "Romania"
-msgstr "Roumanie"
-
-#: includes/adsense.search_options.inc:238
-msgid "Russian Federation"
-msgstr "FÃ©dÃ©ration de Russie"
-
-#: includes/adsense.search_options.inc:239
-msgid "Rwanda"
-msgstr "Rwanda"
-
-#: includes/adsense.search_options.inc:240
-msgid "Saint Kitts and Nevis"
-msgstr "Saint-Kitts-et-Nevis"
-
-#: includes/adsense.search_options.inc:241
-msgid "Saint Lucia"
-msgstr "Sainte-Lucie"
-
-#: includes/adsense.search_options.inc:242
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint-Vincent et les Grenadines"
-
-#: includes/adsense.search_options.inc:243
-msgid "Samoa"
-msgstr "Samoa"
-
-#: includes/adsense.search_options.inc:244
-msgid "San Marino"
-msgstr "Saint-Marin"
-
-#: includes/adsense.search_options.inc:245
-msgid "Sao Tome and Principe"
-msgstr "Sao TomÃ© et Principe"
-
-#: includes/adsense.search_options.inc:246
-msgid "Saudi Arabia"
-msgstr "Arabie saoudite"
-
-#: includes/adsense.search_options.inc:247
-msgid "Senegal"
-msgstr "SÃ©nÃ©gal"
-
-#: includes/adsense.search_options.inc:248
-msgid "Serbia and Montenegro"
-msgstr "Serbie et MontÃ©nÃ©gro"
-
-#: includes/adsense.search_options.inc:249
-msgid "Seychelles"
-msgstr "Seychelles"
-
-#: includes/adsense.search_options.inc:250
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#: includes/adsense.search_options.inc:251
-msgid "Slovakia"
-msgstr "Slovaquie"
-
-#: includes/adsense.search_options.inc:252
-msgid "Slovenia"
-msgstr "SlovÃ©nie"
-
-#: includes/adsense.search_options.inc:253
-msgid "Solomon Islands"
-msgstr "Solomon (ÃŽles)"
-
-#: includes/adsense.search_options.inc:254
-msgid "Somalia"
-msgstr "Somalie"
-
-#: includes/adsense.search_options.inc:255
-msgid "South Africa"
-msgstr "Afrique du Sud"
-
-#: includes/adsense.search_options.inc:256
-msgid "South Georgia and The South Sandwich Islands"
-msgstr "GÃ©orgie du Sud et les Ã®les Sandwich du Sud"
-
-#: includes/adsense.search_options.inc:257
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
-
-#: includes/adsense.search_options.inc:258
-msgid "St. Helena"
-msgstr "Sainte-HÃ©lÃ¨ne"
-
-#: includes/adsense.search_options.inc:259
-msgid "St. Pierre and Miquelon"
-msgstr "Saint-Pierre-et-Miquelon"
-
-#: includes/adsense.search_options.inc:260
-msgid "Sudan"
-msgstr "Soudan"
-
-#: includes/adsense.search_options.inc:261
-msgid "Suriname"
-msgstr "Surinam"
-
-#: includes/adsense.search_options.inc:262
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Svalbard et Jan Mayen (Iles de)"
-
-#: includes/adsense.search_options.inc:263
-msgid "Swaziland"
-msgstr "Swaziland"
-
-#: includes/adsense.search_options.inc:264
-msgid "Syria"
-msgstr "Syrie"
-
-#: includes/adsense.search_options.inc:265
-msgid "Tajikistan"
-msgstr "Tadjikistan"
-
-#: includes/adsense.search_options.inc:266
-msgid "Tanzania"
-msgstr "Tanzanie"
-
-#: includes/adsense.search_options.inc:267
-msgid "Thailand"
-msgstr "ThaÃ¯lande"
-
-#: includes/adsense.search_options.inc:268
-msgid "Togo"
-msgstr "Togo"
-
-#: includes/adsense.search_options.inc:269
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#: includes/adsense.search_options.inc:270
-msgid "Tonga"
-msgstr "Tonga"
-
-#: includes/adsense.search_options.inc:271
-msgid "Trinidad and Tobago"
-msgstr "Trinidad et Tobago"
-
-#: includes/adsense.search_options.inc:272
-msgid "Tunisia"
-msgstr "Tunisie"
-
-#: includes/adsense.search_options.inc:273
-msgid "Turkey"
-msgstr "Turquie"
-
-#: includes/adsense.search_options.inc:274
-msgid "Turkmenistan"
-msgstr "TurkmÃ©nistan"
-
-#: includes/adsense.search_options.inc:275
-msgid "Turks and Caicos Islands"
-msgstr "Turks et CaÃ¯cos (ÃŽles)"
-
-#: includes/adsense.search_options.inc:276
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: includes/adsense.search_options.inc:277
-msgid "Uganda"
-msgstr "Ouganda"
-
-#: includes/adsense.search_options.inc:278
-msgid "Ukraine"
-msgstr "Ukraine"
-
-#: includes/adsense.search_options.inc:279
-msgid "United Arab Emirates"
-msgstr "Ã‰mirats arabes unis"
-
-#: includes/adsense.search_options.inc:280
-msgid "United States Minor Outlying Islands"
-msgstr "ÃŽles mineures Ã©loignÃ©es des Ã‰tats-Unis"
-
-#: includes/adsense.search_options.inc:281
-msgid "Uruguay"
-msgstr "Uruguay"
-
-#: includes/adsense.search_options.inc:282
-msgid "Uzbekistan"
-msgstr "OuzbÃ©kistan"
-
-#: includes/adsense.search_options.inc:283
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-#: includes/adsense.search_options.inc:284
-msgid "Vatican"
-msgstr "Vatican"
-
-#: includes/adsense.search_options.inc:285
-msgid "Venezuela"
-msgstr "Venezuela"
-
-#: includes/adsense.search_options.inc:286
-msgid "Viet Nam"
-msgstr "Vietnam"
-
-#: includes/adsense.search_options.inc:287
-msgid "Virgin Islands (British)"
-msgstr "ÃŽles vierges britanniques"
-
-#: includes/adsense.search_options.inc:288
-msgid "Virgin Islands (U.S.)"
-msgstr "ÃŽles vierges amÃ©ricaines"
-
-#: includes/adsense.search_options.inc:289
-msgid "Wallis and Futuna Islands"
-msgstr "Wallis et Futuna"
-
-#: includes/adsense.search_options.inc:290
-msgid "Western Sahara"
-msgstr "Sahara occidental"
-
-#: includes/adsense.search_options.inc:291
-msgid "Yemen"
-msgstr "YÃ©men"
-
-#: includes/adsense.search_options.inc:292
-msgid "Zambia"
-msgstr "Zambie"
-
-#: includes/adsense.search_options.inc:293
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
-
-#: includes/adsense.search_options.inc:294
-msgid "United States"
-msgstr "Ã‰tats-Unis"
-
-#: includes/adsense.search_options.inc:306
-msgid "Arabic"
-msgstr "Arabe"
-
-#: includes/adsense.search_options.inc:307
-msgid "Bulgarian"
-msgstr "Bulgare"
-
-#: includes/adsense.search_options.inc:308
-msgid "Chinese (simplified)"
-msgstr "Chinois (simplifiÃ©)"
-
-#: includes/adsense.search_options.inc:309
-msgid "Chinese (traditional)"
-msgstr "Chinois (traditionnel)"
-
-#: includes/adsense.search_options.inc:310
-msgid "Croatian"
-msgstr "Croate"
-
-#: includes/adsense.search_options.inc:311
-msgid "Czech"
-msgstr "TchÃ¨que"
-
-#: includes/adsense.search_options.inc:312
-msgid "Danish"
-msgstr "Danois"
-
-#: includes/adsense.search_options.inc:313
-msgid "Dutch"
-msgstr "NÃ©erlandais"
-
-#: includes/adsense.search_options.inc:314
-msgid "English"
-msgstr "Anglais"
-
-#: includes/adsense.search_options.inc:315
-msgid "Finnish"
-msgstr "Finnois"
-
-#: includes/adsense.search_options.inc:316
-msgid "French"
-msgstr "FranÃ§ais"
-
-#: includes/adsense.search_options.inc:317
-msgid "German"
-msgstr "Allemand"
-
-#: includes/adsense.search_options.inc:318
-msgid "Greek"
-msgstr "Grec"
-
-#: includes/adsense.search_options.inc:319
-msgid "Hebrew"
-msgstr "HÃ©breu"
-
-#: includes/adsense.search_options.inc:320
-msgid "Hungarian"
-msgstr "Hongrois"
-
-#: includes/adsense.search_options.inc:321
-msgid "Indonesian"
-msgstr "IndonÃ©sien"
-
-#: includes/adsense.search_options.inc:322
-msgid "Italian"
-msgstr "Italien"
-
-#: includes/adsense.search_options.inc:323
-msgid "Japanese"
-msgstr "Japonais"
-
-#: includes/adsense.search_options.inc:324
-msgid "Korean"
-msgstr "CorÃ©en"
-
-#: includes/adsense.search_options.inc:325
-msgid "Norwegian"
-msgstr "NorvÃ©gien"
-
-#: includes/adsense.search_options.inc:326
-msgid "Polish"
-msgstr "Polonais"
-
-#: includes/adsense.search_options.inc:327
-msgid "Portuguese"
-msgstr "Portugais"
-
-#: includes/adsense.search_options.inc:328
-msgid "Romanian"
-msgstr "Roumain"
-
-#: includes/adsense.search_options.inc:329
-msgid "Russian"
-msgstr "Russe"
-
-#: includes/adsense.search_options.inc:330
-msgid "Serbian"
-msgstr "Serbe"
-
-#: includes/adsense.search_options.inc:331
-msgid "Slovak"
-msgstr "Slovaque"
-
-#: includes/adsense.search_options.inc:332
-msgid "Spanish"
-msgstr "Espagnol"
-
-#: includes/adsense.search_options.inc:333
-msgid "Swedish"
-msgstr "SuÃ©dois"
-
-#: includes/adsense.search_options.inc:334
-msgid "Thai"
-msgstr "ThaÃ¯"
-
-#: includes/adsense.search_options.inc:335
-msgid "Turkish"
-msgstr "Turc"
-
-#: includes/adsense.search_options.inc:336
-msgid "Vietnamese"
-msgstr "Vietnamien"
-
-#: managed/adsense_managed.module:46
-msgid "AdSense: unconfigured "
-msgstr "AdSense: non configurÃ©"
-
-#: managed/adsense_managed.module:71
-#: old/oldcode/adsense_oldcode.module:92
-msgid "Ad format"
-msgstr "Format des annonces"
-
-#: managed/adsense_managed.module:74
-#: old/oldcode/adsense_oldcode.module:95
-msgid "Select the ad dimensions you want for this block."
-msgstr "SÃ©lectionnez les dimensions d'annonce que vous voulez pour ce bloc."
-
-#: managed/adsense_managed.module:82
-msgid "This is the Ad Slot ID from your Google Adsense account, such as 0123456789."
-msgstr "Ceci est l'ID d'emlplacement d'annonce depuis votre compte Google AdSense, comme 0123456789."
-
-#: managed/adsense_managed.module:88
-#: old/oldcode/adsense_oldcode.module:114
-msgid "Ad alignment"
-msgstr ""
-
-#: managed/adsense_managed.module:91
-#: old/oldcode/adsense_oldcode.admin.inc:118
-#: old/oldcode/adsense_oldcode.module:75;117
-#: old/search/adsense_search.module:85
-msgid "None"
-msgstr "Aucun"
-
-#: managed/adsense_managed.module:92
-#: old/oldcode/adsense_oldcode.module:118
-msgid "Left"
-msgstr ""
-
-#: managed/adsense_managed.module:93
-#: old/oldcode/adsense_oldcode.module:119
-msgid "Centered"
-msgstr ""
-
-#: managed/adsense_managed.module:96
-#: old/oldcode/adsense_oldcode.module:122
-msgid "Select the horizontal alignment of the ad within the block."
-msgstr ""
-
-#: managed/adsense_managed.module:22
-msgid "Managed Ads"
-msgstr "GÃ©rer les Annonces"
-
-#: managed/adsense_managed.info:0
-msgid "Managed ads"
-msgstr "GÃ©rer les Annonces"
-
-#: managed/adsense_managed.info:0
-msgid "Ad unit generator module using the new managed ads feature available in the Google AdSense site."
-msgstr "Module de gÃ©nÃ©rateur d'annonce en utilisant le nouveau module de gestion des annonces disponible dans le site de Google AdSense."
-
-#: old/oldcode/adsense_oldcode.admin.inc:37
-msgid "Ad groups"
-msgstr "Groupes d'annonce"
-
-#: old/oldcode/adsense_oldcode.admin.inc:50
-msgid "Group @group attributes"
-msgstr "Attributs de groupe @group"
-
-#: old/oldcode/adsense_oldcode.admin.inc:55
-#: old/search/adsense_search.admin.inc:168
-msgid "Title"
-msgstr "Titre"
-
-#: old/oldcode/adsense_oldcode.admin.inc:59
-msgid "Title of the group."
-msgstr "Titre de groupe"
-
-#: old/oldcode/adsense_oldcode.admin.inc:64
-msgid "Ad type"
-msgstr "Type d'annonce"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-#: old/search/adsense_search.admin.inc:184
-msgid "Text"
-msgstr "Texte"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-msgid "Image"
-msgstr "Image"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-msgid "Both"
-msgstr "Les deux"
-
-#: old/oldcode/adsense_oldcode.admin.inc:76
-#: old/search/adsense_search.admin.inc:89
-msgid "Text color"
-msgstr "Couleur du texte"
-
-#: old/oldcode/adsense_oldcode.admin.inc:84
-msgid "Border color"
-msgstr "Couleur de bordure"
-
-#: old/oldcode/adsense_oldcode.admin.inc:100
-msgid "Title color"
-msgstr "Couleur de titre"
-
-#: old/oldcode/adsense_oldcode.admin.inc:108
-msgid "URL color"
-msgstr "Couleur d'url"
-
-#: old/oldcode/adsense_oldcode.admin.inc:116
-msgid "Alternate URL color"
-msgstr "Autre couleur URL"
-
-#: old/oldcode/adsense_oldcode.admin.inc:118
-msgid "Alternate URL"
-msgstr "Autres URL"
-
-#: old/oldcode/adsense_oldcode.admin.inc:118
-msgid "Alternate color"
-msgstr "Autre couleur"
-
-#: old/oldcode/adsense_oldcode.admin.inc:123
-msgid "Alternate info"
-msgstr "Autre info"
-
-#: old/oldcode/adsense_oldcode.admin.inc:127
-msgid "Enter either 6 letter alternate color code, or alternate URL to use"
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:132
-msgid "Rounded corners"
-msgstr "Angles arrondis"
-
-#: old/oldcode/adsense_oldcode.admin.inc:135
-msgid "Choose type of round corners"
-msgstr "Choisissez le type des angles arrondis"
-
-#: old/oldcode/adsense_oldcode.admin.inc:143
-#: old/search/adsense_search.admin.inc:241
-msgid "Custom channels"
-msgstr "CaÃ®nes personnalisÃ©es"
-
-#: old/oldcode/adsense_oldcode.admin.inc:144
-#: old/search/adsense_search.admin.inc:242
-msgid "Enter up to !channels custom channels that you have configured in Google AdSense. If you are not using custom channels, or you are only using URL channels, then leave this empty."
-msgstr ""
-
-#: old/oldcode/adsense_oldcode.admin.inc:150
-#: old/search/adsense_search.admin.inc:248
-msgid "Custom channel ID"
-msgstr "ID de chaÃ®ne personnalisÃ©e"
-
-#: old/oldcode/adsense_oldcode.admin.inc:184
-#: old/search/adsense_search.admin.inc:291
-msgid "Color must be between #000000 and #FFFFFF"
-msgstr "Le couleur doit Ãªtre entre #000000 et #FFFFFF"
-
-#: old/oldcode/adsense_oldcode.module:58
-msgid "AdSense old code: unconfigured "
-msgstr "Ancien code d'AdSense: non configurÃ©"
-
-#: old/oldcode/adsense_oldcode.module:100
-msgid "Group"
-msgstr "Groupe"
-
-#: old/oldcode/adsense_oldcode.module:107
-#: old/search/adsense_search.module:102
-msgid "Channel"
-msgstr "CaÃ®ne"
-
-#: old/oldcode/adsense_oldcode.module:34
-msgid "Old Code Ads"
-msgstr "Ancien code d'annonces"
-
-#: old/oldcode/adsense_oldcode.info:0
-msgid "Ads (old)"
-msgstr "Annonces (ancien)"
-
-#: old/oldcode/adsense_oldcode.info:0
-msgid "Ad unit generator module using the old format code in which the colours are specified in the ad's JavaScript."
-msgstr "Module de gÃ©nÃ©rateur d'unitÃ© utilisant l'ancien format de code dans lequel les couleurs sont indiquÃ©es dans le JavaScript d'annonce."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:37
-msgid "Required parameters"
-msgstr "ParamÃ¨tres requis"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:42
-msgid "Google AdSense client ID profile field"
-msgstr "Champ de profile d'ID client de Google AdSense"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:46
-msgid "This is the profile field that holds the AdSense Client ID for the site owner as well as (optionally) for site users who participate in revenue sharing. You must enabled the profile module and create a new field for this."
-msgstr "Ceci est le champ de profile qui dÃ©tient le numÃ©ro de client AdSense pour le propriÃ©taire du site, ainsi que (en option) pour les utilisateurs du site qui participent au partage des revenus. Vous devez activÃ© le module de profil et de crÃ©er un nouveau domaine pour cela."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:53
-msgid "Revenue sharing percentage"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:60
-msgid "Percentage of node views going to author"
-msgstr "Pourcentage de vue des noeuds transmis Ã  l'auteur"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:67
-msgid "Percentage of node views going to author with the following roles"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:68
-msgid "When the author belongs to one or more roles, the percentage of node views using his AdSense Client ID will be the maximum between the author value and the following settings for each role."
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:86
-msgid "Percentage of node views going to user who referred the author"
-msgstr "Pourcentage de vue des noeuds transmis Ã  l'auteur"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:96
-msgid "Content types"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:122
-msgid "Role"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:122
-msgid "Percentage"
-msgstr ""
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:56
-#: ;22
-#, fuzzy
-msgid "Revenue Sharing"
-msgstr "Partage des revenues"
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:57
-msgid "Drupal page cache is enabled."
-msgstr ""
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:58
-#, fuzzy
-msgid "This causes conflicts with revenue sharing, since the pages are stored in the cache and are not dynamically generated. If you experience issues with revenue sharing, then disable the page cache."
-msgstr "Cache de page de Drupal est activÃ©. Cela provoque des conflits avec le partage des revenus, puisque les pages sont stockÃ©es dans le cache et ne sont pas gÃ©nÃ©rÃ©es dynamiquement. Si vous rencontrez des problÃ¨mes avec le partage des revenues, puis dÃ©sactiver le cache de la page."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-msgid "Revenue sharing basic (old)"
-msgstr "Partage des revenus (ancien)"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-#, fuzzy
-msgid "Revenue sharing for the Google Adsense module"
-msgstr "Le partage des revenues pour le module Google Adsense"
-
-#: old/search/adsense_search.admin.inc:26
-msgid "Allows users to search the web or the specific site(s) of your choice. Enter the site's URL without the last '/'"
-msgstr "Permet aux utilisateurs d'effectuer des recherches sur le Web ou les site (s) de votre choix. Entrez l'URL du site, sans le dernier '/'"
-
-#: old/search/adsense_search.admin.inc:55
-msgid "Use SafeSearch"
-msgstr "Utilisez SafeSearch"
-
-#: old/search/adsense_search.admin.inc:64
-msgid "Google Logo"
-msgstr "Logo Google"
-
-#: old/search/adsense_search.admin.inc:65
-msgid "Logo above text box"
-msgstr "Logo au-dessus du champ de texte"
-
-#: old/search/adsense_search.admin.inc:66
-msgid "\"Google Search\" on button"
-msgstr "Bouton \"Google Search\""
-
-#: old/search/adsense_search.admin.inc:72
-msgid "Search button below text box"
-msgstr "Bouton de recherche au-dessous de champ de texte"
-
-#: old/search/adsense_search.admin.inc:99
-msgid "Site Language"
-msgstr "Langue du site "
-
-#: old/search/adsense_search.admin.inc:113
-msgid "Length of text box (Max 64)"
-msgstr "Longueur du champ de texte (Max 64)"
-
-#: old/search/adsense_search.admin.inc:145
-msgid "Color attributes"
-msgstr "attributs de couleur"
-
-#: old/search/adsense_search.admin.inc:160
-msgid "Border"
-msgstr "Bordure"
-
-#: old/search/adsense_search.admin.inc:176
-msgid "Background"
-msgstr "ArriÃ¨re-plan"
-
-#: old/search/adsense_search.admin.inc:192
-msgid "URL"
-msgstr "URL"
-
-#: old/search/adsense_search.admin.inc:200
-msgid "Visited URL"
-msgstr "URL visitÃ©e"
-
-#: old/search/adsense_search.admin.inc:208
-msgid "Light URL"
-msgstr "SÃ©lectionner l'URL"
-
-#: old/search/adsense_search.admin.inc:216
-msgid "Logo Background"
-msgstr "Fond du logo"
-
-#: old/search/adsense_search.results.inc:17
-msgid "Search keywords: %keyword"
-msgstr "Recherche par mots clÃ©s: %keyword"
-
-#: old/search/adsense_search.module:76
-msgid "AdSense Search: unconfigured "
-msgstr "AdSense recherche: non configurÃ©"
-
-#: old/search/adsense_search.module:210
-msgid "Google Search"
-msgstr "Google Recherche"
-
-#: old/search/adsense_search.info:0
-msgid "Search (old)"
-msgstr "Rechercher (ancien)"
-
-#: old/search/adsense_search.info:0
-msgid "AdSense for Search generator module. This module uses the 'old' code in which the user can select to search the entire Web or 1 to 3 user-defined domains."
-msgstr "AdSense pour le module de gÃ©nÃ©rateur recherches. Ce module utilise l'ancien code que l'utilisateur peut choisir de recherche sur l'ensemble du Web ou de 1 Ã  3 domaines dÃ©finis par l'utilisateur."
-
-#~ msgid "Background Color"
-#~ msgstr "Couleur de fond"
-#~ msgid "Text Color"
-#~ msgstr "Couleur du texte"
-#~ msgid "Revenue Sharing (basic)"
-#~ msgstr "Partage des revenus (de base)"
-#~ msgid "Google AdSense"
-#~ msgstr "Google AdSense"
-#~ msgid "adsense"
-#~ msgstr "adsense"
-#~ msgid "AdSense settings are available under !link"
-#~ msgstr "ParamÃ¨tres d'AdSense sont disponibles sous !link"
-#~ msgid "adsense_cse"
-#~ msgstr "adsense_cse"
-#~ msgid "adsense_managed"
-#~ msgstr "adsense_managed"
-#~ msgid "adsense_oldcode"
-#~ msgstr "adsense_oldcode"
-#~ msgid "Enable revenue sharing"
-#~ msgstr "Activer le partage des revenues"
-#~ msgid ""
-#~ "Note that enabling this will disable AdSense code caching, which can "
-#~ "cause more resource usage for busy sites. The referral feature requires "
-#~ "the referral module to be installed."
-#~ msgstr ""
-#~ "Notez qu'en activant Ã§a cela permet de dÃ©sactiver le code de cache "
-#~ "AdSense, ce qui peut causer l'augmentation d'utilisation des ressources "
-#~ "pour certains sites. The referral feature requires the referral module to "
-#~ "be installed."
-#~ msgid "This feature requires the referral module to be installed."
-#~ msgstr "Cette fonctionnalitÃ© nÃ©cessite le module referral installÃ©."
-#~ msgid "revenue_sharing_basic"
-#~ msgstr "revenue_sharing_basic"
-#~ msgid "adsense_search"
-#~ msgstr "adsense_search"
-
Index: translations/pl.po
===================================================================
RCS file: translations/pl.po
diff -N translations/pl.po
--- translations/pl.po	16 Jun 2009 19:16:19 -0000	1.1.2.2
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,2171 +0,0 @@
-# $Id: pl.po,v 1.1.2.2 2009/06/16 19:16:19 jcnventura Exp $
-#
-# POLISH translation of Drupal (general)
-# Copyright 2009 MAÅ?YSZ <BARTLOMIEJMALYSZ@GMAIL.COM>
-# Generated from files:
-#  adsense.admin.inc,v 1.5.2.2 2008/08/18 23:34:43 jcnventura
-#  adsense_cse.admin.inc,v 1.2.2.2 2008/08/18 23:34:43 jcnventura
-#  adsense_managed.admin.inc,v 1.2.2.2 2008/08/18 23:34:43 jcnventura
-#  revenue_sharing_basic.admin.inc,v 1.3.4.2 2008/08/18 23:34:44 jcnventura
-#  adsense.module,v 1.66.2.9.2.1 2008/08/18 23:34:43 jcnventura
-#  adsense_cse.results.inc,v 1.2.2.2 2008/08/18 23:34:43 jcnventura
-#  adsense_search.results.inc,v 1.2.2.2 2008/08/18 23:34:44 jcnventura
-#  adsense.install,v 1.8.4.1 2008/08/18 23:34:43 jcnventura
-#  adsense.info,v 1.4.4.1 2008/08/18 23:34:43 jcnventura
-#  adsense_cse.info,v 1.1.4.2 2008/08/18 23:34:43 jcnventura
-#  adsense_managed.info,v 1.1.4.2 2008/08/18 23:34:43 jcnventura
-#  adsense_oldcode.info,v 1.2.2.2 2008/08/18 23:34:44 jcnventura
-#  revenue_sharing_basic.info,v 1.1.4.2 2008/08/18 23:34:44 jcnventura
-#  adsense_search.info,v 1.1.4.2 2008/08/18 23:34:44 jcnventura
-#  adsense_search.admin.inc,v 1.2.2.4 2008/08/20 22:24:42 jcnventura
-#  adsense_oldcode.admin.inc,v 1.2.2.4 2008/08/20 22:24:42 jcnventura
-#  adsense_cse.module,v 1.5.2.3 2008/08/19 23:42:03 jcnventura
-#  adsense_search.module,v 1.4.2.3 2008/08/19 23:42:04 jcnventura
-#  adsense_managed.module,v 1.5.2.2 2008/08/18 23:34:43 jcnventura
-#  adsense_oldcode.module,v 1.4.2.3 2008/08/19 23:42:04 jcnventura
-#  adsense.help.inc,v 1.1.4.2 2008/08/18 23:34:43 jcnventura
-#  adsense.search_options.inc,v 1.2.2.2 2008/08/18 23:34:43 jcnventura
-#  revenue_sharing_basic.module,v 1.4.4.2 2008/08/18 23:34:44 jcnventura
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: 1POT-Creation-Date: 2008-08-21 03:22+0200\n"
-"POT-Creation-Date: 2009-05-13 01:59+0200\n"
-"PO-Revision-Date: 2009-06-16 18:14+0100\n"
-"Last-Translator: Joao Ventura <jcnventura@drupal.org>\n"
-"Language-Team: POLISH <BARTÅ?OMIEJMAÅ?YSZ@GMAIL.COM>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-
-#: adsense.admin.inc:25;152
-#: cse/adsense_cse.admin.inc:26
-#: managed/adsense_managed.admin.inc:24
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:25
-msgid "Help and instructions"
-msgstr "Pomoc i instrukcje"
-
-#: adsense.admin.inc:37
-msgid "Visibility"
-msgstr "WidzialnoÅ›Ä‡"
-
-#: adsense.admin.inc:42
-msgid "Show AdSense on specific pages"
-msgstr "PokaÅ¼ AdSense na wybranych stronach"
-
-#: adsense.admin.inc:44
-msgid "Show on every page except the listed pages."
-msgstr "PokaÅ¼ na kaÅ¼dej stronie prÃ³cz wymienionych poniÅ¼ej"
-
-#: adsense.admin.inc:44
-msgid "Show on only the listed pages."
-msgstr "PokaÅ¼ tylko na poniÅ¼szych stronach"
-
-#: adsense.admin.inc:51
-msgid "Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are  %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page."
-msgstr "Wstaw jednÄ… stronÄ™ na liniÄ™ jako Å›cieÅ¼ki do Drupala. Znak '*' zastÄ™puje inne znaki. PrzykÅ‚adowe Å›cieÅ¼ki: %blog dla strony blogu i %blog-* dla kaÅ¼dego bloga. %front to Strona GÅ‚Ã³wna."
-
-#: adsense.admin.inc:61
-msgid "Show if the following PHP code returns <code>TRUE</code> (PHP-mode, experts only)."
-msgstr ""
-
-#: adsense.admin.inc:62
-msgid "If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can break your Drupal site."
-msgstr ""
-
-#: adsense.admin.inc:69
-msgid "Advanced options"
-msgstr "Zaawansowane opcje"
-
-#: adsense.admin.inc:74
-msgid "Enable test mode?"
-msgstr "WÅ‚Ä…czyÄ‡ tryb testowy?"
-
-#: adsense.admin.inc:76
-msgid "This enables you to test the AdSense module settings. This can be useful in some situations: for example, testing whether revenue sharing is working properly or not without having to display real ads on your site. It is best to test this after you log out."
-msgstr "To pozwala przetestowaÄ‡ ustawienia moduÅ‚u AdSense. MoÅ¼e to byÄ‡ bardzo uÅ¼yteczne w pewnych sytuacjach. Np. testujesz czy podziaÅ‚ zyskÃ³w dziaÅ‚a prawidÅ‚owo bez koniecznoÅ›ci pokazywania reklam na stronie. Najlepiej przetestowaÄ‡ to po wylogowaniu. "
-
-#: adsense.admin.inc:81
-msgid "Disable Google AdSense ads?"
-msgstr "WyÅ‚Ä…czyÄ‡ reklamy AdSense?"
-
-#: adsense.admin.inc:83
-msgid "This disables all display of Google AdSense ads from your web site. This is useful in certain situations, such as site upgrades, or if you make a copy of the site for development and test purposes."
-msgstr "To wyÅ‚Ä…cza widok reklam AdSense na Twojej stronie. Jest to uÅ¼yteczne w pewnych sytuacjach, jak. np. aktualizacja strony albo jeÅ›li robisz kopiÄ™ strony dla celÃ³w wdroÅ¼eniowych i testowych."
-
-#: adsense.admin.inc:88
-msgid "Placeholder when ads are disabled?"
-msgstr ""
-
-#: adsense.admin.inc:90
-msgid "This causes an empty box to be displayed in place of the ads when they are disabled."
-msgstr "WyÅ›wietla puste pudeÅ‚ko w miejscu, gdzie powinny byÄ‡ reklamy, jeÅ›li te sÄ… wyÅ‚Ä…czone."
-
-#: adsense.admin.inc:95
-msgid "Placeholder text to display"
-msgstr "Tekst do wyÅ›wietlenia (placeholder)."
-
-#: adsense.admin.inc:98
-msgid "Enter any text to display as a placeholder when ads are disabled."
-msgstr "WprowadÅº tekst, ktÃ³ry bÄ™dzie wyÅ›wietlany kiedy reklamy sÄ… wyÅ‚Ä…czone."
-
-#: adsense.admin.inc:103
-msgid "Enable AdSense section targeting?"
-msgstr "WÅ‚Ä…czyÄ‡ namierzanie sekcji AdSense?"
-
-#: adsense.admin.inc:105
-msgid "This better targets Google ads to the teaser and body of nodes."
-msgstr "Ta opcja umoÅ¼liwi lepsze dobieranie reklam dla zajawek i zawartoÅ›ci."
-
-#: adsense.admin.inc:112
-msgid "Undocumented options"
-msgstr ""
-
-#: adsense.admin.inc:113
-msgid "Warning: Use of these options is AT YOUR OWN RISK. Google will never generate an ad with any of these options, so using one of them is a violation of Google AdSense's Terms and Conditions. USE OF THESE OPTIONS MAY RESULT IN GETTING BANNED FROM THE PROGRAM. You may lose all the revenue accumulated in your account. FULL RESPONSABILITY FOR THE USE OF THESE OPTIONS IS YOURS. In other words, don't complain to the authors about getting banned, even if using one of these options was provided as a solution to a reported problem."
-msgstr ""
-
-#: adsense.admin.inc:120
-msgid "I agree"
-msgstr ""
-
-#: adsense.admin.inc:125
-msgid "Use Google's AdSense test option?"
-msgstr ""
-
-#: adsense.admin.inc:127
-msgid "With this option set, Google will not count any clicks or page impressions. Revenue is not generated. Make sure that you disable this option in production servers. [!statement]"
-msgstr ""
-
-#: adsense.admin.inc:127
-msgid "Unofficial statement"
-msgstr ""
-
-#: adsense.admin.inc:132
-msgid "Language to display ads"
-msgstr ""
-
-#: adsense.admin.inc:162
-msgid "Site Google AdSense Publisher ID"
-msgstr "Numer identyfikacyjny Google AdSense (Publisher ID)"
-
-#: adsense.admin.inc:165
-msgid "This is the Google AdSense Publisher ID for the site owner. It is used if no other ID is suitable. Get this in your Google Adsense account. It should be similar to %id."
-msgstr "To jest numer identyfikacyjny publicysty AdSense (Google AdSense Publisher ID) dla strony wÅ‚aÅ›ciciela. BÄ™dzie on uÅ¼ywany, jeÅ›li dostarczone  ID jest bÅ‚Ä™dne. Ten kod widnieje w Twoim koncie AdSense. Powinien byÄ‡ analogiczny do %id."
-
-#: adsense.admin.inc:172
-msgid "Publisher ID module"
-msgstr "ModuÅ‚ Publisher ID"
-
-#: adsense.module:54
-msgid "4-links 120x90"
-msgstr "4-linki 120x90"
-
-#: adsense.module:55
-msgid "4-links 160x90"
-msgstr "4-linki 160x90"
-
-#: adsense.module:56
-msgid "4-links 180x90"
-msgstr "4-linki 180x90"
-
-#: adsense.module:57
-msgid "4-links 200x90"
-msgstr "4-linki 200x90"
-
-#: adsense.module:58
-msgid "4-links 468x15"
-msgstr "4-linki 468x15"
-
-#: adsense.module:59
-msgid "4-links 728x15"
-msgstr "4-linki 728x15"
-
-#: adsense.module:60
-msgid "5-links 120x90"
-msgstr "5 linkÃ³w 120x9"
-
-#: adsense.module:61
-msgid "5-links 160x90"
-msgstr "5 linkÃ³w 160x09"
-
-#: adsense.module:62
-msgid "5-links 180x90"
-msgstr "5 linkÃ³w 180x90"
-
-#: adsense.module:63
-msgid "5-links 200x90"
-msgstr "5 linkÃ³w 200x90"
-
-#: adsense.module:64
-msgid "5-links 468x15"
-msgstr "5 linkÃ³w 468x15"
-
-#: adsense.module:65
-msgid "5-links 728x15"
-msgstr "5 linkÃ³w 728x15"
-
-#: adsense.module:66
-msgid "Vertical banner"
-msgstr "Baner Pionowy"
-
-#: adsense.module:67
-msgid "Skyscraper"
-msgstr "WieÅ¼owiec"
-
-#: adsense.module:68
-msgid "Button"
-msgstr "Przycisk"
-
-#: adsense.module:69
-msgid "Wide Skyscraper"
-msgstr "Szeroki WieÅ¼owiec"
-
-#: adsense.module:70
-msgid "Small Rectangle"
-msgstr "MaÅ‚y ProstokÄ…t"
-
-#: adsense.module:71
-msgid "Small Square"
-msgstr "MaÅ‚y Kwadrat"
-
-#: adsense.module:72
-msgid "Half Banner"
-msgstr "PÃ³Å‚-baner"
-
-#: adsense.module:73
-msgid "Square"
-msgstr "Kwadrat"
-
-#: adsense.module:74
-msgid "Medium Rectangle"
-msgstr "Åšredni ProstokÄ…t"
-
-#: adsense.module:75
-msgid "Large Rectangle"
-msgstr "DuÅ¼y ProstokÄ…t"
-
-#: adsense.module:76
-msgid "Banner"
-msgstr "Baner"
-
-#: adsense.module:77
-msgid "Leaderboard"
-msgstr "DÅ‚ugi Baner"
-
-#: adsense.module:85
-msgid "AdSense for Search"
-msgstr "AdSense dla wyszukiwania"
-
-#: adsense.module:179
-msgid "AdSense tag"
-msgstr "sÅ‚owo kluczowe / podpis AdSense"
-
-#: adsense.module:183
-msgid "Substitutes an AdSense special tag with an ad."
-msgstr "ZastÄ™puje znak specjalny AdSense reklamÄ…"
-
-#: adsense.module:219
-msgid "The HTML corrector filter has a bug that causes problems with the use of the AdSense tag. Disabling the HTML corrector filter is recommended."
-msgstr ""
-
-#: adsense.module:228
-msgid "Use the special tag [adsense:<em>format</em>:<em>slot</em>] or [adsense:<em>format</em>:<em>[group]</em>:<em>[channel]</em><em>[:slot]</em>] or [adsense:block:<em>location</em>] to display Google AdSense ads."
-msgstr "UÅ¼yj specjalny kod [adsense:<em>format</em>:<em>okienko</em>] lub [adsense:<em>format</em>:<em>[grupa]</em>:<em>[kanaÅ‚]</em><em>[:okienko]</em>] or [adsense:blok:<em>lokacja</em>] do wyÅ›wietlania reklam AdSense."
-
-#: (duplicate) adsense.module:162
-#: ;120
-#: old/search/adsense_search.results.inc:17
-msgid "AdSense"
-msgstr "AdSense"
-
-#: (duplicate) adsense.module:163
-msgid "Publisher ID is not set."
-msgstr "Identyfikator wydawcy jest nieustawiony."
-
-#: (duplicate) adsense.module:164
-msgid "Please configure it in the <a href=\"@url\">AdSense settings page</a>."
-msgstr "ProszÄ™ skonfiguruj go na : <a href=\"@url\">stronie ustawieÅ„ Adsense</a>"
-
-#: adsense.module:99
-msgid "administer adsense"
-msgstr "zarzÄ…dzaj AdSense"
-
-#: adsense.module:99
-msgid "hide adsense"
-msgstr "ukryj AdSense"
-
-#: adsense.module:99
-msgid "use PHP for ad visibility"
-msgstr ""
-
-#: adsense.module:121
-msgid "Configure Google AdSense Ads."
-msgstr "Skonfiguruj reklamy Google Adsense"
-
-#: adsense.module:128
-msgid "Settings"
-msgstr "Ustawienia"
-
-#: adsense.module:133
-msgid "Publisher ID"
-msgstr "Identyfikacja (Publisher ID)"
-
-#: adsense.module:142
-msgid "Site ID"
-msgstr "Ndentyfikacja strony (Site ID)"
-
-#: adsense.info:0
-msgid "AdSense core"
-msgstr "jÄ…dro AdSense"
-
-#: adsense.info:0
-msgid "Displays Google AdSense ads on your site to earn revenue. Requires at least one additional ad unit generator module."
-msgstr "WyÅ›wietla reklamy Google AdSense na Twojej stronie. Wymaga to co najmniej jednego dodatkowego moduÅ‚u jednostek reklam."
-
-#: adsense.info:0
-#: contrib/adsense_click/adsense_click.info:0
-#: cse/adsense_cse.info:0
-#: managed/adsense_managed.info:0
-#: old/oldcode/adsense_oldcode.info:0
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-#: old/search/adsense_search.info:0
-msgid "Adsense"
-msgstr "AdSense"
-
-#: contrib/adsense_click/adsense_click.admin.inc:15
-msgid "Click tracking"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:20
-msgid "Enable AdSense click tracking?"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:22
-msgid "Logs IP and time of <a href=!url>AdSense clicks</a>. This can be very useful in tracking which of your pages generate the most clicks, as well as help if click fraud is suspected."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:26
-msgid "Enable name resolution of IP addresses?"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.admin.inc:28
-msgid "Display the domain name instead of the IP address. This can slow down the display of the logs page and tie up a PHP process for several seconds. On some hosting providers it may not be available."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:14
-msgid "Timestamp"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:15;46
-msgid "Path"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:16
-msgid "IP/Host"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:17
-msgid "Referrer"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:47;70
-#: contrib/adsense_click/adsense_click.module:22
-msgid "Clicks"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:48
-msgid "Last"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.logs.inc:69
-msgid "Day"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:66
-msgid "view clicks"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:23
-msgid "Track the clicks on Adsense ads."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:32
-msgid "AdSense clicks"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:33
-msgid "Track AdSense clicks."
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:40
-msgid "Top pages"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.module:47
-msgid "By day"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.info:0
-msgid "AdSense Click Tracking"
-msgstr ""
-
-#: contrib/adsense_click/adsense_click.info:0
-msgid "Tracks clicks to Google Adsense"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:38
-#: old/search/adsense_search.admin.inc:25
-msgid "Search Box Options"
-msgstr "Opcje pola wyszukiwaÅ„"
-
-#: cse/adsense_cse.admin.inc:43
-#: old/search/adsense_search.admin.inc:61
-msgid "Logo Type"
-msgstr "Typ logo"
-
-#: cse/adsense_cse.admin.inc:46
-msgid "Watermark on search box (requires JavaScript)"
-msgstr "Znak wodny na polu wyszukiwania (wymaga JavaScript)"
-
-#: cse/adsense_cse.admin.inc:47
-msgid "Next to the search box"
-msgstr "NastÄ™pne po polu wyszukiwania"
-
-#: cse/adsense_cse.admin.inc:48
-msgid "Below the search box"
-msgstr "PoniÅ¼ej pola wyszukiwania"
-
-#: cse/adsense_cse.admin.inc:54
-#: old/oldcode/adsense_oldcode.admin.inc:92
-#: old/search/adsense_search.admin.inc:78
-msgid "Background color"
-msgstr "kolor tÅ‚a"
-
-#: cse/adsense_cse.admin.inc:57
-#: old/search/adsense_search.admin.inc:81;93
-msgid "White"
-msgstr "BiaÅ‚y"
-
-#: cse/adsense_cse.admin.inc:58
-#: old/search/adsense_search.admin.inc:83
-msgid "Gray"
-msgstr "Szary"
-
-#: cse/adsense_cse.admin.inc:59
-#: old/search/adsense_search.admin.inc:82;92
-msgid "Black"
-msgstr "Czarny"
-
-#: cse/adsense_cse.admin.inc:65
-#: old/search/adsense_search.admin.inc:106
-msgid "Site Encoding"
-msgstr "Kodowanie strony"
-
-#: cse/adsense_cse.admin.inc:72
-msgid "Text Box Length"
-msgstr "DÅ‚ugoÅ›Ä‡ pola tekstowego"
-
-#: cse/adsense_cse.admin.inc:80
-msgid "Watermark Language"
-msgstr ""
-
-#: cse/adsense_cse.admin.inc:89
-#: old/search/adsense_search.admin.inc:123
-msgid "Search Results Style"
-msgstr "WyglÄ…d WynikÃ³w Wyszukiwania"
-
-#: cse/adsense_cse.admin.inc:94
-#: old/search/adsense_search.admin.inc:128
-msgid "Country or territory for Google domain"
-msgstr "Kraj lub terytorium domeny"
-
-#: cse/adsense_cse.admin.inc:101
-#: old/search/adsense_search.admin.inc:135
-msgid "Width of results area"
-msgstr "SzerokoÅ›Ä‡ pola wynikÃ³w"
-
-#: cse/adsense_cse.admin.inc:109
-msgid "Ad Location"
-msgstr "Lokalizacja reklam"
-
-#: cse/adsense_cse.admin.inc:112
-msgid "Top and Right"
-msgstr "Top i na prawo"
-
-#: cse/adsense_cse.admin.inc:113
-msgid "Top and Bottom"
-msgstr "GÃ³ra i DÃ³Å‚"
-
-#: cse/adsense_cse.admin.inc:114
-#: managed/adsense_managed.module:94
-#: old/oldcode/adsense_oldcode.module:120
-msgid "Right"
-msgstr "Prawo"
-
-#: cse/adsense_cse.admin.inc:122
-#: managed/adsense_managed.admin.inc:36
-#: old/oldcode/adsense_oldcode.admin.inc:22
-#: old/search/adsense_search.admin.inc:226
-msgid "AdSense Blocks"
-msgstr "Bloki AdSense"
-
-#: cse/adsense_cse.admin.inc:127
-#: managed/adsense_managed.admin.inc:41
-#: old/oldcode/adsense_oldcode.admin.inc:27
-#: old/search/adsense_search.admin.inc:231
-msgid "Number of blocks"
-msgstr "Liczba blokÃ³w"
-
-#: cse/adsense_cse.admin.inc:146
-#: old/search/adsense_search.admin.inc:268
-msgid "Text Box Length must be between !min and !max"
-msgstr "DÅ‚ugoÅ›Ä‡ Pola Tekstowego musi byÄ‡ pomiÄ™dzy !min a !max"
-
-#: cse/adsense_cse.admin.inc:152
-msgid "Results area width must be between !min and !max"
-msgstr "SzerokoÅ›Ä‡ obszaru wynikÃ³w musi byÄ‡ pomiÄ™dzy !min a !max"
-
-#: cse/adsense_cse.admin.inc:156
-#: managed/adsense_managed.admin.inc:58
-#: old/oldcode/adsense_oldcode.admin.inc:168
-#: old/search/adsense_search.admin.inc:273
-msgid "Number of blocks can't be a negative number"
-msgstr "Liczba blokÃ³w nie moÅ¼e byÄ‡ ujemna"
-
-#: cse/adsense_cse.module:65
-msgid "AdSense CSE: unconfigured "
-msgstr "Nieskonfigurowano AdSense CSE"
-
-#: cse/adsense_cse.module:76
-#: managed/adsense_managed.module:61
-#: old/oldcode/adsense_oldcode.module:82
-#: old/search/adsense_search.module:92
-msgid "Block description"
-msgstr "Opis bloku"
-
-#: cse/adsense_cse.module:79
-#: managed/adsense_managed.module:64
-#: old/oldcode/adsense_oldcode.module:85
-#: old/search/adsense_search.module:95
-msgid "A brief description of your block. Used on the <a href=\"@overview\">block overview page</a>."
-msgstr "KrÃ³tki opis Twojego bloku. UÅ¼ywany na stronie <a href=\"@overview\">zarzÄ…dzania blokami</a>."
-
-#: cse/adsense_cse.module:86
-#: managed/adsense_managed.module:80
-msgid "Ad Slot ID"
-msgstr "Identyfikator KanaÅ‚u reklamy"
-
-#: cse/adsense_cse.module:88
-msgid "This is the provided by the AdSense site in the Search Box Code \"cx\" field. This is usually provided in the form partner-<em>Publisher ID</em>:<em>Slot Id</em>. If the code provided is, for example, partner-pub-0123456789:<strong>abcdef-ghij</strong>, then insert only <strong>abcdef-ghij</strong> here."
-msgstr "Ten kod znajduje siÄ™ w polu \"cx\" kodu wyszukiwania. Zazwyczaj jest dostarczone w formie <em>identyfikator wydawcy</em>:<em>identyfikator kanaÅ‚u</em>"
-
-#: cse/adsense_cse.module:101
-#: managed/adsense_managed.module:109
-#: old/oldcode/adsense_oldcode.module:135
-#: old/search/adsense_search.module:116
-msgid "AdSense unconfigured block. <a href=!url>Click to configure.</a>"
-msgstr "Nieskonfigurowany blok AdSense. <a href=!url>Kliknij by przejÅ›Ä‡ do konfiguracji.</a>"
-
-#: cse/adsense_cse.module:143
-#: old/search/adsense_search.module:187;45
-msgid "Search"
-msgstr "Szukaj"
-
-#: cse/adsense_cse.module:144;34
-msgid "Custom Search"
-msgstr "Custom Search"
-
-#: cse/adsense_cse.module:43
-#: old/search/adsense_search.module:54
-msgid "Search Results"
-msgstr "Wyniki wyszukiwania"
-
-#: cse/adsense_cse.info:0
-msgid "CSE Search"
-msgstr "CSE Search"
-
-#: cse/adsense_cse.info:0
-msgid "AdSense for Search generator module. This module uses the new Custom Search Engine code created via the Adsense interface."
-msgstr "AdSense for Search generator module. This module uses the new Custom Search Engine code created via the Adsense interface"
-
-#: help/adsense.help.inc:23
-msgid "Format"
-msgstr "Format"
-
-#: help/adsense.help.inc:23
-msgid "Description"
-msgstr "Opis"
-
-#: help/adsense.help.inc:23
-msgid "Width"
-msgstr "SzerokoÅ›Ä‡"
-
-#: help/adsense.help.inc:23
-msgid "Height"
-msgstr "WysokoÅ›Ä‡"
-
-#: help/adsense.help.inc:35
-msgid "Custom search help"
-msgstr ""
-
-#: help/adsense.help.inc:38
-msgid "Adsense CSE module (which must be enabled; !link) and refer to its help"
-msgstr ""
-
-#: help/adsense.help.inc:38
-msgid "modules"
-msgstr ""
-
-#: includes/adsense.search_options.inc:17
-msgid "West European Latin-1 (ISO-8859-1)"
-msgstr "zachodnioeuropejski"
-
-#: includes/adsense.search_options.inc:18
-msgid "West European Latin-9 (ISO-8859-15)"
-msgstr "zachodnioeuropejski"
-
-#: includes/adsense.search_options.inc:19
-msgid "Western (Windows-1252)"
-msgstr "zachodni"
-
-#: includes/adsense.search_options.inc:20
-msgid "Nordic Latin-6 (ISO-8859-10)"
-msgstr "nordycki"
-
-#: includes/adsense.search_options.inc:21
-msgid "Greek (ISO-8859-7)"
-msgstr "grecki"
-
-#: includes/adsense.search_options.inc:22
-msgid "Japanese (Shift_JIS)"
-msgstr "japoÅ„ski"
-
-#: includes/adsense.search_options.inc:23
-msgid "Japanese (EUC-JP)"
-msgstr "japoÅ„ski"
-
-#: includes/adsense.search_options.inc:24
-msgid "Japanese (ISO-2022-JP)"
-msgstr "japoÅ„ski"
-
-#: includes/adsense.search_options.inc:25
-msgid "Chinese Simplified (GB2312)"
-msgstr "chiÅ„ski uproszczony"
-
-#: includes/adsense.search_options.inc:26
-msgid "Chinese Simplified (GB18030)"
-msgstr "chiÅ„ski uproszczon"
-
-#: includes/adsense.search_options.inc:27
-msgid "Chinese Traditional (Big5)"
-msgstr "chiÅ„ski tradycyjny"
-
-#: includes/adsense.search_options.inc:28
-msgid "Korean (EUC-KR)"
-msgstr "koreaÅ„ski"
-
-#: includes/adsense.search_options.inc:29
-msgid "Thai (Windows-874)"
-msgstr "tajski"
-
-#: includes/adsense.search_options.inc:30
-msgid "Vietnamese (Windows-1258)"
-msgstr "wietnamski"
-
-#: includes/adsense.search_options.inc:31
-msgid "Central European Latin-2 (ISO-8859-2)"
-msgstr "Å›rodkowo-europejski"
-
-#: includes/adsense.search_options.inc:32
-msgid "Central European (Windows-1250)"
-msgstr "Å›rodkowo-europejski"
-
-#: includes/adsense.search_options.inc:33
-msgid "Central European (CP852)"
-msgstr "Å›rodkowo-europejski"
-
-#: includes/adsense.search_options.inc:34
-msgid "Turkish Latin-5 (ISO-8859-9)"
-msgstr "turecki"
-
-#: includes/adsense.search_options.inc:35
-msgid "Turkish (Windows-1254)"
-msgstr "turecki"
-
-#: includes/adsense.search_options.inc:36
-msgid "South European Latin-3 (ISO-8859-3)"
-msgstr "poÅ‚udniowo-europejski"
-
-#: includes/adsense.search_options.inc:37
-msgid "Hebrew (ISO-8859-8-I)"
-msgstr "hebrajski"
-
-#: includes/adsense.search_options.inc:38
-msgid "Hebrew (Windows-1255)"
-msgstr "hebrajski"
-
-#: includes/adsense.search_options.inc:39
-msgid "Arabic (Windows-1256)"
-msgstr "arabski"
-
-#: includes/adsense.search_options.inc:40
-msgid "Cyrillic (ISO-8859-5)"
-msgstr "cyrylica"
-
-#: includes/adsense.search_options.inc:41
-msgid "Cyrillic (KOI8-R)"
-msgstr "cyrylica"
-
-#: includes/adsense.search_options.inc:42
-msgid "Cyrillic (Windows-1251)"
-msgstr "cyrylica"
-
-#: includes/adsense.search_options.inc:43
-msgid "Cyrillic/Russian (CP-866)"
-msgstr "cyrylica"
-
-#: includes/adsense.search_options.inc:44
-msgid "Unicode (UTF-8)"
-msgstr "Unicode (UTF-8)"
-
-#: includes/adsense.search_options.inc:56
-msgid "United Kingdom"
-msgstr "Wielka Brytania"
-
-#: includes/adsense.search_options.inc:57
-msgid "Canada"
-msgstr "Kanada"
-
-#: includes/adsense.search_options.inc:58
-msgid "Germany"
-msgstr "Niemcy"
-
-#: includes/adsense.search_options.inc:59
-msgid "Japan"
-msgstr "Japonia"
-
-#: includes/adsense.search_options.inc:60
-msgid "France"
-msgstr "Francja"
-
-#: includes/adsense.search_options.inc:61
-msgid "Australia"
-msgstr "Australia"
-
-#: includes/adsense.search_options.inc:62
-msgid "Italy"
-msgstr "WÅ‚ochy"
-
-#: includes/adsense.search_options.inc:63
-msgid "Austria"
-msgstr "Austria"
-
-#: includes/adsense.search_options.inc:64
-msgid "Switzerland"
-msgstr "Szwajacaria"
-
-#: includes/adsense.search_options.inc:65
-msgid "Spain"
-msgstr "Hiszpania"
-
-#: includes/adsense.search_options.inc:66
-msgid "Netherlands"
-msgstr "Holandia"
-
-#: includes/adsense.search_options.inc:67
-msgid "Belgium"
-msgstr "Belgia"
-
-#: includes/adsense.search_options.inc:68
-msgid "Denmark"
-msgstr "Dania"
-
-#: includes/adsense.search_options.inc:69
-msgid "Sweden"
-msgstr "Szwecja"
-
-#: includes/adsense.search_options.inc:70
-msgid "Norway"
-msgstr "Norwegia"
-
-#: includes/adsense.search_options.inc:71
-msgid "Brazil"
-msgstr "Brazylia"
-
-#: includes/adsense.search_options.inc:72
-msgid "Portugal"
-msgstr "Portugalia"
-
-#: includes/adsense.search_options.inc:73
-msgid "Finland"
-msgstr "Finlandia"
-
-#: includes/adsense.search_options.inc:74
-msgid "South Korea"
-msgstr "PoÅ‚udniowa Korea"
-
-#: includes/adsense.search_options.inc:75
-msgid "China"
-msgstr "Chiny"
-
-#: includes/adsense.search_options.inc:76
-msgid "Hong Kong"
-msgstr "Hong Kong"
-
-#: includes/adsense.search_options.inc:77
-msgid "Taiwan"
-msgstr "Tajwan"
-
-#: includes/adsense.search_options.inc:78
-msgid "Singapore"
-msgstr "Singapur"
-
-#: includes/adsense.search_options.inc:79
-msgid "Afghanistan"
-msgstr "Afganistan"
-
-#: includes/adsense.search_options.inc:80
-msgid "Albania"
-msgstr "Albania"
-
-#: includes/adsense.search_options.inc:81
-msgid "Algeria"
-msgstr "Algieria"
-
-#: includes/adsense.search_options.inc:82
-msgid "American Samoa"
-msgstr "Samoa amerykaÅ„ska"
-
-#: includes/adsense.search_options.inc:83
-msgid "Andorra"
-msgstr "Andora"
-
-#: includes/adsense.search_options.inc:84
-msgid "Angola"
-msgstr "Angola"
-
-#: includes/adsense.search_options.inc:85
-msgid "Anguilla"
-msgstr "Anguila"
-
-#: includes/adsense.search_options.inc:86
-msgid "Antarctica"
-msgstr "Antarktyda"
-
-#: includes/adsense.search_options.inc:87
-msgid "Antigua and Barbuda"
-msgstr "Antigua i Barbuda"
-
-#: includes/adsense.search_options.inc:88
-msgid "Argentina"
-msgstr "Argentyna"
-
-#: includes/adsense.search_options.inc:89
-msgid "Armenia"
-msgstr "Armenia"
-
-#: includes/adsense.search_options.inc:90
-msgid "Aruba"
-msgstr "Aruba"
-
-#: includes/adsense.search_options.inc:91
-msgid "Azerbaijan"
-msgstr "AzerbejdÅ¼an"
-
-#: includes/adsense.search_options.inc:92
-msgid "Bahamas"
-msgstr "Bahamy"
-
-#: includes/adsense.search_options.inc:93
-msgid "Bahrain"
-msgstr "Bahrajn"
-
-#: includes/adsense.search_options.inc:94
-msgid "Bangladesh"
-msgstr "Bangladesz"
-
-#: includes/adsense.search_options.inc:95
-msgid "Barbados"
-msgstr "Barbados"
-
-#: includes/adsense.search_options.inc:96
-msgid "Belarus"
-msgstr "BiaÅ‚oruÅ›"
-
-#: includes/adsense.search_options.inc:97
-msgid "Belize"
-msgstr "Belise"
-
-#: includes/adsense.search_options.inc:98
-msgid "Benin"
-msgstr ""
-
-#: includes/adsense.search_options.inc:99
-msgid "Bermuda"
-msgstr "Bermudy"
-
-#: includes/adsense.search_options.inc:100
-msgid "Bhutan"
-msgstr "Butan"
-
-#: includes/adsense.search_options.inc:101
-msgid "Bolivia"
-msgstr "Boliwia"
-
-#: includes/adsense.search_options.inc:102
-msgid "Bosnia and Herzegovina"
-msgstr "BoÅ›nia i Hercegowina"
-
-#: includes/adsense.search_options.inc:103
-msgid "Botswana"
-msgstr "Botswana"
-
-#: includes/adsense.search_options.inc:104
-msgid "Bouvet Island"
-msgstr ""
-
-#: includes/adsense.search_options.inc:105
-msgid "British Indian Ocean Territory"
-msgstr "Terytorium Brytyjskie na Oceani Indyjskim"
-
-#: includes/adsense.search_options.inc:106
-msgid "Brunei Darussalam"
-msgstr ""
-
-#: includes/adsense.search_options.inc:107
-msgid "Bulgaria"
-msgstr "BuÅ‚garia"
-
-#: includes/adsense.search_options.inc:108
-msgid "Burkina Faso"
-msgstr "Burkina Faso"
-
-#: includes/adsense.search_options.inc:109
-msgid "Burundi"
-msgstr "Burundi"
-
-#: includes/adsense.search_options.inc:110
-msgid "Cambodia"
-msgstr "KambodÅ¼a"
-
-#: includes/adsense.search_options.inc:111
-msgid "Cameroon"
-msgstr "Kamrun"
-
-#: includes/adsense.search_options.inc:112
-msgid "Cape Verde"
-msgstr "Republika Zielonego PrzylÄ…dka"
-
-#: includes/adsense.search_options.inc:113
-msgid "Cayman Islands"
-msgstr "Kajmany"
-
-#: includes/adsense.search_options.inc:114
-msgid "Central African Republic"
-msgstr "Republika ÅšrodkowoafrykaÅ„ska"
-
-#: includes/adsense.search_options.inc:115
-msgid "Chad"
-msgstr "Czad"
-
-#: includes/adsense.search_options.inc:116
-msgid "Chile"
-msgstr "Czile"
-
-#: includes/adsense.search_options.inc:117
-msgid "Christmas Island"
-msgstr "Wyspa Wielkanocna"
-
-#: includes/adsense.search_options.inc:118
-msgid "Cocos (Keeling) Islands"
-msgstr "Wyspy Kokosowe (Kelinga)"
-
-#: includes/adsense.search_options.inc:119
-msgid "Colombia"
-msgstr "Kolumbia"
-
-#: includes/adsense.search_options.inc:120
-msgid "Comoros"
-msgstr "Komory"
-
-#: includes/adsense.search_options.inc:121
-msgid "Congo"
-msgstr "Kongo"
-
-#: includes/adsense.search_options.inc:122
-msgid "Congo,Democratic Republic"
-msgstr "Republika Demokratyczna Kongo"
-
-#: includes/adsense.search_options.inc:123
-msgid "Cook Islands"
-msgstr "Wyspy Cooka"
-
-#: includes/adsense.search_options.inc:124
-msgid "Costa Rica"
-msgstr "Kostaryka"
-
-#: includes/adsense.search_options.inc:125
-msgid "Cote d'Ivoire"
-msgstr "WybrzeÅ¼e KoÅ›ci SÅ‚oniowej"
-
-#: includes/adsense.search_options.inc:126
-msgid "Croatia"
-msgstr "Chorwacja"
-
-#: includes/adsense.search_options.inc:127
-msgid "Cuba"
-msgstr "Kuba"
-
-#: includes/adsense.search_options.inc:128
-msgid "Cyprus"
-msgstr "Cypr"
-
-#: includes/adsense.search_options.inc:129
-msgid "Czech Republic"
-msgstr "Czechy"
-
-#: includes/adsense.search_options.inc:130
-msgid "Djibouti"
-msgstr "DÅ¼ibuti"
-
-#: includes/adsense.search_options.inc:131
-msgid "Dominica"
-msgstr "Dominika"
-
-#: includes/adsense.search_options.inc:132
-msgid "Dominican Republic"
-msgstr "Dominikana"
-
-#: includes/adsense.search_options.inc:133
-msgid "East Timor"
-msgstr "Wschodni Tymor"
-
-#: includes/adsense.search_options.inc:134
-msgid "Ecuador"
-msgstr "Ekwador"
-
-#: includes/adsense.search_options.inc:135
-msgid "Egypt"
-msgstr "Egipt"
-
-#: includes/adsense.search_options.inc:136
-msgid "El Salvador"
-msgstr "Salwador"
-
-#: includes/adsense.search_options.inc:137
-msgid "Equatorial Guinea"
-msgstr "Gwinea RÃ³wnikowa"
-
-#: includes/adsense.search_options.inc:138
-msgid "Eritrea"
-msgstr "Erytrea"
-
-#: includes/adsense.search_options.inc:139
-msgid "Estonia"
-msgstr "Estonia"
-
-#: includes/adsense.search_options.inc:140
-msgid "Ethiopia"
-msgstr "Etiopia"
-
-#: includes/adsense.search_options.inc:141
-msgid "Falkland Islands (Malvinas)"
-msgstr "Falklandy"
-
-#: includes/adsense.search_options.inc:142
-msgid "Faroe Islands"
-msgstr "Wyspy Owcze"
-
-#: includes/adsense.search_options.inc:143
-msgid "Fiji"
-msgstr "FidÅ¼i"
-
-#: includes/adsense.search_options.inc:144
-msgid "French Guiana"
-msgstr "Gujana francuska"
-
-#: includes/adsense.search_options.inc:145
-msgid "French Polynesia"
-msgstr "Polinezja francuska"
-
-#: includes/adsense.search_options.inc:146
-msgid "French Southern Territories"
-msgstr "Francuskie terytoria poÅ‚udniowe"
-
-#: includes/adsense.search_options.inc:147
-msgid "Gabon"
-msgstr "Gabon"
-
-#: includes/adsense.search_options.inc:148
-msgid "Gambia"
-msgstr "Gambia"
-
-#: includes/adsense.search_options.inc:149
-msgid "Georgia"
-msgstr "Gruzja"
-
-#: includes/adsense.search_options.inc:150
-msgid "Ghana"
-msgstr "Ghana"
-
-#: includes/adsense.search_options.inc:151
-msgid "Gibraltar"
-msgstr "Gibraltar"
-
-#: includes/adsense.search_options.inc:152
-msgid "Greece"
-msgstr "Grecja"
-
-#: includes/adsense.search_options.inc:153
-msgid "Greenland"
-msgstr "Grenlandia"
-
-#: includes/adsense.search_options.inc:154
-msgid "Grenada"
-msgstr "Grenada"
-
-#: includes/adsense.search_options.inc:155
-msgid "Guadeloupe"
-msgstr "Gwadelupa"
-
-#: includes/adsense.search_options.inc:156
-msgid "Guam"
-msgstr "Guam"
-
-#: includes/adsense.search_options.inc:157
-msgid "Guatemala"
-msgstr "Gwatemala"
-
-#: includes/adsense.search_options.inc:158
-msgid "Guinea"
-msgstr "Gwinea"
-
-#: includes/adsense.search_options.inc:159
-msgid "Guinea-Bissau"
-msgstr "Gwinea Bissau"
-
-#: includes/adsense.search_options.inc:160
-msgid "Guyana"
-msgstr "Gujana"
-
-#: includes/adsense.search_options.inc:161
-msgid "Haiti"
-msgstr "Taiti"
-
-#: includes/adsense.search_options.inc:162
-msgid "Heard and McDonald Islands"
-msgstr "Wyspy Heard i McDonalda"
-
-#: includes/adsense.search_options.inc:163
-msgid "Honduras"
-msgstr "Honduras"
-
-#: includes/adsense.search_options.inc:164
-msgid "Hungary"
-msgstr "WÄ™gry"
-
-#: includes/adsense.search_options.inc:165
-msgid "Iceland"
-msgstr "Islandia"
-
-#: includes/adsense.search_options.inc:166
-msgid "India"
-msgstr "Indie"
-
-#: includes/adsense.search_options.inc:167
-msgid "Indonesia"
-msgstr "Indonezja"
-
-#: includes/adsense.search_options.inc:168
-msgid "Iran"
-msgstr "Iran"
-
-#: includes/adsense.search_options.inc:169
-msgid "Iraq"
-msgstr "Irak"
-
-#: includes/adsense.search_options.inc:170
-msgid "Ireland"
-msgstr "Irlandia"
-
-#: includes/adsense.search_options.inc:171
-msgid "Israel"
-msgstr "Izrael"
-
-#: includes/adsense.search_options.inc:172
-msgid "Jamaica"
-msgstr "Jamajka"
-
-#: includes/adsense.search_options.inc:173
-msgid "Jordan"
-msgstr "Jordan"
-
-#: includes/adsense.search_options.inc:174
-msgid "Kazakhstan"
-msgstr "Kazahstan"
-
-#: includes/adsense.search_options.inc:175
-msgid "Kenya"
-msgstr "Kenia"
-
-#: includes/adsense.search_options.inc:176
-msgid "Kiribati"
-msgstr "Kiribati"
-
-#: includes/adsense.search_options.inc:177
-msgid "Kuwait"
-msgstr "Kuwejt"
-
-#: includes/adsense.search_options.inc:178
-msgid "Kyrgyzstan"
-msgstr "Kirgistan"
-
-#: includes/adsense.search_options.inc:179
-msgid "Lao People's Democratic Republic"
-msgstr "Laos"
-
-#: includes/adsense.search_options.inc:180
-msgid "Latvia"
-msgstr "Å?otwa"
-
-#: includes/adsense.search_options.inc:181
-msgid "Lebanon"
-msgstr "Liban"
-
-#: includes/adsense.search_options.inc:182
-msgid "Lesotho"
-msgstr "Lesoto"
-
-#: includes/adsense.search_options.inc:183
-msgid "Liberia"
-msgstr "Liberia"
-
-#: includes/adsense.search_options.inc:184
-msgid "Libya"
-msgstr "Libia"
-
-#: includes/adsense.search_options.inc:185
-msgid "Liechtenstein"
-msgstr "Lichtensztajn"
-
-#: includes/adsense.search_options.inc:186
-msgid "Lithuania"
-msgstr "Litwa"
-
-#: includes/adsense.search_options.inc:187
-msgid "Luxembourg"
-msgstr "Luksemburg"
-
-#: includes/adsense.search_options.inc:188
-msgid "Macau"
-msgstr "Makao"
-
-#: includes/adsense.search_options.inc:189
-msgid "Macedonia"
-msgstr "Macedonia"
-
-#: includes/adsense.search_options.inc:190
-msgid "Madagascar"
-msgstr "Madagaskar"
-
-#: includes/adsense.search_options.inc:191
-msgid "Malawi"
-msgstr "Malawi"
-
-#: includes/adsense.search_options.inc:192
-msgid "Malaysia"
-msgstr "Malezja"
-
-#: includes/adsense.search_options.inc:193
-msgid "Maldives"
-msgstr "Malediwy"
-
-#: includes/adsense.search_options.inc:194
-msgid "Mali"
-msgstr "Mali"
-
-#: includes/adsense.search_options.inc:195
-msgid "Malta"
-msgstr "Mali"
-
-#: includes/adsense.search_options.inc:196
-msgid "Marshall Islands"
-msgstr "Wyspy Marshalla"
-
-#: includes/adsense.search_options.inc:197
-msgid "Martinique"
-msgstr "Martinika"
-
-#: includes/adsense.search_options.inc:198
-msgid "Mauritania"
-msgstr "Mauretania"
-
-#: includes/adsense.search_options.inc:199
-msgid "Mauritius"
-msgstr "Mauritius"
-
-#: includes/adsense.search_options.inc:200
-msgid "Mayotte"
-msgstr "Mayotte"
-
-#: includes/adsense.search_options.inc:201
-msgid "Mexico"
-msgstr "Meksyk"
-
-#: includes/adsense.search_options.inc:202
-msgid "Micronesia"
-msgstr "Mikronezja"
-
-#: includes/adsense.search_options.inc:203
-msgid "Moldova"
-msgstr "MoÅ‚dawia"
-
-#: includes/adsense.search_options.inc:204
-msgid "Monaco"
-msgstr "Monako"
-
-#: includes/adsense.search_options.inc:205
-msgid "Mongolia"
-msgstr "Mongolia"
-
-#: includes/adsense.search_options.inc:206
-msgid "Montserrat"
-msgstr "Montserrat"
-
-#: includes/adsense.search_options.inc:207
-msgid "Morocco"
-msgstr "Maroko"
-
-#: includes/adsense.search_options.inc:208
-msgid "Mozambique"
-msgstr "Mozambik"
-
-#: includes/adsense.search_options.inc:209
-msgid "Myanmar"
-msgstr "Myanmar"
-
-#: includes/adsense.search_options.inc:210
-msgid "Namibia"
-msgstr "Namibia"
-
-#: includes/adsense.search_options.inc:211
-msgid "Nauru"
-msgstr "Nauru"
-
-#: includes/adsense.search_options.inc:212
-msgid "Nepal"
-msgstr "Nepal"
-
-#: includes/adsense.search_options.inc:213
-msgid "Netherlands Antilles"
-msgstr "Antyle holenderskie"
-
-#: includes/adsense.search_options.inc:214
-msgid "New Caledonia"
-msgstr "Nowa Kaledonia"
-
-#: includes/adsense.search_options.inc:215
-msgid "New Zealand"
-msgstr "Nowa Zelandia"
-
-#: includes/adsense.search_options.inc:216
-msgid "Nicaragua"
-msgstr "Nikaragua"
-
-#: includes/adsense.search_options.inc:217
-msgid "Niger"
-msgstr "Niger"
-
-#: includes/adsense.search_options.inc:218
-msgid "Nigeria"
-msgstr "Nigeria"
-
-#: includes/adsense.search_options.inc:219
-msgid "Niue"
-msgstr "Niue"
-
-#: includes/adsense.search_options.inc:220
-msgid "Norfolk Island"
-msgstr "Norfolk"
-
-#: includes/adsense.search_options.inc:221
-msgid "Northern Mariana Islands"
-msgstr "Mariany PÃ³Å‚nocne"
-
-#: includes/adsense.search_options.inc:222
-msgid "North Korea"
-msgstr "Korea PÃ³Å‚nocna"
-
-#: includes/adsense.search_options.inc:223
-msgid "Oman"
-msgstr "Oman"
-
-#: includes/adsense.search_options.inc:224
-msgid "Pakistan"
-msgstr "Pakistan"
-
-#: includes/adsense.search_options.inc:225
-msgid "Palau"
-msgstr "Palau"
-
-#: includes/adsense.search_options.inc:226
-msgid "Palestinian Territory"
-msgstr "Terytorium Palestyny"
-
-#: includes/adsense.search_options.inc:227
-msgid "Panama"
-msgstr "Panama"
-
-#: includes/adsense.search_options.inc:228
-msgid "Papua New Guinea"
-msgstr "Papua-Nowa Gwinea"
-
-#: includes/adsense.search_options.inc:229
-msgid "Paraguay"
-msgstr "Paragwaj"
-
-#: includes/adsense.search_options.inc:230
-msgid "Peru"
-msgstr "Peru"
-
-#: includes/adsense.search_options.inc:231
-msgid "Philippines"
-msgstr "Filipiny"
-
-#: includes/adsense.search_options.inc:232
-msgid "Pitcairn"
-msgstr "Pitcairn"
-
-#: includes/adsense.search_options.inc:233
-msgid "Poland"
-msgstr "Polska"
-
-#: includes/adsense.search_options.inc:234
-msgid "Puerto Rico"
-msgstr "Portoryko"
-
-#: includes/adsense.search_options.inc:235
-msgid "Qatar"
-msgstr "Katar"
-
-#: includes/adsense.search_options.inc:236
-msgid "Reunion"
-msgstr "Reunion"
-
-#: includes/adsense.search_options.inc:237
-msgid "Romania"
-msgstr "Rumunia"
-
-#: includes/adsense.search_options.inc:238
-msgid "Russian Federation"
-msgstr "Rosja"
-
-#: includes/adsense.search_options.inc:239
-msgid "Rwanda"
-msgstr "Ruanda"
-
-#: includes/adsense.search_options.inc:240
-msgid "Saint Kitts and Nevis"
-msgstr "Saint Kitts i Nevis"
-
-#: includes/adsense.search_options.inc:241
-msgid "Saint Lucia"
-msgstr "Saint Lucia"
-
-#: includes/adsense.search_options.inc:242
-msgid "Saint Vincent and the Grenadines"
-msgstr "Saint Vincent i Grenadyny"
-
-#: includes/adsense.search_options.inc:243
-msgid "Samoa"
-msgstr "Samoa"
-
-#: includes/adsense.search_options.inc:244
-msgid "San Marino"
-msgstr "San Marino"
-
-#: includes/adsense.search_options.inc:245
-msgid "Sao Tome and Principe"
-msgstr "Sao Tome and Principe"
-
-#: includes/adsense.search_options.inc:246
-msgid "Saudi Arabia"
-msgstr "Arabia Saudyjska"
-
-#: includes/adsense.search_options.inc:247
-msgid "Senegal"
-msgstr "Senegal"
-
-#: includes/adsense.search_options.inc:248
-msgid "Serbia and Montenegro"
-msgstr "Serbia i CzarnogÃ³ra"
-
-#: includes/adsense.search_options.inc:249
-msgid "Seychelles"
-msgstr "Seszele"
-
-#: includes/adsense.search_options.inc:250
-msgid "Sierra Leone"
-msgstr "Sierra Leone"
-
-#: includes/adsense.search_options.inc:251
-msgid "Slovakia"
-msgstr "SÅ‚owacja"
-
-#: includes/adsense.search_options.inc:252
-msgid "Slovenia"
-msgstr "SÅ‚owenia"
-
-#: includes/adsense.search_options.inc:253
-msgid "Solomon Islands"
-msgstr "Solomon Islands"
-
-#: includes/adsense.search_options.inc:254
-msgid "Somalia"
-msgstr "Somalia"
-
-#: includes/adsense.search_options.inc:255
-msgid "South Africa"
-msgstr "Republika PoÅ‚udniowej Afryki"
-
-#: includes/adsense.search_options.inc:256
-msgid "South Georgia and The South Sandwich Islands"
-msgstr "Georgia PoÅ‚udniowa i Sandwich PoÅ‚udniowy"
-
-#: includes/adsense.search_options.inc:257
-msgid "Sri Lanka"
-msgstr "Sri Lanka"
-
-#: includes/adsense.search_options.inc:258
-msgid "St. Helena"
-msgstr "St. Helena"
-
-#: includes/adsense.search_options.inc:259
-msgid "St. Pierre and Miquelon"
-msgstr "St. Pierre and Miquelon"
-
-#: includes/adsense.search_options.inc:260
-msgid "Sudan"
-msgstr "Sudan"
-
-#: includes/adsense.search_options.inc:261
-msgid "Suriname"
-msgstr "Surinam"
-
-#: includes/adsense.search_options.inc:262
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Wyspy Svalbarda i Jana Mayena"
-
-#: includes/adsense.search_options.inc:263
-msgid "Swaziland"
-msgstr "Suazi"
-
-#: includes/adsense.search_options.inc:264
-msgid "Syria"
-msgstr "Syria"
-
-#: includes/adsense.search_options.inc:265
-msgid "Tajikistan"
-msgstr "TadÅ¼ykistan"
-
-#: includes/adsense.search_options.inc:266
-msgid "Tanzania"
-msgstr "Tanzania"
-
-#: includes/adsense.search_options.inc:267
-msgid "Thailand"
-msgstr "Tajlandia"
-
-#: includes/adsense.search_options.inc:268
-msgid "Togo"
-msgstr "Togo"
-
-#: includes/adsense.search_options.inc:269
-msgid "Tokelau"
-msgstr "Tokelau"
-
-#: includes/adsense.search_options.inc:270
-msgid "Tonga"
-msgstr ""
-
-#: includes/adsense.search_options.inc:271
-msgid "Trinidad and Tobago"
-msgstr "Trynidad i Tobago"
-
-#: includes/adsense.search_options.inc:272
-msgid "Tunisia"
-msgstr "Tunezja"
-
-#: includes/adsense.search_options.inc:273
-msgid "Turkey"
-msgstr "Turcja"
-
-#: includes/adsense.search_options.inc:274
-msgid "Turkmenistan"
-msgstr "Turkmenistan"
-
-#: includes/adsense.search_options.inc:275
-msgid "Turks and Caicos Islands"
-msgstr "Turks i Caicos"
-
-#: includes/adsense.search_options.inc:276
-msgid "Tuvalu"
-msgstr "Tuvalu"
-
-#: includes/adsense.search_options.inc:277
-msgid "Uganda"
-msgstr "Uganda"
-
-#: includes/adsense.search_options.inc:278
-msgid "Ukraine"
-msgstr "Ukraina"
-
-#: includes/adsense.search_options.inc:279
-msgid "United Arab Emirates"
-msgstr "Zjednoczone Emiraty Arabskie"
-
-#: includes/adsense.search_options.inc:280
-msgid "United States Minor Outlying Islands"
-msgstr "Dalekie Wyspy Mniejsze StanÃ³w Zjednoczonych"
-
-#: includes/adsense.search_options.inc:281
-msgid "Uruguay"
-msgstr "Urugwaj"
-
-#: includes/adsense.search_options.inc:282
-msgid "Uzbekistan"
-msgstr "Uzbekistan"
-
-#: includes/adsense.search_options.inc:283
-msgid "Vanuatu"
-msgstr "Vanuatu"
-
-#: includes/adsense.search_options.inc:284
-msgid "Vatican"
-msgstr "Watykan"
-
-#: includes/adsense.search_options.inc:285
-msgid "Venezuela"
-msgstr "Wenezuela"
-
-#: includes/adsense.search_options.inc:286
-msgid "Viet Nam"
-msgstr "Wietnam"
-
-#: includes/adsense.search_options.inc:287
-msgid "Virgin Islands (British)"
-msgstr "Wyspy Dziewicze (bryt.)"
-
-#: includes/adsense.search_options.inc:288
-msgid "Virgin Islands (U.S.)"
-msgstr "Wyspy Dziewicze (amer.)"
-
-#: includes/adsense.search_options.inc:289
-msgid "Wallis and Futuna Islands"
-msgstr "Wallis i Futuna"
-
-#: includes/adsense.search_options.inc:290
-msgid "Western Sahara"
-msgstr "Sahara zachodnia"
-
-#: includes/adsense.search_options.inc:291
-msgid "Yemen"
-msgstr "Jemen"
-
-#: includes/adsense.search_options.inc:292
-msgid "Zambia"
-msgstr "Zambia"
-
-#: includes/adsense.search_options.inc:293
-msgid "Zimbabwe"
-msgstr "Zimbabwe"
-
-#: includes/adsense.search_options.inc:294
-msgid "United States"
-msgstr "Stany Zjednoczone"
-
-#: includes/adsense.search_options.inc:306
-msgid "Arabic"
-msgstr "arabski"
-
-#: includes/adsense.search_options.inc:307
-msgid "Bulgarian"
-msgstr "buÅ‚garski"
-
-#: includes/adsense.search_options.inc:308
-msgid "Chinese (simplified)"
-msgstr "chiÅ„ski uproszczony"
-
-#: includes/adsense.search_options.inc:309
-msgid "Chinese (traditional)"
-msgstr "chiÅ„ski tradycyjny"
-
-#: includes/adsense.search_options.inc:310
-msgid "Croatian"
-msgstr "chorwacki"
-
-#: includes/adsense.search_options.inc:311
-msgid "Czech"
-msgstr "czeski"
-
-#: includes/adsense.search_options.inc:312
-msgid "Danish"
-msgstr "duÅ„ski"
-
-#: includes/adsense.search_options.inc:313
-msgid "Dutch"
-msgstr "holenderski"
-
-#: includes/adsense.search_options.inc:314
-msgid "English"
-msgstr "angielski"
-
-#: includes/adsense.search_options.inc:315
-msgid "Finnish"
-msgstr "fiÅ„ski"
-
-#: includes/adsense.search_options.inc:316
-msgid "French"
-msgstr "francuski"
-
-#: includes/adsense.search_options.inc:317
-msgid "German"
-msgstr "niemiecki"
-
-#: includes/adsense.search_options.inc:318
-msgid "Greek"
-msgstr "grecki"
-
-#: includes/adsense.search_options.inc:319
-msgid "Hebrew"
-msgstr "hebrajski"
-
-#: includes/adsense.search_options.inc:320
-msgid "Hungarian"
-msgstr "wÄ™gierski"
-
-#: includes/adsense.search_options.inc:321
-msgid "Indonesian"
-msgstr "indonezyjski"
-
-#: includes/adsense.search_options.inc:322
-msgid "Italian"
-msgstr "wÅ‚oski"
-
-#: includes/adsense.search_options.inc:323
-msgid "Japanese"
-msgstr "japoÅ„ski"
-
-#: includes/adsense.search_options.inc:324
-msgid "Korean"
-msgstr "koreaÅ„ski"
-
-#: includes/adsense.search_options.inc:325
-msgid "Norwegian"
-msgstr "norweski"
-
-#: includes/adsense.search_options.inc:326
-msgid "Polish"
-msgstr "polski"
-
-#: includes/adsense.search_options.inc:327
-msgid "Portuguese"
-msgstr "portugalski"
-
-#: includes/adsense.search_options.inc:328
-msgid "Romanian"
-msgstr "rumuÅ›nki"
-
-#: includes/adsense.search_options.inc:329
-msgid "Russian"
-msgstr "rosyjski"
-
-#: includes/adsense.search_options.inc:330
-msgid "Serbian"
-msgstr "serbski"
-
-#: includes/adsense.search_options.inc:331
-msgid "Slovak"
-msgstr "sÅ‚owacki"
-
-#: includes/adsense.search_options.inc:332
-msgid "Spanish"
-msgstr "hiszpaÅ„ski"
-
-#: includes/adsense.search_options.inc:333
-msgid "Swedish"
-msgstr "szwedzki"
-
-#: includes/adsense.search_options.inc:334
-msgid "Thai"
-msgstr "tajski"
-
-#: includes/adsense.search_options.inc:335
-msgid "Turkish"
-msgstr "turecki"
-
-#: includes/adsense.search_options.inc:336
-msgid "Vietnamese"
-msgstr "wietnamski"
-
-#: managed/adsense_managed.module:46
-msgid "AdSense: unconfigured "
-msgstr "Nieskonfigurowane AdSense"
-
-#: managed/adsense_managed.module:71
-#: old/oldcode/adsense_oldcode.module:92
-msgid "Ad format"
-msgstr "format reklam"
-
-#: managed/adsense_managed.module:74
-#: old/oldcode/adsense_oldcode.module:95
-msgid "Select the ad dimensions you want for this block."
-msgstr "Wybierz szerokoÅ›Ä‡ reklamy jakÄ… chcesz dla tego bloku"
-
-#: managed/adsense_managed.module:82
-msgid "This is the Ad Slot ID from your Google Adsense account, such as 0123456789."
-msgstr "To jest miejsce na numer twojego identyfikatora wydawcy"
-
-#: managed/adsense_managed.module:88
-#: old/oldcode/adsense_oldcode.module:114
-msgid "Ad alignment"
-msgstr ""
-
-#: managed/adsense_managed.module:91
-#: old/oldcode/adsense_oldcode.admin.inc:118
-#: old/oldcode/adsense_oldcode.module:75;117
-#: old/search/adsense_search.module:85
-msgid "None"
-msgstr "Å»aden"
-
-#: managed/adsense_managed.module:92
-#: old/oldcode/adsense_oldcode.module:118
-msgid "Left"
-msgstr ""
-
-#: managed/adsense_managed.module:93
-#: old/oldcode/adsense_oldcode.module:119
-msgid "Centered"
-msgstr ""
-
-#: managed/adsense_managed.module:96
-#: old/oldcode/adsense_oldcode.module:122
-msgid "Select the horizontal alignment of the ad within the block."
-msgstr ""
-
-#: managed/adsense_managed.module:22
-msgid "Managed Ads"
-msgstr "ZarzÄ…dzane reklamy"
-
-#: managed/adsense_managed.info:0
-msgid "Managed ads"
-msgstr "ZarzÄ…dzone reklamy"
-
-#: managed/adsense_managed.info:0
-msgid "Ad unit generator module using the new managed ads feature available in the Google AdSense site."
-msgstr "ModuÅ‚ generator jednostek reklam uÅ¼ywa nowych zarzÄ…dzania reklamami, ktÃ³re sÄ… dostÄ™pne na stronie Google AdSense"
-
-#: old/oldcode/adsense_oldcode.admin.inc:37
-msgid "Ad groups"
-msgstr "Grupy reklam"
-
-#: old/oldcode/adsense_oldcode.admin.inc:50
-msgid "Group @group attributes"
-msgstr "WÅ‚aÅ›ciwoÅ›ci grupy @group"
-
-#: old/oldcode/adsense_oldcode.admin.inc:55
-#: old/search/adsense_search.admin.inc:168
-msgid "Title"
-msgstr "TytuÅ‚"
-
-#: old/oldcode/adsense_oldcode.admin.inc:59
-msgid "Title of the group."
-msgstr "TytuÅ‚ grupy"
-
-#: old/oldcode/adsense_oldcode.admin.inc:64
-msgid "Ad type"
-msgstr "Typ reklamy"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-#: old/search/adsense_search.admin.inc:184
-msgid "Text"
-msgstr "Tekst"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-msgid "Image"
-msgstr "Obraz"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-msgid "Both"
-msgstr "Oba"
-
-#: old/oldcode/adsense_oldcode.admin.inc:76
-#: old/search/adsense_search.admin.inc:89
-msgid "Text color"
-msgstr "Kolor tekstu"
-
-#: old/oldcode/adsense_oldcode.admin.inc:84
-msgid "Border color"
-msgstr "Kolor obramowania"
-
-#: old/oldcode/adsense_oldcode.admin.inc:100
-msgid "Title color"
-msgstr "Kolor tytuÅ‚u"
-
-#: old/oldcode/adsense_oldcode.admin.inc:108
-msgid "URL color"
-msgstr "Kolor linka"
-
-#: old/oldcode/adsense_oldcode.admin.inc:116
-msgid "Alternate URL color"
-msgstr "Alternatywny kolor linka"
-
-#: old/oldcode/adsense_oldcode.admin.inc:118
-msgid "Alternate URL"
-msgstr "Alternatywny URL"
-
-#: old/oldcode/adsense_oldcode.admin.inc:118
-msgid "Alternate color"
-msgstr "Alternatywny kolor"
-
-#: old/oldcode/adsense_oldcode.admin.inc:123
-msgid "Alternate info"
-msgstr "Alternatywna informacja"
-
-#: old/oldcode/adsense_oldcode.admin.inc:127
-msgid "Enter either 6 letter alternate color code, or alternate URL to use"
-msgstr "Wstaw 6-znakowy kod koloru lub alternatywny URL"
-
-#: old/oldcode/adsense_oldcode.admin.inc:132
-msgid "Rounded corners"
-msgstr "ZaokrÄ…glone naroÅ¼niki"
-
-#: old/oldcode/adsense_oldcode.admin.inc:135
-msgid "Choose type of round corners"
-msgstr "Wybierz typ zaokrÄ…glonych naroÅ¼nikÃ³w"
-
-#: old/oldcode/adsense_oldcode.admin.inc:143
-#: old/search/adsense_search.admin.inc:241
-msgid "Custom channels"
-msgstr "WÅ‚asne kanaÅ‚y"
-
-#: old/oldcode/adsense_oldcode.admin.inc:144
-#: old/search/adsense_search.admin.inc:242
-msgid "Enter up to !channels custom channels that you have configured in Google AdSense. If you are not using custom channels, or you are only using URL channels, then leave this empty."
-msgstr "Wpisz do !channels wÅ‚asnych kanaÅ‚Ã³w, ktÃ³re masz skonfigurowane w Google AdSense. JeÅ›li nie uÅ¼ywasz wÅ‚asnych kanaÅ‚Ã³w lub uÅ¼ywasz kanaÅ‚Ã³w URL, wtedy pozostaw to pole puste"
-
-#: old/oldcode/adsense_oldcode.admin.inc:150
-#: old/search/adsense_search.admin.inc:248
-msgid "Custom channel ID"
-msgstr "WÅ‚asny kanaÅ‚ ID"
-
-#: old/oldcode/adsense_oldcode.admin.inc:184
-#: old/search/adsense_search.admin.inc:291
-msgid "Color must be between #000000 and #FFFFFF"
-msgstr "Kolor musi byÄ‡ pomiÄ™dzy #000000 i #FFFFFF"
-
-#: old/oldcode/adsense_oldcode.module:58
-msgid "AdSense old code: unconfigured "
-msgstr "Stary kod AdSense : nieskonfigurowany"
-
-#: old/oldcode/adsense_oldcode.module:100
-msgid "Group"
-msgstr "Grupa"
-
-#: old/oldcode/adsense_oldcode.module:107
-#: old/search/adsense_search.module:102
-msgid "Channel"
-msgstr "KanaÅ‚"
-
-#: old/oldcode/adsense_oldcode.module:34
-msgid "Old Code Ads"
-msgstr "Stary kod reklam"
-
-#: old/oldcode/adsense_oldcode.info:0
-msgid "Ads (old)"
-msgstr "Reklamy (stare)"
-
-#: old/oldcode/adsense_oldcode.info:0
-msgid "Ad unit generator module using the old format code in which the colours are specified in the ad's JavaScript."
-msgstr "Generator jednostek relam uÅ¼ywa starego formatu kodu, w ktÃ³rych kolory sÄ… ustawiane przez kod JavaScript w reklamie."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:37
-msgid "Required parameters"
-msgstr "Wymagane parametry"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:42
-msgid "Google AdSense client ID profile field"
-msgstr "Pole profilu identyfikacyjnego wydawcy AdSense"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:46
-msgid "This is the profile field that holds the AdSense Client ID for the site owner as well as (optionally) for site users who participate in revenue sharing. You must enabled the profile module and create a new field for this."
-msgstr "To jest pole profilu, ktÃ³re przechowuje identyfikator wydawcy AdSense wÅ‚aÅ›ciciela strony oraz (opcjonalnie) uÅ¼ytkownikÃ³w, ktÃ³rzy uczestniczÄ… w podziale zyskÃ³w. Musisz wÅ‚Ä…czyÄ‡ moduÅ‚ profile i stworzyÄ‡ nowe pole ..."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:53
-msgid "Revenue sharing percentage"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:60
-msgid "Percentage of node views going to author"
-msgstr "Procent wyÅ›wietleÅ„ zawartoÅ›ci jaki zostanie przetransferowany do autora"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:67
-msgid "Percentage of node views going to author with the following roles"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:68
-msgid "When the author belongs to one or more roles, the percentage of node views using his AdSense Client ID will be the maximum between the author value and the following settings for each role."
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:86
-msgid "Percentage of node views going to user who referred the author"
-msgstr "Procent wyÅ›wietleÅ„ zawartoÅ›ci jaki zostanie przetransferowany do uÅ¼ytkownika, ktÃ³ry referred the author"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:96
-msgid "Content types"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:122
-msgid "Role"
-msgstr ""
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:122
-msgid "Percentage"
-msgstr ""
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:56
-#: ;22
-msgid "Revenue Sharing"
-msgstr "Dzielenie zyskami"
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:57
-msgid "Drupal page cache is enabled."
-msgstr "Cache Drupal dla stron jest wÅ‚Ä…czony."
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:58
-msgid "This causes conflicts with revenue sharing, since the pages are stored in the cache and are not dynamically generated. If you experience issues with revenue sharing, then disable the page cache."
-msgstr "To moÅ¼e spowodowaÄ‡ konflikt z dzieleniem zyskÃ³w, poniewaÅ¼ strony nie sÄ… przechowywane w pamiÄ™ci, ale generowane dynamicznie. JeÅ›li doÅ›wiadczysz problemÃ³w z dzieleniem zyskÃ³w, wÃ³wczas wyÅ‚acz pamiÄ™Ä‡ stron."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-msgid "Revenue sharing basic (old)"
-msgstr "Podstawowe dzielenie zyskami (stare)"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-msgid "Revenue sharing for the Google Adsense module"
-msgstr "Dzielenie zyskami dla moduÅ‚u Adsense."
-
-#: old/search/adsense_search.admin.inc:26
-msgid "Allows users to search the web or the specific site(s) of your choice. Enter the site's URL without the last '/'"
-msgstr "PozwÃ³l uÅ¼ytkownikom wyszukiwaÄ‡ w sieci albo w wybranych przez ciebie stronach. WprowadÅº URL stron bez slasha '/'"
-
-#: old/search/adsense_search.admin.inc:55
-msgid "Use SafeSearch"
-msgstr "UÅ¼yj bezpiecznego wyszukiwania"
-
-#: old/search/adsense_search.admin.inc:64
-msgid "Google Logo"
-msgstr "Logo Google"
-
-#: old/search/adsense_search.admin.inc:65
-msgid "Logo above text box"
-msgstr "Logo powyÅ¼ej pola tekstowego"
-
-#: old/search/adsense_search.admin.inc:66
-msgid "\"Google Search\" on button"
-msgstr "Napis \"Wyszukiwarka Google\" na przycisku"
-
-#: old/search/adsense_search.admin.inc:72
-msgid "Search button below text box"
-msgstr "Przycisk wyszukiwania poniÅ¼ej pudeÅ‚ka"
-
-#: old/search/adsense_search.admin.inc:99
-msgid "Site Language"
-msgstr "JÄ™zyk stony"
-
-#: old/search/adsense_search.admin.inc:113
-msgid "Length of text box (Max 64)"
-msgstr "DÅ‚ugoÅ›Ä‡ tekstu maksymalnie 64"
-
-#: old/search/adsense_search.admin.inc:145
-msgid "Color attributes"
-msgstr "Atrybuty kolorÃ³w"
-
-#: old/search/adsense_search.admin.inc:160
-msgid "Border"
-msgstr "Obramowanie"
-
-#: old/search/adsense_search.admin.inc:176
-msgid "Background"
-msgstr "TÅ‚o"
-
-#: old/search/adsense_search.admin.inc:192
-msgid "URL"
-msgstr "URL"
-
-#: old/search/adsense_search.admin.inc:200
-msgid "Visited URL"
-msgstr "Odwiedzone URL"
-
-#: old/search/adsense_search.admin.inc:208
-msgid "Light URL"
-msgstr "Lekki URL?"
-
-#: old/search/adsense_search.admin.inc:216
-msgid "Logo Background"
-msgstr "TÅ‚o logo"
-
-#: old/search/adsense_search.results.inc:17
-msgid "Search keywords: %keyword"
-msgstr ""
-
-#: old/search/adsense_search.module:76
-msgid "AdSense Search: unconfigured "
-msgstr "Szukaj AdSense : nieskonfigurowane"
-
-#: old/search/adsense_search.module:210
-msgid "Google Search"
-msgstr "Wyszukiwarka Google"
-
-#: old/search/adsense_search.info:0
-msgid "Search (old)"
-msgstr "Wyszukiwanie (stare)"
-
-#: old/search/adsense_search.info:0
-msgid "AdSense for Search generator module. This module uses the 'old' code in which the user can select to search the entire Web or 1 to 3 user-defined domains."
-msgstr "AdSense dla moduÅ‚u generowania wyszukiwania. Ten moduÅ‚ uÅ¼ywa starego kodu, w ktÃ³ry uÅ¼ytkownik moÅ¼e wybraÄ‡, czy chce przeszukaÄ‡ caÅ‚Ä… sieÄ‡ czy tylko wybrane 1-3 strony."
-
-#~ msgid "adsense"
-#~ msgstr "adsense"
-#~ msgid "AdSense settings are available under !link"
-#~ msgstr "Ustawienia AdSense znajdujÄ… siÄ™ na stronie : !link"
-#~ msgid "Background Color"
-#~ msgstr "Kolor tÅ‚a"
-#~ msgid "adsense_cse"
-#~ msgstr "adsense_cse"
-#~ msgid "adsense_managed"
-#~ msgstr "adsense_managed"
-#~ msgid "adsense_oldcode"
-#~ msgstr "adsense_oldcode"
-#~ msgid "Enable revenue sharing"
-#~ msgstr "WÅ‚Ä…cz dzielenie zyskÃ³w"
-#~ msgid ""
-#~ "Note that enabling this will disable AdSense code caching, which can "
-#~ "cause more resource usage for busy sites. The referral feature requires "
-#~ "the referral module to be installed."
-#~ msgstr ""
-#~ "Wiedz, Å¼e wÅ‚Ä…czenie tego wyÅ‚Ä…czy cachowanie kodÃ³w AdSense, co moÅ¼e "
-#~ "spowodowaÄ‡ wiÄ™kszÄ… zasoboÅ¼ernoÅ›Ä‡ w przypadku obleganych stron. Opcja "
-#~ "poleceÅ„ (refferal feature) wymaga zainstalowania moduÅ‚u refferal."
-#~ msgid "This feature requires the referral module to be installed."
-#~ msgstr "To wymaga zainstalowania moduÅ‚u Refferal"
-#~ msgid "Revenue Sharing (basic)"
-#~ msgstr "Dzielenie zyskami (podstawowe)"
-#~ msgid "revenue_sharing_basic"
-#~ msgstr "revenue_sharing_basic"
-#~ msgid "Text Color"
-#~ msgstr "Kolor tekstu"
-#~ msgid "adsense_search"
-#~ msgstr "adsense_search"
-
Index: translations/ru.po
===================================================================
RCS file: translations/ru.po
diff -N translations/ru.po
--- translations/ru.po	15 Jun 2009 23:08:41 -0000	1.1.2.3
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,2144 +0,0 @@
-# Russian translation of adsense (6.x-1.1)
-# Copyright (c) 2009 by the Russian translation team
-# Generated from files:
-#  adsense.admin.inc,v 1.1.2.5 2009/03/31 14:41:01 jcnventura
-#  adsense_cse.module,v 1.1.2.8 2009/02/10 01:35:20 jcnventura
-#  adsense_search.module,v 1.1.2.10 2009/03/31 14:41:02 jcnventura
-#  adsense.module,v 1.68.2.18 2009/03/31 14:41:01 jcnventura
-#  adsense_oldcode.admin.inc,v 1.1.2.2 2008/09/11 22:52:00 jcnventura
-#  adsense_search.admin.inc,v 1.1.2.3 2009/05/13 00:04:20 jcnventura
-#  adsense.help.inc,v 1.1.2.7 2009/03/31 14:41:02 jcnventura
-#  adsense_managed.module,v 1.1.2.7 2009/03/31 14:41:02 jcnventura
-#  adsense_oldcode.module,v 1.1.2.7 2009/03/31 14:41:02 jcnventura
-#  adsense_click.logs.inc,v 1.1.4.2 2008/12/19 01:32:37 jcnventura
-#  revenue_sharing_basic.admin.inc,v 1.3.2.5 2009/05/12 23:37:34 jcnventura
-#  adsense_click.module,v 1.2.2.10 2008/12/19 01:32:37 jcnventura
-#  adsense_cse.admin.inc,v 1.1.2.5 2009/05/13 00:04:20 jcnventura
-#  adsense.search_options.inc,v 1.1.2.1 2008/08/10 22:26:34 jcnventura
-#  adsense_managed.admin.inc,v 1.1.2.2 2008/09/11 22:52:00 jcnventura
-#  adsense_click.admin.inc,v 1.1.4.2 2008/12/19 01:32:37 jcnventura
-#  adsense_search.results.inc,v 1.1.2.3 2009/03/31 14:41:02 jcnventura
-#  adsense.info,v 1.6 2008/07/21 00:21:33 kbahey
-#  adsense_click.info,v 1.2.2.1 2008/12/19 01:32:37 jcnventura
-#  adsense_cse.info,v 1.1 2008/07/21 00:21:34 kbahey
-#  adsense_managed.info,v 1.1 2008/07/21 00:21:34 kbahey
-#  adsense_oldcode.info,v 1.1.2.1 2008/08/11 02:19:15 jcnventura
-#  revenue_sharing_basic.info,v 1.1.2.3 2009/05/12 23:37:34 jcnventura
-#  adsense_search.info,v 1.1 2008/07/21 00:21:34 kbahey
-#  revenue_sharing_basic.module,v 1.4.2.11 2009/05/13 00:04:20 jcnventura
-#  adsense.install,v 1.10.2.5 2009/03/31 14:41:01 jcnventura
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: adsense (6.x-1.1)\n"
-"POT-Creation-Date: 2009-05-13 01:59+0200\n"
-"PO-Revision-Date: 2009-06-15 23:59+0100\n"
-"Last-Translator: Joao Ventura <jcnventura@drupal.org>\n"
-"Language-Team: Russian\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=((((n%10)==1)&&((n%100)!=11))?(0):(((((n%10)>=2)&&((n%10)<=4))&&(((n%100)<10)||((n%100)>=20)))?(1):2));\n"
-
-#: adsense.admin.inc:25;152
-#: cse/adsense_cse.admin.inc:26
-#: managed/adsense_managed.admin.inc:24
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:25
-msgid "Help and instructions"
-msgstr "ÐŸÐ¾Ð¼Ð¾Ñ‰ÑŒ Ð¸ Ð¸Ð½Ñ?Ñ‚Ñ€ÑƒÐºÑ†Ð¸Ð¸"
-
-#: adsense.admin.inc:37
-msgid "Visibility"
-msgstr "Ð’Ð¸Ð´Ð¸Ð¼Ð¾Ñ?Ñ‚ÑŒ"
-
-#: adsense.admin.inc:42
-msgid "Show AdSense on specific pages"
-msgstr "ÐŸÐ¾ÐºÐ°Ð·Ñ‹Ð²Ð°Ñ‚ÑŒ AdSense Ð½Ð° Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð½Ñ‹Ñ… Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°Ñ…"
-
-#: adsense.admin.inc:44
-msgid "Show on every page except the listed pages."
-msgstr "ÐŸÐ¾ÐºÐ°Ð·Ñ‹Ð²Ð°Ñ‚ÑŒ Ð½Ð° Ð²Ñ?ÐµÑ… Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°Ñ… ÐºÑ€Ð¾Ð¼Ðµ Ð¿ÐµÑ€ÐµÑ‡Ð¸Ñ?Ð»ÐµÐ½Ð½Ñ‹Ñ…."
-
-#: adsense.admin.inc:44
-msgid "Show on only the listed pages."
-msgstr "ÐŸÐ¾ÐºÐ°Ð·Ñ‹Ð²Ð°Ñ‚ÑŒ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ð½Ð° Ð¿ÐµÑ€ÐµÑ‡Ð¸Ñ?Ð»ÐµÐ½Ð½Ñ‹Ñ… Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°Ñ…."
-
-#: adsense.admin.inc:51
-msgid "Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are  %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page."
-msgstr "Ð’Ð²ÐµÐ´Ð¸Ñ‚Ðµ Ð½Ð° Ð¾Ð´Ð½Ð¾Ð¹ Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ðµ Ð² Ñ?Ñ‚Ñ€Ð¾ÐºÑƒ ÐºÐ°Ðº Drupal Ð¿ÑƒÑ‚Ð¸. '*' Ð·Ð½Ð°Ðº - Ð¼ÐµÑ‚Ð°Ñ?Ð¸Ð¼Ð²Ð¾Ð». ÐŸÑ€Ð¸Ð¼ÐµÑ€ Ð¿ÑƒÑ‚Ð¸ %blog Ð´Ð»Ñ? Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ† Ð±Ð»Ð¾Ð³Ð° Ð¸ %blog-wildcard Ð´Ð»Ñ? ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ Ð¿ÐµÑ€Ñ?Ð¾Ð½Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ Ð±Ð»Ð¾Ð³Ð°.  %front Ð´Ð»Ñ? Ð³Ð»Ð°Ð²Ð½Ð¾Ð¹ Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ñ‹."
-
-#: adsense.admin.inc:61
-msgid "Show if the following PHP code returns <code>TRUE</code> (PHP-mode, experts only)."
-msgstr "ÐŸÐ¾ÐºÐ°Ð·Ð°Ñ‚ÑŒ, ÐµÑ?Ð»Ð¸ Ð´Ð°Ð½Ð½Ñ‹Ð¹ PHP-ÐºÐ¾Ð´ Ð²Ð¾Ð·Ð²Ñ€Ð°Ñ‰Ð°ÐµÑ‚ <strong>TRUE</strong> (PHP-Ñ€ÐµÐ¶Ð¸Ð¼, Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ð´Ð»Ñ? Ñ?ÐºÑ?Ð¿ÐµÑ€Ñ‚Ð¾Ð²)."
-
-#: adsense.admin.inc:62
-msgid "If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can break your Drupal site."
-msgstr "Ð•Ñ?Ð»Ð¸ Ð²Ñ‹Ð±Ñ€Ð°Ð½ PHP-Ñ€ÐµÐ¶Ð¸Ð¼, Ð²Ð²ÐµÐ´Ð¸Ñ‚Ðµ PHP-ÐºÐ¾Ð´ Ð¼ÐµÐ¶Ð´Ñƒ %php. ÐžÐ±Ñ€Ð°Ñ‚Ð¸Ñ‚Ðµ Ð²Ð½Ð¸Ð¼Ð°Ð½Ð¸Ðµ, Ð¸Ñ?Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ðµ Ð½ÐµÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð½Ð¾Ð³Ð¾ PHP-ÐºÐ¾Ð´Ð° Ð¼Ð¾Ð¶ÐµÑ‚ Ð½Ð°Ñ€ÑƒÑˆÐ¸Ñ‚ÑŒ Ñ€Ð°Ð±Ð¾Ñ‚Ñƒ Ð²Ð°ÑˆÐµÐ³Ð¾ Ñ?Ð°Ð¹Ñ‚Ð°."
-
-#: adsense.admin.inc:69
-msgid "Advanced options"
-msgstr "Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ðµ Ð½Ð°Ñ?Ñ‚Ñ€Ð¾Ð¹ÐºÐ¸"
-
-#: adsense.admin.inc:74
-msgid "Enable test mode?"
-msgstr "Ð’ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒ Ñ‚ÐµÑ?Ñ‚Ð¾Ð²Ñ‹Ð¹ Ñ‚ÐµÐ¶Ð¸Ð¼?"
-
-#: adsense.admin.inc:76
-msgid "This enables you to test the AdSense module settings. This can be useful in some situations: for example, testing whether revenue sharing is working properly or not without having to display real ads on your site. It is best to test this after you log out."
-msgstr "Ð­Ñ‚Ð¾ Ð¿Ð¾Ð·Ð²Ð¾Ð»Ñ?ÐµÑ‚ Ð²Ð°Ð¼ Ñ‚ÐµÑ?Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ñ‚ÑŒ Ð½Ð°Ñ?Ñ‚Ñ€Ð¾Ð¹ÐºÐ¸ Ð¼Ð¾Ð´ÑƒÐ»Ñ? AdSense. Ð‘Ñ‹Ð²Ð°ÐµÑ‚ Ð¿Ð¾Ð»ÐµÐ·Ð½Ð¾ Ð² Ð½ÐµÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ñ… Ñ?Ð¸Ñ‚ÑƒÐ°Ñ†Ð¸Ñ?Ñ…, Ð½Ð°Ð¿Ñ€Ð¸Ð¼ÐµÑ€, Ð´Ð»Ñ? Ð¿Ñ€Ð¾Ð²ÐµÑ€ÐºÐ¸ - Ð¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð¾ Ð¸Ð»Ð¸ Ð½ÐµÑ‚ Ñ€Ð°Ð±Ð¾Ñ‚Ð°ÐµÑ‚ Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸Ðµ Ð´Ð¾Ñ…Ð¾Ð´Ð° Ð±ÐµÐ· Ð¿Ð¾ÐºÐ°Ð·Ð° Ñ€ÐµÐ°Ð»ÑŒÐ½Ð¾Ð¹ Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹ Ð½Ð° Ð²Ð°ÑˆÐµÐ¼ Ñ?Ð°Ð¹Ñ‚Ðµ. Ð­Ñ‚Ð¾ Ð»ÑƒÑ‡ÑˆÐµ Ð¿Ñ€Ð¾Ð²ÐµÑ€Ñ?Ñ‚ÑŒ Ð¿Ð¾Ñ?Ð»Ðµ Ñ‚Ð¾Ð³Ð¾, ÐºÐ°Ðº Ð²Ñ‹ Ð²Ñ‹Ð¹Ð´ÐµÑ‚Ðµ Ð¸Ð· Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñ?Ñ‚Ñ€Ð°Ñ‚Ð¸Ð²Ð½Ð¾Ð³Ð¾ Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ?Ð°."
-
-#: adsense.admin.inc:81
-msgid "Disable Google AdSense ads?"
-msgstr "ÐžÑ‚ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒ Ñ€ÐµÐºÐ»Ð°Ð¼Ñƒ Google AdSense?"
-
-#: adsense.admin.inc:83
-msgid "This disables all display of Google AdSense ads from your web site. This is useful in certain situations, such as site upgrades, or if you make a copy of the site for development and test purposes."
-msgstr "Ð­Ñ‚Ð¾ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡Ð°ÐµÑ‚ Ð¿Ð¾ÐºÐ°Ð· Ð²Ñ?ÐµÐ¹ Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹ Google AdSense Ð´Ð»Ñ? Ð²Ð°ÑˆÐµÐ³Ð¾ Ñ?Ð°Ð¹Ñ‚Ð°. Ð‘Ñ‹Ð²Ð°ÐµÑ‚ Ð¿Ð¾Ð»ÐµÐ·Ð½Ð¾ Ð² Ð½ÐµÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ñ… Ñ?Ð¸Ñ‚ÑƒÐ°Ñ†Ð¸Ñ?Ñ…, Ñ‚Ð°ÐºÐ¸Ñ… ÐºÐ°Ðº Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ðµ Ñ?Ð°Ð¹Ñ‚Ð°, Ð¸Ð»Ð¸ ÐµÑ?Ð»Ð¸ Ð²Ñ‹ Ð´ÐµÐ»Ð°ÐµÑ‚Ðµ ÐºÐ¾Ð¿Ð¸ÑŽ Ñ?Ð°Ð¹Ñ‚Ð° Ð´Ð»Ñ? Ñ‚ÐµÑ?Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ? Ð¸Ð»Ð¸ Ñ€Ð°Ð·Ñ€Ð°Ð±Ð¾Ñ‚ÐºÐ¸."
-
-#: adsense.admin.inc:88
-msgid "Placeholder when ads are disabled?"
-msgstr "ÐœÐµÑ?Ñ‚Ð° Ð² ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ñ… Ñ€ÐµÐºÐ»Ð°Ð¼Ð° Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°?"
-
-#: adsense.admin.inc:90
-msgid "This causes an empty box to be displayed in place of the ads when they are disabled."
-msgstr "ÐŸÐ¾ÐºÐ°Ð·Ñ‹Ð²Ð°ÐµÑ‚Ñ?Ñ? Ð¿ÑƒÑ?Ñ‚Ð¾Ð¹ Ð¿Ñ€Ñ?Ð¼Ð¾ÑƒÐ³Ð¾Ð»ÑŒÐ½Ð¸Ðº Ð²Ð¼ÐµÑ?Ñ‚Ð¾ Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹, ÐºÐ¾Ð³Ð´Ð° Ð¾Ð½Ð° Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°."
-
-#: adsense.admin.inc:95
-msgid "Placeholder text to display"
-msgstr "Ð¢ÐµÐºÑ?Ñ‚ Ð½Ð° Ð¼ÐµÑ?Ñ‚Ðµ Ñ€Ð°Ñ?Ð¿Ð¾Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ? Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹"
-
-#: adsense.admin.inc:98
-msgid "Enter any text to display as a placeholder when ads are disabled."
-msgstr "Ð’Ð²ÐµÐ´Ð¸Ñ‚Ðµ Ð»ÑŽÐ±Ð¾Ð¹ Ñ‚ÐµÐºÑ?Ñ‚ Ð´Ð»Ñ? Ð¿Ð¾ÐºÐ°Ð·Ð° Ð½Ð° Ð¼ÐµÑ?Ñ‚Ðµ Ñ€Ð°Ð·Ð¼ÐµÑ‰ÐµÐ½Ð¸Ñ? Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹, ÐºÐ¾Ð³Ð´Ð° Ð¾Ð½Ð° Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°."
-
-#: adsense.admin.inc:103
-msgid "Enable AdSense section targeting?"
-msgstr "Ð’ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒ Ð½Ð°Ñ?Ñ‚Ñ€Ð¾Ð¹ÐºÑƒ AdSense Ð½Ð° Ñ€Ð°Ð·Ð´ÐµÐ»?"
-
-#: adsense.admin.inc:105
-msgid "This better targets Google ads to the teaser and body of nodes."
-msgstr "Ð›ÑƒÑ‡ÑˆÐµ Ð²Ñ?ÐµÐ³Ð¾ Ð²Ñ?Ñ‚Ñ€Ð°Ð¸Ð²Ð°Ñ‚ÑŒ Ñ€ÐµÐºÐ»Ð°Ð¼Ñƒ Google Ð² Ñ‚ÐµÐ»Ð¾ Ð´Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ð° Ð¸Ð»Ð¸ Ð² ÐµÐ³Ð¾ Ð°Ð½Ð¾Ð½Ñ?."
-
-#: adsense.admin.inc:112
-msgid "Undocumented options"
-msgstr "Ð?ÐµÐ´Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð½Ð°Ñ? Ð¾Ð¿Ñ†Ð¸Ñ?"
-
-#: adsense.admin.inc:113
-msgid "Warning: Use of these options is AT YOUR OWN RISK. Google will never generate an ad with any of these options, so using one of them is a violation of Google AdSense's Terms and Conditions. USE OF THESE OPTIONS MAY RESULT IN GETTING BANNED FROM THE PROGRAM. You may lose all the revenue accumulated in your account. FULL RESPONSABILITY FOR THE USE OF THESE OPTIONS IS YOURS. In other words, don't complain to the authors about getting banned, even if using one of these options was provided as a solution to a reported problem."
-msgstr "Ð’Ð½Ð¸Ð¼Ð°Ð½Ð¸Ðµ: Ð˜Ñ?Ð¿Ð¾Ð»ÑŒÐ·ÑƒÐ¹Ñ‚Ðµ Ñ?Ñ‚Ð¸ Ð²Ð°Ñ€Ð¸Ð°Ð½Ñ‚Ñ‹ Ð?Ð? Ð¡Ð’ÐžÐ™ Ð¡Ð¢Ð Ð?Ð¥ Ð˜ Ð Ð˜Ð¡Ðš. Google Ð½Ð¸ÐºÐ¾Ð³Ð´Ð° Ð½Ðµ Ð±ÑƒÐ´ÐµÑ‚ Ñ?Ð¾Ð·Ð´Ð°Ð²Ð°Ñ‚ÑŒ Ð¾Ð±ÑŠÑ?Ð²Ð»ÐµÐ½Ð¸Ñ? Ñ? Ð»ÑŽÐ±Ð¾Ð¹ Ð¸Ð· Ñ?Ñ‚Ð¸Ñ… Ð¾Ð¿Ñ†Ð¸Ð¹, Ñ‚Ð°Ðº Ñ‡Ñ‚Ð¾ Ñ? Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Ð¾Ð´Ð½Ð¾Ð¹ Ð¸Ð· Ð½Ð¸Ñ… Ñ?Ð²Ð»Ñ?ÐµÑ‚Ñ?Ñ? Ð½Ð°Ñ€ÑƒÑˆÐµÐ½Ð¸ÐµÐ¼ Google AdSense Ð£Ñ?Ð»Ð¾Ð²Ð¸Ñ?. Ð˜Ð¡ÐŸÐžÐ›Ð¬Ð—ÐžÐ’Ð?Ð?Ð˜Ð• Ð­Ð¢Ð˜Ð¥ Ð’Ð?Ð Ð˜Ð?Ð?Ð¢ÐžÐ’ ÐœÐžÐ–Ð•Ð¢ ÐŸÐ Ð˜Ð’Ð•Ð¡Ð¢Ð˜ Ðš Ð‘Ð?Ð?Ð£ ÐŸÐ ÐžÐ“Ð Ð?ÐœÐœÐ«. Ð’Ñ‹ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ Ð¿Ð¾Ñ‚ÐµÑ€Ñ?Ñ‚ÑŒ Ð²Ñ?Ðµ Ð´Ð¾Ñ…Ð¾Ð´Ñ‹, Ð½Ð°ÐºÐ°Ð¿Ð»Ð¸Ð²Ð°ÑŽÑ‰Ð¸ÐµÑ?Ñ? Ð² Ð²Ð°ÑˆÐµÐ¹ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ Ð·Ð°Ð¿Ð¸Ñ?Ð¸. ÐŸÐžÐ›Ð?Ð?Ð¯ ÐžÐ¢Ð’Ð•Ð¢Ð¡Ð¢Ð’Ð•Ð?Ð?ÐžÐ¡Ð¢Ð¬ Ð—Ð? Ð˜Ð¡ÐŸÐžÐ›Ð¬Ð—ÐžÐ’Ð?Ð?Ð˜Ð• Ð­Ð¢Ð˜Ð¥ Ð’Ð?Ð Ð˜Ð?Ð?Ð¢ÐžÐ’ Ð›Ð•Ð–Ð˜Ð¢ Ð?Ð? Ð’Ð?Ð¡. Ð˜Ð½Ñ‹Ð¼Ð¸ Ñ?Ð»Ð¾Ð²Ð°Ð¼Ð¸, Ð½Ðµ Ñ?Ð»ÐµÐ´ÑƒÐµÑ‚ Ð¶Ð°Ð»Ð¾Ð²Ð°Ñ‚ÑŒÑ?Ñ? Ð½Ð° Ð°Ð²Ñ‚Ð¾Ñ€Ð° Ð¾ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ð¸ Ð±Ð°Ð½Ð°, Ð´Ð°Ð¶Ðµ ÐµÑ?Ð»Ð¸ Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚Ñ?Ñ? Ð¾Ð´Ð¸Ð½ Ð¸Ð· Ñ?Ñ‚Ð¸Ñ… Ð²Ð°Ñ€Ð¸Ð°Ð½Ñ‚Ð¾Ð² Ð±Ñ‹Ð»Ð¸ Ð¿Ñ€ÐµÐ´Ñ?Ñ‚Ð°Ð²Ð»ÐµÐ½Ñ‹ Ð² ÐºÐ°Ñ‡ÐµÑ?Ñ‚Ð²Ðµ Ñ€ÐµÑˆÐµÐ½Ð¸Ñ? Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ñ‹."
-
-#: adsense.admin.inc:120
-msgid "I agree"
-msgstr "Ð¯ Ñ?Ð¾Ð³Ð»Ð°Ñ?ÐµÐ½"
-
-#: adsense.admin.inc:125
-msgid "Use Google's AdSense test option?"
-msgstr "Ð˜Ñ?Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÑŒ Google's AdSense Ñ‚ÐµÑ?Ñ‚Ð¾Ð²Ñ‹Ðµ Ð¾Ð¿Ñ†Ð¸Ð¸?"
-
-#: adsense.admin.inc:127
-msgid "With this option set, Google will not count any clicks or page impressions. Revenue is not generated. Make sure that you disable this option in production servers. [!statement]"
-msgstr "Ð¡ Ñ?Ñ‚Ð¾Ð¹ Ð¾Ð¿Ñ†Ð¸ÐµÐ¹, Google Ð½Ðµ Ð±ÑƒÐ´ÐµÑ‚ Ñ€Ð°Ñ?Ñ?Ñ‡Ð¸Ñ‚Ñ‹Ð²Ð°Ñ‚ÑŒ Ð»ÑŽÐ±Ñ‹Ðµ ÐºÐ»Ð¸ÐºÐ¸ Ð¸Ð»Ð¸ Ð¿Ð¾ÐºÐ°Ð·Ñ‹ Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†. Ð”Ð¾Ñ…Ð¾Ð´ Ð½Ðµ Ð³ÐµÐ½ÐµÑ€Ð¸Ñ€ÑƒÐµÑ‚Ñ?Ñ?. Ð£Ð±ÐµÐ´Ð¸Ñ‚ÐµÑ?ÑŒ, Ñ‡Ñ‚Ð¾ Ð²Ñ‹ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡Ð¸Ñ‚Ðµ Ñ?Ñ‚Ñƒ Ð¾Ð¿Ñ†Ð¸ÑŽ Ð½Ð° Ñ€Ð°Ð±Ð¾Ñ‚Ð°ÑŽÑ‰ÐµÐ¼ Ñ?ÐµÑ€Ð²ÐµÑ€Ðµ. [!statement]"
-
-#: adsense.admin.inc:127
-msgid "Unofficial statement"
-msgstr "Ð?ÐµÐ¾Ñ„Ð¸Ñ†Ð¸Ð°Ð»ÑŒÐ½Ñ‹Ð¹ Ð¾Ñ‚Ñ‡Ñ‘Ñ‚"
-
-#: adsense.admin.inc:132
-msgid "Language to display ads"
-msgstr "Ð¯Ð·Ñ‹Ðº Ð´Ð»Ñ? Ð¿Ð¾ÐºÐ°Ð·Ð° Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹"
-
-#: adsense.admin.inc:162
-msgid "Site Google AdSense Publisher ID"
-msgstr "Ð£Ñ?Ñ‚Ð°Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ Google AdSense Publisher ID"
-
-#: adsense.admin.inc:165
-msgid "This is the Google AdSense Publisher ID for the site owner. It is used if no other ID is suitable. Get this in your Google Adsense account. It should be similar to %id."
-msgstr "Ð­Ñ‚Ð¾ Google AdSense Publisher ID Ð´Ð»Ñ? Ð²Ð»Ð°Ð´ÐµÐ»ÑŒÑ†Ð° Ñ?Ð°Ð¹Ñ‚Ð°. ÐžÐ½ Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚Ñ?Ñ?, ÐµÑ?Ð»Ð¸ Ð½ÐµÑ‚ Ð´Ñ€ÑƒÐ³Ð¸Ñ… ID. ÐŸÐ¾Ð»ÑƒÑ‡Ð¸Ñ‚Ðµ ÐµÐ³Ð¾ Ð² Ð²Ð°ÑˆÐµÐ¹ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ Ð·Ð°Ð¿Ð¸Ñ?Ð¸ Google Adsense. ÐžÐ½ Ð´Ð¾Ð»Ð¶Ð½Ð° Ð±Ñ‹Ñ‚ÑŒ Ð°Ð½Ð°Ð»Ð¾Ð³Ð¸Ñ‡Ð½Ñ‹Ð¹ %id."
-
-#: adsense.admin.inc:172
-msgid "Publisher ID module"
-msgstr "Publisher ID Ð¼Ð¾Ð´ÑƒÐ»ÑŒ"
-
-#: adsense.module:54
-msgid "4-links 120x90"
-msgstr "4-Ñ?Ñ?Ñ‹Ð»ÐºÐ¸ 120x90"
-
-#: adsense.module:55
-msgid "4-links 160x90"
-msgstr "4-Ñ?Ñ?Ñ‹Ð»ÐºÐ¸ 160x90"
-
-#: adsense.module:56
-msgid "4-links 180x90"
-msgstr "4-Ñ?Ñ?Ñ‹Ð»ÐºÐ¸ 180x90"
-
-#: adsense.module:57
-msgid "4-links 200x90"
-msgstr "4-Ñ?Ñ?Ñ‹Ð»ÐºÐ¸ 200x90"
-
-#: adsense.module:58
-msgid "4-links 468x15"
-msgstr "4-Ñ?Ñ?Ñ‹Ð»ÐºÐ¸ 468x15"
-
-#: adsense.module:59
-msgid "4-links 728x15"
-msgstr "4-Ñ?Ñ?Ñ‹Ð»ÐºÐ¸ 728x15"
-
-#: adsense.module:60
-msgid "5-links 120x90"
-msgstr "5-Ñ?Ñ?Ñ‹Ð»Ð¾Ðº 120x90"
-
-#: adsense.module:61
-msgid "5-links 160x90"
-msgstr "5-Ñ?Ñ?Ñ‹Ð»Ð¾Ðº 160x90"
-
-#: adsense.module:62
-msgid "5-links 180x90"
-msgstr "5-Ñ?Ñ?Ñ‹Ð»Ð¾Ðº 180x90"
-
-#: adsense.module:63
-msgid "5-links 200x90"
-msgstr "5-Ñ?Ñ?Ñ‹Ð»Ð¾Ðº 200x90"
-
-#: adsense.module:64
-msgid "5-links 468x15"
-msgstr "5-Ñ?Ñ?Ñ‹Ð»Ð¾Ðº 468x15"
-
-#: adsense.module:65
-msgid "5-links 728x15"
-msgstr "5-Ñ?Ñ?Ñ‹Ð»Ð¾Ðº 728x15"
-
-#: adsense.module:66
-msgid "Vertical banner"
-msgstr "Ð’ÐµÑ€Ñ‚Ð¸ÐºÐ°Ð»ÑŒÐ½Ñ‹Ð¹ Ð±Ð°Ð½Ð½ÐµÑ€"
-
-#: adsense.module:67
-msgid "Skyscraper"
-msgstr "Ð?ÐµÐ±Ð¾Ñ?ÐºÑ€ÐµÐ±"
-
-#: adsense.module:68
-msgid "Button"
-msgstr "ÐšÐ½Ð¾Ð¿ÐºÐ°"
-
-#: adsense.module:69
-msgid "Wide Skyscraper"
-msgstr "Ð¨Ð¸Ñ€Ð¾ÐºÐ¸Ð¹ Ð½ÐµÐ±Ð¾Ñ?ÐºÑ€Ñ‘Ð±"
-
-#: adsense.module:70
-msgid "Small Rectangle"
-msgstr "ÐœÐ°Ð»ÐµÐ½ÑŒÐºÐ¸Ð¹ Ð¿Ñ€Ñ?Ð¼Ð¾ÑƒÐ³Ð¾Ð»ÑŒÐºÐ½Ð¸Ð¹"
-
-#: adsense.module:71
-msgid "Small Square"
-msgstr "ÐœÐ°Ð»ÐµÐ½ÑŒÐºÐ¸Ð¹ ÐºÐ²Ð°Ð´Ñ€Ð°Ñ‚"
-
-#: adsense.module:72
-msgid "Half Banner"
-msgstr "ÐŸÐ¾Ð»Ð¾Ð²Ð¸Ð½Ð° Ð±Ð°Ð½ÐµÑ€Ð°"
-
-#: adsense.module:73
-msgid "Square"
-msgstr "ÐšÐ²Ð°Ð´Ñ€Ð°Ñ‚"
-
-#: adsense.module:74
-msgid "Medium Rectangle"
-msgstr "Ð¡Ñ€ÐµÐ´Ð½Ð¸Ð¹ Ð¿Ñ€Ñ?Ð¼Ð¾ÑƒÐ³Ð¾Ð»ÑŒÐ½Ð¸Ðº"
-
-#: adsense.module:75
-msgid "Large Rectangle"
-msgstr "Ð‘Ð¾Ð»ÑŒÑˆÐ¾Ð¹ Ð¿Ñ€Ñ?Ð¼Ð¾ÑƒÐ³Ð¾Ð»ÑŒÐ½Ð¸Ðº"
-
-#: adsense.module:76
-msgid "Banner"
-msgstr "Ð‘Ð°Ð½Ð½ÐµÑ€"
-
-#: adsense.module:77
-msgid "Leaderboard"
-msgstr "Ð‘Ð¾Ð»ÑŒÑˆÐ°Ñ? Ð´Ð¾Ñ?ÐºÐ° Ð¾Ð±ÑŠÑ?Ð²Ð»ÐµÐ½Ð¸Ð¹"
-
-#: adsense.module:85
-msgid "AdSense for Search"
-msgstr "AdSense Ð´Ð»Ñ? Ð¿Ð¾Ð¸Ñ?ÐºÐ°"
-
-#: adsense.module:179
-msgid "AdSense tag"
-msgstr "AdSense Ñ‚ÐµÐ³"
-
-#: adsense.module:183
-msgid "Substitutes an AdSense special tag with an ad."
-msgstr "Ð—Ð°Ð¼ÐµÐ½Ñ?ÐµÑ‚ Ñ?Ð¿ÐµÑ†Ð¸Ð°Ð»ÑŒÐ½Ñ‹Ð¹ ÐºÐ¾Ð´ AdSence Ð½Ð° Ñ€ÐµÐºÐ»Ð°Ð¼Ð½Ð¾Ð¼ Ð¼ÐµÑ?Ñ‚Ðµ."
-
-#: adsense.module:219
-msgid "The HTML corrector filter has a bug that causes problems with the use of the AdSense tag. Disabling the HTML corrector filter is recommended."
-msgstr "Ð¤Ð¸Ð»ÑŒÑ‚Ñ€ HTML-ÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð° Ñ?Ð¾Ð´ÐµÑ€Ð¶Ð¸Ñ‚ Ð¾ÑˆÐ¸Ð±ÐºÑƒ, Ñ‡Ñ‚Ð¾ Ð²Ñ‹Ð·Ñ‹Ð²Ð°ÐµÑ‚ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ñ‹ Ñ? Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸ÐµÐ¼ Ñ‚ÐµÐ³Ð¾Ð² Ð² AdSense.  Ð ÐµÐºÐ¾Ð¼ÐµÐ½Ð´ÑƒÐµÑ‚Ñ?Ñ? Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ðµ Ñ„Ð¸Ð»ÑŒÑ‚Ñ€Ð° HTML ÐºÐ¾Ñ€Ñ€ÐµÐºÑ‚Ð¾Ñ€Ð°."
-
-#: adsense.module:228
-msgid "Use the special tag [adsense:<em>format</em>:<em>slot</em>] or [adsense:<em>format</em>:<em>[group]</em>:<em>[channel]</em><em>[:slot]</em>] or [adsense:block:<em>location</em>] to display Google AdSense ads."
-msgstr "Ð˜Ñ?Ð¿Ð¾Ð»ÑŒÐ·ÑƒÐ¹Ñ‚Ðµ Ñ?Ð¿ÐµÑ†Ð¸Ð°Ð»ÑŒÐ½Ñ‹Ðµ Ñ‚ÐµÐ³Ð¸ [adsense:<em>format</em>:<em>slot</em>] Ð¸Ð»Ð¸ [adsense:<em>format</em>:<em>[group]</em>:<em>[channel]</em><em>[:slot]</em>] Ð¸Ð»Ð¸ [adsense:block:<em>location</em>] Ð´Ð»Ñ? Ð¿Ð¾ÐºÐ°Ð·Ð° Google AdSense ads."
-
-#: (duplicate) adsense.module:162
-#: ;120
-#: old/search/adsense_search.results.inc:17
-msgid "AdSense"
-msgstr "AdSense"
-
-#: (duplicate) adsense.module:163
-msgid "Publisher ID is not set."
-msgstr "ID Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸Ð¸ Ð½Ðµ ÑƒÑ?Ñ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½."
-
-#: (duplicate) adsense.module:164
-msgid "Please configure it in the <a href=\"@url\">AdSense settings page</a>."
-msgstr "ÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹Ñ?Ñ‚Ð° Ð½Ð°Ñ?Ñ‚Ñ€Ð¾Ð¹Ñ‚Ðµ Ñ?Ñ‚Ð¾ Ð½Ð° <a href=\"@url\">AdSense Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ðµ ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ð¸</a>."
-
-#: adsense.module:99
-msgid "administer adsense"
-msgstr "ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ðµ adsense"
-
-#: adsense.module:99
-msgid "hide adsense"
-msgstr "Ñ?ÐºÑ€Ñ‹Ñ‚ÑŒ adsense"
-
-#: adsense.module:99
-msgid "use PHP for ad visibility"
-msgstr "Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·ÑƒÐ¹Ñ‚Ðµ PHP Ð´Ð»Ñ? Ð²Ð¸Ð´Ð¸Ð¼Ð¾Ñ?Ñ‚Ð¸ Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹"
-
-#: adsense.module:121
-msgid "Configure Google AdSense Ads."
-msgstr "Ð?Ð°Ñ?Ñ‚Ñ€Ð¾Ð¹ÐºÐ° Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹ Google AdSense."
-
-#: adsense.module:128
-msgid "Settings"
-msgstr "Ð?Ð°Ñ?Ñ‚Ñ€Ð¾Ð¹ÐºÐ¸"
-
-#: adsense.module:133
-msgid "Publisher ID"
-msgstr "ID Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸Ð¸"
-
-#: adsense.module:142
-msgid "Site ID"
-msgstr "ID Ñ?Ð°Ð¹Ñ‚Ð°"
-
-#: adsense.info:0
-msgid "AdSense core"
-msgstr "AdSense Ñ?Ð´Ñ€Ð¾"
-
-#: adsense.info:0
-msgid "Displays Google AdSense ads on your site to earn revenue. Requires at least one additional ad unit generator module."
-msgstr "ÐžÑ‚Ð¾Ð±Ñ€Ð°Ð¶Ð°ÐµÑ‚ Ð¾Ð±ÑŠÑ?Ð²Ð»ÐµÐ½Ð¸Ñ? Google AdSense Ð½Ð° Ñ?Ð²Ð¾Ñ‘Ð¼ Ñ?Ð°Ð¹Ñ‚Ðµ, Ñ‡Ñ‚Ð¾Ð±Ñ‹ Ð·Ð°Ñ€Ð°Ð±Ð°Ñ‚Ñ‹Ð²Ð°Ñ‚ÑŒ. Ð¢Ñ€ÐµÐ±ÑƒÐµÑ‚Ñ?Ñ? ÐºÐ°Ðº Ð¼Ð¸Ð½Ð¸Ð¼ÑƒÐ¼ Ð¾Ð´Ð¸Ð½ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ð¹ Ñ€ÐµÐºÐ»Ð°Ð¼Ð½Ñ‹Ð¹ Ð±Ð»Ð¾Ðº Ð´Ð»Ñ? Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹."
-
-#: adsense.info:0
-#: contrib/adsense_click/adsense_click.info:0
-#: cse/adsense_cse.info:0
-#: managed/adsense_managed.info:0
-#: old/oldcode/adsense_oldcode.info:0
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-#: old/search/adsense_search.info:0
-msgid "Adsense"
-msgstr "Adsense"
-
-#: contrib/adsense_click/adsense_click.admin.inc:15
-msgid "Click tracking"
-msgstr "Ð¢Ñ€Ð°Ñ?Ñ?Ð¸Ñ€Ð¾Ð²ÐºÐ° ÐºÐ»Ð¸ÐºÐ¾Ð²"
-
-#: contrib/adsense_click/adsense_click.admin.inc:20
-msgid "Enable AdSense click tracking?"
-msgstr "Ð’ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒ Ñ‚Ñ€Ð°Ñ?Ñ?Ð¸Ñ€Ð¾Ð²ÐºÑƒ ÐºÐ»Ð¸ÐºÐ¾Ð² AdSense?"
-
-#: contrib/adsense_click/adsense_click.admin.inc:22
-msgid "Logs IP and time of <a href=!url>AdSense clicks</a>. This can be very useful in tracking which of your pages generate the most clicks, as well as help if click fraud is suspected."
-msgstr "Ð—Ð°Ð¿Ð¸Ñ?Ñ‹Ð²Ð°ÐµÑ‚ IP Ð¸ Ð²Ñ€ÐµÐ¼Ñ? <a href=!url>AdSense ÐºÐ»Ð¸ÐºÐ¾Ð²</a>. Ð­Ñ‚Ð¾ Ð¼Ð¾Ð¶ÐµÑ‚ Ð±Ñ‹Ñ‚ÑŒ Ð¿Ð¾Ð»ÐµÐ·Ð½Ð¾ Ð¿Ñ€Ð¸ Ñ‚Ñ€Ð°Ñ?Ñ?Ð¸Ñ€Ð¾Ð²ÐºÐµ Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ† Ð³ÐµÐ½ÐµÑ€Ð¸Ñ€ÑƒÑŽÑ‰Ð¸Ñ… Ð¼Ð½Ð¾Ð³Ð¾ ÐºÐ»Ð¸ÐºÐ¾Ð², Ð° Ñ‚Ð°ÐºÐ¶Ðµ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒ, ÐµÑ?Ð»Ð¸ Ð¿Ð¾Ð´Ð¾Ð·Ñ€ÐµÐ²Ð°ÐµÑ‚Ñ?Ñ? Ð¼Ð¾ÑˆÐµÐ½Ð½Ð¸Ñ‡ÐµÑ?Ñ‚Ð²Ð¾."
-
-#: contrib/adsense_click/adsense_click.admin.inc:26
-msgid "Enable name resolution of IP addresses?"
-msgstr "Ð’ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒ Ð¿Ñ€ÐµÐ¾Ð±Ñ€Ð°Ð·Ð¾Ð²Ð°Ð½Ð¸Ðµ IP Ð°Ð´Ñ€ÐµÑ?Ð° Ð² Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ? Ð´Ð¾Ð¼ÐµÐ½Ð¾Ð²?"
-
-#: contrib/adsense_click/adsense_click.admin.inc:28
-msgid "Display the domain name instead of the IP address. This can slow down the display of the logs page and tie up a PHP process for several seconds. On some hosting providers it may not be available."
-msgstr "ÐŸÐ¾ÐºÐ°Ð· Ð´Ð¾Ð¼ÐµÐ½Ð½Ð¾Ð³Ð¾ Ð¸Ð¼ÐµÐ½Ð¸ Ð²Ð¼ÐµÑ?Ñ‚Ð¾ IP Ð°Ð´Ñ€ÐµÑ?Ð°. Ð­Ñ‚Ð¾ Ð¼Ð¾Ð¶ÐµÑ‚ Ð·Ð°Ð¼ÐµÐ´Ð»Ð¸Ñ‚ÑŒ Ð¿Ð¾ÐºÐ°Ð· Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ñ‹ Ð»Ð¾Ð³Ð¾Ð² Ð¸ Ð¿Ñ€Ð¾Ð´Ð»ÐµÐ½Ð¸Ðµ Ð¿Ñ€Ð¾Ñ†ÐµÑ?Ñ?Ð° Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ PHP Ð½Ð° Ð½ÐµÑ?ÐºÐ¾Ð»ÑŒÐºÐ¾ Ñ?ÐµÐºÑƒÐ½Ð´. Ð£ Ð½ÐµÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ñ… Ñ…Ð¾Ñ?Ñ‚Ð¸Ð½Ð³Ð¾Ð²Ñ‹Ñ… Ð¿Ñ€Ð¾Ð²Ð°Ð¹Ð´ÐµÑ€Ð¾Ð² Ñ?Ñ‚Ð¾ Ð¼Ð¾Ð¶ÐµÑ‚ Ð±Ñ‹Ñ‚ÑŒ Ð½ÐµÐ´Ð¾Ñ?Ñ‚ÑƒÐ¿Ð½Ð¾."
-
-#: contrib/adsense_click/adsense_click.logs.inc:14
-msgid "Timestamp"
-msgstr "Ð”Ð°Ñ‚Ð°/Ð²Ñ€ÐµÐ¼Ñ?"
-
-#: contrib/adsense_click/adsense_click.logs.inc:15;46
-msgid "Path"
-msgstr "ÐŸÑƒÑ‚ÑŒ"
-
-#: contrib/adsense_click/adsense_click.logs.inc:16
-msgid "IP/Host"
-msgstr "IP/Ð¥Ð¾Ñ?Ñ‚"
-
-#: contrib/adsense_click/adsense_click.logs.inc:17
-msgid "Referrer"
-msgstr "Ð˜Ñ?Ñ‚Ð¾Ñ‡Ð½Ð¸Ðº Ð¾Ñ‚Ñ?Ñ‹Ð»ÐºÐ¸"
-
-#: contrib/adsense_click/adsense_click.logs.inc:47;70
-#: contrib/adsense_click/adsense_click.module:22
-msgid "Clicks"
-msgstr "ÐšÐ»Ð¸ÐºÐ¾Ð²"
-
-#: contrib/adsense_click/adsense_click.logs.inc:48
-msgid "Last"
-msgstr "ÐŸÐ¾Ñ?Ð»ÐµÐ´Ð½Ð¸Ð¹"
-
-#: contrib/adsense_click/adsense_click.logs.inc:69
-msgid "Day"
-msgstr "Ð”ÐµÐ½ÑŒ"
-
-#: contrib/adsense_click/adsense_click.module:66
-msgid "view clicks"
-msgstr "Ð¿Ð¾ÐºÐ°Ð· ÐºÐ»Ð¸ÐºÐ¾Ð²"
-
-#: contrib/adsense_click/adsense_click.module:23
-msgid "Track the clicks on Adsense ads."
-msgstr "ÐžÑ‚Ñ?Ð»ÐµÐ¶Ð¸Ð²Ð°Ð½Ð¸Ðµ ÐºÐ»Ð¸ÐºÐ¾Ð² Ð½Ð° Adsense."
-
-#: contrib/adsense_click/adsense_click.module:32
-msgid "AdSense clicks"
-msgstr "ÐšÐ»Ð¸ÐºÐ¾Ð² AdSense"
-
-#: contrib/adsense_click/adsense_click.module:33
-msgid "Track AdSense clicks."
-msgstr "Ð¡Ð»ÐµÐ´Ð¸Ñ‚ÑŒ Ð·Ð° ÐºÐ»Ð¸ÐºÐ°Ð¼Ð¸ AdSence"
-
-#: contrib/adsense_click/adsense_click.module:40
-msgid "Top pages"
-msgstr "ÐŸÐ¾Ð¿ÑƒÐ»Ñ?Ñ€Ð½Ñ‹Ðµ Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ñ‹"
-
-#: contrib/adsense_click/adsense_click.module:47
-msgid "By day"
-msgstr "Ð’ Ð´ÐµÐ½ÑŒ"
-
-#: contrib/adsense_click/adsense_click.info:0
-msgid "AdSense Click Tracking"
-msgstr "ÐžÑ‚Ñ?Ð»ÐµÐ¶Ð¸Ð²Ð°Ð½Ð¸Ðµ ÐºÐ»Ð¸ÐºÐ¾Ð² AdSense"
-
-#: contrib/adsense_click/adsense_click.info:0
-msgid "Tracks clicks to Google Adsense"
-msgstr "ÐžÑ‚Ñ?Ð»ÐµÐ¶Ð¸Ð²Ð°Ð½Ð¸Ðµ ÐºÐ»Ð¸ÐºÐ¾Ð² Ð½Ð° Google Adsense"
-
-#: cse/adsense_cse.admin.inc:38
-#: old/search/adsense_search.admin.inc:25
-msgid "Search Box Options"
-msgstr "ÐŸÐ°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ‹ Ð¿Ð¾Ð¸Ñ?ÐºÐ°"
-
-#: cse/adsense_cse.admin.inc:43
-#: old/search/adsense_search.admin.inc:61
-msgid "Logo Type"
-msgstr "Ð›Ð¾Ð³Ð¾Ñ‚Ð¸Ð¿"
-
-#: cse/adsense_cse.admin.inc:46
-msgid "Watermark on search box (requires JavaScript)"
-msgstr "Ð’Ð¾Ð´Ñ?Ð½Ð¾Ð¹ Ð·Ð½Ð°Ðº Ð½Ð° Ð¿Ð¾Ð¸Ñ?Ðº (Ñ‚Ñ€ÐµÐ±ÑƒÐµÑ‚Ñ?Ñ? JavaScript)"
-
-#: cse/adsense_cse.admin.inc:47
-msgid "Next to the search box"
-msgstr "Ð Ñ?Ð´Ð¾Ð¼ Ñ? Ð¾ÐºÐ½Ð¾Ð¼ Ð¿Ð¾Ð¸Ñ?ÐºÐ°"
-
-#: cse/adsense_cse.admin.inc:48
-msgid "Below the search box"
-msgstr "Ð?Ð¸Ð¶Ðµ Ð¾ÐºÐ½Ð° Ð¿Ð¾Ð¸Ñ?ÐºÐ°"
-
-#: cse/adsense_cse.admin.inc:54
-#: old/oldcode/adsense_oldcode.admin.inc:92
-#: old/search/adsense_search.admin.inc:78
-msgid "Background color"
-msgstr "Ð¦Ð²ÐµÑ‚ Ñ„Ð¾Ð½Ð°"
-
-#: cse/adsense_cse.admin.inc:57
-#: old/search/adsense_search.admin.inc:81;93
-msgid "White"
-msgstr "Ð‘ÐµÐ»Ñ‹Ð¹"
-
-#: cse/adsense_cse.admin.inc:58
-#: old/search/adsense_search.admin.inc:83
-msgid "Gray"
-msgstr "Ð¡ÐµÑ€Ñ‹Ð¹"
-
-#: cse/adsense_cse.admin.inc:59
-#: old/search/adsense_search.admin.inc:82;92
-msgid "Black"
-msgstr "Ð§ÐµÑ€Ð½Ñ‹Ð¹"
-
-#: cse/adsense_cse.admin.inc:65
-#: old/search/adsense_search.admin.inc:106
-msgid "Site Encoding"
-msgstr "ÐšÐ¾Ð´Ð¸Ñ€Ð¾Ð²ÐºÐ° Ñ?Ð°Ð¹Ñ‚Ð°"
-
-#: cse/adsense_cse.admin.inc:72
-msgid "Text Box Length"
-msgstr "Ð”Ð»Ð¸Ð½Ð½Ð° Ñ‚ÐµÐºÑ?Ñ‚Ð¾Ð²Ð¾Ð³Ð¾ Ð±Ð»Ð¾ÐºÐ°"
-
-#: cse/adsense_cse.admin.inc:80
-msgid "Watermark Language"
-msgstr "Ð¯Ð·Ñ‹Ðº Ð²Ð¾Ð´Ñ?Ð½Ð¾Ð³Ð¾ Ð·Ð½Ð°ÐºÐ°"
-
-#: cse/adsense_cse.admin.inc:89
-#: old/search/adsense_search.admin.inc:123
-msgid "Search Results Style"
-msgstr "Ð¡Ñ‚Ð¸Ð»ÑŒ Ñ€ÐµÐ·ÑƒÐ»ÑŒÑ‚Ð°Ñ‚Ð¾Ð² Ð¿Ð¾Ð¸Ñ?ÐºÐ°"
-
-#: cse/adsense_cse.admin.inc:94
-#: old/search/adsense_search.admin.inc:128
-msgid "Country or territory for Google domain"
-msgstr "Ð¡Ñ‚Ñ€Ð°Ð½Ð° Ð¸Ð»Ð¸ Ñ‚ÐµÑ€Ñ€Ð¸Ñ‚Ð¾Ñ€Ð¸Ñ? Ð´Ð»Ñ? Ð´Ð¾Ð¼ÐµÐ½Ð° Google"
-
-#: cse/adsense_cse.admin.inc:101
-#: old/search/adsense_search.admin.inc:135
-msgid "Width of results area"
-msgstr "Ð¨Ð¸Ñ€Ð¸Ð½Ð° Ð¾Ð±Ð»Ð°Ñ?Ñ‚Ð¸ Ñ€ÐµÐ·ÑƒÐ»ÑŒÑ‚Ð°Ñ‚Ð¾Ð²"
-
-#: cse/adsense_cse.admin.inc:109
-msgid "Ad Location"
-msgstr "Ad Ð¼ÐµÑ?Ñ‚Ð¾Ð½Ð°Ñ…Ð¾Ð¶Ð´ÐµÐ½Ð¸Ðµ"
-
-#: cse/adsense_cse.admin.inc:112
-msgid "Top and Right"
-msgstr "Ð’ÐµÑ€Ñ… Ð¸ Ð¡Ð¿Ñ€Ð°Ð²Ð°"
-
-#: cse/adsense_cse.admin.inc:113
-msgid "Top and Bottom"
-msgstr "Ð’ÐµÑ€Ñ… Ð¸ Ð?Ð¸Ð·"
-
-#: cse/adsense_cse.admin.inc:114
-#: managed/adsense_managed.module:94
-#: old/oldcode/adsense_oldcode.module:120
-msgid "Right"
-msgstr "ÐŸÑ€Ð°Ð²Ð¾"
-
-#: cse/adsense_cse.admin.inc:122
-#: managed/adsense_managed.admin.inc:36
-#: old/oldcode/adsense_oldcode.admin.inc:22
-#: old/search/adsense_search.admin.inc:226
-msgid "AdSense Blocks"
-msgstr "AdSense Ð‘Ð»Ð¾Ðº"
-
-#: cse/adsense_cse.admin.inc:127
-#: managed/adsense_managed.admin.inc:41
-#: old/oldcode/adsense_oldcode.admin.inc:27
-#: old/search/adsense_search.admin.inc:231
-msgid "Number of blocks"
-msgstr "ÐšÐ¾Ð»Ð¸Ñ‡ÐµÑ?Ñ‚Ð²Ð¾ Ð±Ð»Ð¾ÐºÐ¾Ð²"
-
-#: cse/adsense_cse.admin.inc:146
-#: old/search/adsense_search.admin.inc:268
-msgid "Text Box Length must be between !min and !max"
-msgstr "Ð¢ÐµÐºÑ?Ñ‚Ð¾Ð²Ñ‹Ðµ Ð±Ð»Ð¾Ðº Ð´Ð¾Ð»Ð¶ÐµÐ½ Ð±Ñ‹Ñ‚ÑŒ Ð¼ÐµÐ¶Ð´Ñƒ !min Ð¸ !max"
-
-#: cse/adsense_cse.admin.inc:152
-msgid "Results area width must be between !min and !max"
-msgstr "Ð¨Ð¸Ñ€Ð¸Ð½Ð° Ð¾Ð±Ð»Ð°Ñ?Ñ‚Ð¸ Ñ€ÐµÐ·ÑƒÐ»ÑŒÑ‚Ð°Ñ‚Ð¾Ð² Ð´Ð¾Ð»Ð¶Ð½Ð° Ð±Ñ‹Ñ‚ÑŒ Ð¼ÐµÐ¶Ð´Ñƒ !min Ð¸ !max"
-
-#: cse/adsense_cse.admin.inc:156
-#: managed/adsense_managed.admin.inc:58
-#: old/oldcode/adsense_oldcode.admin.inc:168
-#: old/search/adsense_search.admin.inc:273
-msgid "Number of blocks can't be a negative number"
-msgstr "ÐšÐ¾Ð»Ð¸Ñ‡ÐµÑ?Ñ‚Ð²Ð¾ Ð±Ð»Ð¾ÐºÐ¾Ð² Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ‚ Ð±Ñ‹Ñ‚ÑŒ Ð¾Ñ‚Ñ€Ð¸Ñ†Ð°Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ð¼ Ñ‡Ð¸Ñ?Ð»Ð¾Ð¼"
-
-#: cse/adsense_cse.module:65
-msgid "AdSense CSE: unconfigured "
-msgstr "AdSense CSE: Ð½ÐµÐ½Ð°Ñ?Ñ‚Ñ€Ð¾ÐµÐ½Ð½Ð¾Ðµ "
-
-#: cse/adsense_cse.module:76
-#: managed/adsense_managed.module:61
-#: old/oldcode/adsense_oldcode.module:82
-#: old/search/adsense_search.module:92
-msgid "Block description"
-msgstr "ÐžÐ¿Ð¸Ñ?Ð°Ð½Ð¸Ðµ Ð±Ð»Ð¾ÐºÐ°"
-
-#: cse/adsense_cse.module:79
-#: managed/adsense_managed.module:64
-#: old/oldcode/adsense_oldcode.module:85
-#: old/search/adsense_search.module:95
-msgid "A brief description of your block. Used on the <a href=\"@overview\">block overview page</a>."
-msgstr "ÐšÑ€Ð°Ñ‚ÐºÐ¾Ðµ Ð¾Ð¿Ð¸Ñ?Ð°Ð½Ð¸Ðµ Ð²Ð°ÑˆÐµÐ³Ð¾ Ð±Ð»Ð¾ÐºÐ°. Ð˜Ñ?Ð¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚Ñ?Ñ? Ð½Ð° <a href=\"@overview\">Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ðµ Ð¾Ð±Ð·Ð¾Ñ€Ð° Ð±Ð»Ð¾ÐºÐ¾Ð²</a>."
-
-#: cse/adsense_cse.module:86
-#: managed/adsense_managed.module:80
-msgid "Ad Slot ID"
-msgstr "ÐšÐ°Ð½Ð°Ð» ID"
-
-#: cse/adsense_cse.module:88
-msgid "This is the provided by the AdSense site in the Search Box Code \"cx\" field. This is usually provided in the form partner-<em>Publisher ID</em>:<em>Slot Id</em>. If the code provided is, for example, partner-pub-0123456789:<strong>abcdef-ghij</strong>, then insert only <strong>abcdef-ghij</strong> here."
-msgstr "Ð­Ñ‚Ð¾ Ð¿Ñ€ÐµÐ´ÑƒÑ?Ð¼Ð¾Ñ‚Ñ€ÐµÐ½Ð¾ Ð² AdSense Ð½Ð° Ñ?Ð°Ð¹Ñ‚Ðµ Ð²  Search Box Code  \"cx\" Ð¿Ð¾Ð»Ðµ. Ð­Ñ‚Ð¾, ÐºÐ°Ðº Ð¿Ñ€Ð°Ð²Ð¸Ð»Ð¾, Ð¿Ñ€ÐµÐ´Ð¾Ñ?Ñ‚Ð°Ð²Ð»Ñ?ÐµÑ‚Ñ?Ñ? Ð² Ð²Ð¸Ð´Ðµ pertner-<em>Publisher ID</em>:<em>slot ID</em>. Ð•Ñ?Ð»Ð¸ ÐºÐ¾Ð´ Ð¾ÐºÐ°Ð·Ñ‹Ð²Ð°ÐµÑ‚Ñ?Ñ?, Ð½Ð°Ð¿Ñ€Ð¸Ð¼ÐµÑ€,  partner-pub-0123456789:<strong>abcdef-ghij</strong>, Ð½ÑƒÐ¶Ð½Ð¾ Ð²Ñ?Ñ‚Ð°Ð²Ð¸Ñ‚ÑŒ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ <strong> abcdef-ghij</strong> Ð·Ð´ÐµÑ?ÑŒ."
-
-#: cse/adsense_cse.module:101
-#: managed/adsense_managed.module:109
-#: old/oldcode/adsense_oldcode.module:135
-#: old/search/adsense_search.module:116
-msgid "AdSense unconfigured block. <a href=!url>Click to configure.</a>"
-msgstr "AdSense Ð±Ð»Ð¾Ðº Ð½Ðµ Ð½Ð°Ñ?Ñ‚Ñ€Ð¾ÐµÐ½ . <a href=!url>Ð?Ð°Ð¶Ð°Ñ‚ÑŒ Ð´Ð»Ñ? Ð½Ð°Ñ?Ñ‚Ñ€Ð¾Ð¹ÐºÐ¸.</a>"
-
-#: cse/adsense_cse.module:143
-#: old/search/adsense_search.module:187;45
-msgid "Search"
-msgstr "ÐŸÐ¾Ð¸Ñ?Ðº"
-
-#: cse/adsense_cse.module:144;34
-msgid "Custom Search"
-msgstr "ÐŸÐ¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒÑ?ÐºÐ¸Ð¹ Ð¿Ð¾Ð¸Ñ?Ðº"
-
-#: cse/adsense_cse.module:43
-#: old/search/adsense_search.module:54
-msgid "Search Results"
-msgstr "Ð ÐµÐ·ÑƒÐ»ÑŒÑ‚Ð°Ñ‚Ñ‹ Ð¿Ð¾Ð¸Ñ?ÐºÐ°"
-
-#: cse/adsense_cse.info:0
-msgid "CSE Search"
-msgstr "CSE ÐŸÐ¾Ð¸Ð¸Ñ?Ðº"
-
-#: cse/adsense_cse.info:0
-msgid "AdSense for Search generator module. This module uses the new Custom Search Engine code created via the Adsense interface."
-msgstr "AdSense Ð´Ð»Ñ? Ð¿Ð¾Ð¸Ñ?ÐºÐ°. Ð­Ñ‚Ð¾Ñ‚ Ð¼Ð¾Ð´ÑƒÐ»ÑŒ Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ Ð½Ð¾Ð²ÑƒÑŽ Ñ?Ð¸Ñ?Ñ‚ÐµÐ¼Ñƒ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒÑ?ÐºÐ¾Ð³Ð¾ Ð¿Ð¾Ð¸Ñ?ÐºÐ° Ñ?Ð¾Ð·Ð´Ð°Ð½Ð½ÑƒÑŽ Ñ? Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Adsense Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ?Ð°."
-
-#: help/adsense.help.inc:23
-msgid "Format"
-msgstr "Ð¤Ð¾Ñ€Ð¼Ð°Ñ‚"
-
-#: help/adsense.help.inc:23
-msgid "Description"
-msgstr "ÐžÐ¿Ð¸Ñ?Ð°Ð½Ð¸Ðµ"
-
-#: help/adsense.help.inc:23
-msgid "Width"
-msgstr "Ð¨Ð¸Ñ€Ð¸Ð½Ð°"
-
-#: help/adsense.help.inc:23
-msgid "Height"
-msgstr "Ð’Ñ‹Ñ?Ð¾Ñ‚Ð°"
-
-#: help/adsense.help.inc:35
-msgid "Custom search help"
-msgstr "Ð¡Ð¿Ñ€Ð°Ð²ÐºÐ° Ð¿Ð¾ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒÑ?ÐºÐ¾Ð¼Ñƒ Ð¿Ð¾Ð¸Ñ?ÐºÑƒ"
-
-#: help/adsense.help.inc:38
-msgid "Adsense CSE module (which must be enabled; !link) and refer to its help"
-msgstr "Adsense CSE Ð¼Ð¾Ð´ÑƒÐ»ÑŒ (ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ð¹ Ð´Ð¾Ð»Ð¶ÐµÐ½ Ð±Ñ‹Ñ‚ÑŒ Ð²ÐºÐ»ÑŽÑ‡Ñ‘Ð½; !link) Ð¸ Ñ?Ñ?Ñ‹Ð»ÐºÐ° Ð½Ð° Ñ?Ð¿Ñ€Ð°Ð²ÐºÑƒ"
-
-#: help/adsense.help.inc:38
-msgid "modules"
-msgstr "ÐœÐ¾Ð´ÑƒÐ»Ð¸"
-
-#: includes/adsense.search_options.inc:17
-msgid "West European Latin-1 (ISO-8859-1)"
-msgstr "Ð—Ð°Ð¿Ð°Ð´Ð½Ð¾ÐµÐ²Ñ€Ð¾Ð¿ÐµÐ¹Ñ?ÐºÐ°Ñ? Latin-1 (ISO-8859-1)"
-
-#: includes/adsense.search_options.inc:18
-msgid "West European Latin-9 (ISO-8859-15)"
-msgstr "Ð—Ð°Ð¿Ð°Ð´Ð½Ð¾ÐµÐ²Ñ€Ð¾Ð¿ÐµÐ¹Ñ?ÐºÐ°Ñ? Latin-9 (ISO-8859-15)"
-
-#: includes/adsense.search_options.inc:19
-msgid "Western (Windows-1252)"
-msgstr "Ð—Ð°Ð¿Ð°Ð´Ð½Ð°Ñ? (Windows-1252)"
-
-#: includes/adsense.search_options.inc:20
-msgid "Nordic Latin-6 (ISO-8859-10)"
-msgstr "Ð¡ÐµÐ²ÐµÑ€Ð½Ñ‹Ð¹ Latin-6 (ISO-8859-10)"
-
-#: includes/adsense.search_options.inc:21
-msgid "Greek (ISO-8859-7)"
-msgstr "Ð“Ñ€ÐµÑ†Ð¸Ñ? (ISO-8859-7)"
-
-#: includes/adsense.search_options.inc:22
-msgid "Japanese (Shift_JIS)"
-msgstr "Ð¯Ð¿Ð¾Ð½Ð¸Ñ? (Shift_JIS)"
-
-#: includes/adsense.search_options.inc:23
-msgid "Japanese (EUC-JP)"
-msgstr "Ð¯Ð¿Ð¾Ð½Ð¸Ñ? (EUC-JP)"
-
-#: includes/adsense.search_options.inc:24
-msgid "Japanese (ISO-2022-JP)"
-msgstr "Ð¯Ð¿Ð¾Ð½Ð¸Ñ? (ISO-2022-JP)"
-
-#: includes/adsense.search_options.inc:25
-msgid "Chinese Simplified (GB2312)"
-msgstr "ÐšÐ¸Ñ‚Ð°Ð¹Ñ?ÐºÐ¸Ð¹ ÑƒÐ¿Ñ€Ð¾Ñ‰ÐµÐ½Ð½Ñ‹Ð¹ (GB2312)"
-
-#: includes/adsense.search_options.inc:26
-msgid "Chinese Simplified (GB18030)"
-msgstr "ÐšÐ¸Ñ‚Ð°Ð¹Ñ?ÐºÐ¸Ð¹ ÑƒÐ¿Ñ€Ð¾Ñ‰ÐµÐ½Ð½Ñ‹Ð¹ (GB18030)"
-
-#: includes/adsense.search_options.inc:27
-msgid "Chinese Traditional (Big5)"
-msgstr "ÐšÐ¸Ñ‚Ð°Ð¹Ñ?ÐºÐ¸Ð¹ Ñ‚Ñ€Ð°Ð´Ð¸Ñ†Ð¸Ð¾Ð½Ð½Ñ‹Ð¹ (Big5)"
-
-#: includes/adsense.search_options.inc:28
-msgid "Korean (EUC-KR)"
-msgstr "ÐšÐ¾Ñ€ÐµÐ¹Ñ?ÐºÐ¸Ð¹ (EUC-KR)"
-
-#: includes/adsense.search_options.inc:29
-msgid "Thai (Windows-874)"
-msgstr "Ð¢Ð°Ð¸ (Windows-874)"
-
-#: includes/adsense.search_options.inc:30
-msgid "Vietnamese (Windows-1258)"
-msgstr "Ð’ÑŒÐµÑ‚Ð½Ð°Ð¼Ñ?ÐºÐ¸Ð¹ (Windows-1258)"
-
-#: includes/adsense.search_options.inc:31
-msgid "Central European Latin-2 (ISO-8859-2)"
-msgstr "Ð¦ÐµÐ½Ñ‚Ñ€Ð°Ð»ÑŒÐ½Ð¾-Ð•Ð²Ñ€Ð¾Ð¿ÐµÐ¹Ñ?ÐºÐ¸Ð¹ Latin-2 (ISO-8859-2)"
-
-#: includes/adsense.search_options.inc:32
-msgid "Central European (Windows-1250)"
-msgstr "Ð¦ÐµÐ½Ñ‚Ñ€Ð°Ð»ÑŒÐ½Ð¾-Ð•Ð²Ñ€Ð¾Ð¿ÐµÐ¹Ñ?ÐºÐ¸Ð¹ (Windows-1250)"
-
-#: includes/adsense.search_options.inc:33
-msgid "Central European (CP852)"
-msgstr "Ð¦ÐµÐ½Ñ‚Ñ€Ð°Ð»ÑŒÐ½Ð¾-Ð•Ð²Ñ€Ð¾Ð¿ÐµÐ¹Ñ?ÐºÐ¸Ð¹ (CP852)"
-
-#: includes/adsense.search_options.inc:34
-msgid "Turkish Latin-5 (ISO-8859-9)"
-msgstr "Ð¢ÑƒÑ€ÐµÑ†ÐºÐ¸Ð¹ Latin-5 (ISO-8859-9)"
-
-#: includes/adsense.search_options.inc:35
-msgid "Turkish (Windows-1254)"
-msgstr "Ð¢ÑƒÑ€ÐµÑ†ÐºÐ¸Ð¹ (Windows-1254)"
-
-#: includes/adsense.search_options.inc:36
-msgid "South European Latin-3 (ISO-8859-3)"
-msgstr "Ð®Ð¶Ð½Ð¾-Ð•Ð²Ñ€Ð¾Ð¿ÐµÐ¹Ñ?ÐºÐ¸Ð¹ Latin-3 (ISO-8859-3)"
-
-#: includes/adsense.search_options.inc:37
-msgid "Hebrew (ISO-8859-8-I)"
-msgstr "Ð˜Ð²Ñ€Ð¸Ñ‚ (ISO-8859-8-I)"
-
-#: includes/adsense.search_options.inc:38
-msgid "Hebrew (Windows-1255)"
-msgstr "Ð˜Ð²Ñ€Ð¸Ñ‚ (Windows-1255)"
-
-#: includes/adsense.search_options.inc:39
-msgid "Arabic (Windows-1256)"
-msgstr "Ð?Ñ€Ð°Ð±Ñ?ÐºÐ¸Ð¹ (Windows-1256)"
-
-#: includes/adsense.search_options.inc:40
-msgid "Cyrillic (ISO-8859-5)"
-msgstr "ÐšÐ¸Ñ€Ð¸Ð»Ð»Ð¸Ñ†Ð° (ISO-8859-5)"
-
-#: includes/adsense.search_options.inc:41
-msgid "Cyrillic (KOI8-R)"
-msgstr "ÐšÐ¸Ñ€Ð¸Ð»Ð»Ð¸Ñ†Ð° (KOI8-R)"
-
-#: includes/adsense.search_options.inc:42
-msgid "Cyrillic (Windows-1251)"
-msgstr "ÐšÐ¸Ñ€Ð¸Ð»Ð»Ð¸Ñ†Ð° (Windows-1251)"
-
-#: includes/adsense.search_options.inc:43
-msgid "Cyrillic/Russian (CP-866)"
-msgstr "ÐšÐ¸Ñ€Ð¸Ð»Ð»Ð¸Ñ†Ð°/Ð ÑƒÑ?Ñ?ÐºÐ¸Ð¹ (CP-866)"
-
-#: includes/adsense.search_options.inc:44
-msgid "Unicode (UTF-8)"
-msgstr "Ð®Ð½Ð¸ÐºÐ¾Ð´ (UTF-8)"
-
-#: includes/adsense.search_options.inc:56
-msgid "United Kingdom"
-msgstr "Ð¡Ð¾ÐµÐ´Ð¸Ð½Ñ‘Ð½Ð½Ð¾Ðµ ÐšÐ¾Ñ€Ð¾Ð»ÐµÐ²Ñ?Ñ‚Ð²Ð¾"
-
-#: includes/adsense.search_options.inc:57
-msgid "Canada"
-msgstr "ÐšÐ°Ð½Ð°Ð´Ð°"
-
-#: includes/adsense.search_options.inc:58
-msgid "Germany"
-msgstr "Ð“ÐµÑ€Ð¼Ð°Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:59
-msgid "Japan"
-msgstr "Ð¯Ð¿Ð¾Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:60
-msgid "France"
-msgstr "Ð¤Ñ€Ð°Ð½Ñ†Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:61
-msgid "Australia"
-msgstr "Ð?Ð²Ñ?Ñ‚Ñ€Ð°Ð»Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:62
-msgid "Italy"
-msgstr "Ð˜Ñ‚Ð°Ð»Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:63
-msgid "Austria"
-msgstr "Ð?Ð²Ñ?Ñ‚Ñ€Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:64
-msgid "Switzerland"
-msgstr "Ð¨Ð²ÐµÐ¹Ñ†Ð°Ñ€Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:65
-msgid "Spain"
-msgstr "Ð˜Ñ?Ð¿Ð°Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:66
-msgid "Netherlands"
-msgstr "Ð?Ð¸Ð´ÐµÑ€Ð»Ð°Ð½Ð´Ñ‹"
-
-#: includes/adsense.search_options.inc:67
-msgid "Belgium"
-msgstr "Ð‘ÐµÐ»ÑŒÐ³Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:68
-msgid "Denmark"
-msgstr "Ð”Ð°Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:69
-msgid "Sweden"
-msgstr "Ð¨Ð²ÐµÑ†Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:70
-msgid "Norway"
-msgstr "Ð?Ð¾Ñ€Ð²ÐµÐ³Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:71
-msgid "Brazil"
-msgstr "Ð‘Ñ€Ð°Ð·Ð¸Ð»Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:72
-msgid "Portugal"
-msgstr "ÐŸÐ¾Ñ€Ñ‚ÑƒÐ³Ð°Ð»Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:73
-msgid "Finland"
-msgstr "Ð¤Ð¸Ð½Ð»Ñ?Ð½Ð´Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:74
-msgid "South Korea"
-msgstr "Ð®Ð¶Ð½Ð°Ñ? ÐšÐ¾Ñ€ÐµÑ?"
-
-#: includes/adsense.search_options.inc:75
-msgid "China"
-msgstr "ÐšÐ¸Ñ‚Ð°Ð¹"
-
-#: includes/adsense.search_options.inc:76
-msgid "Hong Kong"
-msgstr "Ð“Ð¾Ð½ÐºÐ¾Ð½Ð³"
-
-#: includes/adsense.search_options.inc:77
-msgid "Taiwan"
-msgstr "Ð¢Ð°Ð¹Ð²Ð°Ð½ÑŒ"
-
-#: includes/adsense.search_options.inc:78
-msgid "Singapore"
-msgstr "Ð¡Ð¸Ð½Ð³Ð°Ð¿ÑƒÑ€"
-
-#: includes/adsense.search_options.inc:79
-msgid "Afghanistan"
-msgstr "Ð?Ñ„Ð³Ð°Ð½Ð¸Ñ?Ñ‚Ð°Ð½"
-
-#: includes/adsense.search_options.inc:80
-msgid "Albania"
-msgstr "Ð?Ð»Ð±Ð°Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:81
-msgid "Algeria"
-msgstr "Ð?Ð»Ð¶Ð¸Ñ€"
-
-#: includes/adsense.search_options.inc:82
-msgid "American Samoa"
-msgstr "Ð’Ð¾Ñ?Ñ‚Ð¾Ñ‡Ð½Ð¾Ðµ Ð¡Ð°Ð¼Ð¾Ð°"
-
-#: includes/adsense.search_options.inc:83
-msgid "Andorra"
-msgstr "Ð?Ð½Ð´Ð¾Ñ€Ñ€Ð°"
-
-#: includes/adsense.search_options.inc:84
-msgid "Angola"
-msgstr "Ð?Ð½Ð³Ð¾Ð»Ð°"
-
-#: includes/adsense.search_options.inc:85
-msgid "Anguilla"
-msgstr "Ð?Ð½Ð³Ð¸Ð»ÑŒÑ?"
-
-#: includes/adsense.search_options.inc:86
-msgid "Antarctica"
-msgstr "Ð?Ð½Ñ‚Ð°Ñ€ÐºÑ‚Ð¸Ð´Ð°"
-
-#: includes/adsense.search_options.inc:87
-msgid "Antigua and Barbuda"
-msgstr "Ð?Ð½Ñ‚Ð¸Ð³ÑƒÐ° Ð¸ Ð‘Ð°Ñ€Ð±ÑƒÐ´Ð°"
-
-#: includes/adsense.search_options.inc:88
-msgid "Argentina"
-msgstr "Ð?Ñ€Ð³ÐµÐ½Ñ‚Ð¸Ð½Ð°"
-
-#: includes/adsense.search_options.inc:89
-msgid "Armenia"
-msgstr "Ð?Ñ€Ð¼ÐµÐ½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:90
-msgid "Aruba"
-msgstr "Ð?Ñ€ÑƒÐ±Ð°"
-
-#: includes/adsense.search_options.inc:91
-msgid "Azerbaijan"
-msgstr "Ð?Ð·ÐµÑ€Ð±Ð°Ð¹Ð´Ð¶Ð°Ð½"
-
-#: includes/adsense.search_options.inc:92
-msgid "Bahamas"
-msgstr "Ð‘Ð°Ð³Ð°Ð¼Ñ?ÐºÐ¸Ðµ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:93
-msgid "Bahrain"
-msgstr "Ð‘Ð°Ñ…Ñ€ÐµÐ¹Ð½"
-
-#: includes/adsense.search_options.inc:94
-msgid "Bangladesh"
-msgstr "Ð‘Ð°Ð½Ð³Ð»Ð°Ð´ÐµÑˆ"
-
-#: includes/adsense.search_options.inc:95
-msgid "Barbados"
-msgstr "Ð‘Ð°Ñ€Ð±Ð°Ð´Ð¾Ñ?"
-
-#: includes/adsense.search_options.inc:96
-msgid "Belarus"
-msgstr "Ð‘ÐµÐ»Ð¾Ñ€ÑƒÑ?Ñ?Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:97
-msgid "Belize"
-msgstr "Ð‘ÐµÐ»Ð¸Ð·"
-
-#: includes/adsense.search_options.inc:98
-msgid "Benin"
-msgstr "Ð‘ÐµÐ½Ð¸Ð½"
-
-#: includes/adsense.search_options.inc:99
-msgid "Bermuda"
-msgstr "Ð‘ÐµÑ€Ð¼ÑƒÐ´Ñ?ÐºÐ¸Ðµ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:100
-msgid "Bhutan"
-msgstr "Ð‘ÑƒÑ‚Ð°Ð½"
-
-#: includes/adsense.search_options.inc:101
-msgid "Bolivia"
-msgstr "Ð‘Ð¾Ð»Ð¸Ð²Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:102
-msgid "Bosnia and Herzegovina"
-msgstr "Ð‘Ð¾Ñ?Ð½Ð¸Ñ? Ð¸ Ð“ÐµÑ€Ñ†ÐµÐ³Ð¾Ð²Ð¸Ð½Ð°"
-
-#: includes/adsense.search_options.inc:103
-msgid "Botswana"
-msgstr "Ð‘Ð¾Ñ‚Ñ?Ð²Ð°Ð½Ð°"
-
-#: includes/adsense.search_options.inc:104
-msgid "Bouvet Island"
-msgstr "ÐžÑ?Ñ‚Ñ€Ð¾Ð²Ð° Ð‘ÑƒÐ²Ðµ"
-
-#: includes/adsense.search_options.inc:105
-msgid "British Indian Ocean Territory"
-msgstr "Ð‘Ñ€Ð¸Ñ‚Ð°Ð½Ñ?ÐºÐ°Ñ? Ñ‚ÐµÑ€Ñ€Ð¸Ñ‚Ð¾Ñ€Ð¸Ñ? Ð² Ð˜Ð½Ð´Ð¸Ð¹Ñ?ÐºÐ¾Ð¼ Ð¾ÐºÐµÐ°Ð½Ðµ"
-
-#: includes/adsense.search_options.inc:106
-msgid "Brunei Darussalam"
-msgstr "Ð‘Ñ€ÑƒÐ½ÐµÐ¹"
-
-#: includes/adsense.search_options.inc:107
-msgid "Bulgaria"
-msgstr "Ð‘Ð¾Ð»Ð³Ð°Ñ€Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:108
-msgid "Burkina Faso"
-msgstr "Ð‘ÑƒÑ€ÐºÐ¸Ð½Ð°-Ð¤Ð°Ñ?Ð¾"
-
-#: includes/adsense.search_options.inc:109
-msgid "Burundi"
-msgstr "Ð‘ÑƒÑ€ÑƒÐ½Ð´Ð¸"
-
-#: includes/adsense.search_options.inc:110
-msgid "Cambodia"
-msgstr "ÐšÐ°Ð¼Ð±Ð¾Ð´Ð¶Ð°"
-
-#: includes/adsense.search_options.inc:111
-msgid "Cameroon"
-msgstr "ÐšÐ°Ð¼ÐµÑ€ÑƒÐ½"
-
-#: includes/adsense.search_options.inc:112
-msgid "Cape Verde"
-msgstr "ÐšÐ°Ð±Ð¾-Ð’ÐµÑ€Ð´Ðµ"
-
-#: includes/adsense.search_options.inc:113
-msgid "Cayman Islands"
-msgstr "ÐšÐ°Ð¹Ð¼Ð°Ð½Ñ?ÐºÐ¸Ðµ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:114
-msgid "Central African Republic"
-msgstr "Ð¦ÐµÐ½Ñ‚Ñ€Ð°Ð»ÑŒÐ½Ð¾Ð°Ñ„Ñ€Ð¸ÐºÐ°Ð½Ñ?ÐºÐ°Ñ? Ð ÐµÑ?Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°"
-
-#: includes/adsense.search_options.inc:115
-msgid "Chad"
-msgstr "Ð§Ð°Ð´"
-
-#: includes/adsense.search_options.inc:116
-msgid "Chile"
-msgstr "Ð§Ð¸Ð»Ð¸"
-
-#: includes/adsense.search_options.inc:117
-msgid "Christmas Island"
-msgstr "Ð¾Ñ?Ñ‚Ñ€Ð¾Ð² Ð Ð¾Ð¶Ð´ÐµÑ?Ñ‚Ð²Ð° (Ð˜Ð½Ð´Ð¸Ð¹Ñ?ÐºÐ¸Ð¹ Ð¾ÐºÐµÐ°Ð½)"
-
-#: includes/adsense.search_options.inc:118
-msgid "Cocos (Keeling) Islands"
-msgstr "ÐšÐ¾ÐºÐ¾Ñ?Ð¾Ð²Ñ‹Ðµ (ÐšÐ¸Ð»Ð¸Ð½Ð³) Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:119
-msgid "Colombia"
-msgstr "ÐšÐ¾Ð»ÑƒÐ¼Ð±Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:120
-msgid "Comoros"
-msgstr "ÐšÐ¾Ð¼Ð¾Ñ€Ñ?ÐºÐ¸Ðµ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:121
-msgid "Congo"
-msgstr "ÐšÐ¾Ð½Ð³Ð¾"
-
-#: includes/adsense.search_options.inc:122
-msgid "Congo,Democratic Republic"
-msgstr "ÐšÐ¾Ð½Ð³Ð¾, Ð”ÐµÐ¼Ð¾ÐºÑ€Ð°Ñ‚Ð¸Ñ‡ÐµÑ?ÐºÐ°Ñ? Ð ÐµÑ?Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°"
-
-#: includes/adsense.search_options.inc:123
-msgid "Cook Islands"
-msgstr "Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð° ÐšÑƒÐºÐ°"
-
-#: includes/adsense.search_options.inc:124
-msgid "Costa Rica"
-msgstr "ÐšÐ¾Ñ?Ñ‚Ð°-Ð Ð¸ÐºÐ°"
-
-#: includes/adsense.search_options.inc:125
-msgid "Cote d'Ivoire"
-msgstr "ÐšÐ¾Ñ‚-Ð´'Ð˜Ð²ÑƒÐ°Ñ€"
-
-#: includes/adsense.search_options.inc:126
-msgid "Croatia"
-msgstr "Ð¥Ð¾Ñ€Ð²Ð°Ñ‚Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:127
-msgid "Cuba"
-msgstr "ÐšÑƒÐ±Ð°"
-
-#: includes/adsense.search_options.inc:128
-msgid "Cyprus"
-msgstr "ÐšÐ¸Ð¿Ñ€"
-
-#: includes/adsense.search_options.inc:129
-msgid "Czech Republic"
-msgstr "Ð§ÐµÑ…Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:130
-msgid "Djibouti"
-msgstr "Ð”Ð¶Ð¸Ð±ÑƒÑ‚Ð¸"
-
-#: includes/adsense.search_options.inc:131
-msgid "Dominica"
-msgstr "Ð”Ð¾Ð¼Ð¸Ð½Ð¸ÐºÐ°"
-
-#: includes/adsense.search_options.inc:132
-msgid "Dominican Republic"
-msgstr "Ð”Ð¾Ð¼Ð¸Ð½Ð¸ÐºÐ°Ð½Ñ?ÐºÐ°Ñ? Ð ÐµÑ?Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°"
-
-#: includes/adsense.search_options.inc:133
-msgid "East Timor"
-msgstr "Ð’Ð¾Ñ?Ñ‚Ð¾Ñ‡Ð½Ñ‹Ð¹ Ð¢Ð¸Ð¼Ð¾Ñ€"
-
-#: includes/adsense.search_options.inc:134
-msgid "Ecuador"
-msgstr "Ð­ÐºÐ²Ð°Ð´Ð¾Ñ€"
-
-#: includes/adsense.search_options.inc:135
-msgid "Egypt"
-msgstr "Ð•Ð³Ð¸Ð¿ÐµÑ‚"
-
-#: includes/adsense.search_options.inc:136
-msgid "El Salvador"
-msgstr "Ð¡Ð°Ð»ÑŒÐ²Ð°Ð´Ð¾Ñ€"
-
-#: includes/adsense.search_options.inc:137
-msgid "Equatorial Guinea"
-msgstr "Ð­ÐºÐ²Ð°Ñ‚Ð¾Ñ€Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ? Ð“Ð²Ð¸Ð½ÐµÑ?"
-
-#: includes/adsense.search_options.inc:138
-msgid "Eritrea"
-msgstr "Ð­Ñ€Ð¸Ñ‚Ñ€ÐµÑ?"
-
-#: includes/adsense.search_options.inc:139
-msgid "Estonia"
-msgstr "Ð­Ñ?Ñ‚Ð¾Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:140
-msgid "Ethiopia"
-msgstr "Ð­Ñ„Ð¸Ð¾Ð¿Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:141
-msgid "Falkland Islands (Malvinas)"
-msgstr "Ð¤Ð¾Ð»ÐºÐ»ÐµÐ½Ð´Ñ?ÐºÐ¸Ðµ (ÐœÐ°Ð»ÑŒÐ²Ð¸Ð½Ñ?ÐºÐ¸Ðµ) Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:142
-msgid "Faroe Islands"
-msgstr "Ð¤Ð°Ñ€ÐµÑ€Ñ?ÐºÐ¸Ðµ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:143
-msgid "Fiji"
-msgstr "Ð¤Ð¸Ð´Ð¶Ð¸"
-
-#: includes/adsense.search_options.inc:144
-msgid "French Guiana"
-msgstr "(Ð¤Ñ€Ð°Ð½Ñ†ÑƒÐ·Ñ?ÐºÐ°Ñ?) Ð“Ð²Ð¸Ð°Ð½Ð°"
-
-#: includes/adsense.search_options.inc:145
-msgid "French Polynesia"
-msgstr "Ð¤Ñ€Ð°Ð½Ñ†ÑƒÐ·Ñ?ÐºÐ°Ñ? Ð¿Ð¾Ð»Ð¸Ð½ÐµÐ·Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:146
-msgid "French Southern Territories"
-msgstr "Ñ„Ñ€Ð°Ð½Ñ†ÑƒÐ·Ñ?ÐºÐ¸Ðµ ÑŽÐ¶Ð½Ñ‹Ðµ Ñ‚ÐµÑ€Ñ€Ð¸Ñ‚Ð¾Ñ€Ð¸Ð¸"
-
-#: includes/adsense.search_options.inc:147
-msgid "Gabon"
-msgstr "Ð“Ð°Ð±Ð¾Ð½"
-
-#: includes/adsense.search_options.inc:148
-msgid "Gambia"
-msgstr "Ð“Ð°Ð¼Ð±Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:149
-msgid "Georgia"
-msgstr "Ð“Ñ€ÑƒÐ·Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:150
-msgid "Ghana"
-msgstr "Ð“Ð°Ð½Ð°"
-
-#: includes/adsense.search_options.inc:151
-msgid "Gibraltar"
-msgstr "Ð“Ð¸Ð±Ñ€Ð°Ð»Ñ‚Ð°Ñ€"
-
-#: includes/adsense.search_options.inc:152
-msgid "Greece"
-msgstr "Ð“Ñ€ÐµÑ†Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:153
-msgid "Greenland"
-msgstr "Ð“Ñ€ÐµÐ½Ð»Ð°Ð½Ð´Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:154
-msgid "Grenada"
-msgstr "Ð“Ñ€ÐµÐ½Ð°Ð´Ð°"
-
-#: includes/adsense.search_options.inc:155
-msgid "Guadeloupe"
-msgstr "Ð“Ð²Ð°Ð´ÐµÐ»ÑƒÐ¿Ð°"
-
-#: includes/adsense.search_options.inc:156
-msgid "Guam"
-msgstr "Ð¾-Ð² Ð“ÑƒÐ°Ð¼"
-
-#: includes/adsense.search_options.inc:157
-msgid "Guatemala"
-msgstr "Ð“Ð²Ð°Ñ‚ÐµÐ¼Ð°Ð»Ð°"
-
-#: includes/adsense.search_options.inc:158
-msgid "Guinea"
-msgstr "Ð“Ð²Ð¸Ð½ÐµÑ?"
-
-#: includes/adsense.search_options.inc:159
-msgid "Guinea-Bissau"
-msgstr "Ð“Ð²Ð¸Ð½ÐµÑ?-Ð‘Ð¸Ñ?Ð°Ñƒ"
-
-#: includes/adsense.search_options.inc:160
-msgid "Guyana"
-msgstr "Ð“Ð°Ð¹Ð°Ð½Ð°"
-
-#: includes/adsense.search_options.inc:161
-msgid "Haiti"
-msgstr "Ð“Ð°Ð¸Ñ‚Ð¸"
-
-#: includes/adsense.search_options.inc:162
-msgid "Heard and McDonald Islands"
-msgstr "Ð¥ÐµÑ€Ð´ Ð¸ ÐžÑ?Ñ‚Ñ€Ð¾Ð²Ð° ÐœÐ°ÐºÐ´Ð¾Ð½Ð°Ð»Ð´"
-
-#: includes/adsense.search_options.inc:163
-msgid "Honduras"
-msgstr "Ð“Ð¾Ð½Ð´ÑƒÑ€Ð°Ñ?"
-
-#: includes/adsense.search_options.inc:164
-msgid "Hungary"
-msgstr "Ð’ÐµÐ½Ð³Ñ€Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:165
-msgid "Iceland"
-msgstr "Ð˜Ñ?Ð»Ð°Ð½Ð´Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:166
-msgid "India"
-msgstr "Ð˜Ð½Ð´Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:167
-msgid "Indonesia"
-msgstr "Ð˜Ð½Ð´Ð¾Ð½ÐµÐ·Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:168
-msgid "Iran"
-msgstr "Ð˜Ñ€Ð°Ð½"
-
-#: includes/adsense.search_options.inc:169
-msgid "Iraq"
-msgstr "Ð˜Ñ€Ð°Ðº"
-
-#: includes/adsense.search_options.inc:170
-msgid "Ireland"
-msgstr "Ð˜Ñ€Ð»Ð°Ð½Ð´Ð¸Ñ?, Ð˜Ñ€Ð»Ð°Ð½Ð´Ñ?ÐºÐ°Ñ? Ð ÐµÑ?Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°"
-
-#: includes/adsense.search_options.inc:171
-msgid "Israel"
-msgstr "Ð˜Ð·Ñ€Ð°Ð¸Ð»ÑŒ"
-
-#: includes/adsense.search_options.inc:172
-msgid "Jamaica"
-msgstr "Ð¯Ð¼Ð°Ð¹ÐºÐ°"
-
-#: includes/adsense.search_options.inc:173
-msgid "Jordan"
-msgstr "Ð˜Ð¾Ñ€Ð´Ð°Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:174
-msgid "Kazakhstan"
-msgstr "ÐšÐ°Ð·Ð°Ñ…Ñ?Ñ‚Ð°Ð½"
-
-#: includes/adsense.search_options.inc:175
-msgid "Kenya"
-msgstr "ÐšÐµÐ½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:176
-msgid "Kiribati"
-msgstr "ÐšÐ¸Ñ€Ð¸Ð±Ð°Ñ‚Ð¸"
-
-#: includes/adsense.search_options.inc:177
-msgid "Kuwait"
-msgstr "ÐšÑƒÐ²ÐµÐ¹Ñ‚"
-
-#: includes/adsense.search_options.inc:178
-msgid "Kyrgyzstan"
-msgstr "ÐšÐ¸Ñ€Ð³Ð¸Ð·Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:179
-msgid "Lao People's Democratic Republic"
-msgstr "Ð›Ð°Ð¾Ñ?Ñ?ÐºÐ°Ñ? Ð?Ð°Ñ€Ð¾Ð´Ð½Ð¾-Ð”ÐµÐ¼Ð¾ÐºÑ€Ð°Ñ‚Ð¸Ñ‡ÐµÑ?ÐºÐ°Ñ? Ð ÐµÑ?Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°"
-
-#: includes/adsense.search_options.inc:180
-msgid "Latvia"
-msgstr "Ð›Ð°Ñ‚Ð²Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:181
-msgid "Lebanon"
-msgstr "Ð›Ð¸Ð²Ð°Ð½"
-
-#: includes/adsense.search_options.inc:182
-msgid "Lesotho"
-msgstr "Ð›ÐµÑ?Ð¾Ñ‚Ð¾"
-
-#: includes/adsense.search_options.inc:183
-msgid "Liberia"
-msgstr "Ð›Ð¸Ð±ÐµÑ€Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:184
-msgid "Libya"
-msgstr "Ð›Ð¸Ð²Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:185
-msgid "Liechtenstein"
-msgstr "Ð›Ð¸Ñ…Ñ‚ÐµÐ½ÑˆÑ‚ÐµÐ¹Ð½"
-
-#: includes/adsense.search_options.inc:186
-msgid "Lithuania"
-msgstr "Ð›Ð¸Ñ‚Ð²Ð°"
-
-#: includes/adsense.search_options.inc:187
-msgid "Luxembourg"
-msgstr "Ð›ÑŽÐºÑ?ÐµÐ¼Ð±ÑƒÑ€Ð³"
-
-#: includes/adsense.search_options.inc:188
-msgid "Macau"
-msgstr "ÐœÐ°ÐºÐ°Ð¾"
-
-#: includes/adsense.search_options.inc:189
-msgid "Macedonia"
-msgstr "ÐœÐ°ÐºÐµÐ´Ð¾Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:190
-msgid "Madagascar"
-msgstr "ÐœÐ°Ð´Ð°Ð³Ð°Ñ?ÐºÐ°Ñ€"
-
-#: includes/adsense.search_options.inc:191
-msgid "Malawi"
-msgstr "ÐœÐ°Ð»Ð°Ð²Ð¸"
-
-#: includes/adsense.search_options.inc:192
-msgid "Malaysia"
-msgstr "ÐœÐ°Ð»Ð°Ð¹Ð·Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:193
-msgid "Maldives"
-msgstr "ÐœÐ°Ð»ÑŒÐ´Ð¸Ð²Ñ‹"
-
-#: includes/adsense.search_options.inc:194
-msgid "Mali"
-msgstr "ÐœÐ°Ð»Ð¸"
-
-#: includes/adsense.search_options.inc:195
-msgid "Malta"
-msgstr "ÐœÐ°Ð»ÑŒÑ‚Ð°"
-
-#: includes/adsense.search_options.inc:196
-msgid "Marshall Islands"
-msgstr "ÐœÐ°Ñ€ÑˆÐ°Ð»Ð»Ð¾Ð²Ñ‹ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:197
-msgid "Martinique"
-msgstr "Ð¾-Ð² ÐœÐ°Ñ€Ñ‚Ð¸Ð½Ð¸ÐºÐ°"
-
-#: includes/adsense.search_options.inc:198
-msgid "Mauritania"
-msgstr "ÐœÐ°Ð²Ñ€Ð¸Ñ‚Ð°Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:199
-msgid "Mauritius"
-msgstr "ÐœÐ°Ð²Ñ€Ð¸ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:200
-msgid "Mayotte"
-msgstr "ÐœÐ°Ð¹Ð¾Ñ‚Ñ‚Ð°"
-
-#: includes/adsense.search_options.inc:201
-msgid "Mexico"
-msgstr "ÐœÐµÐºÑ?Ð¸ÐºÐ°"
-
-#: includes/adsense.search_options.inc:202
-msgid "Micronesia"
-msgstr "ÐœÐ¸ÐºÑ€Ð¾Ð½ÐµÐ·Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:203
-msgid "Moldova"
-msgstr "ÐœÐ¾Ð»Ð´Ð°Ð²Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:204
-msgid "Monaco"
-msgstr "ÐœÐ¾Ð½Ð°ÐºÐ¾"
-
-#: includes/adsense.search_options.inc:205
-msgid "Mongolia"
-msgstr "ÐœÐ¾Ð½Ð³Ð¾Ð»Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:206
-msgid "Montserrat"
-msgstr "ÐœÐ¾Ð½Ñ‚Ñ?ÐµÑ€Ñ€Ð°Ñ‚"
-
-#: includes/adsense.search_options.inc:207
-msgid "Morocco"
-msgstr "ÐœÐ°Ñ€Ð¾ÐºÐºÐ¾"
-
-#: includes/adsense.search_options.inc:208
-msgid "Mozambique"
-msgstr "ÐœÐ¾Ð·Ð°Ð¼Ð±Ð¸Ðº"
-
-#: includes/adsense.search_options.inc:209
-msgid "Myanmar"
-msgstr "ÐœÑŒÑ?Ð½Ð¼Ð°"
-
-#: includes/adsense.search_options.inc:210
-msgid "Namibia"
-msgstr "Ð?Ð°Ð¼Ð¸Ð±Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:211
-msgid "Nauru"
-msgstr "Ð?Ð°ÑƒÑ€Ñƒ"
-
-#: includes/adsense.search_options.inc:212
-msgid "Nepal"
-msgstr "Ð?ÐµÐ¿Ð°Ð»"
-
-#: includes/adsense.search_options.inc:213
-msgid "Netherlands Antilles"
-msgstr "Ð?Ð½Ñ‚Ð¸Ð»ÑŒÑ?ÐºÐ¸Ðµ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:214
-msgid "New Caledonia"
-msgstr "Ð?Ð¾Ð²Ð°Ñ? ÐšÐ°Ð»ÐµÐ´Ð¾Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:215
-msgid "New Zealand"
-msgstr "Ð?Ð¾Ð²Ð°Ñ? Ð—ÐµÐ»Ð°Ð½Ð´Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:216
-msgid "Nicaragua"
-msgstr "Ð?Ð¸ÐºÐ°Ñ€Ð°Ð³ÑƒÐ°"
-
-#: includes/adsense.search_options.inc:217
-msgid "Niger"
-msgstr "Ð?Ð¸Ð³ÐµÑ€"
-
-#: includes/adsense.search_options.inc:218
-msgid "Nigeria"
-msgstr "Ð?Ð¸Ð³ÐµÑ€Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:219
-msgid "Niue"
-msgstr "Ð?Ð¸ÑƒÑ?"
-
-#: includes/adsense.search_options.inc:220
-msgid "Norfolk Island"
-msgstr "ÐžÑ?Ñ‚Ñ€Ð¾Ð² Ð?Ð¾Ñ€Ñ„Ð¾Ð»Ðº"
-
-#: includes/adsense.search_options.inc:221
-msgid "Northern Mariana Islands"
-msgstr "ÐœÐ°Ñ€Ð¸Ð°Ð½Ñ?ÐºÐ¸Ðµ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:222
-msgid "North Korea"
-msgstr "Ð¡ÐµÐ²ÐµÑ€Ð½Ð°Ñ? ÐšÐ¾Ñ€ÐµÑ?"
-
-#: includes/adsense.search_options.inc:223
-msgid "Oman"
-msgstr "ÐžÐ¼Ð°Ð½"
-
-#: includes/adsense.search_options.inc:224
-msgid "Pakistan"
-msgstr "ÐŸÐ°ÐºÐ¸Ñ?Ñ‚Ð°Ð½"
-
-#: includes/adsense.search_options.inc:225
-msgid "Palau"
-msgstr "ÐŸÐ°Ð»Ð°Ñƒ"
-
-#: includes/adsense.search_options.inc:226
-msgid "Palestinian Territory"
-msgstr "ÐŸÐ°Ð»ÐµÑ?Ñ‚Ð¸Ð½Ñ?ÐºÐ°Ñ? Ð°Ð²Ñ‚Ð¾Ð½Ð¾Ð¼Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:227
-msgid "Panama"
-msgstr "ÐŸÐ°Ð½Ð°Ð¼Ð°"
-
-#: includes/adsense.search_options.inc:228
-msgid "Papua New Guinea"
-msgstr "ÐŸÐ°Ð¿ÑƒÐ° - Ð?Ð¾Ð²Ð°Ñ? Ð“Ð²Ð¸Ð½ÐµÑ?"
-
-#: includes/adsense.search_options.inc:229
-msgid "Paraguay"
-msgstr "ÐŸÐ°Ñ€Ð°Ð³Ð²Ð°Ð¹"
-
-#: includes/adsense.search_options.inc:230
-msgid "Peru"
-msgstr "ÐŸÐµÑ€Ñƒ"
-
-#: includes/adsense.search_options.inc:231
-msgid "Philippines"
-msgstr "Ð¤Ð¸Ð»Ð¸Ð¿Ð¿Ð¸Ð½Ñ‹"
-
-#: includes/adsense.search_options.inc:232
-msgid "Pitcairn"
-msgstr "ÐŸÐ¸Ñ‚ÐºÐµÑ€Ð½"
-
-#: includes/adsense.search_options.inc:233
-msgid "Poland"
-msgstr "ÐŸÐ¾Ð»ÑŒÑˆÐ°"
-
-#: includes/adsense.search_options.inc:234
-msgid "Puerto Rico"
-msgstr "ÐŸÑƒÑ?Ñ€Ñ‚Ð¾-Ð Ð¸ÐºÐ¾"
-
-#: includes/adsense.search_options.inc:235
-msgid "Qatar"
-msgstr "ÐšÐ°Ñ‚Ð°Ñ€"
-
-#: includes/adsense.search_options.inc:236
-msgid "Reunion"
-msgstr "Ð ÐµÑŽÐ½ÑŒÐ¾Ð½"
-
-#: includes/adsense.search_options.inc:237
-msgid "Romania"
-msgstr "Ð ÑƒÐ¼Ñ‹Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:238
-msgid "Russian Federation"
-msgstr "Ð Ð¾Ñ?Ñ?Ð¸Ð¹Ñ?ÐºÐ°Ñ? Ð¤ÐµÐ´ÐµÑ€Ð°Ñ†Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:239
-msgid "Rwanda"
-msgstr "Ð ÑƒÐ°Ð½Ð´Ð°"
-
-#: includes/adsense.search_options.inc:240
-msgid "Saint Kitts and Nevis"
-msgstr "Ð¡ÐµÐ½Ñ‚-ÐšÐ¸Ñ‚Ñ? Ð¸ Ð?ÐµÐ²Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:241
-msgid "Saint Lucia"
-msgstr "Ð¡ÐµÐ½Ñ‚-Ð›ÑŽÑ?Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:242
-msgid "Saint Vincent and the Grenadines"
-msgstr "Ð¡ÐµÐ½Ñ‚-Ð’Ð¸Ð½Ñ?ÐµÐ½Ñ‚ Ð¸ Ð“Ñ€ÐµÐ½Ð°Ð´Ð¸Ð½Ñ‹"
-
-#: includes/adsense.search_options.inc:243
-msgid "Samoa"
-msgstr "Ð¡Ð°Ð¼Ð¾Ð°"
-
-#: includes/adsense.search_options.inc:244
-msgid "San Marino"
-msgstr "Ð¡Ð°Ð½-ÐœÐ°Ñ€Ð¸Ð½Ð¾"
-
-#: includes/adsense.search_options.inc:245
-msgid "Sao Tome and Principe"
-msgstr "Ð¡Ð°Ð½-Ð¢Ð¾Ð¼Ðµ Ð¸ ÐŸÑ€Ð¸Ð½Ñ?Ð¸Ð¿Ð¸"
-
-#: includes/adsense.search_options.inc:246
-msgid "Saudi Arabia"
-msgstr "Ð¡Ð°ÑƒÐ´Ð¾Ð²Ñ?ÐºÐ°Ñ? Ð?Ñ€Ð°Ð²Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:247
-msgid "Senegal"
-msgstr "Ð¡ÐµÐ½ÐµÐ³Ð°Ð»"
-
-#: includes/adsense.search_options.inc:248
-msgid "Serbia and Montenegro"
-msgstr "Ð¡ÐµÑ€Ð±Ð¸Ñ? Ð¸ Ð§ÐµÑ€Ð½Ð¾Ð³Ð¾Ñ€Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:249
-msgid "Seychelles"
-msgstr "Ð¡ÐµÐ¹ÑˆÐµÐ»ÑŒÑ?ÐºÐ¸Ðµ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:250
-msgid "Sierra Leone"
-msgstr "Ð¡ÑŒÐµÑ€Ñ€Ð°-Ð›ÐµÐ¾Ð½Ðµ"
-
-#: includes/adsense.search_options.inc:251
-msgid "Slovakia"
-msgstr "Ð¡Ð»Ð¾Ð²Ð°ÐºÐ¸Ñ?"
-
-#: includes/adsense.search_options.inc:252
-msgid "Slovenia"
-msgstr "Ð¡Ð»Ð¾Ð²ÐµÐ½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:253
-msgid "Solomon Islands"
-msgstr "Ð¡Ð¾Ð»Ð¾Ð¼Ð¾Ð½Ð¾Ð²Ñ‹ ÐžÑ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:254
-msgid "Somalia"
-msgstr "Ð¡Ð¾Ð¼Ð°Ð»Ð¸"
-
-#: includes/adsense.search_options.inc:255
-msgid "South Africa"
-msgstr "Ð®Ð?Ð "
-
-#: includes/adsense.search_options.inc:256
-msgid "South Georgia and The South Sandwich Islands"
-msgstr "Ð®Ð¶Ð½Ð°Ñ? Ð”Ð¶Ð¾Ñ€Ð´Ð¶Ð¸Ñ? Ð¸ Ð®Ð¶Ð½Ñ‹Ðµ Ð¡Ð°Ð½Ð´Ð²Ð¸Ñ‡ÐµÐ²Ñ‹ ÐžÑ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:257
-msgid "Sri Lanka"
-msgstr "Ð¨Ñ€Ð¸-Ð›Ð°Ð½ÐºÐ°"
-
-#: includes/adsense.search_options.inc:258
-msgid "St. Helena"
-msgstr "ÐžÑ?Ñ‚Ñ€Ð¾Ð² Ð¡Ð². Ð•Ð»ÐµÐ½Ñ‹"
-
-#: includes/adsense.search_options.inc:259
-msgid "St. Pierre and Miquelon"
-msgstr "Ð¡ÐµÐ½-ÐŸÑŒÐµÑ€ Ð¸ ÐœÐ¸ÐºÐµÐ»Ð¾Ð½"
-
-#: includes/adsense.search_options.inc:260
-msgid "Sudan"
-msgstr "Ð¡ÑƒÐ´Ð°Ð½"
-
-#: includes/adsense.search_options.inc:261
-msgid "Suriname"
-msgstr "Ð¡ÑƒÑ€Ð¸Ð½Ð°Ð¼"
-
-#: includes/adsense.search_options.inc:262
-msgid "Svalbard and Jan Mayen Islands"
-msgstr "Ð¨Ð¿Ð¸Ñ†Ð±ÐµÑ€Ð³ÐµÐ½ Ð¸ Ð¯Ð½-ÐœÐ°Ð¹ÐµÐ½ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:263
-msgid "Swaziland"
-msgstr "Ð¡Ð²Ð°Ð·Ð¸Ð»ÐµÐ½Ð´"
-
-#: includes/adsense.search_options.inc:264
-msgid "Syria"
-msgstr "Ð¡Ð¸Ñ€Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:265
-msgid "Tajikistan"
-msgstr "Ð¢Ð°Ð´Ð¶Ð¸ÐºÐ¸Ñ?Ñ‚Ð°Ð½"
-
-#: includes/adsense.search_options.inc:266
-msgid "Tanzania"
-msgstr "Ð¢Ð°Ð½Ð·Ð°Ð½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:267
-msgid "Thailand"
-msgstr "Ð¢Ð°Ð¸Ð»Ð°Ð½Ð´"
-
-#: includes/adsense.search_options.inc:268
-msgid "Togo"
-msgstr "Ð¢Ð¾Ð³Ð¾"
-
-#: includes/adsense.search_options.inc:269
-msgid "Tokelau"
-msgstr "Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð° Ð¢Ð¾ÐºÐµÐ»Ð°Ñƒ"
-
-#: includes/adsense.search_options.inc:270
-msgid "Tonga"
-msgstr "Tonga"
-
-#: includes/adsense.search_options.inc:271
-msgid "Trinidad and Tobago"
-msgstr "Ð¢Ñ€Ð¸Ð½Ð¸Ð´Ð°Ð´ Ð¸ Ð¢Ð¾Ð±Ð°Ð³Ð¾"
-
-#: includes/adsense.search_options.inc:272
-msgid "Tunisia"
-msgstr "Ð¢ÑƒÐ½Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:273
-msgid "Turkey"
-msgstr "Ð¢ÑƒÑ€Ñ†Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:274
-msgid "Turkmenistan"
-msgstr "Ð¢ÑƒÑ€ÐºÐ¼ÐµÐ½Ð¸Ñ?Ñ‚Ð°Ð½"
-
-#: includes/adsense.search_options.inc:275
-msgid "Turks and Caicos Islands"
-msgstr "ÐžÑ?Ñ‚Ñ€Ð¾Ð²Ð° Ð¢ÐµÑ€ÐºÑ? Ð¸ ÐšÐ°Ð¹ÐºÐ¾Ñ?"
-
-#: includes/adsense.search_options.inc:276
-msgid "Tuvalu"
-msgstr "Ð¢ÑƒÐ²Ð°Ð»Ñƒ"
-
-#: includes/adsense.search_options.inc:277
-msgid "Uganda"
-msgstr "Ð£Ð³Ð°Ð½Ð´Ð°"
-
-#: includes/adsense.search_options.inc:278
-msgid "Ukraine"
-msgstr "Ð£ÐºÑ€Ð°Ð¸Ð½Ð°"
-
-#: includes/adsense.search_options.inc:279
-msgid "United Arab Emirates"
-msgstr "ÐžÐ?Ð­"
-
-#: includes/adsense.search_options.inc:280
-msgid "United States Minor Outlying Islands"
-msgstr "US Ð²Ð½ÐµÑˆÐ½Ð¸Ðµ Ð¼Ð°Ð»Ñ‹Ðµ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð°"
-
-#: includes/adsense.search_options.inc:281
-msgid "Uruguay"
-msgstr "Ð£Ñ€ÑƒÐ³Ð²Ð°Ð¹"
-
-#: includes/adsense.search_options.inc:282
-msgid "Uzbekistan"
-msgstr "Ð£Ð·Ð±ÐµÐºÐ¸Ñ?Ñ‚Ð°Ð½"
-
-#: includes/adsense.search_options.inc:283
-msgid "Vanuatu"
-msgstr "Ð’Ð°Ð½ÑƒÐ°Ñ‚Ñƒ"
-
-#: includes/adsense.search_options.inc:284
-msgid "Vatican"
-msgstr "Ð’Ð°Ñ‚Ð¸ÐºÐ°Ð½"
-
-#: includes/adsense.search_options.inc:285
-msgid "Venezuela"
-msgstr "Ð’ÐµÐ½ÐµÑ?ÑƒÑ?Ð»Ð°"
-
-#: includes/adsense.search_options.inc:286
-msgid "Viet Nam"
-msgstr "Ð’ÑŒÐµÑ‚Ð½Ð°Ð¼"
-
-#: includes/adsense.search_options.inc:287
-msgid "Virgin Islands (British)"
-msgstr "Ð’Ð¸Ñ€Ð³Ð¸Ð½Ñ?ÐºÐ¸Ðµ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð° (Ð‘Ñ€Ð¸Ñ‚Ð°Ð½Ñ?ÐºÐ¸Ðµ)"
-
-#: includes/adsense.search_options.inc:288
-msgid "Virgin Islands (U.S.)"
-msgstr "Ð’Ð¸Ñ€Ð³Ð¸Ð½Ñ?ÐºÐ¸Ðµ Ð¾Ñ?Ñ‚Ñ€Ð¾Ð²Ð° (U.S.)"
-
-#: includes/adsense.search_options.inc:289
-msgid "Wallis and Futuna Islands"
-msgstr "Ð£Ð¾Ð»Ð»Ð¸Ñ? Ð¸ Ð¤ÑƒÑ‚ÑƒÐ½Ð°"
-
-#: includes/adsense.search_options.inc:290
-msgid "Western Sahara"
-msgstr "Ð—Ð°Ð¿Ð°Ð´Ð½Ð°Ñ? Ð¡Ð°Ñ…Ð°Ñ€Ð°"
-
-#: includes/adsense.search_options.inc:291
-msgid "Yemen"
-msgstr "Ð™ÐµÐ¼ÐµÐ½"
-
-#: includes/adsense.search_options.inc:292
-msgid "Zambia"
-msgstr "Ð—Ð°Ð¼Ð±Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:293
-msgid "Zimbabwe"
-msgstr "Ð—Ð¸Ð¼Ð±Ð°Ð±Ð²Ðµ"
-
-#: includes/adsense.search_options.inc:294
-msgid "United States"
-msgstr "Ð¡Ð¨Ð?"
-
-#: includes/adsense.search_options.inc:306
-msgid "Arabic"
-msgstr "Ð?Ñ€Ð°Ð±Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:307
-msgid "Bulgarian"
-msgstr "Ð‘Ð¾Ð»Ð³Ð°Ñ€Ð¸Ñ?"
-
-#: includes/adsense.search_options.inc:308
-msgid "Chinese (simplified)"
-msgstr "ÐšÐ¸Ñ‚Ð°Ð¹Ñ?ÐºÐ¸Ð¹ (ÑƒÐ¿Ñ€Ð¾Ñ‰ÐµÐ½Ð½Ñ‹Ð¹)"
-
-#: includes/adsense.search_options.inc:309
-msgid "Chinese (traditional)"
-msgstr "ÐšÐ¸Ñ‚Ð°Ð¹Ñ?ÐºÐ¸Ð¹ (Ñ‚Ñ€Ð°Ð´Ð¸Ñ†Ð¸Ð¾Ð½Ð½Ñ‹Ð¹)"
-
-#: includes/adsense.search_options.inc:310
-msgid "Croatian"
-msgstr "Ð¥Ð¾Ñ€Ð²Ð°Ñ‚Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:311
-msgid "Czech"
-msgstr "Ð§ÐµÑˆÑ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:312
-msgid "Danish"
-msgstr "Ð”Ð°Ñ‚Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:313
-msgid "Dutch"
-msgstr "Ð“Ð¾Ð»Ð»Ð°Ð½Ð´Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:314
-msgid "English"
-msgstr "Ð?Ð½Ð³Ð»Ð¸Ð¹Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:315
-msgid "Finnish"
-msgstr "Ð¤Ð¸Ð½Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:316
-msgid "French"
-msgstr "Ð¤Ñ€Ð°Ð½Ñ†ÑƒÐ·Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:317
-msgid "German"
-msgstr "Ð?ÐµÐ¼ÐµÑ†ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:318
-msgid "Greek"
-msgstr "Ð“Ñ€ÐµÑ‡ÐµÑ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:319
-msgid "Hebrew"
-msgstr "Ð˜Ð²Ñ€Ð¸Ñ‚"
-
-#: includes/adsense.search_options.inc:320
-msgid "Hungarian"
-msgstr "Ð’ÐµÐ½Ð³ÐµÑ€Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:321
-msgid "Indonesian"
-msgstr "Ð˜Ð½Ð´Ð¾Ð½ÐµÐ·Ð¸Ð¹Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:322
-msgid "Italian"
-msgstr "Ð˜Ñ‚Ð°Ð»ÑŒÑ?Ð½Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:323
-msgid "Japanese"
-msgstr "Ð¯Ð¿Ð¾Ð½Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:324
-msgid "Korean"
-msgstr "ÐšÐ¾Ñ€ÐµÐ¹Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:325
-msgid "Norwegian"
-msgstr "Ð?Ð¾Ñ€Ð²ÐµÐ¶Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:326
-msgid "Polish"
-msgstr "ÐŸÐ¾Ð»ÑŒÑ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:327
-msgid "Portuguese"
-msgstr "ÐŸÐ¾Ñ€Ñ‚ÑƒÐ³Ð°Ð»ÑŒÑ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:328
-msgid "Romanian"
-msgstr "Ð ÑƒÐ¼Ñ‹Ð½Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:329
-msgid "Russian"
-msgstr "Ð ÑƒÑ?Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:330
-msgid "Serbian"
-msgstr "Ð¡ÐµÑ€Ð±Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:331
-msgid "Slovak"
-msgstr "Ð¡Ð»Ð¾Ð²Ð°Ñ†ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:332
-msgid "Spanish"
-msgstr "Ð˜Ñ?Ð¿Ð°Ð½Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:333
-msgid "Swedish"
-msgstr "Ð¨Ð²ÐµÐ´Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:334
-msgid "Thai"
-msgstr "Ð¢Ð°Ð¹Ñ?ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:335
-msgid "Turkish"
-msgstr "Ð¢ÑƒÑ€ÐµÑ†ÐºÐ¸Ð¹"
-
-#: includes/adsense.search_options.inc:336
-msgid "Vietnamese"
-msgstr "Ð’ÑŒÐµÑ‚Ð½Ð°Ð¼Ñ?ÐºÐ¸Ð¹"
-
-#: managed/adsense_managed.module:46
-msgid "AdSense: unconfigured "
-msgstr "AdSense: Ð½Ðµ Ð½Ð°Ñ?Ñ‚Ñ€Ð¾ÐµÐ½ "
-
-#: managed/adsense_managed.module:71
-#: old/oldcode/adsense_oldcode.module:92
-msgid "Ad format"
-msgstr "Ð¤Ð¾Ñ€Ð¼Ð°Ñ‚ Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹"
-
-#: managed/adsense_managed.module:74
-#: old/oldcode/adsense_oldcode.module:95
-msgid "Select the ad dimensions you want for this block."
-msgstr "Ð’Ñ‹Ð±ÐµÑ€Ð¸Ñ‚Ðµ Ñ€Ð°Ð·Ð¼ÐµÑ€ Ñ€ÐµÐºÐ»Ð°Ð¼Ð½Ð¾Ð³Ð¾ Ð±Ð»Ð¾ÐºÐ°, ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ð¹ Ð²Ñ‹ Ñ…Ð¾Ñ‚Ð¸Ñ‚Ðµ Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÑŒ."
-
-#: managed/adsense_managed.module:82
-msgid "This is the Ad Slot ID from your Google Adsense account, such as 0123456789."
-msgstr "Ð­Ñ‚Ð¾ AD ÐºÐ°Ð½Ð°Ð» ID Ð¾Ñ‚ Google Adsense Ð°ÐºÐºÐ°ÑƒÐ½Ñ‚Ð°, Ð½Ð°Ð¿Ñ€Ð¸Ð¼ÐµÑ€, 0123456789."
-
-#: managed/adsense_managed.module:88
-#: old/oldcode/adsense_oldcode.module:114
-msgid "Ad alignment"
-msgstr "Ð’Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ðµ Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹"
-
-#: managed/adsense_managed.module:91
-#: old/oldcode/adsense_oldcode.admin.inc:118
-#: old/oldcode/adsense_oldcode.module:75;117
-#: old/search/adsense_search.module:85
-msgid "None"
-msgstr "Ð?ÐµÑ‚"
-
-#: managed/adsense_managed.module:92
-#: old/oldcode/adsense_oldcode.module:118
-msgid "Left"
-msgstr "Ð›ÐµÐ²Ð¾"
-
-#: managed/adsense_managed.module:93
-#: old/oldcode/adsense_oldcode.module:119
-msgid "Centered"
-msgstr "ÐŸÐ¾ Ñ?ÐµÐ½Ñ‚Ñ€Ñƒ"
-
-#: managed/adsense_managed.module:96
-#: old/oldcode/adsense_oldcode.module:122
-msgid "Select the horizontal alignment of the ad within the block."
-msgstr "Ð’Ñ‹Ð±ÐµÑ€Ð¸Ñ‚Ðµ Ð³Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð¾Ðµ Ð²Ñ‹Ñ€Ð°Ð²Ð½Ð¸Ð²Ð°Ð½Ð¸Ðµ Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹ Ð²Ð½ÑƒÑ‚Ñ€Ð¸ Ð±Ð»Ð¾ÐºÐ°."
-
-#: managed/adsense_managed.module:22
-msgid "Managed Ads"
-msgstr "Ð£Ð¿Ñ€Ð°Ð²Ð»Ñ?Ñ‚ÑŒ Ñ€ÐµÐºÐ»Ð°Ð¼Ð¾Ð¹"
-
-#: managed/adsense_managed.info:0
-msgid "Managed ads"
-msgstr "Ð£Ð¿Ñ€Ð°Ð²Ð»Ñ?Ñ‚ÑŒ Ñ€ÐµÐºÐ»Ð°Ð¼Ð¾Ð¹"
-
-#: managed/adsense_managed.info:0
-msgid "Ad unit generator module using the new managed ads feature available in the Google AdSense site."
-msgstr "ÐœÐ¾Ð´ÑƒÐ»ÑŒ Ð³ÐµÐ½ÐµÑ€Ð°Ñ‚Ð¾Ñ€ Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹ Ñ? Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸ÐµÐ¼ Ð½Ð¾Ð²Ð¾Ð³Ð¾ ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ? Ð´Ð¾Ñ?Ñ‚ÑƒÐ¿ÐµÐ½ Ð½Ð° Ñ?Ð°Ð¹Ñ‚Ðµ Google AdSense."
-
-#: old/oldcode/adsense_oldcode.admin.inc:37
-msgid "Ad groups"
-msgstr "Ð“Ñ€ÑƒÐ¿Ð¿Ñ‹ Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹"
-
-#: old/oldcode/adsense_oldcode.admin.inc:50
-msgid "Group @group attributes"
-msgstr "ÐŸÐ°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ‹ Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹ @group"
-
-#: old/oldcode/adsense_oldcode.admin.inc:55
-#: old/search/adsense_search.admin.inc:168
-msgid "Title"
-msgstr "Ð—Ð°Ð³Ð¾Ð»Ð¾Ð²Ð¾Ðº"
-
-#: old/oldcode/adsense_oldcode.admin.inc:59
-msgid "Title of the group."
-msgstr "Ð—Ð°Ð³Ð¾Ð»Ð¾Ð²Ð¾Ðº Ð³Ñ€ÑƒÐ¿Ð¿Ñ‹"
-
-#: old/oldcode/adsense_oldcode.admin.inc:64
-msgid "Ad type"
-msgstr "Ð¢Ð¸Ð¿ Ñ€ÐµÐºÐ»Ð°Ð¼Ñ‹"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-#: old/search/adsense_search.admin.inc:184
-msgid "Text"
-msgstr "Ð¢ÐµÐºÑ?Ñ‚"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-msgid "Image"
-msgstr "Ð˜Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ðµ"
-
-#: old/oldcode/adsense_oldcode.admin.inc:66
-msgid "Both"
-msgstr "ÐžÐ±Ð°"
-
-#: old/oldcode/adsense_oldcode.admin.inc:76
-#: old/search/adsense_search.admin.inc:89
-msgid "Text color"
-msgstr "Ð¦Ð²ÐµÑ‚ Ñ‚ÐµÐºÑ?Ñ‚Ð°"
-
-#: old/oldcode/adsense_oldcode.admin.inc:84
-msgid "Border color"
-msgstr "Ð¦Ð²ÐµÑ‚ Ñ€Ð°Ð¼ÐºÐ¸"
-
-#: old/oldcode/adsense_oldcode.admin.inc:100
-msgid "Title color"
-msgstr "Ð¦Ð²ÐµÑ‚ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÐ°"
-
-#: old/oldcode/adsense_oldcode.admin.inc:108
-msgid "URL color"
-msgstr "Ð¦Ð²ÐµÑ‚ URL"
-
-#: old/oldcode/adsense_oldcode.admin.inc:116
-msgid "Alternate URL color"
-msgstr "Ð§ÐµÑ€ÐµÐ´Ð¾Ð²Ð°Ñ‚ÑŒ Ñ†Ð²ÐµÑ‚ URL"
-
-#: old/oldcode/adsense_oldcode.admin.inc:118
-msgid "Alternate URL"
-msgstr "Ð§ÐµÑ€ÐµÐ´Ð¾Ð²Ð°Ñ‚ÑŒ URL"
-
-#: old/oldcode/adsense_oldcode.admin.inc:118
-msgid "Alternate color"
-msgstr "Ð§ÐµÑ€ÐµÐ´Ð¾Ð²Ð°Ñ‚ÑŒ Ñ†Ð²ÐµÑ‚"
-
-#: old/oldcode/adsense_oldcode.admin.inc:123
-msgid "Alternate info"
-msgstr "Ð˜Ð·Ð¼ÐµÐ½Ð¸Ñ‚ÑŒ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸ÑŽ"
-
-#: old/oldcode/adsense_oldcode.admin.inc:127
-msgid "Enter either 6 letter alternate color code, or alternate URL to use"
-msgstr "Ð’Ð²ÐµÐ´Ð¸Ñ‚Ðµ Ð¸Ð»Ð¸ Ð´Ñ€ÑƒÐ³Ð¾Ð¹ ÑˆÐµÑ?Ñ‚Ð¸Ð·Ð½Ð°Ñ‡Ð½Ñ‹Ð¹ Ñ†Ð²ÐµÑ‚Ð¾Ð²Ð¾Ð¹ ÐºÐ¾Ð´, Ð¸Ð»Ð¸ Ð¸Ð·Ð¼ÐµÐ½Ð¸Ñ‚Ðµ URL Ð´Ð»Ñ? Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ?"
-
-#: old/oldcode/adsense_oldcode.admin.inc:132
-msgid "Rounded corners"
-msgstr "Ð—Ð°ÐºÑ€ÑƒÐ³Ð¾ÐµÐ½Ð½Ñ‹Ðµ ÑƒÐ³Ð»Ñ‹"
-
-#: old/oldcode/adsense_oldcode.admin.inc:135
-msgid "Choose type of round corners"
-msgstr "Ð’Ñ‹Ð±ÐµÑ€Ð¸Ñ‚Ðµ Ñ‚Ð¸Ð¿ ÐºÑ€ÑƒÐ³Ð»Ñ‹Ñ… ÑƒÐ³Ð¾Ð»ÐºÐ¾Ð²"
-
-#: old/oldcode/adsense_oldcode.admin.inc:143
-#: old/search/adsense_search.admin.inc:241
-msgid "Custom channels"
-msgstr "Ð—Ð°ÐºÐ°Ð·Ð½Ñ‹Ðµ (custom) ÐºÐ°Ð½Ð°Ð»Ñ‹"
-
-#: old/oldcode/adsense_oldcode.admin.inc:144
-#: old/search/adsense_search.admin.inc:242
-msgid "Enter up to !channels custom channels that you have configured in Google AdSense. If you are not using custom channels, or you are only using URL channels, then leave this empty."
-msgstr "Ð—Ð°Ñ„Ð¸ÐºÑ?Ð¸Ñ€ÑƒÐ¹Ñ‚Ðµ !channels ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ðµ Ð²Ñ‹ Ñ…Ð¾Ñ‚Ð¸Ñ‚Ðµ Ð½Ð°Ñ?Ñ‚Ñ€Ð¾Ð¸Ñ‚ÑŒ Ð² Google AdSense. Ð•Ñ?Ð»Ð¸ Ð²Ñ‹ Ð½Ðµ Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚Ðµ Ð¾Ð±Ñ‹Ñ‡Ð½Ñ‹Ðµ ÐºÐ°Ð½Ð°Ð»Ñ‹, Ð¸Ð»Ð¸ ÐµÑ?Ð»Ð¸ Ð²Ñ‹ Ð¸Ñ?Ð¿Ð¾ÑŒÐ·ÑƒÐµÑ‚Ðµ URL ÐºÐ°Ð½Ð°Ð»Ñ‹, Ð¾Ñ?Ñ‚Ð°Ð²ÑŒÑ‚Ðµ Ñ?Ñ‚Ð¸ Ð¿Ð¾Ð»Ñ? Ð¿ÑƒÑ?Ñ‚Ñ‹Ð¼Ð¸."
-
-#: old/oldcode/adsense_oldcode.admin.inc:150
-#: old/search/adsense_search.admin.inc:248
-msgid "Custom channel ID"
-msgstr "ÐŸÐ¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒÑ?ÐºÐ¸Ð¹ ID ÐºÐ°Ð½Ð°Ð»Ð°"
-
-#: old/oldcode/adsense_oldcode.admin.inc:184
-#: old/search/adsense_search.admin.inc:291
-msgid "Color must be between #000000 and #FFFFFF"
-msgstr "Ð¦Ð²ÐµÑ‚ Ð´Ð¾Ð»Ð¶ÐµÐ½ Ð±Ñ‹Ñ‚ÑŒ Ð¼ÐµÐ¶Ð´Ñƒ #000000 Ð¸ #FFFFFF"
-
-#: old/oldcode/adsense_oldcode.module:58
-msgid "AdSense old code: unconfigured "
-msgstr "AdSense Ñ?Ñ‚Ð°Ñ€Ñ‹Ð¹ ÐºÐ¾Ð´: Ð½Ðµ Ð½Ð°Ñ?Ñ‚Ñ€Ð¾ÐµÐ½Ð½Ð¾ "
-
-#: old/oldcode/adsense_oldcode.module:100
-msgid "Group"
-msgstr "Ð“Ñ€ÑƒÐ¿Ð¿Ð°"
-
-#: old/oldcode/adsense_oldcode.module:107
-#: old/search/adsense_search.module:102
-msgid "Channel"
-msgstr "ÐšÐ°Ð½Ð°Ð»"
-
-#: old/oldcode/adsense_oldcode.module:34
-msgid "Old Code Ads"
-msgstr "Ð¡Ñ‚Ð°Ñ€Ñ‹Ð¹ ÐºÐ¾Ð´ Ads"
-
-#: old/oldcode/adsense_oldcode.info:0
-msgid "Ads (old)"
-msgstr "Ads (Ñ?Ñ‚Ð°Ñ€Ñ‹Ð¹)"
-
-#: old/oldcode/adsense_oldcode.info:0
-msgid "Ad unit generator module using the old format code in which the colours are specified in the ad's JavaScript."
-msgstr "ÐœÐ¾Ð´ÑƒÐ»ÑŒ Ð³ÐµÐ½ÐµÑ€Ð°Ñ‚Ð¾Ñ€ Ñ€ÐµÐºÐ»Ð°Ð¼Ð½Ð¾Ð³Ð¾ Ð±Ð»Ð¾ÐºÐ°, Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·ÑƒÑŽÑ‰Ð¸Ñ… Ñ?Ñ‚Ð°Ñ€Ñ‹Ð¹ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ ÐºÐ¾Ð´Ð°, Ð² ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð¼ Ñ†Ð²ÐµÑ‚Ð°, ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ð¾Ð³Ð¾ Ð² Ð¾Ð±ÑŠÑ?Ð²Ð»ÐµÐ½Ð¸Ð¸ Ð² JavaScript."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:37
-msgid "Required parameters"
-msgstr "ÐžÐ±Ñ?Ð·Ð°Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ðµ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ‹"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:42
-msgid "Google AdSense client ID profile field"
-msgstr "ÐŸÐ¾Ð»Ðµ Ð² Ð°Ð½ÐºÐµÑ‚Ðµ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ? Ð´Ð»Ñ? Ð²Ð²Ð¾Ð´Ð° ID ÐºÐ»Ð¸ÐµÐ½Ñ‚Ð° Google AdSense"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:46
-msgid "This is the profile field that holds the AdSense Client ID for the site owner as well as (optionally) for site users who participate in revenue sharing. You must enabled the profile module and create a new field for this."
-msgstr "Ð­Ñ‚Ð¾ Ð¿Ð¾Ð»Ðµ Ð°Ð½ÐºÐµÑ‚Ñ‹ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ? Ð²Ð»Ð°Ð´ÐµÐ»ÑŒÑ†Ð° Ñ?Ð°Ð¹Ñ‚Ð° Ð´Ð»Ñ? ID ÐºÐ»Ð¸ÐµÐ½Ñ‚Ð° AdSense Ð¸ Ñ‚Ð°ÐºÐ¶Ðµ Ð´Ð»Ñ? Ð»Ð¸Ñ† ÑƒÑ‡Ð°Ñ?Ñ‚Ð²ÑƒÑŽÑ‰Ð¸Ñ… Ð² Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸Ð¸ Ð´Ð¾Ñ…Ð¾Ð´Ð¾Ð² (ÐµÑ?Ð»Ð¸ Ñ‚Ð°ÐºÐ¸Ðµ ÐµÑ?Ñ‚ÑŒ). Ð’Ñ‹ Ð´Ð¾Ð»Ð¶Ð½Ñ‹ Ð²Ñ?Ñ‚Ð°Ð²Ð¸Ñ‚ÑŒ Ð½Ð¾Ð²Ñ‹Ð¹ Ñ€Ð°Ð·Ð´ÐµÐ» Ð² Ð¼Ð¾Ð´ÑƒÐ»Ðµ Ð°Ð½ÐºÐµÑ‚Ñ‹ Ð¸ Ñ?Ð¾Ð·Ð´Ð°Ñ‚ÑŒ Ð½Ð¾Ð²Ð¾Ðµ Ð¿Ð¾Ð»Ðµ Ð´Ð»Ñ? Ñ?Ñ‚Ð¾Ð³Ð¾."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:53
-msgid "Revenue sharing percentage"
-msgstr "ÐŸÑ€Ð¾Ñ†ÐµÐ½Ñ‚ Ñ€Ð°Ñ?Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ? Ð´Ð¾Ñ…Ð¾Ð´Ð¾Ð²"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:60
-msgid "Percentage of node views going to author"
-msgstr "ÐŸÑ€Ð¾Ñ†ÐµÐ½Ñ‚ Ð¾Ñ‚ Ð¿Ñ€Ð¾Ñ?Ð¼Ð¾Ñ‚Ñ€Ð¾Ð² Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸Ð¹ Ð¿Ð¾Ñ?Ñ‚ÑƒÐ¿Ð°ÑŽÑ‰Ð¸Ñ… Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:67
-msgid "Percentage of node views going to author with the following roles"
-msgstr "ÐŸÑ€Ð¾Ñ†ÐµÐ½Ñ‚ Ð¿Ñ€Ð¾Ñ?Ð¼Ð¾Ñ‚Ñ€Ð° Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð»Ð¾Ð² Ð°Ð²Ñ‚Ð¾Ñ€Ð° Ð´Ð»Ñ? Ð´Ð°Ð½Ð½Ð¾Ð¹ Ñ€Ð¾Ð»Ð¸"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:68
-msgid "When the author belongs to one or more roles, the percentage of node views using his AdSense Client ID will be the maximum between the author value and the following settings for each role."
-msgstr "ÐšÐ¾Ð³Ð´Ð° Ð°Ð²Ñ‚Ð¾Ñ€ Ð¿Ñ€Ð¸Ð½Ð°Ð´Ð»ÐµÐ¶Ð¸Ñ‚ Ðº Ð¾Ð´Ð½Ð¾Ð¹ Ð¸Ð»Ð¸ Ð½ÐµÑ?ÐºÐ¾Ð»ÑŒÐºÐ¸Ð¼ Ñ€Ð¾Ð»Ñ?Ð¼, Ð´Ð¾Ð»Ñ? Ð¿Ñ€Ð¾Ñ?Ð¼Ð¾Ñ‚Ñ€Ð° Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð»Ð¾Ð² Ñ? Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸ÐµÐ¼ Ñ?Ð²Ð¾ÐµÐ³Ð¾ AdSense Client ID Ð±ÑƒÐ´ÐµÑ‚ Ð¼Ð°ÐºÑ?Ð¸Ð¼Ð°Ð»ÑŒÐ½Ñ‹Ð¼ Ð¼ÐµÐ¶Ð´Ñƒ Ð°Ð²Ñ‚Ð¾Ñ€Ð¾Ð¼, Ð° Ñ‚Ð°ÐºÐ¶Ðµ Ñ?Ð»ÐµÐ´ÑƒÑŽÑ‰Ð¸Ðµ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ‹ Ð´Ð»Ñ? ÐºÐ°Ð¶Ð´Ð¾Ð¹ Ñ€Ð¾Ð»Ð¸."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:86
-msgid "Percentage of node views going to user who referred the author"
-msgstr "ÐŸÑ€Ð¾Ñ†ÐµÐ½Ñ‚ Ð¾Ñ‚ Ð¿Ñ€Ð¾Ñ?Ð¼Ð¾Ñ‚Ñ€Ð° Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸Ð¸ Ð¿Ð¾Ñ?Ñ‚ÑƒÐ¿Ð°ÑŽÑ‰Ð¸Ð¹ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŽ, ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ð¹ Ð´Ð°Ð» Ñ?Ñ?Ñ‹Ð»ÐºÑƒ"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:96
-msgid "Content types"
-msgstr "Ð¢Ð¸Ð¿Ñ‹ Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð»Ð¾Ð²"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:122
-msgid "Role"
-msgstr "Ð Ð¾Ð»ÑŒ"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.admin.inc:122
-msgid "Percentage"
-msgstr "ÐŸÑ€Ð¾Ñ†ÐµÐ½Ñ‚"
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:56
-#: ;22
-msgid "Revenue Sharing"
-msgstr "Ð Ð°Ñ?Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ðµ Ð´Ð¾Ñ…Ð¾Ð´Ð¾Ð² Ð²"
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:57
-msgid "Drupal page cache is enabled."
-msgstr "Drupal ÐºÐµÑˆ Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ† Ð²ÐºÐ»ÑŽÑ‡Ñ‘Ð½."
-
-#: (duplicate) old/revenue_sharing_basic/revenue_sharing_basic.module:58
-msgid "This causes conflicts with revenue sharing, since the pages are stored in the cache and are not dynamically generated. If you experience issues with revenue sharing, then disable the page cache."
-msgstr "Ð­Ñ‚Ð¾ Ð¿Ñ€Ð¸Ð²Ð¾Ð´Ð¸Ñ‚ Ðº ÐºÐ¾Ð½Ñ„Ð»Ð¸ÐºÑ‚Ð°Ð¼ Ñ? Ñ€Ð°Ñ?Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸ÐµÐ¼ Ð´Ð¾Ñ…Ð¾Ð´Ð¾Ð², Ð¿Ð¾Ñ?ÐºÐ¾Ð»ÑŒÐºÑƒ Ð½Ð° Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°Ñ… Ñ?Ð¾Ñ…Ñ€Ð°Ð½Ñ?ÑŽÑ‚Ñ?Ñ? Ð² ÐºÑ?Ñˆ-Ð¿Ð°Ð¼Ñ?Ñ‚Ð¸ Ð¸ Ð½Ðµ Ð³ÐµÐ½ÐµÑ€Ð¸Ñ€ÑƒÑŽÑ‚Ñ?Ñ? Ð´Ð¸Ð½Ð°Ð¼Ð¸Ñ‡ÐµÑ?ÐºÐ¸. Ð•Ñ?Ð»Ð¸ Ñƒ Ð²Ð°Ñ? Ð²Ð¾Ð·Ð½Ð¸ÐºÐ»Ð¸ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ñ‹ Ñ? Ð´Ð¾Ñ…Ð¾Ð´Ð°Ð¼Ð¸, Ð¾Ñ‚ÐºÐ»ÑŽÑ‡Ð¸Ñ‚Ðµ ÐºÑ?Ñˆ Ñ?Ñ‚Ñ€Ð°Ð½Ð¸Ñ†."
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-msgid "Revenue sharing basic (old)"
-msgstr "Ð Ð°Ñ?Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ðµ Ð´Ð¾Ñ…Ð¾Ð´Ð¾Ð² Ð¾Ñ?Ð½Ð¾Ð²Ð½Ð¾Ðµ (Ñ?Ñ‚Ð°Ñ€Ð¾Ðµ)"
-
-#: old/revenue_sharing_basic/revenue_sharing_basic.info:0
-msgid "Revenue sharing for the Google Adsense module"
-msgstr "Ð Ð°Ñ?Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ðµ Ð´Ð¾Ñ…Ð¾Ð´Ð¾Ð² Ð² Google Adsense Ð¼Ð¾Ð´ÑƒÐ»Ðµ"
-
-#: old/search/adsense_search.admin.inc:26
-msgid "Allows users to search the web or the specific site(s) of your choice. Enter the site's URL without the last '/'"
-msgstr "ÐŸÐ¾Ð·Ð²Ð¾Ð»Ñ?ÐµÑ‚ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ?Ð¼ Ð²Ñ‹Ð¿Ð¾Ð»Ð½Ñ?Ñ‚ÑŒ Ð¿Ð¾Ð¸Ñ?Ðº Ð² Ð˜Ð½Ñ‚ÐµÑ€Ð½ÐµÑ‚Ðµ Ð¸Ð»Ð¸ Ñ? ÐºÐ¾Ð½ÐºÑ€ÐµÑ‚Ð½Ð¾Ð³Ð¾ Ñ?Ð°Ð¹Ñ‚Ð°(Ð¾Ð²) Ð¿Ð¾ Ð²Ð°ÑˆÐµÐ¼Ñƒ Ð²Ñ‹Ð±Ð¾Ñ€Ñƒ. Ð’Ð²ÐµÐ´Ð¸Ñ‚Ðµ URL Ñ?Ð°Ð¹Ñ‚Ð° Ð±ÐµÐ· Ð·Ð°Ð²ÐµÑ€ÑˆÐ°ÑŽÑ‰ÐµÐ³Ð¾ '/'"
-
-#: old/search/adsense_search.admin.inc:55
-msgid "Use SafeSearch"
-msgstr "Ð˜Ñ?Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÑŒ SafeSearch"
-
-#: old/search/adsense_search.admin.inc:64
-msgid "Google Logo"
-msgstr "Ð›Ð¾Ð³Ð¾Ñ‚Ð¸Ð¿ Google"
-
-#: old/search/adsense_search.admin.inc:65
-msgid "Logo above text box"
-msgstr "Ð›Ð¾Ð³Ð¾Ñ‚Ð¸Ð¿ Ð½Ð°Ð´ Ñ‚ÐµÐºÑ?Ñ‚Ð¾Ð²Ñ‹Ð¼ Ð¿Ð¾Ð»ÐµÐ¼"
-
-#: old/search/adsense_search.admin.inc:66
-msgid "\"Google Search\" on button"
-msgstr "ÐšÐ½Ð¾Ð¿ÐºÐ° \"ÐŸÐ¾Ð¸Ñ?Ðº Ð² Google\""
-
-#: old/search/adsense_search.admin.inc:72
-msgid "Search button below text box"
-msgstr "ÐšÐ½Ð¾Ð¿ÐºÐ° Ð¿Ð¾Ð¸Ñ?ÐºÐ° Ð¿Ð¾Ð´ Ñ‚ÐµÐºÑ?Ñ‚Ð¾Ð²Ñ‹Ð¼ Ð±Ð»Ð¾ÐºÐ¾Ð¼"
-
-#: old/search/adsense_search.admin.inc:99
-msgid "Site Language"
-msgstr "Ð¯Ð·Ñ‹Ðº Ñ?Ð°Ð¹Ñ‚Ð°"
-
-#: old/search/adsense_search.admin.inc:113
-msgid "Length of text box (Max 64)"
-msgstr "Ð”Ð»Ð¸Ð½Ð° Ñ‚ÐµÐºÑ?Ñ‚Ð¾Ð²Ð¾Ð³Ð¾ Ð±Ð»Ð¾ÐºÐ° (ÐœÐ°Ðº. 64)"
-
-#: old/search/adsense_search.admin.inc:145
-msgid "Color attributes"
-msgstr "Ð?Ñ‚Ñ€Ð¸Ð±ÑƒÑ‚Ñ‹ Ñ†Ð²ÐµÑ‚Ð°"
-
-#: old/search/adsense_search.admin.inc:160
-msgid "Border"
-msgstr "Ð Ð°Ð¼ÐºÐ°"
-
-#: old/search/adsense_search.admin.inc:176
-msgid "Background"
-msgstr "Ð¤Ð¾Ð½"
-
-#: old/search/adsense_search.admin.inc:192
-msgid "URL"
-msgstr "URL"
-
-#: old/search/adsense_search.admin.inc:200
-msgid "Visited URL"
-msgstr "ÐŸÐ¾Ñ?ÐµÑ‰ÐµÐ½Ð½Ñ‹Ðµ URL"
-
-#: old/search/adsense_search.admin.inc:208
-msgid "Light URL"
-msgstr "Ð›ÐµÐ³ÐºÐ¸Ð¹ URL"
-
-#: old/search/adsense_search.admin.inc:216
-msgid "Logo Background"
-msgstr "Ð¤Ð¾Ð½Ð¾Ð²Ñ‹Ð¹ Ð»Ð¾Ð³Ð¾Ñ‚Ð¸Ð¿"
-
-#: old/search/adsense_search.results.inc:17
-msgid "Search keywords: %keyword"
-msgstr "ÐŸÐ¾Ð¸Ñ?Ðº ÐºÐ»ÑŽÑ‡ÐµÐ²Ñ‹Ñ… Ñ?Ð»Ð¾Ð²: %keyword"
-
-#: old/search/adsense_search.module:76
-msgid "AdSense Search: unconfigured "
-msgstr "AdSense Ð¿Ð¾Ð¸Ñ?Ðº: Ð½Ðµ Ð½Ð°Ñ?Ñ‚Ñ€Ð¾ÐµÐ½ "
-
-#: old/search/adsense_search.module:210
-msgid "Google Search"
-msgstr "ÐŸÐ¾Ð¸Ñ?Ðº Google"
-
-#: old/search/adsense_search.info:0
-msgid "Search (old)"
-msgstr "ÐŸÐ¾Ð¸Ñ?Ðº (Ñ?Ñ‚Ð°Ñ€Ñ‹Ð¹)"
-
-#: old/search/adsense_search.info:0
-msgid "AdSense for Search generator module. This module uses the 'old' code in which the user can select to search the entire Web or 1 to 3 user-defined domains."
-msgstr "AdSense Ð´Ð»Ñ? Ð¿Ð¾Ð¸Ñ?ÐºÐ¾Ð²Ð¾Ð³Ð¾ Ð¼Ð¾Ð´ÑƒÐ»Ñ?. Ð­Ñ‚Ð¾Ñ‚ Ð¼Ð¾Ð´ÑƒÐ»ÑŒ Ð¸Ñ?Ð¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ \"Ñ?Ñ‚Ð°Ñ€Ñ‹Ð¹\" ÐºÐ¾Ð´, Ð² ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð¼ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒ Ð¼Ð¾Ð¶ÐµÑ‚ Ð²Ñ‹Ð±Ñ€Ð°Ñ‚ÑŒ Ð¿Ð¾Ð¸Ñ?Ðº Ð² Ð˜Ð½Ñ‚ÐµÑ€Ð½ÐµÑ‚Ðµ Ð¸Ð»Ð¸ Ñ? 1 - 3 Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒÑ?ÐºÐ¸Ñ… Ð´Ð¾Ð¼ÐµÐ½Ð¾Ð²."
-
-#~ msgid "AdSense settings are available under !link"
-#~ msgstr "AdSense Ð½Ð°Ñ?Ñ‚Ñ€Ð¾Ð¹ÐºÐ¸ Ð´Ð¾Ñ?Ñ‚ÑƒÐ¿Ð½Ñ‹ Ð½Ð° !link"
-#~ msgid "Administer > Site configuration > AdSense"
-#~ msgstr "Ð?Ð´Ð¼Ð¸Ð½Ð¸Ñ?Ñ‚Ñ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ðµ &gt; ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ? Ñ?Ð°Ð¹Ñ‚Ð° &gt; AdSense"
-
